Every network that speaks either the DFRN2, ActivityPub, OStatus or diaspora* protocol. Currently this list includes: diaspora*, friendica, funkwhale, ganggo, GNU social, Hubzilla, Mastodon, NextClout social, pixelfed, Pleroma, postActivi, Osada, Socialhome and many more.
+Every network that speaks either the DFRN2, ActivityPub or diaspora* protocol. Currently this list includes: diaspora*, friendica, funkwhale, ganggo, GNU social, Hubzilla, Mastodon, NextClout social, pixelfed, Pleroma, Socialhome and many more.
debug.store_source
config key is set in config/local.config.php
for future items to have sources.') : '',
diff --git a/src/Module/Notifications/Introductions.php b/src/Module/Notifications/Introductions.php
index 55de7978be..93da954d47 100644
--- a/src/Module/Notifications/Introductions.php
+++ b/src/Module/Notifications/Introductions.php
@@ -156,7 +156,8 @@ class Introductions extends BaseNotifications
$header .= ' <' . $Introduction->getAddr() . '>';
}
- $header .= ' (' . ContactSelector::networkToName($Introduction->getNetwork(), $Introduction->getUrl()) . ')';
+ $gsid = ContactSelector::getServerIdForProfile($Introduction->getUrl());
+ $header .= ' (' . ContactSelector::networkToName($Introduction->getNetwork(), '', $gsid) . ')';
if ($Introduction->getNetwork() != Protocol::DIASPORA) {
$discard = $this->t('Discard');
@@ -191,7 +192,7 @@ class Introductions extends BaseNotifications
'$addr' => $Introduction->getAddr(),
'$lbl_knowyou' => $lbl_knowyou,
'$lbl_network' => $this->t('Network:'),
- '$network' => ContactSelector::networkToName($Introduction->getNetwork(), $Introduction->getUrl()),
+ '$network' => ContactSelector::networkToName($Introduction->getNetwork(), '', $gsid),
'$knowyou' => $knowyou,
'$approve' => $this->t('Approve'),
'$note' => $Introduction->getNote(),
diff --git a/src/Module/OAuth/Authorize.php b/src/Module/OAuth/Authorize.php
index 266f00402e..cd7b274ba6 100644
--- a/src/Module/OAuth/Authorize.php
+++ b/src/Module/OAuth/Authorize.php
@@ -36,17 +36,18 @@ class Authorize extends BaseApi
], $request);
if ($request['response_type'] != 'code') {
- Logger::warning('Unsupported or missing response type', ['request' => $_REQUEST]);
+ Logger::warning('Unsupported or missing response type', ['request' => $request]);
$this->logAndJsonError(422, $this->errorFactory->UnprocessableEntity($this->t('Unsupported or missing response type')));
}
if (empty($request['client_id']) || empty($request['redirect_uri'])) {
- Logger::warning('Incomplete request data', ['request' => $_REQUEST]);
+ Logger::warning('Incomplete request data', ['request' => $request]);
$this->logAndJsonError(422, $this->errorFactory->UnprocessableEntity($this->t('Incomplete request data')));
}
$application = OAuth::getApplication($request['client_id'], $request['client_secret'], $request['redirect_uri']);
if (empty($application)) {
+ Logger::warning('An application could not be fetched.', ['request' => $request]);
$this->logAndJsonError(422, $this->errorFactory->UnprocessableEntity());
}
diff --git a/src/Module/OpenSearch.php b/src/Module/OpenSearch.php
index ace70789c6..68594e9b88 100644
--- a/src/Module/OpenSearch.php
+++ b/src/Module/OpenSearch.php
@@ -9,10 +9,14 @@ namespace Friendica\Module;
use DOMDocument;
use DOMElement;
+use Friendica\App;
use Friendica\BaseModule;
-use Friendica\Core\System;
-use Friendica\DI;
+use Friendica\Core\Config\Capability\IManageConfigValues;
+use Friendica\Core\L10n;
+use Friendica\Util\BasePath;
+use Friendica\Util\Profiler;
use Friendica\Util\XML;
+use Psr\Log\LoggerInterface;
/**
* Prints the opensearch description document
@@ -20,22 +24,37 @@ use Friendica\Util\XML;
*/
class OpenSearch extends BaseModule
{
+ /** @var IManageConfigValues */
+ private $config;
+
+ /** @var App\baseUrl */
+ protected $baseUrl;
+
+ /** @var string */
+ private $basePath;
+
+ public function __construct(BasePath $basePath, IManageConfigValues $config, 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->config = $config;
+ $this->basePath = $basePath->getPath();
+ $this->baseUrl = $baseUrl;
+ }
+
/**
* @throws \Exception
*/
protected function rawContent(array $request = [])
{
- $hostname = DI::baseUrl()->getHost();
- $baseUrl = (string)DI::baseUrl();
-
/** @var DOMDocument $xml */
XML::fromArray([
'OpenSearchDescription' => [
'@attributes' => [
- 'xmlns' => 'http://a9.com/-/spec/opensearch/1.1',
+ 'xmlns' => 'http://a9.com/-/spec/opensearch/1.1/',
],
- 'ShortName' => "Friendica $hostname",
- 'Description' => "Search in Friendica $hostname",
+ 'ShortName' => $this->baseUrl->getHost(),
+ 'Description' => $this->l10n->t('Search in Friendica %s', $this->baseUrl->getHost()),
'Contact' => 'https://github.com/friendica/friendica/issues',
'InputEncoding' => 'UTF-8',
'OutputEncoding' => 'UTF-8',
@@ -46,29 +65,41 @@ class OpenSearch extends BaseModule
/** @var DOMElement $parent */
$parent = $xml->getElementsByTagName('OpenSearchDescription')[0];
- XML::addElement($xml, $parent, 'Image',
- "$baseUrl/images/friendica-16.png", [
+ if (file_exists($this->basePath . '/favicon.ico')) {
+ $shortcut_icon = '/favicon.ico';
+ } else {
+ $shortcut_icon = $this->config->get('system', 'shortcut_icon');
+ }
+
+ if (!empty($shortcut_icon)) {
+ $imagedata = getimagesize($this->baseUrl . $shortcut_icon);
+ }
+
+ if (!empty($imagedata)) {
+ XML::addElement($xml, $parent, 'Image', $this->baseUrl . $shortcut_icon, [
+ 'width' => $imagedata[0],
+ 'height' => $imagedata[1],
+ 'type' => $imagedata['mime'],
+ ]);
+ } else {
+ XML::addElement($xml, $parent, 'Image',
+ $this->baseUrl . '/images/friendica-16.png', [
'height' => 16,
'width' => 16,
'type' => 'image/png',
]);
-
- XML::addElement($xml, $parent, 'Image',
- "$baseUrl/images/friendica-64.png", [
- 'height' => 64,
- 'width' => 64,
- 'type' => 'image/png',
- ]);
+ }
XML::addElement($xml, $parent, 'Url', '', [
'type' => 'text/html',
- 'template' => "$baseUrl/search?search={searchTerms}",
+ 'method' => 'get',
+ 'template' => $this->baseUrl . '/search?q={searchTerms}',
]);
XML::addElement($xml, $parent, 'Url', '', [
'type' => 'application/opensearchdescription+xml',
'rel' => 'self',
- 'template' => "$baseUrl/opensearch",
+ 'template' => $this->baseUrl . '/opensearch',
]);
$this->httpExit($xml->saveXML(), Response::TYPE_XML, 'application/opensearchdescription+xml');
diff --git a/src/Module/Profile/Conversations.php b/src/Module/Profile/Conversations.php
index 20ff5040e5..d250b58765 100644
--- a/src/Module/Profile/Conversations.php
+++ b/src/Module/Profile/Conversations.php
@@ -225,7 +225,7 @@ class Conversations extends BaseProfile
$items = array_merge($items, $pinned);
}
- $o .= $this->conversation->render($items, Conversation::MODE_PROFILE, false, false, 'pinned_received', $profile['uid']);
+ $o .= $this->conversation->render($items, Conversation::MODE_PROFILE, false, false, 'pinned_received', $this->session->getLocalUserId());
$o .= $pager->renderMinimal(count($items));
diff --git a/src/Module/Settings/Display.php b/src/Module/Settings/Display.php
index fd62230442..71e22c5fd2 100644
--- a/src/Module/Settings/Display.php
+++ b/src/Module/Settings/Display.php
@@ -8,6 +8,7 @@
namespace Friendica\Module\Settings;
use Friendica\App;
+use Friendica\Content\ContactSelector;
use Friendica\Content\Conversation\Collection\Timelines;
use Friendica\Content\Text\BBCode;
use Friendica\Content\Conversation\Factory\Channel as ChannelFactory;
@@ -80,23 +81,26 @@ class Display extends BaseSettings
$user = User::getById($uid);
- $theme = trim($request['theme']);
- $mobile_theme = trim($request['mobile_theme'] ?? '');
- $enable_smile = (bool)$request['enable_smile'];
- $enable = (array)$request['enable'];
- $bookmark = (array)$request['bookmark'];
- $channel_languages = (array)$request['channel_languages'];
- $first_day_of_week = (bool)$request['first_day_of_week'];
- $calendar_default_view = trim($request['calendar_default_view']);
- $infinite_scroll = (bool)$request['infinite_scroll'];
- $enable_smart_threading = (bool)$request['enable_smart_threading'];
- $enable_dislike = (bool)$request['enable_dislike'];
- $display_resharer = (bool)$request['display_resharer'];
- $stay_local = (bool)$request['stay_local'];
- $show_page_drop = (bool)$request['show_page_drop'];
- $display_eventlist = (bool)$request['display_eventlist'];
- $preview_mode = (int)$request['preview_mode'];
- $browser_update = (int)$request['browser_update'];
+ $theme = trim($request['theme']);
+ $mobile_theme = trim($request['mobile_theme'] ?? '');
+ $enable_smile = (bool)$request['enable_smile'];
+ $enable = (array)$request['enable'];
+ $bookmark = (array)$request['bookmark'];
+ $channel_languages = (array)$request['channel_languages'];
+ $first_day_of_week = (int)$request['first_day_of_week'];
+ $calendar_default_view = trim($request['calendar_default_view']);
+ $infinite_scroll = (bool)$request['infinite_scroll'];
+ $enable_smart_threading = (bool)$request['enable_smart_threading'];
+ $enable_dislike = (bool)$request['enable_dislike'];
+ $display_resharer = (bool)$request['display_resharer'];
+ $stay_local = (bool)$request['stay_local'];
+ $hide_empty_descriptions = (bool)$request['hide_empty_descriptions'];
+ $hide_custom_emojis = (bool)$request['hide_custom_emojis'];
+ $platform_icon_style = (int)$request['platform_icon_style'];
+ $show_page_drop = (bool)$request['show_page_drop'];
+ $display_eventlist = (bool)$request['display_eventlist'];
+ $preview_mode = (int)$request['preview_mode'];
+ $browser_update = (int)$request['browser_update'];
if ($browser_update != -1) {
$browser_update = $browser_update * 1000;
if ($browser_update < 10000) {
@@ -135,25 +139,29 @@ class Display extends BaseSettings
$this->pConfig->set($uid, 'system', 'mobile_theme', $mobile_theme);
}
- $this->pConfig->set($uid, 'system', 'itemspage_network' , $itemspage_network);
+ $this->pConfig->set($uid, 'system', 'itemspage_network', $itemspage_network);
$this->pConfig->set($uid, 'system', 'itemspage_mobile_network', $itemspage_mobile_network);
- $this->pConfig->set($uid, 'system', 'update_interval' , $browser_update);
- $this->pConfig->set($uid, 'system', 'no_smilies' , !$enable_smile);
- $this->pConfig->set($uid, 'system', 'infinite_scroll' , $infinite_scroll);
- $this->pConfig->set($uid, 'system', 'no_smart_threading' , !$enable_smart_threading);
- $this->pConfig->set($uid, 'system', 'hide_dislike' , !$enable_dislike);
- $this->pConfig->set($uid, 'system', 'display_resharer' , $display_resharer);
- $this->pConfig->set($uid, 'system', 'stay_local' , $stay_local);
- $this->pConfig->set($uid, 'system', 'show_page_drop' , $show_page_drop);
- $this->pConfig->set($uid, 'system', 'display_eventlist' , $display_eventlist);
- $this->pConfig->set($uid, 'system', 'preview_mode' , $preview_mode);
+ $this->pConfig->set($uid, 'system', 'update_interval', $browser_update);
+ $this->pConfig->set($uid, 'system', 'no_smilies', !$enable_smile);
+ $this->pConfig->set($uid, 'system', 'infinite_scroll', $infinite_scroll);
+ $this->pConfig->set($uid, 'system', 'no_smart_threading', !$enable_smart_threading);
+ $this->pConfig->set($uid, 'system', 'hide_dislike', !$enable_dislike);
+ $this->pConfig->set($uid, 'system', 'display_resharer', $display_resharer);
+ $this->pConfig->set($uid, 'system', 'stay_local', $stay_local);
+ $this->pConfig->set($uid, 'system', 'show_page_drop', $show_page_drop);
+ $this->pConfig->set($uid, 'system', 'display_eventlist', $display_eventlist);
+ $this->pConfig->set($uid, 'system', 'preview_mode', $preview_mode);
- $this->pConfig->set($uid, 'system', 'network_timelines' , $network_timelines);
- $this->pConfig->set($uid, 'system', 'enabled_timelines' , $enabled_timelines);
- $this->pConfig->set($uid, 'channel', 'languages' , $channel_languages);
+ $this->pConfig->set($uid, 'system', 'network_timelines', $network_timelines);
+ $this->pConfig->set($uid, 'system', 'enabled_timelines', $enabled_timelines);
+ $this->pConfig->set($uid, 'channel', 'languages', $channel_languages);
- $this->pConfig->set($uid, 'calendar', 'first_day_of_week' , $first_day_of_week);
- $this->pConfig->set($uid, 'calendar', 'default_view' , $calendar_default_view);
+ $this->pConfig->set($uid, 'accessibility', 'hide_empty_descriptions', $hide_empty_descriptions);
+ $this->pConfig->set($uid, 'accessibility', 'hide_custom_emojis', $hide_custom_emojis);
+ $this->pConfig->set($uid, 'accessibility', 'platform_icon_style', $platform_icon_style);
+
+ $this->pConfig->set($uid, 'calendar', 'first_day_of_week', $first_day_of_week);
+ $this->pConfig->set($uid, 'calendar', 'default_view', $calendar_default_view);
if (in_array($theme, Theme::getAllowedList())) {
if ($theme == $user['theme']) {
@@ -241,6 +249,17 @@ class Display extends BaseSettings
$show_page_drop = $this->pConfig->get($uid, 'system', 'show_page_drop', true);
$display_eventlist = $this->pConfig->get($uid, 'system', 'display_eventlist', true);
+ $hide_empty_descriptions = $this->pConfig->get($uid, 'accessibility', 'hide_empty_descriptions', false);
+ $hide_custom_emojis = $this->pConfig->get($uid, 'accessibility', 'hide_custom_emojis', false);
+ $platform_icon_style = $this->pConfig->get($uid, 'accessibility', 'platform_icon_style', ContactSelector::SVG_COLOR_BLACK);
+ $platform_icon_styles = [
+ ContactSelector::SVG_DISABLED => $this->t('Disabled'),
+ ContactSelector::SVG_COLOR_BLACK => $this->t('Color/Black'),
+ ContactSelector::SVG_BLACK => $this->t('Black'),
+ ContactSelector::SVG_COLOR_WHITE => $this->t('Color/White'),
+ ContactSelector::SVG_WHITE => $this->t('White'),
+ ];
+
$preview_mode = $this->pConfig->get($uid, 'system', 'preview_mode', BBCode::PREVIEW_LARGE);
$preview_modes = [
BBCode::PREVIEW_NONE => $this->t('No preview'),
@@ -308,18 +327,21 @@ class Display extends BaseSettings
'$mobile_theme' => ['mobile_theme', $this->t('Mobile Theme:'), $mobile_theme_selected, '', $mobile_themes, false],
'$theme_config' => $theme_config,
- '$itemspage_network' => ['itemspage_network' , $this->t('Number of items to display per page:'), $itemspage_network, $this->t('Maximum of 100 items')],
+ '$itemspage_network' => ['itemspage_network', $this->t('Number of items to display per page:'), $itemspage_network, $this->t('Maximum of 100 items')],
'$itemspage_mobile_network' => ['itemspage_mobile_network', $this->t('Number of items to display per page when viewed from mobile device:'), $itemspage_mobile_network, $this->t('Maximum of 100 items')],
- '$ajaxint' => ['browser_update' , $this->t('Update browser every xx seconds'), $browser_update, $this->t('Minimum of 10 seconds. Enter -1 to disable it.')],
- '$enable_smile' => ['enable_smile' , $this->t('Display emoticons'), $enable_smile, $this->t('When enabled, emoticons are replaced with matching symbols.')],
- '$infinite_scroll' => ['infinite_scroll' , $this->t('Infinite scroll'), $infinite_scroll, $this->t('Automatic fetch new items when reaching the page end.')],
- '$enable_smart_threading' => ['enable_smart_threading' , $this->t('Enable Smart Threading'), $enable_smart_threading, $this->t('Enable the automatic suppression of extraneous thread indentation.')],
- '$enable_dislike' => ['enable_dislike' , $this->t('Display the Dislike feature'), $enable_dislike, $this->t('Display the Dislike button and dislike reactions on posts and comments.')],
- '$display_resharer' => ['display_resharer' , $this->t('Display the resharer'), $display_resharer, $this->t('Display the first resharer as icon and text on a reshared item.')],
- '$stay_local' => ['stay_local' , $this->t('Stay local'), $stay_local, $this->t("Don't go to a remote system when following a contact link.")],
- '$show_page_drop' => ['show_page_drop' , $this->t('Show the post deletion checkbox'), $show_page_drop, $this->t("Display the checkbox for the post deletion on the network page.")],
- '$display_eventlist' => ['display_eventlist' , $this->t('DIsplay the event list'), $display_eventlist, $this->t("Display the birthday reminder and event list on the network page.")],
- '$preview_mode' => ['preview_mode' , $this->t('Link preview mode'), $preview_mode, $this->t('Appearance of the link preview that is added to each post with a link.'), $preview_modes, false],
+ '$ajaxint' => ['browser_update', $this->t('Update browser every xx seconds'), $browser_update, $this->t('Minimum of 10 seconds. Enter -1 to disable it.')],
+ '$enable_smile' => ['enable_smile', $this->t('Display emoticons'), $enable_smile, $this->t('When enabled, emoticons are replaced with matching symbols.')],
+ '$infinite_scroll' => ['infinite_scroll', $this->t('Infinite scroll'), $infinite_scroll, $this->t('Automatic fetch new items when reaching the page end.')],
+ '$enable_smart_threading' => ['enable_smart_threading', $this->t('Enable Smart Threading'), $enable_smart_threading, $this->t('Enable the automatic suppression of extraneous thread indentation.')],
+ '$enable_dislike' => ['enable_dislike', $this->t('Display the Dislike feature'), $enable_dislike, $this->t('Display the Dislike button and dislike reactions on posts and comments.')],
+ '$display_resharer' => ['display_resharer', $this->t('Display the resharer'), $display_resharer, $this->t('Display the first resharer as icon and text on a reshared item.')],
+ '$stay_local' => ['stay_local', $this->t('Stay local'), $stay_local, $this->t("Don't go to a remote system when following a contact link.")],
+ '$show_page_drop' => ['show_page_drop', $this->t('Show the post deletion checkbox'), $show_page_drop, $this->t("Display the checkbox for the post deletion on the network page.")],
+ '$display_eventlist' => ['display_eventlist', $this->t('DIsplay the event list'), $display_eventlist, $this->t("Display the birthday reminder and event list on the network page.")],
+ '$preview_mode' => ['preview_mode', $this->t('Link preview mode'), $preview_mode, $this->t('Appearance of the link preview that is added to each post with a link.'), $preview_modes, false],
+ '$hide_empty_descriptions' => ['hide_empty_descriptions', $this->t('Hide pictures with empty alternative text'), $hide_empty_descriptions, $this->t("Don't display pictures that are missing the alternative text.")],
+ '$hide_custom_emojis' => ['hide_custom_emojis', $this->t('Hide custom emojis'), $hide_custom_emojis, $this->t("Don't display custom emojis.")],
+ '$platform_icon_style' => ['platform_icon_style', $this->t('Platform icons style'), $platform_icon_style, $this->t('Style of the platform icons'), $platform_icon_styles, false],
'$timeline_label' => $this->t('Label'),
'$timeline_descriptiom' => $this->t('Description'),
@@ -330,7 +352,7 @@ class Display extends BaseSettings
'$channel_languages' => ['channel_languages[]', $this->t('Channel languages:'), $channel_languages, $this->t('Select all languages that you want to see in your channels.'), $languages, 'multiple'],
- '$first_day_of_week' => ['first_day_of_week' , $this->t('Beginning of week:') , $first_day_of_week , '', $weekdays , false],
+ '$first_day_of_week' => ['first_day_of_week', $this->t('Beginning of week:'), $first_day_of_week, '', $weekdays, false],
'$calendar_default_view' => ['calendar_default_view', $this->t('Default calendar view:'), $calendar_default_view, '', $calendarViews, false],
]);
}
diff --git a/src/Module/Settings/TwoFactor/AppSpecific.php b/src/Module/Settings/TwoFactor/AppSpecific.php
index c10bf8d680..3cf7062a4b 100644
--- a/src/Module/Settings/TwoFactor/AppSpecific.php
+++ b/src/Module/Settings/TwoFactor/AppSpecific.php
@@ -77,7 +77,8 @@ class AppSpecific extends BaseSettings
$this->baseUrl->redirect('settings/2fa/app_specific?t=' . self::getFormSecurityToken('settings_2fa_password'));
} else {
$this->appSpecificPassword = AppSpecificPassword::generateForUser($this->session->getLocalUserId(), $request['description'] ?? '');
- $this->systemMessages->addInfo($this->t('New app-specific password generated.'));
+ $this->systemMessages->addInfo($this->t('New app-specific password generated: %s', $this->appSpecificPassword['plaintext_password']));
+ $this->baseUrl->redirect('settings/2fa/app_specific?t=' . self::getFormSecurityToken('settings_2fa_password'));
}
break;
diff --git a/src/Module/Stats.php b/src/Module/Stats.php
index 9778d979a5..d675aa80ee 100644
--- a/src/Module/Stats.php
+++ b/src/Module/Stats.php
@@ -14,8 +14,11 @@ use Friendica\Core\Config\Capability\IManageConfigValues;
use Friendica\Core\KeyValueStorage\Capability\IManageKeyValuePairs;
use Friendica\Core\L10n;
use Friendica\Core\Protocol;
+use Friendica\Core\Update;
use Friendica\Core\Worker;
use Friendica\Database\Database;
+use Friendica\Database\DBA;
+use Friendica\Database\DBStructure;
use Friendica\Model\Register;
use Friendica\Moderation\Entity\Report;
use Friendica\Util\DateTimeFormat;
@@ -23,6 +26,10 @@ use Friendica\Util\Profiler;
use Psr\Log\LoggerInterface;
use Friendica\Network\HTTPException;
+/**
+ * Returns statistics of the current node for administration use
+ * Like for monitoring
+ */
class Stats extends BaseModule
{
/** @var IManageConfigValues */
@@ -129,7 +136,25 @@ class Stats extends BaseModule
],
'open' => $this->dba->count('report', ['status' => Report::STATUS_OPEN]),
'closed' => $this->dba->count('report', ['status' => Report::STATUS_CLOSED]),
- ]
+ ],
+ 'update' => [
+ 'available' => Update::isAvailable(),
+ 'available_version' => Update::getAvailableVersion(),
+ 'status' => Update::getStatus(),
+ 'db_status' => DBStructure::getUpdateStatus(),
+ ],
+ 'server' => [
+ 'version' => App::VERSION,
+ 'php' => [
+ 'version' => phpversion(),
+ 'upload_max_filesize' => ini_get('upload_max_filesize'),
+ 'post_max_size' => ini_get('post_max_size'),
+ 'memory_limit' => ini_get('memory_limit'),
+ ],
+ 'database' => [
+ 'max_allowed_packet' => DBA::getVariable('max_allowed_packet'),
+ ],
+ ],
];
if (Addon::isEnabled('bluesky')) {
diff --git a/src/Module/Xrd.php b/src/Module/Xrd.php
index 7c156f5174..3e55f0571b 100644
--- a/src/Module/Xrd.php
+++ b/src/Module/Xrd.php
@@ -33,14 +33,14 @@ class Xrd extends BaseModule
}
$uri = urldecode(trim($_GET['uri']));
- $mode = self::getAcceptedContentType($_SERVER['HTTP_ACCEPT'] ?? '', Response::TYPE_JSON);
+ $mode = self::getAcceptedContentType($_SERVER['HTTP_ACCEPT'] ?? '', Response::TYPE_XML);
} else {
if (empty($_GET['resource'])) {
throw new BadRequestException();
}
$uri = urldecode(trim($_GET['resource']));
- $mode = self::getAcceptedContentType($_SERVER['HTTP_ACCEPT'] ?? '', Response::TYPE_XML);
+ $mode = self::getAcceptedContentType($_SERVER['HTTP_ACCEPT'] ?? '', Response::TYPE_JSON);
}
if (Network::isValidHttpUrl($uri)) {
diff --git a/src/Object/Api/Mastodon/Status/FriendicaExtension.php b/src/Object/Api/Mastodon/Status/FriendicaExtension.php
index cca002c7a1..4564be254b 100644
--- a/src/Object/Api/Mastodon/Status/FriendicaExtension.php
+++ b/src/Object/Api/Mastodon/Status/FriendicaExtension.php
@@ -57,6 +57,9 @@ class FriendicaExtension extends BaseDataTransferObject
*/
protected $visibility;
+ /** @var string|null */
+ protected $content;
+
/**
* Creates a FriendicaExtension object
*
@@ -86,7 +89,8 @@ class FriendicaExtension extends BaseDataTransferObject
?string $version,
?string $sitename,
?FriendicaDeliveryData $delivery_data,
- ?FriendicaVisibility $visibility
+ ?FriendicaVisibility $visibility,
+ ?string $content
) {
$this->title = $title;
$this->changed_at = $changed_at ? DateTimeFormat::utc($changed_at, DateTimeFormat::JSON) : null;
@@ -100,6 +104,7 @@ class FriendicaExtension extends BaseDataTransferObject
$this->version = $version;
$this->sitename = $sitename;
$this->visibility = $visibility;
+ $this->content = $content;
}
/**
diff --git a/src/Object/Api/Twitter/Status.php b/src/Object/Api/Twitter/Status.php
index 2940cd41d6..793f32fb01 100644
--- a/src/Object/Api/Twitter/Status.php
+++ b/src/Object/Api/Twitter/Status.php
@@ -121,7 +121,7 @@ class Status extends BaseDataTransferObject
$this->entities = $entities;
$this->extended_entities = $entities;
- $origin = ContactSelector::networkToName($item['author-network'], $item['author-link'], $item['network']);
+ $origin = ContactSelector::networkToName($item['author-network'], $item['network'], $item['author-gsid']);
if (empty($this->source)) {
$this->source = $origin;
diff --git a/src/Object/Api/Twitter/User.php b/src/Object/Api/Twitter/User.php
index 9effb4c617..ba376263c1 100644
--- a/src/Object/Api/Twitter/User.php
+++ b/src/Object/Api/Twitter/User.php
@@ -131,7 +131,7 @@ class User extends BaseDataTransferObject
$this->name = $publicContact['name'] ?: $publicContact['nick'];
$this->screen_name = $publicContact['nick'] ?: $publicContact['name'];
$this->location = $publicContact['location'] ?:
- ContactSelector::networkToName($publicContact['network'], $publicContact['url'], $publicContact['protocol']);
+ ContactSelector::networkToName($publicContact['network'], $publicContact['protocol'], $publicContact['gsid']);
$this->derived = [];
$this->url = $publicContact['url'];
// No entities needed since we don't perform any shortening in the URL or description
diff --git a/src/Object/Post.php b/src/Object/Post.php
index dfc98a6d14..450af95c84 100644
--- a/src/Object/Post.php
+++ b/src/Object/Post.php
@@ -606,8 +606,8 @@ class Post
'edited' => $edited,
'author_gsid' => $item['author-gsid'],
'network' => $item['network'],
- 'network_name' => ContactSelector::networkToName($item['author-network'], $item['author-link'], $item['network'], $item['author-gsid']),
- 'network_icon' => ContactSelector::networkToIcon($item['network'], $item['author-link'], $item['author-gsid']),
+ 'network_name' => ContactSelector::networkToName($item['author-network'], $item['network'], $item['author-gsid']),
+ 'network_svg' => ContactSelector::networkToSVG($item['network'], $item['author-gsid'], '', DI::userSession()->getLocalUserId()),
'received' => $item['received'],
'commented' => $item['commented'],
'created_date' => $item['created'],
diff --git a/src/Protocol/ActivityPub/Processor.php b/src/Protocol/ActivityPub/Processor.php
index 930c31a0d3..21be0f6379 100644
--- a/src/Protocol/ActivityPub/Processor.php
+++ b/src/Protocol/ActivityPub/Processor.php
@@ -877,10 +877,10 @@ class Processor
{
if (!empty($activity['mediatype']) && ($activity['mediatype'] == 'text/markdown')) {
$item['title'] = strip_tags($activity['name'] ?? '');
- $content = Markdown::toBBCode($activity['content']);
+ $content = Markdown::toBBCode($activity['content'] ?? '');
} elseif (!empty($activity['mediatype']) && ($activity['mediatype'] == 'text/bbcode')) {
- $item['title'] = $activity['name'];
- $content = $activity['content'];
+ $item['title'] = $activity['name'] ?? '';
+ $content = $activity['content'] ?? '';
} else {
// By default assume "text/html"
$item['title'] = HTML::toBBCode($activity['name'] ?? '');
diff --git a/src/Protocol/ActivityPub/Transmitter.php b/src/Protocol/ActivityPub/Transmitter.php
index 0359738379..883a97c10a 100644
--- a/src/Protocol/ActivityPub/Transmitter.php
+++ b/src/Protocol/ActivityPub/Transmitter.php
@@ -637,14 +637,6 @@ class Transmitter
$audience[] = $owner['url'];
}
- if (self::isAnnounce($item) || self::isAPPost($last_id)) {
- // Will be activated in a later step
- $networks = Protocol::FEDERATED;
- } else {
- // For now only send to these contacts:
- $networks = [Protocol::ACTIVITYPUB];
- }
-
$data = ['to' => [], 'cc' => [], 'bto' => [], 'bcc' => [], 'audience' => $audience];
if ($item['gravity'] == Item::GRAVITY_PARENT) {
@@ -704,7 +696,7 @@ class Transmitter
$cid = Contact::getIdForURL($term['url'], $item['uid']);
if (!empty($cid) && in_array($cid, $receiver_list)) {
$contact = DBA::selectFirst('contact', ['url', 'network', 'protocol', 'gsid'], ['id' => $cid, 'network' => Protocol::FEDERATED]);
- if (!DBA::isResult($contact) || !self::isAPContact($contact, $networks)) {
+ if (!DBA::isResult($contact)) {
continue;
}
@@ -741,7 +733,7 @@ class Transmitter
}
$contact = DBA::selectFirst('contact', ['url', 'hidden', 'network', 'protocol', 'gsid'], ['id' => $receiver, 'network' => Protocol::FEDERATED]);
- if (!DBA::isResult($contact) || !self::isAPContact($contact, $networks)) {
+ if (!DBA::isResult($contact)) {
continue;
}
@@ -984,44 +976,16 @@ class Transmitter
return DBA::exists('inbox-status', ['url' => $url, 'archive' => true]);
}
- /**
- * Check if a given contact should be delivered via AP
- *
- * @param array $contact Contact array
- * @param array $networks Array with networks
- * @return bool Whether the used protocol matches ACTIVITYPUB
- * @throws Exception
- */
- private static function isAPContact(array $contact, array $networks): bool
- {
- if (in_array($contact['network'], $networks) || ($contact['protocol'] == Protocol::ACTIVITYPUB)) {
- return true;
- }
-
- return GServer::getProtocol($contact['gsid'] ?? 0) == Post\DeliveryData::ACTIVITYPUB;
- }
-
/**
* Fetches a list of inboxes of followers of a given user
*
* @param integer $uid User ID
- * @param boolean $all_ap Retrieve all AP enabled inboxes
* @return array of follower inboxes
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
* @throws \ImagickException
*/
- public static function fetchTargetInboxesforUser(int $uid, bool $all_ap = false): array
+ public static function fetchTargetInboxesforUser(int $uid): array
{
- $inboxes = [];
-
- if ($all_ap) {
- // Will be activated in a later step
- $networks = Protocol::FEDERATED;
- } else {
- // For now only send to these contacts:
- $networks = [Protocol::ACTIVITYPUB];
- }
-
$condition = [
'uid' => $uid,
'self' => false,
@@ -1029,37 +993,51 @@ class Transmitter
'pending' => false,
'blocked' => false,
'network' => Protocol::FEDERATED,
- 'contact-type' => [Contact::TYPE_UNKNOWN, Contact::TYPE_PERSON, Contact::TYPE_NEWS, Contact::TYPE_ORGANISATION],
];
if (!empty($uid)) {
$condition['rel'] = [Contact::FOLLOWER, Contact::FRIEND];
}
- $contacts = DBA::select('contact', ['id', 'url', 'network', 'protocol', 'gsid'], $condition);
- while ($contact = DBA::fetch($contacts)) {
- if (!self::isAPContact($contact, $networks)) {
+ return self::addInboxesForCondition($condition, []);
+ }
+
+ /**
+ * Fetch inboxes for a list of contacts
+ *
+ * @param array $recipients
+ * @param array $inboxes
+ * @return array
+ */
+ public static function addInboxesForRecipients(array $recipients, array $inboxes): array
+ {
+ return self::addInboxesForCondition(['id' => $recipients], $inboxes);
+ }
+
+ /**
+ * Get a list of inboxes for a given contact condition
+ *
+ * @param array $condition
+ * @param array $inboxes
+ * @return array
+ */
+ private static function addInboxesForCondition(array $condition, array $inboxes): array
+ {
+ $condition = DBA::mergeConditions($condition, ["(`ap-inbox` IS NOT NULL OR `ap-sharedinbox` IS NOT NULL)"]);
+
+ $accounts = DBA::select('account-user-view', ['id', 'url', 'ap-inbox', 'ap-sharedinbox'], $condition);
+ while ($account = DBA::fetch($accounts)) {
+ if (!empty($account['ap-sharedinbox']) && !Contact::isLocal($account['url'])) {
+ $target = $account['ap-sharedinbox'];
+ } elseif (!empty($account['ap-inbox'])) {
+ $target = $account['ap-inbox'];
+ } else {
continue;
}
-
- if (Network::isUrlBlocked($contact['url'])) {
- continue;
- }
-
- $profile = APContact::getByURL($contact['url'], false);
- if (!empty($profile)) {
- if (empty($profile['sharedinbox']) || Contact::isLocal($contact['url'])) {
- $target = $profile['inbox'];
- } else {
- $target = $profile['sharedinbox'];
- }
- if (!self::archivedInbox($target)) {
- $inboxes[$target][] = $contact['id'];
- }
+ if (!Transmitter::archivedInbox($target) && (empty($inboxes[$target]) || !in_array($account['id'], $inboxes[$target]))) {
+ $inboxes[$target][] = $account['id'];
}
}
- DBA::close($contacts);
-
return $inboxes;
}
@@ -1106,7 +1084,7 @@ class Transmitter
}
if ($item_profile && ($receiver == $item_profile['followers']) && ($uid == $profile_uid)) {
- $inboxes = array_merge_recursive($inboxes, self::fetchTargetInboxesforUser($uid, true));
+ $inboxes = array_merge_recursive($inboxes, self::fetchTargetInboxesforUser($uid));
} else {
$profile = APContact::getByURL($receiver, false);
if (!empty($profile)) {
@@ -1413,7 +1391,7 @@ class Transmitter
}
}
- if (!$api_mode && !$item['origin']) {
+ if (!$api_mode && !$item['deleted'] && !$item['origin']) {
Logger::debug('Post is not ours and is not stored', ['id' => $item['id'], 'uri-id' => $item['uri-id']]);
return false;
}
@@ -2103,17 +2081,18 @@ class Transmitter
* Creates an activity id for a given contact id
*
* @param integer $cid Contact ID of target
+ * @param integer $uid Optional user id. if empty, the contact uid is used.
*
* @return bool|string activity id
*/
- public static function activityIDFromContact(int $cid)
+ public static function activityIDFromContact(int $cid, int $uid = 0)
{
$contact = DBA::selectFirst('contact', ['uid', 'id', 'created'], ['id' => $cid]);
if (!DBA::isResult($contact)) {
return false;
}
- $hash = hash('ripemd128', $contact['uid'] . '-' . $contact['id'] . '-' . $contact['created']);
+ $hash = hash('ripemd128', $uid ?: $contact['uid'] . '-' . $contact['id'] . '-' . $contact['created']);
$uuid = substr($hash, 0, 8) . '-' . substr($hash, 8, 4) . '-' . substr($hash, 12, 4) . '-' . substr($hash, 16, 4) . '-' . substr($hash, 20, 12);
return DI::baseUrl() . '/activity/' . $uuid;
}
@@ -2477,6 +2456,53 @@ class Transmitter
return HTTPSignature::transmit($signed, $profile['inbox'], $owner);
}
+ /**
+ * Transmits a message that we don't want to block this contact anymore
+ *
+ * @param string $target Target profile
+ * @param integer $cid Contact id
+ * @param array $owner Sender owner-view record
+ * @return bool success
+ * @throws \Friendica\Network\HTTPException\InternalServerErrorException
+ * @throws \ImagickException
+ * @throws \Exception
+ */
+ public static function sendContactUnblock(string $target, int $cid, array $owner): bool
+ {
+ $profile = APContact::getByURL($target);
+ if (empty($profile['inbox'])) {
+ Logger::warning('No inbox found for target', ['target' => $target, 'profile' => $profile]);
+ return false;
+ }
+
+ $object_id = self::activityIDFromContact($cid, $owner['uid']);
+ if (empty($object_id)) {
+ return false;
+ }
+
+ $objectId = DI::baseUrl() . '/activity/' . System::createGUID();
+
+ $data = [
+ '@context' => ActivityPub::CONTEXT,
+ 'id' => $objectId,
+ 'type' => 'Undo',
+ 'actor' => $owner['url'],
+ 'object' => [
+ 'id' => $object_id,
+ 'type' => 'Block',
+ 'actor' => $owner['url'],
+ 'object' => $profile['url']
+ ],
+ 'instrument' => self::getService(),
+ 'to' => [$profile['url']],
+ ];
+
+ Logger::info('Sending undo to ' . $target . ' for user ' . $owner['uid'] . ' with id ' . $objectId);
+
+ $signed = LDSignature::sign($data, $owner);
+ return HTTPSignature::transmit($signed, $profile['inbox'], $owner);
+ }
+
/**
* Prepends mentions (@) to $body variable
*
diff --git a/src/Protocol/DFRN.php b/src/Protocol/DFRN.php
index 7b82adaf91..8ea8dfd37a 100644
--- a/src/Protocol/DFRN.php
+++ b/src/Protocol/DFRN.php
@@ -986,7 +986,7 @@ class DFRN
Logger::notice('Got exception', ['code' => $th->getCode(), 'message' => $th->getMessage()]);
return -25;
}
- Item::incrementOutbound(Protocol::DFRN);
+
$xml = $postResult->getBodyString();
$curl_stat = $postResult->getReturnCode();
@@ -1017,6 +1017,7 @@ class DFRN
if (!empty($contact['gsid'])) {
GServer::setReachableById($contact['gsid'], Protocol::DFRN);
+ Item::incrementOutbound(Protocol::DFRN);
}
if (!empty($res->message)) {
diff --git a/src/Protocol/Diaspora.php b/src/Protocol/Diaspora.php
index 94fec1b00d..74963025e9 100644
--- a/src/Protocol/Diaspora.php
+++ b/src/Protocol/Diaspora.php
@@ -2962,7 +2962,6 @@ class Diaspora
return 0;
}
$return_code = $postResult->getReturnCode();
- Item::incrementOutbound(Protocol::DIASPORA);
} else {
Logger::notice('test_mode');
return 200;
@@ -2971,6 +2970,7 @@ class Diaspora
if (!empty($contact['gsid']) && (empty($return_code) || $postResult->isTimeout())) {
GServer::setFailureById($contact['gsid']);
} elseif (!empty($contact['gsid']) && ($return_code >= 200) && ($return_code <= 299)) {
+ Item::incrementOutbound(Protocol::DIASPORA);
GServer::setReachableById($contact['gsid'], Protocol::DIASPORA);
}
diff --git a/src/Security/OAuth.php b/src/Security/OAuth.php
index a24bb0e8d0..9a50a438d7 100644
--- a/src/Security/OAuth.php
+++ b/src/Security/OAuth.php
@@ -129,8 +129,10 @@ class OAuth
return [];
}
- // The redirect_uri could contain several URI that are separated by spaces.
- if (($application['redirect_uri'] != $redirect_uri) && !in_array($redirect_uri, explode(' ', $application['redirect_uri']))) {
+ // The redirect_uri could contain several URI that are separated by spaces or new lines.
+ $uris = explode(' ', str_replace(["\n", "\r", "\t"], ' ', $application['redirect_uri']));
+ if (!in_array($redirect_uri, $uris)) {
+ Logger::warning('Redirection uri does not match', ['redirect_uri' => $redirect_uri, 'application-redirect_uri' => $application['redirect_uri']]);
return [];
}
diff --git a/src/Util/HTTPSignature.php b/src/Util/HTTPSignature.php
index d7679abd1f..0fdfccf330 100644
--- a/src/Util/HTTPSignature.php
+++ b/src/Util/HTTPSignature.php
@@ -297,7 +297,9 @@ class HTTPSignature
self::setInboxStatus($target, ($return_code >= 200) && ($return_code <= 299));
- Item::incrementOutbound(Protocol::ACTIVITYPUB);
+ if (($return_code >= 200) && ($return_code <= 299)) {
+ Item::incrementOutbound(Protocol::ACTIVITYPUB);
+ }
return $postResult;
}
@@ -761,9 +763,9 @@ class HTTPSignature
}
if (in_array('(expires)', $sig_block['headers']) && !empty($sig_block['expires'])) {
- $expired = min($sig_block['expires'], $created + 300);
+ $expired = min($sig_block['expires'], $created + 3600);
} else {
- $expired = $created + 300;
+ $expired = $created + 3600;
}
// Check if the signed date field is in an acceptable range
diff --git a/src/Util/JsonLD.php b/src/Util/JsonLD.php
index e18684de60..1ee5c0920e 100644
--- a/src/Util/JsonLD.php
+++ b/src/Util/JsonLD.php
@@ -58,6 +58,9 @@ class JsonLD
case 'http://joinmastodon.org/ns':
$url = DI::basePath() . '/static/joinmastodon.jsonld';
break;
+ case 'https://purl.archive.org/socialweb/webfinger':
+ $url = DI::basePath() . '/static/socialweb-webfinger.jsonld';
+ break;
default:
switch (parse_url($url, PHP_URL_PATH)) {
case '/schemas/litepub-0.1.jsonld';
diff --git a/src/Util/Strings.php b/src/Util/Strings.php
index 6ed6263a93..46d10529a9 100644
--- a/src/Util/Strings.php
+++ b/src/Util/Strings.php
@@ -155,7 +155,8 @@ class Strings
{
if ($network != '') {
if ($url != '') {
- $network_name = '' . ContactSelector::networkToName($network, $url) . '';
+ $gsid = ContactSelector::getServerIdForProfile($url);
+ $network_name = '' . ContactSelector::networkToName($network, '', $gsid) . '';
} else {
$network_name = ContactSelector::networkToName($network);
}
diff --git a/src/Worker/Contact/Block.php b/src/Worker/Contact/Block.php
new file mode 100644
index 0000000000..9c1c2cb43c
--- /dev/null
+++ b/src/Worker/Contact/Block.php
@@ -0,0 +1,38 @@
+ $cmd, 'target' => $post_uriid, 'sender_uid' => $sender_uid]);
$target_id = $post_uriid;
- $top_level = false;
$recipients = [];
$delivery_contacts_stmt = null;
@@ -126,8 +126,6 @@ class Notifier
$item['deleted'] = 1;
}
}
-
- $top_level = $target_item['gravity'] == Item::GRAVITY_PARENT;
}
$owner = User::getOwnerDataById($uid);
@@ -161,16 +159,17 @@ class Notifier
Logger::info('Got post', ['guid' => $target_item['guid'], 'uri-id' => $target_item['uri-id'], 'network' => $target_item['network'], 'parent-network' => $parent['network'], 'thread-parent-network' => $thr_parent['network']]);
- if (!self::isRemovalActivity($cmd, $owner, Protocol::ACTIVITYPUB)) {
- $apdelivery = self::activityPubDelivery($cmd, $target_item, $parent, $thr_parent, $a->getQueueValue('priority'), $a->getQueueValue('created'), $owner);
- $ap_contacts = $apdelivery['contacts'];
- $delivery_queue_count += $apdelivery['count'];
- // Restrict distribution to AP, when there are no permissions.
- if (($target_item['private'] == Item::PRIVATE) && empty($target_item['allow_cid']) && empty($target_item['allow_gid']) && empty($target_item['deny_cid']) && empty($target_item['deny_gid'])) {
- $only_ap_delivery = true;
- $public_message = false;
- $diaspora_delivery = false;
- }
+ // Restrict distribution to AP, when there are no permissions.
+ if (!self::isRemovalActivity($cmd, $owner, Protocol::ACTIVITYPUB) && ($target_item['private'] == Item::PRIVATE) && empty($target_item['allow_cid']) && empty($target_item['allow_gid']) && empty($target_item['deny_cid']) && empty($target_item['deny_gid'])) {
+ $only_ap_delivery = true;
+ $public_message = false;
+ $diaspora_delivery = false;
+ }
+
+ if (!$target_item['origin'] && $target_item['network'] == Protocol::ACTIVITYPUB) {
+ $only_ap_delivery = true;
+ $diaspora_delivery = false;
+ Logger::debug('Remote post arrived via AP', ['guid' => $target_item['guid'], 'uri-id' => $target_item['uri-id'], 'network' => $target_item['network'], 'parent-network' => $parent['network'], 'thread-parent-network' => $thr_parent['network']]);
}
// Only deliver threaded replies (comment to a comment) to Diaspora
@@ -194,45 +193,19 @@ class Notifier
// if $parent['wall'] == 1 we will already have the parent message in our array
// and we will relay the whole lot.
-
- $localhost = str_replace('www.','', DI::baseUrl()->getHost());
- if (strpos($localhost,':')) {
- $localhost = substr($localhost,0,strpos($localhost,':'));
- }
- /**
- *
- * Be VERY CAREFUL if you make any changes to the following several lines. Seemingly innocuous changes
- * have been known to cause runaway conditions which affected several servers, along with
- * permissions issues.
- *
- */
-
$relay_to_owner = false;
- if (!$top_level && ($parent['wall'] == 0) && (stristr($target_item['uri'],$localhost))) {
+ if (($target_item['gravity'] != Item::GRAVITY_PARENT) && !$parent['wall'] && $target_item['origin']) {
$relay_to_owner = true;
}
- // until the 'origin' flag has been in use for several months
- // we will just use it as a fallback test
- // later we will be able to use it as the primary test of whether or not to relay.
-
- if (!$target_item['origin']) {
- $relay_to_owner = false;
- }
- if ($parent['origin']) {
+ if (!$target_item['origin'] || $parent['origin']) {
$relay_to_owner = false;
}
// Special treatment for group posts
if (Item::isGroupPost($target_item['uri-id'])) {
$relay_to_owner = true;
- $direct_group_delivery = true;
- }
-
- // Avoid that comments in a group thread are sent to OStatus
- if (Item::isGroupPost($parent['uri-id'])) {
- $direct_group_delivery = true;
}
$exclusive_delivery = false;
@@ -279,17 +252,19 @@ class Notifier
return;
}
- if (strlen($parent['allow_cid'])
+ if (
+ strlen($parent['allow_cid'])
|| strlen($parent['allow_gid'])
|| strlen($parent['deny_cid'])
- || strlen($parent['deny_gid'])) {
+ || strlen($parent['deny_gid'])
+ ) {
$public_message = false; // private recipients, not public
}
$aclFormatter = DI::aclFormatter();
$allow_people = $aclFormatter->expand($parent['allow_cid']);
- $allow_circles = Circle::expand($uid, $aclFormatter->expand($parent['allow_gid']),true);
+ $allow_circles = Circle::expand($uid, $aclFormatter->expand($parent['allow_gid']), true);
$deny_people = $aclFormatter->expand($parent['deny_cid']);
$deny_circles = Circle::expand($uid, $aclFormatter->expand($parent['deny_gid']));
@@ -297,10 +272,10 @@ class Notifier
$recipients[] = $item['contact-id'];
// pull out additional tagged people to notify (if public message)
if ($public_message && $item['inform']) {
- $people = explode(',',$item['inform']);
+ $people = explode(',', $item['inform']);
foreach ($people as $person) {
- if (substr($person,0,4) === 'cid:') {
- $recipients[] = intval(substr($person,4));
+ if (substr($person, 0, 4) === 'cid:') {
+ $recipients[] = intval(substr($person, 4));
}
}
}
@@ -313,7 +288,7 @@ class Notifier
// If this is a public message and pubmail is set on the parent, include all your email contacts
if (
function_exists('imap_open')
- && !DI::config()->get('system','imap_disabled')
+ && !DI::config()->get('system', 'imap_disabled')
&& $public_message
&& intval($target_item['pubmail'])
) {
@@ -338,51 +313,65 @@ class Notifier
$public_message = false;
}
- if (empty($delivery_contacts_stmt)) {
- if ($only_ap_delivery) {
- $recipients = $ap_contacts;
- } elseif ($followup) {
- $recipients = $recipients_followup;
- }
- $condition = ['id' => $recipients, 'self' => false, 'uid' => [0, $uid],
- 'blocked' => false, 'pending' => false, 'archive' => false];
- if (!empty($networks)) {
- $condition['network'] = $networks;
- }
- $delivery_contacts_stmt = DBA::select('contact', ['id', 'uri-id', 'addr', 'url', 'network', 'protocol', 'baseurl', 'gsid', 'batch'], $condition);
+ if ($only_ap_delivery) {
+ $recipients = [];
+ } elseif ($followup) {
+ $recipients = $recipients_followup;
}
- $conversants = [];
- $batch_delivery = false;
+ $apdelivery = self::activityPubDelivery($cmd, $target_item, $parent, $thr_parent, $a->getQueueValue('priority'), $a->getQueueValue('created'), $recipients);
+ $ap_contacts = $apdelivery['contacts'];
+ $delivery_queue_count += $apdelivery['count'];
- if ($public_message && !in_array($cmd, [Delivery::MAIL, Delivery::SUGGESTION]) && !$followup) {
- $participants = [];
-
- if ($diaspora_delivery && !$unlisted) {
- $batch_delivery = true;
-
- $participants = DBA::selectToArray('contact', ['batch', 'network', 'protocol', 'baseurl', 'gsid', 'id', 'url', 'name'],
- ["`network` = ? AND `batch` != '' AND `uid` = ? AND `rel` != ? AND NOT `blocked` AND NOT `pending` AND NOT `archive`", Protocol::DIASPORA, $owner['uid'], Contact::SHARING],
- ['group_by' => ['batch', 'network', 'protocol']]);
-
- // Fetch the participation list
- // The function will ensure that there are no duplicates
- $participants = Diaspora::participantsForThread($target_item, $participants);
+ if (!$only_ap_delivery) {
+ if (empty($delivery_contacts_stmt)) {
+ $condition = ['id' => $recipients, 'self' => false, 'uid' => [0, $uid],
+ 'blocked' => false, 'pending' => false, 'archive' => false];
+ if (!empty($networks)) {
+ $condition['network'] = $networks;
+ }
+ $delivery_contacts_stmt = DBA::select('contact', ['id', 'uri-id', 'addr', 'url', 'network', 'protocol', 'baseurl', 'gsid', 'batch'], $condition);
}
- $condition = ['network' => Protocol::DFRN, 'uid' => $owner['uid'], 'blocked' => false,
- 'pending' => false, 'archive' => false, 'rel' => [Contact::FOLLOWER, Contact::FRIEND]];
+ $conversants = [];
+ $batch_delivery = false;
- $contacts = DBA::selectToArray('contact', ['id', 'uri-id', 'url', 'addr', 'name', 'network', 'protocol', 'baseurl', 'gsid'], $condition);
+ if ($public_message && !in_array($cmd, [Delivery::MAIL, Delivery::SUGGESTION]) && !$followup) {
+ $participants = [];
- $conversants = array_merge($contacts, $participants);
+ if ($diaspora_delivery && !$unlisted) {
+ $batch_delivery = true;
- $delivery_queue_count += self::delivery($cmd, $post_uriid, $sender_uid, $target_item, $thr_parent, $owner, $batch_delivery, true, $conversants, $ap_contacts, []);
+ $participants = DBA::selectToArray('contact', ['batch', 'network', 'protocol', 'baseurl', 'gsid', 'id', 'url', 'name'],
+ ["`network` = ? AND `batch` != '' AND `uid` = ? AND `rel` != ? AND NOT `blocked` AND NOT `pending` AND NOT `archive`", Protocol::DIASPORA, $owner['uid'], Contact::SHARING],
+ ['group_by' => ['batch', 'network', 'protocol']]);
+
+ // Fetch the participation list
+ // The function will ensure that there are no duplicates
+ $participants = Diaspora::participantsForThread($target_item, $participants);
+ }
+
+ $condition = [
+ 'network' => Protocol::DFRN,
+ 'uid' => $owner['uid'],
+ 'self' => false,
+ 'blocked' => false,
+ 'pending' => false,
+ 'archive' => false,
+ 'rel' => [Contact::FOLLOWER, Contact::FRIEND]
+ ];
+
+ $contacts = DBA::selectToArray('contact', ['id', 'uri-id', 'url', 'addr', 'name', 'network', 'protocol', 'baseurl', 'gsid'], $condition);
+
+ $conversants = array_merge($contacts, $participants);
+
+ $delivery_queue_count += self::delivery($cmd, $post_uriid, $sender_uid, $target_item, $parent, $thr_parent, $owner, $batch_delivery, true, $conversants, $ap_contacts, []);
+ }
+
+ $contacts = DBA::toArray($delivery_contacts_stmt);
+ $delivery_queue_count += self::delivery($cmd, $post_uriid, $sender_uid, $target_item, $parent, $thr_parent, $owner, $batch_delivery, false, $contacts, $ap_contacts, $conversants);
}
- $contacts = DBA::toArray($delivery_contacts_stmt);
- $delivery_queue_count += self::delivery($cmd, $post_uriid, $sender_uid, $target_item, $thr_parent, $owner, $batch_delivery, false, $contacts, $ap_contacts, $conversants);
-
if (!empty($target_item)) {
Logger::info('Calling hooks for ' . $cmd . ' ' . $target_id);
@@ -411,6 +400,7 @@ class Notifier
* @param int $post_uriid
* @param int $sender_uid
* @param array $target_item
+ * @param array $parent
* @param array $thr_parent
* @param array $owner
* @param bool $batch_delivery
@@ -422,7 +412,7 @@ class Notifier
* @throws InternalServerErrorException
* @throws Exception
*/
- private static function delivery(string $cmd, int $post_uriid, int $sender_uid, array $target_item, array $thr_parent, array $owner, bool $batch_delivery, bool $in_batch, array $contacts, array $ap_contacts, array $conversants = []): int
+ private static function delivery(string $cmd, int $post_uriid, int $sender_uid, array $target_item, array $parent, array $thr_parent, array $owner, bool $batch_delivery, bool $in_batch, array $contacts, array $ap_contacts, array $conversants = []): int
{
$a = DI::app();
$delivery_queue_count = 0;
@@ -433,6 +423,13 @@ class Notifier
}
foreach ($contacts as $contact) {
+ // Transmit via Diaspora if the thread had started as Diaspora post.
+ // Also transmit via Diaspora if this is a direct answer to a Diaspora comment.
+ if (($contact['network'] != Protocol::DIASPORA) && in_array(Protocol::DIASPORA, [$parent['network'] ?? '', $thr_parent['network'] ?? '', $target_item['network'] ?? ''])) {
+ Logger::info('Enforcing the Diaspora protocol', ['id' => $contact['id'], 'network' => $contact['network'], 'parent' => $parent['network'], 'thread-parent' => $thr_parent['network'], 'post' => $target_item['network']]);
+ $contact['network'] = Protocol::DIASPORA;
+ }
+
// Direct delivery of local contacts
if (!in_array($cmd, [Delivery::RELOCATION, Delivery::SUGGESTION, Delivery::MAIL]) && $target_uid = User::getIdForURL($contact['url'])) {
if ($cmd == Delivery::DELETION) {
@@ -453,14 +450,19 @@ class Notifier
continue;
}
- // Deletions are always sent via DFRN as well.
- // This is done until we can perform deletions of foreign comments on our own threads via AP.
- if (($cmd != Delivery::DELETION) && in_array($contact['id'], $ap_contacts)) {
- Logger::info('Contact is already delivered via AP, so skip delivery via legacy DFRN/Diaspora', ['target' => $post_uriid, 'uid' => $sender_uid, 'contact' => $contact['url']]);
+ $cdata = Contact::getPublicAndUserContactID($contact['id'], $sender_uid);
+ if (in_array($cdata['public'] ?: $contact['id'], $ap_contacts)) {
+ Logger::info('The public contact is already delivered via AP, so skip delivery via legacy DFRN/Diaspora', ['batch' => $in_batch, 'target' => $post_uriid, 'uid' => $sender_uid, 'contact' => $contact['url']]);
+ continue;
+ } elseif (in_array($cdata['user'] ?: $contact['id'], $ap_contacts)) {
+ Logger::info('The user contact is already delivered via AP, so skip delivery via legacy DFRN/Diaspora', ['batch' => $in_batch, 'target' => $post_uriid, 'uid' => $sender_uid, 'contact' => $contact['url']]);
continue;
}
if (!empty($contact['id']) && Contact::isArchived($contact['id'])) {
+ // We mark the contact here, since we could have only got here, when the "archived" value on this
+ // specific contact hadn't been set.
+ Contact::markForArchival($contact);
Logger::info('Contact is archived, so skip delivery', ['target' => $post_uriid, 'uid' => $sender_uid, 'contact' => $contact['url']]);
continue;
}
@@ -505,7 +507,7 @@ class Notifier
continue;
}
- Logger::info('Delivery', ['batch' => $in_batch, 'target' => $post_uriid, 'uid' => $sender_uid, 'guid' => $target_item['guid'] ?? '', 'to' => $contact]);
+ Logger::info('Delivery', ['cmd' => $cmd, 'batch' => $in_batch, 'target' => $post_uriid, 'uid' => $sender_uid, 'guid' => $target_item['guid'] ?? '', 'to' => $contact]);
// Ensure that posts with our own protocol arrives before Diaspora posts arrive.
// Situation is that sometimes Friendica servers receive Friendica posts over the Diaspora protocol first.
@@ -578,7 +580,7 @@ class Notifier
*/
private static function isRemovalActivity(string $cmd, array $owner, string $network): bool
{
- return ($cmd == Delivery::DELETION) && $owner['account_removed'] && in_array($network, [Protocol::ACTIVITYPUB, Protocol::DIASPORA]);
+ return ($cmd == Delivery::REMOVAL) && $owner['account_removed'] && in_array($network, [Protocol::ACTIVITYPUB, Protocol::DIASPORA]);
}
/**
@@ -602,7 +604,7 @@ class Notifier
return false;
}
- while($contact = DBA::fetch($contacts_stmt)) {
+ while ($contact = DBA::fetch($contacts_stmt)) {
Contact::terminateFriendship($contact);
}
DBA::close($contacts_stmt);
@@ -623,15 +625,16 @@ class Notifier
* @param array $target_item
* @param array $parent
* @param array $thr_parent
- * @param int $priority The priority the Notifier queue item was created with
- * @param string $created The date the Notifier queue item was created on
+ * @param int $priority The priority the Notifier queue item was created with
+ * @param string $created The date the Notifier queue item was created on
+ * @param array $recipients Array of receivers
*
* @return array 'count' => The number of delivery tasks created, 'contacts' => their contact ids
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
* @throws \ImagickException
* @todo Unused parameter $owner
*/
- private static function activityPubDelivery($cmd, array $target_item, array $parent, array $thr_parent, int $priority, string $created, $owner): array
+ private static function activityPubDelivery($cmd, array $target_item, array $parent, array $thr_parent, int $priority, string $created, array $recipients): array
{
// Don't deliver via AP when the starting post isn't from a federated network
if (!in_array($parent['network'], Protocol::FEDERATED)) {
@@ -680,10 +683,10 @@ class Notifier
Logger::info('Origin item will be distributed', ['id' => $target_item['id'], 'url' => $target_item['uri'], 'verb' => $target_item['verb']]);
$check_signature = false;
- } elseif (!Post\Activity::exists($target_item['uri-id'])) {
- Logger::info('Remote item is no AP post. It will not be distributed.', ['id' => $target_item['id'], 'url' => $target_item['uri'], 'verb' => $target_item['verb']]);
+ } elseif (!$target_item['deleted'] && !Post\Activity::exists($target_item['uri-id'])) {
+ Logger::info('Remote activity not found. It will not be distributed.', ['id' => $target_item['id'], 'url' => $target_item['uri'], 'verb' => $target_item['verb']]);
return ['count' => 0, 'contacts' => []];
- } elseif ($parent['origin'] && (($target_item['gravity'] != Item::GRAVITY_ACTIVITY) || DI::config()->get('system', 'redistribute_activities'))) {
+ } elseif ($parent['origin'] && ($target_item['private'] != Item::PRIVATE) && (($target_item['gravity'] != Item::GRAVITY_ACTIVITY) || DI::config()->get('system', 'redistribute_activities'))) {
$inboxes = ActivityPub\Transmitter::fetchTargetInboxes($parent, $uid);
if (in_array($target_item['private'], [Item::PUBLIC])) {
@@ -697,6 +700,10 @@ class Notifier
return ['count' => 0, 'contacts' => []];
}
+ if ($target_item['private'] != Item::PRIVATE) {
+ $inboxes = Transmitter::addInboxesForRecipients($recipients, $inboxes);
+ }
+
if (empty($inboxes) && empty($relay_inboxes)) {
Logger::info('No inboxes found for item ' . $target_item['id'] . ' with URL ' . $target_item['uri'] . '. It will not be distributed.');
return ['count' => 0, 'contacts' => []];
diff --git a/src/Worker/UpdateServerDirectory.php b/src/Worker/UpdateServerDirectory.php
index d907c4b5c0..cf3634d878 100644
--- a/src/Worker/UpdateServerDirectory.php
+++ b/src/Worker/UpdateServerDirectory.php
@@ -76,7 +76,7 @@ class UpdateServerDirectory
}
$accounts = json_decode($result, true);
- if (empty($accounts)) {
+ if (!is_array($accounts)) {
Logger::info('No contacts', ['url' => $gserver['url']]);
return;
}
diff --git a/static/dbstructure.config.php b/static/dbstructure.config.php
index 7399a6268d..55ebbad6fd 100644
--- a/static/dbstructure.config.php
+++ b/static/dbstructure.config.php
@@ -44,7 +44,7 @@ use Friendica\Database\DBA;
// This file is required several times during the test in DbaDefinition which justifies this condition
if (!defined('DB_UPDATE_VERSION')) {
- define('DB_UPDATE_VERSION', 1573);
+ define('DB_UPDATE_VERSION', 1576);
}
return [
diff --git a/static/dbview.config.php b/static/dbview.config.php
index f5b2931897..b1c91d5942 100644
--- a/static/dbview.config.php
+++ b/static/dbview.config.php
@@ -24,7 +24,7 @@
*
*/
- return [
+return [
"application-view" => [
"fields" => [
"id" => ["application", "id"],
@@ -115,7 +115,7 @@
AND (NOT `contact`.`readonly` AND NOT `contact`.`blocked` AND NOT `contact`.`pending`)
AND (`post-thread-user`.`hidden` IS NULL OR NOT `post-thread-user`.`hidden`)
AND NOT `authorcontact`.`blocked` AND NOT `ownercontact`.`blocked`
- AND NOT EXISTS(SELECT `cid` FROM `user-contact` WHERE `uid` = `post-thread-user`.`uid` AND `cid` IN (`authorcontact`.`id`, `ownercontact`.`id`) AND (`blocked` OR `ignored`))
+ AND NOT EXISTS(SELECT `cid` FROM `user-contact` WHERE `uid` = `post-thread-user`.`uid` AND `cid` IN (`authorcontact`.`id`, `ownercontact`.`id`) AND (`blocked` OR `ignored` OR `is-blocked`))
AND NOT EXISTS(SELECT `gsid` FROM `user-gserver` WHERE `uid` = `post-thread-user`.`uid` AND `gsid` IN (`authorcontact`.`gsid`, `ownercontact`.`gsid`) AND `ignored`)"
],
"post-timeline-view" => [
@@ -153,6 +153,9 @@
"causer-id" => ["post-user", "causer-id"],
"causer-blocked" => ["causer", "blocked"],
"causer-gsid" => ["causer", "gsid"],
+ "parent-network" => ["post-thread-user", "network"],
+ "parent-owner-id" => ["post-thread-user", "owner-id"],
+ "parent-author-id" => ["post-thread-user", "author-id"],
],
"query" => "FROM `post-user`
LEFT JOIN `post-thread-user` ON `post-thread-user`.`uri-id` = `post-user`.`parent-uri-id` AND `post-thread-user`.`uid` = `post-user`.`uid`
@@ -232,7 +235,7 @@
AND (NOT `contact`.`readonly` AND NOT `contact`.`blocked` AND NOT `contact`.`pending`)
AND (`post-thread-user`.`hidden` IS NULL OR NOT `post-thread-user`.`hidden`)
AND NOT `authorcontact`.`blocked` AND NOT `ownercontact`.`blocked`
- AND NOT EXISTS(SELECT `cid` FROM `user-contact` WHERE `uid` = `post-thread-user`.`uid` AND `cid` IN (`authorcontact`.`id`, `ownercontact`.`id`) AND (`blocked` OR `ignored`))
+ AND NOT EXISTS(SELECT `cid` FROM `user-contact` WHERE `uid` = `post-thread-user`.`uid` AND `cid` IN (`authorcontact`.`id`, `ownercontact`.`id`) AND (`blocked` OR `ignored` OR `is-blocked`))
AND NOT EXISTS(SELECT `gsid` FROM `user-gserver` WHERE `uid` = `post-thread-user`.`uid` AND `gsid` IN (`authorcontact`.`gsid`, `ownercontact`.`gsid`) AND `ignored`)"
],
"post-origin-view" => [
@@ -397,6 +400,7 @@
"signed_text" => ["diaspora-interaction", "interaction"],
"parent-guid" => ["parent-item-uri", "guid"],
"parent-network" => ["post-thread-user", "network"],
+ "parent-owner-id" => ["post-thread-user", "owner-id"],
"parent-author-id" => ["post-thread-user", "author-id"],
"parent-author-link" => ["parent-post-author", "url"],
"parent-author-name" => ["parent-post-author", "name"],
@@ -588,6 +592,7 @@
"signed_text" => ["diaspora-interaction", "interaction"],
"parent-guid" => ["parent-item-uri", "guid"],
"parent-network" => ["post-thread-user", "network"],
+ "parent-owner-id" => ["post-thread-user", "owner-id"],
"parent-author-id" => ["post-thread-user", "author-id"],
"parent-author-link" => ["author", "url"],
"parent-author-name" => ["author", "name"],
@@ -779,6 +784,7 @@
"signed_text" => ["diaspora-interaction", "interaction"],
"parent-guid" => ["parent-item-uri", "guid"],
"parent-network" => ["post-thread-user", "network"],
+ "parent-owner-id" => ["post-thread-user", "owner-id"],
"parent-author-id" => ["post-thread-user", "author-id"],
"parent-author-link" => ["parent-post-author", "url"],
"parent-author-name" => ["parent-post-author", "name"],
@@ -969,6 +975,7 @@
"signed_text" => ["diaspora-interaction", "interaction"],
"parent-guid" => ["parent-item-uri", "guid"],
"parent-network" => ["post-thread-user", "network"],
+ "parent-owner-id" => ["post-thread-user", "owner-id"],
"parent-author-id" => ["post-thread-user", "author-id"],
"parent-author-link" => ["author", "url"],
"parent-author-name" => ["author", "name"],
@@ -1123,6 +1130,7 @@
"signed_text" => ["diaspora-interaction", "interaction"],
"parent-guid" => ["parent-item-uri", "guid"],
"parent-network" => ["post-thread", "network"],
+ "parent-owner-id" => ["post-thread", "owner-id"],
"parent-author-id" => ["post-thread", "author-id"],
"parent-author-link" => ["parent-post-author", "url"],
"parent-author-name" => ["parent-post-author", "name"],
@@ -1276,6 +1284,7 @@
"signed_text" => ["diaspora-interaction", "interaction"],
"parent-guid" => ["parent-item-uri", "guid"],
"parent-network" => ["post-thread", "network"],
+ "parent-owner-id" => ["post-thread", "owner-id"],
"parent-author-id" => ["post-thread", "author-id"],
"parent-author-link" => ["author", "url"],
"parent-author-name" => ["author", "name"],
@@ -1384,7 +1393,7 @@
AND (NOT `contact`.`readonly` AND NOT `contact`.`blocked` AND NOT `contact`.`pending`)
AND (`post-thread-user`.`hidden` IS NULL OR NOT `post-thread-user`.`hidden`)
AND NOT `authorcontact`.`blocked` AND NOT `ownercontact`.`blocked`
- AND NOT EXISTS(SELECT `cid` FROM `user-contact` WHERE `uid` = `post-thread-user`.`uid` AND `cid` IN (`post-thread-user`.`author-id`, `post-thread-user`.`owner-id`, `post-thread-user`.`causer-id`) AND (`blocked` OR `ignored` OR `channel-only`))
+ AND NOT EXISTS(SELECT `cid` FROM `user-contact` WHERE `uid` = `post-thread-user`.`uid` AND `cid` IN (`post-thread-user`.`author-id`, `post-thread-user`.`owner-id`, `post-thread-user`.`causer-id`) AND (`blocked` OR `ignored` OR `is-blocked` OR `channel-only`))
AND NOT EXISTS(SELECT `gsid` FROM `user-gserver` WHERE `uid` = `post-thread-user`.`uid` AND `gsid` IN (`authorcontact`.`gsid`, `ownercontact`.`gsid`) AND `ignored`)"
],
"network-thread-circle-view" => [
@@ -1410,7 +1419,7 @@
AND (NOT `contact`.`readonly` AND NOT `contact`.`blocked` AND NOT `contact`.`pending`)
AND (`post-thread-user`.`hidden` IS NULL OR NOT `post-thread-user`.`hidden`)
AND NOT `authorcontact`.`blocked` AND NOT `ownercontact`.`blocked`
- AND NOT EXISTS(SELECT `cid` FROM `user-contact` WHERE `uid` = `post-thread-user`.`uid` AND `cid` IN (`post-thread-user`.`author-id`, `post-thread-user`.`owner-id`, `post-thread-user`.`causer-id`) AND (`blocked` OR `ignored`))
+ AND NOT EXISTS(SELECT `cid` FROM `user-contact` WHERE `uid` = `post-thread-user`.`uid` AND `cid` IN (`post-thread-user`.`author-id`, `post-thread-user`.`owner-id`, `post-thread-user`.`causer-id`) AND (`blocked` OR `ignored` OR `is-blocked`))
AND NOT EXISTS(SELECT `gsid` FROM `user-gserver` WHERE `uid` = `post-thread-user`.`uid` AND `gsid` IN (`authorcontact`.`gsid`, `ownercontact`.`gsid`) AND `ignored`)"
],
"owner-view" => [
@@ -1476,6 +1485,7 @@
"unsearchable" => ["contact", "unsearchable"],
"sensitive" => ["contact", "sensitive"],
"baseurl" => ["contact", "baseurl"],
+ "gsid" => ["contact", "gsid"],
"reason" => ["contact", "reason"],
"info" => ["contact", "info"],
"bdyear" => ["contact", "bdyear"],
@@ -1783,7 +1793,7 @@
"label" => ["profile_field", "label"],
"value" => ["profile_field", "value"],
"order" => ["profile_field", "order"],
- "psid"=> ["profile_field", "psid"],
+ "psid" => ["profile_field", "psid"],
"allow_cid" => ["permissionset", "allow_cid"],
"allow_gid" => ["permissionset", "allow_gid"],
"deny_cid" => ["permissionset", "deny_cid"],
diff --git a/static/security-data-integrity-v1.jsonld b/static/security-data-integrity-v1.jsonld
index 28116e761f..267c90635f 100644
--- a/static/security-data-integrity-v1.jsonld
+++ b/static/security-data-integrity-v1.jsonld
@@ -35,23 +35,19 @@
},
"assertionMethod": {
"@id": "https://w3id.org/security#assertionMethod",
- "@type": "@id",
- "@container": "@set"
+ "@type": "@id"
},
"authentication": {
"@id": "https://w3id.org/security#authenticationMethod",
- "@type": "@id",
- "@container": "@set"
+ "@type": "@id"
},
"capabilityInvocation": {
"@id": "https://w3id.org/security#capabilityInvocationMethod",
- "@type": "@id",
- "@container": "@set"
+ "@type": "@id"
},
"capabilityDelegation": {
"@id": "https://w3id.org/security#capabilityDelegationMethod",
- "@type": "@id",
- "@container": "@set"
+ "@type": "@id"
},
"keyAgreement": {
"@id": "https://w3id.org/security#keyAgreementMethod",
diff --git a/static/socialweb-webfinger.jsonld b/static/socialweb-webfinger.jsonld
new file mode 100644
index 0000000000..7c0fd9e742
--- /dev/null
+++ b/static/socialweb-webfinger.jsonld
@@ -0,0 +1,10 @@
+{
+ "@context": {
+ "wf": "https://purl.archive.org/socialweb/webfinger#",
+ "xsd": "http://www.w3.org/2001/XMLSchema#",
+ "webfinger": {
+ "@id": "wf:webfinger",
+ "@type": "xsd:string"
+ }
+ }
+}
\ No newline at end of file
diff --git a/tests/src/Content/PlaintextTest.php b/tests/src/Content/PlaintextTest.php
new file mode 100644
index 0000000000..96830254f9
--- /dev/null
+++ b/tests/src/Content/PlaintextTest.php
@@ -0,0 +1,72 @@
+ [
+ 'data' => "Ich habe mein Profil so eingestellt, dass ich alle Folgeanfragen manuell bestätigen muss, was langsam aber sicher richtig in Arbeit ausartet 😉\n\nIch schaue mir immer die anderen Profile an und schaue, was sie so gepostet haben. Wenn die Person noch nichts gepostet hat, ignoriere ich die Anfragen und schaue ggf. nach einiger Zeit wieder nach, ob jetzt was gepostet wurde! Wenn die Posts in eine Richtung gehen, die ich nicht mag, lehne ich die Anfragen ab.\n\nIch ignoriere auch Anfragen, wenn sie von Accounts kommen, die ggf. tausenden von anderen Accounts folgen, da ich davon ausgehe, dass da niemand ernsthaft so vielen Accounts folgen kann.",
+ 'expected' => [
+ 'Ich habe mein Profil so eingestellt, dass ich alle Folgeanfragen manuell bestätigen muss, was langsam aber sicher richtig in Arbeit ausartet 😉 (1/6)',
+ 'Ich schaue mir immer die anderen Profile an und schaue, was sie so gepostet haben. (2/6)',
+ 'Wenn die Person noch nichts gepostet hat, ignoriere ich die Anfragen und schaue ggf. nach einiger Zeit wieder nach, ob jetzt was gepostet wurde! (3/6)',
+ 'Wenn die Posts in eine Richtung gehen, die ich nicht mag, lehne ich die Anfragen ab. (4/6)',
+ 'Ich ignoriere auch Anfragen, wenn sie von Accounts kommen, die ggf. tausenden von anderen Accounts folgen, da ich davon ausgehe, (5/6)',
+ 'dass da niemand ernsthaft so vielen Accounts folgen kann. (6/6)'
+ ],
+ 'test-2' => [
+ 'data' => 'Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.',
+ 'expected' => [
+ 'Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, (1/6)',
+ 'sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. (2/6)',
+ 'Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. (3/6)',
+ 'Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, (4/6)',
+ 'sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. (5/6)',
+ 'Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. (6/6)'
+ ],
+ ]
+ ],
+ ];
+ }
+
+ /**
+ * Test split long texts
+ *
+ * @dataProvider dataMessage
+ *
+ * @param string $text Test string
+ * @param array $expected Expected result
+ *
+ * @throws InternalServerErrorException
+ */
+ public function testSplitMessage(string $text, array $expected)
+ {
+ $item = [
+ 'uri-id' => -1,
+ 'uid' => 0,
+ 'title' => '',
+ 'plink' => '',
+ 'body' => $text,
+ ];
+ $output = Plaintext::getPost($item, 160, false, BBCode::BLUESKY);
+ self::assertEquals($expected, $output['parts']);
+ }
+}
diff --git a/view/lang/C/messages.po b/view/lang/C/messages.po
index 7c69b8d946..d66a1acb80 100644
--- a/view/lang/C/messages.po
+++ b/view/lang/C/messages.po
@@ -6,9 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: 2024.09-dev\n"
+"Project-Id-Version: 2024.12-dev\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2024-11-10 07:44+0000\n"
+"POT-Creation-Date: 2024-11-16 08:36+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME .htconfig.php
. See the Config help page for help with the transition."
msgstr ""
-#: src/Module/Admin/Summary.php:104
+#: src/Module/Admin/Summary.php:100
#, php-format
msgid "Friendica's configuration now is stored in config/local.config.php, please copy config/local-sample.config.php and move your config from config/local.ini.php
. See the Config help page for help with the transition."
msgstr ""
-#: src/Module/Admin/Summary.php:110
+#: src/Module/Admin/Summary.php:106
#, php-format
msgid "%s is not reachable on your system. This is a severe configuration issue that prevents server to server communication. See the installation page for help."
msgstr ""
-#: src/Module/Admin/Summary.php:134
+#: src/Module/Admin/Summary.php:130
#, php-format
msgid "Friendica's system.basepath was updated from '%s' to '%s'. Please remove the system.basepath from your db to avoid differences."
msgstr ""
-#: src/Module/Admin/Summary.php:142
+#: src/Module/Admin/Summary.php:138
#, php-format
msgid "Friendica's current system.basepath '%s' is wrong and the config file '%s' isn't used."
msgstr ""
-#: src/Module/Admin/Summary.php:150
+#: src/Module/Admin/Summary.php:146
#, php-format
msgid "Friendica's current system.basepath '%s' is not equal to the config file '%s'. Please fix your configuration."
msgstr ""
-#: src/Module/Admin/Summary.php:161
+#: src/Module/Admin/Summary.php:157
msgid "Message queues"
msgstr ""
-#: src/Module/Admin/Summary.php:167
+#: src/Module/Admin/Summary.php:160
msgid "Server Settings"
msgstr ""
-#: src/Module/Admin/Summary.php:185
+#: src/Module/Admin/Summary.php:178
msgid "Version"
msgstr ""
-#: src/Module/Admin/Summary.php:189
+#: src/Module/Admin/Summary.php:182
msgid "Active addons"
msgstr ""
@@ -5628,7 +5630,7 @@ msgstr ""
msgid "Babel"
msgstr ""
-#: src/Module/BaseAdmin.php:97 src/Module/Debug/ActivityPubConversion.php:121
+#: src/Module/BaseAdmin.php:97 src/Module/Debug/ActivityPubConversion.php:125
msgid "ActivityPub Conversion"
msgstr ""
@@ -5825,12 +5827,12 @@ msgstr ""
#: src/Module/Calendar/Event/Form.php:195
#: src/Module/Calendar/Event/Form.php:223 src/Module/Debug/Probe.php:45
-#: src/Module/Install.php:187 src/Module/Install.php:213
-#: src/Module/Install.php:218 src/Module/Install.php:232
-#: src/Module/Install.php:241 src/Module/Install.php:246
-#: src/Module/Install.php:252 src/Module/Install.php:257
-#: src/Module/Install.php:271 src/Module/Install.php:284
-#: src/Module/Install.php:311
+#: src/Module/Install.php:188 src/Module/Install.php:214
+#: src/Module/Install.php:219 src/Module/Install.php:233
+#: src/Module/Install.php:242 src/Module/Install.php:247
+#: src/Module/Install.php:253 src/Module/Install.php:258
+#: src/Module/Install.php:272 src/Module/Install.php:285
+#: src/Module/Install.php:312
#: src/Module/Moderation/Blocklist/Server/Add.php:122
#: src/Module/Moderation/Blocklist/Server/Add.php:124
#: src/Module/Moderation/Blocklist/Server/Import.php:113
@@ -5902,7 +5904,7 @@ msgstr ""
msgid "Create New Event"
msgstr ""
-#: src/Module/Calendar/Show.php:118 src/Module/Settings/Display.php:283
+#: src/Module/Calendar/Show.php:118 src/Module/Settings/Display.php:302
msgid "list"
msgstr ""
@@ -6086,18 +6088,18 @@ msgstr ""
msgid "Update"
msgstr ""
-#: src/Module/Contact.php:449 src/Module/Contact/Profile.php:519
+#: src/Module/Contact.php:449 src/Module/Contact/Profile.php:524
#: src/Module/Moderation/Blocklist/Contact.php:103
#: src/Module/Moderation/Users/Blocked.php:124
#: src/Module/Moderation/Users/Index.php:140
msgid "Unblock"
msgstr ""
-#: src/Module/Contact.php:450 src/Module/Contact/Profile.php:527
+#: src/Module/Contact.php:450 src/Module/Contact/Profile.php:532
msgid "Unignore"
msgstr ""
-#: src/Module/Contact.php:451 src/Module/Contact/Profile.php:535
+#: src/Module/Contact.php:451 src/Module/Contact/Profile.php:540
msgid "Uncollapse"
msgstr ""
@@ -6149,7 +6151,7 @@ msgstr ""
msgid "Pending incoming contact request"
msgstr ""
-#: src/Module/Contact.php:608 src/Module/Contact/Profile.php:378
+#: src/Module/Contact.php:608 src/Module/Contact/Profile.php:383
#, php-format
msgid "Visit %s's profile [%s]"
msgstr ""
@@ -6255,60 +6257,60 @@ msgstr[1] ""
msgid "Access denied."
msgstr ""
-#: src/Module/Contact/Follow.php:91 src/Module/Contact/Unfollow.php:111
+#: src/Module/Contact/Follow.php:95 src/Module/Contact/Unfollow.php:111
#: src/Module/Profile/RemoteFollow.php:119
msgid "Submit Request"
msgstr ""
-#: src/Module/Contact/Follow.php:101
+#: src/Module/Contact/Follow.php:105
msgid "You already added this contact."
msgstr ""
-#: src/Module/Contact/Follow.php:116
+#: src/Module/Contact/Follow.php:120
msgid "The network type couldn't be detected. Contact can't be added."
msgstr ""
-#: src/Module/Contact/Follow.php:124
+#: src/Module/Contact/Follow.php:128
msgid "Diaspora support isn't enabled. Contact can't be added."
msgstr ""
-#: src/Module/Contact/Follow.php:149 src/Module/Profile/RemoteFollow.php:118
+#: src/Module/Contact/Follow.php:153 src/Module/Profile/RemoteFollow.php:118
msgid "Please answer the following:"
msgstr ""
-#: src/Module/Contact/Follow.php:150 src/Module/Contact/Unfollow.php:109
+#: src/Module/Contact/Follow.php:154 src/Module/Contact/Unfollow.php:109
msgid "Your Identity Address:"
msgstr ""
-#: src/Module/Contact/Follow.php:151 src/Module/Contact/Profile.php:409
+#: src/Module/Contact/Follow.php:155 src/Module/Contact/Profile.php:414
#: src/Module/Contact/Unfollow.php:115
#: src/Module/Moderation/Blocklist/Contact.php:117
#: src/Module/Moderation/Reports.php:109
#: src/Module/Notifications/Introductions.php:121
-#: src/Module/Notifications/Introductions.php:190
+#: src/Module/Notifications/Introductions.php:191
msgid "Profile URL"
msgstr ""
-#: src/Module/Contact/Follow.php:152 src/Module/Contact/Profile.php:421
-#: src/Module/Notifications/Introductions.php:183
+#: src/Module/Contact/Follow.php:156 src/Module/Contact/Profile.php:426
+#: src/Module/Notifications/Introductions.php:184
#: src/Module/Profile/Profile.php:222
msgid "Tags:"
msgstr ""
-#: src/Module/Contact/Follow.php:163
+#: src/Module/Contact/Follow.php:167
#, php-format
msgid "%s knows you"
msgstr ""
-#: src/Module/Contact/Follow.php:164
+#: src/Module/Contact/Follow.php:168
msgid "Add a personal note:"
msgstr ""
-#: src/Module/Contact/Follow.php:173 src/Module/Contact/Unfollow.php:124
+#: src/Module/Contact/Follow.php:177 src/Module/Contact/Unfollow.php:124
msgid "Posts and Replies"
msgstr ""
-#: src/Module/Contact/Follow.php:202
+#: src/Module/Contact/Follow.php:206
msgid "The contact could not be added."
msgstr ""
@@ -6391,7 +6393,7 @@ msgstr ""
msgid "(Update was successful)"
msgstr ""
-#: src/Module/Contact/Profile.php:296 src/Module/Contact/Profile.php:490
+#: src/Module/Contact/Profile.php:296 src/Module/Contact/Profile.php:495
msgid "Suggest friends"
msgstr ""
@@ -6438,191 +6440,191 @@ msgstr ""
msgid "Native reshare"
msgstr ""
-#: src/Module/Contact/Profile.php:360
+#: src/Module/Contact/Profile.php:365
msgid "Contact Information / Notes"
msgstr ""
-#: src/Module/Contact/Profile.php:361
+#: src/Module/Contact/Profile.php:366
msgid "Contact Settings"
msgstr ""
-#: src/Module/Contact/Profile.php:369
+#: src/Module/Contact/Profile.php:374
msgid "Contact"
msgstr ""
-#: src/Module/Contact/Profile.php:373
+#: src/Module/Contact/Profile.php:378
msgid "Their personal note"
msgstr ""
-#: src/Module/Contact/Profile.php:375
+#: src/Module/Contact/Profile.php:380
msgid "Edit contact notes"
msgstr ""
-#: src/Module/Contact/Profile.php:379
+#: src/Module/Contact/Profile.php:384
msgid "Block/Unblock contact"
msgstr ""
-#: src/Module/Contact/Profile.php:380
+#: src/Module/Contact/Profile.php:385
#: src/Module/Moderation/Report/Create.php:279
msgid "Ignore contact"
msgstr ""
-#: src/Module/Contact/Profile.php:381
+#: src/Module/Contact/Profile.php:386
msgid "View conversations"
msgstr ""
-#: src/Module/Contact/Profile.php:386
+#: src/Module/Contact/Profile.php:391
msgid "Last update:"
msgstr ""
-#: src/Module/Contact/Profile.php:388
+#: src/Module/Contact/Profile.php:393
msgid "Update public posts"
msgstr ""
-#: src/Module/Contact/Profile.php:390 src/Module/Contact/Profile.php:500
+#: src/Module/Contact/Profile.php:395 src/Module/Contact/Profile.php:505
msgid "Update now"
msgstr ""
-#: src/Module/Contact/Profile.php:392
+#: src/Module/Contact/Profile.php:397
msgid "Awaiting connection acknowledge"
msgstr ""
-#: src/Module/Contact/Profile.php:393
+#: src/Module/Contact/Profile.php:398
msgid "Currently blocked"
msgstr ""
-#: src/Module/Contact/Profile.php:394
+#: src/Module/Contact/Profile.php:399
msgid "Currently ignored"
msgstr ""
-#: src/Module/Contact/Profile.php:395
+#: src/Module/Contact/Profile.php:400
msgid "Currently collapsed"
msgstr ""
-#: src/Module/Contact/Profile.php:396
+#: src/Module/Contact/Profile.php:401
msgid "Currently archived"
msgstr ""
-#: src/Module/Contact/Profile.php:399
+#: src/Module/Contact/Profile.php:404
msgid "Manage remote servers"
msgstr ""
-#: src/Module/Contact/Profile.php:401
-#: src/Module/Notifications/Introductions.php:184
+#: src/Module/Contact/Profile.php:406
+#: src/Module/Notifications/Introductions.php:185
msgid "Hide this contact from others"
msgstr ""
-#: src/Module/Contact/Profile.php:401
+#: src/Module/Contact/Profile.php:406
msgid "Replies/likes to your public posts may still be visible"
msgstr ""
-#: src/Module/Contact/Profile.php:402
+#: src/Module/Contact/Profile.php:407
msgid "Notification for new posts"
msgstr ""
-#: src/Module/Contact/Profile.php:402
+#: src/Module/Contact/Profile.php:407
msgid "Send a notification of every new post of this contact"
msgstr ""
-#: src/Module/Contact/Profile.php:404
+#: src/Module/Contact/Profile.php:409
msgid "Keyword Deny List"
msgstr ""
-#: src/Module/Contact/Profile.php:404
+#: src/Module/Contact/Profile.php:409
msgid "Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"
msgstr ""
-#: src/Module/Contact/Profile.php:422
+#: src/Module/Contact/Profile.php:427
#: src/Module/Settings/TwoFactor/Index.php:146
msgid "Actions"
msgstr ""
-#: src/Module/Contact/Profile.php:424
+#: src/Module/Contact/Profile.php:429
#: src/Module/Settings/TwoFactor/Index.php:126 view/theme/frio/theme.php:220
msgid "Status"
msgstr ""
-#: src/Module/Contact/Profile.php:430
+#: src/Module/Contact/Profile.php:435
msgid "Mirror postings from this contact"
msgstr ""
-#: src/Module/Contact/Profile.php:432
+#: src/Module/Contact/Profile.php:437
msgid "Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."
msgstr ""
-#: src/Module/Contact/Profile.php:435
+#: src/Module/Contact/Profile.php:440
msgid "Channel Settings"
msgstr ""
-#: src/Module/Contact/Profile.php:436
+#: src/Module/Contact/Profile.php:441
msgid "Frequency of this contact in relevant channels"
msgstr ""
-#: src/Module/Contact/Profile.php:437
+#: src/Module/Contact/Profile.php:442
msgid "Depending on the type of the channel not all posts from this contact are displayed. By default, posts need to have a minimum amount of interactions (comments, likes) to show in your channels. On the other hand there can be contacts who flood the channel, so you might want to see only some of their posts. Or you don't want to see their content at all, but you don't want to block or hide the contact completely."
msgstr ""
-#: src/Module/Contact/Profile.php:438
+#: src/Module/Contact/Profile.php:443
msgid "Default frequency"
msgstr ""
-#: src/Module/Contact/Profile.php:438
+#: src/Module/Contact/Profile.php:443
msgid "Posts by this contact are displayed in the \"for you\" channel if you interact often with this contact or if a post reached some level of interaction."
msgstr ""
-#: src/Module/Contact/Profile.php:439
+#: src/Module/Contact/Profile.php:444
msgid "Display all posts of this contact"
msgstr ""
-#: src/Module/Contact/Profile.php:439
+#: src/Module/Contact/Profile.php:444
msgid "All posts from this contact will appear on the \"for you\" channel"
msgstr ""
-#: src/Module/Contact/Profile.php:440
+#: src/Module/Contact/Profile.php:445
msgid "Display only few posts"
msgstr ""
-#: src/Module/Contact/Profile.php:440
+#: src/Module/Contact/Profile.php:445
msgid "When a contact creates a lot of posts in a short period, this setting reduces the number of displayed posts in every channel."
msgstr ""
-#: src/Module/Contact/Profile.php:441
+#: src/Module/Contact/Profile.php:446
msgid "Never display posts"
msgstr ""
-#: src/Module/Contact/Profile.php:441
+#: src/Module/Contact/Profile.php:446
msgid "Posts from this contact will never be displayed in any channel"
msgstr ""
-#: src/Module/Contact/Profile.php:442
+#: src/Module/Contact/Profile.php:447
msgid "Channel Only"
msgstr ""
-#: src/Module/Contact/Profile.php:442
+#: src/Module/Contact/Profile.php:447
msgid "If enabled, posts from this contact will only appear in channels and network streams in circles, but not in the general network stream."
msgstr ""
-#: src/Module/Contact/Profile.php:510
+#: src/Module/Contact/Profile.php:515
msgid "Refetch contact data"
msgstr ""
-#: src/Module/Contact/Profile.php:521
+#: src/Module/Contact/Profile.php:526
msgid "Toggle Blocked status"
msgstr ""
-#: src/Module/Contact/Profile.php:529
+#: src/Module/Contact/Profile.php:534
msgid "Toggle Ignored status"
msgstr ""
-#: src/Module/Contact/Profile.php:537
+#: src/Module/Contact/Profile.php:542
msgid "Toggle Collapsed status"
msgstr ""
-#: src/Module/Contact/Profile.php:544 src/Module/Contact/Revoke.php:89
+#: src/Module/Contact/Profile.php:549 src/Module/Contact/Revoke.php:89
msgid "Revoke Follow"
msgstr ""
-#: src/Module/Contact/Profile.php:546
+#: src/Module/Contact/Profile.php:551
msgid "Revoke the follow from this contact"
msgstr ""
@@ -6722,199 +6724,199 @@ msgstr ""
msgid "Friendica is a community project, that would not be possible without the help of many people. Here is a list of those who have contributed to the code or the translation of Friendica. Thank you all!"
msgstr ""
-#: src/Module/Debug/ActivityPubConversion.php:41
+#: src/Module/Debug/ActivityPubConversion.php:45
msgid "Formatted"
msgstr ""
-#: src/Module/Debug/ActivityPubConversion.php:53
+#: src/Module/Debug/ActivityPubConversion.php:57
msgid "Activity"
msgstr ""
-#: src/Module/Debug/ActivityPubConversion.php:101
+#: src/Module/Debug/ActivityPubConversion.php:105
msgid "Object data"
msgstr ""
-#: src/Module/Debug/ActivityPubConversion.php:108
+#: src/Module/Debug/ActivityPubConversion.php:112
msgid "Result Item"
msgstr ""
-#: src/Module/Debug/ActivityPubConversion.php:113
-#: src/Module/Debug/Babel.php:262 src/Module/Moderation/Item/Source.php:79
+#: src/Module/Debug/ActivityPubConversion.php:117
+#: src/Module/Debug/Babel.php:267 src/Module/Moderation/Item/Source.php:79
#: src/Module/Security/TwoFactor/Verify.php:84
msgid "Error"
msgid_plural "Errors"
msgstr[0] ""
msgstr[1] ""
-#: src/Module/Debug/ActivityPubConversion.php:122
+#: src/Module/Debug/ActivityPubConversion.php:126
msgid "Source activity"
msgstr ""
-#: src/Module/Debug/Babel.php:39
+#: src/Module/Debug/Babel.php:44
msgid "Source input"
msgstr ""
-#: src/Module/Debug/Babel.php:45
+#: src/Module/Debug/Babel.php:50
msgid "BBCode::toPlaintext"
msgstr ""
-#: src/Module/Debug/Babel.php:51
+#: src/Module/Debug/Babel.php:56
msgid "BBCode::convert (raw HTML)"
msgstr ""
-#: src/Module/Debug/Babel.php:56
+#: src/Module/Debug/Babel.php:61
msgid "BBCode::convert (hex)"
msgstr ""
-#: src/Module/Debug/Babel.php:61
+#: src/Module/Debug/Babel.php:66
msgid "BBCode::convert"
msgstr ""
-#: src/Module/Debug/Babel.php:67
+#: src/Module/Debug/Babel.php:72
msgid "BBCode::convert => HTML::toBBCode"
msgstr ""
-#: src/Module/Debug/Babel.php:73
+#: src/Module/Debug/Babel.php:78
msgid "BBCode::toMarkdown"
msgstr ""
-#: src/Module/Debug/Babel.php:79
+#: src/Module/Debug/Babel.php:84
msgid "BBCode::toMarkdown => Markdown::convert (raw HTML)"
msgstr ""
-#: src/Module/Debug/Babel.php:83
+#: src/Module/Debug/Babel.php:88
msgid "BBCode::toMarkdown => Markdown::convert"
msgstr ""
-#: src/Module/Debug/Babel.php:89
+#: src/Module/Debug/Babel.php:94
msgid "BBCode::toMarkdown => Markdown::toBBCode"
msgstr ""
-#: src/Module/Debug/Babel.php:95
+#: src/Module/Debug/Babel.php:100
msgid "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode"
msgstr ""
-#: src/Module/Debug/Babel.php:103
+#: src/Module/Debug/Babel.php:108
msgid "Item Body"
msgstr ""
-#: src/Module/Debug/Babel.php:107
+#: src/Module/Debug/Babel.php:112
msgid "Item Tags"
msgstr ""
-#: src/Module/Debug/Babel.php:113
+#: src/Module/Debug/Babel.php:118
msgid "PageInfo::appendToBody"
msgstr ""
-#: src/Module/Debug/Babel.php:118
+#: src/Module/Debug/Babel.php:123
msgid "PageInfo::appendToBody => BBCode::convert (raw HTML)"
msgstr ""
-#: src/Module/Debug/Babel.php:122
+#: src/Module/Debug/Babel.php:127
msgid "PageInfo::appendToBody => BBCode::convert"
msgstr ""
-#: src/Module/Debug/Babel.php:129
+#: src/Module/Debug/Babel.php:134
msgid "Source input (Diaspora format)"
msgstr ""
-#: src/Module/Debug/Babel.php:138
+#: src/Module/Debug/Babel.php:143
msgid "Source input (Markdown)"
msgstr ""
-#: src/Module/Debug/Babel.php:144
+#: src/Module/Debug/Babel.php:149
msgid "Markdown::convert (raw HTML)"
msgstr ""
-#: src/Module/Debug/Babel.php:149
+#: src/Module/Debug/Babel.php:154
msgid "Markdown::convert"
msgstr ""
-#: src/Module/Debug/Babel.php:155
+#: src/Module/Debug/Babel.php:160
msgid "Markdown::toBBCode"
msgstr ""
-#: src/Module/Debug/Babel.php:162
+#: src/Module/Debug/Babel.php:167
msgid "Raw HTML input"
msgstr ""
-#: src/Module/Debug/Babel.php:167
+#: src/Module/Debug/Babel.php:172
msgid "HTML Input"
msgstr ""
-#: src/Module/Debug/Babel.php:174
+#: src/Module/Debug/Babel.php:179
msgid "HTML Purified (raw)"
msgstr ""
-#: src/Module/Debug/Babel.php:179
+#: src/Module/Debug/Babel.php:184
msgid "HTML Purified (hex)"
msgstr ""
-#: src/Module/Debug/Babel.php:184
+#: src/Module/Debug/Babel.php:189
msgid "HTML Purified"
msgstr ""
-#: src/Module/Debug/Babel.php:190
+#: src/Module/Debug/Babel.php:195
msgid "HTML::toBBCode"
msgstr ""
-#: src/Module/Debug/Babel.php:196
+#: src/Module/Debug/Babel.php:201
msgid "HTML::toBBCode => BBCode::convert"
msgstr ""
-#: src/Module/Debug/Babel.php:201
+#: src/Module/Debug/Babel.php:206
msgid "HTML::toBBCode => BBCode::convert (raw HTML)"
msgstr ""
-#: src/Module/Debug/Babel.php:207
+#: src/Module/Debug/Babel.php:212
msgid "HTML::toBBCode => BBCode::toPlaintext"
msgstr ""
-#: src/Module/Debug/Babel.php:213
+#: src/Module/Debug/Babel.php:218
msgid "HTML::toMarkdown"
msgstr ""
-#: src/Module/Debug/Babel.php:219
+#: src/Module/Debug/Babel.php:224
msgid "HTML::toPlaintext"
msgstr ""
-#: src/Module/Debug/Babel.php:225
+#: src/Module/Debug/Babel.php:230
msgid "HTML::toPlaintext (compact)"
msgstr ""
-#: src/Module/Debug/Babel.php:238
+#: src/Module/Debug/Babel.php:243
msgid "Decoded post"
msgstr ""
-#: src/Module/Debug/Babel.php:257
+#: src/Module/Debug/Babel.php:262
msgid "Post array before expand entities"
msgstr ""
-#: src/Module/Debug/Babel.php:263
+#: src/Module/Debug/Babel.php:268
msgid "Twitter addon is absent from the addon/ folder."
msgstr ""
-#: src/Module/Debug/Babel.php:273
+#: src/Module/Debug/Babel.php:278
msgid "Babel Diagnostic"
msgstr ""
-#: src/Module/Debug/Babel.php:275
+#: src/Module/Debug/Babel.php:280
msgid "Source text"
msgstr ""
-#: src/Module/Debug/Babel.php:276
+#: src/Module/Debug/Babel.php:281
msgid "BBCode"
msgstr ""
-#: src/Module/Debug/Babel.php:278
+#: src/Module/Debug/Babel.php:283
msgid "Markdown"
msgstr ""
-#: src/Module/Debug/Babel.php:279
+#: src/Module/Debug/Babel.php:284
msgid "HTML"
msgstr ""
-#: src/Module/Debug/Babel.php:281
+#: src/Module/Debug/Babel.php:286
msgid "Twitter Source / Tweet URL (requires API key)"
msgstr ""
@@ -7089,132 +7091,132 @@ msgstr ""
msgid "Welcome to %s"
msgstr ""
-#: src/Module/Install.php:175
+#: src/Module/Install.php:176
msgid "Friendica Communications Server - Setup"
msgstr ""
-#: src/Module/Install.php:186
+#: src/Module/Install.php:187
msgid "System check"
msgstr ""
-#: src/Module/Install.php:188 src/Module/Install.php:233
-#: src/Module/Install.php:312
+#: src/Module/Install.php:189 src/Module/Install.php:234
+#: src/Module/Install.php:313
msgid "Requirement not satisfied"
msgstr ""
-#: src/Module/Install.php:189
+#: src/Module/Install.php:190
msgid "Optional requirement not satisfied"
msgstr ""
-#: src/Module/Install.php:190
+#: src/Module/Install.php:191
msgid "OK"
msgstr ""
-#: src/Module/Install.php:194
+#: src/Module/Install.php:195
msgid "Next"
msgstr ""
-#: src/Module/Install.php:195
+#: src/Module/Install.php:196
msgid "Check again"
msgstr ""
-#: src/Module/Install.php:208
+#: src/Module/Install.php:209
msgid "Base settings"
msgstr ""
-#: src/Module/Install.php:210
+#: src/Module/Install.php:211
msgid "Base path to installation"
msgstr ""
-#: src/Module/Install.php:212
+#: src/Module/Install.php:213
msgid "If the system cannot detect the correct path to your installation, enter the correct path here. This setting should only be set if you are using a restricted system and symbolic links to your webroot."
msgstr ""
-#: src/Module/Install.php:215
+#: src/Module/Install.php:216
msgid "The Friendica system URL"
msgstr ""
-#: src/Module/Install.php:217
+#: src/Module/Install.php:218
msgid "Overwrite this field in case the system URL determination isn't right, otherwise leave it as is."
msgstr ""
-#: src/Module/Install.php:228
+#: src/Module/Install.php:229
msgid "Database connection"
msgstr ""
-#: src/Module/Install.php:229
+#: src/Module/Install.php:230
msgid "In order to install Friendica we need to know how to connect to your database."
msgstr ""
-#: src/Module/Install.php:230
+#: src/Module/Install.php:231
msgid "Please contact your hosting provider or site administrator if you have questions about these settings."
msgstr ""
-#: src/Module/Install.php:231
+#: src/Module/Install.php:232
msgid "The database you specify below should already exist. If it does not, please create it before continuing."
msgstr ""
-#: src/Module/Install.php:238
+#: src/Module/Install.php:239
msgid "Database Server Name"
msgstr ""
-#: src/Module/Install.php:243
+#: src/Module/Install.php:244
msgid "Database Login Name"
msgstr ""
-#: src/Module/Install.php:249
+#: src/Module/Install.php:250
msgid "Database Login Password"
msgstr ""
-#: src/Module/Install.php:251
+#: src/Module/Install.php:252
msgid "For security reasons the password must not be empty"
msgstr ""
-#: src/Module/Install.php:254
+#: src/Module/Install.php:255
msgid "Database Name"
msgstr ""
-#: src/Module/Install.php:258 src/Module/Install.php:286
+#: src/Module/Install.php:259 src/Module/Install.php:287
msgid "Please select a default timezone for your website"
msgstr ""
-#: src/Module/Install.php:273
+#: src/Module/Install.php:274
msgid "Site settings"
msgstr ""
-#: src/Module/Install.php:281
+#: src/Module/Install.php:282
msgid "Site administrator email address"
msgstr ""
-#: src/Module/Install.php:283
+#: src/Module/Install.php:284
msgid "Your account email address must match this in order to use the web admin panel."
msgstr ""
-#: src/Module/Install.php:290
+#: src/Module/Install.php:291
msgid "System Language:"
msgstr ""
-#: src/Module/Install.php:292
+#: src/Module/Install.php:293
msgid "Set the default language for your Friendica installation interface and to send emails."
msgstr ""
-#: src/Module/Install.php:304
+#: src/Module/Install.php:305
msgid "Your Friendica site database has been installed."
msgstr ""
-#: src/Module/Install.php:314
+#: src/Module/Install.php:315
msgid "Installation finished"
msgstr ""
-#: src/Module/Install.php:334
+#: src/Module/Install.php:335
msgid "App-specific passwords are randomly generated passwords used instead your regular password to authenticate your account on third-party applications that don't support two-factor authentication.
" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:120 +#: src/Module/Settings/TwoFactor/AppSpecific.php:121 msgid "Make sure to copy your new app-specific password now. You won’t be able to see it again!" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:124 +#: src/Module/Settings/TwoFactor/AppSpecific.php:125 msgid "Last Used" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:125 +#: src/Module/Settings/TwoFactor/AppSpecific.php:126 msgid "Revoke" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:126 +#: src/Module/Settings/TwoFactor/AppSpecific.php:127 msgid "Revoke All" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:129 +#: src/Module/Settings/TwoFactor/AppSpecific.php:130 msgid "When you generate a new app-specific password, you must use it right away, it will be shown to you once after you generate it." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:130 +#: src/Module/Settings/TwoFactor/AppSpecific.php:131 msgid "Generate new app-specific password" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:131 +#: src/Module/Settings/TwoFactor/AppSpecific.php:132 msgid "Friendiqa on my Fairphone 2..." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:132 +#: src/Module/Settings/TwoFactor/AppSpecific.php:133 msgid "Generate" msgstr "" @@ -11848,95 +11896,95 @@ msgstr "" msgid "Variations" msgstr "" -#: view/theme/frio/config.php:134 +#: view/theme/frio/config.php:151 msgid "Note" msgstr "" -#: view/theme/frio/config.php:134 +#: view/theme/frio/config.php:151 msgid "Check image permissions if all users are allowed to see the image" msgstr "" -#: view/theme/frio/config.php:140 +#: view/theme/frio/config.php:157 msgid "Appearance" msgstr "" -#: view/theme/frio/config.php:141 +#: view/theme/frio/config.php:158 msgid "Accent color" msgstr "" -#: view/theme/frio/config.php:141 +#: view/theme/frio/config.php:158 msgid "Blue" msgstr "" -#: view/theme/frio/config.php:141 +#: view/theme/frio/config.php:158 msgid "Red" msgstr "" -#: view/theme/frio/config.php:141 +#: view/theme/frio/config.php:158 msgid "Purple" msgstr "" -#: view/theme/frio/config.php:141 +#: view/theme/frio/config.php:158 msgid "Green" msgstr "" -#: view/theme/frio/config.php:141 +#: view/theme/frio/config.php:158 msgid "Pink" msgstr "" -#: view/theme/frio/config.php:142 +#: view/theme/frio/config.php:159 msgid "Copy or paste schemestring" msgstr "" -#: view/theme/frio/config.php:142 +#: view/theme/frio/config.php:159 msgid "You can copy this string to share your theme with others. Pasting here applies the schemestring" msgstr "" -#: view/theme/frio/config.php:143 +#: view/theme/frio/config.php:160 msgid "Navigation bar background color" msgstr "" -#: view/theme/frio/config.php:144 +#: view/theme/frio/config.php:161 msgid "Navigation bar icon color " msgstr "" -#: view/theme/frio/config.php:145 +#: view/theme/frio/config.php:162 msgid "Link color" msgstr "" -#: view/theme/frio/config.php:146 +#: view/theme/frio/config.php:163 msgid "Set the background color" msgstr "" -#: view/theme/frio/config.php:147 +#: view/theme/frio/config.php:164 msgid "Content background opacity" msgstr "" -#: view/theme/frio/config.php:148 +#: view/theme/frio/config.php:165 msgid "Set the background image" msgstr "" -#: view/theme/frio/config.php:149 +#: view/theme/frio/config.php:166 msgid "Background image style" msgstr "" -#: view/theme/frio/config.php:152 +#: view/theme/frio/config.php:169 msgid "Always open Compose page" msgstr "" -#: view/theme/frio/config.php:152 +#: view/theme/frio/config.php:169 msgid "The New Post button always open the Compose page instead of the modal form. When this is disabled, the Compose page can be accessed with a middle click on the link or from the modal." msgstr "" -#: view/theme/frio/config.php:156 +#: view/theme/frio/config.php:173 msgid "Login page background image" msgstr "" -#: view/theme/frio/config.php:160 +#: view/theme/frio/config.php:177 msgid "Login page background color" msgstr "" -#: view/theme/frio/config.php:160 +#: view/theme/frio/config.php:177 msgid "Leave background image and color empty for theme defaults" msgstr "" @@ -11988,10 +12036,6 @@ msgstr "" msgid "Dark" msgstr "" -#: view/theme/frio/php/scheme.php:95 -msgid "Black" -msgstr "" - #: view/theme/frio/php/scheme.php:106 msgid "Custom" msgstr "" diff --git a/view/lang/ar/messages.po b/view/lang/ar/messages.po index d382b7641a..22abf6ddc0 100644 --- a/view/lang/ar/messages.po +++ b/view/lang/ar/messages.po @@ -1,7 +1,6 @@ # FRIENDICA Distributed Social Network -# SPDX-FileCopyrightText: Copyright (C) 2010-2024, the Friendica project -# -# SPDX-License-Identifier: AGPL-3.0-or-later +# Copyright (C) 2010-2024, the Friendica project +# This file is distributed under the same license as the Friendica package. # # Translators: # Abdullah Alsabiupload_max_filesize
is set to %s (%s byte)"
msgstr ""
-#: src/Module/Admin/Site.php:499
+#: src/Module/Admin/Site.php:489
msgid "Maximum image length"
msgstr "الطول الأقصى للصورة"
-#: src/Module/Admin/Site.php:499
+#: src/Module/Admin/Site.php:489
msgid ""
"Maximum length in pixels of the longest side of uploaded images. Default is "
"-1, which means no limits."
msgstr "حد حجم الصورة المرفوعة بالبيكسل. الافتراضي هو 1- والذي يعني حجمًا غير محدود."
-#: src/Module/Admin/Site.php:500
+#: src/Module/Admin/Site.php:490
msgid "JPEG image quality"
msgstr "جودة صور JPEG"
-#: src/Module/Admin/Site.php:500
+#: src/Module/Admin/Site.php:490
msgid ""
"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
"100, which is full quality."
msgstr "سيتم حفظ ملفات JPEG المرفوعة بنسبة جودة [0-100]. القيمة الافتراضية هي 100 وهي جودة الأصلية للملف."
-#: src/Module/Admin/Site.php:502
+#: src/Module/Admin/Site.php:491
+msgid "Maximum media file size"
+msgstr ""
+
+#: src/Module/Admin/Site.php:491
+#, php-format
+msgid ""
+"Maximum size in bytes of uploaded media files. Default is 0, which means no limits. You can put k, m, or g behind the desired value for KiB, MiB, GiB, respectively.\n"
+"\t\t\t\t\t\t\t\t\t\t\t\t\tThe value of upload_max_filesize
in your PHP.ini
needs be set to at least the desired limit.\n"
+"\t\t\t\t\t\t\t\t\t\t\t\t\tCurrently upload_max_filesize
is set to %s (%s byte)"
+msgstr ""
+
+#: src/Module/Admin/Site.php:496
msgid "Register policy"
msgstr "سياسات التسجيل"
-#: src/Module/Admin/Site.php:503
+#: src/Module/Admin/Site.php:497
msgid "Maximum Users"
msgstr ""
-#: src/Module/Admin/Site.php:503
+#: src/Module/Admin/Site.php:497
msgid ""
"If defined, the register policy is automatically closed when the given "
"number of users is reached and reopens the registry when the number drops "
@@ -4865,167 +4875,167 @@ msgid ""
"not when the policy is set to approval."
msgstr ""
-#: src/Module/Admin/Site.php:504
+#: src/Module/Admin/Site.php:498
msgid "Maximum Daily Registrations"
msgstr "الحد اليومي للتسجيل"
-#: src/Module/Admin/Site.php:504
+#: src/Module/Admin/Site.php:498
msgid ""
"If registration is permitted above, this sets the maximum number of new user"
" registrations to accept per day. If register is set to closed, this "
"setting has no effect."
msgstr "إذا كان التسجيل مسموحا، فإن هذا يحدُّ عدد التسجيلات الجديدة لليوم الواحد. إذا أُغلق التسجيل هذا الإعداد ليس له أي تأثير."
-#: src/Module/Admin/Site.php:505
+#: src/Module/Admin/Site.php:499
msgid "Register text"
msgstr "نص صفحة التسجيل"
-#: src/Module/Admin/Site.php:505
+#: src/Module/Admin/Site.php:499
msgid ""
"Will be displayed prominently on the registration page. You can use BBCode "
"here."
msgstr "ستعرض في صفحة التسجيل. يمكنك استخدام BBCode."
-#: src/Module/Admin/Site.php:506
+#: src/Module/Admin/Site.php:500
msgid "Forbidden Nicknames"
msgstr "الألقاب المحظورة"
-#: src/Module/Admin/Site.php:506
+#: src/Module/Admin/Site.php:500
msgid ""
"Comma separated list of nicknames that are forbidden from registration. "
"Preset is a list of role names according RFC 2142."
msgstr ""
-#: src/Module/Admin/Site.php:507
+#: src/Module/Admin/Site.php:501
msgid "Accounts abandoned after x days"
msgstr "الحسابات المهجورة بعد x يوم"
-#: src/Module/Admin/Site.php:507
+#: src/Module/Admin/Site.php:501
msgid ""
"Will not waste system resources polling external sites for abandonded "
"accounts. Enter 0 for no time limit."
msgstr "من أجل صونِ موارد النظام سنوقف الاستطلاع عن الحسابات المهجورة من المواقع البعيدة. ضع 0 لإيقاف هذه الوظيفة."
-#: src/Module/Admin/Site.php:508
+#: src/Module/Admin/Site.php:502
msgid "Allowed friend domains"
msgstr "النطاقات المسموحة"
-#: src/Module/Admin/Site.php:508
+#: src/Module/Admin/Site.php:502
msgid ""
"Comma separated list of domains which are allowed to establish friendships "
"with this site. Wildcards are accepted. Empty to allow any domains"
msgstr "قائمة مفصولة بفواصل للنطاقات المصرح لها بالتفاعل مع مستخدمي هذا الموقع. علامة \"*\" مقبولة. اتركه فارغا للسماح لجميع النطاقات"
-#: src/Module/Admin/Site.php:509
+#: src/Module/Admin/Site.php:503
msgid "Allowed email domains"
msgstr "نطاقات البريد الإلكتروني المسموحة"
-#: src/Module/Admin/Site.php:509
+#: src/Module/Admin/Site.php:503
msgid ""
"Comma separated list of domains which are allowed in email addresses for "
"registrations to this site. Wildcards are accepted. Empty to allow any "
"domains"
msgstr "قائمة مفصولة بفواصل للنطاقات البريد الإلكتروني المسموح بالتسجيل بها في هذا الموقع. علامة \"*\" مقبولة. اتركه فارغا للسماح لجميع النطاقات"
-#: src/Module/Admin/Site.php:510
+#: src/Module/Admin/Site.php:504
msgid "Disallowed email domains"
msgstr ""
-#: src/Module/Admin/Site.php:510
+#: src/Module/Admin/Site.php:504
msgid ""
"Comma separated list of domains which are rejected as email addresses for "
"registrations to this site. Wildcards are accepted."
msgstr ""
-#: src/Module/Admin/Site.php:511
+#: src/Module/Admin/Site.php:505
msgid "No OEmbed rich content"
msgstr ""
-#: src/Module/Admin/Site.php:511
+#: src/Module/Admin/Site.php:505
msgid ""
"Don't show the rich content (e.g. embedded PDF), except from the domains "
"listed below."
msgstr ""
-#: src/Module/Admin/Site.php:512
+#: src/Module/Admin/Site.php:506
msgid "Trusted third-party domains"
msgstr "نطاقات الخارجية الموثوق بها"
-#: src/Module/Admin/Site.php:512
+#: src/Module/Admin/Site.php:506
msgid ""
"Comma separated list of domains from which content is allowed to be embedded"
" in posts like with OEmbed. All sub-domains of the listed domains are "
"allowed as well."
msgstr "قائمة مفصولة بفواصل من النطاقات التي يُسمح بتضمين محتواها في المشاركات مثل OEmbed. يُسمح أيضًا بجميع النطاقات الفرعية التابعة لها."
-#: src/Module/Admin/Site.php:513
+#: src/Module/Admin/Site.php:507
msgid "Block public"
msgstr "احجب المشاركات العلنية"
-#: src/Module/Admin/Site.php:513
+#: src/Module/Admin/Site.php:507
msgid ""
"Check to block public access to all otherwise public personal pages on this "
"site unless you are currently logged in."
msgstr "أشر لمنع الزوار من الوصول إلى كل الصفحات باستثناء الصفحات الشخصية العلنية."
-#: src/Module/Admin/Site.php:514
+#: src/Module/Admin/Site.php:508
msgid "Force publish"
msgstr "افرض النشر"
-#: src/Module/Admin/Site.php:514
+#: src/Module/Admin/Site.php:508
msgid ""
"Check to force all profiles on this site to be listed in the site directory."
msgstr "أشر لفرض إدراج جميع الملفات الشخصية في دليل الموقع."
-#: src/Module/Admin/Site.php:514
+#: src/Module/Admin/Site.php:508
msgid "Enabling this may violate privacy laws like the GDPR"
msgstr "تفعيله قد ينتهك قوانين حماية الخصوصية مثل GDPR"
-#: src/Module/Admin/Site.php:515
+#: src/Module/Admin/Site.php:509
msgid "Global directory URL"
msgstr "رابط الدليل العالمي"
-#: src/Module/Admin/Site.php:515
+#: src/Module/Admin/Site.php:509
msgid ""
"URL to the global directory. If this is not set, the global directory is "
"completely unavailable to the application."
msgstr "رابط الدليل العالمي. إذا لم يتم تعريف هذا الحقل ، فلن يكون الدليل العام متاحًا."
-#: src/Module/Admin/Site.php:516
+#: src/Module/Admin/Site.php:510
msgid "Private posts by default for new users"
msgstr "جعل المشاركات خاصة للمستخدمين الجدد افتراضيًا"
-#: src/Module/Admin/Site.php:516
+#: src/Module/Admin/Site.php:510
msgid ""
"Set default post permissions for all new members to the default privacy "
"circle rather than public."
msgstr ""
-#: src/Module/Admin/Site.php:517
+#: src/Module/Admin/Site.php:511
msgid "Don't include post content in email notifications"
msgstr "لا تضمن محتويات المشاركات في تنبيهات البريد الإلكتروني"
-#: src/Module/Admin/Site.php:517
+#: src/Module/Admin/Site.php:511
msgid ""
"Don't include the content of a post/comment/private message/etc. in the "
"email notifications that are sent out from this site, as a privacy measure."
msgstr "لا تضمن محتوى المشركات/التعليقات/الرسائل الخاصة/إلخ في تنبيهات البريد الإلكتروني المرسلة من هذا الموقع، كتدبير لحماية الخصوصية."
-#: src/Module/Admin/Site.php:518
+#: src/Module/Admin/Site.php:512
msgid "Disallow public access to addons listed in the apps menu."
msgstr "لا تسمح بالوصول العلني للإضافات المدرجة في قائمة التطبيقات."
-#: src/Module/Admin/Site.php:518
+#: src/Module/Admin/Site.php:512
msgid ""
"Checking this box will restrict addons listed in the apps menu to members "
"only."
msgstr "تأشير هذا الخِيار سيجعل الوصول إلى الإضافات في قائمة التطبيقات للأعضاء فقط."
-#: src/Module/Admin/Site.php:519
+#: src/Module/Admin/Site.php:513
msgid "Don't embed private images in posts"
msgstr "لا تضمن الصور الخاصة في المشاركات"
-#: src/Module/Admin/Site.php:519
+#: src/Module/Admin/Site.php:513
msgid ""
"Don't replace locally-hosted private photos in posts with an embedded copy "
"of the image. This means that contacts who receive posts containing private "
@@ -5033,11 +5043,11 @@ msgid ""
"while."
msgstr "لا تستبدل الصور الخاصة المستضافة محليًا في المشاركات بنسخة مضمنة ، لأن هذا يعني أن المتراسلين الذين يتلقون المشاركات التي تحوي تلك الصور ستحتاج إلى مصادقة لرؤية كل صورة ، ما قد يستغرق بعض الوقت."
-#: src/Module/Admin/Site.php:520
+#: src/Module/Admin/Site.php:514
msgid "Explicit Content"
msgstr "محتوى حساس"
-#: src/Module/Admin/Site.php:520
+#: src/Module/Admin/Site.php:514
msgid ""
"Set this to announce that your node is used mostly for explicit content that"
" might not be suited for minors. This information will be published in the "
@@ -5046,329 +5056,319 @@ msgid ""
"will be shown at the user registration page."
msgstr "عيّن هذا الخيار للإعلان عن أن عقدتك تحتوي محتوى حساس قد لا يكون مناسباً للقصر. وسوف تنشر هذه المعلومات في معلومات العقدة وصفحة التسجيل، ويستخدم هذا الخيار في الدليل العالمي، فأثناء استعراض هذه العقدة في الدليل ستظهر لهم هذه المعلومة."
-#: src/Module/Admin/Site.php:521
+#: src/Module/Admin/Site.php:515
msgid "Only local search"
msgstr ""
-#: src/Module/Admin/Site.php:521
+#: src/Module/Admin/Site.php:515
msgid ""
"Blocks search for users who are not logged in to prevent crawlers from "
"blocking your system."
msgstr ""
-#: src/Module/Admin/Site.php:522
+#: src/Module/Admin/Site.php:516
msgid "Blocked tags for trending tags"
msgstr ""
-#: src/Module/Admin/Site.php:522
+#: src/Module/Admin/Site.php:516
msgid ""
"Comma separated list of hashtags that shouldn't be displayed in the trending"
" tags."
msgstr ""
-#: src/Module/Admin/Site.php:523
+#: src/Module/Admin/Site.php:517
msgid "Cache contact avatars"
msgstr ""
-#: src/Module/Admin/Site.php:523
+#: src/Module/Admin/Site.php:517
msgid ""
"Locally store the avatar pictures of the contacts. This uses a lot of "
"storage space but it increases the performance."
msgstr "خزن الصور الرمزية محليًا. يحجز مساحة كبير ولكنه يزيد الأداء."
-#: src/Module/Admin/Site.php:524
+#: src/Module/Admin/Site.php:518
msgid "Allow Users to set remote_self"
msgstr "اسمح للمستخدمين بتعيين remote_self"
-#: src/Module/Admin/Site.php:524
+#: src/Module/Admin/Site.php:518
msgid ""
"With checking this, every user is allowed to mark every contact as a "
"remote_self in the repair contact dialog. Setting this flag on a contact "
"causes mirroring every posting of that contact in the users stream."
msgstr "يتيح تأشير هذا المربع للميتخدمين تعريف مل المتراسلين علئ أنهم remote_self في مربع حوار اصلاح المتراسلين. سيؤدي تنشيط هذه الميزة على متراسل إلى نسخ جميع منشوراته في دفق المستخدم."
-#: src/Module/Admin/Site.php:525
+#: src/Module/Admin/Site.php:519
msgid "Allow Users to set up relay channels"
msgstr ""
-#: src/Module/Admin/Site.php:525
+#: src/Module/Admin/Site.php:519
msgid ""
"If enabled, it is possible to create relay users that are used to reshare "
"content based on user defined channels."
msgstr ""
-#: src/Module/Admin/Site.php:526
+#: src/Module/Admin/Site.php:520
msgid "Adjust the feed poll frequency"
msgstr ""
-#: src/Module/Admin/Site.php:526
+#: src/Module/Admin/Site.php:520
msgid "Automatically detect and set the best feed poll frequency."
msgstr ""
-#: src/Module/Admin/Site.php:527
+#: src/Module/Admin/Site.php:521
msgid "Minimum poll interval"
msgstr ""
-#: src/Module/Admin/Site.php:527
+#: src/Module/Admin/Site.php:521
msgid ""
"Minimal distance in minutes between two polls for mail and feed contacts. "
"Reasonable values are between 1 and 59."
msgstr ""
-#: src/Module/Admin/Site.php:528
+#: src/Module/Admin/Site.php:522
msgid "Enable multiple registrations"
msgstr "فعّل تعدد التسجيل"
-#: src/Module/Admin/Site.php:528
+#: src/Module/Admin/Site.php:522
msgid "Enable users to register additional accounts for use as pages."
msgstr "يمكن المستخدمين من تسجيل حسابات إضافية لتستخدم كصفحات."
-#: src/Module/Admin/Site.php:529
+#: src/Module/Admin/Site.php:523
msgid "Enable OpenID"
msgstr "فعّل OpenID"
-#: src/Module/Admin/Site.php:529
+#: src/Module/Admin/Site.php:523
msgid "Enable OpenID support for registration and logins."
msgstr "فعّل دعم OpenID للتسجيل والولوج."
-#: src/Module/Admin/Site.php:530
+#: src/Module/Admin/Site.php:524
msgid "Enable full name check"
msgstr ""
-#: src/Module/Admin/Site.php:530
+#: src/Module/Admin/Site.php:524
msgid ""
"Prevents users from registering with a display name with fewer than two "
"parts separated by spaces."
msgstr ""
-#: src/Module/Admin/Site.php:531
+#: src/Module/Admin/Site.php:525
msgid "Email administrators on new registration"
msgstr ""
-#: src/Module/Admin/Site.php:531
+#: src/Module/Admin/Site.php:525
msgid ""
"If enabled and the system is set to an open registration, an email for each "
"new registration is sent to the administrators."
msgstr ""
-#: src/Module/Admin/Site.php:532
+#: src/Module/Admin/Site.php:526
msgid "Community pages for visitors"
msgstr "عرض صفحة المجتمع للزوار"
-#: src/Module/Admin/Site.php:532
+#: src/Module/Admin/Site.php:526
msgid ""
"Which community pages should be available for visitors. Local users always "
"see both pages."
msgstr "صفحات المجتمع المتاحة للزوار. المستخدمون المحليون يمكنهم مشاهدة كلا النوعين."
-#: src/Module/Admin/Site.php:533
+#: src/Module/Admin/Site.php:527
msgid "Posts per user on community page"
msgstr "حد المشاركات لكل مستخدم في صفحة المجتمع"
-#: src/Module/Admin/Site.php:533
+#: src/Module/Admin/Site.php:527
msgid ""
"The maximum number of posts per user on the local community page. This is "
"useful, when a single user floods the local community page."
msgstr ""
-#: src/Module/Admin/Site.php:534
+#: src/Module/Admin/Site.php:528
msgid "Posts per server on community page"
msgstr ""
-#: src/Module/Admin/Site.php:534
+#: src/Module/Admin/Site.php:528
msgid ""
"The maximum number of posts per server on the global community page. This is"
" useful, when posts from a single server flood the global community page."
msgstr ""
-#: src/Module/Admin/Site.php:536
+#: src/Module/Admin/Site.php:530
msgid "Enable Mail support"
msgstr "فعّل دعم البريد الإلكتروني"
-#: src/Module/Admin/Site.php:536
+#: src/Module/Admin/Site.php:530
msgid ""
"Enable built-in mail support to poll IMAP folders and to reply via mail."
msgstr ""
-#: src/Module/Admin/Site.php:537
+#: src/Module/Admin/Site.php:531
msgid ""
"Mail support can't be enabled because the PHP IMAP module is not installed."
msgstr ""
-#: src/Module/Admin/Site.php:538
-msgid "Enable OStatus support"
-msgstr ""
-
-#: src/Module/Admin/Site.php:538
-msgid ""
-"Enable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
-"communications in OStatus are public."
-msgstr ""
-
-#: src/Module/Admin/Site.php:540
+#: src/Module/Admin/Site.php:533
msgid ""
"Diaspora support can't be enabled because Friendica was installed into a sub"
" directory."
msgstr ""
-#: src/Module/Admin/Site.php:541
+#: src/Module/Admin/Site.php:534
msgid "Enable Diaspora support"
msgstr ""
-#: src/Module/Admin/Site.php:541
+#: src/Module/Admin/Site.php:534
msgid ""
"Enable built-in Diaspora network compatibility for communicating with "
"diaspora servers."
msgstr ""
-#: src/Module/Admin/Site.php:542
+#: src/Module/Admin/Site.php:535
msgid "Verify SSL"
msgstr ""
-#: src/Module/Admin/Site.php:542
+#: src/Module/Admin/Site.php:535
msgid ""
"If you wish, you can turn on strict certificate checking. This will mean you"
" cannot connect (at all) to self-signed SSL sites."
msgstr ""
-#: src/Module/Admin/Site.php:543
+#: src/Module/Admin/Site.php:536
msgid "Proxy user"
msgstr "مستخدم الوكيل"
-#: src/Module/Admin/Site.php:543
+#: src/Module/Admin/Site.php:536
msgid "User name for the proxy server."
msgstr ""
-#: src/Module/Admin/Site.php:544
+#: src/Module/Admin/Site.php:537
msgid "Proxy URL"
msgstr "رابط الوكيل"
-#: src/Module/Admin/Site.php:544
+#: src/Module/Admin/Site.php:537
msgid ""
"If you want to use a proxy server that Friendica should use to connect to "
"the network, put the URL of the proxy here."
msgstr ""
-#: src/Module/Admin/Site.php:545
+#: src/Module/Admin/Site.php:538
msgid "Network timeout"
msgstr "انتهت مهلة الاتصال بالشبكة"
-#: src/Module/Admin/Site.php:545
+#: src/Module/Admin/Site.php:538
msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
msgstr "القيمة بالثواني. تعيينها لـ 0 يعني مهلة غير محدودة (غير مستحسن)."
-#: src/Module/Admin/Site.php:546
+#: src/Module/Admin/Site.php:539
msgid "Maximum Load Average"
msgstr ""
-#: src/Module/Admin/Site.php:546
+#: src/Module/Admin/Site.php:539
#, php-format
msgid ""
"Maximum system load before delivery and poll processes are deferred - "
"default %d."
msgstr ""
-#: src/Module/Admin/Site.php:547
+#: src/Module/Admin/Site.php:540
msgid "Minimal Memory"
msgstr "الحد الأدنى للذاكرة"
-#: src/Module/Admin/Site.php:547
+#: src/Module/Admin/Site.php:540
msgid ""
"Minimal free memory in MB for the worker. Needs access to /proc/meminfo - "
"default 0 (deactivated)."
msgstr "الحد الأدنى لذاكرة الحرة للمهمة بالميغابايت. تحتاج إذن الوصول إلى /proc/meminfo - الافتراضي 0 (معطل)."
-#: src/Module/Admin/Site.php:548
+#: src/Module/Admin/Site.php:541
msgid "Periodically optimize tables"
msgstr "تحسين الجداول بصفة دورية"
-#: src/Module/Admin/Site.php:548
+#: src/Module/Admin/Site.php:541
msgid "Periodically optimize tables like the cache and the workerqueue"
msgstr "حسن بانتظام بعض جداول قاعدة البيانات المستخدمة على نطاق واسع مثل ذاكرة التخزين المؤقت أو الأقفال أو الجلسة أو طابور المهام"
-#: src/Module/Admin/Site.php:550
+#: src/Module/Admin/Site.php:543
msgid "Discover followers/followings from contacts"
msgstr "اكتشف قائمة متابِعي/متابَعي متراسليك"
-#: src/Module/Admin/Site.php:550
+#: src/Module/Admin/Site.php:543
msgid ""
"If enabled, contacts are checked for their followers and following contacts."
msgstr "اذا فُعل سيقوم هذا الخادم بتجميع قائمة متابِعي ومتابَعي متراسليك."
-#: src/Module/Admin/Site.php:551
+#: src/Module/Admin/Site.php:544
msgid "None - deactivated"
msgstr "لا شيء - معطل"
-#: src/Module/Admin/Site.php:552
+#: src/Module/Admin/Site.php:545
msgid ""
"Local contacts - contacts of our local contacts are discovered for their "
"followers/followings."
msgstr "المتراسلون المحليون - متراسلوا مستخدمي هذا الخادم."
-#: src/Module/Admin/Site.php:553
+#: src/Module/Admin/Site.php:546
msgid ""
"Interactors - contacts of our local contacts and contacts who interacted on "
"locally visible postings are discovered for their followers/followings."
msgstr "المتفاعلون: متراسلو مستخدمي هذا الخادم والمتراسلون الذين تفاعلوا مع المشاركات المحلية لهذا الخادم."
-#: src/Module/Admin/Site.php:555
+#: src/Module/Admin/Site.php:548
msgid "Only update contacts/servers with local data"
msgstr ""
-#: src/Module/Admin/Site.php:555
+#: src/Module/Admin/Site.php:548
msgid ""
"If enabled, the system will only look for changes in contacts and servers "
"that engaged on this system by either being in a contact list of a user or "
"when posts or comments exists from the contact on this system."
msgstr ""
-#: src/Module/Admin/Site.php:556
+#: src/Module/Admin/Site.php:549
msgid "Synchronize the contacts with the directory server"
msgstr "زامن المتراسلين مع خادم الدليل"
-#: src/Module/Admin/Site.php:556
+#: src/Module/Admin/Site.php:549
msgid ""
"if enabled, the system will check periodically for new contacts on the "
"defined directory server."
msgstr "إذا فُعل سيقوم النظام بالتحقق دوريا للبحث عن متراسلين جدد على خادم الدليل المحدد."
-#: src/Module/Admin/Site.php:558
+#: src/Module/Admin/Site.php:551
msgid "Discover contacts from other servers"
msgstr "اكتشف متراسلين من خوادم أخرى"
-#: src/Module/Admin/Site.php:558
+#: src/Module/Admin/Site.php:551
msgid ""
"Periodically query other servers for contacts and servers that they know of."
" The system queries Friendica, Mastodon and Hubzilla servers. Keep it "
"deactivated on small machines to decrease the database size and load."
msgstr ""
-#: src/Module/Admin/Site.php:559
+#: src/Module/Admin/Site.php:552
msgid "Days between requery"
msgstr "المهلة بالأيام بين الطلبات"
-#: src/Module/Admin/Site.php:559
+#: src/Module/Admin/Site.php:552
msgid ""
"Number of days after which a server is requeried for their contacts and "
"servers it knows of. This is only used when the discovery is activated."
msgstr ""
-#: src/Module/Admin/Site.php:560
+#: src/Module/Admin/Site.php:553
msgid "Search the local directory"
msgstr "ابحث في الدليل المحلي"
-#: src/Module/Admin/Site.php:560
+#: src/Module/Admin/Site.php:553
msgid ""
"Search the local directory instead of the global directory. When searching "
"locally, every search will be executed on the global directory in the "
"background. This improves the search results when the search is repeated."
msgstr "يبحث في الدليل المحلي بدلاً من الدليل العالمي. عند إجراء بحث محلي ، يجرى نفس البحث في الدليل العالمي في الخلفية. هذا يحسن نتائج البحث إذا تكررت."
-#: src/Module/Admin/Site.php:562
+#: src/Module/Admin/Site.php:555
msgid "Publish server information"
msgstr "انشر معلومات الخادم"
-#: src/Module/Admin/Site.php:562
+#: src/Module/Admin/Site.php:555
msgid ""
"If enabled, general server and usage data will be published. The data "
"contains the name and version of the server, number of users with public "
@@ -5376,50 +5376,50 @@ msgid ""
" href=\"http://the-federation.info/\">the-federation.info for details."
msgstr "إذا فعل ستنشر البيانات العامة للخادم وبيانات استخدامه. تحتوي هذه البيانات على اسم وإصدار الخادم ، وعدد المستخدمين الذين لهم ملف شخصي علني، وعدد المنشورات وقائمة الموصّلات والموافيق النشطة. راجع federation.info للحصول على التفاصيل."
-#: src/Module/Admin/Site.php:564
+#: src/Module/Admin/Site.php:557
msgid "Check upstream version"
msgstr "تحقق من الاصدار المنبعي"
-#: src/Module/Admin/Site.php:564
+#: src/Module/Admin/Site.php:557
msgid ""
"Enables checking for new Friendica versions at github. If there is a new "
"version, you will be informed in the admin panel overview."
msgstr ""
-#: src/Module/Admin/Site.php:565
+#: src/Module/Admin/Site.php:558
msgid "Suppress Tags"
msgstr "اخف الوسوم"
-#: src/Module/Admin/Site.php:565
+#: src/Module/Admin/Site.php:558
msgid "Suppress showing a list of hashtags at the end of the posting."
msgstr "اخف قائمة الوسوم من أسفل المشاركة."
-#: src/Module/Admin/Site.php:566
+#: src/Module/Admin/Site.php:559
msgid "Clean database"
msgstr "امسح قاعدة البيانات"
-#: src/Module/Admin/Site.php:566
+#: src/Module/Admin/Site.php:559
msgid ""
"Remove old remote items, orphaned database records and old content from some"
" other helper tables."
msgstr "يزيل العناصر البعيدة القديمة والسجلات اليتيمة والمحتوى القديم من بعض الجداول المساعدة."
-#: src/Module/Admin/Site.php:567
+#: src/Module/Admin/Site.php:560
msgid "Lifespan of remote items"
msgstr "عمر العناصر البعيدة"
-#: src/Module/Admin/Site.php:567
+#: src/Module/Admin/Site.php:560
msgid ""
"When the database cleanup is enabled, this defines the days after which "
"remote items will be deleted. Own items, and marked or filed items are "
"always kept. 0 disables this behaviour."
msgstr "إذا كان تنظيف قاعدة البيانات مفعلًا ، فإن هذه القيمة تمثل المهلة بالأيام لحذف العناصر البعيدة. يتم دائمًا الاحتفاظ بالعناصر المحلية والمفضلة والمؤرشفة. أدخل 0 لتعطيله."
-#: src/Module/Admin/Site.php:568
+#: src/Module/Admin/Site.php:561
msgid "Lifespan of unclaimed items"
msgstr ""
-#: src/Module/Admin/Site.php:568
+#: src/Module/Admin/Site.php:561
msgid ""
"When the database cleanup is enabled, this defines the days after which "
"unclaimed remote items (mostly content from the relay) will be deleted. "
@@ -5427,185 +5427,184 @@ msgid ""
"items if set to 0."
msgstr ""
-#: src/Module/Admin/Site.php:569
+#: src/Module/Admin/Site.php:562
msgid "Lifespan of raw conversation data"
msgstr ""
-#: src/Module/Admin/Site.php:569
+#: src/Module/Admin/Site.php:562
msgid ""
-"The conversation data is used for ActivityPub and OStatus, as well as for "
-"debug purposes. It should be safe to remove it after 14 days, default is 90 "
-"days."
+"The conversation data is used for ActivityPub, as well as for debug "
+"purposes. It should be safe to remove it after 14 days, default is 90 days."
msgstr ""
-#: src/Module/Admin/Site.php:570
+#: src/Module/Admin/Site.php:563
msgid "Maximum numbers of comments per post"
msgstr "حد عدد التعليقات لكل مشاركة"
-#: src/Module/Admin/Site.php:570
+#: src/Module/Admin/Site.php:563
msgid "How much comments should be shown for each post? Default value is 100."
msgstr "عدد التعليقات التي تعرض لكل مشاركة؟ القيمة الافتراضية هي 100."
-#: src/Module/Admin/Site.php:571
+#: src/Module/Admin/Site.php:564
msgid "Maximum numbers of comments per post on the display page"
msgstr "الحد الأقصى لعدد التعليقات لكل محادثة في صفحة العرض (/display)"
-#: src/Module/Admin/Site.php:571
+#: src/Module/Admin/Site.php:564
msgid ""
"How many comments should be shown on the single view for each post? Default "
"value is 1000."
msgstr "عدد التعليقات المعروضة في سياق المشاركة، القيمة الافتراضية هي 1000."
-#: src/Module/Admin/Site.php:572
+#: src/Module/Admin/Site.php:565
msgid "Items per page"
msgstr ""
-#: src/Module/Admin/Site.php:572
+#: src/Module/Admin/Site.php:565
msgid ""
"Number of items per page in stream pages (network, community, "
"profile/contact statuses, search)."
msgstr ""
-#: src/Module/Admin/Site.php:573
+#: src/Module/Admin/Site.php:566
msgid "Items per page for mobile devices"
msgstr ""
-#: src/Module/Admin/Site.php:573
+#: src/Module/Admin/Site.php:566
msgid ""
"Number of items per page in stream pages (network, community, "
"profile/contact statuses, search) for mobile devices."
msgstr ""
-#: src/Module/Admin/Site.php:574
+#: src/Module/Admin/Site.php:567
msgid "Temp path"
msgstr "مسار التخزين المؤقت"
-#: src/Module/Admin/Site.php:574
+#: src/Module/Admin/Site.php:567
msgid ""
"If you have a restricted system where the webserver can't access the system "
"temp path, enter another path here."
msgstr "إذا كان نظامك مقيد حيث لا يستطيع خادم الويب الوصول إلى مسار مجلد التخزين المؤقت (temp)، أدخل مسار آخر هنا."
-#: src/Module/Admin/Site.php:575
+#: src/Module/Admin/Site.php:568
msgid "Only search in tags"
msgstr "ابحث في الوسوم فقط"
-#: src/Module/Admin/Site.php:575
+#: src/Module/Admin/Site.php:568
msgid "On large systems the text search can slow down the system extremely."
msgstr "في النّظم الكبيرة، يمكن أن يؤدي البحث عن النصوص إلى إبطاء النظام."
-#: src/Module/Admin/Site.php:576
+#: src/Module/Admin/Site.php:569
msgid "Limited search scope"
msgstr ""
-#: src/Module/Admin/Site.php:576
+#: src/Module/Admin/Site.php:569
msgid ""
"If enabled, searches will only be performed in the data used for the "
"channels and not in all posts."
msgstr ""
-#: src/Module/Admin/Site.php:577
+#: src/Module/Admin/Site.php:570
msgid "Maximum age of items in the search table"
msgstr ""
-#: src/Module/Admin/Site.php:577
+#: src/Module/Admin/Site.php:570
msgid ""
"Maximum age of items in the search table in days. Lower values will increase"
" the performance and reduce disk usage. 0 means no age restriction."
msgstr ""
-#: src/Module/Admin/Site.php:578
+#: src/Module/Admin/Site.php:571
msgid "Generate counts per contact circle when calculating network count"
msgstr ""
-#: src/Module/Admin/Site.php:578
+#: src/Module/Admin/Site.php:571
msgid ""
"On systems with users that heavily use contact circles the query can be very"
" expensive."
msgstr ""
-#: src/Module/Admin/Site.php:579
+#: src/Module/Admin/Site.php:572
msgid "Process \"view\" activities"
msgstr ""
-#: src/Module/Admin/Site.php:579
+#: src/Module/Admin/Site.php:572
msgid ""
"\"view\" activities are mostly geberated by Peertube systems. Per default "
"they are not processed for performance reasons. Only activate this option on"
" performant system."
msgstr ""
-#: src/Module/Admin/Site.php:580
+#: src/Module/Admin/Site.php:573
msgid "Days, after which a contact is archived"
msgstr ""
-#: src/Module/Admin/Site.php:580
+#: src/Module/Admin/Site.php:573
msgid ""
"Number of days that we try to deliver content or to update the contact data "
"before we archive a contact."
msgstr ""
-#: src/Module/Admin/Site.php:582
+#: src/Module/Admin/Site.php:575
msgid "Maximum number of parallel workers"
msgstr "الحد الأقصى لعدد المهام"
-#: src/Module/Admin/Site.php:582
+#: src/Module/Admin/Site.php:575
#, php-format
msgid ""
"On shared hosters set this to %d. On larger systems, values of %d are great."
" Default value is %d."
msgstr ""
-#: src/Module/Admin/Site.php:583
+#: src/Module/Admin/Site.php:576
msgid "Maximum load for workers"
msgstr ""
-#: src/Module/Admin/Site.php:583
+#: src/Module/Admin/Site.php:576
msgid "Maximum load that causes a cooldown before each worker function call."
msgstr ""
-#: src/Module/Admin/Site.php:584
+#: src/Module/Admin/Site.php:577
msgid "Enable fastlane"
msgstr ""
-#: src/Module/Admin/Site.php:584
+#: src/Module/Admin/Site.php:577
msgid ""
"When enabed, the fastlane mechanism starts an additional worker if processes"
" with higher priority are blocked by processes of lower priority."
msgstr ""
-#: src/Module/Admin/Site.php:585
+#: src/Module/Admin/Site.php:578
msgid "Decoupled receiver"
msgstr ""
-#: src/Module/Admin/Site.php:585
+#: src/Module/Admin/Site.php:578
msgid ""
"Decouple incoming ActivityPub posts by processing them in the background via"
" a worker process. Only enable this on fast systems."
msgstr ""
-#: src/Module/Admin/Site.php:586
+#: src/Module/Admin/Site.php:579
msgid "Cron interval"
msgstr ""
-#: src/Module/Admin/Site.php:586
+#: src/Module/Admin/Site.php:579
msgid "Minimal period in minutes between two calls of the \"Cron\" worker job."
msgstr ""
-#: src/Module/Admin/Site.php:587
+#: src/Module/Admin/Site.php:580
msgid "Worker defer limit"
msgstr ""
-#: src/Module/Admin/Site.php:587
+#: src/Module/Admin/Site.php:580
msgid ""
"Per default the systems tries delivering for 15 times before dropping it."
msgstr ""
-#: src/Module/Admin/Site.php:588
+#: src/Module/Admin/Site.php:581
msgid "Worker fetch limit"
msgstr ""
-#: src/Module/Admin/Site.php:588
+#: src/Module/Admin/Site.php:581
msgid ""
"Number of worker tasks that are fetched in a single query. Higher values "
"should increase the performance, too high values will mostly likely decrease"
@@ -5613,214 +5612,214 @@ msgid ""
"system."
msgstr ""
-#: src/Module/Admin/Site.php:590
+#: src/Module/Admin/Site.php:583
msgid "Direct relay transfer"
msgstr ""
-#: src/Module/Admin/Site.php:590
+#: src/Module/Admin/Site.php:583
msgid ""
"Enables the direct transfer to other servers without using the relay servers"
msgstr ""
-#: src/Module/Admin/Site.php:591
+#: src/Module/Admin/Site.php:584
msgid "Relay scope"
msgstr ""
-#: src/Module/Admin/Site.php:591
+#: src/Module/Admin/Site.php:584
msgid ""
"Can be \"all\" or \"tags\". \"all\" means that every public post should be "
"received. \"tags\" means that only posts with selected tags should be "
"received."
msgstr "إما أن يكون \"الكل\" أو \"الوسوم\". يعني \"الكل\" وُجوب تلقي كل المشاركات العلنية. تعني \"الوسوم\" وجوب تلقي المشاركات ذات الوسوم المحددة فقط."
-#: src/Module/Admin/Site.php:591 src/Module/Contact/Profile.php:328
-#: src/Module/Settings/TwoFactor/Index.php:146
+#: src/Module/Admin/Site.php:584 src/Module/Contact/Profile.php:314
+#: src/Module/Settings/TwoFactor/Index.php:132
msgid "Disabled"
msgstr "معطّل"
-#: src/Module/Admin/Site.php:591
+#: src/Module/Admin/Site.php:584
msgid "all"
msgstr "الكل"
-#: src/Module/Admin/Site.php:591
+#: src/Module/Admin/Site.php:584
msgid "tags"
msgstr "الوسوم"
-#: src/Module/Admin/Site.php:592
+#: src/Module/Admin/Site.php:585
msgid "Server tags"
msgstr "وسوم الخادم"
-#: src/Module/Admin/Site.php:592
+#: src/Module/Admin/Site.php:585
msgid "Comma separated list of tags for the \"tags\" subscription."
msgstr ""
-#: src/Module/Admin/Site.php:593
+#: src/Module/Admin/Site.php:586
msgid "Deny Server tags"
msgstr "الوسوم المرفوضة"
-#: src/Module/Admin/Site.php:593
+#: src/Module/Admin/Site.php:586
msgid "Comma separated list of tags that are rejected."
msgstr "قائمة بالوسوم المرفوضة مفصول بفاصلة."
-#: src/Module/Admin/Site.php:594
+#: src/Module/Admin/Site.php:587
msgid "Maximum amount of tags"
msgstr ""
-#: src/Module/Admin/Site.php:594
+#: src/Module/Admin/Site.php:587
msgid ""
"Maximum amount of tags in a post before it is rejected as spam. The post has"
" to contain at least one link. Posts from subscribed accounts will not be "
"rejected."
msgstr ""
-#: src/Module/Admin/Site.php:595
+#: src/Module/Admin/Site.php:588
msgid "Allow user tags"
msgstr "اسمح بوسوم المستخدمين"
-#: src/Module/Admin/Site.php:595
+#: src/Module/Admin/Site.php:588
msgid ""
"If enabled, the tags from the saved searches will used for the \"tags\" "
"subscription in addition to the \"relay_server_tags\"."
msgstr ""
-#: src/Module/Admin/Site.php:596
+#: src/Module/Admin/Site.php:589
msgid "Deny undetected languages"
msgstr ""
-#: src/Module/Admin/Site.php:596
+#: src/Module/Admin/Site.php:589
msgid "If enabled, posts with undetected languages will be rejected."
msgstr ""
-#: src/Module/Admin/Site.php:597
+#: src/Module/Admin/Site.php:590
msgid "Language Quality"
msgstr ""
-#: src/Module/Admin/Site.php:597
+#: src/Module/Admin/Site.php:590
msgid "The minimum language quality that is required to accept the post."
msgstr ""
-#: src/Module/Admin/Site.php:598
+#: src/Module/Admin/Site.php:591
msgid "Number of languages for the language detection"
msgstr ""
-#: src/Module/Admin/Site.php:598
+#: src/Module/Admin/Site.php:591
msgid ""
"The system detects a list of languages per post. Only if the desired "
"languages are in the list, the message will be accepted. The higher the "
"number, the more posts will be falsely detected."
msgstr ""
-#: src/Module/Admin/Site.php:600
+#: src/Module/Admin/Site.php:593
msgid "Maximum age of channel"
msgstr ""
-#: src/Module/Admin/Site.php:600
+#: src/Module/Admin/Site.php:593
msgid ""
"This defines the maximum age in hours of items that should be displayed in "
"channels. This affects the channel performance."
msgstr ""
-#: src/Module/Admin/Site.php:601
+#: src/Module/Admin/Site.php:594
msgid "Maximum number of channel posts"
msgstr ""
-#: src/Module/Admin/Site.php:601
+#: src/Module/Admin/Site.php:594
msgid ""
"For performance reasons, the channels use a dedicated table to store "
"content. The higher the value the slower the channels."
msgstr ""
-#: src/Module/Admin/Site.php:602
+#: src/Module/Admin/Site.php:595
msgid "Interaction score days"
msgstr ""
-#: src/Module/Admin/Site.php:602
+#: src/Module/Admin/Site.php:595
msgid "Number of days that are used to calculate the interaction score."
msgstr ""
-#: src/Module/Admin/Site.php:603
+#: src/Module/Admin/Site.php:596
msgid "Maximum number of posts per author"
msgstr ""
-#: src/Module/Admin/Site.php:603
+#: src/Module/Admin/Site.php:596
msgid ""
"Maximum number of posts per page by author if the contact frequency is set "
"to \"Display only few posts\". If there are more posts, then the post with "
"the most interactions will be displayed."
msgstr ""
-#: src/Module/Admin/Site.php:604
+#: src/Module/Admin/Site.php:597
msgid "Sharer interaction days"
msgstr ""
-#: src/Module/Admin/Site.php:604
+#: src/Module/Admin/Site.php:597
msgid ""
"Number of days of the last interaction that are used to define which sharers"
" are used for the \"sharers of sharers\" channel."
msgstr ""
-#: src/Module/Admin/Site.php:607
+#: src/Module/Admin/Site.php:600
msgid "Start Relocation"
msgstr "ابدأ النقل"
-#: src/Module/Admin/Storage.php:46
+#: src/Module/Admin/Storage.php:32
#, php-format
msgid "Storage backend, %s is invalid."
msgstr "قرص التخزين %s غير صالح."
-#: src/Module/Admin/Storage.php:73
+#: src/Module/Admin/Storage.php:59
#, php-format
msgid "Storage backend %s error: %s"
msgstr "قرص التخزين %s خطأ: %s"
-#: src/Module/Admin/Storage.php:84 src/Module/Admin/Storage.php:87
+#: src/Module/Admin/Storage.php:70 src/Module/Admin/Storage.php:73
msgid "Invalid storage backend setting value."
msgstr "قيمة الإعداد غير صالحة."
-#: src/Module/Admin/Storage.php:139
+#: src/Module/Admin/Storage.php:125
msgid "Current Storage Backend"
msgstr "قرص التخزين الحالي"
-#: src/Module/Admin/Storage.php:140
+#: src/Module/Admin/Storage.php:126
msgid "Storage Configuration"
msgstr "إعدادات التخزين"
-#: src/Module/Admin/Storage.php:141 src/Module/BaseAdmin.php:91
+#: src/Module/Admin/Storage.php:127 src/Module/BaseAdmin.php:77
msgid "Storage"
msgstr "مساحة التخزين"
-#: src/Module/Admin/Storage.php:143
+#: src/Module/Admin/Storage.php:129
msgid "Save & Use storage backend"
msgstr ""
-#: src/Module/Admin/Storage.php:144
+#: src/Module/Admin/Storage.php:130
msgid "Use storage backend"
msgstr ""
-#: src/Module/Admin/Storage.php:145
+#: src/Module/Admin/Storage.php:131
msgid "Save & Reload"
msgstr "احفظ وأعد التحميل"
-#: src/Module/Admin/Storage.php:146
+#: src/Module/Admin/Storage.php:132
msgid "This backend doesn't have custom settings"
msgstr ""
-#: src/Module/Admin/Storage.php:148
+#: src/Module/Admin/Storage.php:134
msgid ""
"Changing the current backend is prohibited because it is set by an "
"environment variable"
msgstr ""
-#: src/Module/Admin/Storage.php:150
+#: src/Module/Admin/Storage.php:136
msgid "Database (legacy)"
msgstr ""
-#: src/Module/Admin/Summary.php:55
+#: src/Module/Admin/Summary.php:41
#, php-format
msgid "Template engine (%s) error: %s"
msgstr ""
-#: src/Module/Admin/Summary.php:59
+#: src/Module/Admin/Summary.php:45
#, php-format
msgid ""
"Your DB still runs with MyISAM tables. You should change the engine type to "
@@ -5831,7 +5830,7 @@ msgid ""
" an automatic conversion.The server domain pattern syntax is case-insensitive shell wildcard, comprising the following special characters:
\n" "تنسيق صيّغ النطاق غير حساس لحالة الأحرف ويستخدم محارف بَدلِ الصدفة، بما في ذلك المحارف التالية:
\n*
: أي عدد من المحارف?
: محرف واحدThis file can be downloaded from the /friendica
path of any "
"Friendica server.
debug.store_source
config key is set in "
"config/local.config.php
for future items to have sources."
msgstr ""
-#: src/Module/Moderation/Item/Source.php:98
+#: src/Module/Moderation/Item/Source.php:84
msgid "Item Guid"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:95
+#: src/Module/Moderation/Report/Create.php:81
msgid "Contact not found or their server is already blocked on this node."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:136
+#: src/Module/Moderation/Report/Create.php:122
msgid "Please login to access this page."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:165
-#: src/Module/Moderation/Report/Create.php:180
-#: src/Module/Moderation/Report/Create.php:208
-#: src/Module/Moderation/Report/Create.php:260
-#: src/Module/Moderation/Report/Create.php:279
+#: src/Module/Moderation/Report/Create.php:151
+#: src/Module/Moderation/Report/Create.php:166
+#: src/Module/Moderation/Report/Create.php:194
+#: src/Module/Moderation/Report/Create.php:246
+#: src/Module/Moderation/Report/Create.php:265
msgid "Create Moderation Report"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:166
+#: src/Module/Moderation/Report/Create.php:152
msgid "Pick Contact"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:167
+#: src/Module/Moderation/Report/Create.php:153
msgid ""
"Please enter below the contact address or profile URL you would like to "
"create a moderation report about."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:171
+#: src/Module/Moderation/Report/Create.php:157
msgid "Contact address/URL"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:181
+#: src/Module/Moderation/Report/Create.php:167
msgid "Pick Category"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:182
+#: src/Module/Moderation/Report/Create.php:168
msgid "Please pick below the category of your report."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:186
-#: src/Module/Moderation/Report/Create.php:311
+#: src/Module/Moderation/Report/Create.php:172
+#: src/Module/Moderation/Report/Create.php:297
msgid "Spam"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:186
+#: src/Module/Moderation/Report/Create.php:172
msgid ""
"This contact is publishing many repeated/overly long posts/replies or "
"advertising their product/websites in otherwise irrelevant conversations."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:187
-#: src/Module/Moderation/Report/Create.php:312
+#: src/Module/Moderation/Report/Create.php:173
+#: src/Module/Moderation/Report/Create.php:298
msgid "Illegal Content"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:187
+#: src/Module/Moderation/Report/Create.php:173
msgid ""
"This contact is publishing content that is considered illegal in this node's"
" hosting juridiction."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:188
-#: src/Module/Moderation/Report/Create.php:313
+#: src/Module/Moderation/Report/Create.php:174
+#: src/Module/Moderation/Report/Create.php:299
msgid "Community Safety"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:188
+#: src/Module/Moderation/Report/Create.php:174
msgid ""
"This contact aggravated you or other people, by being provocative or "
"insensitive, intentionally or not. This includes disclosing people's private"
@@ -8667,12 +8662,12 @@ msgid ""
"replies."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:189
-#: src/Module/Moderation/Report/Create.php:314
+#: src/Module/Moderation/Report/Create.php:175
+#: src/Module/Moderation/Report/Create.php:300
msgid "Unwanted Content/Behavior"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:189
+#: src/Module/Moderation/Report/Create.php:175
msgid ""
"This contact has repeatedly published content irrelevant to the node's theme"
" or is openly criticizing the node's administration/moderation without "
@@ -8680,89 +8675,89 @@ msgid ""
"nitpicking on a sensitive topic."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:190
-#: src/Module/Moderation/Report/Create.php:315
+#: src/Module/Moderation/Report/Create.php:176
+#: src/Module/Moderation/Report/Create.php:301
msgid "Rules Violation"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:190
+#: src/Module/Moderation/Report/Create.php:176
msgid ""
"This contact violated one or more rules of this node. You will be able to "
"pick which one(s) in the next step."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:191
+#: src/Module/Moderation/Report/Create.php:177
msgid ""
"Please elaborate below why you submitted this report. The more details you "
"provide, the better your report can be handled."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:193
+#: src/Module/Moderation/Report/Create.php:179
msgid "Additional Information"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:193
+#: src/Module/Moderation/Report/Create.php:179
msgid ""
"Please provide any additional information relevant to this particular "
"report. You will be able to attach posts by this contact in the next step, "
"but any context is welcome."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:209
+#: src/Module/Moderation/Report/Create.php:195
msgid "Pick Rules"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:210
+#: src/Module/Moderation/Report/Create.php:196
msgid "Please pick below the node rules you believe this contact violated."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:261
+#: src/Module/Moderation/Report/Create.php:247
msgid "Pick Posts"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:262
+#: src/Module/Moderation/Report/Create.php:248
msgid "Please optionally pick posts to attach to your report."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:281
+#: src/Module/Moderation/Report/Create.php:267
msgid "Submit Report"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:282
+#: src/Module/Moderation/Report/Create.php:268
msgid "Further Action"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:283
+#: src/Module/Moderation/Report/Create.php:269
msgid ""
"You can also perform one of the following action on the contact you "
"reported:"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:291
+#: src/Module/Moderation/Report/Create.php:277
msgid "Nothing"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:292
+#: src/Module/Moderation/Report/Create.php:278
msgid "Collapse contact"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:292
+#: src/Module/Moderation/Report/Create.php:278
msgid ""
"Their posts and replies will keep appearing in your Network page but their "
"content will be collapsed by default."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:293
+#: src/Module/Moderation/Report/Create.php:279
msgid ""
"Their posts won't appear in your Network page anymore, but their replies can"
" appear in forum threads. They still can follow you."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:294
+#: src/Module/Moderation/Report/Create.php:280
msgid "Block contact"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:294
+#: src/Module/Moderation/Report/Create.php:280
msgid ""
"Their posts won't appear in your Network page anymore, but their replies can"
" appear in forum threads, with their content collapsed by default. They "
@@ -8770,51 +8765,51 @@ msgid ""
"means."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:297
+#: src/Module/Moderation/Report/Create.php:283
msgid "Forward report"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:297
+#: src/Module/Moderation/Report/Create.php:283
msgid "Would you ike to forward this report to the remote server?"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:330
+#: src/Module/Moderation/Report/Create.php:316
msgid "1. Pick a contact"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:331
+#: src/Module/Moderation/Report/Create.php:317
msgid "2. Pick a category"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:332
+#: src/Module/Moderation/Report/Create.php:318
msgid "2a. Pick rules"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:333
+#: src/Module/Moderation/Report/Create.php:319
msgid "2b. Add comment"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:334
+#: src/Module/Moderation/Report/Create.php:320
msgid "3. Pick posts"
msgstr ""
-#: src/Module/Moderation/Reports.php:111
+#: src/Module/Moderation/Reports.php:97
msgid "List of reports"
msgstr ""
-#: src/Module/Moderation/Reports.php:112
+#: src/Module/Moderation/Reports.php:98
msgid "This page display reports created by our or remote users."
msgstr ""
-#: src/Module/Moderation/Reports.php:113
+#: src/Module/Moderation/Reports.php:99
msgid "No report exists at this node."
msgstr ""
-#: src/Module/Moderation/Reports.php:116
+#: src/Module/Moderation/Reports.php:102
msgid "Category"
msgstr ""
-#: src/Module/Moderation/Reports.php:120
+#: src/Module/Moderation/Reports.php:106
#, php-format
msgid "%s total report"
msgid_plural "%s total reports"
@@ -8825,24 +8820,24 @@ msgstr[3] ""
msgstr[4] ""
msgstr[5] ""
-#: src/Module/Moderation/Reports.php:123
+#: src/Module/Moderation/Reports.php:109
msgid "URL of the reported contact."
msgstr ""
-#: src/Module/Moderation/Summary.php:57 src/Module/Settings/Account.php:436
+#: src/Module/Moderation/Summary.php:43 src/Module/Settings/Account.php:422
msgid "Channel Relay"
msgstr ""
-#: src/Module/Moderation/Summary.php:77
+#: src/Module/Moderation/Summary.php:63
msgid "Registered users"
msgstr "الأعضاء المسجلون"
-#: src/Module/Moderation/Summary.php:79
+#: src/Module/Moderation/Summary.php:65
msgid "Pending registrations"
msgstr "التسجيلات المعلقة"
-#: src/Module/Moderation/Users/Active.php:43
-#: src/Module/Moderation/Users/Index.php:43
+#: src/Module/Moderation/Users/Active.php:29
+#: src/Module/Moderation/Users/Index.php:29
#, php-format
msgid "%s user blocked"
msgid_plural "%s users blocked"
@@ -8853,18 +8848,18 @@ msgstr[3] "حُجب %s مستخدمين"
msgstr[4] "حُجب %s مستخدما"
msgstr[5] "حُجب %s مستخدم"
-#: src/Module/Moderation/Users/Active.php:51
-#: src/Module/Moderation/Users/Active.php:85
-#: src/Module/Moderation/Users/Blocked.php:51
-#: src/Module/Moderation/Users/Blocked.php:85
-#: src/Module/Moderation/Users/Index.php:58
-#: src/Module/Moderation/Users/Index.php:92
+#: src/Module/Moderation/Users/Active.php:37
+#: src/Module/Moderation/Users/Active.php:71
+#: src/Module/Moderation/Users/Blocked.php:37
+#: src/Module/Moderation/Users/Blocked.php:71
+#: src/Module/Moderation/Users/Index.php:44
+#: src/Module/Moderation/Users/Index.php:78
msgid "You can't remove yourself"
msgstr "لا يمكنك إزالة نفسك"
-#: src/Module/Moderation/Users/Active.php:55
-#: src/Module/Moderation/Users/Blocked.php:55
-#: src/Module/Moderation/Users/Index.php:62
+#: src/Module/Moderation/Users/Active.php:41
+#: src/Module/Moderation/Users/Blocked.php:41
+#: src/Module/Moderation/Users/Index.php:48
#, php-format
msgid "%s user deleted"
msgid_plural "%s users deleted"
@@ -8875,88 +8870,88 @@ msgstr[3] "%s مستخدمين محذوفين"
msgstr[4] "%s مستخدمًا محذوفًا"
msgstr[5] "%s مستخدم محذوف"
-#: src/Module/Moderation/Users/Active.php:83
-#: src/Module/Moderation/Users/Blocked.php:83
-#: src/Module/Moderation/Users/Index.php:90
+#: src/Module/Moderation/Users/Active.php:69
+#: src/Module/Moderation/Users/Blocked.php:69
+#: src/Module/Moderation/Users/Index.php:76
#, php-format
msgid "User \"%s\" deleted"
msgstr "حذف المستخدم \"%s\""
-#: src/Module/Moderation/Users/Active.php:93
-#: src/Module/Moderation/Users/Index.php:100
+#: src/Module/Moderation/Users/Active.php:79
+#: src/Module/Moderation/Users/Index.php:86
#, php-format
msgid "User \"%s\" blocked"
msgstr "حُجب المستخدم \"%s\""
-#: src/Module/Moderation/Users/Active.php:126
-#: src/Module/Moderation/Users/Blocked.php:126
-#: src/Module/Moderation/Users/Deleted.php:83
-#: src/Module/Moderation/Users/Index.php:140
-#: src/Module/Moderation/Users/Index.php:160
+#: src/Module/Moderation/Users/Active.php:112
+#: src/Module/Moderation/Users/Blocked.php:112
+#: src/Module/Moderation/Users/Deleted.php:69
+#: src/Module/Moderation/Users/Index.php:126
+#: src/Module/Moderation/Users/Index.php:146
msgid "Register date"
msgstr "تاريخ التسجيل"
-#: src/Module/Moderation/Users/Active.php:126
-#: src/Module/Moderation/Users/Blocked.php:126
-#: src/Module/Moderation/Users/Deleted.php:83
-#: src/Module/Moderation/Users/Index.php:140
-#: src/Module/Moderation/Users/Index.php:160
+#: src/Module/Moderation/Users/Active.php:112
+#: src/Module/Moderation/Users/Blocked.php:112
+#: src/Module/Moderation/Users/Deleted.php:69
+#: src/Module/Moderation/Users/Index.php:126
+#: src/Module/Moderation/Users/Index.php:146
msgid "Last login"
msgstr "آخر ولوج"
-#: src/Module/Moderation/Users/Active.php:126
-#: src/Module/Moderation/Users/Blocked.php:126
-#: src/Module/Moderation/Users/Deleted.php:83
-#: src/Module/Moderation/Users/Index.php:140
-#: src/Module/Moderation/Users/Index.php:160
+#: src/Module/Moderation/Users/Active.php:112
+#: src/Module/Moderation/Users/Blocked.php:112
+#: src/Module/Moderation/Users/Deleted.php:69
+#: src/Module/Moderation/Users/Index.php:126
+#: src/Module/Moderation/Users/Index.php:146
msgid "Last public item"
msgstr "آخر عنصر منشور"
-#: src/Module/Moderation/Users/Active.php:134
+#: src/Module/Moderation/Users/Active.php:120
msgid "Active Accounts"
msgstr "الحسابات النشطة"
-#: src/Module/Moderation/Users/Active.php:138
-#: src/Module/Moderation/Users/Blocked.php:137
-#: src/Module/Moderation/Users/Index.php:153
+#: src/Module/Moderation/Users/Active.php:124
+#: src/Module/Moderation/Users/Blocked.php:123
+#: src/Module/Moderation/Users/Index.php:139
msgid "User blocked"
msgstr "المستخدم محجوب"
-#: src/Module/Moderation/Users/Active.php:139
-#: src/Module/Moderation/Users/Blocked.php:139
-#: src/Module/Moderation/Users/Index.php:155
+#: src/Module/Moderation/Users/Active.php:125
+#: src/Module/Moderation/Users/Blocked.php:125
+#: src/Module/Moderation/Users/Index.php:141
msgid "Site admin"
msgstr "مدير الموقع"
-#: src/Module/Moderation/Users/Active.php:140
-#: src/Module/Moderation/Users/Blocked.php:140
-#: src/Module/Moderation/Users/Index.php:156
+#: src/Module/Moderation/Users/Active.php:126
+#: src/Module/Moderation/Users/Blocked.php:126
+#: src/Module/Moderation/Users/Index.php:142
msgid "Account expired"
msgstr "انتهت صلاحية الحساب"
-#: src/Module/Moderation/Users/Active.php:141
-#: src/Module/Moderation/Users/Index.php:159
+#: src/Module/Moderation/Users/Active.php:127
+#: src/Module/Moderation/Users/Index.php:145
msgid "Create a new user"
msgstr "أنشئ مستخدمًا جديدًا"
-#: src/Module/Moderation/Users/Active.php:147
-#: src/Module/Moderation/Users/Blocked.php:146
-#: src/Module/Moderation/Users/Index.php:165
+#: src/Module/Moderation/Users/Active.php:133
+#: src/Module/Moderation/Users/Blocked.php:132
+#: src/Module/Moderation/Users/Index.php:151
msgid ""
"Selected users will be deleted!\\n\\nEverything these users had posted on "
"this site will be permanently deleted!\\n\\nAre you sure?"
msgstr "سيُحذف المستخدمون المحددون!\\n\\nكل ما نشره هؤلاء على هذا الموقع سيُحذف نهائيًا!\\n\\nهل أنت متأكد؟"
-#: src/Module/Moderation/Users/Active.php:148
-#: src/Module/Moderation/Users/Blocked.php:147
-#: src/Module/Moderation/Users/Index.php:166
+#: src/Module/Moderation/Users/Active.php:134
+#: src/Module/Moderation/Users/Blocked.php:133
+#: src/Module/Moderation/Users/Index.php:152
msgid ""
"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
"site will be permanently deleted!\\n\\nAre you sure?"
msgstr "سيُحذف المستخدم {0}!\\n\\nكل ما نشره على هذا الموقع سيُحذف نهائيًا!\\n\\nهل أنت متأكد؟"
-#: src/Module/Moderation/Users/Blocked.php:43
-#: src/Module/Moderation/Users/Index.php:50
+#: src/Module/Moderation/Users/Blocked.php:29
+#: src/Module/Moderation/Users/Index.php:36
#, php-format
msgid "%s user unblocked"
msgid_plural "%s users unblocked"
@@ -8967,54 +8962,54 @@ msgstr[3] "رُفع الحجب عن %s مستخدمين"
msgstr[4] "رُفع الحجب عن %s مستخدما"
msgstr[5] "رُفع الحجب عن %s مستخدم"
-#: src/Module/Moderation/Users/Blocked.php:92
-#: src/Module/Moderation/Users/Index.php:106
+#: src/Module/Moderation/Users/Blocked.php:78
+#: src/Module/Moderation/Users/Index.php:92
#, php-format
msgid "User \"%s\" unblocked"
msgstr "رُفع الحجب عن المستخدم \"%s\""
-#: src/Module/Moderation/Users/Blocked.php:134
+#: src/Module/Moderation/Users/Blocked.php:120
msgid "Blocked Users"
msgstr "المستخدمون المحجوبون"
-#: src/Module/Moderation/Users/Create.php:62
+#: src/Module/Moderation/Users/Create.php:48
msgid "New User"
msgstr "مستخدم جديد"
-#: src/Module/Moderation/Users/Create.php:63
+#: src/Module/Moderation/Users/Create.php:49
msgid "Add User"
msgstr "أضف مستخدم"
-#: src/Module/Moderation/Users/Create.php:70
+#: src/Module/Moderation/Users/Create.php:56
msgid "Name of the new user."
msgstr "اسم المستخدم الجديد."
-#: src/Module/Moderation/Users/Create.php:71
+#: src/Module/Moderation/Users/Create.php:57
msgid "Nickname"
msgstr "اللقب"
-#: src/Module/Moderation/Users/Create.php:71
+#: src/Module/Moderation/Users/Create.php:57
msgid "Nickname of the new user."
msgstr "لقب المستخدم الجديد."
-#: src/Module/Moderation/Users/Create.php:72
+#: src/Module/Moderation/Users/Create.php:58
msgid "Email address of the new user."
msgstr "عنوان البريد الإلكتروني للمستخدم للجديد."
-#: src/Module/Moderation/Users/Deleted.php:81
+#: src/Module/Moderation/Users/Deleted.php:67
msgid "Users awaiting permanent deletion"
msgstr "مستخدمون في انتظار الحذف الدائم"
-#: src/Module/Moderation/Users/Deleted.php:83
-#: src/Module/Moderation/Users/Index.php:160
+#: src/Module/Moderation/Users/Deleted.php:69
+#: src/Module/Moderation/Users/Index.php:146
msgid "Permanent deletion"
msgstr "حذف نهائي"
-#: src/Module/Moderation/Users/Index.php:150
+#: src/Module/Moderation/Users/Index.php:136
msgid "User waiting for permanent deletion"
msgstr "مستخدم ينتظر الحذف الكلي لحسابه"
-#: src/Module/Moderation/Users/Pending.php:44
+#: src/Module/Moderation/Users/Pending.php:30
#, php-format
msgid "%s user approved"
msgid_plural "%s users approved"
@@ -9025,7 +9020,7 @@ msgstr[3] ""
msgstr[4] ""
msgstr[5] ""
-#: src/Module/Moderation/Users/Pending.php:51
+#: src/Module/Moderation/Users/Pending.php:37
#, php-format
msgid "%s registration revoked"
msgid_plural "%s registrations revoked"
@@ -9036,420 +9031,406 @@ msgstr[3] "أجهظت %s تسجيلات"
msgstr[4] "أجهض %s تسجيلًا"
msgstr[5] "أجهض %s تسجيل"
-#: src/Module/Moderation/Users/Pending.php:76
+#: src/Module/Moderation/Users/Pending.php:62
msgid "Account approved."
msgstr "قُبل الحساب."
-#: src/Module/Moderation/Users/Pending.php:82
+#: src/Module/Moderation/Users/Pending.php:68
msgid "Registration revoked"
msgstr "أجهض التسجيل"
-#: src/Module/Moderation/Users/Pending.php:97
+#: src/Module/Moderation/Users/Pending.php:83
msgid "User registrations awaiting review"
msgstr "تسجيلات تنتظر المعاينة"
-#: src/Module/Moderation/Users/Pending.php:99
+#: src/Module/Moderation/Users/Pending.php:85
msgid "Request date"
msgstr "تاريخ الطلب"
-#: src/Module/Moderation/Users/Pending.php:100
+#: src/Module/Moderation/Users/Pending.php:86
msgid "No registrations."
msgstr "لا توجد تسجيلات."
-#: src/Module/Moderation/Users/Pending.php:101
+#: src/Module/Moderation/Users/Pending.php:87
msgid "Note from the user"
msgstr "ملاحظة من المستخدم"
-#: src/Module/Moderation/Users/Pending.php:103
+#: src/Module/Moderation/Users/Pending.php:89
msgid "Deny"
msgstr "رفض"
-#: src/Module/Notifications/Introductions.php:105
+#: src/Module/Notifications/Introductions.php:91
msgid "Show Ignored Requests"
msgstr "اظهر الطلبات المتجاهلة"
-#: src/Module/Notifications/Introductions.php:105
+#: src/Module/Notifications/Introductions.php:91
msgid "Hide Ignored Requests"
msgstr "اخف الطلبات المتجاهلة"
-#: src/Module/Notifications/Introductions.php:121
-#: src/Module/Notifications/Introductions.php:184
+#: src/Module/Notifications/Introductions.php:107
+#: src/Module/Notifications/Introductions.php:170
msgid "Notification type:"
msgstr "نوع التنبيه:"
-#: src/Module/Notifications/Introductions.php:124
+#: src/Module/Notifications/Introductions.php:110
msgid "Suggested by:"
msgstr "اقترحه:"
-#: src/Module/Notifications/Introductions.php:149
+#: src/Module/Notifications/Introductions.php:135
msgid "Claims to be known to you: "
msgstr "يدعي أنّه يعرفك: "
-#: src/Module/Notifications/Introductions.php:158
+#: src/Module/Notifications/Introductions.php:144
msgid "Shall your connection be bidirectional or not?"
msgstr ""
-#: src/Module/Notifications/Introductions.php:159
+#: src/Module/Notifications/Introductions.php:145
#, php-format
msgid ""
"Accepting %s as a friend allows %s to subscribe to your posts, and you will "
"also receive updates from them in your news feed."
msgstr "يسمح قَبُول %s كصديق لـ%s بالاشتراك في منشوراتك ، وستتلقى تحديثاتهم في تلقيمات الأخبار."
-#: src/Module/Notifications/Introductions.php:160
+#: src/Module/Notifications/Introductions.php:146
#, php-format
msgid ""
"Accepting %s as a subscriber allows them to subscribe to your posts, but you"
" will not receive updates from them in your news feed."
msgstr "يسمح قَبُول %s كمشترك له بالاشتراك في منشوراتك، لكن لن تتلقى تحديثاتهم في تلقيمات الأخبار."
-#: src/Module/Notifications/Introductions.php:162
+#: src/Module/Notifications/Introductions.php:148
msgid "Friend"
msgstr "صديق"
-#: src/Module/Notifications/Introductions.php:163
+#: src/Module/Notifications/Introductions.php:149
msgid "Subscriber"
msgstr "مشترك"
-#: src/Module/Notifications/Introductions.php:222
+#: src/Module/Notifications/Introductions.php:208
msgid "No introductions."
msgstr "لا توجد تقديمات."
-#: src/Module/Notifications/Introductions.php:223
-#: src/Module/Notifications/Notifications.php:141
+#: src/Module/Notifications/Introductions.php:209
+#: src/Module/Notifications/Notifications.php:127
#, php-format
msgid "No more %s notifications."
msgstr "لا مزيد من تنبيهات %s."
-#: src/Module/Notifications/Notification.php:135
+#: src/Module/Notifications/Notification.php:121
msgid "You must be logged in to show this page."
msgstr "يجب أن تلج لتصل لهذه الصفحة."
-#: src/Module/Notifications/Notifications.php:66
+#: src/Module/Notifications/Notifications.php:52
msgid "Network Notifications"
msgstr "تنبيهات الشبكة"
-#: src/Module/Notifications/Notifications.php:72
+#: src/Module/Notifications/Notifications.php:58
msgid "System Notifications"
msgstr "تنبيهات النظام"
-#: src/Module/Notifications/Notifications.php:78
+#: src/Module/Notifications/Notifications.php:64
msgid "Personal Notifications"
msgstr "تنبيهات شخصية"
-#: src/Module/Notifications/Notifications.php:84
+#: src/Module/Notifications/Notifications.php:70
msgid "Home Notifications"
msgstr "تنبيهات الصفحة الرئيسية"
-#: src/Module/Notifications/Notifications.php:146
+#: src/Module/Notifications/Notifications.php:132
msgid "Show unread"
msgstr "اعرض غير المقروءة"
-#: src/Module/Notifications/Ping.php:220
+#: src/Module/Notifications/Ping.php:206
msgid "{0} requested registration"
msgstr "{0} طلبَ التسجيل"
-#: src/Module/Notifications/Ping.php:229
+#: src/Module/Notifications/Ping.php:215
#, php-format
msgid "{0} and %d others requested registration"
msgstr "{0} و %d أخرون يطلبون التسجيل"
-#: src/Module/OAuth/Acknowledge.php:51
+#: src/Module/OAuth/Acknowledge.php:37
msgid "Authorize application connection"
msgstr "خول لهذا التطبيق الاتصال"
-#: src/Module/OAuth/Acknowledge.php:53
+#: src/Module/OAuth/Acknowledge.php:39
msgid ""
"Do you want to authorize this application to access your posts and contacts,"
" and/or create new posts for you?"
msgstr "هل تخول لهذا التطبيق الوصول إلى مشاركاتك ومتراسليك، و/أو إنشاء مشاركات جديدة باسمك؟"
-#: src/Module/OAuth/Authorize.php:54
+#: src/Module/OAuth/Authorize.php:40
msgid "Unsupported or missing response type"
msgstr "نوع الاستجابة غير مدعومة أو مفقودة"
-#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:75
+#: src/Module/OAuth/Authorize.php:45 src/Module/OAuth/Token.php:61
msgid "Incomplete request data"
msgstr "بيانات الطلب غير كاملة"
-#: src/Module/OAuth/Authorize.php:106
+#: src/Module/OAuth/Authorize.php:92
#, php-format
msgid ""
"Please copy the following authentication code into your application and "
"close this window: %s"
msgstr "الرجاء نسخ رمز الاستيثاق إلى التطبيق وإغلاق هذه النافذة: %s"
-#: src/Module/OAuth/Token.php:80
+#: src/Module/OAuth/Token.php:66
msgid "Invalid data or unknown client"
msgstr ""
-#: src/Module/OAuth/Token.php:105
+#: src/Module/OAuth/Token.php:91
msgid "Unsupported or missing grant type"
msgstr ""
-#: src/Module/OStatus/Repair.php:83
-msgid "Resubscribing to OStatus contacts"
-msgstr "يعيد الاشتراك في متراسلي OStatus"
-
-#: src/Module/OStatus/Repair.php:84 src/Module/OStatus/Subscribe.php:160
-msgid "Keep this window open until done."
-msgstr "أبق هذه النافذة مفتوحة حتى ينتهي."
-
-#: src/Module/OStatus/Repair.php:85
-msgid "✔ Done"
-msgstr ""
-
-#: src/Module/OStatus/Repair.php:86
-msgid "No OStatus contacts to resubscribe to."
-msgstr ""
-
-#: src/Module/OStatus/Subscribe.php:72
+#: src/Module/OStatus/Subscribe.php:58
msgid "Subscribing to contacts"
msgstr "يشترك في متراسلين"
-#: src/Module/OStatus/Subscribe.php:81
+#: src/Module/OStatus/Subscribe.php:67
msgid "No contact provided."
msgstr "لم يُقدم متراسلين."
-#: src/Module/OStatus/Subscribe.php:87
+#: src/Module/OStatus/Subscribe.php:73
msgid "Couldn't fetch information for contact."
msgstr "تعذر جلب معلومات المتراسل."
-#: src/Module/OStatus/Subscribe.php:98
+#: src/Module/OStatus/Subscribe.php:84
msgid "Couldn't fetch friends for contact."
msgstr "تعذر جلب أصدقاء المتراسل."
-#: src/Module/OStatus/Subscribe.php:104 src/Module/OStatus/Subscribe.php:115
+#: src/Module/OStatus/Subscribe.php:90 src/Module/OStatus/Subscribe.php:101
msgid "Couldn't fetch following contacts."
msgstr "تعذر جلب متابِعي المتراسل."
-#: src/Module/OStatus/Subscribe.php:110
+#: src/Module/OStatus/Subscribe.php:96
msgid "Couldn't fetch remote profile."
msgstr "تعذر جلب الملف الشخصي البعيد."
-#: src/Module/OStatus/Subscribe.php:120
+#: src/Module/OStatus/Subscribe.php:106
msgid "Unsupported network"
msgstr "شبكة غير مدعومة"
-#: src/Module/OStatus/Subscribe.php:136
+#: src/Module/OStatus/Subscribe.php:122
msgid "Done"
msgstr "تم"
-#: src/Module/OStatus/Subscribe.php:150
+#: src/Module/OStatus/Subscribe.php:136
msgid "success"
msgstr "نجح"
-#: src/Module/OStatus/Subscribe.php:152
+#: src/Module/OStatus/Subscribe.php:138
msgid "failed"
msgstr "فشل"
-#: src/Module/OStatus/Subscribe.php:155
+#: src/Module/OStatus/Subscribe.php:141
msgid "ignored"
msgstr "متجاهل"
-#: src/Module/Photo.php:122
+#: src/Module/OStatus/Subscribe.php:146
+msgid "Keep this window open until done."
+msgstr "أبق هذه النافذة مفتوحة حتى ينتهي."
+
+#: src/Module/Photo.php:108
msgid "The Photo is not available."
msgstr "الصورة غير متوفرة."
-#: src/Module/Photo.php:147
+#: src/Module/Photo.php:133
#, php-format
msgid "The Photo with id %s is not available."
msgstr "الصورة ذات المعرف %s غير متوفّرة."
-#: src/Module/Photo.php:188
+#: src/Module/Photo.php:174
#, php-format
msgid "Invalid external resource with url %s."
msgstr ""
-#: src/Module/Photo.php:190
+#: src/Module/Photo.php:176
#, php-format
msgid "Invalid photo with id %s."
msgstr "الصورة ذات المعرف %s غير صالحة."
-#: src/Module/Post/Edit.php:82 src/Module/Post/Edit.php:96
+#: src/Module/Post/Edit.php:68 src/Module/Post/Edit.php:82
msgid "Post not found."
msgstr ""
-#: src/Module/Post/Edit.php:102
+#: src/Module/Post/Edit.php:88
msgid "Edit post"
msgstr "عدّل المشاركة"
-#: src/Module/Post/Edit.php:136
+#: src/Module/Post/Edit.php:122
msgid "web link"
msgstr "رابط ويب"
-#: src/Module/Post/Edit.php:137
+#: src/Module/Post/Edit.php:123
msgid "Insert video link"
msgstr "أدرج رابط فيديو"
-#: src/Module/Post/Edit.php:138
+#: src/Module/Post/Edit.php:124
msgid "video link"
msgstr "رابط فيديو"
-#: src/Module/Post/Edit.php:139
+#: src/Module/Post/Edit.php:125
msgid "Insert audio link"
msgstr "إدراج رابط ملف صوتي"
-#: src/Module/Post/Edit.php:140
+#: src/Module/Post/Edit.php:126
msgid "audio link"
msgstr "رابط ملف صوتي"
-#: src/Module/Post/Tag/Remove.php:106
+#: src/Module/Post/Tag/Remove.php:92
msgid "Remove Item Tag"
msgstr "أزل وسم العنصر"
-#: src/Module/Post/Tag/Remove.php:107
+#: src/Module/Post/Tag/Remove.php:93
msgid "Select a tag to remove: "
msgstr "اختر الوسم لإزالته: "
-#: src/Module/Post/Tag/Remove.php:108
-#: src/Module/Settings/TwoFactor/Trusted.php:147
+#: src/Module/Post/Tag/Remove.php:94
+#: src/Module/Settings/TwoFactor/Trusted.php:133
msgid "Remove"
msgstr "أزل"
-#: src/Module/Privacy/PermissionTooltip.php:71
+#: src/Module/Privacy/PermissionTooltip.php:57
#, php-format
msgid "Wrong type \"%s\", expected one of: %s"
msgstr "نوع خاطئ \"%s\" ، يُتوقع أن يكون: %s"
-#: src/Module/Privacy/PermissionTooltip.php:101
+#: src/Module/Privacy/PermissionTooltip.php:87
msgid "Model not found"
msgstr ""
-#: src/Module/Privacy/PermissionTooltip.php:118
+#: src/Module/Privacy/PermissionTooltip.php:104
msgid "Unlisted"
msgstr ""
-#: src/Module/Privacy/PermissionTooltip.php:124
+#: src/Module/Privacy/PermissionTooltip.php:110
msgid "Remote privacy information not available."
msgstr "معلومات الخصوصية غير متوفرة."
-#: src/Module/Privacy/PermissionTooltip.php:131
+#: src/Module/Privacy/PermissionTooltip.php:117
msgid "Visible to:"
msgstr "مرئي لـ:"
-#: src/Module/Privacy/PermissionTooltip.php:133
+#: src/Module/Privacy/PermissionTooltip.php:119
msgid "CC:"
msgstr ""
-#: src/Module/Privacy/PermissionTooltip.php:134
+#: src/Module/Privacy/PermissionTooltip.php:120
msgid "BCC:"
msgstr ""
-#: src/Module/Privacy/PermissionTooltip.php:135
+#: src/Module/Privacy/PermissionTooltip.php:121
msgid "Audience:"
msgstr ""
-#: src/Module/Privacy/PermissionTooltip.php:136
+#: src/Module/Privacy/PermissionTooltip.php:122
msgid "Attributed To:"
msgstr ""
-#: src/Module/Privacy/PermissionTooltip.php:234
+#: src/Module/Privacy/PermissionTooltip.php:220
#, php-format
msgid "Collection (%s)"
msgstr ""
-#: src/Module/Privacy/PermissionTooltip.php:238
+#: src/Module/Privacy/PermissionTooltip.php:224
#, php-format
msgid "Followers (%s)"
msgstr "متابِعون (%s)"
-#: src/Module/Privacy/PermissionTooltip.php:255
+#: src/Module/Privacy/PermissionTooltip.php:241
#, php-format
msgid "%d more"
msgstr ""
-#: src/Module/Profile/Contacts.php:159
+#: src/Module/Profile/Contacts.php:145
msgid "No contacts."
msgstr "لا متراسلين."
-#: src/Module/Profile/Conversations.php:106
-#: src/Module/Profile/Conversations.php:109 src/Module/Profile/Profile.php:353
-#: src/Module/Profile/Profile.php:356 src/Protocol/Feed.php:1114
-#: src/Protocol/OStatus.php:1011
-#, php-format
-msgid "%s's timeline"
-msgstr "الخط الزمني لـ %s"
-
-#: src/Module/Profile/Conversations.php:107 src/Module/Profile/Profile.php:354
-#: src/Protocol/Feed.php:1118 src/Protocol/OStatus.php:1016
+#: src/Module/Profile/Conversations.php:92 src/Module/Profile/Profile.php:339
+#: src/Protocol/Feed.php:1097
#, php-format
msgid "%s's posts"
msgstr "مشاركات %s"
-#: src/Module/Profile/Conversations.php:108 src/Module/Profile/Profile.php:355
-#: src/Protocol/Feed.php:1121 src/Protocol/OStatus.php:1020
+#: src/Module/Profile/Conversations.php:93 src/Module/Profile/Profile.php:340
+#: src/Protocol/Feed.php:1100
#, php-format
msgid "%s's comments"
msgstr "تعليقات %s"
-#: src/Module/Profile/Photos.php:164 src/Module/Profile/Photos.php:167
-#: src/Module/Profile/Photos.php:192
-#: src/Module/Settings/Profile/Photo/Index.php:58
+#: src/Module/Profile/Conversations.php:94 src/Module/Profile/Profile.php:341
+#: src/Protocol/Feed.php:1093
+#, php-format
+msgid "%s's timeline"
+msgstr "الخط الزمني لـ %s"
+
+#: src/Module/Profile/Photos.php:150 src/Module/Profile/Photos.php:153
+#: src/Module/Profile/Photos.php:178
+#: src/Module/Settings/Profile/Photo/Index.php:44
#, php-format
msgid "Image exceeds size limit of %s"
msgstr "تجاوزت الصورة الحد الأقصى للحجم وهو %s"
-#: src/Module/Profile/Photos.php:170
+#: src/Module/Profile/Photos.php:156
msgid "Image upload didn't complete, please try again"
msgstr "لم يكتمل رفع الصورة، من فضلك أعد المحاولة"
-#: src/Module/Profile/Photos.php:173
+#: src/Module/Profile/Photos.php:159
msgid "Image file is missing"
msgstr "ملف الصورة مفقود"
-#: src/Module/Profile/Photos.php:178
+#: src/Module/Profile/Photos.php:164
msgid ""
"Server can't accept new file upload at this time, please contact your "
"administrator"
msgstr "الخادم لا يقبل رفع ملفات جديدة، يرجى التواصل مع مدير الموقع"
-#: src/Module/Profile/Photos.php:200
+#: src/Module/Profile/Photos.php:186
msgid "Image file is empty."
msgstr "ملف الصورة فارغ."
-#: src/Module/Profile/Photos.php:352
+#: src/Module/Profile/Photos.php:338
msgid "View Album"
msgstr "اعرض الألبوم"
-#: src/Module/Profile/Profile.php:114 src/Module/Profile/Restricted.php:50
+#: src/Module/Profile/Profile.php:100 src/Module/Profile/Restricted.php:36
msgid "Profile not found."
msgstr "لم يُعثر على الملف الشخصي."
-#: src/Module/Profile/Profile.php:160
+#: src/Module/Profile/Profile.php:146
#, php-format
msgid ""
"You're currently viewing your profile as %s Cancel"
msgstr "أنت حاليا تستعرض ملفك الشخصي كـ %s ألغ"
-#: src/Module/Profile/Profile.php:169
+#: src/Module/Profile/Profile.php:155
msgid "Full Name:"
msgstr "الاسم الكامل:"
-#: src/Module/Profile/Profile.php:174
+#: src/Module/Profile/Profile.php:160
msgid "Member since:"
msgstr "عضو منذ:"
-#: src/Module/Profile/Profile.php:180
+#: src/Module/Profile/Profile.php:166
msgid "j F, Y"
msgstr "j F, Y"
-#: src/Module/Profile/Profile.php:181
+#: src/Module/Profile/Profile.php:167
msgid "j F"
msgstr "j F"
-#: src/Module/Profile/Profile.php:189 src/Util/Temporal.php:168
+#: src/Module/Profile/Profile.php:175 src/Util/Temporal.php:154
msgid "Birthday:"
msgstr "تاريخ الميلاد:"
-#: src/Module/Profile/Profile.php:192
-#: src/Module/Settings/Profile/Index.php:296 src/Util/Temporal.php:170
+#: src/Module/Profile/Profile.php:178
+#: src/Module/Settings/Profile/Index.php:282 src/Util/Temporal.php:156
msgid "Age: "
msgstr "العمر: "
-#: src/Module/Profile/Profile.php:192
-#: src/Module/Settings/Profile/Index.php:296 src/Util/Temporal.php:170
+#: src/Module/Profile/Profile.php:178
+#: src/Module/Settings/Profile/Index.php:282 src/Util/Temporal.php:156
#, php-format
msgid "%d year old"
msgid_plural "%d years old"
@@ -9460,46 +9441,46 @@ msgstr[3] "%d سنوات"
msgstr[4] "%d سنة"
msgstr[5] "%d سنة"
-#: src/Module/Profile/Profile.php:197
-#: src/Module/Settings/Profile/Index.php:289
+#: src/Module/Profile/Profile.php:183
+#: src/Module/Settings/Profile/Index.php:275
msgid "Description:"
msgstr "الوصف:"
-#: src/Module/Profile/Profile.php:263
+#: src/Module/Profile/Profile.php:249
msgid "Groups:"
msgstr ""
-#: src/Module/Profile/Profile.php:275
+#: src/Module/Profile/Profile.php:261
msgid "View profile as:"
msgstr "اعرض الملف الشخصي ك:"
-#: src/Module/Profile/Profile.php:292
+#: src/Module/Profile/Profile.php:278
msgid "View as"
msgstr "اعرض ك"
-#: src/Module/Profile/RemoteFollow.php:82
+#: src/Module/Profile/RemoteFollow.php:68
msgid "Profile unavailable."
msgstr "الملف الشخصي غير متوفر."
-#: src/Module/Profile/RemoteFollow.php:88
+#: src/Module/Profile/RemoteFollow.php:74
msgid "Invalid locator"
msgstr ""
-#: src/Module/Profile/RemoteFollow.php:95
+#: src/Module/Profile/RemoteFollow.php:81
msgid "The provided profile link doesn't seem to be valid"
msgstr "يبدو أنّ رابط الملف الشخصي غير صالح"
-#: src/Module/Profile/RemoteFollow.php:100
+#: src/Module/Profile/RemoteFollow.php:86
msgid ""
"Remote subscription can't be done for your network. Please subscribe "
"directly on your system."
msgstr ""
-#: src/Module/Profile/RemoteFollow.php:128
+#: src/Module/Profile/RemoteFollow.php:114
msgid "Friend/Connection Request"
msgstr "طلب صداقة/اقتران"
-#: src/Module/Profile/RemoteFollow.php:129
+#: src/Module/Profile/RemoteFollow.php:115
#, php-format
msgid ""
"Enter your Webfinger address (user@domain.tld) or profile URL here. If this "
@@ -9507,579 +9488,579 @@ msgid ""
" or %s directly on your system."
msgstr ""
-#: src/Module/Profile/RemoteFollow.php:130
+#: src/Module/Profile/RemoteFollow.php:116
#, php-format
msgid ""
"If you are not yet a member of the free social web, follow "
"this link to find a public Friendica node and join us today."
msgstr "إن لم تكن عضواً في شبكة اجتماعية حرة، اتبع هذا الرابط للعثور على عقدة عمومية لفرَندِكا وانضم إلينا اليوم."
-#: src/Module/Profile/RemoteFollow.php:131
+#: src/Module/Profile/RemoteFollow.php:117
msgid "Your Webfinger address or profile URL:"
msgstr ""
-#: src/Module/Profile/Restricted.php:59
+#: src/Module/Profile/Restricted.php:45
msgid "Restricted profile"
msgstr ""
-#: src/Module/Profile/Restricted.php:60
+#: src/Module/Profile/Restricted.php:46
msgid ""
"This profile has been restricted which prevents access to their public "
"content from anonymous visitors."
msgstr ""
-#: src/Module/Profile/Schedule.php:83
+#: src/Module/Profile/Schedule.php:69
msgid "Scheduled"
msgstr "مُبرمج"
-#: src/Module/Profile/Schedule.php:84
+#: src/Module/Profile/Schedule.php:70
msgid "Content"
msgstr "المحتوى"
-#: src/Module/Profile/Schedule.php:85
+#: src/Module/Profile/Schedule.php:71
msgid "Remove post"
msgstr "أزل المشاركة"
-#: src/Module/Register.php:91
+#: src/Module/Register.php:77
msgid "Only parent users can create additional accounts."
msgstr "فقط المستخدمون الأولياء من يمكنهم إنشاء حسابات إضافية."
-#: src/Module/Register.php:106 src/Module/User/Import.php:112
+#: src/Module/Register.php:92 src/Module/User/Import.php:98
msgid ""
"This site has exceeded the number of allowed daily account registrations. "
"Please try again tomorrow."
msgstr "تجاوز هذا الموقع عدد التسجيلات اليومية المسموح بها. من فضلك حاول غدا."
-#: src/Module/Register.php:123
+#: src/Module/Register.php:109
msgid ""
"You may (optionally) fill in this form via OpenID by supplying your OpenID "
"and clicking \"Register\"."
msgstr ""
-#: src/Module/Register.php:124
+#: src/Module/Register.php:110
msgid ""
"If you are not familiar with OpenID, please leave that field blank and fill "
"in the rest of the items."
msgstr "إذا كنت لا تعرف أو لا تريد استخدام OpenID، رجاء اترك هذا الحقل فارغاً واملأ بقية العناصر."
-#: src/Module/Register.php:125
+#: src/Module/Register.php:111
msgid "Your OpenID (optional): "
msgstr "معرف OpenID (خياري): "
-#: src/Module/Register.php:134
+#: src/Module/Register.php:120
msgid "Include your profile in member directory?"
msgstr "أتريد نشر ملفك الشخصي في الدليل؟"
-#: src/Module/Register.php:155
+#: src/Module/Register.php:141
msgid "Note for the admin"
msgstr "ملاحظة للمدير"
-#: src/Module/Register.php:155
+#: src/Module/Register.php:141
msgid "Leave a message for the admin, why you want to join this node"
msgstr "اترك رسالة للمدير، تحوي سبب رغبتك الانضمام إلى هذه العقدة"
-#: src/Module/Register.php:156
+#: src/Module/Register.php:142
msgid "Membership on this site is by invitation only."
msgstr "العضوية في هذا الموقع عن طريق دعوة فقط."
-#: src/Module/Register.php:157
+#: src/Module/Register.php:143
msgid "Your invitation code: "
msgstr "رمز الدعوة: "
-#: src/Module/Register.php:165
+#: src/Module/Register.php:151
msgid "Your Display Name (as you would like it to be displayed on this system"
msgstr ""
-#: src/Module/Register.php:166
+#: src/Module/Register.php:152
msgid ""
"Your Email Address: (Initial information will be send there, so this has to "
"be an existing address.)"
msgstr ""
-#: src/Module/Register.php:167
+#: src/Module/Register.php:153
msgid "Please repeat your e-mail address:"
msgstr "رجاء أعد إدخال عنوان بريدك الإلكتروني:"
-#: src/Module/Register.php:169 src/Module/Security/PasswordTooLong.php:100
-#: src/Module/Settings/Account.php:569
+#: src/Module/Register.php:155 src/Module/Security/PasswordTooLong.php:86
+#: src/Module/Settings/Account.php:555
msgid "New Password:"
msgstr "كلمة المرور الجديدة:"
-#: src/Module/Register.php:169
+#: src/Module/Register.php:155
msgid "Leave empty for an auto generated password."
msgstr ""
-#: src/Module/Register.php:170 src/Module/Security/PasswordTooLong.php:101
-#: src/Module/Settings/Account.php:570
+#: src/Module/Register.php:156 src/Module/Security/PasswordTooLong.php:87
+#: src/Module/Settings/Account.php:556
msgid "Confirm:"
msgstr "التأكيد:"
-#: src/Module/Register.php:171
+#: src/Module/Register.php:157
#, php-format
msgid ""
"Choose a profile nickname. This must begin with a text character. Your "
"profile address on this site will then be \"nickname@%s\"."
msgstr ""
-#: src/Module/Register.php:172
+#: src/Module/Register.php:158
msgid "Choose a nickname: "
msgstr "اختر لقبًا: "
-#: src/Module/Register.php:180 src/Module/User/Import.php:118
+#: src/Module/Register.php:166 src/Module/User/Import.php:104
msgid "Import"
msgstr "استورد"
-#: src/Module/Register.php:181
+#: src/Module/Register.php:167
msgid "Import your profile to this friendica instance"
msgstr "استورد ملفك الشخصي لهذا المثيل"
-#: src/Module/Register.php:188
+#: src/Module/Register.php:174
msgid "Note: This node explicitly contains adult content"
msgstr ""
-#: src/Module/Register.php:190 src/Module/Settings/Delegation.php:181
+#: src/Module/Register.php:176 src/Module/Settings/Delegation.php:167
msgid "Parent Password:"
msgstr "كلمة المرور الولي:"
-#: src/Module/Register.php:190 src/Module/Settings/Delegation.php:181
+#: src/Module/Register.php:176 src/Module/Settings/Delegation.php:167
msgid ""
"Please enter the password of the parent account to legitimize your request."
msgstr "يرجى إدخال كلمة مرور الولي للمصادقة على طلبك."
-#: src/Module/Register.php:219
+#: src/Module/Register.php:205
msgid "Password doesn't match."
msgstr "كلمتا المرور غير متطابقتين."
-#: src/Module/Register.php:225
+#: src/Module/Register.php:211
msgid "Please enter your password."
msgstr "رجاء أدخل كلمة المرور."
-#: src/Module/Register.php:267
+#: src/Module/Register.php:253
msgid "You have entered too much information."
msgstr "أدخلت معلومات كثيرة."
-#: src/Module/Register.php:290
+#: src/Module/Register.php:276
msgid "Please enter the identical mail address in the second field."
msgstr ""
-#: src/Module/Register.php:298
+#: src/Module/Register.php:284
msgid "Nickname cannot start with a digit."
msgstr ""
-#: src/Module/Register.php:300
+#: src/Module/Register.php:286
msgid "Nickname can only contain US-ASCII characters."
msgstr ""
-#: src/Module/Register.php:329
+#: src/Module/Register.php:315
msgid "The additional account was created."
msgstr "أُنشئ الحساب الإضافي."
-#: src/Module/Register.php:354
+#: src/Module/Register.php:340
msgid ""
"Registration successful. Please check your email for further instructions."
msgstr "سجلت بنجاح. راجع بريدك الإلكتروني لمزيد من التعليمات."
-#: src/Module/Register.php:361
+#: src/Module/Register.php:347
#, php-format
msgid ""
"Failed to send email message. Here your accout details:You can enter one of your one-time recovery codes in case you lost access" " to your mobile device.
" msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:101 +#: src/Module/Security/TwoFactor/Recovery.php:87 #, php-format msgid "Don’t have your phone? Enter a two-factor recovery code" msgstr "لا تحمل هاتفك؟ أدخل رمز الاستعادة للاستيثاق بعاملين" -#: src/Module/Security/TwoFactor/Recovery.php:102 +#: src/Module/Security/TwoFactor/Recovery.php:88 msgid "Please enter a recovery code" msgstr "رجاء أدخل رمز الاستعادة" -#: src/Module/Security/TwoFactor/Recovery.php:103 +#: src/Module/Security/TwoFactor/Recovery.php:89 msgid "Submit recovery code and complete login" msgstr "أرسل رمز الاستعادة لتكمل الولوج" -#: src/Module/Security/TwoFactor/SignOut.php:122 +#: src/Module/Security/TwoFactor/SignOut.php:108 msgid "Sign out of this browser?" msgstr "" -#: src/Module/Security/TwoFactor/SignOut.php:123 +#: src/Module/Security/TwoFactor/SignOut.php:109 msgid "" "If you trust this browser, you will not be asked for verification code " "the next time you sign in.
" msgstr "" -#: src/Module/Security/TwoFactor/SignOut.php:124 +#: src/Module/Security/TwoFactor/SignOut.php:110 msgid "Sign out" msgstr "" -#: src/Module/Security/TwoFactor/SignOut.php:126 +#: src/Module/Security/TwoFactor/SignOut.php:112 msgid "Trust and sign out" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:96 +#: src/Module/Security/TwoFactor/Trust.php:82 msgid "Couldn't save browser to Cookie." msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:141 +#: src/Module/Security/TwoFactor/Trust.php:127 msgid "Trust this browser?" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:142 +#: src/Module/Security/TwoFactor/Trust.php:128 msgid "" "If you choose to trust this browser, you will not be asked for a " "verification code the next time you sign in.
" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:143 +#: src/Module/Security/TwoFactor/Trust.php:129 msgid "Not now" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:144 +#: src/Module/Security/TwoFactor/Trust.php:130 msgid "Don't trust" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:145 +#: src/Module/Security/TwoFactor/Trust.php:131 msgid "Trust" msgstr "" -#: src/Module/Security/TwoFactor/Verify.php:97 +#: src/Module/Security/TwoFactor/Verify.php:83 msgid "" "Open the two-factor authentication app on your device to get an " "authentication code and verify your identity.
" msgstr "افتح تطبيق الاستيثاق بعاملين على جهازك للحصول على رمز الاستيثاق والتحقق من هويتك.
" -#: src/Module/Security/TwoFactor/Verify.php:100 +#: src/Module/Security/TwoFactor/Verify.php:86 #, php-format msgid "" "If you do not have access to your authentication code you can use a two-factor recovery code." msgstr "" -#: src/Module/Security/TwoFactor/Verify.php:101 -#: src/Module/Settings/TwoFactor/Verify.php:158 +#: src/Module/Security/TwoFactor/Verify.php:87 +#: src/Module/Settings/TwoFactor/Verify.php:144 msgid "Please enter a code from your authentication app" msgstr "يرجى إدخال رمز من تطبيق الاستيثاق" -#: src/Module/Security/TwoFactor/Verify.php:102 +#: src/Module/Security/TwoFactor/Verify.php:88 msgid "Verify code and complete login" msgstr "تحقق من الرمز وأكمل الولوج" -#: src/Module/Settings/Account.php:96 +#: src/Module/Settings/Account.php:82 msgid "Please use a shorter name." msgstr "يرجى استخدام اسم أقصر." -#: src/Module/Settings/Account.php:99 +#: src/Module/Settings/Account.php:85 msgid "Name too short." msgstr "الاسم قصير جداً." -#: src/Module/Settings/Account.php:108 +#: src/Module/Settings/Account.php:94 msgid "Wrong Password." msgstr "كلمة المرور خاطئة." -#: src/Module/Settings/Account.php:113 +#: src/Module/Settings/Account.php:99 msgid "Invalid email." msgstr "البريد الإلكتروني غير صالح." -#: src/Module/Settings/Account.php:117 +#: src/Module/Settings/Account.php:103 msgid "Cannot change to that email." msgstr "لا يمكن التغيير إلى هذا البريد الإلكتروني." -#: src/Module/Settings/Account.php:146 src/Module/Settings/Account.php:195 -#: src/Module/Settings/Account.php:216 src/Module/Settings/Account.php:300 -#: src/Module/Settings/Account.php:329 +#: src/Module/Settings/Account.php:132 src/Module/Settings/Account.php:181 +#: src/Module/Settings/Account.php:202 src/Module/Settings/Account.php:286 +#: src/Module/Settings/Account.php:315 msgid "Settings were not updated." msgstr "لم تُحدث الإعدادات." -#: src/Module/Settings/Account.php:347 +#: src/Module/Settings/Account.php:333 msgid "Contact CSV file upload error" msgstr "خطأ أثناء رفع ملف CSV" -#: src/Module/Settings/Account.php:366 +#: src/Module/Settings/Account.php:352 msgid "Importing Contacts done" msgstr "أُستورد المتراسلون" -#: src/Module/Settings/Account.php:379 +#: src/Module/Settings/Account.php:365 msgid "Relocate message has been send to your contacts" msgstr "أُرسلت رسالة تنبيه بانتقالك إلى متراسليك" -#: src/Module/Settings/Account.php:396 +#: src/Module/Settings/Account.php:382 msgid "Unable to find your profile. Please contact your admin." msgstr "تعذر العثور على ملفك الشخصي. من فضلك اتصال بالمدير." -#: src/Module/Settings/Account.php:438 +#: src/Module/Settings/Account.php:424 msgid "" "Account for a service that automatically shares content based on user " "defined channels." msgstr "" -#: src/Module/Settings/Account.php:448 +#: src/Module/Settings/Account.php:434 msgid "Personal Page Subtypes" msgstr "الأنواع الفرعية للصفحة الشخصية" -#: src/Module/Settings/Account.php:449 +#: src/Module/Settings/Account.php:435 msgid "Community Group Subtypes" msgstr "" -#: src/Module/Settings/Account.php:460 +#: src/Module/Settings/Account.php:446 msgid "Account for a personal profile." msgstr "حساب ملف شخصي خاص." -#: src/Module/Settings/Account.php:467 +#: src/Module/Settings/Account.php:453 msgid "" "Account for an organisation that automatically approves contact requests as " "\"Followers\"." msgstr "حساب المنظمة يوافق تلقائياً على طلبات المراسلة \"كمتابعين\"." -#: src/Module/Settings/Account.php:474 +#: src/Module/Settings/Account.php:460 msgid "" "Account for a news reflector that automatically approves contact requests as" " \"Followers\"." msgstr "حساب إخباري يوافق تلقائياً على طلبات المراسلة \"كمتابعين\"." -#: src/Module/Settings/Account.php:481 +#: src/Module/Settings/Account.php:467 msgid "Account for community discussions." msgstr "حساب مناقشات مجتمعية." -#: src/Module/Settings/Account.php:489 +#: src/Module/Settings/Account.php:475 msgid "" "Account for a regular personal profile that requires manual approval of " "\"Friends\" and \"Followers\"." msgstr "حساب ملف شخصي عادي يتطلب الموافقة اليدوية على \"الأصدقاء\" و \"المتابعين\"." -#: src/Module/Settings/Account.php:496 +#: src/Module/Settings/Account.php:482 msgid "" "Account for a public profile that automatically approves contact requests as" " \"Followers\"." msgstr "حساب شخصي علني يوافق تلقائياً على طلبات المراسلة \"كمتابعين\"." -#: src/Module/Settings/Account.php:503 +#: src/Module/Settings/Account.php:489 msgid "Automatically approves all contact requests." msgstr "يوافق تلقائياً على جميع طلبات المراسلة." -#: src/Module/Settings/Account.php:510 +#: src/Module/Settings/Account.php:496 msgid "Contact requests have to be manually approved." msgstr "" -#: src/Module/Settings/Account.php:517 +#: src/Module/Settings/Account.php:503 msgid "" "Account for a popular profile that automatically approves contact requests " "as \"Friends\"." msgstr "حساب ملف شخصي لمشهور يوافق تلقائياً على طلبات المراسلة كـ\"أصدقاء\"." -#: src/Module/Settings/Account.php:522 +#: src/Module/Settings/Account.php:508 msgid "Private Group [Experimental]" msgstr "" -#: src/Module/Settings/Account.php:524 +#: src/Module/Settings/Account.php:510 msgid "Requires manual approval of contact requests." msgstr "يتطلب الموافقة اليدوية على طلبات المراسلة." -#: src/Module/Settings/Account.php:533 +#: src/Module/Settings/Account.php:519 msgid "OpenID:" msgstr "OpenID:" -#: src/Module/Settings/Account.php:533 +#: src/Module/Settings/Account.php:519 msgid "(Optional) Allow this OpenID to login to this account." msgstr "(اختياري) اسمح لمعرف OpenID بالولوج إلى هذا الحساب." -#: src/Module/Settings/Account.php:541 +#: src/Module/Settings/Account.php:527 msgid "Publish your profile in your local site directory?" msgstr "أتريد نشر ملفك الشخصي في الدليل المحلي للموقع؟" -#: src/Module/Settings/Account.php:541 +#: src/Module/Settings/Account.php:527 #, php-format msgid "" "Your profile will be published in this node's local " @@ -10087,94 +10068,94 @@ msgid "" " system settings." msgstr "سينشر ملفك الشخصي في الدليل المحلي لهذه العقدة. تعتمد خصوصية معلوماتك على إعدادات النظام." -#: src/Module/Settings/Account.php:547 +#: src/Module/Settings/Account.php:533 #, php-format msgid "" "Your profile will also be published in the global friendica directories " "(e.g. %s)." msgstr "سينشر ملفك الشخصي كذلك في الأدلة العالمية لفرَندِيكا (مثال %s)." -#: src/Module/Settings/Account.php:560 +#: src/Module/Settings/Account.php:546 msgid "Account Settings" msgstr "إعدادات الحساب" -#: src/Module/Settings/Account.php:561 +#: src/Module/Settings/Account.php:547 #, php-format msgid "Your Identity Address is '%s' or '%s'." msgstr "عنوان معرفك هو '%s' أو '%s'." -#: src/Module/Settings/Account.php:568 +#: src/Module/Settings/Account.php:554 msgid "Password Settings" msgstr "إعدادات كلمة المرور" -#: src/Module/Settings/Account.php:570 +#: src/Module/Settings/Account.php:556 msgid "Leave password fields blank unless changing" msgstr "اترك حقول كلمة المرور فارغة ما لم ترد تغييرها" -#: src/Module/Settings/Account.php:572 +#: src/Module/Settings/Account.php:558 msgid "Password:" msgstr "كلمة المرور:" -#: src/Module/Settings/Account.php:572 +#: src/Module/Settings/Account.php:558 msgid "Your current password to confirm the changes of the email address" msgstr "اكتب كلمة المرور الحالية لتأكيد تغيير بريدك الإلكتروني" -#: src/Module/Settings/Account.php:575 +#: src/Module/Settings/Account.php:561 msgid "Delete OpenID URL" msgstr "احذف معرف OpenID" -#: src/Module/Settings/Account.php:577 +#: src/Module/Settings/Account.php:563 msgid "Basic Settings" msgstr "الإعدادات الأساسيّة" -#: src/Module/Settings/Account.php:578 -#: src/Module/Settings/Profile/Index.php:288 +#: src/Module/Settings/Account.php:564 +#: src/Module/Settings/Profile/Index.php:274 msgid "Display name:" msgstr "الاسم العلني:" -#: src/Module/Settings/Account.php:579 +#: src/Module/Settings/Account.php:565 msgid "Email Address:" msgstr "البريد الإلكتروني:" -#: src/Module/Settings/Account.php:580 +#: src/Module/Settings/Account.php:566 msgid "Your Timezone:" msgstr "المنطقة الزمنية:" -#: src/Module/Settings/Account.php:581 +#: src/Module/Settings/Account.php:567 msgid "Your Language:" msgstr "لغتك:" -#: src/Module/Settings/Account.php:581 +#: src/Module/Settings/Account.php:567 msgid "" "Set the language we use to show you friendica interface and to send you " "emails" msgstr "عيّن لغة واجهة فرَندِيكا ورسائل البريد الإلكتروني" -#: src/Module/Settings/Account.php:582 +#: src/Module/Settings/Account.php:568 msgid "Default Post Location:" msgstr "موقع النشر الافتراضي:" -#: src/Module/Settings/Account.php:583 +#: src/Module/Settings/Account.php:569 msgid "Use Browser Location:" msgstr "استخدم موقع المتصفح:" -#: src/Module/Settings/Account.php:585 +#: src/Module/Settings/Account.php:571 msgid "Security and Privacy Settings" msgstr "إعدادات الأمان والخصوصية" -#: src/Module/Settings/Account.php:587 +#: src/Module/Settings/Account.php:573 msgid "Maximum Friend Requests/Day:" msgstr "حدُ طلبات الصداقة لليوم الواحد:" -#: src/Module/Settings/Account.php:587 +#: src/Module/Settings/Account.php:573 msgid "(to prevent spam abuse)" msgstr "(لمنع الرسائل المزعجة)" -#: src/Module/Settings/Account.php:589 +#: src/Module/Settings/Account.php:575 msgid "Allow your profile to be searchable globally?" msgstr "أتريد السماح لملفك الشخصي بالظهور في نتائج البحث العالمي؟" -#: src/Module/Settings/Account.php:589 +#: src/Module/Settings/Account.php:575 msgid "" "Activate this setting if you want others to easily find and follow you. Your" " profile will be searchable on remote systems. This setting also determines " @@ -10182,43 +10163,43 @@ msgid "" "indexed or not." msgstr "فعّل هذا الإعداد إن أردت أن يُعثر عليك بسهولة. سيتمكن المستخدمون في المواقع البعيد من العثور عليك، وأيضا سيسمح بظهور ملفك الشخصي في محركات البحث." -#: src/Module/Settings/Account.php:590 +#: src/Module/Settings/Account.php:576 msgid "Hide your contact/friend list from viewers of your profile?" msgstr "أتريد إخفاء قائمة المتراسلين/الأصدقاء عن متصفحي ملفك الشخصي؟" -#: src/Module/Settings/Account.php:590 +#: src/Module/Settings/Account.php:576 msgid "" "A list of your contacts is displayed on your profile page. Activate this " "option to disable the display of your contact list." msgstr "عادة تُعرض قائمة المتراسلين على صفحة ملفك الشخصي. إن قمت بتفعيل هذا الخيار ستخفى القائمة." -#: src/Module/Settings/Account.php:591 +#: src/Module/Settings/Account.php:577 msgid "Hide your public content from anonymous viewers" msgstr "" -#: src/Module/Settings/Account.php:591 +#: src/Module/Settings/Account.php:577 msgid "" "Anonymous visitors will only see your basic profile details. Your public " "posts and replies will still be freely accessible on the remote servers of " "your followers and through relays." msgstr "" -#: src/Module/Settings/Account.php:592 +#: src/Module/Settings/Account.php:578 msgid "Make public posts unlisted" msgstr "لا تدرج المشاركات العلنية" -#: src/Module/Settings/Account.php:592 +#: src/Module/Settings/Account.php:578 msgid "" "Your public posts will not appear on the community pages or in search " "results, nor be sent to relay servers. However they can still appear on " "public feeds on remote servers." msgstr "لن تظهر مشاركتك العلنية على صفحات المجتمع أو في نتائج البحث لهذا الموقع، ولن يتم إرسالها إلى خوادم الترحيل. غير أنها ستبقى تظهر في التغذيات العمومية للخوادم البعيدة." -#: src/Module/Settings/Account.php:593 +#: src/Module/Settings/Account.php:579 msgid "Make all posted pictures accessible" msgstr "أتح كل الصور المنشورة" -#: src/Module/Settings/Account.php:593 +#: src/Module/Settings/Account.php:579 msgid "" "This option makes every posted picture accessible via the direct link. This " "is a workaround for the problem that most other networks can't handle " @@ -10226,352 +10207,352 @@ msgid "" "public on your photo albums though." msgstr "يسمح هذا الخيار بالوصول للصورة المنشورة عبر رابط مباشر. هذا حل لمعظم الشبكات التي لا يمكنها التعامل مع الأذونات. صورك غير العلنية ستبقى مخفية." -#: src/Module/Settings/Account.php:594 +#: src/Module/Settings/Account.php:580 msgid "Allow friends to post to your profile page?" msgstr "أتسمح لأصدقائك بالنشر في صفحة ملفك الشخصي؟" -#: src/Module/Settings/Account.php:594 +#: src/Module/Settings/Account.php:580 msgid "" "Your contacts may write posts on your profile wall. These posts will be " "distributed to your contacts" msgstr "يمكن للمتراسلين كتابة مشاركات على حائط ملفك الشخصي. ستكون هذه المشركات مرئية لكل المتراسلين" -#: src/Module/Settings/Account.php:595 +#: src/Module/Settings/Account.php:581 msgid "Allow friends to tag your posts?" msgstr "أتسمح لأصدقائك بوسم مشاركاتك؟" -#: src/Module/Settings/Account.php:595 +#: src/Module/Settings/Account.php:581 msgid "Your contacts can add additional tags to your posts." msgstr "يمكن لأصدقائك إضافة وسوم لمشاركاتك." -#: src/Module/Settings/Account.php:596 +#: src/Module/Settings/Account.php:582 msgid "Default privacy circle for new contacts" msgstr "" -#: src/Module/Settings/Account.php:597 +#: src/Module/Settings/Account.php:583 msgid "Default privacy circle for new group contacts" msgstr "" -#: src/Module/Settings/Account.php:598 +#: src/Module/Settings/Account.php:584 msgid "Default Post Permissions" msgstr "أذونات النشر الافتراضية" -#: src/Module/Settings/Account.php:602 +#: src/Module/Settings/Account.php:588 msgid "Expiration settings" msgstr "إعدادات انتهاء الصلاحية" -#: src/Module/Settings/Account.php:603 +#: src/Module/Settings/Account.php:589 msgid "Automatically expire posts after this many days:" msgstr "أنه صَلاحِيَة المشاركات تلقائياً بعد هذا العدد من الأيام:" -#: src/Module/Settings/Account.php:603 +#: src/Module/Settings/Account.php:589 msgid "If empty, posts will not expire. Expired posts will be deleted" msgstr "إذا كان فارغاً، لن تنتهي صلاحية المشاركات. وإلا بعد المهلة ستحذف المشاركات المنتهية صلاحيتها" -#: src/Module/Settings/Account.php:604 +#: src/Module/Settings/Account.php:590 msgid "Expire posts" msgstr "أنه صَلاحِيَة المشاركات" -#: src/Module/Settings/Account.php:604 +#: src/Module/Settings/Account.php:590 msgid "When activated, posts and comments will be expired." msgstr "عند تفعيله، ستنهى صلاحية المشاركات والتعليقات." -#: src/Module/Settings/Account.php:605 +#: src/Module/Settings/Account.php:591 msgid "Expire personal notes" msgstr "أنه صَلاحِيَة الملاحظات الشخصية" -#: src/Module/Settings/Account.php:605 +#: src/Module/Settings/Account.php:591 msgid "" "When activated, the personal notes on your profile page will be expired." msgstr "عند تفعيله، ستنهى صلاحية الملاحظات الشخصية على صفحة ملفك الشخصي." -#: src/Module/Settings/Account.php:606 +#: src/Module/Settings/Account.php:592 msgid "Expire starred posts" msgstr "أنتهي صلاحية المشاركات المفضلة" -#: src/Module/Settings/Account.php:606 +#: src/Module/Settings/Account.php:592 msgid "" "Starring posts keeps them from being expired. That behaviour is overwritten " "by this setting." msgstr "تفضيل مشاركة تقيها من انتهاء الصلاحية. هذا السلوك يُتجاوز من خلال هذا الإعداد." -#: src/Module/Settings/Account.php:607 +#: src/Module/Settings/Account.php:593 msgid "Only expire posts by others" msgstr "أنه صَلاحِيَة مشاركات الآخرين فقط" -#: src/Module/Settings/Account.php:607 +#: src/Module/Settings/Account.php:593 msgid "" "When activated, your own posts never expire. Then the settings above are " "only valid for posts you received." msgstr "عند تفعيله، لا نهاية لصلاحية مشاركاتك. ثم تكون الإعدادات أعلاه صالحة فقط للمشاركات التي استلمتها." -#: src/Module/Settings/Account.php:610 +#: src/Module/Settings/Account.php:596 msgid "Notification Settings" msgstr "إعدادات التنبيهات" -#: src/Module/Settings/Account.php:611 +#: src/Module/Settings/Account.php:597 msgid "Send a notification email when:" msgstr "أرسل تنبيها للبريدي الإلكتروني عند:" -#: src/Module/Settings/Account.php:612 +#: src/Module/Settings/Account.php:598 msgid "You receive an introduction" msgstr "تلقي تقديم" -#: src/Module/Settings/Account.php:613 +#: src/Module/Settings/Account.php:599 msgid "Your introductions are confirmed" msgstr "أُكدت تقديماتك" -#: src/Module/Settings/Account.php:614 +#: src/Module/Settings/Account.php:600 msgid "Someone writes on your profile wall" msgstr "يكتب شخص ما على جدار ملفك الشخصي" -#: src/Module/Settings/Account.php:615 +#: src/Module/Settings/Account.php:601 msgid "Someone writes a followup comment" msgstr "شخص ما يعلق على ما نشرت" -#: src/Module/Settings/Account.php:616 +#: src/Module/Settings/Account.php:602 msgid "You receive a private message" msgstr "تلقي رسالة خاصة" -#: src/Module/Settings/Account.php:617 +#: src/Module/Settings/Account.php:603 msgid "You receive a friend suggestion" msgstr "تلقي اقتراح صداقة" -#: src/Module/Settings/Account.php:618 +#: src/Module/Settings/Account.php:604 msgid "You are tagged in a post" msgstr "ذُكرتَ في مشاركة" -#: src/Module/Settings/Account.php:620 +#: src/Module/Settings/Account.php:606 msgid "Create a desktop notification when:" msgstr "أنشئ تنبيه سطح المكتب عند:" -#: src/Module/Settings/Account.php:621 +#: src/Module/Settings/Account.php:607 msgid "Someone tagged you" msgstr "" -#: src/Module/Settings/Account.php:622 +#: src/Module/Settings/Account.php:608 msgid "Someone directly commented on your post" msgstr "" -#: src/Module/Settings/Account.php:623 +#: src/Module/Settings/Account.php:609 msgid "Someone liked your content" msgstr "أُعجب شخص بمحتواك" -#: src/Module/Settings/Account.php:623 src/Module/Settings/Account.php:624 +#: src/Module/Settings/Account.php:609 src/Module/Settings/Account.php:610 msgid "Can only be enabled, when the direct comment notification is enabled." msgstr "" -#: src/Module/Settings/Account.php:624 +#: src/Module/Settings/Account.php:610 msgid "Someone shared your content" msgstr "شارك شخص محتواك" -#: src/Module/Settings/Account.php:625 +#: src/Module/Settings/Account.php:611 msgid "Someone commented in your thread" msgstr "" -#: src/Module/Settings/Account.php:626 +#: src/Module/Settings/Account.php:612 msgid "Someone commented in a thread where you commented" msgstr "" -#: src/Module/Settings/Account.php:627 +#: src/Module/Settings/Account.php:613 msgid "Someone commented in a thread where you interacted" msgstr "" -#: src/Module/Settings/Account.php:629 +#: src/Module/Settings/Account.php:615 msgid "Activate desktop notifications" msgstr "نشّط تنبيهات سطح المكتب" -#: src/Module/Settings/Account.php:629 +#: src/Module/Settings/Account.php:615 msgid "Show desktop popup on new notifications" msgstr "أظهر منبثقات للتنبيهات الجديدة" -#: src/Module/Settings/Account.php:633 +#: src/Module/Settings/Account.php:619 msgid "Text-only notification emails" msgstr "رسائل تنبيه نصية فقط" -#: src/Module/Settings/Account.php:635 +#: src/Module/Settings/Account.php:621 msgid "Send text only notification emails, without the html part" msgstr "أرسل بريد التنبيه كنص فقط، دون وسوم html" -#: src/Module/Settings/Account.php:639 +#: src/Module/Settings/Account.php:625 msgid "Show detailled notifications" msgstr "اعرض تنبيهات مفصلة" -#: src/Module/Settings/Account.php:641 +#: src/Module/Settings/Account.php:627 msgid "" "Per default, notifications are condensed to a single notification per item. " "When enabled every notification is displayed." msgstr "افتراضيًا ، يعرض أحدث تنبيه فقط لكل محادثة. عند تفعيله ستعرض جميع التنبيهات." -#: src/Module/Settings/Account.php:645 +#: src/Module/Settings/Account.php:631 msgid "Show notifications of ignored contacts" msgstr "أظهر تنبيهات للمتراسلين المتجاهلين" -#: src/Module/Settings/Account.php:647 +#: src/Module/Settings/Account.php:633 msgid "" "You don't see posts from ignored contacts. But you still see their comments." " This setting controls if you want to still receive regular notifications " "that are caused by ignored contacts or not." msgstr "أنت لا ترى مشاركات المتراسلين المتجاهلين. لكن لا يزال بإمكانك رؤية تعليقاتهم. هذا الإعداد يتحكم إذا كنت ترغب في الاستمرار في تلقي تنبيهات سببها المتراسلون المتجاهلون." -#: src/Module/Settings/Account.php:650 +#: src/Module/Settings/Account.php:636 msgid "Advanced Account/Page Type Settings" msgstr "الإعدادات المتقدمة للحساب/للصفحة" -#: src/Module/Settings/Account.php:651 +#: src/Module/Settings/Account.php:637 msgid "Change the behaviour of this account for special situations" msgstr "غيّر سلوك هذا الحساب للحالات الخاصة" -#: src/Module/Settings/Account.php:654 +#: src/Module/Settings/Account.php:640 msgid "Import Contacts" msgstr "استيراد متراسلين" -#: src/Module/Settings/Account.php:655 +#: src/Module/Settings/Account.php:641 msgid "" "Upload a CSV file that contains the handle of your followed accounts in the " "first column you exported from the old account." msgstr "ارفع ملف CSV معرفات المتراسلين لحسابك القديم، معرفات المتابَعين تكون في العمود الأول." -#: src/Module/Settings/Account.php:656 +#: src/Module/Settings/Account.php:642 msgid "Upload File" msgstr "ارفع ملفًا" -#: src/Module/Settings/Account.php:659 +#: src/Module/Settings/Account.php:645 msgid "Relocate" msgstr "الانتقال" -#: src/Module/Settings/Account.php:660 +#: src/Module/Settings/Account.php:646 msgid "" "If you have moved this profile from another server, and some of your " "contacts don't receive your updates, try pushing this button." msgstr "إذا كنت قد نقلت هذا الملف الشخصي من خادم آخر، وبعض المتراسلين لا يتلقون تحديثاتك، أنقر هذا الزر." -#: src/Module/Settings/Account.php:661 +#: src/Module/Settings/Account.php:647 msgid "Resend relocate message to contacts" msgstr "أعد إرسال رسالة الانتقال للمتراسلين" -#: src/Module/Settings/Addons.php:86 +#: src/Module/Settings/Addons.php:72 msgid "Addon Settings" msgstr "إعدادات الإضافة" -#: src/Module/Settings/Addons.php:87 +#: src/Module/Settings/Addons.php:73 msgid "No Addon settings configured" msgstr "لم تضبط إعدادات الإضافة" -#: src/Module/Settings/Channels.php:148 +#: src/Module/Settings/Channels.php:134 msgid "" "This page can be used to define the channels that will automatically be " "reshared by your account." msgstr "" -#: src/Module/Settings/Channels.php:153 +#: src/Module/Settings/Channels.php:139 msgid "This page can be used to define your own channels." msgstr "" -#: src/Module/Settings/Channels.php:182 +#: src/Module/Settings/Channels.php:168 msgid "Publish" msgstr "" -#: src/Module/Settings/Channels.php:182 +#: src/Module/Settings/Channels.php:168 msgid "" "When selected, the channel results are reshared. This only works for public " "ActivityPub posts from the public timeline or the user defined circles." msgstr "" -#: src/Module/Settings/Channels.php:190 src/Module/Settings/Channels.php:211 -#: src/Module/Settings/Display.php:338 +#: src/Module/Settings/Channels.php:176 src/Module/Settings/Channels.php:197 +#: src/Module/Settings/Display.php:324 msgid "Label" msgstr "" -#: src/Module/Settings/Channels.php:191 src/Module/Settings/Channels.php:212 -#: src/Module/Settings/Display.php:339 -#: src/Module/Settings/TwoFactor/AppSpecific.php:137 +#: src/Module/Settings/Channels.php:177 src/Module/Settings/Channels.php:198 +#: src/Module/Settings/Display.php:325 +#: src/Module/Settings/TwoFactor/AppSpecific.php:123 msgid "Description" msgstr "الوصف" -#: src/Module/Settings/Channels.php:192 src/Module/Settings/Channels.php:213 +#: src/Module/Settings/Channels.php:178 src/Module/Settings/Channels.php:199 msgid "Access Key" msgstr "" -#: src/Module/Settings/Channels.php:193 src/Module/Settings/Channels.php:214 +#: src/Module/Settings/Channels.php:179 src/Module/Settings/Channels.php:200 msgid "Circle/Channel" msgstr "" -#: src/Module/Settings/Channels.php:194 src/Module/Settings/Channels.php:215 +#: src/Module/Settings/Channels.php:180 src/Module/Settings/Channels.php:201 msgid "Include Tags" msgstr "" -#: src/Module/Settings/Channels.php:195 src/Module/Settings/Channels.php:216 +#: src/Module/Settings/Channels.php:181 src/Module/Settings/Channels.php:202 msgid "Exclude Tags" msgstr "" -#: src/Module/Settings/Channels.php:196 src/Module/Settings/Channels.php:217 +#: src/Module/Settings/Channels.php:182 src/Module/Settings/Channels.php:203 msgid "Minimum Size" msgstr "" -#: src/Module/Settings/Channels.php:197 src/Module/Settings/Channels.php:218 +#: src/Module/Settings/Channels.php:183 src/Module/Settings/Channels.php:204 msgid "Maximum Size" msgstr "" -#: src/Module/Settings/Channels.php:198 src/Module/Settings/Channels.php:219 +#: src/Module/Settings/Channels.php:184 src/Module/Settings/Channels.php:205 msgid "Full Text Search" msgstr "" -#: src/Module/Settings/Channels.php:202 src/Module/Settings/Channels.php:223 +#: src/Module/Settings/Channels.php:188 src/Module/Settings/Channels.php:209 msgid "Select all languages that you want to see in this channel." msgstr "" -#: src/Module/Settings/Channels.php:204 +#: src/Module/Settings/Channels.php:190 msgid "Delete channel" msgstr "" -#: src/Module/Settings/Channels.php:204 +#: src/Module/Settings/Channels.php:190 msgid "Check to delete this entry from the channel list" msgstr "" -#: src/Module/Settings/Channels.php:211 +#: src/Module/Settings/Channels.php:197 msgid "Short name for the channel. It is displayed on the channels widget." msgstr "" -#: src/Module/Settings/Channels.php:212 +#: src/Module/Settings/Channels.php:198 msgid "This should describe the content of the channel in a few word." msgstr "" -#: src/Module/Settings/Channels.php:213 +#: src/Module/Settings/Channels.php:199 msgid "" "When you want to access this channel via an access key, you can define it " "here. Pay attention to not use an already used one." msgstr "" -#: src/Module/Settings/Channels.php:214 +#: src/Module/Settings/Channels.php:200 msgid "Select a circle or channel, that your channel should be based on." msgstr "" -#: src/Module/Settings/Channels.php:215 +#: src/Module/Settings/Channels.php:201 msgid "" "Comma separated list of tags. A post will be used when it contains any of " "the listed tags." msgstr "" -#: src/Module/Settings/Channels.php:216 +#: src/Module/Settings/Channels.php:202 msgid "" "Comma separated list of tags. If a post contain any of these tags, then it " "will not be part of nthis channel." msgstr "" -#: src/Module/Settings/Channels.php:217 +#: src/Module/Settings/Channels.php:203 msgid "" "Minimum post size. Leave empty for no minimum size. The size is calculated " "without links, attached posts, mentions or hashtags." msgstr "" -#: src/Module/Settings/Channels.php:218 +#: src/Module/Settings/Channels.php:204 msgid "" "Maximum post size. Leave empty for no maximum size. The size is calculated " "without links, attached posts, mentions or hashtags." msgstr "" -#: src/Module/Settings/Channels.php:219 +#: src/Module/Settings/Channels.php:205 #, php-format msgid "" "Search terms for the body, supports the \"boolean mode\" operators from " @@ -10579,600 +10560,589 @@ msgid "" "keywords: %s" msgstr "" -#: src/Module/Settings/Channels.php:220 +#: src/Module/Settings/Channels.php:206 msgid "Check to display images in the channel." msgstr "" -#: src/Module/Settings/Channels.php:221 +#: src/Module/Settings/Channels.php:207 msgid "Check to display videos in the channel." msgstr "" -#: src/Module/Settings/Channels.php:222 +#: src/Module/Settings/Channels.php:208 msgid "Check to display audio in the channel." msgstr "" -#: src/Module/Settings/Channels.php:227 +#: src/Module/Settings/Channels.php:213 msgid "Add new entry to the channel list" msgstr "" -#: src/Module/Settings/Channels.php:228 +#: src/Module/Settings/Channels.php:214 msgid "Add" msgstr "أضف" -#: src/Module/Settings/Channels.php:230 +#: src/Module/Settings/Channels.php:216 msgid "Current Entries in the channel list" msgstr "" -#: src/Module/Settings/Channels.php:233 +#: src/Module/Settings/Channels.php:219 msgid "Delete entry from the channel list" msgstr "" -#: src/Module/Settings/Channels.php:234 +#: src/Module/Settings/Channels.php:220 msgid "Delete entry from the channel list?" msgstr "" -#: src/Module/Settings/Connectors.php:122 +#: src/Module/Settings/Connectors.php:108 msgid "Failed to connect with email account using the settings provided." msgstr "فشل الاتصال بحساب البريد الإلكتروني باستخدام الإعدادات المقدمة." -#: src/Module/Settings/Connectors.php:169 -#: src/Module/Settings/Connectors.php:170 +#: src/Module/Settings/Connectors.php:155 +#: src/Module/Settings/Connectors.php:156 msgid "Diaspora (Socialhome, Hubzilla)" msgstr "دياسبورا (سوشل-هوم، هوب-زيلا)" -#: src/Module/Settings/Connectors.php:169 -#: src/Module/Settings/Connectors.php:173 +#: src/Module/Settings/Connectors.php:155 #, php-format msgid "Built-in support for %s connectivity is enabled" msgstr "" -#: src/Module/Settings/Connectors.php:170 -#: src/Module/Settings/Connectors.php:172 +#: src/Module/Settings/Connectors.php:156 #, php-format msgid "Built-in support for %s connectivity is disabled" msgstr "" -#: src/Module/Settings/Connectors.php:172 -#: src/Module/Settings/Connectors.php:173 -msgid "OStatus (GNU Social)" -msgstr "OStatus (غنو سوشل)" - -#: src/Module/Settings/Connectors.php:185 +#: src/Module/Settings/Connectors.php:167 msgid "Email access is disabled on this site." msgstr "الوصول إلى البريد الإلكتروني معطل في هذا الموقع." -#: src/Module/Settings/Connectors.php:200 -#: src/Module/Settings/Connectors.php:254 +#: src/Module/Settings/Connectors.php:182 +#: src/Module/Settings/Connectors.php:233 msgid "None" msgstr "لا شيء" -#: src/Module/Settings/Connectors.php:204 +#: src/Module/Settings/Connectors.php:186 msgid "Default (Mastodon will display the title and a link to the post)" msgstr "" -#: src/Module/Settings/Connectors.php:205 +#: src/Module/Settings/Connectors.php:187 msgid "" "Use the summary (Mastodon and some others will treat it as content warning)" msgstr "" -#: src/Module/Settings/Connectors.php:206 +#: src/Module/Settings/Connectors.php:188 msgid "Embed the title in the body" msgstr "" -#: src/Module/Settings/Connectors.php:218 +#: src/Module/Settings/Connectors.php:199 msgid "General Social Media Settings" msgstr "الإعدادات العامة لشبكات التواصل الاجتماعي" -#: src/Module/Settings/Connectors.php:221 +#: src/Module/Settings/Connectors.php:202 msgid "Followed content scope" msgstr "حيز المحتوى المتابَع" -#: src/Module/Settings/Connectors.php:223 +#: src/Module/Settings/Connectors.php:204 msgid "" "By default, conversations in which your follows participated but didn't " "start will be shown in your timeline. You can turn this behavior off, or " "expand it to the conversations in which your follows liked a post." msgstr "" -#: src/Module/Settings/Connectors.php:225 +#: src/Module/Settings/Connectors.php:206 msgid "Only conversations my follows started" msgstr "المحادثات التي بدأها متابَعي فقط" -#: src/Module/Settings/Connectors.php:226 +#: src/Module/Settings/Connectors.php:207 msgid "Conversations my follows started or commented on (default)" msgstr "المحادثات التي بدأها متابَعي أو علقوا عليها (الافتراضي)" -#: src/Module/Settings/Connectors.php:227 +#: src/Module/Settings/Connectors.php:208 msgid "Any conversation my follows interacted with, including likes" msgstr "أي محادثة تفاعل معها متابَعي" -#: src/Module/Settings/Connectors.php:230 +#: src/Module/Settings/Connectors.php:211 msgid "Collapse sensitive posts" msgstr "" -#: src/Module/Settings/Connectors.php:230 +#: src/Module/Settings/Connectors.php:211 msgid "" "If a post is marked as \"sensitive\", it will be displayed in a collapsed " "state, if this option is enabled." msgstr "" -#: src/Module/Settings/Connectors.php:231 +#: src/Module/Settings/Connectors.php:212 msgid "Enable intelligent shortening" msgstr "فعّل الاختصار الذكي" -#: src/Module/Settings/Connectors.php:231 +#: src/Module/Settings/Connectors.php:212 msgid "" "Normally the system tries to find the best link to add to shortened posts. " "If disabled, every shortened post will always point to the original " "friendica post." msgstr "يعثر الاختصار الذكي على الرابط الأنسب في المشاركات المختصرة. عند تعطيله سيشير الرابط إلى منشور فرنديكا الأصلي." -#: src/Module/Settings/Connectors.php:232 +#: src/Module/Settings/Connectors.php:213 msgid "Enable simple text shortening" msgstr "فعّل اختصار النصوص" -#: src/Module/Settings/Connectors.php:232 +#: src/Module/Settings/Connectors.php:213 msgid "" "Normally the system shortens posts at the next line feed. If this option is " "enabled then the system will shorten the text at the maximum character " "limit." msgstr "" -#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Connectors.php:214 msgid "Attach the link title" msgstr "أرفق عنوان الرابط" -#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Connectors.php:214 msgid "" "When activated, the title of the attached link will be added as a title on " "posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that" " share feed content." msgstr "عند تفعيله سيتم إرفاق عنوان الصفحة بمنشور دياسبورا. هذا مفيد بشكل أساسي مع المتراسلين \"الذاتيين\" الذين يشاركون تغذيات Rss / Atom." -#: src/Module/Settings/Connectors.php:234 +#: src/Module/Settings/Connectors.php:215 msgid "API: Use spoiler field as title" msgstr "" -#: src/Module/Settings/Connectors.php:234 +#: src/Module/Settings/Connectors.php:215 msgid "" "When activated, the \"spoiler_text\" field in the API will be used for the " "title on standalone posts. When deactivated it will be used for spoiler " "text. For comments it will always be used for spoiler text." msgstr "" -#: src/Module/Settings/Connectors.php:235 +#: src/Module/Settings/Connectors.php:216 msgid "API: Automatically links at the end of the post as attached posts" msgstr "" -#: src/Module/Settings/Connectors.php:235 +#: src/Module/Settings/Connectors.php:216 msgid "" "When activated, added links at the end of the post react the same way as " "added links in the web interface." msgstr "" -#: src/Module/Settings/Connectors.php:236 +#: src/Module/Settings/Connectors.php:217 msgid "Article Mode" msgstr "" -#: src/Module/Settings/Connectors.php:236 +#: src/Module/Settings/Connectors.php:217 msgid "" "Controls how posts with titles are transmitted. Mastodon and its forks don't" " display the content of these posts if the post is created in the correct " "(default) way." msgstr "" -#: src/Module/Settings/Connectors.php:237 +#: src/Module/Settings/Connectors.php:218 msgid "Your legacy ActivityPub/GNU Social account" msgstr "حساب GNU Social\\ActivityPub القديم" -#: src/Module/Settings/Connectors.php:237 +#: src/Module/Settings/Connectors.php:218 msgid "" "If you enter your old account name from an ActivityPub based system or your " "GNU Social/Statusnet account name here (in the format user@domain.tld), your" " contacts will be added automatically. The field will be emptied when done." msgstr "إذا قمت بإدخال اسم حساب ActivityPub/GNU Social/Statusnet القديم هنا (بنسق user@domain.tld)، سيضاف المتراسلون في هذا الحساب تلقائيا. سيصفر الحقل عند الانتهاء." -#: src/Module/Settings/Connectors.php:239 -msgid "Repair OStatus subscriptions" -msgstr "أصلح اشتراكات OStatus" - -#: src/Module/Settings/Connectors.php:243 +#: src/Module/Settings/Connectors.php:222 msgid "Email/Mailbox Setup" msgstr "إعداد بريد الكتروني/صندوق بريد" -#: src/Module/Settings/Connectors.php:244 +#: src/Module/Settings/Connectors.php:223 msgid "" "If you wish to communicate with email contacts using this service " "(optional), please specify how to connect to your mailbox." msgstr "إذا كنت ترغب في التواصل مع متراسلي البريد الإلكتروني باستخدام هذه الخدمة (اختيارية)، من فضلك حدد كيفية الاتصال بصندوق بريدك." -#: src/Module/Settings/Connectors.php:245 +#: src/Module/Settings/Connectors.php:224 msgid "Last successful email check:" msgstr "آخر تحقق ناجح للبريد الإلكتروني:" -#: src/Module/Settings/Connectors.php:247 +#: src/Module/Settings/Connectors.php:226 msgid "IMAP server name:" msgstr "اسم خادم IMAP:" -#: src/Module/Settings/Connectors.php:248 +#: src/Module/Settings/Connectors.php:227 msgid "IMAP port:" msgstr "منفذ IMAP:" -#: src/Module/Settings/Connectors.php:249 +#: src/Module/Settings/Connectors.php:228 msgid "Security:" msgstr "الحماية:" -#: src/Module/Settings/Connectors.php:250 +#: src/Module/Settings/Connectors.php:229 msgid "Email login name:" msgstr "اسم الولوج للبريد الإلكتروني:" -#: src/Module/Settings/Connectors.php:251 +#: src/Module/Settings/Connectors.php:230 msgid "Email password:" msgstr "كلمة مرور البريد الإلكتروني:" -#: src/Module/Settings/Connectors.php:252 +#: src/Module/Settings/Connectors.php:231 msgid "Reply-to address:" msgstr "الرد على عنوان:" -#: src/Module/Settings/Connectors.php:253 +#: src/Module/Settings/Connectors.php:232 msgid "Send public posts to all email contacts:" msgstr "أرسل المشاركات العلنية لجميع متراسلي البريد الإلكتروني:" -#: src/Module/Settings/Connectors.php:254 +#: src/Module/Settings/Connectors.php:233 msgid "Action after import:" msgstr "الإجراء بعد الاستيراد:" -#: src/Module/Settings/Connectors.php:254 +#: src/Module/Settings/Connectors.php:233 msgid "Move to folder" msgstr "انقل إلى مجلد" -#: src/Module/Settings/Connectors.php:255 +#: src/Module/Settings/Connectors.php:234 msgid "Move to folder:" msgstr "انقل إلى المجلد:" -#: src/Module/Settings/Delegation.php:73 +#: src/Module/Settings/Delegation.php:59 msgid "Delegation successfully granted." msgstr "منح التفويض بنجاح." -#: src/Module/Settings/Delegation.php:75 +#: src/Module/Settings/Delegation.php:61 msgid "Parent user not found, unavailable or password doesn't match." msgstr "لم يُعثر على الولي أو هو غير متوفر أو كلمة مرور غير صحيحة." -#: src/Module/Settings/Delegation.php:79 +#: src/Module/Settings/Delegation.php:65 msgid "Delegation successfully revoked." msgstr "نجح إبطال التفويض." -#: src/Module/Settings/Delegation.php:98 -#: src/Module/Settings/Delegation.php:120 +#: src/Module/Settings/Delegation.php:84 +#: src/Module/Settings/Delegation.php:106 msgid "" "Delegated administrators can view but not change delegation permissions." msgstr "" -#: src/Module/Settings/Delegation.php:112 +#: src/Module/Settings/Delegation.php:98 msgid "Delegate user not found." msgstr "لم يُعثر على المندوب." -#: src/Module/Settings/Delegation.php:169 +#: src/Module/Settings/Delegation.php:155 msgid "No parent user" msgstr "لا يوجد وليٌ" -#: src/Module/Settings/Delegation.php:180 -#: src/Module/Settings/Delegation.php:191 +#: src/Module/Settings/Delegation.php:166 +#: src/Module/Settings/Delegation.php:177 msgid "Parent User" msgstr "الوليٌ" -#: src/Module/Settings/Delegation.php:188 +#: src/Module/Settings/Delegation.php:174 msgid "Additional Accounts" msgstr "الحسابات الإضافية" -#: src/Module/Settings/Delegation.php:189 +#: src/Module/Settings/Delegation.php:175 msgid "" "Register additional accounts that are automatically connected to your " "existing account so you can manage them from this account." msgstr "سجل حسابات إضافية مرتبطة تلقائيا بحسابك الحالي ويمكنك إدارتها عبر هذا الحساب." -#: src/Module/Settings/Delegation.php:190 +#: src/Module/Settings/Delegation.php:176 msgid "Register an additional account" msgstr "سجل حساب إضافي" -#: src/Module/Settings/Delegation.php:192 +#: src/Module/Settings/Delegation.php:178 msgid "" "Parent users have total control about this account, including the account " "settings. Please double check whom you give this access." msgstr "المستخدمون الأولياء لديهم سيطرة كاملة على هذا الحساب، بما في ذلك إعدادات الحساب. الرجاء الحذر عند إعطاء صلاحية الوصول إليه." -#: src/Module/Settings/Delegation.php:195 +#: src/Module/Settings/Delegation.php:181 msgid "Delegates" msgstr "المندوبون" -#: src/Module/Settings/Delegation.php:196 +#: src/Module/Settings/Delegation.php:182 msgid "" "Delegates are able to manage all aspects of this account/page except for " "basic account settings. Please do not delegate your personal account to " "anybody that you do not trust completely." msgstr "يستطيع المندوبون إدارة جميع جوانب هذا الحساب/الصفحة باستثناء إعدادات الحساب الأساسية. يرجى عدم تفويض حسابك الشخصي لأي شخص لا تثق به." -#: src/Module/Settings/Delegation.php:197 +#: src/Module/Settings/Delegation.php:183 msgid "Existing Page Delegates" msgstr "مندوبو الصفحة الحاليون" -#: src/Module/Settings/Delegation.php:198 +#: src/Module/Settings/Delegation.php:184 msgid "Potential Delegates" msgstr "المندوبون المحتملون" -#: src/Module/Settings/Delegation.php:199 +#: src/Module/Settings/Delegation.php:185 msgid "No entries." msgstr "لا مدخلات." -#: src/Module/Settings/Display.php:183 +#: src/Module/Settings/Display.php:169 msgid "The theme you chose isn't available." msgstr "السمة التي اخترتها غير متوفرة." -#: src/Module/Settings/Display.php:223 +#: src/Module/Settings/Display.php:209 #, php-format msgid "%s - (Unsupported)" msgstr "%s - (غير مدعوم)" -#: src/Module/Settings/Display.php:260 +#: src/Module/Settings/Display.php:246 msgid "No preview" msgstr "" -#: src/Module/Settings/Display.php:261 +#: src/Module/Settings/Display.php:247 msgid "No image" msgstr "" -#: src/Module/Settings/Display.php:262 +#: src/Module/Settings/Display.php:248 msgid "Small Image" msgstr "" -#: src/Module/Settings/Display.php:263 +#: src/Module/Settings/Display.php:249 msgid "Large Image" msgstr "" -#: src/Module/Settings/Display.php:308 +#: src/Module/Settings/Display.php:294 msgid "Display Settings" msgstr "إعدادات العرض" -#: src/Module/Settings/Display.php:310 +#: src/Module/Settings/Display.php:296 msgid "General Theme Settings" msgstr "الإعدادات العامة للسمة" -#: src/Module/Settings/Display.php:311 +#: src/Module/Settings/Display.php:297 msgid "Custom Theme Settings" msgstr "الإعدادات المخصصة للسمة" -#: src/Module/Settings/Display.php:312 +#: src/Module/Settings/Display.php:298 msgid "Content Settings" msgstr "إعدادات المحتوى" -#: src/Module/Settings/Display.php:313 view/theme/duepuntozero/config.php:86 -#: view/theme/frio/config.php:151 view/theme/quattro/config.php:88 -#: view/theme/vier/config.php:136 +#: src/Module/Settings/Display.php:299 view/theme/duepuntozero/config.php:74 +#: view/theme/frio/config.php:139 view/theme/quattro/config.php:76 +#: view/theme/vier/config.php:124 msgid "Theme settings" msgstr "إعدادات السمة" -#: src/Module/Settings/Display.php:314 +#: src/Module/Settings/Display.php:300 msgid "Timelines" msgstr "" -#: src/Module/Settings/Display.php:321 +#: src/Module/Settings/Display.php:307 msgid "Display Theme:" msgstr "سمة العرض:" -#: src/Module/Settings/Display.php:322 +#: src/Module/Settings/Display.php:308 msgid "Mobile Theme:" msgstr "سمة الهاتف:" -#: src/Module/Settings/Display.php:325 +#: src/Module/Settings/Display.php:311 msgid "Number of items to display per page:" msgstr "عدد العناصر التي سيتم عرضها في كل صفحة:" -#: src/Module/Settings/Display.php:325 src/Module/Settings/Display.php:326 +#: src/Module/Settings/Display.php:311 src/Module/Settings/Display.php:312 msgid "Maximum of 100 items" msgstr "الحد الأقصى هو 100 عنصر" -#: src/Module/Settings/Display.php:326 +#: src/Module/Settings/Display.php:312 msgid "Number of items to display per page when viewed from mobile device:" msgstr "عدد العناصر التي سيتم عرضها في كل صفحة في وضع الهاتف:" -#: src/Module/Settings/Display.php:327 +#: src/Module/Settings/Display.php:313 msgid "Update browser every xx seconds" msgstr "حدّث المتصفح كل xx ثانية" -#: src/Module/Settings/Display.php:327 +#: src/Module/Settings/Display.php:313 msgid "Minimum of 10 seconds. Enter -1 to disable it." msgstr "الحد الأدنى هو 10 ثواني. أدخل -1 لتعطيله." -#: src/Module/Settings/Display.php:328 +#: src/Module/Settings/Display.php:314 msgid "Display emoticons" msgstr "" -#: src/Module/Settings/Display.php:328 +#: src/Module/Settings/Display.php:314 msgid "When enabled, emoticons are replaced with matching symbols." msgstr "" -#: src/Module/Settings/Display.php:329 +#: src/Module/Settings/Display.php:315 msgid "Infinite scroll" msgstr "التمرير اللانهائي" -#: src/Module/Settings/Display.php:329 +#: src/Module/Settings/Display.php:315 msgid "Automatic fetch new items when reaching the page end." msgstr "يجلب عناصر جديدة تلقائياً عند الوصول إلى نهاية الصفحة." -#: src/Module/Settings/Display.php:330 +#: src/Module/Settings/Display.php:316 msgid "Enable Smart Threading" msgstr "" -#: src/Module/Settings/Display.php:330 +#: src/Module/Settings/Display.php:316 msgid "Enable the automatic suppression of extraneous thread indentation." msgstr "" -#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/Display.php:317 msgid "Display the Dislike feature" msgstr "اعرض ميزة \"لم يعجبني\"" -#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/Display.php:317 msgid "" "Display the Dislike button and dislike reactions on posts and comments." msgstr "يعرض زر لم يعجبني والتفاعلات السلبية في المشاركات والتعليقات." -#: src/Module/Settings/Display.php:332 +#: src/Module/Settings/Display.php:318 msgid "Display the resharer" msgstr "اعرض صاحب إعادة النشر" -#: src/Module/Settings/Display.php:332 +#: src/Module/Settings/Display.php:318 msgid "Display the first resharer as icon and text on a reshared item." msgstr "اعرض صورة صاحب المشاركة الأصلية كأيقونة بالإضافة إلى نص على المشاركة." -#: src/Module/Settings/Display.php:333 +#: src/Module/Settings/Display.php:319 msgid "Stay local" msgstr "ابقى في الخادم المحلي" -#: src/Module/Settings/Display.php:333 +#: src/Module/Settings/Display.php:319 msgid "Don't go to a remote system when following a contact link." msgstr "لا يذهب إلى نظام بعيد عند اتباع رابط متراسل." -#: src/Module/Settings/Display.php:334 +#: src/Module/Settings/Display.php:320 msgid "Show the post deletion checkbox" msgstr "" -#: src/Module/Settings/Display.php:334 +#: src/Module/Settings/Display.php:320 msgid "Display the checkbox for the post deletion on the network page." msgstr "" -#: src/Module/Settings/Display.php:335 +#: src/Module/Settings/Display.php:321 msgid "DIsplay the event list" msgstr "" -#: src/Module/Settings/Display.php:335 +#: src/Module/Settings/Display.php:321 msgid "Display the birthday reminder and event list on the network page." msgstr "" -#: src/Module/Settings/Display.php:336 +#: src/Module/Settings/Display.php:322 msgid "Link preview mode" msgstr "" -#: src/Module/Settings/Display.php:336 +#: src/Module/Settings/Display.php:322 msgid "Appearance of the link preview that is added to each post with a link." msgstr "" -#: src/Module/Settings/Display.php:341 +#: src/Module/Settings/Display.php:327 msgid "Bookmark" msgstr "" -#: src/Module/Settings/Display.php:343 +#: src/Module/Settings/Display.php:329 msgid "" "Enable timelines that you want to see in the channels widget. Bookmark " "timelines that you want to see in the top menu." msgstr "" -#: src/Module/Settings/Display.php:345 +#: src/Module/Settings/Display.php:331 msgid "Channel languages:" msgstr "" -#: src/Module/Settings/Display.php:345 +#: src/Module/Settings/Display.php:331 msgid "Select all languages that you want to see in your channels." msgstr "" -#: src/Module/Settings/Display.php:347 +#: src/Module/Settings/Display.php:333 msgid "Beginning of week:" msgstr "بداية الأسبوع:" -#: src/Module/Settings/Display.php:348 +#: src/Module/Settings/Display.php:334 msgid "Default calendar view:" msgstr "" -#: src/Module/Settings/Features.php:73 +#: src/Module/Settings/Features.php:59 msgid "Additional Features" msgstr "ميزات إضافية" -#: src/Module/Settings/OAuth.php:71 +#: src/Module/Settings/OAuth.php:57 msgid "Connected Apps" msgstr "التطبيقات المتصلة" -#: src/Module/Settings/OAuth.php:75 +#: src/Module/Settings/OAuth.php:61 msgid "Remove authorization" msgstr "أزل التخويل" -#: src/Module/Settings/Profile/Index.php:116 +#: src/Module/Settings/Profile/Index.php:102 msgid "Display Name is required." msgstr "" -#: src/Module/Settings/Profile/Index.php:170 +#: src/Module/Settings/Profile/Index.php:156 msgid "Profile couldn't be updated." msgstr "تعذر تحديث الملف الشخصي." -#: src/Module/Settings/Profile/Index.php:210 -#: src/Module/Settings/Profile/Index.php:231 +#: src/Module/Settings/Profile/Index.php:196 +#: src/Module/Settings/Profile/Index.php:217 msgid "Label:" msgstr "التسمية:" -#: src/Module/Settings/Profile/Index.php:211 -#: src/Module/Settings/Profile/Index.php:232 +#: src/Module/Settings/Profile/Index.php:197 +#: src/Module/Settings/Profile/Index.php:218 msgid "Value:" msgstr "القيمة:" -#: src/Module/Settings/Profile/Index.php:222 -#: src/Module/Settings/Profile/Index.php:243 +#: src/Module/Settings/Profile/Index.php:208 +#: src/Module/Settings/Profile/Index.php:229 msgid "Field Permissions" msgstr "أذونات الحقل" -#: src/Module/Settings/Profile/Index.php:223 -#: src/Module/Settings/Profile/Index.php:244 +#: src/Module/Settings/Profile/Index.php:209 +#: src/Module/Settings/Profile/Index.php:230 msgid "(click to open/close)" msgstr "(أنقر للفتح/للإغلاق)" -#: src/Module/Settings/Profile/Index.php:229 +#: src/Module/Settings/Profile/Index.php:215 msgid "Add a new profile field" msgstr "أضف حقلًا جديدًا للملف الشخصي" -#: src/Module/Settings/Profile/Index.php:252 +#: src/Module/Settings/Profile/Index.php:238 msgid "" "The homepage is verified. A rel=\"me\" link back to your Friendica profile " "page was found on the homepage." msgstr "" -#: src/Module/Settings/Profile/Index.php:254 +#: src/Module/Settings/Profile/Index.php:240 #, php-format msgid "" "To verify your homepage, add a rel=\"me\" link to it, pointing to your " "profile URL (%s)." msgstr "" -#: src/Module/Settings/Profile/Index.php:260 +#: src/Module/Settings/Profile/Index.php:246 msgid "Profile Actions" msgstr "إجراءات الملف الشخصي" -#: src/Module/Settings/Profile/Index.php:261 +#: src/Module/Settings/Profile/Index.php:247 msgid "Edit Profile Details" msgstr "عدّل تفاصيل الملف الشخصي" -#: src/Module/Settings/Profile/Index.php:263 +#: src/Module/Settings/Profile/Index.php:249 msgid "Change Profile Photo" msgstr "غيّر صورة الملف الشخصي" -#: src/Module/Settings/Profile/Index.php:266 +#: src/Module/Settings/Profile/Index.php:252 msgid "Profile picture" msgstr "صورة الملف الشخصي" -#: src/Module/Settings/Profile/Index.php:267 +#: src/Module/Settings/Profile/Index.php:253 msgid "Location" msgstr "الموقع" -#: src/Module/Settings/Profile/Index.php:268 src/Util/Temporal.php:97 -#: src/Util/Temporal.php:99 +#: src/Module/Settings/Profile/Index.php:254 src/Util/Temporal.php:83 +#: src/Util/Temporal.php:85 msgid "Miscellaneous" msgstr "متنوّع" -#: src/Module/Settings/Profile/Index.php:269 +#: src/Module/Settings/Profile/Index.php:255 msgid "Custom Profile Fields" msgstr "حقول مخصصة للملف الشخصي" -#: src/Module/Settings/Profile/Index.php:270 src/Module/Welcome.php:58 +#: src/Module/Settings/Profile/Index.php:256 src/Module/Welcome.php:44 msgid "Upload Profile Photo" msgstr "ارفع صورة الملف الشخصي" -#: src/Module/Settings/Profile/Index.php:271 +#: src/Module/Settings/Profile/Index.php:257 #, php-format msgid "" "Custom fields appear on your profile page.
\n" @@ -11182,396 +11152,396 @@ msgid "" "\t\t\t\tNon-public fields can only be seen by the selected Friendica contacts or the Friendica contacts in the selected circles.
" msgstr "" -#: src/Module/Settings/Profile/Index.php:291 +#: src/Module/Settings/Profile/Index.php:277 msgid "Street Address:" msgstr "عنوان الشارع:" -#: src/Module/Settings/Profile/Index.php:292 +#: src/Module/Settings/Profile/Index.php:278 msgid "Locality/City:" msgstr "المدينة:" -#: src/Module/Settings/Profile/Index.php:293 +#: src/Module/Settings/Profile/Index.php:279 msgid "Region/State:" msgstr "الولاية:" -#: src/Module/Settings/Profile/Index.php:294 +#: src/Module/Settings/Profile/Index.php:280 msgid "Postal/Zip Code:" msgstr "الرمز البريدي:" -#: src/Module/Settings/Profile/Index.php:295 +#: src/Module/Settings/Profile/Index.php:281 msgid "Country:" msgstr "الدّولة:" -#: src/Module/Settings/Profile/Index.php:297 +#: src/Module/Settings/Profile/Index.php:283 msgid "XMPP (Jabber) address:" msgstr "عنوان XMPP (Jabber):" -#: src/Module/Settings/Profile/Index.php:297 +#: src/Module/Settings/Profile/Index.php:283 msgid "" "The XMPP address will be published so that people can follow you there." msgstr "سيتم نشر عنوان XMPP حتى يتمكن الناس من متابعتك هناك." -#: src/Module/Settings/Profile/Index.php:298 +#: src/Module/Settings/Profile/Index.php:284 msgid "Matrix (Element) address:" msgstr "عنوان مايتركس:" -#: src/Module/Settings/Profile/Index.php:298 +#: src/Module/Settings/Profile/Index.php:284 msgid "" "The Matrix address will be published so that people can follow you there." msgstr "سيتم نشر عنوان مايتركس حتى يتمكن الناس من متابعتك هناك." -#: src/Module/Settings/Profile/Index.php:299 +#: src/Module/Settings/Profile/Index.php:285 msgid "Homepage URL:" msgstr "رابط الصفحة الرئيسية:" -#: src/Module/Settings/Profile/Index.php:300 +#: src/Module/Settings/Profile/Index.php:286 msgid "Public Keywords:" msgstr "الكلمات المفتاحية العلنية:" -#: src/Module/Settings/Profile/Index.php:300 +#: src/Module/Settings/Profile/Index.php:286 msgid "(Used for suggesting potential friends, can be seen by others)" msgstr "(يستخدم لاقتراح أصدقاء، يمكن للآخرين رؤيتهم)" -#: src/Module/Settings/Profile/Index.php:301 +#: src/Module/Settings/Profile/Index.php:287 msgid "Private Keywords:" msgstr "الكلمات المفتاحية الخاصة:" -#: src/Module/Settings/Profile/Index.php:301 +#: src/Module/Settings/Profile/Index.php:287 msgid "(Used for searching profiles, never shown to others)" msgstr "(يستخدم للبحث عن ملفات الشخصية، لا يظهر للآخرين)" -#: src/Module/Settings/Profile/Photo/Crop.php:107 -#: src/Module/Settings/Profile/Photo/Crop.php:125 -#: src/Module/Settings/Profile/Photo/Crop.php:143 -#: src/Module/Settings/Profile/Photo/Index.php:100 +#: src/Module/Settings/Profile/Photo/Crop.php:93 +#: src/Module/Settings/Profile/Photo/Crop.php:111 +#: src/Module/Settings/Profile/Photo/Crop.php:129 +#: src/Module/Settings/Profile/Photo/Index.php:86 #, php-format msgid "Image size reduction [%s] failed." msgstr "فشل تقليص حجم الصورة [%s]." -#: src/Module/Settings/Profile/Photo/Crop.php:150 +#: src/Module/Settings/Profile/Photo/Crop.php:136 msgid "" "Shift-reload the page or clear browser cache if the new photo does not " "display immediately." msgstr "إذا لم تظهر الصورة الجديدة أعد تحميل الصفحة مع الضغط على مفتاح Shift، أو امسح ذاكرة التخزين المؤقت للمتصفح." -#: src/Module/Settings/Profile/Photo/Crop.php:155 +#: src/Module/Settings/Profile/Photo/Crop.php:141 msgid "Unable to process image" msgstr "تعذرت معالجة الصورة" -#: src/Module/Settings/Profile/Photo/Crop.php:174 +#: src/Module/Settings/Profile/Photo/Crop.php:160 msgid "Photo not found." msgstr "لم يُعثر على الصورة." -#: src/Module/Settings/Profile/Photo/Crop.php:196 +#: src/Module/Settings/Profile/Photo/Crop.php:182 msgid "Profile picture successfully updated." msgstr "نجح تحديث صورة الملف الشخصي." -#: src/Module/Settings/Profile/Photo/Crop.php:222 -#: src/Module/Settings/Profile/Photo/Crop.php:226 +#: src/Module/Settings/Profile/Photo/Crop.php:208 +#: src/Module/Settings/Profile/Photo/Crop.php:212 msgid "Crop Image" msgstr "قص الصورة" -#: src/Module/Settings/Profile/Photo/Crop.php:223 +#: src/Module/Settings/Profile/Photo/Crop.php:209 msgid "Please adjust the image cropping for optimum viewing." msgstr "اضبط قص الصور للحصول على أفضل عرض ممكن." -#: src/Module/Settings/Profile/Photo/Crop.php:225 +#: src/Module/Settings/Profile/Photo/Crop.php:211 msgid "Use Image As Is" msgstr "استخدم الصورة كما هي" -#: src/Module/Settings/Profile/Photo/Index.php:46 +#: src/Module/Settings/Profile/Photo/Index.php:32 msgid "Missing uploaded image." msgstr "الصورة المرفوعة مفقودة." -#: src/Module/Settings/Profile/Photo/Index.php:123 +#: src/Module/Settings/Profile/Photo/Index.php:109 msgid "Profile Picture Settings" msgstr "إعدادات الصورة الشخصية" -#: src/Module/Settings/Profile/Photo/Index.php:124 +#: src/Module/Settings/Profile/Photo/Index.php:110 msgid "Current Profile Picture" msgstr "الصورة الشخصية الحالية" -#: src/Module/Settings/Profile/Photo/Index.php:125 +#: src/Module/Settings/Profile/Photo/Index.php:111 msgid "Upload Profile Picture" msgstr "ارفع صورة للملف الشخصي" -#: src/Module/Settings/Profile/Photo/Index.php:126 +#: src/Module/Settings/Profile/Photo/Index.php:112 msgid "Upload Picture:" msgstr "ارفع صورة:" -#: src/Module/Settings/Profile/Photo/Index.php:131 +#: src/Module/Settings/Profile/Photo/Index.php:117 msgid "or" msgstr "أو" -#: src/Module/Settings/Profile/Photo/Index.php:133 +#: src/Module/Settings/Profile/Photo/Index.php:119 msgid "skip this step" msgstr "تخطى هذه الخطوة" -#: src/Module/Settings/Profile/Photo/Index.php:135 +#: src/Module/Settings/Profile/Photo/Index.php:121 msgid "select a photo from your photo albums" msgstr "اختر صورة من ألبومك" -#: src/Module/Settings/RemoveMe.php:76 +#: src/Module/Settings/RemoveMe.php:62 msgid "" "There was a validation error, please make sure you're logged in with the " "account you want to remove and try again." msgstr "" -#: src/Module/Settings/RemoveMe.php:76 +#: src/Module/Settings/RemoveMe.php:62 msgid "If this error persists, please contact your administrator." msgstr "" -#: src/Module/Settings/RemoveMe.php:90 -#: src/Navigation/Notifications/Repository/Notify.php:471 -#: src/Navigation/Notifications/Repository/Notify.php:492 +#: src/Module/Settings/RemoveMe.php:76 +#: src/Navigation/Notifications/Repository/Notify.php:457 +#: src/Navigation/Notifications/Repository/Notify.php:478 msgid "[Friendica System Notify]" msgstr "[تنبيه نظام فرنديكا]" -#: src/Module/Settings/RemoveMe.php:90 +#: src/Module/Settings/RemoveMe.php:76 msgid "User deleted their account" msgstr "حذف المستخدم حسابه" -#: src/Module/Settings/RemoveMe.php:91 +#: src/Module/Settings/RemoveMe.php:77 msgid "" "On your Friendica node an user deleted their account. Please ensure that " "their data is removed from the backups." msgstr "حذف مستخدم حسابه على عقدة فرَندِكا خاصتك. من فضلك تأكد أن بياناتهم أُزيلت من النسخ الاحتياطية." -#: src/Module/Settings/RemoveMe.php:92 +#: src/Module/Settings/RemoveMe.php:78 #, php-format msgid "The user id is %d" msgstr "معرف المستخدم هو %d" -#: src/Module/Settings/RemoveMe.php:105 +#: src/Module/Settings/RemoveMe.php:91 msgid "Your account has been successfully removed. Bye bye!" msgstr "" -#: src/Module/Settings/RemoveMe.php:130 +#: src/Module/Settings/RemoveMe.php:116 msgid "Remove My Account" msgstr "أزل حسابي" -#: src/Module/Settings/RemoveMe.php:131 +#: src/Module/Settings/RemoveMe.php:117 msgid "" "This will completely remove your account. Once this has been done it is not " "recoverable." msgstr "سيزال حسابك نهائيًا. لا مجال لتراجع عند انتهائه." -#: src/Module/Settings/RemoveMe.php:136 +#: src/Module/Settings/RemoveMe.php:122 msgid "Please enter your password for verification:" msgstr "يرجى إدخال كلمة المرور للتأكيد:" -#: src/Module/Settings/Server/Action.php:60 +#: src/Module/Settings/Server/Action.php:46 msgid "Do you want to ignore this server?" msgstr "" -#: src/Module/Settings/Server/Action.php:64 +#: src/Module/Settings/Server/Action.php:50 msgid "Do you want to unignore this server?" msgstr "" -#: src/Module/Settings/Server/Action.php:74 -#: src/Module/Settings/Server/Index.php:104 +#: src/Module/Settings/Server/Action.php:60 +#: src/Module/Settings/Server/Index.php:90 msgid "Remote server settings" msgstr "" -#: src/Module/Settings/Server/Action.php:77 +#: src/Module/Settings/Server/Action.php:63 msgid "Server URL" msgstr "" -#: src/Module/Settings/Server/Index.php:78 +#: src/Module/Settings/Server/Index.php:64 msgid "Settings saved" msgstr "" -#: src/Module/Settings/Server/Index.php:105 +#: src/Module/Settings/Server/Index.php:91 msgid "" "Here you can find all the remote servers you have taken individual " "moderation actions against. For a list of servers your node has blocked, " "please check out the Information page." msgstr "" -#: src/Module/Settings/Server/Index.php:110 +#: src/Module/Settings/Server/Index.php:96 msgid "Delete all your settings for the remote server" msgstr "" -#: src/Module/Settings/Server/Index.php:111 +#: src/Module/Settings/Server/Index.php:97 msgid "Save changes" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:69 -#: src/Module/Settings/TwoFactor/Recovery.php:67 -#: src/Module/Settings/TwoFactor/Trusted.php:70 -#: src/Module/Settings/TwoFactor/Verify.php:72 +#: src/Module/Settings/TwoFactor/AppSpecific.php:55 +#: src/Module/Settings/TwoFactor/Recovery.php:53 +#: src/Module/Settings/TwoFactor/Trusted.php:56 +#: src/Module/Settings/TwoFactor/Verify.php:58 msgid "Please enter your password to access this page." msgstr "يرجى إدخال كلمة المرور للوصول إلى هذه الصفحة." -#: src/Module/Settings/TwoFactor/AppSpecific.php:87 +#: src/Module/Settings/TwoFactor/AppSpecific.php:73 msgid "App-specific password generation failed: The description is empty." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:90 +#: src/Module/Settings/TwoFactor/AppSpecific.php:76 msgid "" "App-specific password generation failed: This description already exists." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:94 +#: src/Module/Settings/TwoFactor/AppSpecific.php:80 msgid "New app-specific password generated." msgstr "أُنشئت كلمة مرور جديدة خاصة بالتطبيق بنجاح." -#: src/Module/Settings/TwoFactor/AppSpecific.php:100 +#: src/Module/Settings/TwoFactor/AppSpecific.php:86 msgid "App-specific passwords successfully revoked." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:110 +#: src/Module/Settings/TwoFactor/AppSpecific.php:96 msgid "App-specific password successfully revoked." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:131 +#: src/Module/Settings/TwoFactor/AppSpecific.php:117 msgid "Two-factor app-specific passwords" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:133 +#: src/Module/Settings/TwoFactor/AppSpecific.php:119 msgid "" "App-specific passwords are randomly generated passwords used instead your" " regular password to authenticate your account on third-party applications " "that don't support two-factor authentication.
" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:134 +#: src/Module/Settings/TwoFactor/AppSpecific.php:120 msgid "" "Make sure to copy your new app-specific password now. You won’t be able to " "see it again!" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:138 +#: src/Module/Settings/TwoFactor/AppSpecific.php:124 msgid "Last Used" msgstr "آخر استخدام" -#: src/Module/Settings/TwoFactor/AppSpecific.php:139 +#: src/Module/Settings/TwoFactor/AppSpecific.php:125 msgid "Revoke" msgstr "أبطل" -#: src/Module/Settings/TwoFactor/AppSpecific.php:140 +#: src/Module/Settings/TwoFactor/AppSpecific.php:126 msgid "Revoke All" msgstr "أبطل الكل" -#: src/Module/Settings/TwoFactor/AppSpecific.php:143 +#: src/Module/Settings/TwoFactor/AppSpecific.php:129 msgid "" "When you generate a new app-specific password, you must use it right away, " "it will be shown to you once after you generate it." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:144 +#: src/Module/Settings/TwoFactor/AppSpecific.php:130 msgid "Generate new app-specific password" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:145 +#: src/Module/Settings/TwoFactor/AppSpecific.php:131 msgid "Friendiqa on my Fairphone 2..." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:146 +#: src/Module/Settings/TwoFactor/AppSpecific.php:132 msgid "Generate" msgstr "ولّد" -#: src/Module/Settings/TwoFactor/Index.php:88 +#: src/Module/Settings/TwoFactor/Index.php:74 msgid "Two-factor authentication successfully disabled." msgstr "عُطل الاستيثاق بعاملين." -#: src/Module/Settings/TwoFactor/Index.php:141 +#: src/Module/Settings/TwoFactor/Index.php:127 msgid "" "Use an application on a mobile device to get two-factor authentication " "codes when prompted on login.
" msgstr "استخدام تطبيق هاتف للحصول على رموز الاستيثاق بعاملين عند الولوج.
" -#: src/Module/Settings/TwoFactor/Index.php:145 +#: src/Module/Settings/TwoFactor/Index.php:131 msgid "Authenticator app" msgstr "تطبيق الاستيثاق" -#: src/Module/Settings/TwoFactor/Index.php:146 +#: src/Module/Settings/TwoFactor/Index.php:132 msgid "Configured" msgstr "مضبوط" -#: src/Module/Settings/TwoFactor/Index.php:146 +#: src/Module/Settings/TwoFactor/Index.php:132 msgid "Not Configured" msgstr "غير مضبوط" -#: src/Module/Settings/TwoFactor/Index.php:147 +#: src/Module/Settings/TwoFactor/Index.php:133 msgid "You haven't finished configuring your authenticator app.
" msgstr "لم تنته من ضبط تطبيق الاستيثاق
" -#: src/Module/Settings/TwoFactor/Index.php:148 +#: src/Module/Settings/TwoFactor/Index.php:134 msgid "Your authenticator app is correctly configured.
" msgstr "ضُبط تطبيق الاستيثاق.
" -#: src/Module/Settings/TwoFactor/Index.php:150 +#: src/Module/Settings/TwoFactor/Index.php:136 msgid "Recovery codes" msgstr "رموز الاستعادة" -#: src/Module/Settings/TwoFactor/Index.php:151 +#: src/Module/Settings/TwoFactor/Index.php:137 msgid "Remaining valid codes" msgstr "رموز الاستعادة المتبقية" -#: src/Module/Settings/TwoFactor/Index.php:153 +#: src/Module/Settings/TwoFactor/Index.php:139 msgid "" "These one-use codes can replace an authenticator app code in case you " "have lost access to it.
" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:155 +#: src/Module/Settings/TwoFactor/Index.php:141 msgid "App-specific passwords" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:156 +#: src/Module/Settings/TwoFactor/Index.php:142 msgid "Generated app-specific passwords" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:158 +#: src/Module/Settings/TwoFactor/Index.php:144 msgid "" "These randomly generated passwords allow you to authenticate on apps not " "supporting two-factor authentication.
" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:161 +#: src/Module/Settings/TwoFactor/Index.php:147 msgid "Current password:" msgstr "كلمة المرور الحالية:" -#: src/Module/Settings/TwoFactor/Index.php:161 +#: src/Module/Settings/TwoFactor/Index.php:147 msgid "" "You need to provide your current password to change two-factor " "authentication settings." msgstr "أدخل كلمة المرور لتغيير إعدادات الاستيثاق بعاملين." -#: src/Module/Settings/TwoFactor/Index.php:162 +#: src/Module/Settings/TwoFactor/Index.php:148 msgid "Enable two-factor authentication" msgstr "فعّل الاستيثاق بعاملين" -#: src/Module/Settings/TwoFactor/Index.php:163 +#: src/Module/Settings/TwoFactor/Index.php:149 msgid "Disable two-factor authentication" msgstr "عطّل الاستيثاق بعاملين" -#: src/Module/Settings/TwoFactor/Index.php:164 +#: src/Module/Settings/TwoFactor/Index.php:150 msgid "Show recovery codes" msgstr "أظهر رموز الاستعادة" -#: src/Module/Settings/TwoFactor/Index.php:165 +#: src/Module/Settings/TwoFactor/Index.php:151 msgid "Manage app-specific passwords" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:166 +#: src/Module/Settings/TwoFactor/Index.php:152 msgid "Manage trusted browsers" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:167 +#: src/Module/Settings/TwoFactor/Index.php:153 msgid "Finish app configuration" msgstr "أنه ضبط التطبيق" -#: src/Module/Settings/TwoFactor/Recovery.php:83 +#: src/Module/Settings/TwoFactor/Recovery.php:69 msgid "New recovery codes successfully generated." msgstr "نجح توليد رموز الاستعادة." -#: src/Module/Settings/TwoFactor/Recovery.php:109 +#: src/Module/Settings/TwoFactor/Recovery.php:95 msgid "Two-factor recovery codes" msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:111 +#: src/Module/Settings/TwoFactor/Recovery.php:97 msgid "" "Recovery codes can be used to access your account in the event you lose " "access to your device and cannot receive two-factor authentication " @@ -11580,68 +11550,68 @@ msgid "" "account.
" msgstr "يمكن استخدام رموز الاستعادة للوصول إلى حسابك في حال فقدت الوصول إلى جهازك ولا يمكن أن تتلقى رموز الاستيثاق بعاملين.
احتفظ بها في مكان آمن! إذا فقدت جهازك ولم يكن لديك رموز الاستعادة فستفقد الوصول إلى حسابك.
" -#: src/Module/Settings/TwoFactor/Recovery.php:113 +#: src/Module/Settings/TwoFactor/Recovery.php:99 msgid "" "When you generate new recovery codes, you must copy the new codes. Your old " "codes won’t work anymore." msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:114 +#: src/Module/Settings/TwoFactor/Recovery.php:100 msgid "Generate new recovery codes" msgstr "ولّد رموز الاستعادة" -#: src/Module/Settings/TwoFactor/Recovery.php:116 +#: src/Module/Settings/TwoFactor/Recovery.php:102 msgid "Next: Verification" msgstr "التالي: التحقق" -#: src/Module/Settings/TwoFactor/Trusted.php:87 +#: src/Module/Settings/TwoFactor/Trusted.php:73 msgid "Trusted browsers successfully removed." msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:97 +#: src/Module/Settings/TwoFactor/Trusted.php:83 msgid "Trusted browser successfully removed." msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:139 +#: src/Module/Settings/TwoFactor/Trusted.php:125 msgid "Two-factor Trusted Browsers" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:140 +#: src/Module/Settings/TwoFactor/Trusted.php:126 msgid "" "Trusted browsers are individual browsers you chose to skip two-factor " "authentication to access Friendica. Please use this feature sparingly, as it" " can negate the benefit of two-factor authentication." msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:141 +#: src/Module/Settings/TwoFactor/Trusted.php:127 msgid "Device" msgstr "الجهاز" -#: src/Module/Settings/TwoFactor/Trusted.php:142 +#: src/Module/Settings/TwoFactor/Trusted.php:128 msgid "OS" msgstr "نظام التشغيل" -#: src/Module/Settings/TwoFactor/Trusted.php:144 +#: src/Module/Settings/TwoFactor/Trusted.php:130 msgid "Trusted" msgstr "موثوق" -#: src/Module/Settings/TwoFactor/Trusted.php:145 +#: src/Module/Settings/TwoFactor/Trusted.php:131 msgid "Created At" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:146 +#: src/Module/Settings/TwoFactor/Trusted.php:132 msgid "Last Use" msgstr "آخر استخدام" -#: src/Module/Settings/TwoFactor/Trusted.php:148 +#: src/Module/Settings/TwoFactor/Trusted.php:134 msgid "Remove All" msgstr "أزل الكل" -#: src/Module/Settings/TwoFactor/Verify.php:94 +#: src/Module/Settings/TwoFactor/Verify.php:80 msgid "Two-factor authentication successfully activated." msgstr "فُعّل الاستيثاق بعاملين." -#: src/Module/Settings/TwoFactor/Verify.php:128 +#: src/Module/Settings/TwoFactor/Verify.php:114 #, php-format msgid "" "Or you can submit the authentication settings manually:
\n" @@ -11661,105 +11631,105 @@ msgid "" "" msgstr "أو يمكنك إرسال إعدادات الاستيثاق يدوياً:
\nPlease scan this QR Code with your authenticator app and submit the " "provided code.
" msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:152 +#: src/Module/Settings/TwoFactor/Verify.php:138 #, php-format msgid "" "Or you can open the following URL in your mobile device:
" msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:159 +#: src/Module/Settings/TwoFactor/Verify.php:145 msgid "Verify code and enable two-factor authentication" msgstr "تحقق من الرمز و فعّل الاستيثاق بعاملين" -#: src/Module/Settings/UserExport.php:90 +#: src/Module/Settings/UserExport.php:76 msgid "Export account" msgstr "صدّر الحساب" -#: src/Module/Settings/UserExport.php:90 +#: src/Module/Settings/UserExport.php:76 msgid "" "Export your account info and contacts. Use this to make a backup of your " "account and/or to move it to another server." msgstr "صدّر معلومات حسابك ومتراسليك. استخدمه لإنشاء نسخة احتياطية من حسابك أو لنقله إلى خادم آخر." -#: src/Module/Settings/UserExport.php:91 +#: src/Module/Settings/UserExport.php:77 msgid "Export all" msgstr "صدّر الكل" -#: src/Module/Settings/UserExport.php:91 +#: src/Module/Settings/UserExport.php:77 msgid "" "Export your account info, contacts and all your items as json. Could be a " "very big file, and could take a lot of time. Use this to make a full backup " "of your account (photos are not exported)" msgstr "صدّر معلومات حسابك ومتراسليك وجميع العناصر الخاصة بك كملف json. قد يستغرق وقتًا طويلًا وينتج عنه ملف كبير. استخدمه لإنشاء نسخة احتياطية كاملة من حسابك (الصور غير مضمنة)" -#: src/Module/Settings/UserExport.php:92 +#: src/Module/Settings/UserExport.php:78 msgid "Export Contacts to CSV" msgstr "صدّر المتراسلين الى ملف CSV" -#: src/Module/Settings/UserExport.php:92 +#: src/Module/Settings/UserExport.php:78 msgid "" "Export the list of the accounts you are following as CSV file. Compatible to" " e.g. Mastodon." msgstr "صدّر قائمة الحسابات المتابَعة إلى ملف csv. هذا الملف متوافق مع ماستدون." -#: src/Module/Special/DisplayNotFound.php:35 +#: src/Module/Special/DisplayNotFound.php:21 msgid "The top-level post isn't visible." msgstr "" -#: src/Module/Special/DisplayNotFound.php:36 +#: src/Module/Special/DisplayNotFound.php:22 msgid "The top-level post was deleted." msgstr "" -#: src/Module/Special/DisplayNotFound.php:37 +#: src/Module/Special/DisplayNotFound.php:23 msgid "" "This node has blocked the top-level author or the author of the shared post." msgstr "" -#: src/Module/Special/DisplayNotFound.php:38 +#: src/Module/Special/DisplayNotFound.php:24 msgid "" "You have ignored or blocked the top-level author or the author of the shared" " post." msgstr "" -#: src/Module/Special/DisplayNotFound.php:39 +#: src/Module/Special/DisplayNotFound.php:25 msgid "" "You have ignored the top-level author's server or the shared post author's " "server." msgstr "" -#: src/Module/Special/DisplayNotFound.php:45 +#: src/Module/Special/DisplayNotFound.php:31 msgid "Conversation Not Found" msgstr "" -#: src/Module/Special/DisplayNotFound.php:46 +#: src/Module/Special/DisplayNotFound.php:32 msgid "Unfortunately, the requested conversation isn't available to you." msgstr "" -#: src/Module/Special/DisplayNotFound.php:47 +#: src/Module/Special/DisplayNotFound.php:33 msgid "Possible reasons include:" msgstr "" -#: src/Module/Special/HTTPException.php:78 +#: src/Module/Special/HTTPException.php:64 msgid "Stack trace:" msgstr "" -#: src/Module/Special/HTTPException.php:83 +#: src/Module/Special/HTTPException.php:69 #, php-format msgid "Exception thrown in %s:%d" msgstr "" -#: src/Module/Tos.php:58 src/Module/Tos.php:107 +#: src/Module/Tos.php:44 src/Module/Tos.php:93 msgid "" "At the time of registration, and for providing communications between the " "user account and their contacts, the user has to provide a display name (pen" @@ -11772,14 +11742,14 @@ msgid "" "settings, it is not necessary for communication." msgstr "" -#: src/Module/Tos.php:59 src/Module/Tos.php:108 +#: src/Module/Tos.php:45 src/Module/Tos.php:94 msgid "" "This data is required for communication and is passed on to the nodes of the" " communication partners and is stored there. Users can enter additional " "private data that may be transmitted to the communication partners accounts." msgstr "" -#: src/Module/Tos.php:60 src/Module/Tos.php:109 +#: src/Module/Tos.php:46 src/Module/Tos.php:95 #, php-format msgid "" "At any point in time a logged in user can export their account data from the" @@ -11790,98 +11760,98 @@ msgid "" "from the nodes of the communication partners." msgstr "" -#: src/Module/Tos.php:63 src/Module/Tos.php:106 +#: src/Module/Tos.php:49 src/Module/Tos.php:92 msgid "Privacy Statement" msgstr "بيان الخصوصية" -#: src/Module/Tos.php:103 +#: src/Module/Tos.php:89 msgid "Rules" msgstr "" -#: src/Module/Update/Display.php:45 +#: src/Module/Update/Display.php:31 msgid "Parameter uri_id is missing." msgstr "" -#: src/Module/Update/Display.php:55 +#: src/Module/Update/Display.php:41 msgid "The requested item doesn't exist or has been deleted." msgstr "العنصر غير موجود أو حُذف." -#: src/Module/User/Delegation.php:146 +#: src/Module/User/Delegation.php:132 #, php-format msgid "You are now logged in as %s" msgstr "" -#: src/Module/User/Delegation.php:185 +#: src/Module/User/Delegation.php:171 msgid "Switch between your accounts" msgstr "بدّل الحساب" -#: src/Module/User/Delegation.php:186 +#: src/Module/User/Delegation.php:172 msgid "Manage your accounts" msgstr "إدارة حسابك" -#: src/Module/User/Delegation.php:187 +#: src/Module/User/Delegation.php:173 msgid "" "Toggle between different identities or community/group pages which share " "your account details or which you have been granted \"manage\" permissions" msgstr "تنقل بين مختلف الهويات أو الصفحات (المجموعات / المجتمعات) التي تملكها أو التي خوّل لك إدارتها" -#: src/Module/User/Delegation.php:188 +#: src/Module/User/Delegation.php:174 msgid "Select an identity to manage: " msgstr "" -#: src/Module/User/Import.php:104 +#: src/Module/User/Import.php:90 msgid "User imports on closed servers can only be done by an administrator." msgstr "يمكن للمدراء فقط استيراد المستخدمين في الخوادم المغلقة." -#: src/Module/User/Import.php:120 +#: src/Module/User/Import.php:106 msgid "Move account" msgstr "أنقل الحساب" -#: src/Module/User/Import.php:121 +#: src/Module/User/Import.php:107 msgid "You can import an account from another Friendica server." msgstr "يمكنك استيراد حساب من خادم فرَندِكا آخر." -#: src/Module/User/Import.php:122 +#: src/Module/User/Import.php:108 msgid "" "You need to export your account from the old server and upload it here. We " "will recreate your old account here with all your contacts. We will try also" " to inform your friends that you moved here." msgstr "تحتاج إلى تصدير حسابك من الخادم القديم ورفعه هنا. سوف نقوم بإعادة إنشاء حسابك القديم هنا مع إضافة كل المتراسلين. سوف نحاول أيضًا إبلاغهم أنك انتقلت إلى هنا." -#: src/Module/User/Import.php:123 +#: src/Module/User/Import.php:109 msgid "" "This feature is experimental. We can't import contacts from the OStatus " "network (GNU Social/Statusnet) or from Diaspora" msgstr "هذه الميزة تجريبية. لا يمكن استيراد متراسلين من شبكة OStatus (GNU Social/Statusnet) أو من شبكة دياسبورا" -#: src/Module/User/Import.php:124 +#: src/Module/User/Import.php:110 msgid "Account file" msgstr "ملف الحساب" -#: src/Module/User/Import.php:124 +#: src/Module/User/Import.php:110 msgid "" "To export your account, go to \"Settings->Export your personal data\" and " "select \"Export account\"" msgstr "لتصدير حسابك، انتقل إلى \"إعدادات-> تصدير بياناتك الشخصية\" واختر \"صدر الحساب\"" -#: src/Module/User/Import.php:218 +#: src/Module/User/Import.php:204 msgid "Error decoding account file" msgstr "خطأ أثناء فك ترميز ملف الحساب" -#: src/Module/User/Import.php:223 +#: src/Module/User/Import.php:209 msgid "Error! No version data in file! This is not a Friendica account file?" msgstr "خطأ! لا توجد بيانات إصدار في الملف! هذا ليس ملف شخصي لفرنديكا؟" -#: src/Module/User/Import.php:231 +#: src/Module/User/Import.php:217 #, php-format msgid "User '%s' already exists on this server!" msgstr "المستخدم '%s' موجود سلفًا على هذا الخادم!" -#: src/Module/User/Import.php:268 +#: src/Module/User/Import.php:254 msgid "User creation error" msgstr "خطأ أثناء إنشاء المستخدم" -#: src/Module/User/Import.php:317 +#: src/Module/User/Import.php:303 #, php-format msgid "%d contact not imported" msgid_plural "%d contacts not imported" @@ -11892,23 +11862,23 @@ msgstr[3] "لم يستورد %d متراسلين" msgstr[4] "لم يستورد %d متراسلًا" msgstr[5] "لم يستورد %d متراسل" -#: src/Module/User/Import.php:366 +#: src/Module/User/Import.php:352 msgid "User profile creation error" msgstr "خطأ أثناء إنشاء الملف الشخصي للمستخدم" -#: src/Module/User/Import.php:417 +#: src/Module/User/Import.php:403 msgid "Done. You can now login with your username and password" msgstr "تم. يمكنك الآن الولوج باستخدام اسم المستخدم وكلمة المرور" -#: src/Module/Welcome.php:44 +#: src/Module/Welcome.php:30 msgid "Welcome to Friendica" msgstr "مرحبا بك في فرَندِكا" -#: src/Module/Welcome.php:45 +#: src/Module/Welcome.php:31 msgid "New Member Checklist" msgstr "" -#: src/Module/Welcome.php:46 +#: src/Module/Welcome.php:32 msgid "" "We would like to offer some tips and links to help make your experience " "enjoyable. Click any item to visit the relevant page. A link to this page " @@ -11916,33 +11886,33 @@ msgid "" "registration and then will quietly disappear." msgstr "نود أن نقدم بعض النصائح والروابط للمساعدة في جعل تجربتك ممتعة. انقر فوق أي عنصر لزيارة الصفحة ذات الصلة. رابط لهذه الصفحة سيكون مرئيًا في الصفحة الرئيسية لمدة أسبوعين بعد تاريخ تسجيلك." -#: src/Module/Welcome.php:48 +#: src/Module/Welcome.php:34 msgid "Getting Started" msgstr "بدء الاستخدام" -#: src/Module/Welcome.php:49 +#: src/Module/Welcome.php:35 msgid "Friendica Walk-Through" msgstr "جولة في فرَندِكا" -#: src/Module/Welcome.php:50 +#: src/Module/Welcome.php:36 msgid "" "On your Quick Start page - find a brief introduction to your " "profile and network tabs, make some new connections, and find some groups to" " join." msgstr "" -#: src/Module/Welcome.php:53 +#: src/Module/Welcome.php:39 msgid "Go to Your Settings" msgstr "انتقل إلى إعداداتك" -#: src/Module/Welcome.php:54 +#: src/Module/Welcome.php:40 msgid "" "On your Settings page - change your initial password. Also make a " "note of your Identity Address. This looks just like an email address - and " "will be useful in making friends on the free social web." msgstr "على صفحة الإعدادات - قم بتغيير كلمة المرور الأولية. ولا تنسى حفظ عنوان معرفك. يبدو كعنوان بريد إلكتروني - ليتسنى صنع صداقات على مختلف الشبكات الاجتماعية الحرة." -#: src/Module/Welcome.php:55 +#: src/Module/Welcome.php:41 msgid "" "Review the other settings, particularly the privacy settings. An unpublished" " directory listing is like having an unlisted phone number. In general, you " @@ -11950,77 +11920,77 @@ msgid "" "potential friends know exactly how to find you." msgstr "" -#: src/Module/Welcome.php:59 +#: src/Module/Welcome.php:45 msgid "" "Upload a profile photo if you have not done so already. Studies have shown " "that people with real photos of themselves are ten times more likely to make" " friends than people who do not." msgstr "ارفع صورة لملفك الشخصي إذا لم تقم بذلك. تظهر الدراسات أن احتمال صنع صداقات للناس الذين يستخدمون صورهم الحقيقية هو أكثر بعشر مرات من الناس الذي لا يفعلون." -#: src/Module/Welcome.php:60 +#: src/Module/Welcome.php:46 msgid "Edit Your Profile" msgstr "عدّل ملفك الشخصي" -#: src/Module/Welcome.php:61 +#: src/Module/Welcome.php:47 msgid "" "Edit your default profile to your liking. Review the " "settings for hiding your list of friends and hiding the profile from unknown" " visitors." msgstr "عدّل ملفك الشخصي الافتراضي كيفما تحب. و راجع الإعدادات لإخفاء قائمة أصدقائك وملفك الشخصي عن الزوار." -#: src/Module/Welcome.php:62 +#: src/Module/Welcome.php:48 msgid "Profile Keywords" msgstr "الكلمات المفتاحية للملف الشخصي" -#: src/Module/Welcome.php:63 +#: src/Module/Welcome.php:49 msgid "" "Set some public keywords for your profile which describe your interests. We " "may be able to find other people with similar interests and suggest " "friendships." msgstr "عيّن بعض الكلمات المفتاحية العامة لملفك الشخصي التي تصف اهتماماتك. قد نتمكن من العثور على أشخاص آخرين ذوي اهتمامات مماثلة لنقترح عليك مصادقتهم." -#: src/Module/Welcome.php:65 +#: src/Module/Welcome.php:51 msgid "Connecting" msgstr "يتصل" -#: src/Module/Welcome.php:67 +#: src/Module/Welcome.php:53 msgid "Importing Emails" msgstr "يستورد البرائد الالكترونية" -#: src/Module/Welcome.php:68 +#: src/Module/Welcome.php:54 msgid "" "Enter your email access information on your Connector Settings page if you " "wish to import and interact with friends or mailing lists from your email " "INBOX" msgstr "" -#: src/Module/Welcome.php:69 +#: src/Module/Welcome.php:55 msgid "Go to Your Contacts Page" msgstr "انتقل الى صفحة المتراسلين" -#: src/Module/Welcome.php:70 +#: src/Module/Welcome.php:56 msgid "" "Your Contacts page is your gateway to managing friendships and connecting " "with friends on other networks. Typically you enter their address or site " "URL in the Add New Contact dialog." msgstr "في صفحة المتراسلين يمكنك إدارة وإضافة متراسلين. يمكنك إدخال المعرّف أو رابط الصفحة الشخصية في نموذج أضف متراسلًا جديدا." -#: src/Module/Welcome.php:71 +#: src/Module/Welcome.php:57 msgid "Go to Your Site's Directory" msgstr "انتقل إلى دليل موقعك" -#: src/Module/Welcome.php:72 +#: src/Module/Welcome.php:58 msgid "" "The Directory page lets you find other people in this network or other " "federated sites. Look for a Connect or Follow link on " "their profile page. Provide your own Identity Address if requested." msgstr "تتيح لك صفحة الدليل العثور على أشخاص آخرين في هذه الشبكة أو عبر الشبكة الموحدة. ابحث عن رابط اتصل أو تابع في صفحة ملفهم الشخصي. قدم عنوان معرفك إذا طلب منك." -#: src/Module/Welcome.php:73 +#: src/Module/Welcome.php:59 msgid "Finding New People" msgstr "إيجاد أشخاص جدد" -#: src/Module/Welcome.php:74 +#: src/Module/Welcome.php:60 msgid "" "On the side panel of the Contacts page are several tools to find new " "friends. We can match people by interest, look up people by name or " @@ -12029,412 +11999,408 @@ msgid "" "hours." msgstr "في الشريط الجانبي لصفحة المتراسلين يمكنك للعثور على عدة طرق للعثور على أصدقاء جدد. يمكننا مطابقة الأشخاص بناءً على اهتماماتهم، والبحث عن الأصدقاء بالاسم أو الاهتمام، وتقديم اقتراحات بناءً على هيكلية الشبكة. على موقع جديد تمامًا، يجب أن تبدأ اقتراحات الاشتراك في الظهور بعد 24 ساعة." -#: src/Module/Welcome.php:77 +#: src/Module/Welcome.php:63 msgid "Add Your Contacts To Circle" msgstr "" -#: src/Module/Welcome.php:78 +#: src/Module/Welcome.php:64 msgid "" "Once you have made some friends, organize them into private conversation " "circles from the sidebar of your Contacts page and then you can interact " "with each circle privately on your Network page." msgstr "" -#: src/Module/Welcome.php:80 +#: src/Module/Welcome.php:66 msgid "Why Aren't My Posts Public?" msgstr "لماذا لا تنشر مشاركاتي للعموم؟" -#: src/Module/Welcome.php:81 +#: src/Module/Welcome.php:67 msgid "" "Friendica respects your privacy. By default, your posts will only show up to" " people you've added as friends. For more information, see the help section " "from the link above." msgstr "فرَندِكا تحترم خصوصيتك. ولهذا افتراضيا ستظهر مشاركاتك لأصدقائك فقط. للمزيد من المعلومات راجع قسم المساعدة عبر الرابط أعلاه." -#: src/Module/Welcome.php:83 +#: src/Module/Welcome.php:69 msgid "Getting Help" msgstr "الحصول على مساعدة" -#: src/Module/Welcome.php:84 +#: src/Module/Welcome.php:70 msgid "Go to the Help Section" msgstr "انتقل إلى القسم المساعدة" -#: src/Module/Welcome.php:85 +#: src/Module/Welcome.php:71 msgid "" "Our help pages may be consulted for detail on other program" " features and resources." msgstr "يمكنك الاطلاع على صفحات المساعدة للحصول على تفاصيل حول ميزات البرامج الأخرى ومصادرها." -#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:161 +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:147 msgid "{0} wants to follow you" msgstr "{0} يريد متابعتك" -#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:163 +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:149 msgid "{0} has started following you" msgstr "" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:96 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:82 #, php-format msgid "%s liked %s's post" msgstr "أُعجب %s بمشاركة %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:108 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:94 #, php-format msgid "%s disliked %s's post" msgstr "لم يُعجب %s بمشاركة %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:120 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:106 #, php-format msgid "%s is attending %s's event" msgstr "يحضر %s حدث %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:132 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:118 #, php-format msgid "%s is not attending %s's event" msgstr "لن يحضر %s حدث %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:144 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:130 #, php-format msgid "%s may attending %s's event" msgstr "قد يحضر %s حدث %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:174 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:160 #, php-format msgid "%s is now friends with %s" msgstr "أصبح %s صديقا ل %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:341 -#: src/Navigation/Notifications/Factory/FormattedNotify.php:379 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:327 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:365 #, php-format msgid "%s commented on %s's post" msgstr "علق %s على مشاركة %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:378 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:364 #, php-format msgid "%s created a new post" msgstr "أنشأ %s مشاركة جديدة" -#: src/Navigation/Notifications/Factory/Introduction.php:132 +#: src/Navigation/Notifications/Factory/Introduction.php:118 msgid "Friend Suggestion" msgstr "اقتراح صديق" -#: src/Navigation/Notifications/Factory/Introduction.php:158 +#: src/Navigation/Notifications/Factory/Introduction.php:144 msgid "Friend/Connect Request" msgstr "طلب صداقة/اقتران" -#: src/Navigation/Notifications/Factory/Introduction.php:158 -msgid "New Follower" -msgstr "متابِع جديد" - -#: src/Navigation/Notifications/Factory/Notification.php:134 +#: src/Navigation/Notifications/Factory/Notification.php:120 #, php-format msgid "%1$s wants to follow you" msgstr "%1$s يريد متابعتك" -#: src/Navigation/Notifications/Factory/Notification.php:136 +#: src/Navigation/Notifications/Factory/Notification.php:122 #, php-format msgid "%1$s has started following you" msgstr "بدأ %1$s متابعتك" -#: src/Navigation/Notifications/Factory/Notification.php:208 +#: src/Navigation/Notifications/Factory/Notification.php:194 #, php-format msgid "%1$s liked your comment on %2$s" msgstr "أٌعجب %1$s بتعليقك على %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:211 +#: src/Navigation/Notifications/Factory/Notification.php:197 #, php-format msgid "%1$s liked your post %2$s" msgstr "أعجب %1$s بمشاركتك %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:218 +#: src/Navigation/Notifications/Factory/Notification.php:204 #, php-format msgid "%1$s disliked your comment on %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:221 +#: src/Navigation/Notifications/Factory/Notification.php:207 #, php-format msgid "%1$s disliked your post %2$s" msgstr "لم يعجب %1$s مشاركتك %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:228 +#: src/Navigation/Notifications/Factory/Notification.php:214 #, php-format msgid "%1$s shared your comment %2$s" msgstr "شارك %1$s تعليقك %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:231 -#: src/Navigation/Notifications/Factory/Notification.php:316 +#: src/Navigation/Notifications/Factory/Notification.php:217 +#: src/Navigation/Notifications/Factory/Notification.php:302 #, php-format msgid "%1$s shared your post %2$s" msgstr "شارك %1$s مشاركتك %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:235 -#: src/Navigation/Notifications/Factory/Notification.php:305 +#: src/Navigation/Notifications/Factory/Notification.php:221 +#: src/Navigation/Notifications/Factory/Notification.php:291 #, php-format msgid "%1$s shared the post %2$s from %3$s" msgstr "شارك %1$s المشاركة %2$s من %3$s" -#: src/Navigation/Notifications/Factory/Notification.php:237 -#: src/Navigation/Notifications/Factory/Notification.php:307 +#: src/Navigation/Notifications/Factory/Notification.php:223 +#: src/Navigation/Notifications/Factory/Notification.php:293 #, php-format msgid "%1$s shared a post from %3$s" msgstr "شارك %1$s مشاركة %3$s" -#: src/Navigation/Notifications/Factory/Notification.php:239 -#: src/Navigation/Notifications/Factory/Notification.php:309 +#: src/Navigation/Notifications/Factory/Notification.php:225 +#: src/Navigation/Notifications/Factory/Notification.php:295 #, php-format msgid "%1$s shared the post %2$s" msgstr "شارك %1$s المشاركة %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:241 -#: src/Navigation/Notifications/Factory/Notification.php:311 +#: src/Navigation/Notifications/Factory/Notification.php:227 +#: src/Navigation/Notifications/Factory/Notification.php:297 #, php-format msgid "%1$s shared a post" msgstr "شارك %1$s مشاركة" -#: src/Navigation/Notifications/Factory/Notification.php:249 +#: src/Navigation/Notifications/Factory/Notification.php:235 #, php-format msgid "%1$s wants to attend your event %2$s" msgstr "يريد %1$s حضور حدَثك %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:256 +#: src/Navigation/Notifications/Factory/Notification.php:242 #, php-format msgid "%1$s does not want to attend your event %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:263 +#: src/Navigation/Notifications/Factory/Notification.php:249 #, php-format msgid "%1$s maybe wants to attend your event %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:270 +#: src/Navigation/Notifications/Factory/Notification.php:256 #, php-format msgid "%1$s tagged you on %2$s" msgstr "ذكرك %1$s في %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:274 +#: src/Navigation/Notifications/Factory/Notification.php:260 #, php-format msgid "%1$s replied to you on %2$s" msgstr "رد %1$s عليك في %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:278 +#: src/Navigation/Notifications/Factory/Notification.php:264 #, php-format msgid "%1$s commented in your thread %2$s" msgstr "علق %1$s على نقاشك %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:282 +#: src/Navigation/Notifications/Factory/Notification.php:268 #, php-format msgid "%1$s commented on your comment %2$s" msgstr "علق %1$s على تعليقك %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:289 +#: src/Navigation/Notifications/Factory/Notification.php:275 #, php-format msgid "%1$s commented in their thread %2$s" msgstr "علق %1$s على نقاشه %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:291 +#: src/Navigation/Notifications/Factory/Notification.php:277 #, php-format msgid "%1$s commented in their thread" msgstr "علق %1$s على نقاشه" -#: src/Navigation/Notifications/Factory/Notification.php:293 +#: src/Navigation/Notifications/Factory/Notification.php:279 #, php-format msgid "%1$s commented in the thread %2$s from %3$s" msgstr "علق %1$s على المحدثة %2$s من %3$s" -#: src/Navigation/Notifications/Factory/Notification.php:295 +#: src/Navigation/Notifications/Factory/Notification.php:281 #, php-format msgid "%1$s commented in the thread from %3$s" msgstr "علق %1$s على نقاش %3$s" -#: src/Navigation/Notifications/Factory/Notification.php:300 +#: src/Navigation/Notifications/Factory/Notification.php:286 #, php-format msgid "%1$s commented on your thread %2$s" msgstr "علق %1$s على نقاشك %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:225 -#: src/Navigation/Notifications/Repository/Notify.php:754 +#: src/Navigation/Notifications/Repository/Notify.php:211 +#: src/Navigation/Notifications/Repository/Notify.php:740 msgid "[Friendica:Notify]" msgstr "[فرنديكا: تنبيه]" -#: src/Navigation/Notifications/Repository/Notify.php:293 +#: src/Navigation/Notifications/Repository/Notify.php:279 #, php-format msgid "%s New mail received at %s" msgstr "أُستلم %s بريد جديد على %s" -#: src/Navigation/Notifications/Repository/Notify.php:295 +#: src/Navigation/Notifications/Repository/Notify.php:281 #, php-format msgid "%1$s sent you a new private message at %2$s." msgstr "أرسل %1$s لك رسالة خاصة على %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:296 +#: src/Navigation/Notifications/Repository/Notify.php:282 msgid "a private message" msgstr "رسالة خاصة" -#: src/Navigation/Notifications/Repository/Notify.php:296 +#: src/Navigation/Notifications/Repository/Notify.php:282 #, php-format msgid "%1$s sent you %2$s." msgstr "أرسل %1$s لك %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:298 +#: src/Navigation/Notifications/Repository/Notify.php:284 #, php-format msgid "Please visit %s to view and/or reply to your private messages." msgstr "من فضلك زر %s لعرض و/أو الرد على الرسائل الخاصة." -#: src/Navigation/Notifications/Repository/Notify.php:328 +#: src/Navigation/Notifications/Repository/Notify.php:314 #, php-format msgid "%1$s commented on %2$s's %3$s %4$s" msgstr "علق %1$s على %3$s %2$s %4$s" -#: src/Navigation/Notifications/Repository/Notify.php:333 +#: src/Navigation/Notifications/Repository/Notify.php:319 #, php-format msgid "%1$s commented on your %2$s %3$s" msgstr "علق %1$s على %2$s تخصك %3$s" -#: src/Navigation/Notifications/Repository/Notify.php:337 +#: src/Navigation/Notifications/Repository/Notify.php:323 #, php-format msgid "%1$s commented on their %2$s %3$s" msgstr "علق %1$s على %2$s له %3$s" -#: src/Navigation/Notifications/Repository/Notify.php:341 -#: src/Navigation/Notifications/Repository/Notify.php:788 +#: src/Navigation/Notifications/Repository/Notify.php:327 +#: src/Navigation/Notifications/Repository/Notify.php:774 #, php-format msgid "%1$s Comment to conversation #%2$d by %3$s" msgstr "علق %1$s على محادثة %3$s #%2$d" -#: src/Navigation/Notifications/Repository/Notify.php:343 +#: src/Navigation/Notifications/Repository/Notify.php:329 #, php-format msgid "%s commented on an item/conversation you have been following." msgstr "علق %s على محادثة/عنصر تتابعه." -#: src/Navigation/Notifications/Repository/Notify.php:347 -#: src/Navigation/Notifications/Repository/Notify.php:362 -#: src/Navigation/Notifications/Repository/Notify.php:814 +#: src/Navigation/Notifications/Repository/Notify.php:333 +#: src/Navigation/Notifications/Repository/Notify.php:348 +#: src/Navigation/Notifications/Repository/Notify.php:800 #, php-format msgid "Please visit %s to view and/or reply to the conversation." msgstr "من فضلك زر %s لعرض و/أو الرد على المحادثة." -#: src/Navigation/Notifications/Repository/Notify.php:354 +#: src/Navigation/Notifications/Repository/Notify.php:340 #, php-format msgid "%s %s posted to your profile wall" msgstr "نشر %s%s على حائط ملفك الشخصي" -#: src/Navigation/Notifications/Repository/Notify.php:356 +#: src/Navigation/Notifications/Repository/Notify.php:342 #, php-format msgid "%1$s posted to your profile wall at %2$s" msgstr "نشر %1$s على حائط ملفك الشخصي على %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:357 +#: src/Navigation/Notifications/Repository/Notify.php:343 #, php-format msgid "%1$s posted to [url=%2$s]your wall[/url]" msgstr "نشر %1$s على [url=%2$s]حائطك[/url]" -#: src/Navigation/Notifications/Repository/Notify.php:370 +#: src/Navigation/Notifications/Repository/Notify.php:356 #, php-format msgid "%s Introduction received" msgstr "تلقيت تقديما من %s" -#: src/Navigation/Notifications/Repository/Notify.php:372 +#: src/Navigation/Notifications/Repository/Notify.php:358 #, php-format msgid "You've received an introduction from '%1$s' at %2$s" msgstr "تلقيت تقديما من '%1$s' على %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:373 +#: src/Navigation/Notifications/Repository/Notify.php:359 #, php-format msgid "You've received [url=%1$s]an introduction[/url] from %2$s." msgstr "تلقيت [url=%1$s]تقديما[/url] من %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:378 -#: src/Navigation/Notifications/Repository/Notify.php:424 +#: src/Navigation/Notifications/Repository/Notify.php:364 +#: src/Navigation/Notifications/Repository/Notify.php:410 #, php-format msgid "You may visit their profile at %s" msgstr "يمكنك زيارة ملفهم الشخصي على %s" -#: src/Navigation/Notifications/Repository/Notify.php:380 +#: src/Navigation/Notifications/Repository/Notify.php:366 #, php-format msgid "Please visit %s to approve or reject the introduction." msgstr "من فضلك زر %s لقبول أو رفض التقديم." -#: src/Navigation/Notifications/Repository/Notify.php:387 +#: src/Navigation/Notifications/Repository/Notify.php:373 #, php-format msgid "%s A new person is sharing with you" msgstr "%s شخص جديد يشارك معك" -#: src/Navigation/Notifications/Repository/Notify.php:389 -#: src/Navigation/Notifications/Repository/Notify.php:390 +#: src/Navigation/Notifications/Repository/Notify.php:375 +#: src/Navigation/Notifications/Repository/Notify.php:376 #, php-format msgid "%1$s is sharing with you at %2$s" msgstr "يشارك %1$s معك على %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:397 +#: src/Navigation/Notifications/Repository/Notify.php:383 #, php-format msgid "%s You have a new follower" msgstr "لديك متابِع جديد %s" -#: src/Navigation/Notifications/Repository/Notify.php:399 -#: src/Navigation/Notifications/Repository/Notify.php:400 +#: src/Navigation/Notifications/Repository/Notify.php:385 +#: src/Navigation/Notifications/Repository/Notify.php:386 #, php-format msgid "You have a new follower at %2$s : %1$s" msgstr "لديك متابِع جديد على %2$s : %1$s" -#: src/Navigation/Notifications/Repository/Notify.php:413 +#: src/Navigation/Notifications/Repository/Notify.php:399 #, php-format msgid "%s Friend suggestion received" msgstr "تلقيت إقتراح صديق %s" -#: src/Navigation/Notifications/Repository/Notify.php:415 +#: src/Navigation/Notifications/Repository/Notify.php:401 #, php-format msgid "You've received a friend suggestion from '%1$s' at %2$s" msgstr "تلقيت اقتراح صديق من '%1$s' على %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:416 +#: src/Navigation/Notifications/Repository/Notify.php:402 #, php-format msgid "" "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." msgstr "اقترح عليك %3$s [url=%1$s] مصادقة %2$s[/url]." -#: src/Navigation/Notifications/Repository/Notify.php:422 +#: src/Navigation/Notifications/Repository/Notify.php:408 msgid "Name:" msgstr "الاسم:" -#: src/Navigation/Notifications/Repository/Notify.php:423 +#: src/Navigation/Notifications/Repository/Notify.php:409 msgid "Photo:" msgstr "الصورة:" -#: src/Navigation/Notifications/Repository/Notify.php:426 +#: src/Navigation/Notifications/Repository/Notify.php:412 #, php-format msgid "Please visit %s to approve or reject the suggestion." msgstr "من فضلك زر %s لقبول أو رفض الاقتراح." -#: src/Navigation/Notifications/Repository/Notify.php:434 -#: src/Navigation/Notifications/Repository/Notify.php:449 +#: src/Navigation/Notifications/Repository/Notify.php:420 +#: src/Navigation/Notifications/Repository/Notify.php:435 #, php-format msgid "%s Connection accepted" msgstr "قُبِل الاقتران %s" -#: src/Navigation/Notifications/Repository/Notify.php:436 -#: src/Navigation/Notifications/Repository/Notify.php:451 +#: src/Navigation/Notifications/Repository/Notify.php:422 +#: src/Navigation/Notifications/Repository/Notify.php:437 #, php-format msgid "'%1$s' has accepted your connection request at %2$s" msgstr "قبِل '%1$s' طلب الاقتران على %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:437 -#: src/Navigation/Notifications/Repository/Notify.php:452 +#: src/Navigation/Notifications/Repository/Notify.php:423 +#: src/Navigation/Notifications/Repository/Notify.php:438 #, php-format msgid "%2$s has accepted your [url=%1$s]connection request[/url]." msgstr "قبِل %2$s [url=%1$s]طلب الاقتران[/url]." -#: src/Navigation/Notifications/Repository/Notify.php:442 +#: src/Navigation/Notifications/Repository/Notify.php:428 msgid "" "You are now mutual friends and may exchange status updates, photos, and " "email without restriction." msgstr "أصبحتما صديقين من كلا الطرفين ويمكنكما تبادل تحديثات الحالة، والصور، والبريد دون قيود." -#: src/Navigation/Notifications/Repository/Notify.php:444 +#: src/Navigation/Notifications/Repository/Notify.php:430 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "من فضلك زر %s إن أردت تغيير هذه العلاقة." -#: src/Navigation/Notifications/Repository/Notify.php:457 +#: src/Navigation/Notifications/Repository/Notify.php:443 #, php-format msgid "" "'%1$s' has chosen to accept you a fan, which restricts some forms of " @@ -12443,34 +12409,34 @@ msgid "" "automatically." msgstr "قبِلك '%1$s' كمعجب، هذا يحدُّ من أشكال التواصل بينكما مثل الرسائل الخاصة وبعض التفاعلات. يتم هذا تلقائيا اذا كانت صفحة مشهور أو مجتمع." -#: src/Navigation/Notifications/Repository/Notify.php:459 +#: src/Navigation/Notifications/Repository/Notify.php:445 #, php-format msgid "" "'%1$s' may choose to extend this into a two-way or more permissive " "relationship in the future." msgstr "قد يختار '%1$s' توسيعها إلى علاقة ذات اتجاهين أو أكثر في المستقبل." -#: src/Navigation/Notifications/Repository/Notify.php:461 +#: src/Navigation/Notifications/Repository/Notify.php:447 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "من فضلك زر %s إن أردت تغيير هذه العلاقة." -#: src/Navigation/Notifications/Repository/Notify.php:471 +#: src/Navigation/Notifications/Repository/Notify.php:457 msgid "registration request" msgstr "طلب تسجيل" -#: src/Navigation/Notifications/Repository/Notify.php:473 +#: src/Navigation/Notifications/Repository/Notify.php:459 #, php-format msgid "You've received a registration request from '%1$s' at %2$s" msgstr "تلقيت طلب تسجيل من '%1$s' على %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:474 +#: src/Navigation/Notifications/Repository/Notify.php:460 #, php-format msgid "You've received a [url=%1$s]registration request[/url] from %2$s." msgstr "تلقيت [url=%1$s]طلب تسجيل[/url] من %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:479 -#: src/Navigation/Notifications/Repository/Notify.php:500 +#: src/Navigation/Notifications/Repository/Notify.php:465 +#: src/Navigation/Notifications/Repository/Notify.php:486 #, php-format msgid "" "Display Name:\t%s\n" @@ -12478,288 +12444,288 @@ msgid "" "Login Name:\t%s (%s)" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:485 +#: src/Navigation/Notifications/Repository/Notify.php:471 #, php-format msgid "Please visit %s to approve or reject the request." msgstr "من فضلك زر %s لقبول أو رفض الطلب." -#: src/Navigation/Notifications/Repository/Notify.php:492 +#: src/Navigation/Notifications/Repository/Notify.php:478 msgid "new registration" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:494 +#: src/Navigation/Notifications/Repository/Notify.php:480 #, php-format msgid "You've received a new registration from '%1$s' at %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:495 +#: src/Navigation/Notifications/Repository/Notify.php:481 #, php-format msgid "You've received a [url=%1$s]new registration[/url] from %2$s." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:506 +#: src/Navigation/Notifications/Repository/Notify.php:492 #, php-format msgid "Please visit %s to have a look at the new registration." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:782 +#: src/Navigation/Notifications/Repository/Notify.php:768 #, php-format msgid "%s %s tagged you" msgstr "ذكرك %s%s" -#: src/Navigation/Notifications/Repository/Notify.php:785 +#: src/Navigation/Notifications/Repository/Notify.php:771 #, php-format msgid "%s %s shared a new post" msgstr "شارك %s%s مشاركة جديدة" -#: src/Navigation/Notifications/Repository/Notify.php:793 +#: src/Navigation/Notifications/Repository/Notify.php:779 #, php-format msgid "%1$s %2$s liked your post #%3$d" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:796 +#: src/Navigation/Notifications/Repository/Notify.php:782 #, php-format msgid "%1$s %2$s liked your comment on #%3$d" msgstr "" -#: src/Object/EMail/ItemCCEMail.php:42 +#: src/Object/EMail/ItemCCEMail.php:28 #, php-format msgid "" "This message was sent to you by %s, a member of the Friendica social " "network." msgstr "أرسل %s لك هذه الرسالة، وهو عضو في شبكة فرنديكا." -#: src/Object/EMail/ItemCCEMail.php:44 +#: src/Object/EMail/ItemCCEMail.php:30 #, php-format msgid "You may visit them online at %s" msgstr "يمكنك زيارتهم عبر %s" -#: src/Object/EMail/ItemCCEMail.php:45 +#: src/Object/EMail/ItemCCEMail.php:31 msgid "" "Please contact the sender by replying to this post if you do not wish to " "receive these messages." msgstr "رجاء اتصل بالمرسل بالرد على هذا المشاركة إذا كنت لا ترغب في تلقي هذه الرسائل." -#: src/Object/EMail/ItemCCEMail.php:49 +#: src/Object/EMail/ItemCCEMail.php:35 #, php-format msgid "%s posted an update." msgstr "نشر %s تحديثاً." -#: src/Object/Post.php:138 +#: src/Object/Post.php:124 msgid "Private Message" msgstr "رسالة خاصة" -#: src/Object/Post.php:142 +#: src/Object/Post.php:128 msgid "Public Message" msgstr "رسالة علنية" -#: src/Object/Post.php:146 +#: src/Object/Post.php:132 msgid "Unlisted Message" msgstr "رسالة غير مدرجة" -#: src/Object/Post.php:182 +#: src/Object/Post.php:168 msgid "This entry was edited" msgstr "عدّل المدخل" -#: src/Object/Post.php:210 +#: src/Object/Post.php:196 msgid "Connector Message" msgstr "" -#: src/Object/Post.php:239 src/Object/Post.php:241 +#: src/Object/Post.php:225 src/Object/Post.php:227 msgid "Edit" msgstr "تعديل" -#: src/Object/Post.php:275 +#: src/Object/Post.php:261 msgid "Delete globally" msgstr "احذفه عالميًا" -#: src/Object/Post.php:275 +#: src/Object/Post.php:261 msgid "Remove locally" msgstr "أزله محليًا" -#: src/Object/Post.php:282 +#: src/Object/Post.php:268 #, php-format msgid "Block %s" msgstr "احجب %s" -#: src/Object/Post.php:287 +#: src/Object/Post.php:273 #, php-format msgid "Ignore %s" msgstr "" -#: src/Object/Post.php:292 +#: src/Object/Post.php:278 #, php-format msgid "Collapse %s" msgstr "" -#: src/Object/Post.php:296 +#: src/Object/Post.php:282 msgid "Report post" msgstr "" -#: src/Object/Post.php:307 +#: src/Object/Post.php:293 msgid "Save to folder" msgstr "احفظ في مجلد" -#: src/Object/Post.php:347 +#: src/Object/Post.php:333 msgid "I will attend" msgstr "سأحضره" -#: src/Object/Post.php:347 +#: src/Object/Post.php:333 msgid "I will not attend" msgstr "لن أحضره" -#: src/Object/Post.php:347 +#: src/Object/Post.php:333 msgid "I might attend" msgstr "قد أحضره" -#: src/Object/Post.php:394 +#: src/Object/Post.php:380 msgid "Ignore thread" msgstr "تجاهل النقاش" -#: src/Object/Post.php:395 +#: src/Object/Post.php:381 msgid "Unignore thread" msgstr "ألغ تجاهل النقاش" -#: src/Object/Post.php:396 +#: src/Object/Post.php:382 msgid "Toggle ignore status" msgstr "بدّل حالة التجاهل" -#: src/Object/Post.php:406 +#: src/Object/Post.php:392 msgid "Add star" msgstr "أضف للمفضلة" -#: src/Object/Post.php:407 +#: src/Object/Post.php:393 msgid "Remove star" msgstr "أزل من المفضلة" -#: src/Object/Post.php:408 +#: src/Object/Post.php:394 msgid "Toggle star status" msgstr "بدِّل حالة التفضيل" -#: src/Object/Post.php:419 +#: src/Object/Post.php:405 msgid "Pin" msgstr "ثبّت" -#: src/Object/Post.php:420 +#: src/Object/Post.php:406 msgid "Unpin" msgstr "ألغ التثبيت" -#: src/Object/Post.php:421 +#: src/Object/Post.php:407 msgid "Toggle pin status" msgstr "بدِّل حالة التثبيت" -#: src/Object/Post.php:424 +#: src/Object/Post.php:410 msgid "Pinned" msgstr "مُثَبَت" -#: src/Object/Post.php:429 +#: src/Object/Post.php:415 msgid "Add tag" msgstr "أضف وسما" -#: src/Object/Post.php:444 +#: src/Object/Post.php:430 msgid "Quote share this" msgstr "اقتبس وشارك" -#: src/Object/Post.php:444 +#: src/Object/Post.php:430 msgid "Quote Share" msgstr "اقتبس وشارك" -#: src/Object/Post.php:447 +#: src/Object/Post.php:433 msgid "Reshare this" msgstr "أعاد نشر هذا" -#: src/Object/Post.php:447 +#: src/Object/Post.php:433 msgid "Reshare" msgstr "أعد نشره" -#: src/Object/Post.php:448 +#: src/Object/Post.php:434 msgid "Cancel your Reshare" msgstr "ألغ إعادة النشر" -#: src/Object/Post.php:448 +#: src/Object/Post.php:434 msgid "Unshare" msgstr "ألغ المشاركة" -#: src/Object/Post.php:492 +#: src/Object/Post.php:478 #, php-format msgid "%s (Received %s)" msgstr "%s (استلم %s)" -#: src/Object/Post.php:498 +#: src/Object/Post.php:484 msgid "Comment this item on your system" msgstr "علّق على هذا العنصر على خادمك" -#: src/Object/Post.php:498 +#: src/Object/Post.php:484 msgid "Remote comment" msgstr "تعليق بعيد" -#: src/Object/Post.php:520 +#: src/Object/Post.php:506 msgid "Share via ..." msgstr "شارك عبر" -#: src/Object/Post.php:520 +#: src/Object/Post.php:506 msgid "Share via external services" msgstr "" -#: src/Object/Post.php:527 +#: src/Object/Post.php:513 msgid "Unknown parent" msgstr "" -#: src/Object/Post.php:531 +#: src/Object/Post.php:517 #, php-format msgid "in reply to %s" msgstr "" -#: src/Object/Post.php:533 +#: src/Object/Post.php:519 msgid "Parent is probably private or not federated." msgstr "" -#: src/Object/Post.php:557 +#: src/Object/Post.php:543 msgid "to" msgstr "إلى" -#: src/Object/Post.php:558 +#: src/Object/Post.php:544 msgid "via" msgstr "عبر" -#: src/Object/Post.php:559 +#: src/Object/Post.php:545 msgid "Wall-to-Wall" msgstr "حائط لحائط" -#: src/Object/Post.php:560 +#: src/Object/Post.php:546 msgid "via Wall-To-Wall:" msgstr "عير حائط لحائط" -#: src/Object/Post.php:613 +#: src/Object/Post.php:599 #, php-format msgid "Reply to %s" msgstr "رد على %s" -#: src/Object/Post.php:616 +#: src/Object/Post.php:602 msgid "More" msgstr "المزيد" -#: src/Object/Post.php:635 +#: src/Object/Post.php:621 msgid "Notifier task is pending" msgstr "مهمة التنبيه معلقة" -#: src/Object/Post.php:636 +#: src/Object/Post.php:622 msgid "Delivery to remote servers is pending" msgstr "التسليم للخوادم البعيدة معلق" -#: src/Object/Post.php:637 +#: src/Object/Post.php:623 msgid "Delivery to remote servers is underway" msgstr "التسليم إلى الخوادم البعيدة جار" -#: src/Object/Post.php:638 +#: src/Object/Post.php:624 msgid "Delivery to remote servers is mostly done" msgstr "التسليم إلى الخوادم البعيدة يكاد يكتمل" -#: src/Object/Post.php:639 +#: src/Object/Post.php:625 msgid "Delivery to remote servers is done" msgstr "التسليم للخوادم البعيدة اكتمل" -#: src/Object/Post.php:661 +#: src/Object/Post.php:647 #, php-format msgid "%d comment" msgid_plural "%d comments" @@ -12770,485 +12736,467 @@ msgstr[3] "%d تعليقات" msgstr[4] "%d تعليقا" msgstr[5] "%d تعليق" -#: src/Object/Post.php:662 +#: src/Object/Post.php:648 msgid "Show more" msgstr "اعرض المزيد" -#: src/Object/Post.php:663 +#: src/Object/Post.php:649 msgid "Show fewer" msgstr "اعرض أقل" -#: src/Object/Post.php:700 +#: src/Object/Post.php:686 #, php-format msgid "Reshared by: %s" msgstr "" -#: src/Object/Post.php:705 +#: src/Object/Post.php:691 #, php-format msgid "Viewed by: %s" msgstr "" -#: src/Object/Post.php:710 +#: src/Object/Post.php:696 #, php-format msgid "Read by: %s" msgstr "" -#: src/Object/Post.php:715 +#: src/Object/Post.php:701 #, php-format msgid "Liked by: %s" msgstr "" -#: src/Object/Post.php:720 +#: src/Object/Post.php:706 #, php-format msgid "Disliked by: %s" msgstr "" -#: src/Object/Post.php:725 +#: src/Object/Post.php:711 #, php-format msgid "Attended by: %s" msgstr "" -#: src/Object/Post.php:730 +#: src/Object/Post.php:716 #, php-format msgid "Maybe attended by: %s" msgstr "" -#: src/Object/Post.php:735 +#: src/Object/Post.php:721 #, php-format msgid "Not attended by: %s" msgstr "" -#: src/Object/Post.php:740 +#: src/Object/Post.php:726 #, php-format msgid "Commented by: %s" msgstr "" -#: src/Object/Post.php:745 +#: src/Object/Post.php:731 #, php-format msgid "Reacted with %s by: %s" msgstr "" -#: src/Object/Post.php:768 +#: src/Object/Post.php:754 #, php-format msgid "Quote shared by: %s" msgstr "" -#: src/Protocol/ActivityPub/Receiver.php:571 +#: src/Protocol/ActivityPub/Receiver.php:557 msgid "Chat" msgstr "" -#: src/Protocol/Delivery.php:544 +#: src/Protocol/Delivery.php:530 msgid "(no subject)" msgstr "(بدون موضوع)" -#: src/Protocol/OStatus.php:1392 -#, php-format -msgid "%s is now following %s." -msgstr "%s يتابع %s." - -#: src/Protocol/OStatus.php:1393 -msgid "following" -msgstr "يتابع" - -#: src/Protocol/OStatus.php:1396 -#, php-format -msgid "%s stopped following %s." -msgstr "%s توقف عن متابعة %s." - -#: src/Protocol/OStatus.php:1397 -msgid "stopped following" -msgstr "توقف عن متابعة" - -#: src/Render/FriendicaSmartyEngine.php:56 +#: src/Render/FriendicaSmartyEngine.php:42 #, php-format msgid "The folder %s must be writable by webserver." msgstr "" -#: src/Security/Authentication.php:214 +#: src/Security/Authentication.php:200 msgid "Login failed." msgstr "فشل الولوج." -#: src/Security/Authentication.php:259 +#: src/Security/Authentication.php:245 msgid "Login failed. Please check your credentials." msgstr "فشل الولوج. من فضلك تحقق من بيانات الاعتماد." -#: src/Security/Authentication.php:373 +#: src/Security/Authentication.php:359 #, php-format msgid "Welcome %s" msgstr "مرحباً %s" -#: src/Security/Authentication.php:374 +#: src/Security/Authentication.php:360 msgid "Please upload a profile photo." msgstr "من فضلك ارفع صورة لملفك الشخصي." -#: src/Security/OpenWebAuth.php:163 +#: src/Security/OpenWebAuth.php:149 #, php-format msgid "OpenWebAuth: %1$s welcomes %2$s" msgstr "OpenWebAuth: %1$s يرحب بـ %2$s" -#: src/Util/EMailer/MailBuilder.php:260 +#: src/Util/EMailer/MailBuilder.php:246 msgid "Friendica Notification" msgstr "تنبيهات فرنديكا" -#: src/Util/EMailer/NotifyMailBuilder.php:78 -#: src/Util/EMailer/SystemMailBuilder.php:54 +#: src/Util/EMailer/NotifyMailBuilder.php:64 +#: src/Util/EMailer/SystemMailBuilder.php:40 #, php-format msgid "%1$s, %2$s Administrator" msgstr "%1$s، مدير %2$s" -#: src/Util/EMailer/NotifyMailBuilder.php:80 -#: src/Util/EMailer/SystemMailBuilder.php:56 +#: src/Util/EMailer/NotifyMailBuilder.php:66 +#: src/Util/EMailer/SystemMailBuilder.php:42 #, php-format msgid "%s Administrator" msgstr "مدير %s" -#: src/Util/EMailer/NotifyMailBuilder.php:193 -#: src/Util/EMailer/NotifyMailBuilder.php:217 -#: src/Util/EMailer/SystemMailBuilder.php:101 -#: src/Util/EMailer/SystemMailBuilder.php:118 +#: src/Util/EMailer/NotifyMailBuilder.php:179 +#: src/Util/EMailer/NotifyMailBuilder.php:203 +#: src/Util/EMailer/SystemMailBuilder.php:87 +#: src/Util/EMailer/SystemMailBuilder.php:104 msgid "thanks" msgstr "الشكر" -#: src/Util/Temporal.php:172 +#: src/Util/Temporal.php:158 msgid "YYYY-MM-DD or MM-DD" msgstr "YYYY-MM-DD أو MM-DD" -#: src/Util/Temporal.php:280 +#: src/Util/Temporal.php:266 #, php-format msgid "Time zone: %s Change in Settings" msgstr "المنطقة الزمنية: %sغيرها من الإعدادات" -#: src/Util/Temporal.php:320 src/Util/Temporal.php:329 +#: src/Util/Temporal.php:306 src/Util/Temporal.php:315 msgid "never" msgstr "أبدًا" -#: src/Util/Temporal.php:343 +#: src/Util/Temporal.php:329 msgid "less than a second ago" msgstr "منذ أقل من ثانية" -#: src/Util/Temporal.php:352 +#: src/Util/Temporal.php:338 msgid "year" msgstr "سنة" -#: src/Util/Temporal.php:352 +#: src/Util/Temporal.php:338 msgid "years" msgstr "سنوات" -#: src/Util/Temporal.php:353 +#: src/Util/Temporal.php:339 msgid "months" msgstr "أشهر" -#: src/Util/Temporal.php:354 +#: src/Util/Temporal.php:340 msgid "weeks" msgstr "أسابيع" -#: src/Util/Temporal.php:355 +#: src/Util/Temporal.php:341 msgid "days" msgstr "أيام" -#: src/Util/Temporal.php:356 +#: src/Util/Temporal.php:342 msgid "hour" msgstr "ساعة" -#: src/Util/Temporal.php:356 +#: src/Util/Temporal.php:342 msgid "hours" msgstr "ساعات" -#: src/Util/Temporal.php:357 +#: src/Util/Temporal.php:343 msgid "minute" msgstr "دقيقة" -#: src/Util/Temporal.php:357 +#: src/Util/Temporal.php:343 msgid "minutes" msgstr "دقائق" -#: src/Util/Temporal.php:358 +#: src/Util/Temporal.php:344 msgid "second" msgstr "ثانية" -#: src/Util/Temporal.php:358 +#: src/Util/Temporal.php:344 msgid "seconds" msgstr "ثوان" -#: src/Util/Temporal.php:367 +#: src/Util/Temporal.php:353 #, php-format msgid "in %1$d %2$s" msgstr "في %1$d %2$s" -#: src/Util/Temporal.php:370 +#: src/Util/Temporal.php:356 #, php-format msgid "%1$d %2$s ago" msgstr "منذ %1$d %2$s" -#: src/Worker/PushSubscription.php:110 +#: src/Worker/PushSubscription.php:96 msgid "Notification from Friendica" msgstr "تنبيهات من فرنديكا" -#: src/Worker/PushSubscription.php:111 +#: src/Worker/PushSubscription.php:97 msgid "Empty Post" msgstr "مشاركة فارغة" -#: view/theme/duepuntozero/config.php:68 +#: view/theme/duepuntozero/config.php:56 msgid "default" msgstr "افتراضي" -#: view/theme/duepuntozero/config.php:69 +#: view/theme/duepuntozero/config.php:57 msgid "greenzero" msgstr "greenzero" -#: view/theme/duepuntozero/config.php:70 +#: view/theme/duepuntozero/config.php:58 msgid "purplezero" msgstr "purplezero" -#: view/theme/duepuntozero/config.php:71 +#: view/theme/duepuntozero/config.php:59 msgid "easterbunny" msgstr "easterbunny" -#: view/theme/duepuntozero/config.php:72 +#: view/theme/duepuntozero/config.php:60 msgid "darkzero" msgstr "darkzero" -#: view/theme/duepuntozero/config.php:73 +#: view/theme/duepuntozero/config.php:61 msgid "comix" msgstr "comix" -#: view/theme/duepuntozero/config.php:74 +#: view/theme/duepuntozero/config.php:62 msgid "slackr" msgstr "slackr" -#: view/theme/duepuntozero/config.php:87 +#: view/theme/duepuntozero/config.php:75 msgid "Variations" msgstr "تغيرات" -#: view/theme/frio/config.php:146 +#: view/theme/frio/config.php:134 msgid "Note" msgstr "ملاحظة" -#: view/theme/frio/config.php:146 +#: view/theme/frio/config.php:134 msgid "Check image permissions if all users are allowed to see the image" msgstr "تحقق أن أذونات الصورة تسمح للجميع مشاهدتها" -#: view/theme/frio/config.php:152 +#: view/theme/frio/config.php:140 msgid "Appearance" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Accent color" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Blue" msgstr "أزرق" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Red" msgstr "أحمر" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Purple" msgstr "بنفسجي" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Green" msgstr "أخضر" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Pink" msgstr "وردي" -#: view/theme/frio/config.php:154 +#: view/theme/frio/config.php:142 msgid "Copy or paste schemestring" msgstr "انسخ أو ألصق سلسلة المخططات" -#: view/theme/frio/config.php:154 +#: view/theme/frio/config.php:142 msgid "" "You can copy this string to share your theme with others. Pasting here " "applies the schemestring" msgstr "يمكنك نسخ سلسلة المخططات لمشاركة سمتك مع الآخرين. بلصقها ستطبق سلسلة المخططات" -#: view/theme/frio/config.php:155 +#: view/theme/frio/config.php:143 msgid "Navigation bar background color" msgstr "لون خلفية شريط التصفح" -#: view/theme/frio/config.php:156 +#: view/theme/frio/config.php:144 msgid "Navigation bar icon color " msgstr "لون أيقونة شريط التصفح " -#: view/theme/frio/config.php:157 +#: view/theme/frio/config.php:145 msgid "Link color" msgstr "لون الروابط" -#: view/theme/frio/config.php:158 +#: view/theme/frio/config.php:146 msgid "Set the background color" msgstr "لون الخلفية" -#: view/theme/frio/config.php:159 +#: view/theme/frio/config.php:147 msgid "Content background opacity" msgstr "شفافية خلفية المحتوى" -#: view/theme/frio/config.php:160 +#: view/theme/frio/config.php:148 msgid "Set the background image" msgstr "صورة للخلفية" -#: view/theme/frio/config.php:161 +#: view/theme/frio/config.php:149 msgid "Background image style" msgstr "نمط صورة الخلفية" -#: view/theme/frio/config.php:164 +#: view/theme/frio/config.php:152 msgid "Always open Compose page" msgstr "" -#: view/theme/frio/config.php:164 +#: view/theme/frio/config.php:152 msgid "" "The New Post button always open the Compose page " "instead of the modal form. When this is disabled, the Compose page can be " "accessed with a middle click on the link or from the modal." msgstr "" -#: view/theme/frio/config.php:168 +#: view/theme/frio/config.php:156 msgid "Login page background image" msgstr "صورة لخلفية صفحة الولوج" -#: view/theme/frio/config.php:172 +#: view/theme/frio/config.php:160 msgid "Login page background color" msgstr "لون خلفية صفحة الولوج" -#: view/theme/frio/config.php:172 +#: view/theme/frio/config.php:160 msgid "Leave background image and color empty for theme defaults" msgstr "اترك صورة الخلفية ولونها فارغين لتطبيق الإعدادات الافتراضية للسمة" -#: view/theme/frio/php/Image.php:39 +#: view/theme/frio/php/Image.php:27 msgid "Top Banner" msgstr "اللافتة العلوية" -#: view/theme/frio/php/Image.php:39 +#: view/theme/frio/php/Image.php:27 msgid "" "Resize image to the width of the screen and show background color below on " "long pages." msgstr "غير حجم الصورة لتناسب عُرض الشاشة وأملأ الفراغ الناتج عن الصفحات الطويلة بلون الخلفية." -#: view/theme/frio/php/Image.php:40 +#: view/theme/frio/php/Image.php:28 msgid "Full screen" msgstr "املأ الشاشة" -#: view/theme/frio/php/Image.php:40 +#: view/theme/frio/php/Image.php:28 msgid "" "Resize image to fill entire screen, clipping either the right or the bottom." msgstr "غير حجم الصورة لملأ الشاشة. قص الحافة اليمنى أو السفلية." -#: view/theme/frio/php/Image.php:41 +#: view/theme/frio/php/Image.php:29 msgid "Single row mosaic" msgstr "فسيفساء صف واحد" -#: view/theme/frio/php/Image.php:41 +#: view/theme/frio/php/Image.php:29 msgid "" "Resize image to repeat it on a single row, either vertical or horizontal." msgstr "غيّر حجم صورة لتكرارها في صف واحد، عموديا أو أفقيا." -#: view/theme/frio/php/Image.php:42 +#: view/theme/frio/php/Image.php:30 msgid "Mosaic" msgstr "فسيفساء" -#: view/theme/frio/php/Image.php:42 +#: view/theme/frio/php/Image.php:30 msgid "Repeat image to fill the screen." msgstr "كرر صورة لملأ الشاشة." -#: view/theme/frio/php/default.php:82 view/theme/frio/php/standard.php:40 +#: view/theme/frio/php/default.php:70 view/theme/frio/php/standard.php:28 msgid "Skip to main content" msgstr "تخطى للمحتوى الرئيسي" -#: view/theme/frio/php/default.php:153 view/theme/frio/php/standard.php:75 +#: view/theme/frio/php/default.php:141 view/theme/frio/php/standard.php:63 msgid "Back to top" msgstr "عُد لأعلى" -#: view/theme/frio/php/scheme.php:105 +#: view/theme/frio/php/scheme.php:93 msgid "Light" msgstr "" -#: view/theme/frio/php/scheme.php:106 +#: view/theme/frio/php/scheme.php:94 msgid "Dark" msgstr "" -#: view/theme/frio/php/scheme.php:107 +#: view/theme/frio/php/scheme.php:95 msgid "Black" msgstr "" -#: view/theme/frio/php/scheme.php:118 +#: view/theme/frio/php/scheme.php:106 msgid "Custom" msgstr "مخصص" -#: view/theme/frio/theme.php:214 +#: view/theme/frio/theme.php:202 msgid "Guest" msgstr "ضيف" -#: view/theme/frio/theme.php:217 +#: view/theme/frio/theme.php:205 msgid "Visitor" msgstr "زائر" -#: view/theme/quattro/config.php:89 +#: view/theme/quattro/config.php:77 msgid "Alignment" msgstr "محاذاة" -#: view/theme/quattro/config.php:89 +#: view/theme/quattro/config.php:77 msgid "Left" msgstr "يسار" -#: view/theme/quattro/config.php:89 +#: view/theme/quattro/config.php:77 msgid "Center" msgstr "وسط" -#: view/theme/quattro/config.php:90 +#: view/theme/quattro/config.php:78 msgid "Color scheme" msgstr "مخططات اللَّون" -#: view/theme/quattro/config.php:91 +#: view/theme/quattro/config.php:79 msgid "Posts font size" msgstr "حجم خط المشاركة" -#: view/theme/quattro/config.php:92 +#: view/theme/quattro/config.php:80 msgid "Textareas font size" msgstr "حجم خط مساحة النص" -#: view/theme/vier/config.php:91 +#: view/theme/vier/config.php:79 msgid "Comma separated list of helper groups" msgstr "" -#: view/theme/vier/config.php:131 +#: view/theme/vier/config.php:119 msgid "don't show" msgstr "لا تعرض" -#: view/theme/vier/config.php:131 +#: view/theme/vier/config.php:119 msgid "show" msgstr "اعرض" -#: view/theme/vier/config.php:137 +#: view/theme/vier/config.php:125 msgid "Set style" msgstr "عيّن أسلوبًا" -#: view/theme/vier/config.php:138 +#: view/theme/vier/config.php:126 msgid "Community Pages" msgstr "صفحات المجتمع" -#: view/theme/vier/config.php:139 view/theme/vier/theme.php:148 +#: view/theme/vier/config.php:127 view/theme/vier/theme.php:136 msgid "Community Profiles" msgstr "الملفات الشخصية المجتمعية" -#: view/theme/vier/config.php:140 +#: view/theme/vier/config.php:128 msgid "Help or @NewHere ?" msgstr "تحتاج لمساعدة أو أنت جديد هنا NewHete@؟" -#: view/theme/vier/config.php:141 view/theme/vier/theme.php:319 +#: view/theme/vier/config.php:129 view/theme/vier/theme.php:307 msgid "Connect Services" msgstr "اتصل بخدمات" -#: view/theme/vier/config.php:142 +#: view/theme/vier/config.php:130 msgid "Find Friends" msgstr "اعثر على أصدقاء" -#: view/theme/vier/config.php:143 view/theme/vier/theme.php:175 +#: view/theme/vier/config.php:131 view/theme/vier/theme.php:163 msgid "Last users" msgstr "آخر المستخدمين" -#: view/theme/vier/theme.php:234 +#: view/theme/vier/theme.php:222 msgid "Quick Start" msgstr "ابدأ بسرعة" diff --git a/view/lang/ar/strings.php b/view/lang/ar/strings.php index 7e04c85530..1fdd8654bf 100644 --- a/view/lang/ar/strings.php +++ b/view/lang/ar/strings.php @@ -664,7 +664,6 @@ $a->strings['An author or name was not found.'] = 'لم يُعثر على الك $a->strings['No browser URL could be matched to this address.'] = 'لا يوجد رابط يطابق هذا العنوان.'; $a->strings['Unable to match @-style Identity Address with a known protocol or email contact.'] = 'غير قادر على مطابقة عنوان المعرف "@" بميفاق معروف أو متراسل بريد إلكتروني.'; $a->strings['Use mailto: in front of address to force email check.'] = 'استخدم mailto: أمام العنوان للتعرّف عليه كبريد إلكتروني.'; -$a->strings['The profile address specified belongs to a network which has been disabled on this site.'] = 'عنوان الملف الشخصي تابع لشبكة محجوبة في هذا الموقع.'; $a->strings['Limited profile. This person will be unable to receive direct/personal notifications from you.'] = 'ملف شخصي محدود. لن يتمكن هذا الشخص من تلقي تنبيهات مباشرة/شخصية.'; $a->strings['Unable to retrieve contact information.'] = 'تعذر جلب معلومات المتراسل.'; $a->strings['Starts:'] = 'يبدأ:'; @@ -685,7 +684,6 @@ $a->strings['Show map'] = 'أظهر الخريطة'; $a->strings['Hide map'] = 'اخف الخريطة'; $a->strings['%s\'s birthday'] = 'عيد ميلاد %s'; $a->strings['Happy Birthday %s'] = '%s عيد ميلاد سعيد'; -$a->strings['Detected languages in this post:\n%s'] = 'اللغات المكتشفة في هذه المشاركة:\n%s'; $a->strings['activity'] = 'النشاط'; $a->strings['comment'] = 'تعليق'; $a->strings['post'] = 'مشاركة'; @@ -1230,7 +1228,6 @@ $a->strings['Submit Request'] = 'أرسل الطلب'; $a->strings['You already added this contact.'] = 'أضفت هذا المتراسل سلفًا.'; $a->strings['The network type couldn\'t be detected. Contact can\'t be added.'] = 'تعذر اكتشاف نوع الشبكة. لا يمكن إضافة المتراسل.'; $a->strings['Diaspora support isn\'t enabled. Contact can\'t be added.'] = 'دعم دياسبورا غير مفعل. لا يمكن إضافة المتراسل.'; -$a->strings['OStatus support is disabled. Contact can\'t be added.'] = 'دعم OStatus غير مفعل. لا يمكن إضافة المتراسل.'; $a->strings['Please answer the following:'] = 'من فضلك أجب على ما يلي:'; $a->strings['Your Identity Address:'] = 'عنوان معرّفك:'; $a->strings['Profile URL'] = 'رابط الملف الشخصي'; @@ -1645,8 +1642,6 @@ $a->strings['Do you want to authorize this application to access your posts and $a->strings['Unsupported or missing response type'] = 'نوع الاستجابة غير مدعومة أو مفقودة'; $a->strings['Incomplete request data'] = 'بيانات الطلب غير كاملة'; $a->strings['Please copy the following authentication code into your application and close this window: %s'] = 'الرجاء نسخ رمز الاستيثاق إلى التطبيق وإغلاق هذه النافذة: %s'; -$a->strings['Resubscribing to OStatus contacts'] = 'يعيد الاشتراك في متراسلي OStatus'; -$a->strings['Keep this window open until done.'] = 'أبق هذه النافذة مفتوحة حتى ينتهي.'; $a->strings['Subscribing to contacts'] = 'يشترك في متراسلين'; $a->strings['No contact provided.'] = 'لم يُقدم متراسلين.'; $a->strings['Couldn\'t fetch information for contact.'] = 'تعذر جلب معلومات المتراسل.'; @@ -1658,6 +1653,7 @@ $a->strings['Done'] = 'تم'; $a->strings['success'] = 'نجح'; $a->strings['failed'] = 'فشل'; $a->strings['ignored'] = 'متجاهل'; +$a->strings['Keep this window open until done.'] = 'أبق هذه النافذة مفتوحة حتى ينتهي.'; $a->strings['The Photo is not available.'] = 'الصورة غير متوفرة.'; $a->strings['The Photo with id %s is not available.'] = 'الصورة ذات المعرف %s غير متوفّرة.'; $a->strings['Invalid photo with id %s.'] = 'الصورة ذات المعرف %s غير صالحة.'; @@ -1675,9 +1671,9 @@ $a->strings['Remote privacy information not available.'] = 'معلومات ال $a->strings['Visible to:'] = 'مرئي لـ:'; $a->strings['Followers (%s)'] = 'متابِعون (%s)'; $a->strings['No contacts.'] = 'لا متراسلين.'; -$a->strings['%s\'s timeline'] = 'الخط الزمني لـ %s'; $a->strings['%s\'s posts'] = 'مشاركات %s'; $a->strings['%s\'s comments'] = 'تعليقات %s'; +$a->strings['%s\'s timeline'] = 'الخط الزمني لـ %s'; $a->strings['Image exceeds size limit of %s'] = 'تجاوزت الصورة الحد الأقصى للحجم وهو %s'; $a->strings['Image upload didn\'t complete, please try again'] = 'لم يكتمل رفع الصورة، من فضلك أعد المحاولة'; $a->strings['Image file is missing'] = 'ملف الصورة مفقود'; @@ -1871,7 +1867,6 @@ $a->strings['Description'] = 'الوصف'; $a->strings['Add'] = 'أضف'; $a->strings['Failed to connect with email account using the settings provided.'] = 'فشل الاتصال بحساب البريد الإلكتروني باستخدام الإعدادات المقدمة.'; $a->strings['Diaspora (Socialhome, Hubzilla)'] = 'دياسبورا (سوشل-هوم، هوب-زيلا)'; -$a->strings['OStatus (GNU Social)'] = 'OStatus (غنو سوشل)'; $a->strings['Email access is disabled on this site.'] = 'الوصول إلى البريد الإلكتروني معطل في هذا الموقع.'; $a->strings['None'] = 'لا شيء'; $a->strings['General Social Media Settings'] = 'الإعدادات العامة لشبكات التواصل الاجتماعي'; @@ -1886,7 +1881,6 @@ $a->strings['Attach the link title'] = 'أرفق عنوان الرابط'; $a->strings['When activated, the title of the attached link will be added as a title on posts to Diaspora. This is mostly helpful with "remote-self" contacts that share feed content.'] = 'عند تفعيله سيتم إرفاق عنوان الصفحة بمنشور دياسبورا. هذا مفيد بشكل أساسي مع المتراسلين "الذاتيين" الذين يشاركون تغذيات Rss / Atom.'; $a->strings['Your legacy ActivityPub/GNU Social account'] = 'حساب GNU Social\ActivityPub القديم'; $a->strings['If you enter your old account name from an ActivityPub based system or your GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done.'] = 'إذا قمت بإدخال اسم حساب ActivityPub/GNU Social/Statusnet القديم هنا (بنسق user@domain.tld)، سيضاف المتراسلون في هذا الحساب تلقائيا. سيصفر الحقل عند الانتهاء.'; -$a->strings['Repair OStatus subscriptions'] = 'أصلح اشتراكات OStatus'; $a->strings['Email/Mailbox Setup'] = 'إعداد بريد الكتروني/صندوق بريد'; $a->strings['If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox.'] = 'إذا كنت ترغب في التواصل مع متراسلي البريد الإلكتروني باستخدام هذه الخدمة (اختيارية)، من فضلك حدد كيفية الاتصال بصندوق بريدك.'; $a->strings['Last successful email check:'] = 'آخر تحقق ناجح للبريد الإلكتروني:'; @@ -2121,7 +2115,6 @@ $a->strings['%s commented on %s\'s post'] = 'علق %s على مشاركة %s'; $a->strings['%s created a new post'] = 'أنشأ %s مشاركة جديدة'; $a->strings['Friend Suggestion'] = 'اقتراح صديق'; $a->strings['Friend/Connect Request'] = 'طلب صداقة/اقتران'; -$a->strings['New Follower'] = 'متابِع جديد'; $a->strings['%1$s wants to follow you'] = '%1$s يريد متابعتك'; $a->strings['%1$s has started following you'] = 'بدأ %1$s متابعتك'; $a->strings['%1$s liked your comment on %2$s'] = 'أٌعجب %1$s بتعليقك على %2$s'; @@ -2246,10 +2239,6 @@ $a->strings['%d comment'] = [ $a->strings['Show more'] = 'اعرض المزيد'; $a->strings['Show fewer'] = 'اعرض أقل'; $a->strings['(no subject)'] = '(بدون موضوع)'; -$a->strings['%s is now following %s.'] = '%s يتابع %s.'; -$a->strings['following'] = 'يتابع'; -$a->strings['%s stopped following %s.'] = '%s توقف عن متابعة %s.'; -$a->strings['stopped following'] = 'توقف عن متابعة'; $a->strings['Login failed.'] = 'فشل الولوج.'; $a->strings['Login failed. Please check your credentials.'] = 'فشل الولوج. من فضلك تحقق من بيانات الاعتماد.'; $a->strings['Welcome %s'] = 'مرحباً %s'; diff --git a/view/lang/bg/messages.po b/view/lang/bg/messages.po index 1c1a9220b8..8311f38357 100644 --- a/view/lang/bg/messages.po +++ b/view/lang/bg/messages.po @@ -1,8 +1,7 @@ # FRIENDICA Distributed Social Network -# SPDX-FileCopyrightText: Copyright (C) 2010-2024, the Friendica project -# -# SPDX-License-Identifier: AGPL-3.0-or-later -# +# Copyright (C) 2010-2024, the Friendica project +# This file is distributed under the same license as the Friendica package. +# # Translators: # Mike Macgirvin, 2010 # Rafael Kalachevupload_max_filesize
is set to %s (%s byte)"
msgstr ""
-#: src/Module/Admin/Site.php:499
+#: src/Module/Admin/Site.php:489
msgid "Maximum image length"
msgstr ""
-#: src/Module/Admin/Site.php:499
+#: src/Module/Admin/Site.php:489
msgid ""
"Maximum length in pixels of the longest side of uploaded images. Default is "
"-1, which means no limits."
msgstr ""
-#: src/Module/Admin/Site.php:500
+#: src/Module/Admin/Site.php:490
msgid "JPEG image quality"
msgstr ""
-#: src/Module/Admin/Site.php:500
+#: src/Module/Admin/Site.php:490
msgid ""
"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
"100, which is full quality."
msgstr ""
-#: src/Module/Admin/Site.php:502
+#: src/Module/Admin/Site.php:491
+msgid "Maximum media file size"
+msgstr ""
+
+#: src/Module/Admin/Site.php:491
+#, php-format
+msgid ""
+"Maximum size in bytes of uploaded media files. Default is 0, which means no limits. You can put k, m, or g behind the desired value for KiB, MiB, GiB, respectively.\n"
+"\t\t\t\t\t\t\t\t\t\t\t\t\tThe value of upload_max_filesize
in your PHP.ini
needs be set to at least the desired limit.\n"
+"\t\t\t\t\t\t\t\t\t\t\t\t\tCurrently upload_max_filesize
is set to %s (%s byte)"
+msgstr ""
+
+#: src/Module/Admin/Site.php:496
msgid "Register policy"
msgstr "Регистрирайте политика"
-#: src/Module/Admin/Site.php:503
+#: src/Module/Admin/Site.php:497
msgid "Maximum Users"
msgstr ""
-#: src/Module/Admin/Site.php:503
+#: src/Module/Admin/Site.php:497
msgid ""
"If defined, the register policy is automatically closed when the given "
"number of users is reached and reopens the registry when the number drops "
@@ -4657,167 +4745,167 @@ msgid ""
"not when the policy is set to approval."
msgstr ""
-#: src/Module/Admin/Site.php:504
+#: src/Module/Admin/Site.php:498
msgid "Maximum Daily Registrations"
msgstr ""
-#: src/Module/Admin/Site.php:504
+#: src/Module/Admin/Site.php:498
msgid ""
"If registration is permitted above, this sets the maximum number of new user"
" registrations to accept per day. If register is set to closed, this "
"setting has no effect."
msgstr ""
-#: src/Module/Admin/Site.php:505
+#: src/Module/Admin/Site.php:499
msgid "Register text"
msgstr "Регистрирайте се текст"
-#: src/Module/Admin/Site.php:505
+#: src/Module/Admin/Site.php:499
msgid ""
"Will be displayed prominently on the registration page. You can use BBCode "
"here."
msgstr ""
-#: src/Module/Admin/Site.php:506
+#: src/Module/Admin/Site.php:500
msgid "Forbidden Nicknames"
msgstr ""
-#: src/Module/Admin/Site.php:506
+#: src/Module/Admin/Site.php:500
msgid ""
"Comma separated list of nicknames that are forbidden from registration. "
"Preset is a list of role names according RFC 2142."
msgstr ""
-#: src/Module/Admin/Site.php:507
+#: src/Module/Admin/Site.php:501
msgid "Accounts abandoned after x days"
msgstr "Сметките изоставени след дни х"
-#: src/Module/Admin/Site.php:507
+#: src/Module/Admin/Site.php:501
msgid ""
"Will not waste system resources polling external sites for abandonded "
"accounts. Enter 0 for no time limit."
msgstr "Няма да губи системните ресурси избирателните външни сайтове за abandonded сметки. Въведете 0 за без ограничение във времето."
-#: src/Module/Admin/Site.php:508
+#: src/Module/Admin/Site.php:502
msgid "Allowed friend domains"
msgstr "Позволи на домейни приятел"
-#: src/Module/Admin/Site.php:508
+#: src/Module/Admin/Site.php:502
msgid ""
"Comma separated list of domains which are allowed to establish friendships "
"with this site. Wildcards are accepted. Empty to allow any domains"
msgstr "Разделени със запетая списък на домейни, на които е разрешено да се създадат приятелства с този сайт. Заместващи символи са приети. На Empty да се даде възможност на всички домейни"
-#: src/Module/Admin/Site.php:509
+#: src/Module/Admin/Site.php:503
msgid "Allowed email domains"
msgstr "Позволи на домейни имейл"
-#: src/Module/Admin/Site.php:509
+#: src/Module/Admin/Site.php:503
msgid ""
"Comma separated list of domains which are allowed in email addresses for "
"registrations to this site. Wildcards are accepted. Empty to allow any "
"domains"
msgstr "Разделени със запетая списък на домейни, които са разрешени в имейл адреси за регистрации в този сайт. Заместващи символи са приети. На Empty да се даде възможност на всички домейни"
-#: src/Module/Admin/Site.php:510
+#: src/Module/Admin/Site.php:504
msgid "Disallowed email domains"
msgstr ""
-#: src/Module/Admin/Site.php:510
+#: src/Module/Admin/Site.php:504
msgid ""
"Comma separated list of domains which are rejected as email addresses for "
"registrations to this site. Wildcards are accepted."
msgstr ""
-#: src/Module/Admin/Site.php:511
+#: src/Module/Admin/Site.php:505
msgid "No OEmbed rich content"
msgstr ""
-#: src/Module/Admin/Site.php:511
+#: src/Module/Admin/Site.php:505
msgid ""
"Don't show the rich content (e.g. embedded PDF), except from the domains "
"listed below."
msgstr ""
-#: src/Module/Admin/Site.php:512
+#: src/Module/Admin/Site.php:506
msgid "Trusted third-party domains"
msgstr ""
-#: src/Module/Admin/Site.php:512
+#: src/Module/Admin/Site.php:506
msgid ""
"Comma separated list of domains from which content is allowed to be embedded"
" in posts like with OEmbed. All sub-domains of the listed domains are "
"allowed as well."
msgstr ""
-#: src/Module/Admin/Site.php:513
+#: src/Module/Admin/Site.php:507
msgid "Block public"
msgstr "Блокиране на обществения"
-#: src/Module/Admin/Site.php:513
+#: src/Module/Admin/Site.php:507
msgid ""
"Check to block public access to all otherwise public personal pages on this "
"site unless you are currently logged in."
msgstr "Тръгване за блокиране на публичен достъп до всички по друг начин публичните лични страници на този сайт, освен ако в момента сте влезли в системата."
-#: src/Module/Admin/Site.php:514
+#: src/Module/Admin/Site.php:508
msgid "Force publish"
msgstr "Принудително публикува"
-#: src/Module/Admin/Site.php:514
+#: src/Module/Admin/Site.php:508
msgid ""
"Check to force all profiles on this site to be listed in the site directory."
msgstr "Проверете, за да се принудят всички профили на този сайт да бъдат изброени в директорията на сайта."
-#: src/Module/Admin/Site.php:514
+#: src/Module/Admin/Site.php:508
msgid "Enabling this may violate privacy laws like the GDPR"
msgstr ""
-#: src/Module/Admin/Site.php:515
+#: src/Module/Admin/Site.php:509
msgid "Global directory URL"
msgstr ""
-#: src/Module/Admin/Site.php:515
+#: src/Module/Admin/Site.php:509
msgid ""
"URL to the global directory. If this is not set, the global directory is "
"completely unavailable to the application."
msgstr ""
-#: src/Module/Admin/Site.php:516
+#: src/Module/Admin/Site.php:510
msgid "Private posts by default for new users"
msgstr ""
-#: src/Module/Admin/Site.php:516
+#: src/Module/Admin/Site.php:510
msgid ""
"Set default post permissions for all new members to the default privacy "
"circle rather than public."
msgstr ""
-#: src/Module/Admin/Site.php:517
+#: src/Module/Admin/Site.php:511
msgid "Don't include post content in email notifications"
msgstr ""
-#: src/Module/Admin/Site.php:517
+#: src/Module/Admin/Site.php:511
msgid ""
"Don't include the content of a post/comment/private message/etc. in the "
"email notifications that are sent out from this site, as a privacy measure."
msgstr ""
-#: src/Module/Admin/Site.php:518
+#: src/Module/Admin/Site.php:512
msgid "Disallow public access to addons listed in the apps menu."
msgstr ""
-#: src/Module/Admin/Site.php:518
+#: src/Module/Admin/Site.php:512
msgid ""
"Checking this box will restrict addons listed in the apps menu to members "
"only."
msgstr ""
-#: src/Module/Admin/Site.php:519
+#: src/Module/Admin/Site.php:513
msgid "Don't embed private images in posts"
msgstr ""
-#: src/Module/Admin/Site.php:519
+#: src/Module/Admin/Site.php:513
msgid ""
"Don't replace locally-hosted private photos in posts with an embedded copy "
"of the image. This means that contacts who receive posts containing private "
@@ -4825,11 +4913,11 @@ msgid ""
"while."
msgstr ""
-#: src/Module/Admin/Site.php:520
+#: src/Module/Admin/Site.php:514
msgid "Explicit Content"
msgstr ""
-#: src/Module/Admin/Site.php:520
+#: src/Module/Admin/Site.php:514
msgid ""
"Set this to announce that your node is used mostly for explicit content that"
" might not be suited for minors. This information will be published in the "
@@ -4838,339 +4926,319 @@ msgid ""
"will be shown at the user registration page."
msgstr ""
-#: src/Module/Admin/Site.php:521
-msgid "Proxify external content"
-msgstr ""
-
-#: src/Module/Admin/Site.php:521
-msgid ""
-"Route external content via the proxy functionality. This is used for example"
-" for some OEmbed accesses and in some other rare cases."
-msgstr ""
-
-#: src/Module/Admin/Site.php:522
+#: src/Module/Admin/Site.php:515
msgid "Only local search"
msgstr ""
-#: src/Module/Admin/Site.php:522
+#: src/Module/Admin/Site.php:515
msgid ""
"Blocks search for users who are not logged in to prevent crawlers from "
"blocking your system."
msgstr ""
-#: src/Module/Admin/Site.php:523
+#: src/Module/Admin/Site.php:516
msgid "Blocked tags for trending tags"
msgstr ""
-#: src/Module/Admin/Site.php:523
+#: src/Module/Admin/Site.php:516
msgid ""
"Comma separated list of hashtags that shouldn't be displayed in the trending"
" tags."
msgstr ""
-#: src/Module/Admin/Site.php:524
+#: src/Module/Admin/Site.php:517
msgid "Cache contact avatars"
msgstr ""
-#: src/Module/Admin/Site.php:524
+#: src/Module/Admin/Site.php:517
msgid ""
"Locally store the avatar pictures of the contacts. This uses a lot of "
"storage space but it increases the performance."
msgstr ""
-#: src/Module/Admin/Site.php:525
+#: src/Module/Admin/Site.php:518
msgid "Allow Users to set remote_self"
msgstr ""
-#: src/Module/Admin/Site.php:525
+#: src/Module/Admin/Site.php:518
msgid ""
"With checking this, every user is allowed to mark every contact as a "
"remote_self in the repair contact dialog. Setting this flag on a contact "
"causes mirroring every posting of that contact in the users stream."
msgstr ""
-#: src/Module/Admin/Site.php:526
+#: src/Module/Admin/Site.php:519
msgid "Allow Users to set up relay channels"
msgstr ""
-#: src/Module/Admin/Site.php:526
+#: src/Module/Admin/Site.php:519
msgid ""
"If enabled, it is possible to create relay users that are used to reshare "
"content based on user defined channels."
msgstr ""
-#: src/Module/Admin/Site.php:527
+#: src/Module/Admin/Site.php:520
msgid "Adjust the feed poll frequency"
msgstr ""
-#: src/Module/Admin/Site.php:527
+#: src/Module/Admin/Site.php:520
msgid "Automatically detect and set the best feed poll frequency."
msgstr ""
-#: src/Module/Admin/Site.php:528
+#: src/Module/Admin/Site.php:521
msgid "Minimum poll interval"
msgstr ""
-#: src/Module/Admin/Site.php:528
+#: src/Module/Admin/Site.php:521
msgid ""
"Minimal distance in minutes between two polls for mail and feed contacts. "
"Reasonable values are between 1 and 59."
msgstr ""
-#: src/Module/Admin/Site.php:529
+#: src/Module/Admin/Site.php:522
msgid "Enable multiple registrations"
msgstr ""
-#: src/Module/Admin/Site.php:529
+#: src/Module/Admin/Site.php:522
msgid "Enable users to register additional accounts for use as pages."
msgstr ""
-#: src/Module/Admin/Site.php:530
+#: src/Module/Admin/Site.php:523
msgid "Enable OpenID"
msgstr ""
-#: src/Module/Admin/Site.php:530
+#: src/Module/Admin/Site.php:523
msgid "Enable OpenID support for registration and logins."
msgstr ""
-#: src/Module/Admin/Site.php:531
+#: src/Module/Admin/Site.php:524
msgid "Enable full name check"
msgstr ""
-#: src/Module/Admin/Site.php:531
+#: src/Module/Admin/Site.php:524
msgid ""
"Prevents users from registering with a display name with fewer than two "
"parts separated by spaces."
msgstr ""
-#: src/Module/Admin/Site.php:532
+#: src/Module/Admin/Site.php:525
msgid "Email administrators on new registration"
msgstr ""
-#: src/Module/Admin/Site.php:532
+#: src/Module/Admin/Site.php:525
msgid ""
"If enabled and the system is set to an open registration, an email for each "
"new registration is sent to the administrators."
msgstr ""
-#: src/Module/Admin/Site.php:533
+#: src/Module/Admin/Site.php:526
msgid "Community pages for visitors"
msgstr ""
-#: src/Module/Admin/Site.php:533
+#: src/Module/Admin/Site.php:526
msgid ""
"Which community pages should be available for visitors. Local users always "
"see both pages."
msgstr ""
-#: src/Module/Admin/Site.php:534
+#: src/Module/Admin/Site.php:527
msgid "Posts per user on community page"
msgstr ""
-#: src/Module/Admin/Site.php:534
+#: src/Module/Admin/Site.php:527
msgid ""
"The maximum number of posts per user on the local community page. This is "
"useful, when a single user floods the local community page."
msgstr ""
-#: src/Module/Admin/Site.php:535
+#: src/Module/Admin/Site.php:528
msgid "Posts per server on community page"
msgstr ""
-#: src/Module/Admin/Site.php:535
+#: src/Module/Admin/Site.php:528
msgid ""
"The maximum number of posts per server on the global community page. This is"
" useful, when posts from a single server flood the global community page."
msgstr ""
-#: src/Module/Admin/Site.php:537
+#: src/Module/Admin/Site.php:530
msgid "Enable Mail support"
msgstr ""
-#: src/Module/Admin/Site.php:537
+#: src/Module/Admin/Site.php:530
msgid ""
"Enable built-in mail support to poll IMAP folders and to reply via mail."
msgstr ""
-#: src/Module/Admin/Site.php:538
+#: src/Module/Admin/Site.php:531
msgid ""
"Mail support can't be enabled because the PHP IMAP module is not installed."
msgstr ""
-#: src/Module/Admin/Site.php:539
-msgid "Enable OStatus support"
-msgstr ""
-
-#: src/Module/Admin/Site.php:539
-msgid ""
-"Enable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
-"communications in OStatus are public."
-msgstr ""
-
-#: src/Module/Admin/Site.php:541
+#: src/Module/Admin/Site.php:533
msgid ""
"Diaspora support can't be enabled because Friendica was installed into a sub"
" directory."
msgstr ""
-#: src/Module/Admin/Site.php:542
+#: src/Module/Admin/Site.php:534
msgid "Enable Diaspora support"
msgstr "Активирайте диаспора подкрепа"
-#: src/Module/Admin/Site.php:542
+#: src/Module/Admin/Site.php:534
msgid ""
"Enable built-in Diaspora network compatibility for communicating with "
"diaspora servers."
msgstr ""
-#: src/Module/Admin/Site.php:543
+#: src/Module/Admin/Site.php:535
msgid "Verify SSL"
msgstr "Провери SSL"
-#: src/Module/Admin/Site.php:543
+#: src/Module/Admin/Site.php:535
msgid ""
"If you wish, you can turn on strict certificate checking. This will mean you"
" cannot connect (at all) to self-signed SSL sites."
msgstr "Ако желаете, можете да се обърнете на стриктна проверка на сертификат. Това ще означава, че не можете да свържете (на всички), за да самоподписани SSL обекти."
-#: src/Module/Admin/Site.php:544
+#: src/Module/Admin/Site.php:536
msgid "Proxy user"
msgstr "Proxy потребител"
-#: src/Module/Admin/Site.php:544
+#: src/Module/Admin/Site.php:536
msgid "User name for the proxy server."
msgstr ""
-#: src/Module/Admin/Site.php:545
+#: src/Module/Admin/Site.php:537
msgid "Proxy URL"
msgstr "Proxy URL"
-#: src/Module/Admin/Site.php:545
+#: src/Module/Admin/Site.php:537
msgid ""
"If you want to use a proxy server that Friendica should use to connect to "
"the network, put the URL of the proxy here."
msgstr ""
-#: src/Module/Admin/Site.php:546
+#: src/Module/Admin/Site.php:538
msgid "Network timeout"
msgstr "Мрежа изчакване"
-#: src/Module/Admin/Site.php:546
+#: src/Module/Admin/Site.php:538
msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
msgstr "Стойността е в секунди. Настройте на 0 за неограничен (не се препоръчва)."
-#: src/Module/Admin/Site.php:547
+#: src/Module/Admin/Site.php:539
msgid "Maximum Load Average"
msgstr "Максимално натоварване"
-#: src/Module/Admin/Site.php:547
+#: src/Module/Admin/Site.php:539
#, php-format
msgid ""
"Maximum system load before delivery and poll processes are deferred - "
"default %d."
msgstr ""
-#: src/Module/Admin/Site.php:548
+#: src/Module/Admin/Site.php:540
msgid "Minimal Memory"
msgstr ""
-#: src/Module/Admin/Site.php:548
+#: src/Module/Admin/Site.php:540
msgid ""
"Minimal free memory in MB for the worker. Needs access to /proc/meminfo - "
"default 0 (deactivated)."
msgstr ""
-#: src/Module/Admin/Site.php:549
+#: src/Module/Admin/Site.php:541
msgid "Periodically optimize tables"
msgstr ""
-#: src/Module/Admin/Site.php:549
+#: src/Module/Admin/Site.php:541
msgid "Periodically optimize tables like the cache and the workerqueue"
msgstr ""
-#: src/Module/Admin/Site.php:551
+#: src/Module/Admin/Site.php:543
msgid "Discover followers/followings from contacts"
msgstr ""
-#: src/Module/Admin/Site.php:551
+#: src/Module/Admin/Site.php:543
msgid ""
"If enabled, contacts are checked for their followers and following contacts."
msgstr ""
-#: src/Module/Admin/Site.php:552
+#: src/Module/Admin/Site.php:544
msgid "None - deactivated"
msgstr ""
-#: src/Module/Admin/Site.php:553
+#: src/Module/Admin/Site.php:545
msgid ""
"Local contacts - contacts of our local contacts are discovered for their "
"followers/followings."
msgstr ""
-#: src/Module/Admin/Site.php:554
+#: src/Module/Admin/Site.php:546
msgid ""
"Interactors - contacts of our local contacts and contacts who interacted on "
"locally visible postings are discovered for their followers/followings."
msgstr ""
-#: src/Module/Admin/Site.php:556
+#: src/Module/Admin/Site.php:548
msgid "Only update contacts/servers with local data"
msgstr ""
-#: src/Module/Admin/Site.php:556
+#: src/Module/Admin/Site.php:548
msgid ""
"If enabled, the system will only look for changes in contacts and servers "
"that engaged on this system by either being in a contact list of a user or "
"when posts or comments exists from the contact on this system."
msgstr ""
-#: src/Module/Admin/Site.php:557
+#: src/Module/Admin/Site.php:549
msgid "Synchronize the contacts with the directory server"
msgstr ""
-#: src/Module/Admin/Site.php:557
+#: src/Module/Admin/Site.php:549
msgid ""
"if enabled, the system will check periodically for new contacts on the "
"defined directory server."
msgstr ""
-#: src/Module/Admin/Site.php:559
+#: src/Module/Admin/Site.php:551
msgid "Discover contacts from other servers"
msgstr ""
-#: src/Module/Admin/Site.php:559
+#: src/Module/Admin/Site.php:551
msgid ""
"Periodically query other servers for contacts and servers that they know of."
" The system queries Friendica, Mastodon and Hubzilla servers. Keep it "
"deactivated on small machines to decrease the database size and load."
msgstr ""
-#: src/Module/Admin/Site.php:560
+#: src/Module/Admin/Site.php:552
msgid "Days between requery"
msgstr ""
-#: src/Module/Admin/Site.php:560
+#: src/Module/Admin/Site.php:552
msgid ""
"Number of days after which a server is requeried for their contacts and "
"servers it knows of. This is only used when the discovery is activated."
msgstr ""
-#: src/Module/Admin/Site.php:561
+#: src/Module/Admin/Site.php:553
msgid "Search the local directory"
msgstr ""
-#: src/Module/Admin/Site.php:561
+#: src/Module/Admin/Site.php:553
msgid ""
"Search the local directory instead of the global directory. When searching "
"locally, every search will be executed on the global directory in the "
"background. This improves the search results when the search is repeated."
msgstr ""
-#: src/Module/Admin/Site.php:563
+#: src/Module/Admin/Site.php:555
msgid "Publish server information"
msgstr ""
-#: src/Module/Admin/Site.php:563
+#: src/Module/Admin/Site.php:555
msgid ""
"If enabled, general server and usage data will be published. The data "
"contains the name and version of the server, number of users with public "
@@ -5178,50 +5246,50 @@ msgid ""
" href=\"http://the-federation.info/\">the-federation.info for details."
msgstr ""
-#: src/Module/Admin/Site.php:565
+#: src/Module/Admin/Site.php:557
msgid "Check upstream version"
msgstr ""
-#: src/Module/Admin/Site.php:565
+#: src/Module/Admin/Site.php:557
msgid ""
"Enables checking for new Friendica versions at github. If there is a new "
"version, you will be informed in the admin panel overview."
msgstr ""
-#: src/Module/Admin/Site.php:566
+#: src/Module/Admin/Site.php:558
msgid "Suppress Tags"
msgstr ""
-#: src/Module/Admin/Site.php:566
+#: src/Module/Admin/Site.php:558
msgid "Suppress showing a list of hashtags at the end of the posting."
msgstr ""
-#: src/Module/Admin/Site.php:567
+#: src/Module/Admin/Site.php:559
msgid "Clean database"
msgstr ""
-#: src/Module/Admin/Site.php:567
+#: src/Module/Admin/Site.php:559
msgid ""
"Remove old remote items, orphaned database records and old content from some"
" other helper tables."
msgstr ""
-#: src/Module/Admin/Site.php:568
+#: src/Module/Admin/Site.php:560
msgid "Lifespan of remote items"
msgstr ""
-#: src/Module/Admin/Site.php:568
+#: src/Module/Admin/Site.php:560
msgid ""
"When the database cleanup is enabled, this defines the days after which "
"remote items will be deleted. Own items, and marked or filed items are "
"always kept. 0 disables this behaviour."
msgstr ""
-#: src/Module/Admin/Site.php:569
+#: src/Module/Admin/Site.php:561
msgid "Lifespan of unclaimed items"
msgstr ""
-#: src/Module/Admin/Site.php:569
+#: src/Module/Admin/Site.php:561
msgid ""
"When the database cleanup is enabled, this defines the days after which "
"unclaimed remote items (mostly content from the relay) will be deleted. "
@@ -5229,175 +5297,184 @@ msgid ""
"items if set to 0."
msgstr ""
-#: src/Module/Admin/Site.php:570
+#: src/Module/Admin/Site.php:562
msgid "Lifespan of raw conversation data"
msgstr ""
-#: src/Module/Admin/Site.php:570
+#: src/Module/Admin/Site.php:562
msgid ""
-"The conversation data is used for ActivityPub and OStatus, as well as for "
-"debug purposes. It should be safe to remove it after 14 days, default is 90 "
-"days."
+"The conversation data is used for ActivityPub, as well as for debug "
+"purposes. It should be safe to remove it after 14 days, default is 90 days."
msgstr ""
-#: src/Module/Admin/Site.php:571
+#: src/Module/Admin/Site.php:563
msgid "Maximum numbers of comments per post"
msgstr ""
-#: src/Module/Admin/Site.php:571
+#: src/Module/Admin/Site.php:563
msgid "How much comments should be shown for each post? Default value is 100."
msgstr ""
-#: src/Module/Admin/Site.php:572
+#: src/Module/Admin/Site.php:564
msgid "Maximum numbers of comments per post on the display page"
msgstr ""
-#: src/Module/Admin/Site.php:572
+#: src/Module/Admin/Site.php:564
msgid ""
"How many comments should be shown on the single view for each post? Default "
"value is 1000."
msgstr ""
-#: src/Module/Admin/Site.php:573
+#: src/Module/Admin/Site.php:565
msgid "Items per page"
msgstr ""
-#: src/Module/Admin/Site.php:573
+#: src/Module/Admin/Site.php:565
msgid ""
"Number of items per page in stream pages (network, community, "
"profile/contact statuses, search)."
msgstr ""
-#: src/Module/Admin/Site.php:574
+#: src/Module/Admin/Site.php:566
msgid "Items per page for mobile devices"
msgstr ""
-#: src/Module/Admin/Site.php:574
+#: src/Module/Admin/Site.php:566
msgid ""
"Number of items per page in stream pages (network, community, "
"profile/contact statuses, search) for mobile devices."
msgstr ""
-#: src/Module/Admin/Site.php:575
+#: src/Module/Admin/Site.php:567
msgid "Temp path"
msgstr ""
-#: src/Module/Admin/Site.php:575
+#: src/Module/Admin/Site.php:567
msgid ""
"If you have a restricted system where the webserver can't access the system "
"temp path, enter another path here."
msgstr ""
-#: src/Module/Admin/Site.php:576
+#: src/Module/Admin/Site.php:568
msgid "Only search in tags"
msgstr ""
-#: src/Module/Admin/Site.php:576
+#: src/Module/Admin/Site.php:568
msgid "On large systems the text search can slow down the system extremely."
msgstr ""
-#: src/Module/Admin/Site.php:577
+#: src/Module/Admin/Site.php:569
+msgid "Limited search scope"
+msgstr ""
+
+#: src/Module/Admin/Site.php:569
+msgid ""
+"If enabled, searches will only be performed in the data used for the "
+"channels and not in all posts."
+msgstr ""
+
+#: src/Module/Admin/Site.php:570
msgid "Maximum age of items in the search table"
msgstr ""
-#: src/Module/Admin/Site.php:577
+#: src/Module/Admin/Site.php:570
msgid ""
"Maximum age of items in the search table in days. Lower values will increase"
" the performance and reduce disk usage. 0 means no age restriction."
msgstr ""
-#: src/Module/Admin/Site.php:578
+#: src/Module/Admin/Site.php:571
msgid "Generate counts per contact circle when calculating network count"
msgstr ""
-#: src/Module/Admin/Site.php:578
+#: src/Module/Admin/Site.php:571
msgid ""
"On systems with users that heavily use contact circles the query can be very"
" expensive."
msgstr ""
-#: src/Module/Admin/Site.php:579
+#: src/Module/Admin/Site.php:572
msgid "Process \"view\" activities"
msgstr ""
-#: src/Module/Admin/Site.php:579
+#: src/Module/Admin/Site.php:572
msgid ""
"\"view\" activities are mostly geberated by Peertube systems. Per default "
"they are not processed for performance reasons. Only activate this option on"
" performant system."
msgstr ""
-#: src/Module/Admin/Site.php:580
+#: src/Module/Admin/Site.php:573
msgid "Days, after which a contact is archived"
msgstr ""
-#: src/Module/Admin/Site.php:580
+#: src/Module/Admin/Site.php:573
msgid ""
"Number of days that we try to deliver content or to update the contact data "
"before we archive a contact."
msgstr ""
-#: src/Module/Admin/Site.php:582
+#: src/Module/Admin/Site.php:575
msgid "Maximum number of parallel workers"
msgstr ""
-#: src/Module/Admin/Site.php:582
+#: src/Module/Admin/Site.php:575
#, php-format
msgid ""
"On shared hosters set this to %d. On larger systems, values of %d are great."
" Default value is %d."
msgstr ""
-#: src/Module/Admin/Site.php:583
+#: src/Module/Admin/Site.php:576
msgid "Maximum load for workers"
msgstr ""
-#: src/Module/Admin/Site.php:583
+#: src/Module/Admin/Site.php:576
msgid "Maximum load that causes a cooldown before each worker function call."
msgstr ""
-#: src/Module/Admin/Site.php:584
+#: src/Module/Admin/Site.php:577
msgid "Enable fastlane"
msgstr ""
-#: src/Module/Admin/Site.php:584
+#: src/Module/Admin/Site.php:577
msgid ""
"When enabed, the fastlane mechanism starts an additional worker if processes"
" with higher priority are blocked by processes of lower priority."
msgstr ""
-#: src/Module/Admin/Site.php:585
+#: src/Module/Admin/Site.php:578
msgid "Decoupled receiver"
msgstr ""
-#: src/Module/Admin/Site.php:585
+#: src/Module/Admin/Site.php:578
msgid ""
"Decouple incoming ActivityPub posts by processing them in the background via"
" a worker process. Only enable this on fast systems."
msgstr ""
-#: src/Module/Admin/Site.php:586
+#: src/Module/Admin/Site.php:579
msgid "Cron interval"
msgstr ""
-#: src/Module/Admin/Site.php:586
+#: src/Module/Admin/Site.php:579
msgid "Minimal period in minutes between two calls of the \"Cron\" worker job."
msgstr ""
-#: src/Module/Admin/Site.php:587
+#: src/Module/Admin/Site.php:580
msgid "Worker defer limit"
msgstr ""
-#: src/Module/Admin/Site.php:587
+#: src/Module/Admin/Site.php:580
msgid ""
"Per default the systems tries delivering for 15 times before dropping it."
msgstr ""
-#: src/Module/Admin/Site.php:588
+#: src/Module/Admin/Site.php:581
msgid "Worker fetch limit"
msgstr ""
-#: src/Module/Admin/Site.php:588
+#: src/Module/Admin/Site.php:581
msgid ""
"Number of worker tasks that are fetched in a single query. Higher values "
"should increase the performance, too high values will mostly likely decrease"
@@ -5405,214 +5482,214 @@ msgid ""
"system."
msgstr ""
-#: src/Module/Admin/Site.php:590
+#: src/Module/Admin/Site.php:583
msgid "Direct relay transfer"
msgstr ""
-#: src/Module/Admin/Site.php:590
+#: src/Module/Admin/Site.php:583
msgid ""
"Enables the direct transfer to other servers without using the relay servers"
msgstr ""
-#: src/Module/Admin/Site.php:591
+#: src/Module/Admin/Site.php:584
msgid "Relay scope"
msgstr ""
-#: src/Module/Admin/Site.php:591
+#: src/Module/Admin/Site.php:584
msgid ""
"Can be \"all\" or \"tags\". \"all\" means that every public post should be "
"received. \"tags\" means that only posts with selected tags should be "
"received."
msgstr ""
-#: src/Module/Admin/Site.php:591 src/Module/Contact/Profile.php:309
-#: src/Module/Settings/TwoFactor/Index.php:146
+#: src/Module/Admin/Site.php:584 src/Module/Contact/Profile.php:314
+#: src/Module/Settings/TwoFactor/Index.php:132
msgid "Disabled"
msgstr ""
-#: src/Module/Admin/Site.php:591
+#: src/Module/Admin/Site.php:584
msgid "all"
msgstr ""
-#: src/Module/Admin/Site.php:591
+#: src/Module/Admin/Site.php:584
msgid "tags"
msgstr ""
-#: src/Module/Admin/Site.php:592
+#: src/Module/Admin/Site.php:585
msgid "Server tags"
msgstr ""
-#: src/Module/Admin/Site.php:592
+#: src/Module/Admin/Site.php:585
msgid "Comma separated list of tags for the \"tags\" subscription."
msgstr ""
-#: src/Module/Admin/Site.php:593
+#: src/Module/Admin/Site.php:586
msgid "Deny Server tags"
msgstr ""
-#: src/Module/Admin/Site.php:593
+#: src/Module/Admin/Site.php:586
msgid "Comma separated list of tags that are rejected."
msgstr ""
-#: src/Module/Admin/Site.php:594
+#: src/Module/Admin/Site.php:587
msgid "Maximum amount of tags"
msgstr ""
-#: src/Module/Admin/Site.php:594
+#: src/Module/Admin/Site.php:587
msgid ""
"Maximum amount of tags in a post before it is rejected as spam. The post has"
" to contain at least one link. Posts from subscribed accounts will not be "
"rejected."
msgstr ""
-#: src/Module/Admin/Site.php:595
+#: src/Module/Admin/Site.php:588
msgid "Allow user tags"
msgstr ""
-#: src/Module/Admin/Site.php:595
+#: src/Module/Admin/Site.php:588
msgid ""
"If enabled, the tags from the saved searches will used for the \"tags\" "
"subscription in addition to the \"relay_server_tags\"."
msgstr ""
-#: src/Module/Admin/Site.php:596
+#: src/Module/Admin/Site.php:589
msgid "Deny undetected languages"
msgstr ""
-#: src/Module/Admin/Site.php:596
+#: src/Module/Admin/Site.php:589
msgid "If enabled, posts with undetected languages will be rejected."
msgstr ""
-#: src/Module/Admin/Site.php:597
+#: src/Module/Admin/Site.php:590
msgid "Language Quality"
msgstr ""
-#: src/Module/Admin/Site.php:597
+#: src/Module/Admin/Site.php:590
msgid "The minimum language quality that is required to accept the post."
msgstr ""
-#: src/Module/Admin/Site.php:598
+#: src/Module/Admin/Site.php:591
msgid "Number of languages for the language detection"
msgstr ""
-#: src/Module/Admin/Site.php:598
+#: src/Module/Admin/Site.php:591
msgid ""
"The system detects a list of languages per post. Only if the desired "
"languages are in the list, the message will be accepted. The higher the "
"number, the more posts will be falsely detected."
msgstr ""
-#: src/Module/Admin/Site.php:600
+#: src/Module/Admin/Site.php:593
msgid "Maximum age of channel"
msgstr ""
-#: src/Module/Admin/Site.php:600
+#: src/Module/Admin/Site.php:593
msgid ""
"This defines the maximum age in hours of items that should be displayed in "
"channels. This affects the channel performance."
msgstr ""
-#: src/Module/Admin/Site.php:601
+#: src/Module/Admin/Site.php:594
msgid "Maximum number of channel posts"
msgstr ""
-#: src/Module/Admin/Site.php:601
+#: src/Module/Admin/Site.php:594
msgid ""
"For performance reasons, the channels use a dedicated table to store "
"content. The higher the value the slower the channels."
msgstr ""
-#: src/Module/Admin/Site.php:602
+#: src/Module/Admin/Site.php:595
msgid "Interaction score days"
msgstr ""
-#: src/Module/Admin/Site.php:602
+#: src/Module/Admin/Site.php:595
msgid "Number of days that are used to calculate the interaction score."
msgstr ""
-#: src/Module/Admin/Site.php:603
+#: src/Module/Admin/Site.php:596
msgid "Maximum number of posts per author"
msgstr ""
-#: src/Module/Admin/Site.php:603
+#: src/Module/Admin/Site.php:596
msgid ""
"Maximum number of posts per page by author if the contact frequency is set "
"to \"Display only few posts\". If there are more posts, then the post with "
"the most interactions will be displayed."
msgstr ""
-#: src/Module/Admin/Site.php:604
+#: src/Module/Admin/Site.php:597
msgid "Sharer interaction days"
msgstr ""
-#: src/Module/Admin/Site.php:604
+#: src/Module/Admin/Site.php:597
msgid ""
"Number of days of the last interaction that are used to define which sharers"
" are used for the \"sharers of sharers\" channel."
msgstr ""
-#: src/Module/Admin/Site.php:607
+#: src/Module/Admin/Site.php:600
msgid "Start Relocation"
msgstr ""
-#: src/Module/Admin/Storage.php:46
+#: src/Module/Admin/Storage.php:32
#, php-format
msgid "Storage backend, %s is invalid."
msgstr ""
-#: src/Module/Admin/Storage.php:73
+#: src/Module/Admin/Storage.php:59
#, php-format
msgid "Storage backend %s error: %s"
msgstr ""
-#: src/Module/Admin/Storage.php:84 src/Module/Admin/Storage.php:87
+#: src/Module/Admin/Storage.php:70 src/Module/Admin/Storage.php:73
msgid "Invalid storage backend setting value."
msgstr ""
-#: src/Module/Admin/Storage.php:139
+#: src/Module/Admin/Storage.php:125
msgid "Current Storage Backend"
msgstr ""
-#: src/Module/Admin/Storage.php:140
+#: src/Module/Admin/Storage.php:126
msgid "Storage Configuration"
msgstr ""
-#: src/Module/Admin/Storage.php:141 src/Module/BaseAdmin.php:91
+#: src/Module/Admin/Storage.php:127 src/Module/BaseAdmin.php:77
msgid "Storage"
msgstr ""
-#: src/Module/Admin/Storage.php:143
+#: src/Module/Admin/Storage.php:129
msgid "Save & Use storage backend"
msgstr ""
-#: src/Module/Admin/Storage.php:144
+#: src/Module/Admin/Storage.php:130
msgid "Use storage backend"
msgstr ""
-#: src/Module/Admin/Storage.php:145
+#: src/Module/Admin/Storage.php:131
msgid "Save & Reload"
msgstr ""
-#: src/Module/Admin/Storage.php:146
+#: src/Module/Admin/Storage.php:132
msgid "This backend doesn't have custom settings"
msgstr ""
-#: src/Module/Admin/Storage.php:148
+#: src/Module/Admin/Storage.php:134
msgid ""
"Changing the current backend is prohibited because it is set by an "
"environment variable"
msgstr ""
-#: src/Module/Admin/Storage.php:150
+#: src/Module/Admin/Storage.php:136
msgid "Database (legacy)"
msgstr ""
-#: src/Module/Admin/Summary.php:55
+#: src/Module/Admin/Summary.php:41
#, php-format
msgid "Template engine (%s) error: %s"
msgstr ""
-#: src/Module/Admin/Summary.php:59
+#: src/Module/Admin/Summary.php:45
#, php-format
msgid ""
"Your DB still runs with MyISAM tables. You should change the engine type to "
@@ -5623,7 +5700,7 @@ msgid ""
" an automatic conversion.The server domain pattern syntax is case-insensitive shell wildcard, comprising the following special characters:
\n" "This file can be downloaded from the /friendica
path of any "
"Friendica server.
debug.store_source
config key is set in "
"config/local.config.php
for future items to have sources."
msgstr ""
-#: src/Module/Moderation/Item/Source.php:92
+#: src/Module/Moderation/Item/Source.php:84
msgid "Item Guid"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:95
+#: src/Module/Moderation/Report/Create.php:81
msgid "Contact not found or their server is already blocked on this node."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:136
+#: src/Module/Moderation/Report/Create.php:122
msgid "Please login to access this page."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:165
-#: src/Module/Moderation/Report/Create.php:180
-#: src/Module/Moderation/Report/Create.php:208
-#: src/Module/Moderation/Report/Create.php:260
-#: src/Module/Moderation/Report/Create.php:279
+#: src/Module/Moderation/Report/Create.php:151
+#: src/Module/Moderation/Report/Create.php:166
+#: src/Module/Moderation/Report/Create.php:194
+#: src/Module/Moderation/Report/Create.php:246
+#: src/Module/Moderation/Report/Create.php:265
msgid "Create Moderation Report"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:166
+#: src/Module/Moderation/Report/Create.php:152
msgid "Pick Contact"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:167
+#: src/Module/Moderation/Report/Create.php:153
msgid ""
"Please enter below the contact address or profile URL you would like to "
"create a moderation report about."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:171
+#: src/Module/Moderation/Report/Create.php:157
msgid "Contact address/URL"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:181
+#: src/Module/Moderation/Report/Create.php:167
msgid "Pick Category"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:182
+#: src/Module/Moderation/Report/Create.php:168
msgid "Please pick below the category of your report."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:186
-#: src/Module/Moderation/Report/Create.php:311
+#: src/Module/Moderation/Report/Create.php:172
+#: src/Module/Moderation/Report/Create.php:297
msgid "Spam"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:186
+#: src/Module/Moderation/Report/Create.php:172
msgid ""
"This contact is publishing many repeated/overly long posts/replies or "
"advertising their product/websites in otherwise irrelevant conversations."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:187
-#: src/Module/Moderation/Report/Create.php:312
+#: src/Module/Moderation/Report/Create.php:173
+#: src/Module/Moderation/Report/Create.php:298
msgid "Illegal Content"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:187
+#: src/Module/Moderation/Report/Create.php:173
msgid ""
"This contact is publishing content that is considered illegal in this node's"
" hosting juridiction."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:188
-#: src/Module/Moderation/Report/Create.php:313
+#: src/Module/Moderation/Report/Create.php:174
+#: src/Module/Moderation/Report/Create.php:299
msgid "Community Safety"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:188
+#: src/Module/Moderation/Report/Create.php:174
msgid ""
"This contact aggravated you or other people, by being provocative or "
"insensitive, intentionally or not. This includes disclosing people's private"
@@ -8383,12 +8456,12 @@ msgid ""
"replies."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:189
-#: src/Module/Moderation/Report/Create.php:314
+#: src/Module/Moderation/Report/Create.php:175
+#: src/Module/Moderation/Report/Create.php:300
msgid "Unwanted Content/Behavior"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:189
+#: src/Module/Moderation/Report/Create.php:175
msgid ""
"This contact has repeatedly published content irrelevant to the node's theme"
" or is openly criticizing the node's administration/moderation without "
@@ -8396,89 +8469,89 @@ msgid ""
"nitpicking on a sensitive topic."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:190
-#: src/Module/Moderation/Report/Create.php:315
+#: src/Module/Moderation/Report/Create.php:176
+#: src/Module/Moderation/Report/Create.php:301
msgid "Rules Violation"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:190
+#: src/Module/Moderation/Report/Create.php:176
msgid ""
"This contact violated one or more rules of this node. You will be able to "
"pick which one(s) in the next step."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:191
+#: src/Module/Moderation/Report/Create.php:177
msgid ""
"Please elaborate below why you submitted this report. The more details you "
"provide, the better your report can be handled."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:193
+#: src/Module/Moderation/Report/Create.php:179
msgid "Additional Information"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:193
+#: src/Module/Moderation/Report/Create.php:179
msgid ""
"Please provide any additional information relevant to this particular "
"report. You will be able to attach posts by this contact in the next step, "
"but any context is welcome."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:209
+#: src/Module/Moderation/Report/Create.php:195
msgid "Pick Rules"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:210
+#: src/Module/Moderation/Report/Create.php:196
msgid "Please pick below the node rules you believe this contact violated."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:261
+#: src/Module/Moderation/Report/Create.php:247
msgid "Pick Posts"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:262
+#: src/Module/Moderation/Report/Create.php:248
msgid "Please optionally pick posts to attach to your report."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:281
+#: src/Module/Moderation/Report/Create.php:267
msgid "Submit Report"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:282
+#: src/Module/Moderation/Report/Create.php:268
msgid "Further Action"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:283
+#: src/Module/Moderation/Report/Create.php:269
msgid ""
"You can also perform one of the following action on the contact you "
"reported:"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:291
+#: src/Module/Moderation/Report/Create.php:277
msgid "Nothing"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:292
+#: src/Module/Moderation/Report/Create.php:278
msgid "Collapse contact"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:292
+#: src/Module/Moderation/Report/Create.php:278
msgid ""
"Their posts and replies will keep appearing in your Network page but their "
"content will be collapsed by default."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:293
+#: src/Module/Moderation/Report/Create.php:279
msgid ""
"Their posts won't appear in your Network page anymore, but their replies can"
" appear in forum threads. They still can follow you."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:294
+#: src/Module/Moderation/Report/Create.php:280
msgid "Block contact"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:294
+#: src/Module/Moderation/Report/Create.php:280
msgid ""
"Their posts won't appear in your Network page anymore, but their replies can"
" appear in forum threads, with their content collapsed by default. They "
@@ -8486,723 +8559,694 @@ msgid ""
"means."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:297
+#: src/Module/Moderation/Report/Create.php:283
msgid "Forward report"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:297
+#: src/Module/Moderation/Report/Create.php:283
msgid "Would you ike to forward this report to the remote server?"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:330
+#: src/Module/Moderation/Report/Create.php:316
msgid "1. Pick a contact"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:331
+#: src/Module/Moderation/Report/Create.php:317
msgid "2. Pick a category"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:332
+#: src/Module/Moderation/Report/Create.php:318
msgid "2a. Pick rules"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:333
+#: src/Module/Moderation/Report/Create.php:319
msgid "2b. Add comment"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:334
+#: src/Module/Moderation/Report/Create.php:320
msgid "3. Pick posts"
msgstr ""
-#: src/Module/Moderation/Reports.php:90
+#: src/Module/Moderation/Reports.php:97
msgid "List of reports"
msgstr ""
-#: src/Module/Moderation/Reports.php:91
+#: src/Module/Moderation/Reports.php:98
msgid "This page display reports created by our or remote users."
msgstr ""
-#: src/Module/Moderation/Reports.php:92
+#: src/Module/Moderation/Reports.php:99
msgid "No report exists at this node."
msgstr ""
-#: src/Module/Moderation/Reports.php:95
+#: src/Module/Moderation/Reports.php:102
msgid "Category"
msgstr ""
-#: src/Module/Moderation/Reports.php:101
+#: src/Module/Moderation/Reports.php:106
#, php-format
msgid "%s total report"
msgid_plural "%s total reports"
msgstr[0] ""
msgstr[1] ""
-#: src/Module/Moderation/Reports.php:104
+#: src/Module/Moderation/Reports.php:109
msgid "URL of the reported contact."
msgstr ""
-#: src/Module/Moderation/Summary.php:57 src/Module/Settings/Account.php:431
+#: src/Module/Moderation/Summary.php:43 src/Module/Settings/Account.php:422
msgid "Channel Relay"
msgstr ""
-#: src/Module/Moderation/Summary.php:77
+#: src/Module/Moderation/Summary.php:63
msgid "Registered users"
msgstr "Регистрираните потребители"
-#: src/Module/Moderation/Summary.php:79
+#: src/Module/Moderation/Summary.php:65
msgid "Pending registrations"
msgstr "Предстоящи регистрации"
-#: src/Module/Moderation/Users/Active.php:43
-#: src/Module/Moderation/Users/Index.php:43
+#: src/Module/Moderation/Users/Active.php:29
+#: src/Module/Moderation/Users/Index.php:29
#, php-format
msgid "%s user blocked"
msgid_plural "%s users blocked"
msgstr[0] ""
msgstr[1] ""
-#: src/Module/Moderation/Users/Active.php:51
-#: src/Module/Moderation/Users/Active.php:85
-#: src/Module/Moderation/Users/Blocked.php:51
-#: src/Module/Moderation/Users/Blocked.php:85
-#: src/Module/Moderation/Users/Index.php:58
-#: src/Module/Moderation/Users/Index.php:92
+#: src/Module/Moderation/Users/Active.php:37
+#: src/Module/Moderation/Users/Active.php:71
+#: src/Module/Moderation/Users/Blocked.php:37
+#: src/Module/Moderation/Users/Blocked.php:71
+#: src/Module/Moderation/Users/Index.php:44
+#: src/Module/Moderation/Users/Index.php:78
msgid "You can't remove yourself"
msgstr ""
-#: src/Module/Moderation/Users/Active.php:55
-#: src/Module/Moderation/Users/Blocked.php:55
-#: src/Module/Moderation/Users/Index.php:62
+#: src/Module/Moderation/Users/Active.php:41
+#: src/Module/Moderation/Users/Blocked.php:41
+#: src/Module/Moderation/Users/Index.php:48
#, php-format
msgid "%s user deleted"
msgid_plural "%s users deleted"
msgstr[0] ""
msgstr[1] ""
-#: src/Module/Moderation/Users/Active.php:83
-#: src/Module/Moderation/Users/Blocked.php:83
-#: src/Module/Moderation/Users/Index.php:90
+#: src/Module/Moderation/Users/Active.php:69
+#: src/Module/Moderation/Users/Blocked.php:69
+#: src/Module/Moderation/Users/Index.php:76
#, php-format
msgid "User \"%s\" deleted"
msgstr ""
-#: src/Module/Moderation/Users/Active.php:93
-#: src/Module/Moderation/Users/Index.php:100
+#: src/Module/Moderation/Users/Active.php:79
+#: src/Module/Moderation/Users/Index.php:86
#, php-format
msgid "User \"%s\" blocked"
msgstr ""
-#: src/Module/Moderation/Users/Active.php:126
-#: src/Module/Moderation/Users/Blocked.php:126
-#: src/Module/Moderation/Users/Deleted.php:83
-#: src/Module/Moderation/Users/Index.php:140
-#: src/Module/Moderation/Users/Index.php:160
+#: src/Module/Moderation/Users/Active.php:112
+#: src/Module/Moderation/Users/Blocked.php:112
+#: src/Module/Moderation/Users/Deleted.php:69
+#: src/Module/Moderation/Users/Index.php:126
+#: src/Module/Moderation/Users/Index.php:146
msgid "Register date"
msgstr "Дата на регистрация"
-#: src/Module/Moderation/Users/Active.php:126
-#: src/Module/Moderation/Users/Blocked.php:126
-#: src/Module/Moderation/Users/Deleted.php:83
-#: src/Module/Moderation/Users/Index.php:140
-#: src/Module/Moderation/Users/Index.php:160
+#: src/Module/Moderation/Users/Active.php:112
+#: src/Module/Moderation/Users/Blocked.php:112
+#: src/Module/Moderation/Users/Deleted.php:69
+#: src/Module/Moderation/Users/Index.php:126
+#: src/Module/Moderation/Users/Index.php:146
msgid "Last login"
msgstr "Последно влизане"
-#: src/Module/Moderation/Users/Active.php:126
-#: src/Module/Moderation/Users/Blocked.php:126
-#: src/Module/Moderation/Users/Deleted.php:83
-#: src/Module/Moderation/Users/Index.php:140
-#: src/Module/Moderation/Users/Index.php:160
+#: src/Module/Moderation/Users/Active.php:112
+#: src/Module/Moderation/Users/Blocked.php:112
+#: src/Module/Moderation/Users/Deleted.php:69
+#: src/Module/Moderation/Users/Index.php:126
+#: src/Module/Moderation/Users/Index.php:146
msgid "Last public item"
msgstr ""
-#: src/Module/Moderation/Users/Active.php:134
+#: src/Module/Moderation/Users/Active.php:120
msgid "Active Accounts"
msgstr ""
-#: src/Module/Moderation/Users/Active.php:138
-#: src/Module/Moderation/Users/Blocked.php:137
-#: src/Module/Moderation/Users/Index.php:153
+#: src/Module/Moderation/Users/Active.php:124
+#: src/Module/Moderation/Users/Blocked.php:123
+#: src/Module/Moderation/Users/Index.php:139
msgid "User blocked"
msgstr ""
-#: src/Module/Moderation/Users/Active.php:139
-#: src/Module/Moderation/Users/Blocked.php:139
-#: src/Module/Moderation/Users/Index.php:155
+#: src/Module/Moderation/Users/Active.php:125
+#: src/Module/Moderation/Users/Blocked.php:125
+#: src/Module/Moderation/Users/Index.php:141
msgid "Site admin"
msgstr "Администратор на сайта"
-#: src/Module/Moderation/Users/Active.php:140
-#: src/Module/Moderation/Users/Blocked.php:140
-#: src/Module/Moderation/Users/Index.php:156
+#: src/Module/Moderation/Users/Active.php:126
+#: src/Module/Moderation/Users/Blocked.php:126
+#: src/Module/Moderation/Users/Index.php:142
msgid "Account expired"
msgstr ""
-#: src/Module/Moderation/Users/Active.php:141
-#: src/Module/Moderation/Users/Index.php:159
+#: src/Module/Moderation/Users/Active.php:127
+#: src/Module/Moderation/Users/Index.php:145
msgid "Create a new user"
msgstr ""
-#: src/Module/Moderation/Users/Active.php:147
-#: src/Module/Moderation/Users/Blocked.php:146
-#: src/Module/Moderation/Users/Index.php:165
+#: src/Module/Moderation/Users/Active.php:133
+#: src/Module/Moderation/Users/Blocked.php:132
+#: src/Module/Moderation/Users/Index.php:151
msgid ""
"Selected users will be deleted!\\n\\nEverything these users had posted on "
"this site will be permanently deleted!\\n\\nAre you sure?"
msgstr "Избрани потребители ще бъде изтрита! \\ N \\ nEverything тези потребители са публикувани на този сайт ще бъде изтрит завинаги! \\ N \\ nСигурни ли сте?"
-#: src/Module/Moderation/Users/Active.php:148
-#: src/Module/Moderation/Users/Blocked.php:147
-#: src/Module/Moderation/Users/Index.php:166
+#: src/Module/Moderation/Users/Active.php:134
+#: src/Module/Moderation/Users/Blocked.php:133
+#: src/Module/Moderation/Users/Index.php:152
msgid ""
"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
"site will be permanently deleted!\\n\\nAre you sure?"
msgstr "Потребител {0} ще бъде изтрит! \\ n \\ nEverything този потребител публикувани на този сайт ще бъде изтрит завинаги! \\ n \\ nСигурни ли сте?"
-#: src/Module/Moderation/Users/Blocked.php:43
-#: src/Module/Moderation/Users/Index.php:50
+#: src/Module/Moderation/Users/Blocked.php:29
+#: src/Module/Moderation/Users/Index.php:36
#, php-format
msgid "%s user unblocked"
msgid_plural "%s users unblocked"
msgstr[0] ""
msgstr[1] ""
-#: src/Module/Moderation/Users/Blocked.php:92
-#: src/Module/Moderation/Users/Index.php:106
+#: src/Module/Moderation/Users/Blocked.php:78
+#: src/Module/Moderation/Users/Index.php:92
#, php-format
msgid "User \"%s\" unblocked"
msgstr ""
-#: src/Module/Moderation/Users/Blocked.php:134
+#: src/Module/Moderation/Users/Blocked.php:120
msgid "Blocked Users"
msgstr ""
-#: src/Module/Moderation/Users/Create.php:62
+#: src/Module/Moderation/Users/Create.php:48
msgid "New User"
msgstr ""
-#: src/Module/Moderation/Users/Create.php:63
+#: src/Module/Moderation/Users/Create.php:49
msgid "Add User"
msgstr ""
-#: src/Module/Moderation/Users/Create.php:70
+#: src/Module/Moderation/Users/Create.php:56
msgid "Name of the new user."
msgstr ""
-#: src/Module/Moderation/Users/Create.php:71
+#: src/Module/Moderation/Users/Create.php:57
msgid "Nickname"
msgstr ""
-#: src/Module/Moderation/Users/Create.php:71
+#: src/Module/Moderation/Users/Create.php:57
msgid "Nickname of the new user."
msgstr ""
-#: src/Module/Moderation/Users/Create.php:72
+#: src/Module/Moderation/Users/Create.php:58
msgid "Email address of the new user."
msgstr ""
-#: src/Module/Moderation/Users/Deleted.php:81
+#: src/Module/Moderation/Users/Deleted.php:67
msgid "Users awaiting permanent deletion"
msgstr ""
-#: src/Module/Moderation/Users/Deleted.php:83
-#: src/Module/Moderation/Users/Index.php:160
+#: src/Module/Moderation/Users/Deleted.php:69
+#: src/Module/Moderation/Users/Index.php:146
msgid "Permanent deletion"
msgstr ""
-#: src/Module/Moderation/Users/Index.php:150
+#: src/Module/Moderation/Users/Index.php:136
msgid "User waiting for permanent deletion"
msgstr ""
-#: src/Module/Moderation/Users/Pending.php:44
+#: src/Module/Moderation/Users/Pending.php:30
#, php-format
msgid "%s user approved"
msgid_plural "%s users approved"
msgstr[0] ""
msgstr[1] ""
-#: src/Module/Moderation/Users/Pending.php:51
+#: src/Module/Moderation/Users/Pending.php:37
#, php-format
msgid "%s registration revoked"
msgid_plural "%s registrations revoked"
msgstr[0] ""
msgstr[1] ""
-#: src/Module/Moderation/Users/Pending.php:76
+#: src/Module/Moderation/Users/Pending.php:62
msgid "Account approved."
msgstr "Сметка одобрен."
-#: src/Module/Moderation/Users/Pending.php:82
+#: src/Module/Moderation/Users/Pending.php:68
msgid "Registration revoked"
msgstr ""
-#: src/Module/Moderation/Users/Pending.php:97
+#: src/Module/Moderation/Users/Pending.php:83
msgid "User registrations awaiting review"
msgstr ""
-#: src/Module/Moderation/Users/Pending.php:99
+#: src/Module/Moderation/Users/Pending.php:85
msgid "Request date"
msgstr "Искане дата"
-#: src/Module/Moderation/Users/Pending.php:100
+#: src/Module/Moderation/Users/Pending.php:86
msgid "No registrations."
msgstr "Няма регистрации."
-#: src/Module/Moderation/Users/Pending.php:101
+#: src/Module/Moderation/Users/Pending.php:87
msgid "Note from the user"
msgstr ""
-#: src/Module/Moderation/Users/Pending.php:103
+#: src/Module/Moderation/Users/Pending.php:89
msgid "Deny"
msgstr "Отказ"
-#: src/Module/Notifications/Introductions.php:99
+#: src/Module/Notifications/Introductions.php:91
msgid "Show Ignored Requests"
msgstr "Показване на пренебрегнатите заявки"
-#: src/Module/Notifications/Introductions.php:99
+#: src/Module/Notifications/Introductions.php:91
msgid "Hide Ignored Requests"
msgstr "Скриване на пренебрегнатите заявки"
-#: src/Module/Notifications/Introductions.php:115
-#: src/Module/Notifications/Introductions.php:178
+#: src/Module/Notifications/Introductions.php:107
+#: src/Module/Notifications/Introductions.php:170
msgid "Notification type:"
msgstr ""
-#: src/Module/Notifications/Introductions.php:118
+#: src/Module/Notifications/Introductions.php:110
msgid "Suggested by:"
msgstr ""
-#: src/Module/Notifications/Introductions.php:143
+#: src/Module/Notifications/Introductions.php:135
msgid "Claims to be known to you: "
msgstr "Искания, да се знае за вас: "
#: src/Module/Notifications/Introductions.php:144
-#: src/Module/OAuth/Acknowledge.php:55 src/Module/Register.php:131
-#: src/Module/Settings/TwoFactor/Trusted.php:129
-msgid "No"
-msgstr "Не"
-
-#: src/Module/Notifications/Introductions.php:152
msgid "Shall your connection be bidirectional or not?"
msgstr ""
-#: src/Module/Notifications/Introductions.php:153
+#: src/Module/Notifications/Introductions.php:145
#, php-format
msgid ""
"Accepting %s as a friend allows %s to subscribe to your posts, and you will "
"also receive updates from them in your news feed."
msgstr ""
-#: src/Module/Notifications/Introductions.php:154
+#: src/Module/Notifications/Introductions.php:146
#, php-format
msgid ""
"Accepting %s as a subscriber allows them to subscribe to your posts, but you"
" will not receive updates from them in your news feed."
msgstr ""
-#: src/Module/Notifications/Introductions.php:156
+#: src/Module/Notifications/Introductions.php:148
msgid "Friend"
msgstr "Приятел"
-#: src/Module/Notifications/Introductions.php:157
+#: src/Module/Notifications/Introductions.php:149
msgid "Subscriber"
msgstr ""
-#: src/Module/Notifications/Introductions.php:216
+#: src/Module/Notifications/Introductions.php:208
msgid "No introductions."
msgstr "Няма въвеждане."
-#: src/Module/Notifications/Introductions.php:217
-#: src/Module/Notifications/Notifications.php:135
+#: src/Module/Notifications/Introductions.php:209
+#: src/Module/Notifications/Notifications.php:127
#, php-format
msgid "No more %s notifications."
msgstr ""
-#: src/Module/Notifications/Notification.php:135
+#: src/Module/Notifications/Notification.php:121
msgid "You must be logged in to show this page."
msgstr ""
-#: src/Module/Notifications/Notifications.php:66
+#: src/Module/Notifications/Notifications.php:52
msgid "Network Notifications"
msgstr "Мрежа Известия"
-#: src/Module/Notifications/Notifications.php:72
+#: src/Module/Notifications/Notifications.php:58
msgid "System Notifications"
msgstr "Системни известия"
-#: src/Module/Notifications/Notifications.php:78
+#: src/Module/Notifications/Notifications.php:64
msgid "Personal Notifications"
msgstr "Лични Известия"
-#: src/Module/Notifications/Notifications.php:84
+#: src/Module/Notifications/Notifications.php:70
msgid "Home Notifications"
msgstr "Начало Известия"
-#: src/Module/Notifications/Notifications.php:140
+#: src/Module/Notifications/Notifications.php:132
msgid "Show unread"
msgstr ""
-#: src/Module/Notifications/Ping.php:246
+#: src/Module/Notifications/Ping.php:206
msgid "{0} requested registration"
msgstr "{0} исканата регистрация"
-#: src/Module/Notifications/Ping.php:255
+#: src/Module/Notifications/Ping.php:215
#, php-format
msgid "{0} and %d others requested registration"
msgstr ""
-#: src/Module/OAuth/Acknowledge.php:51
+#: src/Module/OAuth/Acknowledge.php:37
msgid "Authorize application connection"
msgstr "Разрешава връзка с прилагането"
-#: src/Module/OAuth/Acknowledge.php:53
+#: src/Module/OAuth/Acknowledge.php:39
msgid ""
"Do you want to authorize this application to access your posts and contacts,"
" and/or create new posts for you?"
msgstr "Искате ли да се разреши това приложение за достъп до вашите мнения и контакти, и / или създаване на нови длъжности за вас?"
-#: src/Module/OAuth/Authorize.php:54
+#: src/Module/OAuth/Authorize.php:40
msgid "Unsupported or missing response type"
msgstr ""
-#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:75
+#: src/Module/OAuth/Authorize.php:45 src/Module/OAuth/Token.php:61
msgid "Incomplete request data"
msgstr ""
-#: src/Module/OAuth/Authorize.php:106
+#: src/Module/OAuth/Authorize.php:92
#, php-format
msgid ""
"Please copy the following authentication code into your application and "
"close this window: %s"
msgstr ""
-#: src/Module/OAuth/Token.php:80
+#: src/Module/OAuth/Token.php:66
msgid "Invalid data or unknown client"
msgstr ""
-#: src/Module/OAuth/Token.php:105
+#: src/Module/OAuth/Token.php:91
msgid "Unsupported or missing grant type"
msgstr ""
-#: src/Module/OStatus/Repair.php:83
-msgid "Resubscribing to OStatus contacts"
-msgstr ""
-
-#: src/Module/OStatus/Repair.php:84 src/Module/OStatus/Subscribe.php:158
-msgid "Keep this window open until done."
-msgstr ""
-
-#: src/Module/OStatus/Repair.php:85
-msgid "✔ Done"
-msgstr ""
-
-#: src/Module/OStatus/Repair.php:86
-msgid "No OStatus contacts to resubscribe to."
-msgstr ""
-
-#: src/Module/OStatus/Subscribe.php:70
+#: src/Module/OStatus/Subscribe.php:58
msgid "Subscribing to contacts"
msgstr ""
-#: src/Module/OStatus/Subscribe.php:79
+#: src/Module/OStatus/Subscribe.php:67
msgid "No contact provided."
msgstr ""
-#: src/Module/OStatus/Subscribe.php:85
+#: src/Module/OStatus/Subscribe.php:73
msgid "Couldn't fetch information for contact."
msgstr ""
-#: src/Module/OStatus/Subscribe.php:96
+#: src/Module/OStatus/Subscribe.php:84
msgid "Couldn't fetch friends for contact."
msgstr ""
-#: src/Module/OStatus/Subscribe.php:102 src/Module/OStatus/Subscribe.php:113
+#: src/Module/OStatus/Subscribe.php:90 src/Module/OStatus/Subscribe.php:101
msgid "Couldn't fetch following contacts."
msgstr ""
-#: src/Module/OStatus/Subscribe.php:108
+#: src/Module/OStatus/Subscribe.php:96
msgid "Couldn't fetch remote profile."
msgstr ""
-#: src/Module/OStatus/Subscribe.php:118
+#: src/Module/OStatus/Subscribe.php:106
msgid "Unsupported network"
msgstr ""
-#: src/Module/OStatus/Subscribe.php:134
+#: src/Module/OStatus/Subscribe.php:122
msgid "Done"
msgstr ""
-#: src/Module/OStatus/Subscribe.php:148
+#: src/Module/OStatus/Subscribe.php:136
msgid "success"
msgstr ""
-#: src/Module/OStatus/Subscribe.php:150
+#: src/Module/OStatus/Subscribe.php:138
msgid "failed"
msgstr ""
-#: src/Module/OStatus/Subscribe.php:153
+#: src/Module/OStatus/Subscribe.php:141
msgid "ignored"
msgstr ""
-#: src/Module/PermissionTooltip.php:49
-#, php-format
-msgid "Wrong type \"%s\", expected one of: %s"
+#: src/Module/OStatus/Subscribe.php:146
+msgid "Keep this window open until done."
msgstr ""
-#: src/Module/PermissionTooltip.php:79
-msgid "Model not found"
-msgstr ""
-
-#: src/Module/PermissionTooltip.php:94
-msgid "Unlisted"
-msgstr ""
-
-#: src/Module/PermissionTooltip.php:112
-msgid "Remote privacy information not available."
-msgstr "Дистанционно неприкосновеността на личния живот информация не е достъпен."
-
-#: src/Module/PermissionTooltip.php:120
-msgid "Visible to:"
-msgstr "Вижда се от:"
-
-#: src/Module/PermissionTooltip.php:214
-#, php-format
-msgid "Collection (%s)"
-msgstr ""
-
-#: src/Module/PermissionTooltip.php:218
-#, php-format
-msgid "Followers (%s)"
-msgstr ""
-
-#: src/Module/PermissionTooltip.php:237
-#, php-format
-msgid "%d more"
-msgstr ""
-
-#: src/Module/PermissionTooltip.php:241
-#, php-format
-msgid "To: %sYou can enter one of your one-time recovery codes in case you lost access" " to your mobile device.
" msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:101 +#: src/Module/Security/TwoFactor/Recovery.php:87 #, php-format msgid "Don’t have your phone? Enter a two-factor recovery code" msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:102 +#: src/Module/Security/TwoFactor/Recovery.php:88 msgid "Please enter a recovery code" msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:103 +#: src/Module/Security/TwoFactor/Recovery.php:89 msgid "Submit recovery code and complete login" msgstr "" -#: src/Module/Security/TwoFactor/SignOut.php:122 +#: src/Module/Security/TwoFactor/SignOut.php:108 msgid "Sign out of this browser?" msgstr "" -#: src/Module/Security/TwoFactor/SignOut.php:123 +#: src/Module/Security/TwoFactor/SignOut.php:109 msgid "" "If you trust this browser, you will not be asked for verification code " "the next time you sign in.
" msgstr "" -#: src/Module/Security/TwoFactor/SignOut.php:124 +#: src/Module/Security/TwoFactor/SignOut.php:110 msgid "Sign out" msgstr "" -#: src/Module/Security/TwoFactor/SignOut.php:126 +#: src/Module/Security/TwoFactor/SignOut.php:112 msgid "Trust and sign out" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:96 +#: src/Module/Security/TwoFactor/Trust.php:82 msgid "Couldn't save browser to Cookie." msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:141 +#: src/Module/Security/TwoFactor/Trust.php:127 msgid "Trust this browser?" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:142 +#: src/Module/Security/TwoFactor/Trust.php:128 msgid "" "If you choose to trust this browser, you will not be asked for a " "verification code the next time you sign in.
" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:143 +#: src/Module/Security/TwoFactor/Trust.php:129 msgid "Not now" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:144 +#: src/Module/Security/TwoFactor/Trust.php:130 msgid "Don't trust" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:145 +#: src/Module/Security/TwoFactor/Trust.php:131 msgid "Trust" msgstr "" -#: src/Module/Security/TwoFactor/Verify.php:97 +#: src/Module/Security/TwoFactor/Verify.php:83 msgid "" "Open the two-factor authentication app on your device to get an " "authentication code and verify your identity.
" msgstr "" -#: src/Module/Security/TwoFactor/Verify.php:100 +#: src/Module/Security/TwoFactor/Verify.php:86 #, php-format msgid "" "If you do not have access to your authentication code you can use a two-factor recovery code." msgstr "" -#: src/Module/Security/TwoFactor/Verify.php:101 -#: src/Module/Settings/TwoFactor/Verify.php:158 +#: src/Module/Security/TwoFactor/Verify.php:87 +#: src/Module/Settings/TwoFactor/Verify.php:144 msgid "Please enter a code from your authentication app" msgstr "" -#: src/Module/Security/TwoFactor/Verify.php:102 +#: src/Module/Security/TwoFactor/Verify.php:88 msgid "Verify code and complete login" msgstr "" -#: src/Module/Settings/Account.php:96 +#: src/Module/Settings/Account.php:82 msgid "Please use a shorter name." msgstr "" -#: src/Module/Settings/Account.php:99 +#: src/Module/Settings/Account.php:85 msgid "Name too short." msgstr "" -#: src/Module/Settings/Account.php:108 +#: src/Module/Settings/Account.php:94 msgid "Wrong Password." msgstr "" -#: src/Module/Settings/Account.php:113 +#: src/Module/Settings/Account.php:99 msgid "Invalid email." msgstr "" -#: src/Module/Settings/Account.php:117 +#: src/Module/Settings/Account.php:103 msgid "Cannot change to that email." msgstr "" -#: src/Module/Settings/Account.php:146 src/Module/Settings/Account.php:195 -#: src/Module/Settings/Account.php:216 src/Module/Settings/Account.php:300 -#: src/Module/Settings/Account.php:329 +#: src/Module/Settings/Account.php:132 src/Module/Settings/Account.php:181 +#: src/Module/Settings/Account.php:202 src/Module/Settings/Account.php:286 +#: src/Module/Settings/Account.php:315 msgid "Settings were not updated." msgstr "" -#: src/Module/Settings/Account.php:342 +#: src/Module/Settings/Account.php:333 msgid "Contact CSV file upload error" msgstr "" -#: src/Module/Settings/Account.php:361 +#: src/Module/Settings/Account.php:352 msgid "Importing Contacts done" msgstr "" -#: src/Module/Settings/Account.php:374 +#: src/Module/Settings/Account.php:365 msgid "Relocate message has been send to your contacts" msgstr "" -#: src/Module/Settings/Account.php:391 +#: src/Module/Settings/Account.php:382 msgid "Unable to find your profile. Please contact your admin." msgstr "" -#: src/Module/Settings/Account.php:433 +#: src/Module/Settings/Account.php:424 msgid "" "Account for a service that automatically shares content based on user " "defined channels." msgstr "" -#: src/Module/Settings/Account.php:443 +#: src/Module/Settings/Account.php:434 msgid "Personal Page Subtypes" msgstr "" -#: src/Module/Settings/Account.php:444 +#: src/Module/Settings/Account.php:435 msgid "Community Group Subtypes" msgstr "" -#: src/Module/Settings/Account.php:455 +#: src/Module/Settings/Account.php:446 msgid "Account for a personal profile." msgstr "" -#: src/Module/Settings/Account.php:462 +#: src/Module/Settings/Account.php:453 msgid "" "Account for an organisation that automatically approves contact requests as " "\"Followers\"." msgstr "" -#: src/Module/Settings/Account.php:469 +#: src/Module/Settings/Account.php:460 msgid "" "Account for a news reflector that automatically approves contact requests as" " \"Followers\"." msgstr "" -#: src/Module/Settings/Account.php:476 +#: src/Module/Settings/Account.php:467 msgid "Account for community discussions." msgstr "" -#: src/Module/Settings/Account.php:484 +#: src/Module/Settings/Account.php:475 msgid "" "Account for a regular personal profile that requires manual approval of " "\"Friends\" and \"Followers\"." msgstr "" -#: src/Module/Settings/Account.php:491 +#: src/Module/Settings/Account.php:482 msgid "" "Account for a public profile that automatically approves contact requests as" " \"Followers\"." msgstr "" -#: src/Module/Settings/Account.php:498 +#: src/Module/Settings/Account.php:489 msgid "Automatically approves all contact requests." msgstr "" -#: src/Module/Settings/Account.php:505 +#: src/Module/Settings/Account.php:496 +msgid "Contact requests have to be manually approved." +msgstr "" + +#: src/Module/Settings/Account.php:503 msgid "" "Account for a popular profile that automatically approves contact requests " "as \"Friends\"." msgstr "" -#: src/Module/Settings/Account.php:510 +#: src/Module/Settings/Account.php:508 msgid "Private Group [Experimental]" msgstr "" -#: src/Module/Settings/Account.php:512 +#: src/Module/Settings/Account.php:510 msgid "Requires manual approval of contact requests." msgstr "" -#: src/Module/Settings/Account.php:521 +#: src/Module/Settings/Account.php:519 msgid "OpenID:" msgstr "OpenID:" -#: src/Module/Settings/Account.php:521 +#: src/Module/Settings/Account.php:519 msgid "(Optional) Allow this OpenID to login to this account." msgstr "(По избор) позволяват това OpenID, за да влезете в тази сметка." -#: src/Module/Settings/Account.php:529 +#: src/Module/Settings/Account.php:527 msgid "Publish your profile in your local site directory?" msgstr "" -#: src/Module/Settings/Account.php:529 +#: src/Module/Settings/Account.php:527 #, php-format msgid "" "Your profile will be published in this node's local " @@ -9786,94 +9834,94 @@ msgid "" " system settings." msgstr "" -#: src/Module/Settings/Account.php:535 +#: src/Module/Settings/Account.php:533 #, php-format msgid "" "Your profile will also be published in the global friendica directories " "(e.g. %s)." msgstr "" -#: src/Module/Settings/Account.php:548 +#: src/Module/Settings/Account.php:546 msgid "Account Settings" msgstr "Настройки на профила" -#: src/Module/Settings/Account.php:549 +#: src/Module/Settings/Account.php:547 #, php-format msgid "Your Identity Address is '%s' or '%s'." msgstr "" -#: src/Module/Settings/Account.php:556 +#: src/Module/Settings/Account.php:554 msgid "Password Settings" msgstr "Парола Настройки" -#: src/Module/Settings/Account.php:558 +#: src/Module/Settings/Account.php:556 msgid "Leave password fields blank unless changing" msgstr "Оставете паролите полета празни, освен ако промяна" -#: src/Module/Settings/Account.php:560 +#: src/Module/Settings/Account.php:558 msgid "Password:" msgstr "Парола" -#: src/Module/Settings/Account.php:560 +#: src/Module/Settings/Account.php:558 msgid "Your current password to confirm the changes of the email address" msgstr "" -#: src/Module/Settings/Account.php:563 +#: src/Module/Settings/Account.php:561 msgid "Delete OpenID URL" msgstr "" -#: src/Module/Settings/Account.php:565 +#: src/Module/Settings/Account.php:563 msgid "Basic Settings" msgstr "Основни настройки" -#: src/Module/Settings/Account.php:566 -#: src/Module/Settings/Profile/Index.php:283 +#: src/Module/Settings/Account.php:564 +#: src/Module/Settings/Profile/Index.php:274 msgid "Display name:" msgstr "" -#: src/Module/Settings/Account.php:567 +#: src/Module/Settings/Account.php:565 msgid "Email Address:" msgstr "Електронна поща:" -#: src/Module/Settings/Account.php:568 +#: src/Module/Settings/Account.php:566 msgid "Your Timezone:" msgstr "Вашият Часовата зона:" -#: src/Module/Settings/Account.php:569 +#: src/Module/Settings/Account.php:567 msgid "Your Language:" msgstr "" -#: src/Module/Settings/Account.php:569 +#: src/Module/Settings/Account.php:567 msgid "" "Set the language we use to show you friendica interface and to send you " "emails" msgstr "" -#: src/Module/Settings/Account.php:570 +#: src/Module/Settings/Account.php:568 msgid "Default Post Location:" msgstr "Мнение местоположението по подразбиране:" -#: src/Module/Settings/Account.php:571 +#: src/Module/Settings/Account.php:569 msgid "Use Browser Location:" msgstr "Използвайте Browser Местоположение:" -#: src/Module/Settings/Account.php:573 +#: src/Module/Settings/Account.php:571 msgid "Security and Privacy Settings" msgstr "Сигурност и и лични настройки" -#: src/Module/Settings/Account.php:575 +#: src/Module/Settings/Account.php:573 msgid "Maximum Friend Requests/Day:" msgstr "Максимален брой молби за приятелство / ден:" -#: src/Module/Settings/Account.php:575 +#: src/Module/Settings/Account.php:573 msgid "(to prevent spam abuse)" msgstr "(Да се предотврати спама злоупотреба)" -#: src/Module/Settings/Account.php:577 +#: src/Module/Settings/Account.php:575 msgid "Allow your profile to be searchable globally?" msgstr "" -#: src/Module/Settings/Account.php:577 +#: src/Module/Settings/Account.php:575 msgid "" "Activate this setting if you want others to easily find and follow you. Your" " profile will be searchable on remote systems. This setting also determines " @@ -9881,43 +9929,43 @@ msgid "" "indexed or not." msgstr "" -#: src/Module/Settings/Account.php:578 +#: src/Module/Settings/Account.php:576 msgid "Hide your contact/friend list from viewers of your profile?" msgstr "" -#: src/Module/Settings/Account.php:578 +#: src/Module/Settings/Account.php:576 msgid "" "A list of your contacts is displayed on your profile page. Activate this " "option to disable the display of your contact list." msgstr "" -#: src/Module/Settings/Account.php:579 +#: src/Module/Settings/Account.php:577 msgid "Hide your public content from anonymous viewers" msgstr "" -#: src/Module/Settings/Account.php:579 +#: src/Module/Settings/Account.php:577 msgid "" "Anonymous visitors will only see your basic profile details. Your public " "posts and replies will still be freely accessible on the remote servers of " "your followers and through relays." msgstr "" -#: src/Module/Settings/Account.php:580 +#: src/Module/Settings/Account.php:578 msgid "Make public posts unlisted" msgstr "" -#: src/Module/Settings/Account.php:580 +#: src/Module/Settings/Account.php:578 msgid "" "Your public posts will not appear on the community pages or in search " "results, nor be sent to relay servers. However they can still appear on " "public feeds on remote servers." msgstr "" -#: src/Module/Settings/Account.php:581 +#: src/Module/Settings/Account.php:579 msgid "Make all posted pictures accessible" msgstr "" -#: src/Module/Settings/Account.php:581 +#: src/Module/Settings/Account.php:579 msgid "" "This option makes every posted picture accessible via the direct link. This " "is a workaround for the problem that most other networks can't handle " @@ -9925,352 +9973,352 @@ msgid "" "public on your photo albums though." msgstr "" -#: src/Module/Settings/Account.php:582 +#: src/Module/Settings/Account.php:580 msgid "Allow friends to post to your profile page?" msgstr "Оставете приятели, които да публикувате в страницата с вашия профил?" -#: src/Module/Settings/Account.php:582 +#: src/Module/Settings/Account.php:580 msgid "" "Your contacts may write posts on your profile wall. These posts will be " "distributed to your contacts" msgstr "" -#: src/Module/Settings/Account.php:583 +#: src/Module/Settings/Account.php:581 msgid "Allow friends to tag your posts?" msgstr "Оставете приятели, за да маркирам собствените си мнения?" -#: src/Module/Settings/Account.php:583 +#: src/Module/Settings/Account.php:581 msgid "Your contacts can add additional tags to your posts." msgstr "" -#: src/Module/Settings/Account.php:584 +#: src/Module/Settings/Account.php:582 msgid "Default privacy circle for new contacts" msgstr "" -#: src/Module/Settings/Account.php:585 +#: src/Module/Settings/Account.php:583 msgid "Default privacy circle for new group contacts" msgstr "" -#: src/Module/Settings/Account.php:586 +#: src/Module/Settings/Account.php:584 msgid "Default Post Permissions" msgstr "Разрешения по подразбиране и" -#: src/Module/Settings/Account.php:590 +#: src/Module/Settings/Account.php:588 msgid "Expiration settings" msgstr "" -#: src/Module/Settings/Account.php:591 +#: src/Module/Settings/Account.php:589 msgid "Automatically expire posts after this many days:" msgstr "Автоматично изтича мнения след толкова много дни:" -#: src/Module/Settings/Account.php:591 +#: src/Module/Settings/Account.php:589 msgid "If empty, posts will not expire. Expired posts will be deleted" msgstr "Ако е празна, мнението няма да изтече. Изтекли мнения ще бъдат изтрити" -#: src/Module/Settings/Account.php:592 +#: src/Module/Settings/Account.php:590 msgid "Expire posts" msgstr "" -#: src/Module/Settings/Account.php:592 +#: src/Module/Settings/Account.php:590 msgid "When activated, posts and comments will be expired." msgstr "" -#: src/Module/Settings/Account.php:593 +#: src/Module/Settings/Account.php:591 msgid "Expire personal notes" msgstr "" -#: src/Module/Settings/Account.php:593 +#: src/Module/Settings/Account.php:591 msgid "" "When activated, the personal notes on your profile page will be expired." msgstr "" -#: src/Module/Settings/Account.php:594 +#: src/Module/Settings/Account.php:592 msgid "Expire starred posts" msgstr "" -#: src/Module/Settings/Account.php:594 +#: src/Module/Settings/Account.php:592 msgid "" "Starring posts keeps them from being expired. That behaviour is overwritten " "by this setting." msgstr "" -#: src/Module/Settings/Account.php:595 +#: src/Module/Settings/Account.php:593 msgid "Only expire posts by others" msgstr "" -#: src/Module/Settings/Account.php:595 +#: src/Module/Settings/Account.php:593 msgid "" "When activated, your own posts never expire. Then the settings above are " "only valid for posts you received." msgstr "" -#: src/Module/Settings/Account.php:598 +#: src/Module/Settings/Account.php:596 msgid "Notification Settings" msgstr "Настройки за уведомяване" -#: src/Module/Settings/Account.php:599 +#: src/Module/Settings/Account.php:597 msgid "Send a notification email when:" msgstr "Изпращане на известие по имейл, когато:" -#: src/Module/Settings/Account.php:600 +#: src/Module/Settings/Account.php:598 msgid "You receive an introduction" msgstr "Вие получавате въведение" -#: src/Module/Settings/Account.php:601 +#: src/Module/Settings/Account.php:599 msgid "Your introductions are confirmed" msgstr "Вашите въвеждания са потвърдени" -#: src/Module/Settings/Account.php:602 +#: src/Module/Settings/Account.php:600 msgid "Someone writes on your profile wall" msgstr "Някой пише в профила ви стена" -#: src/Module/Settings/Account.php:603 +#: src/Module/Settings/Account.php:601 msgid "Someone writes a followup comment" msgstr "Някой пише последващ коментар" -#: src/Module/Settings/Account.php:604 +#: src/Module/Settings/Account.php:602 msgid "You receive a private message" msgstr "Ще получите лично съобщение" -#: src/Module/Settings/Account.php:605 +#: src/Module/Settings/Account.php:603 msgid "You receive a friend suggestion" msgstr "Ще получите предложение приятел" -#: src/Module/Settings/Account.php:606 +#: src/Module/Settings/Account.php:604 msgid "You are tagged in a post" msgstr "Са маркирани в един пост" -#: src/Module/Settings/Account.php:608 +#: src/Module/Settings/Account.php:606 msgid "Create a desktop notification when:" msgstr "" -#: src/Module/Settings/Account.php:609 +#: src/Module/Settings/Account.php:607 msgid "Someone tagged you" msgstr "" -#: src/Module/Settings/Account.php:610 +#: src/Module/Settings/Account.php:608 msgid "Someone directly commented on your post" msgstr "" -#: src/Module/Settings/Account.php:611 +#: src/Module/Settings/Account.php:609 msgid "Someone liked your content" msgstr "" -#: src/Module/Settings/Account.php:611 src/Module/Settings/Account.php:612 +#: src/Module/Settings/Account.php:609 src/Module/Settings/Account.php:610 msgid "Can only be enabled, when the direct comment notification is enabled." msgstr "" -#: src/Module/Settings/Account.php:612 +#: src/Module/Settings/Account.php:610 msgid "Someone shared your content" msgstr "" -#: src/Module/Settings/Account.php:613 +#: src/Module/Settings/Account.php:611 msgid "Someone commented in your thread" msgstr "" -#: src/Module/Settings/Account.php:614 +#: src/Module/Settings/Account.php:612 msgid "Someone commented in a thread where you commented" msgstr "" -#: src/Module/Settings/Account.php:615 +#: src/Module/Settings/Account.php:613 msgid "Someone commented in a thread where you interacted" msgstr "" -#: src/Module/Settings/Account.php:617 +#: src/Module/Settings/Account.php:615 msgid "Activate desktop notifications" msgstr "" -#: src/Module/Settings/Account.php:617 +#: src/Module/Settings/Account.php:615 msgid "Show desktop popup on new notifications" msgstr "" -#: src/Module/Settings/Account.php:621 +#: src/Module/Settings/Account.php:619 msgid "Text-only notification emails" msgstr "" -#: src/Module/Settings/Account.php:623 +#: src/Module/Settings/Account.php:621 msgid "Send text only notification emails, without the html part" msgstr "" -#: src/Module/Settings/Account.php:627 +#: src/Module/Settings/Account.php:625 msgid "Show detailled notifications" msgstr "" -#: src/Module/Settings/Account.php:629 +#: src/Module/Settings/Account.php:627 msgid "" "Per default, notifications are condensed to a single notification per item. " "When enabled every notification is displayed." msgstr "" -#: src/Module/Settings/Account.php:633 +#: src/Module/Settings/Account.php:631 msgid "Show notifications of ignored contacts" msgstr "" -#: src/Module/Settings/Account.php:635 +#: src/Module/Settings/Account.php:633 msgid "" "You don't see posts from ignored contacts. But you still see their comments." " This setting controls if you want to still receive regular notifications " "that are caused by ignored contacts or not." msgstr "" -#: src/Module/Settings/Account.php:638 +#: src/Module/Settings/Account.php:636 msgid "Advanced Account/Page Type Settings" msgstr "Разширено сметка / Настройки на вид страница" -#: src/Module/Settings/Account.php:639 +#: src/Module/Settings/Account.php:637 msgid "Change the behaviour of this account for special situations" msgstr "Промяна на поведението на тази сметка за специални ситуации" -#: src/Module/Settings/Account.php:642 +#: src/Module/Settings/Account.php:640 msgid "Import Contacts" msgstr "" -#: src/Module/Settings/Account.php:643 +#: src/Module/Settings/Account.php:641 msgid "" "Upload a CSV file that contains the handle of your followed accounts in the " "first column you exported from the old account." msgstr "" -#: src/Module/Settings/Account.php:644 +#: src/Module/Settings/Account.php:642 msgid "Upload File" msgstr "" -#: src/Module/Settings/Account.php:647 +#: src/Module/Settings/Account.php:645 msgid "Relocate" msgstr "" -#: src/Module/Settings/Account.php:648 +#: src/Module/Settings/Account.php:646 msgid "" "If you have moved this profile from another server, and some of your " "contacts don't receive your updates, try pushing this button." msgstr "" -#: src/Module/Settings/Account.php:649 +#: src/Module/Settings/Account.php:647 msgid "Resend relocate message to contacts" msgstr "" -#: src/Module/Settings/Addons.php:86 +#: src/Module/Settings/Addons.php:72 msgid "Addon Settings" msgstr "" -#: src/Module/Settings/Addons.php:87 +#: src/Module/Settings/Addons.php:73 msgid "No Addon settings configured" msgstr "" -#: src/Module/Settings/Channels.php:142 +#: src/Module/Settings/Channels.php:134 msgid "" "This page can be used to define the channels that will automatically be " "reshared by your account." msgstr "" -#: src/Module/Settings/Channels.php:147 +#: src/Module/Settings/Channels.php:139 msgid "This page can be used to define your own channels." msgstr "" -#: src/Module/Settings/Channels.php:176 +#: src/Module/Settings/Channels.php:168 msgid "Publish" msgstr "" -#: src/Module/Settings/Channels.php:176 +#: src/Module/Settings/Channels.php:168 msgid "" "When selected, the channel results are reshared. This only works for public " "ActivityPub posts from the public timeline or the user defined circles." msgstr "" -#: src/Module/Settings/Channels.php:184 src/Module/Settings/Channels.php:205 -#: src/Module/Settings/Display.php:342 +#: src/Module/Settings/Channels.php:176 src/Module/Settings/Channels.php:197 +#: src/Module/Settings/Display.php:324 msgid "Label" msgstr "" -#: src/Module/Settings/Channels.php:185 src/Module/Settings/Channels.php:206 -#: src/Module/Settings/Display.php:343 -#: src/Module/Settings/TwoFactor/AppSpecific.php:137 +#: src/Module/Settings/Channels.php:177 src/Module/Settings/Channels.php:198 +#: src/Module/Settings/Display.php:325 +#: src/Module/Settings/TwoFactor/AppSpecific.php:123 msgid "Description" msgstr "" -#: src/Module/Settings/Channels.php:186 src/Module/Settings/Channels.php:207 +#: src/Module/Settings/Channels.php:178 src/Module/Settings/Channels.php:199 msgid "Access Key" msgstr "" -#: src/Module/Settings/Channels.php:187 src/Module/Settings/Channels.php:208 +#: src/Module/Settings/Channels.php:179 src/Module/Settings/Channels.php:200 msgid "Circle/Channel" msgstr "" -#: src/Module/Settings/Channels.php:188 src/Module/Settings/Channels.php:209 +#: src/Module/Settings/Channels.php:180 src/Module/Settings/Channels.php:201 msgid "Include Tags" msgstr "" -#: src/Module/Settings/Channels.php:189 src/Module/Settings/Channels.php:210 +#: src/Module/Settings/Channels.php:181 src/Module/Settings/Channels.php:202 msgid "Exclude Tags" msgstr "" -#: src/Module/Settings/Channels.php:190 src/Module/Settings/Channels.php:211 +#: src/Module/Settings/Channels.php:182 src/Module/Settings/Channels.php:203 msgid "Minimum Size" msgstr "" -#: src/Module/Settings/Channels.php:191 src/Module/Settings/Channels.php:212 +#: src/Module/Settings/Channels.php:183 src/Module/Settings/Channels.php:204 msgid "Maximum Size" msgstr "" -#: src/Module/Settings/Channels.php:192 src/Module/Settings/Channels.php:213 +#: src/Module/Settings/Channels.php:184 src/Module/Settings/Channels.php:205 msgid "Full Text Search" msgstr "" -#: src/Module/Settings/Channels.php:196 src/Module/Settings/Channels.php:217 +#: src/Module/Settings/Channels.php:188 src/Module/Settings/Channels.php:209 msgid "Select all languages that you want to see in this channel." msgstr "" -#: src/Module/Settings/Channels.php:198 +#: src/Module/Settings/Channels.php:190 msgid "Delete channel" msgstr "" -#: src/Module/Settings/Channels.php:198 +#: src/Module/Settings/Channels.php:190 msgid "Check to delete this entry from the channel list" msgstr "" -#: src/Module/Settings/Channels.php:205 +#: src/Module/Settings/Channels.php:197 msgid "Short name for the channel. It is displayed on the channels widget." msgstr "" -#: src/Module/Settings/Channels.php:206 +#: src/Module/Settings/Channels.php:198 msgid "This should describe the content of the channel in a few word." msgstr "" -#: src/Module/Settings/Channels.php:207 +#: src/Module/Settings/Channels.php:199 msgid "" "When you want to access this channel via an access key, you can define it " "here. Pay attention to not use an already used one." msgstr "" -#: src/Module/Settings/Channels.php:208 +#: src/Module/Settings/Channels.php:200 msgid "Select a circle or channel, that your channel should be based on." msgstr "" -#: src/Module/Settings/Channels.php:209 +#: src/Module/Settings/Channels.php:201 msgid "" "Comma separated list of tags. A post will be used when it contains any of " "the listed tags." msgstr "" -#: src/Module/Settings/Channels.php:210 +#: src/Module/Settings/Channels.php:202 msgid "" "Comma separated list of tags. If a post contain any of these tags, then it " "will not be part of nthis channel." msgstr "" -#: src/Module/Settings/Channels.php:211 +#: src/Module/Settings/Channels.php:203 msgid "" "Minimum post size. Leave empty for no minimum size. The size is calculated " "without links, attached posts, mentions or hashtags." msgstr "" -#: src/Module/Settings/Channels.php:212 +#: src/Module/Settings/Channels.php:204 msgid "" "Maximum post size. Leave empty for no maximum size. The size is calculated " "without links, attached posts, mentions or hashtags." msgstr "" -#: src/Module/Settings/Channels.php:213 +#: src/Module/Settings/Channels.php:205 #, php-format msgid "" "Search terms for the body, supports the \"boolean mode\" operators from " @@ -10278,586 +10326,589 @@ msgid "" "keywords: %s" msgstr "" -#: src/Module/Settings/Channels.php:214 +#: src/Module/Settings/Channels.php:206 msgid "Check to display images in the channel." msgstr "" -#: src/Module/Settings/Channels.php:215 +#: src/Module/Settings/Channels.php:207 msgid "Check to display videos in the channel." msgstr "" -#: src/Module/Settings/Channels.php:216 +#: src/Module/Settings/Channels.php:208 msgid "Check to display audio in the channel." msgstr "" -#: src/Module/Settings/Channels.php:221 +#: src/Module/Settings/Channels.php:213 msgid "Add new entry to the channel list" msgstr "" -#: src/Module/Settings/Channels.php:222 +#: src/Module/Settings/Channels.php:214 msgid "Add" msgstr "Добави" -#: src/Module/Settings/Channels.php:224 +#: src/Module/Settings/Channels.php:216 msgid "Current Entries in the channel list" msgstr "" -#: src/Module/Settings/Channels.php:227 +#: src/Module/Settings/Channels.php:219 msgid "Delete entry from the channel list" msgstr "" -#: src/Module/Settings/Channels.php:228 +#: src/Module/Settings/Channels.php:220 msgid "Delete entry from the channel list?" msgstr "" -#: src/Module/Settings/Connectors.php:120 +#: src/Module/Settings/Connectors.php:108 msgid "Failed to connect with email account using the settings provided." msgstr "Неуспех да се свърже с имейл акаунт, като използвате предоставените настройки." -#: src/Module/Settings/Connectors.php:166 -#: src/Module/Settings/Connectors.php:167 +#: src/Module/Settings/Connectors.php:155 +#: src/Module/Settings/Connectors.php:156 msgid "Diaspora (Socialhome, Hubzilla)" msgstr "" -#: src/Module/Settings/Connectors.php:166 -#: src/Module/Settings/Connectors.php:170 +#: src/Module/Settings/Connectors.php:155 #, php-format msgid "Built-in support for %s connectivity is enabled" msgstr "" -#: src/Module/Settings/Connectors.php:167 -#: src/Module/Settings/Connectors.php:169 +#: src/Module/Settings/Connectors.php:156 #, php-format msgid "Built-in support for %s connectivity is disabled" msgstr "" -#: src/Module/Settings/Connectors.php:169 -#: src/Module/Settings/Connectors.php:170 -msgid "OStatus (GNU Social)" -msgstr "" - -#: src/Module/Settings/Connectors.php:182 +#: src/Module/Settings/Connectors.php:167 msgid "Email access is disabled on this site." msgstr "Достъп до електронна поща е забранен на този сайт." -#: src/Module/Settings/Connectors.php:197 -#: src/Module/Settings/Connectors.php:244 +#: src/Module/Settings/Connectors.php:182 +#: src/Module/Settings/Connectors.php:233 msgid "None" msgstr "Няма " -#: src/Module/Settings/Connectors.php:209 +#: src/Module/Settings/Connectors.php:186 +msgid "Default (Mastodon will display the title and a link to the post)" +msgstr "" + +#: src/Module/Settings/Connectors.php:187 +msgid "" +"Use the summary (Mastodon and some others will treat it as content warning)" +msgstr "" + +#: src/Module/Settings/Connectors.php:188 +msgid "Embed the title in the body" +msgstr "" + +#: src/Module/Settings/Connectors.php:199 msgid "General Social Media Settings" msgstr "" -#: src/Module/Settings/Connectors.php:212 +#: src/Module/Settings/Connectors.php:202 msgid "Followed content scope" msgstr "" -#: src/Module/Settings/Connectors.php:214 +#: src/Module/Settings/Connectors.php:204 msgid "" "By default, conversations in which your follows participated but didn't " "start will be shown in your timeline. You can turn this behavior off, or " "expand it to the conversations in which your follows liked a post." msgstr "" -#: src/Module/Settings/Connectors.php:216 +#: src/Module/Settings/Connectors.php:206 msgid "Only conversations my follows started" msgstr "" -#: src/Module/Settings/Connectors.php:217 +#: src/Module/Settings/Connectors.php:207 msgid "Conversations my follows started or commented on (default)" msgstr "" -#: src/Module/Settings/Connectors.php:218 +#: src/Module/Settings/Connectors.php:208 msgid "Any conversation my follows interacted with, including likes" msgstr "" -#: src/Module/Settings/Connectors.php:221 -msgid "Enable Content Warning" +#: src/Module/Settings/Connectors.php:211 +msgid "Collapse sensitive posts" msgstr "" -#: src/Module/Settings/Connectors.php:221 +#: src/Module/Settings/Connectors.php:211 msgid "" -"Users on networks like Mastodon or Pleroma are able to set a content warning" -" field which collapse their post by default. This enables the automatic " -"collapsing instead of setting the content warning as the post title. Doesn't" -" affect any other content filtering you eventually set up." +"If a post is marked as \"sensitive\", it will be displayed in a collapsed " +"state, if this option is enabled." msgstr "" -#: src/Module/Settings/Connectors.php:222 +#: src/Module/Settings/Connectors.php:212 msgid "Enable intelligent shortening" msgstr "" -#: src/Module/Settings/Connectors.php:222 +#: src/Module/Settings/Connectors.php:212 msgid "" "Normally the system tries to find the best link to add to shortened posts. " "If disabled, every shortened post will always point to the original " "friendica post." msgstr "" -#: src/Module/Settings/Connectors.php:223 +#: src/Module/Settings/Connectors.php:213 msgid "Enable simple text shortening" msgstr "" -#: src/Module/Settings/Connectors.php:223 +#: src/Module/Settings/Connectors.php:213 msgid "" "Normally the system shortens posts at the next line feed. If this option is " "enabled then the system will shorten the text at the maximum character " "limit." msgstr "" -#: src/Module/Settings/Connectors.php:224 +#: src/Module/Settings/Connectors.php:214 msgid "Attach the link title" msgstr "" -#: src/Module/Settings/Connectors.php:224 +#: src/Module/Settings/Connectors.php:214 msgid "" "When activated, the title of the attached link will be added as a title on " "posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that" " share feed content." msgstr "" -#: src/Module/Settings/Connectors.php:225 +#: src/Module/Settings/Connectors.php:215 msgid "API: Use spoiler field as title" msgstr "" -#: src/Module/Settings/Connectors.php:225 +#: src/Module/Settings/Connectors.php:215 msgid "" "When activated, the \"spoiler_text\" field in the API will be used for the " "title on standalone posts. When deactivated it will be used for spoiler " "text. For comments it will always be used for spoiler text." msgstr "" -#: src/Module/Settings/Connectors.php:226 +#: src/Module/Settings/Connectors.php:216 msgid "API: Automatically links at the end of the post as attached posts" msgstr "" -#: src/Module/Settings/Connectors.php:226 +#: src/Module/Settings/Connectors.php:216 msgid "" "When activated, added links at the end of the post react the same way as " "added links in the web interface." msgstr "" -#: src/Module/Settings/Connectors.php:227 +#: src/Module/Settings/Connectors.php:217 +msgid "Article Mode" +msgstr "" + +#: src/Module/Settings/Connectors.php:217 +msgid "" +"Controls how posts with titles are transmitted. Mastodon and its forks don't" +" display the content of these posts if the post is created in the correct " +"(default) way." +msgstr "" + +#: src/Module/Settings/Connectors.php:218 msgid "Your legacy ActivityPub/GNU Social account" msgstr "" -#: src/Module/Settings/Connectors.php:227 +#: src/Module/Settings/Connectors.php:218 msgid "" "If you enter your old account name from an ActivityPub based system or your " "GNU Social/Statusnet account name here (in the format user@domain.tld), your" " contacts will be added automatically. The field will be emptied when done." msgstr "" -#: src/Module/Settings/Connectors.php:229 -msgid "Repair OStatus subscriptions" -msgstr "" - -#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Connectors.php:222 msgid "Email/Mailbox Setup" msgstr "Email / Mailbox Setup" -#: src/Module/Settings/Connectors.php:234 +#: src/Module/Settings/Connectors.php:223 msgid "" "If you wish to communicate with email contacts using this service " "(optional), please specify how to connect to your mailbox." msgstr "Ако желаете да се комуникира с имейл контакти, които използват тази услуга (по желание), моля посочете как да се свържете с вашата пощенска кутия." -#: src/Module/Settings/Connectors.php:235 +#: src/Module/Settings/Connectors.php:224 msgid "Last successful email check:" msgstr "Последна успешна проверка на електронната поща:" -#: src/Module/Settings/Connectors.php:237 +#: src/Module/Settings/Connectors.php:226 msgid "IMAP server name:" msgstr "Име на IMAP сървъра:" -#: src/Module/Settings/Connectors.php:238 +#: src/Module/Settings/Connectors.php:227 msgid "IMAP port:" msgstr "IMAP порта:" -#: src/Module/Settings/Connectors.php:239 +#: src/Module/Settings/Connectors.php:228 msgid "Security:" msgstr "Сигурност" -#: src/Module/Settings/Connectors.php:240 +#: src/Module/Settings/Connectors.php:229 msgid "Email login name:" msgstr "Email потребителско име:" -#: src/Module/Settings/Connectors.php:241 +#: src/Module/Settings/Connectors.php:230 msgid "Email password:" msgstr "Email парола:" -#: src/Module/Settings/Connectors.php:242 +#: src/Module/Settings/Connectors.php:231 msgid "Reply-to address:" msgstr "Адрес за отговор:" -#: src/Module/Settings/Connectors.php:243 +#: src/Module/Settings/Connectors.php:232 msgid "Send public posts to all email contacts:" msgstr "Изпратете публични длъжности за всички имейл контакти:" -#: src/Module/Settings/Connectors.php:244 +#: src/Module/Settings/Connectors.php:233 msgid "Action after import:" msgstr "Действия след вноса:" -#: src/Module/Settings/Connectors.php:244 +#: src/Module/Settings/Connectors.php:233 msgid "Move to folder" msgstr "Премества избраното в папка" -#: src/Module/Settings/Connectors.php:245 +#: src/Module/Settings/Connectors.php:234 msgid "Move to folder:" msgstr "Премества избраното в папка" -#: src/Module/Settings/Delegation.php:73 +#: src/Module/Settings/Delegation.php:59 msgid "Delegation successfully granted." msgstr "" -#: src/Module/Settings/Delegation.php:75 +#: src/Module/Settings/Delegation.php:61 msgid "Parent user not found, unavailable or password doesn't match." msgstr "" -#: src/Module/Settings/Delegation.php:79 +#: src/Module/Settings/Delegation.php:65 msgid "Delegation successfully revoked." msgstr "" -#: src/Module/Settings/Delegation.php:98 -#: src/Module/Settings/Delegation.php:120 +#: src/Module/Settings/Delegation.php:84 +#: src/Module/Settings/Delegation.php:106 msgid "" "Delegated administrators can view but not change delegation permissions." msgstr "" -#: src/Module/Settings/Delegation.php:112 +#: src/Module/Settings/Delegation.php:98 msgid "Delegate user not found." msgstr "" -#: src/Module/Settings/Delegation.php:169 +#: src/Module/Settings/Delegation.php:155 msgid "No parent user" msgstr "" -#: src/Module/Settings/Delegation.php:180 -#: src/Module/Settings/Delegation.php:191 +#: src/Module/Settings/Delegation.php:166 +#: src/Module/Settings/Delegation.php:177 msgid "Parent User" msgstr "" -#: src/Module/Settings/Delegation.php:188 +#: src/Module/Settings/Delegation.php:174 msgid "Additional Accounts" msgstr "" -#: src/Module/Settings/Delegation.php:189 +#: src/Module/Settings/Delegation.php:175 msgid "" "Register additional accounts that are automatically connected to your " "existing account so you can manage them from this account." msgstr "" -#: src/Module/Settings/Delegation.php:190 +#: src/Module/Settings/Delegation.php:176 msgid "Register an additional account" msgstr "" -#: src/Module/Settings/Delegation.php:192 +#: src/Module/Settings/Delegation.php:178 msgid "" "Parent users have total control about this account, including the account " "settings. Please double check whom you give this access." msgstr "" -#: src/Module/Settings/Delegation.php:195 +#: src/Module/Settings/Delegation.php:181 msgid "Delegates" msgstr "" -#: src/Module/Settings/Delegation.php:196 +#: src/Module/Settings/Delegation.php:182 msgid "" "Delegates are able to manage all aspects of this account/page except for " "basic account settings. Please do not delegate your personal account to " "anybody that you do not trust completely." msgstr "Делегатите са в състояние да управляват всички аспекти от тази сметка / страница, с изключение на основните настройки сметка. Моля, не делегира Вашата лична сметка на никого, че не се доверявате напълно." -#: src/Module/Settings/Delegation.php:197 +#: src/Module/Settings/Delegation.php:183 msgid "Existing Page Delegates" msgstr "Съществуващите Делегатите Страница" -#: src/Module/Settings/Delegation.php:198 +#: src/Module/Settings/Delegation.php:184 msgid "Potential Delegates" msgstr "Потенциални Делегатите" -#: src/Module/Settings/Delegation.php:199 +#: src/Module/Settings/Delegation.php:185 msgid "No entries." msgstr "няма регистрирани" -#: src/Module/Settings/Display.php:185 +#: src/Module/Settings/Display.php:169 msgid "The theme you chose isn't available." msgstr "" -#: src/Module/Settings/Display.php:225 +#: src/Module/Settings/Display.php:209 #, php-format msgid "%s - (Unsupported)" msgstr "" -#: src/Module/Settings/Display.php:263 +#: src/Module/Settings/Display.php:246 msgid "No preview" msgstr "" -#: src/Module/Settings/Display.php:264 +#: src/Module/Settings/Display.php:247 msgid "No image" msgstr "" -#: src/Module/Settings/Display.php:265 +#: src/Module/Settings/Display.php:248 msgid "Small Image" msgstr "" -#: src/Module/Settings/Display.php:266 +#: src/Module/Settings/Display.php:249 msgid "Large Image" msgstr "" -#: src/Module/Settings/Display.php:311 +#: src/Module/Settings/Display.php:294 msgid "Display Settings" msgstr "Настройки на дисплея" -#: src/Module/Settings/Display.php:313 +#: src/Module/Settings/Display.php:296 msgid "General Theme Settings" msgstr "" -#: src/Module/Settings/Display.php:314 +#: src/Module/Settings/Display.php:297 msgid "Custom Theme Settings" msgstr "" -#: src/Module/Settings/Display.php:315 +#: src/Module/Settings/Display.php:298 msgid "Content Settings" msgstr "" -#: src/Module/Settings/Display.php:316 view/theme/duepuntozero/config.php:86 -#: view/theme/frio/config.php:151 view/theme/quattro/config.php:88 -#: view/theme/vier/config.php:136 +#: src/Module/Settings/Display.php:299 view/theme/duepuntozero/config.php:74 +#: view/theme/frio/config.php:139 view/theme/quattro/config.php:76 +#: view/theme/vier/config.php:124 msgid "Theme settings" msgstr "Тема Настройки" -#: src/Module/Settings/Display.php:317 +#: src/Module/Settings/Display.php:300 msgid "Timelines" msgstr "" -#: src/Module/Settings/Display.php:324 +#: src/Module/Settings/Display.php:307 msgid "Display Theme:" msgstr "Палитрата на дисплея:" -#: src/Module/Settings/Display.php:325 +#: src/Module/Settings/Display.php:308 msgid "Mobile Theme:" msgstr "" -#: src/Module/Settings/Display.php:328 +#: src/Module/Settings/Display.php:311 msgid "Number of items to display per page:" msgstr "" -#: src/Module/Settings/Display.php:328 src/Module/Settings/Display.php:329 +#: src/Module/Settings/Display.php:311 src/Module/Settings/Display.php:312 msgid "Maximum of 100 items" msgstr "Максимум от 100 точки" -#: src/Module/Settings/Display.php:329 +#: src/Module/Settings/Display.php:312 msgid "Number of items to display per page when viewed from mobile device:" msgstr "" -#: src/Module/Settings/Display.php:330 +#: src/Module/Settings/Display.php:313 msgid "Update browser every xx seconds" msgstr "Актуализиране на браузъра на всеки ХХ секунди" -#: src/Module/Settings/Display.php:330 +#: src/Module/Settings/Display.php:313 msgid "Minimum of 10 seconds. Enter -1 to disable it." msgstr "" -#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/Display.php:314 msgid "Display emoticons" msgstr "" -#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/Display.php:314 msgid "When enabled, emoticons are replaced with matching symbols." msgstr "" -#: src/Module/Settings/Display.php:332 +#: src/Module/Settings/Display.php:315 msgid "Infinite scroll" msgstr "" -#: src/Module/Settings/Display.php:332 +#: src/Module/Settings/Display.php:315 msgid "Automatic fetch new items when reaching the page end." msgstr "" -#: src/Module/Settings/Display.php:333 +#: src/Module/Settings/Display.php:316 msgid "Enable Smart Threading" msgstr "" -#: src/Module/Settings/Display.php:333 +#: src/Module/Settings/Display.php:316 msgid "Enable the automatic suppression of extraneous thread indentation." msgstr "" -#: src/Module/Settings/Display.php:334 +#: src/Module/Settings/Display.php:317 msgid "Display the Dislike feature" msgstr "" -#: src/Module/Settings/Display.php:334 +#: src/Module/Settings/Display.php:317 msgid "" "Display the Dislike button and dislike reactions on posts and comments." msgstr "" -#: src/Module/Settings/Display.php:335 +#: src/Module/Settings/Display.php:318 msgid "Display the resharer" msgstr "" -#: src/Module/Settings/Display.php:335 +#: src/Module/Settings/Display.php:318 msgid "Display the first resharer as icon and text on a reshared item." msgstr "" -#: src/Module/Settings/Display.php:336 -msgid "Display sensitive content" -msgstr "" - -#: src/Module/Settings/Display.php:336 -msgid "If enabled, pictures in posts marked as \"sensitive\" will not be blurred." -msgstr "" - -#: src/Module/Settings/Display.php:337 +#: src/Module/Settings/Display.php:319 msgid "Stay local" msgstr "" -#: src/Module/Settings/Display.php:337 +#: src/Module/Settings/Display.php:319 msgid "Don't go to a remote system when following a contact link." msgstr "" -#: src/Module/Settings/Display.php:338 +#: src/Module/Settings/Display.php:320 msgid "Show the post deletion checkbox" msgstr "" -#: src/Module/Settings/Display.php:338 +#: src/Module/Settings/Display.php:320 msgid "Display the checkbox for the post deletion on the network page." msgstr "" -#: src/Module/Settings/Display.php:339 +#: src/Module/Settings/Display.php:321 msgid "DIsplay the event list" msgstr "" -#: src/Module/Settings/Display.php:339 +#: src/Module/Settings/Display.php:321 msgid "Display the birthday reminder and event list on the network page." msgstr "" -#: src/Module/Settings/Display.php:340 +#: src/Module/Settings/Display.php:322 msgid "Link preview mode" msgstr "" -#: src/Module/Settings/Display.php:340 +#: src/Module/Settings/Display.php:322 msgid "Appearance of the link preview that is added to each post with a link." msgstr "" -#: src/Module/Settings/Display.php:345 +#: src/Module/Settings/Display.php:327 msgid "Bookmark" msgstr "" -#: src/Module/Settings/Display.php:347 +#: src/Module/Settings/Display.php:329 msgid "" "Enable timelines that you want to see in the channels widget. Bookmark " "timelines that you want to see in the top menu." msgstr "" -#: src/Module/Settings/Display.php:349 +#: src/Module/Settings/Display.php:331 msgid "Channel languages:" msgstr "" -#: src/Module/Settings/Display.php:349 +#: src/Module/Settings/Display.php:331 msgid "Select all languages that you want to see in your channels." msgstr "" -#: src/Module/Settings/Display.php:351 +#: src/Module/Settings/Display.php:333 msgid "Beginning of week:" msgstr "" -#: src/Module/Settings/Display.php:352 +#: src/Module/Settings/Display.php:334 msgid "Default calendar view:" msgstr "" -#: src/Module/Settings/Features.php:74 +#: src/Module/Settings/Features.php:59 msgid "Additional Features" msgstr "Допълнителни възможности" -#: src/Module/Settings/OAuth.php:71 +#: src/Module/Settings/OAuth.php:57 msgid "Connected Apps" msgstr "Свързани Apps" -#: src/Module/Settings/OAuth.php:75 +#: src/Module/Settings/OAuth.php:61 msgid "Remove authorization" msgstr "Премахване на разрешение" -#: src/Module/Settings/Profile/Index.php:116 +#: src/Module/Settings/Profile/Index.php:102 msgid "Display Name is required." msgstr "" -#: src/Module/Settings/Profile/Index.php:167 +#: src/Module/Settings/Profile/Index.php:156 msgid "Profile couldn't be updated." msgstr "" -#: src/Module/Settings/Profile/Index.php:205 -#: src/Module/Settings/Profile/Index.php:226 +#: src/Module/Settings/Profile/Index.php:196 +#: src/Module/Settings/Profile/Index.php:217 msgid "Label:" msgstr "" -#: src/Module/Settings/Profile/Index.php:206 -#: src/Module/Settings/Profile/Index.php:227 +#: src/Module/Settings/Profile/Index.php:197 +#: src/Module/Settings/Profile/Index.php:218 msgid "Value:" msgstr "" -#: src/Module/Settings/Profile/Index.php:217 -#: src/Module/Settings/Profile/Index.php:238 +#: src/Module/Settings/Profile/Index.php:208 +#: src/Module/Settings/Profile/Index.php:229 msgid "Field Permissions" msgstr "" -#: src/Module/Settings/Profile/Index.php:218 -#: src/Module/Settings/Profile/Index.php:239 +#: src/Module/Settings/Profile/Index.php:209 +#: src/Module/Settings/Profile/Index.php:230 msgid "(click to open/close)" msgstr "(Щракнете за отваряне / затваряне)" -#: src/Module/Settings/Profile/Index.php:224 +#: src/Module/Settings/Profile/Index.php:215 msgid "Add a new profile field" msgstr "" -#: src/Module/Settings/Profile/Index.php:247 +#: src/Module/Settings/Profile/Index.php:238 msgid "" "The homepage is verified. A rel=\"me\" link back to your Friendica profile " "page was found on the homepage." msgstr "" -#: src/Module/Settings/Profile/Index.php:249 +#: src/Module/Settings/Profile/Index.php:240 #, php-format msgid "" "To verify your homepage, add a rel=\"me\" link to it, pointing to your " "profile URL (%s)." msgstr "" -#: src/Module/Settings/Profile/Index.php:255 +#: src/Module/Settings/Profile/Index.php:246 msgid "Profile Actions" msgstr "" -#: src/Module/Settings/Profile/Index.php:256 +#: src/Module/Settings/Profile/Index.php:247 msgid "Edit Profile Details" msgstr "Редактиране на детайли от профила" -#: src/Module/Settings/Profile/Index.php:258 +#: src/Module/Settings/Profile/Index.php:249 msgid "Change Profile Photo" msgstr "Промяна снимката на профила" -#: src/Module/Settings/Profile/Index.php:261 +#: src/Module/Settings/Profile/Index.php:252 msgid "Profile picture" msgstr "" -#: src/Module/Settings/Profile/Index.php:262 +#: src/Module/Settings/Profile/Index.php:253 msgid "Location" msgstr "Местоположение " -#: src/Module/Settings/Profile/Index.php:263 src/Util/Temporal.php:97 -#: src/Util/Temporal.php:99 +#: src/Module/Settings/Profile/Index.php:254 src/Util/Temporal.php:83 +#: src/Util/Temporal.php:85 msgid "Miscellaneous" msgstr "Разни" -#: src/Module/Settings/Profile/Index.php:264 +#: src/Module/Settings/Profile/Index.php:255 msgid "Custom Profile Fields" msgstr "" -#: src/Module/Settings/Profile/Index.php:265 src/Module/Welcome.php:58 +#: src/Module/Settings/Profile/Index.php:256 src/Module/Welcome.php:44 msgid "Upload Profile Photo" msgstr "Качване на снимка Профилът" -#: src/Module/Settings/Profile/Index.php:266 +#: src/Module/Settings/Profile/Index.php:257 #, php-format msgid "" "Custom fields appear on your profile page.
\n" @@ -10867,396 +10918,396 @@ msgid "" "\t\t\t\tNon-public fields can only be seen by the selected Friendica contacts or the Friendica contacts in the selected circles.
" msgstr "" -#: src/Module/Settings/Profile/Index.php:286 +#: src/Module/Settings/Profile/Index.php:277 msgid "Street Address:" msgstr "Адрес:" -#: src/Module/Settings/Profile/Index.php:287 +#: src/Module/Settings/Profile/Index.php:278 msgid "Locality/City:" msgstr "Махала / Град:" -#: src/Module/Settings/Profile/Index.php:288 +#: src/Module/Settings/Profile/Index.php:279 msgid "Region/State:" msgstr "Регион / Щат:" -#: src/Module/Settings/Profile/Index.php:289 +#: src/Module/Settings/Profile/Index.php:280 msgid "Postal/Zip Code:" msgstr "Postal / Zip Code:" -#: src/Module/Settings/Profile/Index.php:290 +#: src/Module/Settings/Profile/Index.php:281 msgid "Country:" msgstr "Държава:" -#: src/Module/Settings/Profile/Index.php:292 +#: src/Module/Settings/Profile/Index.php:283 msgid "XMPP (Jabber) address:" msgstr "" -#: src/Module/Settings/Profile/Index.php:292 +#: src/Module/Settings/Profile/Index.php:283 msgid "" "The XMPP address will be published so that people can follow you there." msgstr "" -#: src/Module/Settings/Profile/Index.php:293 +#: src/Module/Settings/Profile/Index.php:284 msgid "Matrix (Element) address:" msgstr "" -#: src/Module/Settings/Profile/Index.php:293 +#: src/Module/Settings/Profile/Index.php:284 msgid "" "The Matrix address will be published so that people can follow you there." msgstr "" -#: src/Module/Settings/Profile/Index.php:294 +#: src/Module/Settings/Profile/Index.php:285 msgid "Homepage URL:" msgstr "Електронна страница:" -#: src/Module/Settings/Profile/Index.php:295 +#: src/Module/Settings/Profile/Index.php:286 msgid "Public Keywords:" msgstr "Публичните Ключови думи:" -#: src/Module/Settings/Profile/Index.php:295 +#: src/Module/Settings/Profile/Index.php:286 msgid "(Used for suggesting potential friends, can be seen by others)" msgstr "(Използва се за предполагайки потенциален приятели, може да се види от други)" -#: src/Module/Settings/Profile/Index.php:296 +#: src/Module/Settings/Profile/Index.php:287 msgid "Private Keywords:" msgstr "Частни Ключови думи:" -#: src/Module/Settings/Profile/Index.php:296 +#: src/Module/Settings/Profile/Index.php:287 msgid "(Used for searching profiles, never shown to others)" msgstr "(Използва се за търсене на профилите, никога не показва и на други)" -#: src/Module/Settings/Profile/Photo/Crop.php:107 -#: src/Module/Settings/Profile/Photo/Crop.php:125 -#: src/Module/Settings/Profile/Photo/Crop.php:143 -#: src/Module/Settings/Profile/Photo/Index.php:100 +#: src/Module/Settings/Profile/Photo/Crop.php:93 +#: src/Module/Settings/Profile/Photo/Crop.php:111 +#: src/Module/Settings/Profile/Photo/Crop.php:129 +#: src/Module/Settings/Profile/Photo/Index.php:86 #, php-format msgid "Image size reduction [%s] failed." msgstr "Намаляване на размер [ %s ] не успя." -#: src/Module/Settings/Profile/Photo/Crop.php:150 +#: src/Module/Settings/Profile/Photo/Crop.php:136 msgid "" "Shift-reload the page or clear browser cache if the new photo does not " "display immediately." msgstr "Shift-презаредите страницата или ясно, кеша на браузъра, ако новата снимка не показва веднага." -#: src/Module/Settings/Profile/Photo/Crop.php:155 +#: src/Module/Settings/Profile/Photo/Crop.php:141 msgid "Unable to process image" msgstr "Не може да се обработи" -#: src/Module/Settings/Profile/Photo/Crop.php:174 +#: src/Module/Settings/Profile/Photo/Crop.php:160 msgid "Photo not found." msgstr "" -#: src/Module/Settings/Profile/Photo/Crop.php:196 +#: src/Module/Settings/Profile/Photo/Crop.php:182 msgid "Profile picture successfully updated." msgstr "" -#: src/Module/Settings/Profile/Photo/Crop.php:222 -#: src/Module/Settings/Profile/Photo/Crop.php:226 +#: src/Module/Settings/Profile/Photo/Crop.php:208 +#: src/Module/Settings/Profile/Photo/Crop.php:212 msgid "Crop Image" msgstr "Изрязване на изображението" -#: src/Module/Settings/Profile/Photo/Crop.php:223 +#: src/Module/Settings/Profile/Photo/Crop.php:209 msgid "Please adjust the image cropping for optimum viewing." msgstr "Моля, настроите образа на изрязване за оптимално гледане." -#: src/Module/Settings/Profile/Photo/Crop.php:225 +#: src/Module/Settings/Profile/Photo/Crop.php:211 msgid "Use Image As Is" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:46 +#: src/Module/Settings/Profile/Photo/Index.php:32 msgid "Missing uploaded image." msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:123 +#: src/Module/Settings/Profile/Photo/Index.php:109 msgid "Profile Picture Settings" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:124 +#: src/Module/Settings/Profile/Photo/Index.php:110 msgid "Current Profile Picture" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:125 +#: src/Module/Settings/Profile/Photo/Index.php:111 msgid "Upload Profile Picture" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:126 +#: src/Module/Settings/Profile/Photo/Index.php:112 msgid "Upload Picture:" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:131 +#: src/Module/Settings/Profile/Photo/Index.php:117 msgid "or" msgstr "или" -#: src/Module/Settings/Profile/Photo/Index.php:133 +#: src/Module/Settings/Profile/Photo/Index.php:119 msgid "skip this step" msgstr "пропуснете тази стъпка" -#: src/Module/Settings/Profile/Photo/Index.php:135 +#: src/Module/Settings/Profile/Photo/Index.php:121 msgid "select a photo from your photo albums" msgstr "изберете снимка от вашите фото албуми" -#: src/Module/Settings/RemoveMe.php:76 +#: src/Module/Settings/RemoveMe.php:62 msgid "" "There was a validation error, please make sure you're logged in with the " "account you want to remove and try again." msgstr "" -#: src/Module/Settings/RemoveMe.php:76 +#: src/Module/Settings/RemoveMe.php:62 msgid "If this error persists, please contact your administrator." msgstr "" -#: src/Module/Settings/RemoveMe.php:90 -#: src/Navigation/Notifications/Repository/Notify.php:471 -#: src/Navigation/Notifications/Repository/Notify.php:492 +#: src/Module/Settings/RemoveMe.php:76 +#: src/Navigation/Notifications/Repository/Notify.php:457 +#: src/Navigation/Notifications/Repository/Notify.php:478 msgid "[Friendica System Notify]" msgstr "" -#: src/Module/Settings/RemoveMe.php:90 +#: src/Module/Settings/RemoveMe.php:76 msgid "User deleted their account" msgstr "" -#: src/Module/Settings/RemoveMe.php:91 +#: src/Module/Settings/RemoveMe.php:77 msgid "" "On your Friendica node an user deleted their account. Please ensure that " "their data is removed from the backups." msgstr "" -#: src/Module/Settings/RemoveMe.php:92 +#: src/Module/Settings/RemoveMe.php:78 #, php-format msgid "The user id is %d" msgstr "" -#: src/Module/Settings/RemoveMe.php:105 +#: src/Module/Settings/RemoveMe.php:91 msgid "Your account has been successfully removed. Bye bye!" msgstr "" -#: src/Module/Settings/RemoveMe.php:130 +#: src/Module/Settings/RemoveMe.php:116 msgid "Remove My Account" msgstr "Извадете Моят профил" -#: src/Module/Settings/RemoveMe.php:131 +#: src/Module/Settings/RemoveMe.php:117 msgid "" "This will completely remove your account. Once this has been done it is not " "recoverable." msgstr "Това ще премахне изцяло сметката си. След като това е направено, не е възстановим." -#: src/Module/Settings/RemoveMe.php:136 +#: src/Module/Settings/RemoveMe.php:122 msgid "Please enter your password for verification:" msgstr "Моля, въведете паролата си за проверка:" -#: src/Module/Settings/Server/Action.php:60 +#: src/Module/Settings/Server/Action.php:46 msgid "Do you want to ignore this server?" msgstr "" -#: src/Module/Settings/Server/Action.php:64 +#: src/Module/Settings/Server/Action.php:50 msgid "Do you want to unignore this server?" msgstr "" -#: src/Module/Settings/Server/Action.php:74 -#: src/Module/Settings/Server/Index.php:104 +#: src/Module/Settings/Server/Action.php:60 +#: src/Module/Settings/Server/Index.php:90 msgid "Remote server settings" msgstr "" -#: src/Module/Settings/Server/Action.php:77 +#: src/Module/Settings/Server/Action.php:63 msgid "Server URL" msgstr "" -#: src/Module/Settings/Server/Index.php:78 +#: src/Module/Settings/Server/Index.php:64 msgid "Settings saved" msgstr "" -#: src/Module/Settings/Server/Index.php:105 +#: src/Module/Settings/Server/Index.php:91 msgid "" "Here you can find all the remote servers you have taken individual " "moderation actions against. For a list of servers your node has blocked, " "please check out the Information page." msgstr "" -#: src/Module/Settings/Server/Index.php:110 +#: src/Module/Settings/Server/Index.php:96 msgid "Delete all your settings for the remote server" msgstr "" -#: src/Module/Settings/Server/Index.php:111 +#: src/Module/Settings/Server/Index.php:97 msgid "Save changes" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:69 -#: src/Module/Settings/TwoFactor/Recovery.php:67 -#: src/Module/Settings/TwoFactor/Trusted.php:70 -#: src/Module/Settings/TwoFactor/Verify.php:72 +#: src/Module/Settings/TwoFactor/AppSpecific.php:55 +#: src/Module/Settings/TwoFactor/Recovery.php:53 +#: src/Module/Settings/TwoFactor/Trusted.php:56 +#: src/Module/Settings/TwoFactor/Verify.php:58 msgid "Please enter your password to access this page." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:87 +#: src/Module/Settings/TwoFactor/AppSpecific.php:73 msgid "App-specific password generation failed: The description is empty." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:90 +#: src/Module/Settings/TwoFactor/AppSpecific.php:76 msgid "" "App-specific password generation failed: This description already exists." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:94 +#: src/Module/Settings/TwoFactor/AppSpecific.php:80 msgid "New app-specific password generated." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:100 +#: src/Module/Settings/TwoFactor/AppSpecific.php:86 msgid "App-specific passwords successfully revoked." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:110 +#: src/Module/Settings/TwoFactor/AppSpecific.php:96 msgid "App-specific password successfully revoked." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:131 +#: src/Module/Settings/TwoFactor/AppSpecific.php:117 msgid "Two-factor app-specific passwords" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:133 +#: src/Module/Settings/TwoFactor/AppSpecific.php:119 msgid "" "App-specific passwords are randomly generated passwords used instead your" " regular password to authenticate your account on third-party applications " "that don't support two-factor authentication.
" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:134 +#: src/Module/Settings/TwoFactor/AppSpecific.php:120 msgid "" "Make sure to copy your new app-specific password now. You won’t be able to " "see it again!" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:138 +#: src/Module/Settings/TwoFactor/AppSpecific.php:124 msgid "Last Used" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:139 +#: src/Module/Settings/TwoFactor/AppSpecific.php:125 msgid "Revoke" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:140 +#: src/Module/Settings/TwoFactor/AppSpecific.php:126 msgid "Revoke All" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:143 +#: src/Module/Settings/TwoFactor/AppSpecific.php:129 msgid "" "When you generate a new app-specific password, you must use it right away, " "it will be shown to you once after you generate it." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:144 +#: src/Module/Settings/TwoFactor/AppSpecific.php:130 msgid "Generate new app-specific password" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:145 +#: src/Module/Settings/TwoFactor/AppSpecific.php:131 msgid "Friendiqa on my Fairphone 2..." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:146 +#: src/Module/Settings/TwoFactor/AppSpecific.php:132 msgid "Generate" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:88 +#: src/Module/Settings/TwoFactor/Index.php:74 msgid "Two-factor authentication successfully disabled." msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:141 +#: src/Module/Settings/TwoFactor/Index.php:127 msgid "" "Use an application on a mobile device to get two-factor authentication " "codes when prompted on login.
" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:145 +#: src/Module/Settings/TwoFactor/Index.php:131 msgid "Authenticator app" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:146 +#: src/Module/Settings/TwoFactor/Index.php:132 msgid "Configured" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:146 +#: src/Module/Settings/TwoFactor/Index.php:132 msgid "Not Configured" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:147 +#: src/Module/Settings/TwoFactor/Index.php:133 msgid "You haven't finished configuring your authenticator app.
" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:148 +#: src/Module/Settings/TwoFactor/Index.php:134 msgid "Your authenticator app is correctly configured.
" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:150 +#: src/Module/Settings/TwoFactor/Index.php:136 msgid "Recovery codes" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:151 +#: src/Module/Settings/TwoFactor/Index.php:137 msgid "Remaining valid codes" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:153 +#: src/Module/Settings/TwoFactor/Index.php:139 msgid "" "These one-use codes can replace an authenticator app code in case you " "have lost access to it.
" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:155 +#: src/Module/Settings/TwoFactor/Index.php:141 msgid "App-specific passwords" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:156 +#: src/Module/Settings/TwoFactor/Index.php:142 msgid "Generated app-specific passwords" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:158 +#: src/Module/Settings/TwoFactor/Index.php:144 msgid "" "These randomly generated passwords allow you to authenticate on apps not " "supporting two-factor authentication.
" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:161 +#: src/Module/Settings/TwoFactor/Index.php:147 msgid "Current password:" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:161 +#: src/Module/Settings/TwoFactor/Index.php:147 msgid "" "You need to provide your current password to change two-factor " "authentication settings." msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:162 +#: src/Module/Settings/TwoFactor/Index.php:148 msgid "Enable two-factor authentication" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:163 +#: src/Module/Settings/TwoFactor/Index.php:149 msgid "Disable two-factor authentication" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:164 +#: src/Module/Settings/TwoFactor/Index.php:150 msgid "Show recovery codes" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:165 +#: src/Module/Settings/TwoFactor/Index.php:151 msgid "Manage app-specific passwords" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:166 +#: src/Module/Settings/TwoFactor/Index.php:152 msgid "Manage trusted browsers" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:167 +#: src/Module/Settings/TwoFactor/Index.php:153 msgid "Finish app configuration" msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:83 +#: src/Module/Settings/TwoFactor/Recovery.php:69 msgid "New recovery codes successfully generated." msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:109 +#: src/Module/Settings/TwoFactor/Recovery.php:95 msgid "Two-factor recovery codes" msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:111 +#: src/Module/Settings/TwoFactor/Recovery.php:97 msgid "" "Recovery codes can be used to access your account in the event you lose " "access to your device and cannot receive two-factor authentication " @@ -11265,68 +11316,68 @@ msgid "" "account.
" msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:113 +#: src/Module/Settings/TwoFactor/Recovery.php:99 msgid "" "When you generate new recovery codes, you must copy the new codes. Your old " "codes won’t work anymore." msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:114 +#: src/Module/Settings/TwoFactor/Recovery.php:100 msgid "Generate new recovery codes" msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:116 +#: src/Module/Settings/TwoFactor/Recovery.php:102 msgid "Next: Verification" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:87 +#: src/Module/Settings/TwoFactor/Trusted.php:73 msgid "Trusted browsers successfully removed." msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:97 +#: src/Module/Settings/TwoFactor/Trusted.php:83 msgid "Trusted browser successfully removed." msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:139 +#: src/Module/Settings/TwoFactor/Trusted.php:125 msgid "Two-factor Trusted Browsers" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:140 +#: src/Module/Settings/TwoFactor/Trusted.php:126 msgid "" "Trusted browsers are individual browsers you chose to skip two-factor " "authentication to access Friendica. Please use this feature sparingly, as it" " can negate the benefit of two-factor authentication." msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:141 +#: src/Module/Settings/TwoFactor/Trusted.php:127 msgid "Device" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:142 +#: src/Module/Settings/TwoFactor/Trusted.php:128 msgid "OS" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:144 +#: src/Module/Settings/TwoFactor/Trusted.php:130 msgid "Trusted" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:145 +#: src/Module/Settings/TwoFactor/Trusted.php:131 msgid "Created At" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:146 +#: src/Module/Settings/TwoFactor/Trusted.php:132 msgid "Last Use" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:148 +#: src/Module/Settings/TwoFactor/Trusted.php:134 msgid "Remove All" msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:94 +#: src/Module/Settings/TwoFactor/Verify.php:80 msgid "Two-factor authentication successfully activated." msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:128 +#: src/Module/Settings/TwoFactor/Verify.php:114 #, php-format msgid "" "Or you can submit the authentication settings manually:
\n" @@ -11346,105 +11397,105 @@ msgid "" "" msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:148 +#: src/Module/Settings/TwoFactor/Verify.php:134 msgid "Two-factor code verification" msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:150 +#: src/Module/Settings/TwoFactor/Verify.php:136 msgid "" "Please scan this QR Code with your authenticator app and submit the " "provided code.
" msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:152 +#: src/Module/Settings/TwoFactor/Verify.php:138 #, php-format msgid "" "Or you can open the following URL in your mobile device:
" msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:159 +#: src/Module/Settings/TwoFactor/Verify.php:145 msgid "Verify code and enable two-factor authentication" msgstr "" -#: src/Module/Settings/UserExport.php:90 +#: src/Module/Settings/UserExport.php:76 msgid "Export account" msgstr "" -#: src/Module/Settings/UserExport.php:90 +#: src/Module/Settings/UserExport.php:76 msgid "" "Export your account info and contacts. Use this to make a backup of your " "account and/or to move it to another server." msgstr "" -#: src/Module/Settings/UserExport.php:91 +#: src/Module/Settings/UserExport.php:77 msgid "Export all" msgstr "Изнасяне на всичко" -#: src/Module/Settings/UserExport.php:91 +#: src/Module/Settings/UserExport.php:77 msgid "" "Export your account info, contacts and all your items as json. Could be a " "very big file, and could take a lot of time. Use this to make a full backup " "of your account (photos are not exported)" msgstr "" -#: src/Module/Settings/UserExport.php:92 +#: src/Module/Settings/UserExport.php:78 msgid "Export Contacts to CSV" msgstr "" -#: src/Module/Settings/UserExport.php:92 +#: src/Module/Settings/UserExport.php:78 msgid "" "Export the list of the accounts you are following as CSV file. Compatible to" " e.g. Mastodon." msgstr "" -#: src/Module/Special/DisplayNotFound.php:35 +#: src/Module/Special/DisplayNotFound.php:21 msgid "The top-level post isn't visible." msgstr "" -#: src/Module/Special/DisplayNotFound.php:36 +#: src/Module/Special/DisplayNotFound.php:22 msgid "The top-level post was deleted." msgstr "" -#: src/Module/Special/DisplayNotFound.php:37 +#: src/Module/Special/DisplayNotFound.php:23 msgid "" "This node has blocked the top-level author or the author of the shared post." msgstr "" -#: src/Module/Special/DisplayNotFound.php:38 +#: src/Module/Special/DisplayNotFound.php:24 msgid "" "You have ignored or blocked the top-level author or the author of the shared" " post." msgstr "" -#: src/Module/Special/DisplayNotFound.php:39 +#: src/Module/Special/DisplayNotFound.php:25 msgid "" "You have ignored the top-level author's server or the shared post author's " "server." msgstr "" -#: src/Module/Special/DisplayNotFound.php:45 +#: src/Module/Special/DisplayNotFound.php:31 msgid "Conversation Not Found" msgstr "" -#: src/Module/Special/DisplayNotFound.php:46 +#: src/Module/Special/DisplayNotFound.php:32 msgid "Unfortunately, the requested conversation isn't available to you." msgstr "" -#: src/Module/Special/DisplayNotFound.php:47 +#: src/Module/Special/DisplayNotFound.php:33 msgid "Possible reasons include:" msgstr "" -#: src/Module/Special/HTTPException.php:78 +#: src/Module/Special/HTTPException.php:64 msgid "Stack trace:" msgstr "" -#: src/Module/Special/HTTPException.php:83 +#: src/Module/Special/HTTPException.php:69 #, php-format msgid "Exception thrown in %s:%d" msgstr "" -#: src/Module/Tos.php:58 src/Module/Tos.php:107 +#: src/Module/Tos.php:44 src/Module/Tos.php:93 msgid "" "At the time of registration, and for providing communications between the " "user account and their contacts, the user has to provide a display name (pen" @@ -11457,14 +11508,14 @@ msgid "" "settings, it is not necessary for communication." msgstr "" -#: src/Module/Tos.php:59 src/Module/Tos.php:108 +#: src/Module/Tos.php:45 src/Module/Tos.php:94 msgid "" "This data is required for communication and is passed on to the nodes of the" " communication partners and is stored there. Users can enter additional " "private data that may be transmitted to the communication partners accounts." msgstr "" -#: src/Module/Tos.php:60 src/Module/Tos.php:109 +#: src/Module/Tos.php:46 src/Module/Tos.php:95 #, php-format msgid "" "At any point in time a logged in user can export their account data from the" @@ -11475,121 +11526,121 @@ msgid "" "from the nodes of the communication partners." msgstr "" -#: src/Module/Tos.php:63 src/Module/Tos.php:106 +#: src/Module/Tos.php:49 src/Module/Tos.php:92 msgid "Privacy Statement" msgstr "" -#: src/Module/Tos.php:103 +#: src/Module/Tos.php:89 msgid "Rules" msgstr "" -#: src/Module/Update/Display.php:45 +#: src/Module/Update/Display.php:31 msgid "Parameter uri_id is missing." msgstr "" -#: src/Module/Update/Display.php:55 +#: src/Module/Update/Display.php:41 msgid "The requested item doesn't exist or has been deleted." msgstr "" -#: src/Module/User/Delegation.php:146 +#: src/Module/User/Delegation.php:132 #, php-format msgid "You are now logged in as %s" msgstr "" -#: src/Module/User/Delegation.php:185 +#: src/Module/User/Delegation.php:171 msgid "Switch between your accounts" msgstr "" -#: src/Module/User/Delegation.php:186 +#: src/Module/User/Delegation.php:172 msgid "Manage your accounts" msgstr "" -#: src/Module/User/Delegation.php:187 +#: src/Module/User/Delegation.php:173 msgid "" "Toggle between different identities or community/group pages which share " "your account details or which you have been granted \"manage\" permissions" msgstr "Превключвате между различните идентичности или общността / групата страници, които споделят данните на акаунта ви, или които сте получили \"управление\" разрешения" -#: src/Module/User/Delegation.php:188 +#: src/Module/User/Delegation.php:174 msgid "Select an identity to manage: " msgstr "Изберете идентичност, за да управлява: " -#: src/Module/User/Import.php:103 +#: src/Module/User/Import.php:90 msgid "User imports on closed servers can only be done by an administrator." msgstr "" -#: src/Module/User/Import.php:119 +#: src/Module/User/Import.php:106 msgid "Move account" msgstr "" -#: src/Module/User/Import.php:120 +#: src/Module/User/Import.php:107 msgid "You can import an account from another Friendica server." msgstr "" -#: src/Module/User/Import.php:121 +#: src/Module/User/Import.php:108 msgid "" "You need to export your account from the old server and upload it here. We " "will recreate your old account here with all your contacts. We will try also" " to inform your friends that you moved here." msgstr "" -#: src/Module/User/Import.php:122 +#: src/Module/User/Import.php:109 msgid "" "This feature is experimental. We can't import contacts from the OStatus " "network (GNU Social/Statusnet) or from Diaspora" msgstr "" -#: src/Module/User/Import.php:123 +#: src/Module/User/Import.php:110 msgid "Account file" msgstr "" -#: src/Module/User/Import.php:123 +#: src/Module/User/Import.php:110 msgid "" "To export your account, go to \"Settings->Export your personal data\" and " "select \"Export account\"" msgstr "" -#: src/Module/User/Import.php:217 +#: src/Module/User/Import.php:204 msgid "Error decoding account file" msgstr "" -#: src/Module/User/Import.php:222 +#: src/Module/User/Import.php:209 msgid "Error! No version data in file! This is not a Friendica account file?" msgstr "" -#: src/Module/User/Import.php:230 +#: src/Module/User/Import.php:217 #, php-format msgid "User '%s' already exists on this server!" msgstr "" -#: src/Module/User/Import.php:267 +#: src/Module/User/Import.php:254 msgid "User creation error" msgstr "Грешка при създаване на потребителя" -#: src/Module/User/Import.php:316 +#: src/Module/User/Import.php:303 #, php-format msgid "%d contact not imported" msgid_plural "%d contacts not imported" msgstr[0] "" msgstr[1] "" -#: src/Module/User/Import.php:365 +#: src/Module/User/Import.php:352 msgid "User profile creation error" msgstr "Грешка при създаване профила на потребителя" -#: src/Module/User/Import.php:416 +#: src/Module/User/Import.php:403 msgid "Done. You can now login with your username and password" msgstr "" -#: src/Module/Welcome.php:44 +#: src/Module/Welcome.php:30 msgid "Welcome to Friendica" msgstr "Добре дошли да Friendica" -#: src/Module/Welcome.php:45 +#: src/Module/Welcome.php:31 msgid "New Member Checklist" msgstr "Нова държава Чеклист" -#: src/Module/Welcome.php:46 +#: src/Module/Welcome.php:32 msgid "" "We would like to offer some tips and links to help make your experience " "enjoyable. Click any item to visit the relevant page. A link to this page " @@ -11597,33 +11648,33 @@ msgid "" "registration and then will quietly disappear." msgstr "Бихме искали да предложим някои съвети и връзки, за да направи своя опит приятно. Кликнете върху елемент, за да посетите съответната страница. Линк към тази страница ще бъде видима от началната си страница в продължение на две седмици след първоначалната си регистрация и след това спокойно ще изчезне." -#: src/Module/Welcome.php:48 +#: src/Module/Welcome.php:34 msgid "Getting Started" msgstr "" -#: src/Module/Welcome.php:49 +#: src/Module/Welcome.php:35 msgid "Friendica Walk-Through" msgstr "" -#: src/Module/Welcome.php:50 +#: src/Module/Welcome.php:36 msgid "" "On your Quick Start page - find a brief introduction to your " "profile and network tabs, make some new connections, and find some groups to" " join." msgstr "" -#: src/Module/Welcome.php:53 +#: src/Module/Welcome.php:39 msgid "Go to Your Settings" msgstr "" -#: src/Module/Welcome.php:54 +#: src/Module/Welcome.php:40 msgid "" "On your Settings page - change your initial password. Also make a " "note of your Identity Address. This looks just like an email address - and " "will be useful in making friends on the free social web." msgstr "На настройки EM> - да промени първоначалната си парола. Също така направи бележка на вашата самоличност адрес. Това изглежда точно като имейл адрес - и ще бъде полезно при вземането на приятели за свободното социална мрежа." -#: src/Module/Welcome.php:55 +#: src/Module/Welcome.php:41 msgid "" "Review the other settings, particularly the privacy settings. An unpublished" " directory listing is like having an unlisted phone number. In general, you " @@ -11631,77 +11682,77 @@ msgid "" "potential friends know exactly how to find you." msgstr "Прегледайте други настройки, по-специално на настройките за поверителност. Непубликуван списък директория е нещо като скрит телефонен номер. Като цяло, може би трябва да публикува вашата обява - освен ако не всички от вашите приятели и потенциални приятели, знаят точно как да те намеря." -#: src/Module/Welcome.php:59 +#: src/Module/Welcome.php:45 msgid "" "Upload a profile photo if you have not done so already. Studies have shown " "that people with real photos of themselves are ten times more likely to make" " friends than people who do not." msgstr "Качване на снимката на профила, ако не сте го направили вече. Проучванията показват, че хората с истински снимки на себе си, са десет пъти по-вероятно да станат приятели, отколкото хората, които не." -#: src/Module/Welcome.php:60 +#: src/Module/Welcome.php:46 msgid "Edit Your Profile" msgstr "Редактиране на профила" -#: src/Module/Welcome.php:61 +#: src/Module/Welcome.php:47 msgid "" "Edit your default profile to your liking. Review the " "settings for hiding your list of friends and hiding the profile from unknown" " visitors." msgstr "Редактиране на подразбиране профил да ви хареса. Преглед на настройките за скриване на вашия списък с приятели и скриване на профила от неизвестни посетители." -#: src/Module/Welcome.php:62 +#: src/Module/Welcome.php:48 msgid "Profile Keywords" msgstr "Ключови думи на профила" -#: src/Module/Welcome.php:63 +#: src/Module/Welcome.php:49 msgid "" "Set some public keywords for your profile which describe your interests. We " "may be able to find other people with similar interests and suggest " "friendships." msgstr "" -#: src/Module/Welcome.php:65 +#: src/Module/Welcome.php:51 msgid "Connecting" msgstr "Свързване" -#: src/Module/Welcome.php:67 +#: src/Module/Welcome.php:53 msgid "Importing Emails" msgstr "Внасяне на е-пощи" -#: src/Module/Welcome.php:68 +#: src/Module/Welcome.php:54 msgid "" "Enter your email access information on your Connector Settings page if you " "wish to import and interact with friends or mailing lists from your email " "INBOX" msgstr "Въведете своя имейл достъп до информация на страницата Настройки на Connector, ако желаете да внасят и да взаимодейства с приятели или списъци с адреси от електронната си поща Входящи" -#: src/Module/Welcome.php:69 +#: src/Module/Welcome.php:55 msgid "Go to Your Contacts Page" msgstr "" -#: src/Module/Welcome.php:70 +#: src/Module/Welcome.php:56 msgid "" "Your Contacts page is your gateway to managing friendships and connecting " "with friends on other networks. Typically you enter their address or site " "URL in the Add New Contact dialog." msgstr "Контакти страница е вашата врата към управлението на приятелства и свързване с приятели в други мрежи. Обикновено можете да въведете адрес или адрес на сайта в Добавяне на нов контакт EM> диалоговия." -#: src/Module/Welcome.php:71 +#: src/Module/Welcome.php:57 msgid "Go to Your Site's Directory" msgstr "" -#: src/Module/Welcome.php:72 +#: src/Module/Welcome.php:58 msgid "" "The Directory page lets you find other people in this network or other " "federated sites. Look for a Connect or Follow link on " "their profile page. Provide your own Identity Address if requested." msgstr "Страницата на справочника ви позволява да намерите други хора в тази мрежа или други сайтове Федерални. Потърсете Свържете EM> или Следвайте EM> в профила си страница. Предоставяне на вашия собствен адрес за самоличност, ако това бъде поискано." -#: src/Module/Welcome.php:73 +#: src/Module/Welcome.php:59 msgid "Finding New People" msgstr "Откриване на нови хора" -#: src/Module/Welcome.php:74 +#: src/Module/Welcome.php:60 msgid "" "On the side panel of the Contacts page are several tools to find new " "friends. We can match people by interest, look up people by name or " @@ -11710,412 +11761,408 @@ msgid "" "hours." msgstr "На страничния панел на страницата \"Контакти\" са няколко инструмента, да намерите нови приятели. Ние можем да съчетаем хора по интереси, потърсете хора по име или интерес, и да предостави предложения на базата на мрежови връзки. На чисто нов сайт, приятел предложения ще обикновено започват да се населена в рамките на 24 часа." -#: src/Module/Welcome.php:77 +#: src/Module/Welcome.php:63 msgid "Add Your Contacts To Circle" msgstr "" -#: src/Module/Welcome.php:78 +#: src/Module/Welcome.php:64 msgid "" "Once you have made some friends, organize them into private conversation " "circles from the sidebar of your Contacts page and then you can interact " "with each circle privately on your Network page." msgstr "" -#: src/Module/Welcome.php:80 +#: src/Module/Welcome.php:66 msgid "Why Aren't My Posts Public?" msgstr "Защо публикациите ми не са публични?" -#: src/Module/Welcome.php:81 +#: src/Module/Welcome.php:67 msgid "" "Friendica respects your privacy. By default, your posts will only show up to" " people you've added as friends. For more information, see the help section " "from the link above." msgstr "" -#: src/Module/Welcome.php:83 +#: src/Module/Welcome.php:69 msgid "Getting Help" msgstr "" -#: src/Module/Welcome.php:84 +#: src/Module/Welcome.php:70 msgid "Go to the Help Section" msgstr "" -#: src/Module/Welcome.php:85 +#: src/Module/Welcome.php:71 msgid "" "Our help pages may be consulted for detail on other program" " features and resources." msgstr "Нашата помощ strong> страницата може да бъде консултиран за подробности относно други характеристики, програма и ресурси." -#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:161 +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:147 msgid "{0} wants to follow you" msgstr "" -#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:163 +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:149 msgid "{0} has started following you" msgstr "" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:96 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:82 #, php-format msgid "%s liked %s's post" msgstr "%s харесва %s е след" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:108 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:94 #, php-format msgid "%s disliked %s's post" msgstr "%s не харесвал %s е след" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:120 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:106 #, php-format msgid "%s is attending %s's event" msgstr "" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:132 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:118 #, php-format msgid "%s is not attending %s's event" msgstr "" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:144 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:130 #, php-format msgid "%s may attending %s's event" msgstr "" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:174 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:160 #, php-format msgid "%s is now friends with %s" msgstr "%s вече е приятел с %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:341 -#: src/Navigation/Notifications/Factory/FormattedNotify.php:379 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:327 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:365 #, php-format msgid "%s commented on %s's post" msgstr "%s коментира %s е след" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:378 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:364 #, php-format msgid "%s created a new post" msgstr "%s създаден нов пост" -#: src/Navigation/Notifications/Factory/Introduction.php:133 +#: src/Navigation/Notifications/Factory/Introduction.php:118 msgid "Friend Suggestion" msgstr "Приятел за предложения" -#: src/Navigation/Notifications/Factory/Introduction.php:159 +#: src/Navigation/Notifications/Factory/Introduction.php:144 msgid "Friend/Connect Request" msgstr "Приятел / заявка за свързване" -#: src/Navigation/Notifications/Factory/Introduction.php:159 -msgid "New Follower" -msgstr "Нов последовател" - -#: src/Navigation/Notifications/Factory/Notification.php:134 +#: src/Navigation/Notifications/Factory/Notification.php:120 #, php-format msgid "%1$s wants to follow you" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:136 +#: src/Navigation/Notifications/Factory/Notification.php:122 #, php-format msgid "%1$s has started following you" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:208 +#: src/Navigation/Notifications/Factory/Notification.php:194 #, php-format msgid "%1$s liked your comment on %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:211 +#: src/Navigation/Notifications/Factory/Notification.php:197 #, php-format msgid "%1$s liked your post %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:218 +#: src/Navigation/Notifications/Factory/Notification.php:204 #, php-format msgid "%1$s disliked your comment on %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:221 +#: src/Navigation/Notifications/Factory/Notification.php:207 #, php-format msgid "%1$s disliked your post %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:228 +#: src/Navigation/Notifications/Factory/Notification.php:214 #, php-format msgid "%1$s shared your comment %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:231 -#: src/Navigation/Notifications/Factory/Notification.php:316 +#: src/Navigation/Notifications/Factory/Notification.php:217 +#: src/Navigation/Notifications/Factory/Notification.php:302 #, php-format msgid "%1$s shared your post %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:235 -#: src/Navigation/Notifications/Factory/Notification.php:305 +#: src/Navigation/Notifications/Factory/Notification.php:221 +#: src/Navigation/Notifications/Factory/Notification.php:291 #, php-format msgid "%1$s shared the post %2$s from %3$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:237 -#: src/Navigation/Notifications/Factory/Notification.php:307 +#: src/Navigation/Notifications/Factory/Notification.php:223 +#: src/Navigation/Notifications/Factory/Notification.php:293 #, php-format msgid "%1$s shared a post from %3$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:239 -#: src/Navigation/Notifications/Factory/Notification.php:309 +#: src/Navigation/Notifications/Factory/Notification.php:225 +#: src/Navigation/Notifications/Factory/Notification.php:295 #, php-format msgid "%1$s shared the post %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:241 -#: src/Navigation/Notifications/Factory/Notification.php:311 +#: src/Navigation/Notifications/Factory/Notification.php:227 +#: src/Navigation/Notifications/Factory/Notification.php:297 #, php-format msgid "%1$s shared a post" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:249 +#: src/Navigation/Notifications/Factory/Notification.php:235 #, php-format msgid "%1$s wants to attend your event %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:256 +#: src/Navigation/Notifications/Factory/Notification.php:242 #, php-format msgid "%1$s does not want to attend your event %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:263 +#: src/Navigation/Notifications/Factory/Notification.php:249 #, php-format msgid "%1$s maybe wants to attend your event %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:270 +#: src/Navigation/Notifications/Factory/Notification.php:256 #, php-format msgid "%1$s tagged you on %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:274 +#: src/Navigation/Notifications/Factory/Notification.php:260 #, php-format msgid "%1$s replied to you on %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:278 +#: src/Navigation/Notifications/Factory/Notification.php:264 #, php-format msgid "%1$s commented in your thread %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:282 +#: src/Navigation/Notifications/Factory/Notification.php:268 #, php-format msgid "%1$s commented on your comment %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:289 +#: src/Navigation/Notifications/Factory/Notification.php:275 #, php-format msgid "%1$s commented in their thread %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:291 +#: src/Navigation/Notifications/Factory/Notification.php:277 #, php-format msgid "%1$s commented in their thread" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:293 +#: src/Navigation/Notifications/Factory/Notification.php:279 #, php-format msgid "%1$s commented in the thread %2$s from %3$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:295 +#: src/Navigation/Notifications/Factory/Notification.php:281 #, php-format msgid "%1$s commented in the thread from %3$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:300 +#: src/Navigation/Notifications/Factory/Notification.php:286 #, php-format msgid "%1$s commented on your thread %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:225 -#: src/Navigation/Notifications/Repository/Notify.php:754 +#: src/Navigation/Notifications/Repository/Notify.php:211 +#: src/Navigation/Notifications/Repository/Notify.php:740 msgid "[Friendica:Notify]" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:293 +#: src/Navigation/Notifications/Repository/Notify.php:279 #, php-format msgid "%s New mail received at %s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:295 +#: src/Navigation/Notifications/Repository/Notify.php:281 #, php-format msgid "%1$s sent you a new private message at %2$s." msgstr "%1$s в %2$s ви изпрати ново лично съобщение ." -#: src/Navigation/Notifications/Repository/Notify.php:296 +#: src/Navigation/Notifications/Repository/Notify.php:282 msgid "a private message" msgstr "лично съобщение" -#: src/Navigation/Notifications/Repository/Notify.php:296 +#: src/Navigation/Notifications/Repository/Notify.php:282 #, php-format msgid "%1$s sent you %2$s." msgstr "Ви изпрати %2$s %1$s %2$s ." -#: src/Navigation/Notifications/Repository/Notify.php:298 +#: src/Navigation/Notifications/Repository/Notify.php:284 #, php-format msgid "Please visit %s to view and/or reply to your private messages." msgstr "Моля, посетете %s да видите и / или да отговорите на Вашите лични съобщения." -#: src/Navigation/Notifications/Repository/Notify.php:328 +#: src/Navigation/Notifications/Repository/Notify.php:314 #, php-format msgid "%1$s commented on %2$s's %3$s %4$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:333 +#: src/Navigation/Notifications/Repository/Notify.php:319 #, php-format msgid "%1$s commented on your %2$s %3$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:337 +#: src/Navigation/Notifications/Repository/Notify.php:323 #, php-format msgid "%1$s commented on their %2$s %3$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:341 -#: src/Navigation/Notifications/Repository/Notify.php:788 +#: src/Navigation/Notifications/Repository/Notify.php:327 +#: src/Navigation/Notifications/Repository/Notify.php:774 #, php-format msgid "%1$s Comment to conversation #%2$d by %3$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:343 +#: src/Navigation/Notifications/Repository/Notify.php:329 #, php-format msgid "%s commented on an item/conversation you have been following." msgstr "%s коментира артикул / разговор, който са били." -#: src/Navigation/Notifications/Repository/Notify.php:347 -#: src/Navigation/Notifications/Repository/Notify.php:362 -#: src/Navigation/Notifications/Repository/Notify.php:814 +#: src/Navigation/Notifications/Repository/Notify.php:333 +#: src/Navigation/Notifications/Repository/Notify.php:348 +#: src/Navigation/Notifications/Repository/Notify.php:800 #, php-format msgid "Please visit %s to view and/or reply to the conversation." msgstr "Моля, посетете %s да видите и / или да отговорите на разговор." -#: src/Navigation/Notifications/Repository/Notify.php:354 +#: src/Navigation/Notifications/Repository/Notify.php:340 #, php-format msgid "%s %s posted to your profile wall" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:356 +#: src/Navigation/Notifications/Repository/Notify.php:342 #, php-format msgid "%1$s posted to your profile wall at %2$s" msgstr "%1$s публикуван вашия профил стена при %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:357 +#: src/Navigation/Notifications/Repository/Notify.php:343 #, php-format msgid "%1$s posted to [url=%2$s]your wall[/url]" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:370 +#: src/Navigation/Notifications/Repository/Notify.php:356 #, php-format msgid "%s Introduction received" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:372 +#: src/Navigation/Notifications/Repository/Notify.php:358 #, php-format msgid "You've received an introduction from '%1$s' at %2$s" msgstr "Получили сте въведения от %1$s в %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:373 +#: src/Navigation/Notifications/Repository/Notify.php:359 #, php-format msgid "You've received [url=%1$s]an introduction[/url] from %2$s." msgstr "Получили сте [URL = %1$s ] въведение [/ URL] от %2$s ." -#: src/Navigation/Notifications/Repository/Notify.php:378 -#: src/Navigation/Notifications/Repository/Notify.php:424 +#: src/Navigation/Notifications/Repository/Notify.php:364 +#: src/Navigation/Notifications/Repository/Notify.php:410 #, php-format msgid "You may visit their profile at %s" msgstr "Можете да посетите техния профил в %s" -#: src/Navigation/Notifications/Repository/Notify.php:380 +#: src/Navigation/Notifications/Repository/Notify.php:366 #, php-format msgid "Please visit %s to approve or reject the introduction." msgstr "Моля, посетете %s да одобри или да отхвърли въвеждането." -#: src/Navigation/Notifications/Repository/Notify.php:387 +#: src/Navigation/Notifications/Repository/Notify.php:373 #, php-format msgid "%s A new person is sharing with you" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:389 -#: src/Navigation/Notifications/Repository/Notify.php:390 +#: src/Navigation/Notifications/Repository/Notify.php:375 +#: src/Navigation/Notifications/Repository/Notify.php:376 #, php-format msgid "%1$s is sharing with you at %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:397 +#: src/Navigation/Notifications/Repository/Notify.php:383 #, php-format msgid "%s You have a new follower" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:399 -#: src/Navigation/Notifications/Repository/Notify.php:400 +#: src/Navigation/Notifications/Repository/Notify.php:385 +#: src/Navigation/Notifications/Repository/Notify.php:386 #, php-format msgid "You have a new follower at %2$s : %1$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:413 +#: src/Navigation/Notifications/Repository/Notify.php:399 #, php-format msgid "%s Friend suggestion received" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:415 +#: src/Navigation/Notifications/Repository/Notify.php:401 #, php-format msgid "You've received a friend suggestion from '%1$s' at %2$s" msgstr "Получили сте приятел предложение от %1$s в %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:416 +#: src/Navigation/Notifications/Repository/Notify.php:402 #, php-format msgid "" "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." msgstr "Получили сте [URL = %1$s ] предложение приятел [/ URL] %2$s от %3$s ." -#: src/Navigation/Notifications/Repository/Notify.php:422 +#: src/Navigation/Notifications/Repository/Notify.php:408 msgid "Name:" msgstr "Наименование:" -#: src/Navigation/Notifications/Repository/Notify.php:423 +#: src/Navigation/Notifications/Repository/Notify.php:409 msgid "Photo:" msgstr "Снимка:" -#: src/Navigation/Notifications/Repository/Notify.php:426 +#: src/Navigation/Notifications/Repository/Notify.php:412 #, php-format msgid "Please visit %s to approve or reject the suggestion." msgstr "Моля, посетете %s да одобри или отхвърли предложението." -#: src/Navigation/Notifications/Repository/Notify.php:434 -#: src/Navigation/Notifications/Repository/Notify.php:449 +#: src/Navigation/Notifications/Repository/Notify.php:420 +#: src/Navigation/Notifications/Repository/Notify.php:435 #, php-format msgid "%s Connection accepted" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:436 -#: src/Navigation/Notifications/Repository/Notify.php:451 +#: src/Navigation/Notifications/Repository/Notify.php:422 +#: src/Navigation/Notifications/Repository/Notify.php:437 #, php-format msgid "'%1$s' has accepted your connection request at %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:437 -#: src/Navigation/Notifications/Repository/Notify.php:452 +#: src/Navigation/Notifications/Repository/Notify.php:423 +#: src/Navigation/Notifications/Repository/Notify.php:438 #, php-format msgid "%2$s has accepted your [url=%1$s]connection request[/url]." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:442 +#: src/Navigation/Notifications/Repository/Notify.php:428 msgid "" "You are now mutual friends and may exchange status updates, photos, and " "email without restriction." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:444 +#: src/Navigation/Notifications/Repository/Notify.php:430 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:457 +#: src/Navigation/Notifications/Repository/Notify.php:443 #, php-format msgid "" "'%1$s' has chosen to accept you a fan, which restricts some forms of " @@ -12124,34 +12171,34 @@ msgid "" "automatically." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:459 +#: src/Navigation/Notifications/Repository/Notify.php:445 #, php-format msgid "" "'%1$s' may choose to extend this into a two-way or more permissive " "relationship in the future." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:461 +#: src/Navigation/Notifications/Repository/Notify.php:447 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:471 +#: src/Navigation/Notifications/Repository/Notify.php:457 msgid "registration request" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:473 +#: src/Navigation/Notifications/Repository/Notify.php:459 #, php-format msgid "You've received a registration request from '%1$s' at %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:474 +#: src/Navigation/Notifications/Repository/Notify.php:460 #, php-format msgid "You've received a [url=%1$s]registration request[/url] from %2$s." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:479 -#: src/Navigation/Notifications/Repository/Notify.php:500 +#: src/Navigation/Notifications/Repository/Notify.php:465 +#: src/Navigation/Notifications/Repository/Notify.php:486 #, php-format msgid "" "Display Name:\t%s\n" @@ -12159,768 +12206,755 @@ msgid "" "Login Name:\t%s (%s)" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:485 +#: src/Navigation/Notifications/Repository/Notify.php:471 #, php-format msgid "Please visit %s to approve or reject the request." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:492 +#: src/Navigation/Notifications/Repository/Notify.php:478 msgid "new registration" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:494 +#: src/Navigation/Notifications/Repository/Notify.php:480 #, php-format msgid "You've received a new registration from '%1$s' at %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:495 +#: src/Navigation/Notifications/Repository/Notify.php:481 #, php-format msgid "You've received a [url=%1$s]new registration[/url] from %2$s." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:506 +#: src/Navigation/Notifications/Repository/Notify.php:492 #, php-format msgid "Please visit %s to have a look at the new registration." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:782 +#: src/Navigation/Notifications/Repository/Notify.php:768 #, php-format msgid "%s %s tagged you" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:785 +#: src/Navigation/Notifications/Repository/Notify.php:771 #, php-format msgid "%s %s shared a new post" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:793 +#: src/Navigation/Notifications/Repository/Notify.php:779 #, php-format msgid "%1$s %2$s liked your post #%3$d" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:796 +#: src/Navigation/Notifications/Repository/Notify.php:782 #, php-format msgid "%1$s %2$s liked your comment on #%3$d" msgstr "" -#: src/Object/EMail/ItemCCEMail.php:42 +#: src/Object/EMail/ItemCCEMail.php:28 #, php-format msgid "" "This message was sent to you by %s, a member of the Friendica social " "network." msgstr "Това съобщение е изпратено до вас от %s , член на социалната мрежа на Friendica." -#: src/Object/EMail/ItemCCEMail.php:44 +#: src/Object/EMail/ItemCCEMail.php:30 #, php-format msgid "You may visit them online at %s" msgstr "Можете да ги посетите онлайн на адрес %s" -#: src/Object/EMail/ItemCCEMail.php:45 +#: src/Object/EMail/ItemCCEMail.php:31 msgid "" "Please contact the sender by replying to this post if you do not wish to " "receive these messages." msgstr "Моля, свържете се с подателя, като отговори на този пост, ако не желаете да получавате тези съобщения." -#: src/Object/EMail/ItemCCEMail.php:49 +#: src/Object/EMail/ItemCCEMail.php:35 #, php-format msgid "%s posted an update." msgstr "%s е публикувал актуализация." -#: src/Object/Post.php:138 +#: src/Object/Post.php:124 msgid "Private Message" msgstr "Лично съобщение" -#: src/Object/Post.php:142 +#: src/Object/Post.php:128 msgid "Public Message" msgstr "" -#: src/Object/Post.php:146 +#: src/Object/Post.php:132 msgid "Unlisted Message" msgstr "" -#: src/Object/Post.php:182 +#: src/Object/Post.php:168 msgid "This entry was edited" msgstr "Записът е редактиран" -#: src/Object/Post.php:210 +#: src/Object/Post.php:196 msgid "Connector Message" msgstr "" -#: src/Object/Post.php:226 src/Object/Post.php:228 +#: src/Object/Post.php:225 src/Object/Post.php:227 msgid "Edit" msgstr "Редактиране" -#: src/Object/Post.php:262 +#: src/Object/Post.php:261 msgid "Delete globally" msgstr "" -#: src/Object/Post.php:262 +#: src/Object/Post.php:261 msgid "Remove locally" msgstr "" -#: src/Object/Post.php:269 +#: src/Object/Post.php:268 #, php-format msgid "Block %s" msgstr "" -#: src/Object/Post.php:274 +#: src/Object/Post.php:273 #, php-format msgid "Ignore %s" msgstr "" -#: src/Object/Post.php:279 +#: src/Object/Post.php:278 #, php-format msgid "Collapse %s" msgstr "" -#: src/Object/Post.php:283 +#: src/Object/Post.php:282 msgid "Report post" msgstr "" -#: src/Object/Post.php:294 +#: src/Object/Post.php:293 msgid "Save to folder" msgstr "" -#: src/Object/Post.php:334 +#: src/Object/Post.php:333 msgid "I will attend" msgstr "" -#: src/Object/Post.php:334 +#: src/Object/Post.php:333 msgid "I will not attend" msgstr "" -#: src/Object/Post.php:334 +#: src/Object/Post.php:333 msgid "I might attend" msgstr "" -#: src/Object/Post.php:381 +#: src/Object/Post.php:380 msgid "Ignore thread" msgstr "" -#: src/Object/Post.php:382 +#: src/Object/Post.php:381 msgid "Unignore thread" msgstr "" -#: src/Object/Post.php:383 +#: src/Object/Post.php:382 msgid "Toggle ignore status" msgstr "" -#: src/Object/Post.php:393 +#: src/Object/Post.php:392 msgid "Add star" msgstr "" -#: src/Object/Post.php:394 +#: src/Object/Post.php:393 msgid "Remove star" msgstr "" -#: src/Object/Post.php:395 +#: src/Object/Post.php:394 msgid "Toggle star status" msgstr "" -#: src/Object/Post.php:406 +#: src/Object/Post.php:405 msgid "Pin" msgstr "" -#: src/Object/Post.php:407 +#: src/Object/Post.php:406 msgid "Unpin" msgstr "" -#: src/Object/Post.php:408 +#: src/Object/Post.php:407 msgid "Toggle pin status" msgstr "" -#: src/Object/Post.php:411 +#: src/Object/Post.php:410 msgid "Pinned" msgstr "" -#: src/Object/Post.php:416 +#: src/Object/Post.php:415 msgid "Add tag" msgstr "" -#: src/Object/Post.php:429 +#: src/Object/Post.php:430 msgid "Quote share this" msgstr "" -#: src/Object/Post.php:429 +#: src/Object/Post.php:430 msgid "Quote Share" msgstr "" -#: src/Object/Post.php:432 +#: src/Object/Post.php:433 msgid "Reshare this" msgstr "" -#: src/Object/Post.php:432 +#: src/Object/Post.php:433 msgid "Reshare" msgstr "" -#: src/Object/Post.php:433 +#: src/Object/Post.php:434 msgid "Cancel your Reshare" msgstr "" -#: src/Object/Post.php:433 +#: src/Object/Post.php:434 msgid "Unshare" msgstr "" -#: src/Object/Post.php:485 +#: src/Object/Post.php:478 #, php-format msgid "%s (Received %s)" msgstr "" -#: src/Object/Post.php:491 +#: src/Object/Post.php:484 msgid "Comment this item on your system" msgstr "" -#: src/Object/Post.php:491 +#: src/Object/Post.php:484 msgid "Remote comment" msgstr "" -#: src/Object/Post.php:513 +#: src/Object/Post.php:506 msgid "Share via ..." msgstr "" -#: src/Object/Post.php:513 +#: src/Object/Post.php:506 msgid "Share via external services" msgstr "" -#: src/Object/Post.php:520 +#: src/Object/Post.php:513 msgid "Unknown parent" msgstr "" -#: src/Object/Post.php:524 +#: src/Object/Post.php:517 #, php-format msgid "in reply to %s" msgstr "" -#: src/Object/Post.php:526 +#: src/Object/Post.php:519 msgid "Parent is probably private or not federated." msgstr "" -#: src/Object/Post.php:550 +#: src/Object/Post.php:543 msgid "to" msgstr "за" -#: src/Object/Post.php:551 +#: src/Object/Post.php:544 msgid "via" msgstr "" -#: src/Object/Post.php:552 +#: src/Object/Post.php:545 msgid "Wall-to-Wall" msgstr "От стена до стена" -#: src/Object/Post.php:553 +#: src/Object/Post.php:546 msgid "via Wall-To-Wall:" msgstr "чрез стена до стена:" -#: src/Object/Post.php:604 +#: src/Object/Post.php:599 #, php-format msgid "Reply to %s" msgstr "" -#: src/Object/Post.php:607 +#: src/Object/Post.php:602 msgid "More" msgstr "" -#: src/Object/Post.php:626 +#: src/Object/Post.php:621 msgid "Notifier task is pending" msgstr "" -#: src/Object/Post.php:627 +#: src/Object/Post.php:622 msgid "Delivery to remote servers is pending" msgstr "" -#: src/Object/Post.php:628 +#: src/Object/Post.php:623 msgid "Delivery to remote servers is underway" msgstr "" -#: src/Object/Post.php:629 +#: src/Object/Post.php:624 msgid "Delivery to remote servers is mostly done" msgstr "" -#: src/Object/Post.php:630 +#: src/Object/Post.php:625 msgid "Delivery to remote servers is done" msgstr "" -#: src/Object/Post.php:652 +#: src/Object/Post.php:647 #, php-format msgid "%d comment" msgid_plural "%d comments" msgstr[0] "" msgstr[1] "" -#: src/Object/Post.php:653 +#: src/Object/Post.php:648 msgid "Show more" msgstr "" -#: src/Object/Post.php:654 +#: src/Object/Post.php:649 msgid "Show fewer" msgstr "" -#: src/Object/Post.php:691 +#: src/Object/Post.php:686 #, php-format msgid "Reshared by: %s" msgstr "" -#: src/Object/Post.php:696 +#: src/Object/Post.php:691 #, php-format msgid "Viewed by: %s" msgstr "" -#: src/Object/Post.php:701 +#: src/Object/Post.php:696 #, php-format msgid "Read by: %s" msgstr "" -#: src/Object/Post.php:706 +#: src/Object/Post.php:701 #, php-format msgid "Liked by: %s" msgstr "" -#: src/Object/Post.php:711 +#: src/Object/Post.php:706 #, php-format msgid "Disliked by: %s" msgstr "" -#: src/Object/Post.php:716 +#: src/Object/Post.php:711 #, php-format msgid "Attended by: %s" msgstr "" -#: src/Object/Post.php:721 +#: src/Object/Post.php:716 #, php-format msgid "Maybe attended by: %s" msgstr "" -#: src/Object/Post.php:726 +#: src/Object/Post.php:721 #, php-format msgid "Not attended by: %s" msgstr "" -#: src/Object/Post.php:731 +#: src/Object/Post.php:726 #, php-format msgid "Commented by: %s" msgstr "" -#: src/Object/Post.php:736 +#: src/Object/Post.php:731 #, php-format msgid "Reacted with %s by: %s" msgstr "" -#: src/Object/Post.php:759 +#: src/Object/Post.php:754 #, php-format msgid "Quote shared by: %s" msgstr "" -#: src/Protocol/ActivityPub/Receiver.php:568 +#: src/Protocol/ActivityPub/Receiver.php:557 msgid "Chat" msgstr "" -#: src/Protocol/Delivery.php:547 +#: src/Protocol/Delivery.php:530 msgid "(no subject)" msgstr "" -#: src/Protocol/OStatus.php:1390 -#, php-format -msgid "%s is now following %s." -msgstr "" - -#: src/Protocol/OStatus.php:1391 -msgid "following" -msgstr "следните условия:" - -#: src/Protocol/OStatus.php:1394 -#, php-format -msgid "%s stopped following %s." -msgstr "" - -#: src/Protocol/OStatus.php:1395 -msgid "stopped following" -msgstr "спря след" - -#: src/Render/FriendicaSmartyEngine.php:56 +#: src/Render/FriendicaSmartyEngine.php:42 #, php-format msgid "The folder %s must be writable by webserver." msgstr "" -#: src/Security/Authentication.php:227 +#: src/Security/Authentication.php:200 msgid "Login failed." msgstr "Влез не успя." -#: src/Security/Authentication.php:272 +#: src/Security/Authentication.php:245 msgid "Login failed. Please check your credentials." msgstr "" -#: src/Security/Authentication.php:391 +#: src/Security/Authentication.php:359 #, php-format msgid "Welcome %s" msgstr "" -#: src/Security/Authentication.php:392 +#: src/Security/Authentication.php:360 msgid "Please upload a profile photo." msgstr "Моля, да качите снимка профил." -#: src/Util/EMailer/MailBuilder.php:260 +#: src/Security/OpenWebAuth.php:149 +#, php-format +msgid "OpenWebAuth: %1$s welcomes %2$s" +msgstr "" + +#: src/Util/EMailer/MailBuilder.php:246 msgid "Friendica Notification" msgstr "" -#: src/Util/EMailer/NotifyMailBuilder.php:78 -#: src/Util/EMailer/SystemMailBuilder.php:54 +#: src/Util/EMailer/NotifyMailBuilder.php:64 +#: src/Util/EMailer/SystemMailBuilder.php:40 #, php-format msgid "%1$s, %2$s Administrator" msgstr "" -#: src/Util/EMailer/NotifyMailBuilder.php:80 -#: src/Util/EMailer/SystemMailBuilder.php:56 +#: src/Util/EMailer/NotifyMailBuilder.php:66 +#: src/Util/EMailer/SystemMailBuilder.php:42 #, php-format msgid "%s Administrator" msgstr "" -#: src/Util/EMailer/NotifyMailBuilder.php:193 -#: src/Util/EMailer/NotifyMailBuilder.php:217 -#: src/Util/EMailer/SystemMailBuilder.php:101 -#: src/Util/EMailer/SystemMailBuilder.php:118 +#: src/Util/EMailer/NotifyMailBuilder.php:179 +#: src/Util/EMailer/NotifyMailBuilder.php:203 +#: src/Util/EMailer/SystemMailBuilder.php:87 +#: src/Util/EMailer/SystemMailBuilder.php:104 msgid "thanks" msgstr "" -#: src/Util/Temporal.php:172 +#: src/Util/Temporal.php:158 msgid "YYYY-MM-DD or MM-DD" msgstr "" -#: src/Util/Temporal.php:280 +#: src/Util/Temporal.php:266 #, php-format msgid "Time zone: %s Change in Settings" msgstr "" -#: src/Util/Temporal.php:320 src/Util/Temporal.php:329 +#: src/Util/Temporal.php:306 src/Util/Temporal.php:315 msgid "never" msgstr "" -#: src/Util/Temporal.php:343 +#: src/Util/Temporal.php:329 msgid "less than a second ago" msgstr "" -#: src/Util/Temporal.php:352 +#: src/Util/Temporal.php:338 msgid "year" msgstr "" -#: src/Util/Temporal.php:352 +#: src/Util/Temporal.php:338 msgid "years" msgstr "" -#: src/Util/Temporal.php:353 +#: src/Util/Temporal.php:339 msgid "months" msgstr "" -#: src/Util/Temporal.php:354 +#: src/Util/Temporal.php:340 msgid "weeks" msgstr "" -#: src/Util/Temporal.php:355 +#: src/Util/Temporal.php:341 msgid "days" msgstr "" -#: src/Util/Temporal.php:356 +#: src/Util/Temporal.php:342 msgid "hour" msgstr "" -#: src/Util/Temporal.php:356 +#: src/Util/Temporal.php:342 msgid "hours" msgstr "" -#: src/Util/Temporal.php:357 +#: src/Util/Temporal.php:343 msgid "minute" msgstr "" -#: src/Util/Temporal.php:357 +#: src/Util/Temporal.php:343 msgid "minutes" msgstr "" -#: src/Util/Temporal.php:358 +#: src/Util/Temporal.php:344 msgid "second" msgstr "" -#: src/Util/Temporal.php:358 +#: src/Util/Temporal.php:344 msgid "seconds" msgstr "" -#: src/Util/Temporal.php:367 +#: src/Util/Temporal.php:353 #, php-format msgid "in %1$d %2$s" msgstr "" -#: src/Util/Temporal.php:370 +#: src/Util/Temporal.php:356 #, php-format msgid "%1$d %2$s ago" msgstr "" -#: src/Worker/PushSubscription.php:110 +#: src/Worker/PushSubscription.php:96 msgid "Notification from Friendica" msgstr "" -#: src/Worker/PushSubscription.php:111 +#: src/Worker/PushSubscription.php:97 msgid "Empty Post" msgstr "" -#: view/theme/duepuntozero/config.php:68 +#: view/theme/duepuntozero/config.php:56 msgid "default" msgstr "" -#: view/theme/duepuntozero/config.php:69 +#: view/theme/duepuntozero/config.php:57 msgid "greenzero" msgstr "" -#: view/theme/duepuntozero/config.php:70 +#: view/theme/duepuntozero/config.php:58 msgid "purplezero" msgstr "" -#: view/theme/duepuntozero/config.php:71 +#: view/theme/duepuntozero/config.php:59 msgid "easterbunny" msgstr "" -#: view/theme/duepuntozero/config.php:72 +#: view/theme/duepuntozero/config.php:60 msgid "darkzero" msgstr "" -#: view/theme/duepuntozero/config.php:73 +#: view/theme/duepuntozero/config.php:61 msgid "comix" msgstr "" -#: view/theme/duepuntozero/config.php:74 +#: view/theme/duepuntozero/config.php:62 msgid "slackr" msgstr "" -#: view/theme/duepuntozero/config.php:87 +#: view/theme/duepuntozero/config.php:75 msgid "Variations" msgstr "" -#: view/theme/frio/config.php:146 +#: view/theme/frio/config.php:134 msgid "Note" msgstr "" -#: view/theme/frio/config.php:146 +#: view/theme/frio/config.php:134 msgid "Check image permissions if all users are allowed to see the image" msgstr "" -#: view/theme/frio/config.php:152 +#: view/theme/frio/config.php:140 msgid "Appearance" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Accent color" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Blue" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Red" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Purple" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Green" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Pink" msgstr "" -#: view/theme/frio/config.php:154 +#: view/theme/frio/config.php:142 msgid "Copy or paste schemestring" msgstr "" -#: view/theme/frio/config.php:154 +#: view/theme/frio/config.php:142 msgid "" "You can copy this string to share your theme with others. Pasting here " "applies the schemestring" msgstr "" -#: view/theme/frio/config.php:155 +#: view/theme/frio/config.php:143 msgid "Navigation bar background color" msgstr "" -#: view/theme/frio/config.php:156 +#: view/theme/frio/config.php:144 msgid "Navigation bar icon color " msgstr "" -#: view/theme/frio/config.php:157 +#: view/theme/frio/config.php:145 msgid "Link color" msgstr "" -#: view/theme/frio/config.php:158 +#: view/theme/frio/config.php:146 msgid "Set the background color" msgstr "" -#: view/theme/frio/config.php:159 +#: view/theme/frio/config.php:147 msgid "Content background opacity" msgstr "" -#: view/theme/frio/config.php:160 +#: view/theme/frio/config.php:148 msgid "Set the background image" msgstr "" -#: view/theme/frio/config.php:161 +#: view/theme/frio/config.php:149 msgid "Background image style" msgstr "" -#: view/theme/frio/config.php:164 +#: view/theme/frio/config.php:152 msgid "Always open Compose page" msgstr "" -#: view/theme/frio/config.php:164 +#: view/theme/frio/config.php:152 msgid "" "The New Post button always open the Compose page " "instead of the modal form. When this is disabled, the Compose page can be " "accessed with a middle click on the link or from the modal." msgstr "" -#: view/theme/frio/config.php:168 +#: view/theme/frio/config.php:156 msgid "Login page background image" msgstr "" -#: view/theme/frio/config.php:172 +#: view/theme/frio/config.php:160 msgid "Login page background color" msgstr "" -#: view/theme/frio/config.php:172 +#: view/theme/frio/config.php:160 msgid "Leave background image and color empty for theme defaults" msgstr "" -#: view/theme/frio/php/Image.php:39 +#: view/theme/frio/php/Image.php:27 msgid "Top Banner" msgstr "" -#: view/theme/frio/php/Image.php:39 +#: view/theme/frio/php/Image.php:27 msgid "" "Resize image to the width of the screen and show background color below on " "long pages." msgstr "" -#: view/theme/frio/php/Image.php:40 +#: view/theme/frio/php/Image.php:28 msgid "Full screen" msgstr "" -#: view/theme/frio/php/Image.php:40 +#: view/theme/frio/php/Image.php:28 msgid "" "Resize image to fill entire screen, clipping either the right or the bottom." msgstr "" -#: view/theme/frio/php/Image.php:41 +#: view/theme/frio/php/Image.php:29 msgid "Single row mosaic" msgstr "" -#: view/theme/frio/php/Image.php:41 +#: view/theme/frio/php/Image.php:29 msgid "" "Resize image to repeat it on a single row, either vertical or horizontal." msgstr "" -#: view/theme/frio/php/Image.php:42 +#: view/theme/frio/php/Image.php:30 msgid "Mosaic" msgstr "" -#: view/theme/frio/php/Image.php:42 +#: view/theme/frio/php/Image.php:30 msgid "Repeat image to fill the screen." msgstr "" -#: view/theme/frio/php/default.php:82 view/theme/frio/php/standard.php:40 +#: view/theme/frio/php/default.php:70 view/theme/frio/php/standard.php:28 msgid "Skip to main content" msgstr "" -#: view/theme/frio/php/default.php:153 view/theme/frio/php/standard.php:75 +#: view/theme/frio/php/default.php:141 view/theme/frio/php/standard.php:63 msgid "Back to top" msgstr "" -#: view/theme/frio/php/scheme.php:105 +#: view/theme/frio/php/scheme.php:93 msgid "Light" msgstr "" -#: view/theme/frio/php/scheme.php:106 +#: view/theme/frio/php/scheme.php:94 msgid "Dark" msgstr "" -#: view/theme/frio/php/scheme.php:107 +#: view/theme/frio/php/scheme.php:95 msgid "Black" msgstr "" -#: view/theme/frio/php/scheme.php:118 +#: view/theme/frio/php/scheme.php:106 msgid "Custom" msgstr "" -#: view/theme/frio/theme.php:214 +#: view/theme/frio/theme.php:202 msgid "Guest" msgstr "" -#: view/theme/frio/theme.php:217 +#: view/theme/frio/theme.php:205 msgid "Visitor" msgstr "" -#: view/theme/quattro/config.php:89 +#: view/theme/quattro/config.php:77 msgid "Alignment" msgstr "" -#: view/theme/quattro/config.php:89 +#: view/theme/quattro/config.php:77 msgid "Left" msgstr "" -#: view/theme/quattro/config.php:89 +#: view/theme/quattro/config.php:77 msgid "Center" msgstr "" -#: view/theme/quattro/config.php:90 +#: view/theme/quattro/config.php:78 msgid "Color scheme" msgstr "" -#: view/theme/quattro/config.php:91 +#: view/theme/quattro/config.php:79 msgid "Posts font size" msgstr "" -#: view/theme/quattro/config.php:92 +#: view/theme/quattro/config.php:80 msgid "Textareas font size" msgstr "" -#: view/theme/vier/config.php:91 +#: view/theme/vier/config.php:79 msgid "Comma separated list of helper groups" msgstr "" -#: view/theme/vier/config.php:131 +#: view/theme/vier/config.php:119 msgid "don't show" msgstr "" -#: view/theme/vier/config.php:131 +#: view/theme/vier/config.php:119 msgid "show" msgstr "" -#: view/theme/vier/config.php:137 +#: view/theme/vier/config.php:125 msgid "Set style" msgstr "" -#: view/theme/vier/config.php:138 +#: view/theme/vier/config.php:126 msgid "Community Pages" msgstr "" -#: view/theme/vier/config.php:139 view/theme/vier/theme.php:148 +#: view/theme/vier/config.php:127 view/theme/vier/theme.php:136 msgid "Community Profiles" msgstr "" -#: view/theme/vier/config.php:140 +#: view/theme/vier/config.php:128 msgid "Help or @NewHere ?" msgstr "" -#: view/theme/vier/config.php:141 view/theme/vier/theme.php:319 +#: view/theme/vier/config.php:129 view/theme/vier/theme.php:307 msgid "Connect Services" msgstr "" -#: view/theme/vier/config.php:142 +#: view/theme/vier/config.php:130 msgid "Find Friends" msgstr "" -#: view/theme/vier/config.php:143 view/theme/vier/theme.php:175 +#: view/theme/vier/config.php:131 view/theme/vier/theme.php:163 msgid "Last users" msgstr "" -#: view/theme/vier/theme.php:234 +#: view/theme/vier/theme.php:222 msgid "Quick Start" msgstr "" diff --git a/view/lang/bg/strings.php b/view/lang/bg/strings.php index 2054f0b166..e40915e0e8 100644 --- a/view/lang/bg/strings.php +++ b/view/lang/bg/strings.php @@ -134,6 +134,9 @@ $a->strings['Personal'] = 'Лично'; $a->strings['Posts that mention or involve you'] = 'Мнения, които споменават или включват'; $a->strings['Starred'] = 'Със звезда'; $a->strings['Favourite Posts'] = 'Любими Мнения'; +$a->strings['Archives'] = 'Архиви'; +$a->strings['Saved Searches'] = 'Запазени търсения'; +$a->strings['Saved Folders'] = 'Записани папки'; $a->strings['show more'] = 'покажи още'; $a->strings['event'] = 'събитието.'; $a->strings['status'] = 'статус'; @@ -216,14 +219,11 @@ $a->strings['Invite Friends'] = 'Покани приятели'; $a->strings['Global Directory'] = 'Глобален справочник'; $a->strings['Local Directory'] = 'Локалната директория'; $a->strings['All Contacts'] = 'Всички Контакти'; -$a->strings['Saved Folders'] = 'Записани папки'; $a->strings['Everything'] = 'Всичко'; $a->strings['Categories'] = 'Категории'; -$a->strings['Archives'] = 'Архиви'; $a->strings['No contacts'] = 'Няма контакти'; $a->strings['View Contacts'] = 'Вижте Контакти'; $a->strings['Remove term'] = 'Премахване мандат'; -$a->strings['Saved Searches'] = 'Запазени търсения'; $a->strings['Location:'] = 'Място:'; $a->strings['Post to Email'] = 'Коментар на e-mail'; $a->strings['CC: email addresses'] = 'CC: имейл адреси'; @@ -284,7 +284,6 @@ $a->strings['An author or name was not found.'] = 'Един автор или и $a->strings['No browser URL could be matched to this address.'] = 'Не браузър URL може да съвпадне с този адрес.'; $a->strings['Unable to match @-style Identity Address with a known protocol or email contact.'] = 'Не мога да съответства @ стил Адрес идентичност с известен протокол или се свържете с имейл.'; $a->strings['Use mailto: in front of address to force email check.'] = 'Използвайте mailto: пред адрес, за да принуди проверка на имейл.'; -$a->strings['The profile address specified belongs to a network which has been disabled on this site.'] = 'Профилът адрес принадлежи към мрежа, която е била забранена в този сайт.'; $a->strings['Limited profile. This person will be unable to receive direct/personal notifications from you.'] = 'Limited профил. Този човек ще бъде в състояние да получат преки / лична уведомления от вас.'; $a->strings['Unable to retrieve contact information.'] = 'Не мога да получа информация за контакт.'; $a->strings['Starts:'] = 'Започва:'; @@ -362,6 +361,8 @@ $a->strings['Failed Updates'] = 'Неуспешно Updates'; $a->strings['This does not include updates prior to 1139, which did not return a status.'] = 'Това не включва актуализации, преди 1139, които не връщат статута.'; $a->strings['Mark success (if update was manually applied)'] = 'Марк успех (ако актуализация е ръчно прилага)'; $a->strings['Attempt to execute this update step automatically'] = 'Опита да изпълни тази стъпка се обновяват автоматично'; +$a->strings['No'] = 'Не'; +$a->strings['Yes'] = 'Yes'; $a->strings['Other'] = 'Друг'; $a->strings['Logs'] = 'Дневници'; $a->strings['Clear'] = 'Безцветен '; @@ -507,7 +508,6 @@ $a->strings['Replies/likes to your public posts may still be vi $a->strings['Status'] = 'Състояние:'; $a->strings['Toggle Blocked status'] = 'Превключване Блокирани статус'; $a->strings['Toggle Ignored status'] = 'Превключване игнорирани статус'; -$a->strings['Yes'] = 'Yes'; $a->strings['No suggestions available. If this is a new site, please try again in 24 hours.'] = 'Няма предложения. Ако това е нов сайт, моля опитайте отново в рамките на 24 часа.'; $a->strings['No results.'] = 'Няма резултати.'; $a->strings['Not available.'] = 'Няма налични'; @@ -581,7 +581,6 @@ $a->strings['Deny'] = 'Отказ'; $a->strings['Show Ignored Requests'] = 'Показване на пренебрегнатите заявки'; $a->strings['Hide Ignored Requests'] = 'Скриване на пренебрегнатите заявки'; $a->strings['Claims to be known to you: '] = 'Искания, да се знае за вас: '; -$a->strings['No'] = 'Не'; $a->strings['Friend'] = 'Приятел'; $a->strings['No introductions.'] = 'Няма въвеждане.'; $a->strings['Network Notifications'] = 'Мрежа Известия'; @@ -591,8 +590,6 @@ $a->strings['Home Notifications'] = 'Начало Известия'; $a->strings['{0} requested registration'] = '{0} исканата регистрация'; $a->strings['Authorize application connection'] = 'Разрешава връзка с прилагането'; $a->strings['Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?'] = 'Искате ли да се разреши това приложение за достъп до вашите мнения и контакти, и / или създаване на нови длъжности за вас?'; -$a->strings['Remote privacy information not available.'] = 'Дистанционно неприкосновеността на личния живот информация не е достъпен.'; -$a->strings['Visible to:'] = 'Вижда се от:'; $a->strings['Edit post'] = 'Редактиране на мнение'; $a->strings['web link'] = 'Уеб-линк'; $a->strings['Insert video link'] = 'Поставете линка на видео'; @@ -602,6 +599,8 @@ $a->strings['audio link'] = 'аудио връзка'; $a->strings['Remove Item Tag'] = 'Извадете Tag т.'; $a->strings['Select a tag to remove: '] = 'Изберете етикет, за да премахнете: '; $a->strings['Remove'] = 'Премахване'; +$a->strings['Remote privacy information not available.'] = 'Дистанционно неприкосновеността на личния живот информация не е достъпен.'; +$a->strings['Visible to:'] = 'Вижда се от:'; $a->strings['No contacts.'] = 'Няма контакти.'; $a->strings['Image file is empty.'] = 'Image файл е празен.'; $a->strings['View Album'] = 'Вижте албуми'; @@ -753,7 +752,6 @@ $a->strings['%s commented on %s\'s post'] = '%s коментира %s е сле $a->strings['%s created a new post'] = '%s създаден нов пост'; $a->strings['Friend Suggestion'] = 'Приятел за предложения'; $a->strings['Friend/Connect Request'] = 'Приятел / заявка за свързване'; -$a->strings['New Follower'] = 'Нов последовател'; $a->strings['%1$s sent you a new private message at %2$s.'] = '%1$s в %2$s ви изпрати ново лично съобщение .'; $a->strings['a private message'] = 'лично съобщение'; $a->strings['%1$s sent you %2$s.'] = 'Ви изпрати %2$s %1$s %2$s .'; @@ -780,7 +778,5 @@ $a->strings['Edit'] = 'Редактиране'; $a->strings['to'] = 'за'; $a->strings['Wall-to-Wall'] = 'От стена до стена'; $a->strings['via Wall-To-Wall:'] = 'чрез стена до стена:'; -$a->strings['following'] = 'следните условия:'; -$a->strings['stopped following'] = 'спря след'; $a->strings['Login failed.'] = 'Влез не успя.'; $a->strings['Please upload a profile photo.'] = 'Моля, да качите снимка профил.'; diff --git a/view/lang/ca/messages.po b/view/lang/ca/messages.po index 5f2d82b69b..21cd1694ba 100644 --- a/view/lang/ca/messages.po +++ b/view/lang/ca/messages.po @@ -1,8 +1,7 @@ # FRIENDICA Distributed Social Network -# SPDX-FileCopyrightText: Copyright (C) 2010-2024, the Friendica project -# -# SPDX-License-Identifier: AGPL-3.0-or-later -# +# Copyright (C) 2010-2024, the Friendica project +# This file is distributed under the same license as the Friendica package. +# # Translators: # Joan Barupload_max_filesize
is set to %s (%s byte)"
msgstr ""
-#: src/Module/Admin/Site.php:499
+#: src/Module/Admin/Site.php:489
msgid "Maximum image length"
msgstr "Maxima longitud d'imatge"
-#: src/Module/Admin/Site.php:499
+#: src/Module/Admin/Site.php:489
msgid ""
"Maximum length in pixels of the longest side of uploaded images. Default is "
"-1, which means no limits."
msgstr "Longitud màxima en píxels del costat més llarg de la imatge carregada. Per defecte es -1, que significa sense límits"
-#: src/Module/Admin/Site.php:500
+#: src/Module/Admin/Site.php:490
msgid "JPEG image quality"
msgstr "Qualitat per a la imatge JPEG"
-#: src/Module/Admin/Site.php:500
+#: src/Module/Admin/Site.php:490
msgid ""
"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
"100, which is full quality."
msgstr "Els JPEGs pujats seran guardats amb la qualitat que ajustis de [0-100]. Per defecte es 100 màxima qualitat."
-#: src/Module/Admin/Site.php:502
+#: src/Module/Admin/Site.php:491
+msgid "Maximum media file size"
+msgstr ""
+
+#: src/Module/Admin/Site.php:491
+#, php-format
+msgid ""
+"Maximum size in bytes of uploaded media files. Default is 0, which means no limits. You can put k, m, or g behind the desired value for KiB, MiB, GiB, respectively.\n"
+"\t\t\t\t\t\t\t\t\t\t\t\t\tThe value of upload_max_filesize
in your PHP.ini
needs be set to at least the desired limit.\n"
+"\t\t\t\t\t\t\t\t\t\t\t\t\tCurrently upload_max_filesize
is set to %s (%s byte)"
+msgstr ""
+
+#: src/Module/Admin/Site.php:496
msgid "Register policy"
msgstr "Política per a registrar"
-#: src/Module/Admin/Site.php:503
+#: src/Module/Admin/Site.php:497
msgid "Maximum Users"
msgstr ""
-#: src/Module/Admin/Site.php:503
+#: src/Module/Admin/Site.php:497
msgid ""
"If defined, the register policy is automatically closed when the given "
"number of users is reached and reopens the registry when the number drops "
@@ -4658,167 +4746,167 @@ msgid ""
"not when the policy is set to approval."
msgstr ""
-#: src/Module/Admin/Site.php:504
+#: src/Module/Admin/Site.php:498
msgid "Maximum Daily Registrations"
msgstr "Registres Màxims Diaris"
-#: src/Module/Admin/Site.php:504
+#: src/Module/Admin/Site.php:498
msgid ""
"If registration is permitted above, this sets the maximum number of new user"
" registrations to accept per day. If register is set to closed, this "
"setting has no effect."
msgstr "Si es permet el registre, això ajusta el nombre màxim de nous usuaris a acceptar diariament. Si el registre esta tancat, aquest ajust no te efectes."
-#: src/Module/Admin/Site.php:505
+#: src/Module/Admin/Site.php:499
msgid "Register text"
msgstr "Text al registrar"
-#: src/Module/Admin/Site.php:505
+#: src/Module/Admin/Site.php:499
msgid ""
"Will be displayed prominently on the registration page. You can use BBCode "
"here."
msgstr "Es mostrarà de manera destacada a la pàgina de registre. Podeu utilitzar BBCode aquí."
-#: src/Module/Admin/Site.php:506
+#: src/Module/Admin/Site.php:500
msgid "Forbidden Nicknames"
msgstr "Noms prohibits"
-#: src/Module/Admin/Site.php:506
+#: src/Module/Admin/Site.php:500
msgid ""
"Comma separated list of nicknames that are forbidden from registration. "
"Preset is a list of role names according RFC 2142."
msgstr "Llista de sobrenoms separats per comes que tenen prohibit el registre. Els presets són una llista de noms de rol segonsRFC 2142."
-#: src/Module/Admin/Site.php:507
+#: src/Module/Admin/Site.php:501
msgid "Accounts abandoned after x days"
msgstr "Comptes abandonats després de x dies"
-#: src/Module/Admin/Site.php:507
+#: src/Module/Admin/Site.php:501
msgid ""
"Will not waste system resources polling external sites for abandonded "
"accounts. Enter 0 for no time limit."
msgstr "No gastará recursos del sistema creant enquestes des de llocs externos per a comptes abandonats. Introdueixi 0 per a cap límit temporal."
-#: src/Module/Admin/Site.php:508
+#: src/Module/Admin/Site.php:502
msgid "Allowed friend domains"
msgstr "Dominis amics permesos"
-#: src/Module/Admin/Site.php:508
+#: src/Module/Admin/Site.php:502
msgid ""
"Comma separated list of domains which are allowed to establish friendships "
"with this site. Wildcards are accepted. Empty to allow any domains"
msgstr "Llista de dominis separada per comes, de adreçes de correu que són permeses per establir amistats. S'admeten comodins. Deixa'l buit per a acceptar tots els dominis."
-#: src/Module/Admin/Site.php:509
+#: src/Module/Admin/Site.php:503
msgid "Allowed email domains"
msgstr "Dominis de correu permesos"
-#: src/Module/Admin/Site.php:509
+#: src/Module/Admin/Site.php:503
msgid ""
"Comma separated list of domains which are allowed in email addresses for "
"registrations to this site. Wildcards are accepted. Empty to allow any "
"domains"
msgstr "Llista de dominis separada per comes, de adreçes de correu que són permeses per registrtar-se. S'admeten comodins. Deixa'l buit per a acceptar tots els dominis."
-#: src/Module/Admin/Site.php:510
+#: src/Module/Admin/Site.php:504
msgid "Disallowed email domains"
msgstr ""
-#: src/Module/Admin/Site.php:510
+#: src/Module/Admin/Site.php:504
msgid ""
"Comma separated list of domains which are rejected as email addresses for "
"registrations to this site. Wildcards are accepted."
msgstr ""
-#: src/Module/Admin/Site.php:511
+#: src/Module/Admin/Site.php:505
msgid "No OEmbed rich content"
msgstr ""
-#: src/Module/Admin/Site.php:511
+#: src/Module/Admin/Site.php:505
msgid ""
"Don't show the rich content (e.g. embedded PDF), except from the domains "
"listed below."
msgstr ""
-#: src/Module/Admin/Site.php:512
+#: src/Module/Admin/Site.php:506
msgid "Trusted third-party domains"
msgstr ""
-#: src/Module/Admin/Site.php:512
+#: src/Module/Admin/Site.php:506
msgid ""
"Comma separated list of domains from which content is allowed to be embedded"
" in posts like with OEmbed. All sub-domains of the listed domains are "
"allowed as well."
msgstr ""
-#: src/Module/Admin/Site.php:513
+#: src/Module/Admin/Site.php:507
msgid "Block public"
msgstr "Bloqueig públic"
-#: src/Module/Admin/Site.php:513
+#: src/Module/Admin/Site.php:507
msgid ""
"Check to block public access to all otherwise public personal pages on this "
"site unless you are currently logged in."
msgstr "Bloqueja l'accés públic a qualsevol pàgina del lloc fins que t'hagis identificat."
-#: src/Module/Admin/Site.php:514
+#: src/Module/Admin/Site.php:508
msgid "Force publish"
msgstr "Forçar publicació"
-#: src/Module/Admin/Site.php:514
+#: src/Module/Admin/Site.php:508
msgid ""
"Check to force all profiles on this site to be listed in the site directory."
msgstr "Obliga a que tots el perfils en aquest lloc siguin mostrats en el directori del lloc."
-#: src/Module/Admin/Site.php:514
+#: src/Module/Admin/Site.php:508
msgid "Enabling this may violate privacy laws like the GDPR"
msgstr ""
-#: src/Module/Admin/Site.php:515
+#: src/Module/Admin/Site.php:509
msgid "Global directory URL"
msgstr ""
-#: src/Module/Admin/Site.php:515
+#: src/Module/Admin/Site.php:509
msgid ""
"URL to the global directory. If this is not set, the global directory is "
"completely unavailable to the application."
msgstr ""
-#: src/Module/Admin/Site.php:516
+#: src/Module/Admin/Site.php:510
msgid "Private posts by default for new users"
msgstr "Els enviaments dels nous usuaris seran privats per defecte."
-#: src/Module/Admin/Site.php:516
+#: src/Module/Admin/Site.php:510
msgid ""
"Set default post permissions for all new members to the default privacy "
"circle rather than public."
msgstr ""
-#: src/Module/Admin/Site.php:517
+#: src/Module/Admin/Site.php:511
msgid "Don't include post content in email notifications"
msgstr "No incloure el assumpte a les notificacions per correu electrónic"
-#: src/Module/Admin/Site.php:517
+#: src/Module/Admin/Site.php:511
msgid ""
"Don't include the content of a post/comment/private message/etc. in the "
"email notifications that are sent out from this site, as a privacy measure."
msgstr "No incloure assumpte d'un enviament/comentari/missatge_privat/etc. Als correus electronics que envii fora d'aquest lloc, com a mesura de privacitat. "
-#: src/Module/Admin/Site.php:518
+#: src/Module/Admin/Site.php:512
msgid "Disallow public access to addons listed in the apps menu."
msgstr "Deshabilita el accés públic als complements llistats al menu d'aplicacions"
-#: src/Module/Admin/Site.php:518
+#: src/Module/Admin/Site.php:512
msgid ""
"Checking this box will restrict addons listed in the apps menu to members "
"only."
msgstr "Marcant això restringiras els complements llistats al menú d'aplicacions al membres"
-#: src/Module/Admin/Site.php:519
+#: src/Module/Admin/Site.php:513
msgid "Don't embed private images in posts"
msgstr "No incrustar imatges en missatges privats"
-#: src/Module/Admin/Site.php:519
+#: src/Module/Admin/Site.php:513
msgid ""
"Don't replace locally-hosted private photos in posts with an embedded copy "
"of the image. This means that contacts who receive posts containing private "
@@ -4826,11 +4914,11 @@ msgid ""
"while."
msgstr "No reemplaçar les fotos privades hospedades localment en missatges amb una còpia de l'imatge embeguda. Això vol dir que els contactes que rebin el missatge contenint fotos privades s'ha d'autenticar i carregar cada imatge, amb el que pot suposar bastant temps."
-#: src/Module/Admin/Site.php:520
+#: src/Module/Admin/Site.php:514
msgid "Explicit Content"
msgstr ""
-#: src/Module/Admin/Site.php:520
+#: src/Module/Admin/Site.php:514
msgid ""
"Set this to announce that your node is used mostly for explicit content that"
" might not be suited for minors. This information will be published in the "
@@ -4839,339 +4927,319 @@ msgid ""
"will be shown at the user registration page."
msgstr ""
-#: src/Module/Admin/Site.php:521
-msgid "Proxify external content"
-msgstr ""
-
-#: src/Module/Admin/Site.php:521
-msgid ""
-"Route external content via the proxy functionality. This is used for example"
-" for some OEmbed accesses and in some other rare cases."
-msgstr ""
-
-#: src/Module/Admin/Site.php:522
+#: src/Module/Admin/Site.php:515
msgid "Only local search"
msgstr ""
-#: src/Module/Admin/Site.php:522
+#: src/Module/Admin/Site.php:515
msgid ""
"Blocks search for users who are not logged in to prevent crawlers from "
"blocking your system."
msgstr ""
-#: src/Module/Admin/Site.php:523
+#: src/Module/Admin/Site.php:516
msgid "Blocked tags for trending tags"
msgstr ""
-#: src/Module/Admin/Site.php:523
+#: src/Module/Admin/Site.php:516
msgid ""
"Comma separated list of hashtags that shouldn't be displayed in the trending"
" tags."
msgstr ""
-#: src/Module/Admin/Site.php:524
+#: src/Module/Admin/Site.php:517
msgid "Cache contact avatars"
msgstr ""
-#: src/Module/Admin/Site.php:524
+#: src/Module/Admin/Site.php:517
msgid ""
"Locally store the avatar pictures of the contacts. This uses a lot of "
"storage space but it increases the performance."
msgstr ""
-#: src/Module/Admin/Site.php:525
+#: src/Module/Admin/Site.php:518
msgid "Allow Users to set remote_self"
msgstr ""
-#: src/Module/Admin/Site.php:525
+#: src/Module/Admin/Site.php:518
msgid ""
"With checking this, every user is allowed to mark every contact as a "
"remote_self in the repair contact dialog. Setting this flag on a contact "
"causes mirroring every posting of that contact in the users stream."
msgstr ""
-#: src/Module/Admin/Site.php:526
+#: src/Module/Admin/Site.php:519
msgid "Allow Users to set up relay channels"
msgstr ""
-#: src/Module/Admin/Site.php:526
+#: src/Module/Admin/Site.php:519
msgid ""
"If enabled, it is possible to create relay users that are used to reshare "
"content based on user defined channels."
msgstr ""
-#: src/Module/Admin/Site.php:527
+#: src/Module/Admin/Site.php:520
msgid "Adjust the feed poll frequency"
msgstr ""
-#: src/Module/Admin/Site.php:527
+#: src/Module/Admin/Site.php:520
msgid "Automatically detect and set the best feed poll frequency."
msgstr ""
-#: src/Module/Admin/Site.php:528
+#: src/Module/Admin/Site.php:521
msgid "Minimum poll interval"
msgstr ""
-#: src/Module/Admin/Site.php:528
+#: src/Module/Admin/Site.php:521
msgid ""
"Minimal distance in minutes between two polls for mail and feed contacts. "
"Reasonable values are between 1 and 59."
msgstr ""
-#: src/Module/Admin/Site.php:529
+#: src/Module/Admin/Site.php:522
msgid "Enable multiple registrations"
msgstr ""
-#: src/Module/Admin/Site.php:529
+#: src/Module/Admin/Site.php:522
msgid "Enable users to register additional accounts for use as pages."
msgstr ""
-#: src/Module/Admin/Site.php:530
+#: src/Module/Admin/Site.php:523
msgid "Enable OpenID"
msgstr ""
-#: src/Module/Admin/Site.php:530
+#: src/Module/Admin/Site.php:523
msgid "Enable OpenID support for registration and logins."
msgstr ""
-#: src/Module/Admin/Site.php:531
+#: src/Module/Admin/Site.php:524
msgid "Enable full name check"
msgstr ""
-#: src/Module/Admin/Site.php:531
+#: src/Module/Admin/Site.php:524
msgid ""
"Prevents users from registering with a display name with fewer than two "
"parts separated by spaces."
msgstr ""
-#: src/Module/Admin/Site.php:532
+#: src/Module/Admin/Site.php:525
msgid "Email administrators on new registration"
msgstr ""
-#: src/Module/Admin/Site.php:532
+#: src/Module/Admin/Site.php:525
msgid ""
"If enabled and the system is set to an open registration, an email for each "
"new registration is sent to the administrators."
msgstr ""
-#: src/Module/Admin/Site.php:533
+#: src/Module/Admin/Site.php:526
msgid "Community pages for visitors"
msgstr ""
-#: src/Module/Admin/Site.php:533
+#: src/Module/Admin/Site.php:526
msgid ""
"Which community pages should be available for visitors. Local users always "
"see both pages."
msgstr ""
-#: src/Module/Admin/Site.php:534
+#: src/Module/Admin/Site.php:527
msgid "Posts per user on community page"
msgstr ""
-#: src/Module/Admin/Site.php:534
+#: src/Module/Admin/Site.php:527
msgid ""
"The maximum number of posts per user on the local community page. This is "
"useful, when a single user floods the local community page."
msgstr ""
-#: src/Module/Admin/Site.php:535
+#: src/Module/Admin/Site.php:528
msgid "Posts per server on community page"
msgstr ""
-#: src/Module/Admin/Site.php:535
+#: src/Module/Admin/Site.php:528
msgid ""
"The maximum number of posts per server on the global community page. This is"
" useful, when posts from a single server flood the global community page."
msgstr ""
-#: src/Module/Admin/Site.php:537
+#: src/Module/Admin/Site.php:530
msgid "Enable Mail support"
msgstr ""
-#: src/Module/Admin/Site.php:537
+#: src/Module/Admin/Site.php:530
msgid ""
"Enable built-in mail support to poll IMAP folders and to reply via mail."
msgstr ""
-#: src/Module/Admin/Site.php:538
+#: src/Module/Admin/Site.php:531
msgid ""
"Mail support can't be enabled because the PHP IMAP module is not installed."
msgstr ""
-#: src/Module/Admin/Site.php:539
-msgid "Enable OStatus support"
-msgstr ""
-
-#: src/Module/Admin/Site.php:539
-msgid ""
-"Enable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
-"communications in OStatus are public."
-msgstr ""
-
-#: src/Module/Admin/Site.php:541
+#: src/Module/Admin/Site.php:533
msgid ""
"Diaspora support can't be enabled because Friendica was installed into a sub"
" directory."
msgstr ""
-#: src/Module/Admin/Site.php:542
+#: src/Module/Admin/Site.php:534
msgid "Enable Diaspora support"
msgstr "Habilitar suport per Diaspora"
-#: src/Module/Admin/Site.php:542
+#: src/Module/Admin/Site.php:534
msgid ""
"Enable built-in Diaspora network compatibility for communicating with "
"diaspora servers."
msgstr ""
-#: src/Module/Admin/Site.php:543
+#: src/Module/Admin/Site.php:535
msgid "Verify SSL"
msgstr "Verificar SSL"
-#: src/Module/Admin/Site.php:543
+#: src/Module/Admin/Site.php:535
msgid ""
"If you wish, you can turn on strict certificate checking. This will mean you"
" cannot connect (at all) to self-signed SSL sites."
msgstr "Si ho vols, pots comprovar el certificat estrictament. Això farà que no puguis connectar (de cap manera) amb llocs amb certificats SSL autosignats."
-#: src/Module/Admin/Site.php:544
+#: src/Module/Admin/Site.php:536
msgid "Proxy user"
msgstr "proxy d'usuari"
-#: src/Module/Admin/Site.php:544
+#: src/Module/Admin/Site.php:536
msgid "User name for the proxy server."
msgstr ""
-#: src/Module/Admin/Site.php:545
+#: src/Module/Admin/Site.php:537
msgid "Proxy URL"
msgstr "URL del proxy"
-#: src/Module/Admin/Site.php:545
+#: src/Module/Admin/Site.php:537
msgid ""
"If you want to use a proxy server that Friendica should use to connect to "
"the network, put the URL of the proxy here."
msgstr ""
-#: src/Module/Admin/Site.php:546
+#: src/Module/Admin/Site.php:538
msgid "Network timeout"
msgstr "Temps excedit a la xarxa"
-#: src/Module/Admin/Site.php:546
+#: src/Module/Admin/Site.php:538
msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
msgstr "Valor en segons. Canviat a 0 es sense límits (no recomenat)"
-#: src/Module/Admin/Site.php:547
+#: src/Module/Admin/Site.php:539
msgid "Maximum Load Average"
msgstr "Càrrega Màxima Sostinguda"
-#: src/Module/Admin/Site.php:547
+#: src/Module/Admin/Site.php:539
#, php-format
msgid ""
"Maximum system load before delivery and poll processes are deferred - "
"default %d."
msgstr ""
-#: src/Module/Admin/Site.php:548
+#: src/Module/Admin/Site.php:540
msgid "Minimal Memory"
msgstr ""
-#: src/Module/Admin/Site.php:548
+#: src/Module/Admin/Site.php:540
msgid ""
"Minimal free memory in MB for the worker. Needs access to /proc/meminfo - "
"default 0 (deactivated)."
msgstr ""
-#: src/Module/Admin/Site.php:549
+#: src/Module/Admin/Site.php:541
msgid "Periodically optimize tables"
msgstr ""
-#: src/Module/Admin/Site.php:549
+#: src/Module/Admin/Site.php:541
msgid "Periodically optimize tables like the cache and the workerqueue"
msgstr ""
-#: src/Module/Admin/Site.php:551
+#: src/Module/Admin/Site.php:543
msgid "Discover followers/followings from contacts"
msgstr ""
-#: src/Module/Admin/Site.php:551
+#: src/Module/Admin/Site.php:543
msgid ""
"If enabled, contacts are checked for their followers and following contacts."
msgstr ""
-#: src/Module/Admin/Site.php:552
+#: src/Module/Admin/Site.php:544
msgid "None - deactivated"
msgstr ""
-#: src/Module/Admin/Site.php:553
+#: src/Module/Admin/Site.php:545
msgid ""
"Local contacts - contacts of our local contacts are discovered for their "
"followers/followings."
msgstr ""
-#: src/Module/Admin/Site.php:554
+#: src/Module/Admin/Site.php:546
msgid ""
"Interactors - contacts of our local contacts and contacts who interacted on "
"locally visible postings are discovered for their followers/followings."
msgstr ""
-#: src/Module/Admin/Site.php:556
+#: src/Module/Admin/Site.php:548
msgid "Only update contacts/servers with local data"
msgstr ""
-#: src/Module/Admin/Site.php:556
+#: src/Module/Admin/Site.php:548
msgid ""
"If enabled, the system will only look for changes in contacts and servers "
"that engaged on this system by either being in a contact list of a user or "
"when posts or comments exists from the contact on this system."
msgstr ""
-#: src/Module/Admin/Site.php:557
+#: src/Module/Admin/Site.php:549
msgid "Synchronize the contacts with the directory server"
msgstr ""
-#: src/Module/Admin/Site.php:557
+#: src/Module/Admin/Site.php:549
msgid ""
"if enabled, the system will check periodically for new contacts on the "
"defined directory server."
msgstr ""
-#: src/Module/Admin/Site.php:559
+#: src/Module/Admin/Site.php:551
msgid "Discover contacts from other servers"
msgstr ""
-#: src/Module/Admin/Site.php:559
+#: src/Module/Admin/Site.php:551
msgid ""
"Periodically query other servers for contacts and servers that they know of."
" The system queries Friendica, Mastodon and Hubzilla servers. Keep it "
"deactivated on small machines to decrease the database size and load."
msgstr ""
-#: src/Module/Admin/Site.php:560
+#: src/Module/Admin/Site.php:552
msgid "Days between requery"
msgstr ""
-#: src/Module/Admin/Site.php:560
+#: src/Module/Admin/Site.php:552
msgid ""
"Number of days after which a server is requeried for their contacts and "
"servers it knows of. This is only used when the discovery is activated."
msgstr ""
-#: src/Module/Admin/Site.php:561
+#: src/Module/Admin/Site.php:553
msgid "Search the local directory"
msgstr ""
-#: src/Module/Admin/Site.php:561
+#: src/Module/Admin/Site.php:553
msgid ""
"Search the local directory instead of the global directory. When searching "
"locally, every search will be executed on the global directory in the "
"background. This improves the search results when the search is repeated."
msgstr ""
-#: src/Module/Admin/Site.php:563
+#: src/Module/Admin/Site.php:555
msgid "Publish server information"
msgstr ""
-#: src/Module/Admin/Site.php:563
+#: src/Module/Admin/Site.php:555
msgid ""
"If enabled, general server and usage data will be published. The data "
"contains the name and version of the server, number of users with public "
@@ -5179,50 +5247,50 @@ msgid ""
" href=\"http://the-federation.info/\">the-federation.info for details."
msgstr ""
-#: src/Module/Admin/Site.php:565
+#: src/Module/Admin/Site.php:557
msgid "Check upstream version"
msgstr ""
-#: src/Module/Admin/Site.php:565
+#: src/Module/Admin/Site.php:557
msgid ""
"Enables checking for new Friendica versions at github. If there is a new "
"version, you will be informed in the admin panel overview."
msgstr ""
-#: src/Module/Admin/Site.php:566
+#: src/Module/Admin/Site.php:558
msgid "Suppress Tags"
msgstr ""
-#: src/Module/Admin/Site.php:566
+#: src/Module/Admin/Site.php:558
msgid "Suppress showing a list of hashtags at the end of the posting."
msgstr ""
-#: src/Module/Admin/Site.php:567
+#: src/Module/Admin/Site.php:559
msgid "Clean database"
msgstr ""
-#: src/Module/Admin/Site.php:567
+#: src/Module/Admin/Site.php:559
msgid ""
"Remove old remote items, orphaned database records and old content from some"
" other helper tables."
msgstr ""
-#: src/Module/Admin/Site.php:568
+#: src/Module/Admin/Site.php:560
msgid "Lifespan of remote items"
msgstr ""
-#: src/Module/Admin/Site.php:568
+#: src/Module/Admin/Site.php:560
msgid ""
"When the database cleanup is enabled, this defines the days after which "
"remote items will be deleted. Own items, and marked or filed items are "
"always kept. 0 disables this behaviour."
msgstr ""
-#: src/Module/Admin/Site.php:569
+#: src/Module/Admin/Site.php:561
msgid "Lifespan of unclaimed items"
msgstr ""
-#: src/Module/Admin/Site.php:569
+#: src/Module/Admin/Site.php:561
msgid ""
"When the database cleanup is enabled, this defines the days after which "
"unclaimed remote items (mostly content from the relay) will be deleted. "
@@ -5230,175 +5298,184 @@ msgid ""
"items if set to 0."
msgstr ""
-#: src/Module/Admin/Site.php:570
+#: src/Module/Admin/Site.php:562
msgid "Lifespan of raw conversation data"
msgstr ""
-#: src/Module/Admin/Site.php:570
+#: src/Module/Admin/Site.php:562
msgid ""
-"The conversation data is used for ActivityPub and OStatus, as well as for "
-"debug purposes. It should be safe to remove it after 14 days, default is 90 "
-"days."
+"The conversation data is used for ActivityPub, as well as for debug "
+"purposes. It should be safe to remove it after 14 days, default is 90 days."
msgstr ""
-#: src/Module/Admin/Site.php:571
+#: src/Module/Admin/Site.php:563
msgid "Maximum numbers of comments per post"
msgstr ""
-#: src/Module/Admin/Site.php:571
+#: src/Module/Admin/Site.php:563
msgid "How much comments should be shown for each post? Default value is 100."
msgstr ""
-#: src/Module/Admin/Site.php:572
+#: src/Module/Admin/Site.php:564
msgid "Maximum numbers of comments per post on the display page"
msgstr ""
-#: src/Module/Admin/Site.php:572
+#: src/Module/Admin/Site.php:564
msgid ""
"How many comments should be shown on the single view for each post? Default "
"value is 1000."
msgstr ""
-#: src/Module/Admin/Site.php:573
+#: src/Module/Admin/Site.php:565
msgid "Items per page"
msgstr ""
-#: src/Module/Admin/Site.php:573
+#: src/Module/Admin/Site.php:565
msgid ""
"Number of items per page in stream pages (network, community, "
"profile/contact statuses, search)."
msgstr ""
-#: src/Module/Admin/Site.php:574
+#: src/Module/Admin/Site.php:566
msgid "Items per page for mobile devices"
msgstr ""
-#: src/Module/Admin/Site.php:574
+#: src/Module/Admin/Site.php:566
msgid ""
"Number of items per page in stream pages (network, community, "
"profile/contact statuses, search) for mobile devices."
msgstr ""
-#: src/Module/Admin/Site.php:575
+#: src/Module/Admin/Site.php:567
msgid "Temp path"
msgstr "Camí a carpeta temporal"
-#: src/Module/Admin/Site.php:575
+#: src/Module/Admin/Site.php:567
msgid ""
"If you have a restricted system where the webserver can't access the system "
"temp path, enter another path here."
msgstr ""
-#: src/Module/Admin/Site.php:576
+#: src/Module/Admin/Site.php:568
msgid "Only search in tags"
msgstr ""
-#: src/Module/Admin/Site.php:576
+#: src/Module/Admin/Site.php:568
msgid "On large systems the text search can slow down the system extremely."
msgstr ""
-#: src/Module/Admin/Site.php:577
+#: src/Module/Admin/Site.php:569
+msgid "Limited search scope"
+msgstr ""
+
+#: src/Module/Admin/Site.php:569
+msgid ""
+"If enabled, searches will only be performed in the data used for the "
+"channels and not in all posts."
+msgstr ""
+
+#: src/Module/Admin/Site.php:570
msgid "Maximum age of items in the search table"
msgstr ""
-#: src/Module/Admin/Site.php:577
+#: src/Module/Admin/Site.php:570
msgid ""
"Maximum age of items in the search table in days. Lower values will increase"
" the performance and reduce disk usage. 0 means no age restriction."
msgstr ""
-#: src/Module/Admin/Site.php:578
+#: src/Module/Admin/Site.php:571
msgid "Generate counts per contact circle when calculating network count"
msgstr ""
-#: src/Module/Admin/Site.php:578
+#: src/Module/Admin/Site.php:571
msgid ""
"On systems with users that heavily use contact circles the query can be very"
" expensive."
msgstr ""
-#: src/Module/Admin/Site.php:579
+#: src/Module/Admin/Site.php:572
msgid "Process \"view\" activities"
msgstr ""
-#: src/Module/Admin/Site.php:579
+#: src/Module/Admin/Site.php:572
msgid ""
"\"view\" activities are mostly geberated by Peertube systems. Per default "
"they are not processed for performance reasons. Only activate this option on"
" performant system."
msgstr ""
-#: src/Module/Admin/Site.php:580
+#: src/Module/Admin/Site.php:573
msgid "Days, after which a contact is archived"
msgstr ""
-#: src/Module/Admin/Site.php:580
+#: src/Module/Admin/Site.php:573
msgid ""
"Number of days that we try to deliver content or to update the contact data "
"before we archive a contact."
msgstr ""
-#: src/Module/Admin/Site.php:582
+#: src/Module/Admin/Site.php:575
msgid "Maximum number of parallel workers"
msgstr ""
-#: src/Module/Admin/Site.php:582
+#: src/Module/Admin/Site.php:575
#, php-format
msgid ""
"On shared hosters set this to %d. On larger systems, values of %d are great."
" Default value is %d."
msgstr ""
-#: src/Module/Admin/Site.php:583
+#: src/Module/Admin/Site.php:576
msgid "Maximum load for workers"
msgstr ""
-#: src/Module/Admin/Site.php:583
+#: src/Module/Admin/Site.php:576
msgid "Maximum load that causes a cooldown before each worker function call."
msgstr ""
-#: src/Module/Admin/Site.php:584
+#: src/Module/Admin/Site.php:577
msgid "Enable fastlane"
msgstr ""
-#: src/Module/Admin/Site.php:584
+#: src/Module/Admin/Site.php:577
msgid ""
"When enabed, the fastlane mechanism starts an additional worker if processes"
" with higher priority are blocked by processes of lower priority."
msgstr ""
-#: src/Module/Admin/Site.php:585
+#: src/Module/Admin/Site.php:578
msgid "Decoupled receiver"
msgstr ""
-#: src/Module/Admin/Site.php:585
+#: src/Module/Admin/Site.php:578
msgid ""
"Decouple incoming ActivityPub posts by processing them in the background via"
" a worker process. Only enable this on fast systems."
msgstr ""
-#: src/Module/Admin/Site.php:586
+#: src/Module/Admin/Site.php:579
msgid "Cron interval"
msgstr ""
-#: src/Module/Admin/Site.php:586
+#: src/Module/Admin/Site.php:579
msgid "Minimal period in minutes between two calls of the \"Cron\" worker job."
msgstr ""
-#: src/Module/Admin/Site.php:587
+#: src/Module/Admin/Site.php:580
msgid "Worker defer limit"
msgstr ""
-#: src/Module/Admin/Site.php:587
+#: src/Module/Admin/Site.php:580
msgid ""
"Per default the systems tries delivering for 15 times before dropping it."
msgstr ""
-#: src/Module/Admin/Site.php:588
+#: src/Module/Admin/Site.php:581
msgid "Worker fetch limit"
msgstr ""
-#: src/Module/Admin/Site.php:588
+#: src/Module/Admin/Site.php:581
msgid ""
"Number of worker tasks that are fetched in a single query. Higher values "
"should increase the performance, too high values will mostly likely decrease"
@@ -5406,214 +5483,214 @@ msgid ""
"system."
msgstr ""
-#: src/Module/Admin/Site.php:590
+#: src/Module/Admin/Site.php:583
msgid "Direct relay transfer"
msgstr ""
-#: src/Module/Admin/Site.php:590
+#: src/Module/Admin/Site.php:583
msgid ""
"Enables the direct transfer to other servers without using the relay servers"
msgstr ""
-#: src/Module/Admin/Site.php:591
+#: src/Module/Admin/Site.php:584
msgid "Relay scope"
msgstr ""
-#: src/Module/Admin/Site.php:591
+#: src/Module/Admin/Site.php:584
msgid ""
"Can be \"all\" or \"tags\". \"all\" means that every public post should be "
"received. \"tags\" means that only posts with selected tags should be "
"received."
msgstr ""
-#: src/Module/Admin/Site.php:591 src/Module/Contact/Profile.php:309
-#: src/Module/Settings/TwoFactor/Index.php:146
+#: src/Module/Admin/Site.php:584 src/Module/Contact/Profile.php:314
+#: src/Module/Settings/TwoFactor/Index.php:132
msgid "Disabled"
msgstr ""
-#: src/Module/Admin/Site.php:591
+#: src/Module/Admin/Site.php:584
msgid "all"
msgstr ""
-#: src/Module/Admin/Site.php:591
+#: src/Module/Admin/Site.php:584
msgid "tags"
msgstr ""
-#: src/Module/Admin/Site.php:592
+#: src/Module/Admin/Site.php:585
msgid "Server tags"
msgstr ""
-#: src/Module/Admin/Site.php:592
+#: src/Module/Admin/Site.php:585
msgid "Comma separated list of tags for the \"tags\" subscription."
msgstr ""
-#: src/Module/Admin/Site.php:593
+#: src/Module/Admin/Site.php:586
msgid "Deny Server tags"
msgstr ""
-#: src/Module/Admin/Site.php:593
+#: src/Module/Admin/Site.php:586
msgid "Comma separated list of tags that are rejected."
msgstr ""
-#: src/Module/Admin/Site.php:594
+#: src/Module/Admin/Site.php:587
msgid "Maximum amount of tags"
msgstr ""
-#: src/Module/Admin/Site.php:594
+#: src/Module/Admin/Site.php:587
msgid ""
"Maximum amount of tags in a post before it is rejected as spam. The post has"
" to contain at least one link. Posts from subscribed accounts will not be "
"rejected."
msgstr ""
-#: src/Module/Admin/Site.php:595
+#: src/Module/Admin/Site.php:588
msgid "Allow user tags"
msgstr ""
-#: src/Module/Admin/Site.php:595
+#: src/Module/Admin/Site.php:588
msgid ""
"If enabled, the tags from the saved searches will used for the \"tags\" "
"subscription in addition to the \"relay_server_tags\"."
msgstr ""
-#: src/Module/Admin/Site.php:596
+#: src/Module/Admin/Site.php:589
msgid "Deny undetected languages"
msgstr ""
-#: src/Module/Admin/Site.php:596
+#: src/Module/Admin/Site.php:589
msgid "If enabled, posts with undetected languages will be rejected."
msgstr ""
-#: src/Module/Admin/Site.php:597
+#: src/Module/Admin/Site.php:590
msgid "Language Quality"
msgstr ""
-#: src/Module/Admin/Site.php:597
+#: src/Module/Admin/Site.php:590
msgid "The minimum language quality that is required to accept the post."
msgstr ""
-#: src/Module/Admin/Site.php:598
+#: src/Module/Admin/Site.php:591
msgid "Number of languages for the language detection"
msgstr ""
-#: src/Module/Admin/Site.php:598
+#: src/Module/Admin/Site.php:591
msgid ""
"The system detects a list of languages per post. Only if the desired "
"languages are in the list, the message will be accepted. The higher the "
"number, the more posts will be falsely detected."
msgstr ""
-#: src/Module/Admin/Site.php:600
+#: src/Module/Admin/Site.php:593
msgid "Maximum age of channel"
msgstr ""
-#: src/Module/Admin/Site.php:600
+#: src/Module/Admin/Site.php:593
msgid ""
"This defines the maximum age in hours of items that should be displayed in "
"channels. This affects the channel performance."
msgstr ""
-#: src/Module/Admin/Site.php:601
+#: src/Module/Admin/Site.php:594
msgid "Maximum number of channel posts"
msgstr ""
-#: src/Module/Admin/Site.php:601
+#: src/Module/Admin/Site.php:594
msgid ""
"For performance reasons, the channels use a dedicated table to store "
"content. The higher the value the slower the channels."
msgstr ""
-#: src/Module/Admin/Site.php:602
+#: src/Module/Admin/Site.php:595
msgid "Interaction score days"
msgstr ""
-#: src/Module/Admin/Site.php:602
+#: src/Module/Admin/Site.php:595
msgid "Number of days that are used to calculate the interaction score."
msgstr ""
-#: src/Module/Admin/Site.php:603
+#: src/Module/Admin/Site.php:596
msgid "Maximum number of posts per author"
msgstr ""
-#: src/Module/Admin/Site.php:603
+#: src/Module/Admin/Site.php:596
msgid ""
"Maximum number of posts per page by author if the contact frequency is set "
"to \"Display only few posts\". If there are more posts, then the post with "
"the most interactions will be displayed."
msgstr ""
-#: src/Module/Admin/Site.php:604
+#: src/Module/Admin/Site.php:597
msgid "Sharer interaction days"
msgstr ""
-#: src/Module/Admin/Site.php:604
+#: src/Module/Admin/Site.php:597
msgid ""
"Number of days of the last interaction that are used to define which sharers"
" are used for the \"sharers of sharers\" channel."
msgstr ""
-#: src/Module/Admin/Site.php:607
+#: src/Module/Admin/Site.php:600
msgid "Start Relocation"
msgstr ""
-#: src/Module/Admin/Storage.php:46
+#: src/Module/Admin/Storage.php:32
#, php-format
msgid "Storage backend, %s is invalid."
msgstr ""
-#: src/Module/Admin/Storage.php:73
+#: src/Module/Admin/Storage.php:59
#, php-format
msgid "Storage backend %s error: %s"
msgstr ""
-#: src/Module/Admin/Storage.php:84 src/Module/Admin/Storage.php:87
+#: src/Module/Admin/Storage.php:70 src/Module/Admin/Storage.php:73
msgid "Invalid storage backend setting value."
msgstr ""
-#: src/Module/Admin/Storage.php:139
+#: src/Module/Admin/Storage.php:125
msgid "Current Storage Backend"
msgstr ""
-#: src/Module/Admin/Storage.php:140
+#: src/Module/Admin/Storage.php:126
msgid "Storage Configuration"
msgstr ""
-#: src/Module/Admin/Storage.php:141 src/Module/BaseAdmin.php:91
+#: src/Module/Admin/Storage.php:127 src/Module/BaseAdmin.php:77
msgid "Storage"
msgstr ""
-#: src/Module/Admin/Storage.php:143
+#: src/Module/Admin/Storage.php:129
msgid "Save & Use storage backend"
msgstr ""
-#: src/Module/Admin/Storage.php:144
+#: src/Module/Admin/Storage.php:130
msgid "Use storage backend"
msgstr ""
-#: src/Module/Admin/Storage.php:145
+#: src/Module/Admin/Storage.php:131
msgid "Save & Reload"
msgstr ""
-#: src/Module/Admin/Storage.php:146
+#: src/Module/Admin/Storage.php:132
msgid "This backend doesn't have custom settings"
msgstr ""
-#: src/Module/Admin/Storage.php:148
+#: src/Module/Admin/Storage.php:134
msgid ""
"Changing the current backend is prohibited because it is set by an "
"environment variable"
msgstr ""
-#: src/Module/Admin/Storage.php:150
+#: src/Module/Admin/Storage.php:136
msgid "Database (legacy)"
msgstr ""
-#: src/Module/Admin/Summary.php:55
+#: src/Module/Admin/Summary.php:41
#, php-format
msgid "Template engine (%s) error: %s"
msgstr ""
-#: src/Module/Admin/Summary.php:59
+#: src/Module/Admin/Summary.php:45
#, php-format
msgid ""
"Your DB still runs with MyISAM tables. You should change the engine type to "
@@ -5624,7 +5701,7 @@ msgid ""
" an automatic conversion.The server domain pattern syntax is case-insensitive shell wildcard, comprising the following special characters:
\n" "This file can be downloaded from the /friendica
path of any "
"Friendica server.
debug.store_source
config key is set in "
"config/local.config.php
for future items to have sources."
msgstr ""
-#: src/Module/Moderation/Item/Source.php:92
+#: src/Module/Moderation/Item/Source.php:84
msgid "Item Guid"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:95
+#: src/Module/Moderation/Report/Create.php:81
msgid "Contact not found or their server is already blocked on this node."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:136
+#: src/Module/Moderation/Report/Create.php:122
msgid "Please login to access this page."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:165
-#: src/Module/Moderation/Report/Create.php:180
-#: src/Module/Moderation/Report/Create.php:208
-#: src/Module/Moderation/Report/Create.php:260
-#: src/Module/Moderation/Report/Create.php:279
+#: src/Module/Moderation/Report/Create.php:151
+#: src/Module/Moderation/Report/Create.php:166
+#: src/Module/Moderation/Report/Create.php:194
+#: src/Module/Moderation/Report/Create.php:246
+#: src/Module/Moderation/Report/Create.php:265
msgid "Create Moderation Report"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:166
+#: src/Module/Moderation/Report/Create.php:152
msgid "Pick Contact"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:167
+#: src/Module/Moderation/Report/Create.php:153
msgid ""
"Please enter below the contact address or profile URL you would like to "
"create a moderation report about."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:171
+#: src/Module/Moderation/Report/Create.php:157
msgid "Contact address/URL"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:181
+#: src/Module/Moderation/Report/Create.php:167
msgid "Pick Category"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:182
+#: src/Module/Moderation/Report/Create.php:168
msgid "Please pick below the category of your report."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:186
-#: src/Module/Moderation/Report/Create.php:311
+#: src/Module/Moderation/Report/Create.php:172
+#: src/Module/Moderation/Report/Create.php:297
msgid "Spam"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:186
+#: src/Module/Moderation/Report/Create.php:172
msgid ""
"This contact is publishing many repeated/overly long posts/replies or "
"advertising their product/websites in otherwise irrelevant conversations."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:187
-#: src/Module/Moderation/Report/Create.php:312
+#: src/Module/Moderation/Report/Create.php:173
+#: src/Module/Moderation/Report/Create.php:298
msgid "Illegal Content"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:187
+#: src/Module/Moderation/Report/Create.php:173
msgid ""
"This contact is publishing content that is considered illegal in this node's"
" hosting juridiction."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:188
-#: src/Module/Moderation/Report/Create.php:313
+#: src/Module/Moderation/Report/Create.php:174
+#: src/Module/Moderation/Report/Create.php:299
msgid "Community Safety"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:188
+#: src/Module/Moderation/Report/Create.php:174
msgid ""
"This contact aggravated you or other people, by being provocative or "
"insensitive, intentionally or not. This includes disclosing people's private"
@@ -8384,12 +8457,12 @@ msgid ""
"replies."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:189
-#: src/Module/Moderation/Report/Create.php:314
+#: src/Module/Moderation/Report/Create.php:175
+#: src/Module/Moderation/Report/Create.php:300
msgid "Unwanted Content/Behavior"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:189
+#: src/Module/Moderation/Report/Create.php:175
msgid ""
"This contact has repeatedly published content irrelevant to the node's theme"
" or is openly criticizing the node's administration/moderation without "
@@ -8397,89 +8470,89 @@ msgid ""
"nitpicking on a sensitive topic."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:190
-#: src/Module/Moderation/Report/Create.php:315
+#: src/Module/Moderation/Report/Create.php:176
+#: src/Module/Moderation/Report/Create.php:301
msgid "Rules Violation"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:190
+#: src/Module/Moderation/Report/Create.php:176
msgid ""
"This contact violated one or more rules of this node. You will be able to "
"pick which one(s) in the next step."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:191
+#: src/Module/Moderation/Report/Create.php:177
msgid ""
"Please elaborate below why you submitted this report. The more details you "
"provide, the better your report can be handled."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:193
+#: src/Module/Moderation/Report/Create.php:179
msgid "Additional Information"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:193
+#: src/Module/Moderation/Report/Create.php:179
msgid ""
"Please provide any additional information relevant to this particular "
"report. You will be able to attach posts by this contact in the next step, "
"but any context is welcome."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:209
+#: src/Module/Moderation/Report/Create.php:195
msgid "Pick Rules"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:210
+#: src/Module/Moderation/Report/Create.php:196
msgid "Please pick below the node rules you believe this contact violated."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:261
+#: src/Module/Moderation/Report/Create.php:247
msgid "Pick Posts"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:262
+#: src/Module/Moderation/Report/Create.php:248
msgid "Please optionally pick posts to attach to your report."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:281
+#: src/Module/Moderation/Report/Create.php:267
msgid "Submit Report"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:282
+#: src/Module/Moderation/Report/Create.php:268
msgid "Further Action"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:283
+#: src/Module/Moderation/Report/Create.php:269
msgid ""
"You can also perform one of the following action on the contact you "
"reported:"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:291
+#: src/Module/Moderation/Report/Create.php:277
msgid "Nothing"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:292
+#: src/Module/Moderation/Report/Create.php:278
msgid "Collapse contact"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:292
+#: src/Module/Moderation/Report/Create.php:278
msgid ""
"Their posts and replies will keep appearing in your Network page but their "
"content will be collapsed by default."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:293
+#: src/Module/Moderation/Report/Create.php:279
msgid ""
"Their posts won't appear in your Network page anymore, but their replies can"
" appear in forum threads. They still can follow you."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:294
+#: src/Module/Moderation/Report/Create.php:280
msgid "Block contact"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:294
+#: src/Module/Moderation/Report/Create.php:280
msgid ""
"Their posts won't appear in your Network page anymore, but their replies can"
" appear in forum threads, with their content collapsed by default. They "
@@ -8487,723 +8560,694 @@ msgid ""
"means."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:297
+#: src/Module/Moderation/Report/Create.php:283
msgid "Forward report"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:297
+#: src/Module/Moderation/Report/Create.php:283
msgid "Would you ike to forward this report to the remote server?"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:330
+#: src/Module/Moderation/Report/Create.php:316
msgid "1. Pick a contact"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:331
+#: src/Module/Moderation/Report/Create.php:317
msgid "2. Pick a category"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:332
+#: src/Module/Moderation/Report/Create.php:318
msgid "2a. Pick rules"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:333
+#: src/Module/Moderation/Report/Create.php:319
msgid "2b. Add comment"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:334
+#: src/Module/Moderation/Report/Create.php:320
msgid "3. Pick posts"
msgstr ""
-#: src/Module/Moderation/Reports.php:90
+#: src/Module/Moderation/Reports.php:97
msgid "List of reports"
msgstr ""
-#: src/Module/Moderation/Reports.php:91
+#: src/Module/Moderation/Reports.php:98
msgid "This page display reports created by our or remote users."
msgstr ""
-#: src/Module/Moderation/Reports.php:92
+#: src/Module/Moderation/Reports.php:99
msgid "No report exists at this node."
msgstr ""
-#: src/Module/Moderation/Reports.php:95
+#: src/Module/Moderation/Reports.php:102
msgid "Category"
msgstr ""
-#: src/Module/Moderation/Reports.php:101
+#: src/Module/Moderation/Reports.php:106
#, php-format
msgid "%s total report"
msgid_plural "%s total reports"
msgstr[0] ""
msgstr[1] ""
-#: src/Module/Moderation/Reports.php:104
+#: src/Module/Moderation/Reports.php:109
msgid "URL of the reported contact."
msgstr ""
-#: src/Module/Moderation/Summary.php:57 src/Module/Settings/Account.php:431
+#: src/Module/Moderation/Summary.php:43 src/Module/Settings/Account.php:422
msgid "Channel Relay"
msgstr ""
-#: src/Module/Moderation/Summary.php:77
+#: src/Module/Moderation/Summary.php:63
msgid "Registered users"
msgstr "Usuaris registrats"
-#: src/Module/Moderation/Summary.php:79
+#: src/Module/Moderation/Summary.php:65
msgid "Pending registrations"
msgstr "Registres d'usuari pendents"
-#: src/Module/Moderation/Users/Active.php:43
-#: src/Module/Moderation/Users/Index.php:43
+#: src/Module/Moderation/Users/Active.php:29
+#: src/Module/Moderation/Users/Index.php:29
#, php-format
msgid "%s user blocked"
msgid_plural "%s users blocked"
msgstr[0] ""
msgstr[1] ""
-#: src/Module/Moderation/Users/Active.php:51
-#: src/Module/Moderation/Users/Active.php:85
-#: src/Module/Moderation/Users/Blocked.php:51
-#: src/Module/Moderation/Users/Blocked.php:85
-#: src/Module/Moderation/Users/Index.php:58
-#: src/Module/Moderation/Users/Index.php:92
+#: src/Module/Moderation/Users/Active.php:37
+#: src/Module/Moderation/Users/Active.php:71
+#: src/Module/Moderation/Users/Blocked.php:37
+#: src/Module/Moderation/Users/Blocked.php:71
+#: src/Module/Moderation/Users/Index.php:44
+#: src/Module/Moderation/Users/Index.php:78
msgid "You can't remove yourself"
msgstr ""
-#: src/Module/Moderation/Users/Active.php:55
-#: src/Module/Moderation/Users/Blocked.php:55
-#: src/Module/Moderation/Users/Index.php:62
+#: src/Module/Moderation/Users/Active.php:41
+#: src/Module/Moderation/Users/Blocked.php:41
+#: src/Module/Moderation/Users/Index.php:48
#, php-format
msgid "%s user deleted"
msgid_plural "%s users deleted"
msgstr[0] "%s usuari esborrat"
msgstr[1] "%s usuaris esborrats"
-#: src/Module/Moderation/Users/Active.php:83
-#: src/Module/Moderation/Users/Blocked.php:83
-#: src/Module/Moderation/Users/Index.php:90
+#: src/Module/Moderation/Users/Active.php:69
+#: src/Module/Moderation/Users/Blocked.php:69
+#: src/Module/Moderation/Users/Index.php:76
#, php-format
msgid "User \"%s\" deleted"
msgstr ""
-#: src/Module/Moderation/Users/Active.php:93
-#: src/Module/Moderation/Users/Index.php:100
+#: src/Module/Moderation/Users/Active.php:79
+#: src/Module/Moderation/Users/Index.php:86
#, php-format
msgid "User \"%s\" blocked"
msgstr ""
-#: src/Module/Moderation/Users/Active.php:126
-#: src/Module/Moderation/Users/Blocked.php:126
-#: src/Module/Moderation/Users/Deleted.php:83
-#: src/Module/Moderation/Users/Index.php:140
-#: src/Module/Moderation/Users/Index.php:160
+#: src/Module/Moderation/Users/Active.php:112
+#: src/Module/Moderation/Users/Blocked.php:112
+#: src/Module/Moderation/Users/Deleted.php:69
+#: src/Module/Moderation/Users/Index.php:126
+#: src/Module/Moderation/Users/Index.php:146
msgid "Register date"
msgstr "Data de registre"
-#: src/Module/Moderation/Users/Active.php:126
-#: src/Module/Moderation/Users/Blocked.php:126
-#: src/Module/Moderation/Users/Deleted.php:83
-#: src/Module/Moderation/Users/Index.php:140
-#: src/Module/Moderation/Users/Index.php:160
+#: src/Module/Moderation/Users/Active.php:112
+#: src/Module/Moderation/Users/Blocked.php:112
+#: src/Module/Moderation/Users/Deleted.php:69
+#: src/Module/Moderation/Users/Index.php:126
+#: src/Module/Moderation/Users/Index.php:146
msgid "Last login"
msgstr "Últim accés"
-#: src/Module/Moderation/Users/Active.php:126
-#: src/Module/Moderation/Users/Blocked.php:126
-#: src/Module/Moderation/Users/Deleted.php:83
-#: src/Module/Moderation/Users/Index.php:140
-#: src/Module/Moderation/Users/Index.php:160
+#: src/Module/Moderation/Users/Active.php:112
+#: src/Module/Moderation/Users/Blocked.php:112
+#: src/Module/Moderation/Users/Deleted.php:69
+#: src/Module/Moderation/Users/Index.php:126
+#: src/Module/Moderation/Users/Index.php:146
msgid "Last public item"
msgstr ""
-#: src/Module/Moderation/Users/Active.php:134
+#: src/Module/Moderation/Users/Active.php:120
msgid "Active Accounts"
msgstr ""
-#: src/Module/Moderation/Users/Active.php:138
-#: src/Module/Moderation/Users/Blocked.php:137
-#: src/Module/Moderation/Users/Index.php:153
+#: src/Module/Moderation/Users/Active.php:124
+#: src/Module/Moderation/Users/Blocked.php:123
+#: src/Module/Moderation/Users/Index.php:139
msgid "User blocked"
msgstr ""
-#: src/Module/Moderation/Users/Active.php:139
-#: src/Module/Moderation/Users/Blocked.php:139
-#: src/Module/Moderation/Users/Index.php:155
+#: src/Module/Moderation/Users/Active.php:125
+#: src/Module/Moderation/Users/Blocked.php:125
+#: src/Module/Moderation/Users/Index.php:141
msgid "Site admin"
msgstr "Administrador del lloc"
-#: src/Module/Moderation/Users/Active.php:140
-#: src/Module/Moderation/Users/Blocked.php:140
-#: src/Module/Moderation/Users/Index.php:156
+#: src/Module/Moderation/Users/Active.php:126
+#: src/Module/Moderation/Users/Blocked.php:126
+#: src/Module/Moderation/Users/Index.php:142
msgid "Account expired"
msgstr "Compte expirat"
-#: src/Module/Moderation/Users/Active.php:141
-#: src/Module/Moderation/Users/Index.php:159
+#: src/Module/Moderation/Users/Active.php:127
+#: src/Module/Moderation/Users/Index.php:145
msgid "Create a new user"
msgstr ""
-#: src/Module/Moderation/Users/Active.php:147
-#: src/Module/Moderation/Users/Blocked.php:146
-#: src/Module/Moderation/Users/Index.php:165
+#: src/Module/Moderation/Users/Active.php:133
+#: src/Module/Moderation/Users/Blocked.php:132
+#: src/Module/Moderation/Users/Index.php:151
msgid ""
"Selected users will be deleted!\\n\\nEverything these users had posted on "
"this site will be permanently deleted!\\n\\nAre you sure?"
msgstr "Els usuaris seleccionats seran esborrats!\\n\\nqualsevol cosa que aquests usuaris hagin publicat en aquest lloc s'esborrarà!\\n\\nEsteu segur?"
-#: src/Module/Moderation/Users/Active.php:148
-#: src/Module/Moderation/Users/Blocked.php:147
-#: src/Module/Moderation/Users/Index.php:166
+#: src/Module/Moderation/Users/Active.php:134
+#: src/Module/Moderation/Users/Blocked.php:133
+#: src/Module/Moderation/Users/Index.php:152
msgid ""
"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
"site will be permanently deleted!\\n\\nAre you sure?"
msgstr "L'usuari {0} s'eliminarà!\\n\\nQualsevol cosa que aquest usuari hagi publicat en aquest lloc s'esborrarà!\\n\\nEsteu segur?"
-#: src/Module/Moderation/Users/Blocked.php:43
-#: src/Module/Moderation/Users/Index.php:50
+#: src/Module/Moderation/Users/Blocked.php:29
+#: src/Module/Moderation/Users/Index.php:36
#, php-format
msgid "%s user unblocked"
msgid_plural "%s users unblocked"
msgstr[0] ""
msgstr[1] ""
-#: src/Module/Moderation/Users/Blocked.php:92
-#: src/Module/Moderation/Users/Index.php:106
+#: src/Module/Moderation/Users/Blocked.php:78
+#: src/Module/Moderation/Users/Index.php:92
#, php-format
msgid "User \"%s\" unblocked"
msgstr ""
-#: src/Module/Moderation/Users/Blocked.php:134
+#: src/Module/Moderation/Users/Blocked.php:120
msgid "Blocked Users"
msgstr ""
-#: src/Module/Moderation/Users/Create.php:62
+#: src/Module/Moderation/Users/Create.php:48
msgid "New User"
msgstr ""
-#: src/Module/Moderation/Users/Create.php:63
+#: src/Module/Moderation/Users/Create.php:49
msgid "Add User"
msgstr ""
-#: src/Module/Moderation/Users/Create.php:70
+#: src/Module/Moderation/Users/Create.php:56
msgid "Name of the new user."
msgstr ""
-#: src/Module/Moderation/Users/Create.php:71
+#: src/Module/Moderation/Users/Create.php:57
msgid "Nickname"
msgstr ""
-#: src/Module/Moderation/Users/Create.php:71
+#: src/Module/Moderation/Users/Create.php:57
msgid "Nickname of the new user."
msgstr ""
-#: src/Module/Moderation/Users/Create.php:72
+#: src/Module/Moderation/Users/Create.php:58
msgid "Email address of the new user."
msgstr ""
-#: src/Module/Moderation/Users/Deleted.php:81
+#: src/Module/Moderation/Users/Deleted.php:67
msgid "Users awaiting permanent deletion"
msgstr ""
-#: src/Module/Moderation/Users/Deleted.php:83
-#: src/Module/Moderation/Users/Index.php:160
+#: src/Module/Moderation/Users/Deleted.php:69
+#: src/Module/Moderation/Users/Index.php:146
msgid "Permanent deletion"
msgstr ""
-#: src/Module/Moderation/Users/Index.php:150
+#: src/Module/Moderation/Users/Index.php:136
msgid "User waiting for permanent deletion"
msgstr ""
-#: src/Module/Moderation/Users/Pending.php:44
+#: src/Module/Moderation/Users/Pending.php:30
#, php-format
msgid "%s user approved"
msgid_plural "%s users approved"
msgstr[0] ""
msgstr[1] ""
-#: src/Module/Moderation/Users/Pending.php:51
+#: src/Module/Moderation/Users/Pending.php:37
#, php-format
msgid "%s registration revoked"
msgid_plural "%s registrations revoked"
msgstr[0] ""
msgstr[1] ""
-#: src/Module/Moderation/Users/Pending.php:76
+#: src/Module/Moderation/Users/Pending.php:62
msgid "Account approved."
msgstr "Compte aprovat."
-#: src/Module/Moderation/Users/Pending.php:82
+#: src/Module/Moderation/Users/Pending.php:68
msgid "Registration revoked"
msgstr ""
-#: src/Module/Moderation/Users/Pending.php:97
+#: src/Module/Moderation/Users/Pending.php:83
msgid "User registrations awaiting review"
msgstr ""
-#: src/Module/Moderation/Users/Pending.php:99
+#: src/Module/Moderation/Users/Pending.php:85
msgid "Request date"
msgstr "Data de sol·licitud"
-#: src/Module/Moderation/Users/Pending.php:100
+#: src/Module/Moderation/Users/Pending.php:86
msgid "No registrations."
msgstr "Sense registres."
-#: src/Module/Moderation/Users/Pending.php:101
+#: src/Module/Moderation/Users/Pending.php:87
msgid "Note from the user"
msgstr ""
-#: src/Module/Moderation/Users/Pending.php:103
+#: src/Module/Moderation/Users/Pending.php:89
msgid "Deny"
msgstr "Denegar"
-#: src/Module/Notifications/Introductions.php:99
+#: src/Module/Notifications/Introductions.php:91
msgid "Show Ignored Requests"
msgstr "Mostra les Sol·licituds Ignorades"
-#: src/Module/Notifications/Introductions.php:99
+#: src/Module/Notifications/Introductions.php:91
msgid "Hide Ignored Requests"
msgstr "Amaga les Sol·licituds Ignorades"
-#: src/Module/Notifications/Introductions.php:115
-#: src/Module/Notifications/Introductions.php:178
+#: src/Module/Notifications/Introductions.php:107
+#: src/Module/Notifications/Introductions.php:170
msgid "Notification type:"
msgstr ""
-#: src/Module/Notifications/Introductions.php:118
+#: src/Module/Notifications/Introductions.php:110
msgid "Suggested by:"
msgstr ""
-#: src/Module/Notifications/Introductions.php:143
+#: src/Module/Notifications/Introductions.php:135
msgid "Claims to be known to you: "
msgstr "Diu que et coneix:"
#: src/Module/Notifications/Introductions.php:144
-#: src/Module/OAuth/Acknowledge.php:55 src/Module/Register.php:131
-#: src/Module/Settings/TwoFactor/Trusted.php:129
-msgid "No"
-msgstr "No"
-
-#: src/Module/Notifications/Introductions.php:152
msgid "Shall your connection be bidirectional or not?"
msgstr ""
-#: src/Module/Notifications/Introductions.php:153
+#: src/Module/Notifications/Introductions.php:145
#, php-format
msgid ""
"Accepting %s as a friend allows %s to subscribe to your posts, and you will "
"also receive updates from them in your news feed."
msgstr ""
-#: src/Module/Notifications/Introductions.php:154
+#: src/Module/Notifications/Introductions.php:146
#, php-format
msgid ""
"Accepting %s as a subscriber allows them to subscribe to your posts, but you"
" will not receive updates from them in your news feed."
msgstr ""
-#: src/Module/Notifications/Introductions.php:156
+#: src/Module/Notifications/Introductions.php:148
msgid "Friend"
msgstr "Amic"
-#: src/Module/Notifications/Introductions.php:157
+#: src/Module/Notifications/Introductions.php:149
msgid "Subscriber"
msgstr ""
-#: src/Module/Notifications/Introductions.php:216
+#: src/Module/Notifications/Introductions.php:208
msgid "No introductions."
msgstr "Sense presentacions."
-#: src/Module/Notifications/Introductions.php:217
-#: src/Module/Notifications/Notifications.php:135
+#: src/Module/Notifications/Introductions.php:209
+#: src/Module/Notifications/Notifications.php:127
#, php-format
msgid "No more %s notifications."
msgstr ""
-#: src/Module/Notifications/Notification.php:135
+#: src/Module/Notifications/Notification.php:121
msgid "You must be logged in to show this page."
msgstr ""
-#: src/Module/Notifications/Notifications.php:66
+#: src/Module/Notifications/Notifications.php:52
msgid "Network Notifications"
msgstr "Notificacions de la Xarxa"
-#: src/Module/Notifications/Notifications.php:72
+#: src/Module/Notifications/Notifications.php:58
msgid "System Notifications"
msgstr "Notificacions del Sistema"
-#: src/Module/Notifications/Notifications.php:78
+#: src/Module/Notifications/Notifications.php:64
msgid "Personal Notifications"
msgstr "Notificacions Personals"
-#: src/Module/Notifications/Notifications.php:84
+#: src/Module/Notifications/Notifications.php:70
msgid "Home Notifications"
msgstr "Notificacions d'Inici"
-#: src/Module/Notifications/Notifications.php:140
+#: src/Module/Notifications/Notifications.php:132
msgid "Show unread"
msgstr ""
-#: src/Module/Notifications/Ping.php:246
+#: src/Module/Notifications/Ping.php:206
msgid "{0} requested registration"
msgstr "{0} solicituts de registre"
-#: src/Module/Notifications/Ping.php:255
+#: src/Module/Notifications/Ping.php:215
#, php-format
msgid "{0} and %d others requested registration"
msgstr ""
-#: src/Module/OAuth/Acknowledge.php:51
+#: src/Module/OAuth/Acknowledge.php:37
msgid "Authorize application connection"
msgstr "Autoritzi la connexió de aplicacions"
-#: src/Module/OAuth/Acknowledge.php:53
+#: src/Module/OAuth/Acknowledge.php:39
msgid ""
"Do you want to authorize this application to access your posts and contacts,"
" and/or create new posts for you?"
msgstr "Vol autoritzar a aquesta aplicació per accedir als teus missatges i contactes, i/o crear nous enviaments per a vostè?"
-#: src/Module/OAuth/Authorize.php:54
+#: src/Module/OAuth/Authorize.php:40
msgid "Unsupported or missing response type"
msgstr ""
-#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:75
+#: src/Module/OAuth/Authorize.php:45 src/Module/OAuth/Token.php:61
msgid "Incomplete request data"
msgstr ""
-#: src/Module/OAuth/Authorize.php:106
+#: src/Module/OAuth/Authorize.php:92
#, php-format
msgid ""
"Please copy the following authentication code into your application and "
"close this window: %s"
msgstr ""
-#: src/Module/OAuth/Token.php:80
+#: src/Module/OAuth/Token.php:66
msgid "Invalid data or unknown client"
msgstr ""
-#: src/Module/OAuth/Token.php:105
+#: src/Module/OAuth/Token.php:91
msgid "Unsupported or missing grant type"
msgstr ""
-#: src/Module/OStatus/Repair.php:83
-msgid "Resubscribing to OStatus contacts"
-msgstr "Tornar a inscriure’s a OStatus contactes"
-
-#: src/Module/OStatus/Repair.php:84 src/Module/OStatus/Subscribe.php:158
-msgid "Keep this window open until done."
-msgstr "Manteniu aquesta finestra oberta fins que no hàgiu acabat."
-
-#: src/Module/OStatus/Repair.php:85
-msgid "✔ Done"
-msgstr ""
-
-#: src/Module/OStatus/Repair.php:86
-msgid "No OStatus contacts to resubscribe to."
-msgstr ""
-
-#: src/Module/OStatus/Subscribe.php:70
+#: src/Module/OStatus/Subscribe.php:58
msgid "Subscribing to contacts"
msgstr ""
-#: src/Module/OStatus/Subscribe.php:79
+#: src/Module/OStatus/Subscribe.php:67
msgid "No contact provided."
msgstr "No s’ha proporcionat cap contacte."
-#: src/Module/OStatus/Subscribe.php:85
+#: src/Module/OStatus/Subscribe.php:73
msgid "Couldn't fetch information for contact."
msgstr "No s'ha pogut obtenir informació per al contacte."
-#: src/Module/OStatus/Subscribe.php:96
+#: src/Module/OStatus/Subscribe.php:84
msgid "Couldn't fetch friends for contact."
msgstr "No s'ha pogut buscar amics per contactar-los."
-#: src/Module/OStatus/Subscribe.php:102 src/Module/OStatus/Subscribe.php:113
+#: src/Module/OStatus/Subscribe.php:90 src/Module/OStatus/Subscribe.php:101
msgid "Couldn't fetch following contacts."
msgstr ""
-#: src/Module/OStatus/Subscribe.php:108
+#: src/Module/OStatus/Subscribe.php:96
msgid "Couldn't fetch remote profile."
msgstr ""
-#: src/Module/OStatus/Subscribe.php:118
+#: src/Module/OStatus/Subscribe.php:106
msgid "Unsupported network"
msgstr ""
-#: src/Module/OStatus/Subscribe.php:134
+#: src/Module/OStatus/Subscribe.php:122
msgid "Done"
msgstr "Fet"
-#: src/Module/OStatus/Subscribe.php:148
+#: src/Module/OStatus/Subscribe.php:136
msgid "success"
msgstr "èxit"
-#: src/Module/OStatus/Subscribe.php:150
+#: src/Module/OStatus/Subscribe.php:138
msgid "failed"
msgstr "suspendre"
-#: src/Module/OStatus/Subscribe.php:153
+#: src/Module/OStatus/Subscribe.php:141
msgid "ignored"
msgstr "ignorar"
-#: src/Module/PermissionTooltip.php:49
-#, php-format
-msgid "Wrong type \"%s\", expected one of: %s"
-msgstr ""
+#: src/Module/OStatus/Subscribe.php:146
+msgid "Keep this window open until done."
+msgstr "Manteniu aquesta finestra oberta fins que no hàgiu acabat."
-#: src/Module/PermissionTooltip.php:79
-msgid "Model not found"
-msgstr ""
-
-#: src/Module/PermissionTooltip.php:94
-msgid "Unlisted"
-msgstr ""
-
-#: src/Module/PermissionTooltip.php:112
-msgid "Remote privacy information not available."
-msgstr "Informació de privacitat remota no disponible."
-
-#: src/Module/PermissionTooltip.php:120
-msgid "Visible to:"
-msgstr "Visible per a:"
-
-#: src/Module/PermissionTooltip.php:214
-#, php-format
-msgid "Collection (%s)"
-msgstr ""
-
-#: src/Module/PermissionTooltip.php:218
-#, php-format
-msgid "Followers (%s)"
-msgstr ""
-
-#: src/Module/PermissionTooltip.php:237
-#, php-format
-msgid "%d more"
-msgstr ""
-
-#: src/Module/PermissionTooltip.php:241
-#, php-format
-msgid "To: %sYou can enter one of your one-time recovery codes in case you lost access" " to your mobile device.
" msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:101 +#: src/Module/Security/TwoFactor/Recovery.php:87 #, php-format msgid "Don’t have your phone? Enter a two-factor recovery code" msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:102 +#: src/Module/Security/TwoFactor/Recovery.php:88 msgid "Please enter a recovery code" msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:103 +#: src/Module/Security/TwoFactor/Recovery.php:89 msgid "Submit recovery code and complete login" msgstr "" -#: src/Module/Security/TwoFactor/SignOut.php:122 +#: src/Module/Security/TwoFactor/SignOut.php:108 msgid "Sign out of this browser?" msgstr "" -#: src/Module/Security/TwoFactor/SignOut.php:123 +#: src/Module/Security/TwoFactor/SignOut.php:109 msgid "" "If you trust this browser, you will not be asked for verification code " "the next time you sign in.
" msgstr "" -#: src/Module/Security/TwoFactor/SignOut.php:124 +#: src/Module/Security/TwoFactor/SignOut.php:110 msgid "Sign out" msgstr "" -#: src/Module/Security/TwoFactor/SignOut.php:126 +#: src/Module/Security/TwoFactor/SignOut.php:112 msgid "Trust and sign out" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:96 +#: src/Module/Security/TwoFactor/Trust.php:82 msgid "Couldn't save browser to Cookie." msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:141 +#: src/Module/Security/TwoFactor/Trust.php:127 msgid "Trust this browser?" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:142 +#: src/Module/Security/TwoFactor/Trust.php:128 msgid "" "If you choose to trust this browser, you will not be asked for a " "verification code the next time you sign in.
" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:143 +#: src/Module/Security/TwoFactor/Trust.php:129 msgid "Not now" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:144 +#: src/Module/Security/TwoFactor/Trust.php:130 msgid "Don't trust" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:145 +#: src/Module/Security/TwoFactor/Trust.php:131 msgid "Trust" msgstr "" -#: src/Module/Security/TwoFactor/Verify.php:97 +#: src/Module/Security/TwoFactor/Verify.php:83 msgid "" "Open the two-factor authentication app on your device to get an " "authentication code and verify your identity.
" msgstr "" -#: src/Module/Security/TwoFactor/Verify.php:100 +#: src/Module/Security/TwoFactor/Verify.php:86 #, php-format msgid "" "If you do not have access to your authentication code you can use a two-factor recovery code." msgstr "" -#: src/Module/Security/TwoFactor/Verify.php:101 -#: src/Module/Settings/TwoFactor/Verify.php:158 +#: src/Module/Security/TwoFactor/Verify.php:87 +#: src/Module/Settings/TwoFactor/Verify.php:144 msgid "Please enter a code from your authentication app" msgstr "" -#: src/Module/Security/TwoFactor/Verify.php:102 +#: src/Module/Security/TwoFactor/Verify.php:88 msgid "Verify code and complete login" msgstr "" -#: src/Module/Settings/Account.php:96 +#: src/Module/Settings/Account.php:82 msgid "Please use a shorter name." msgstr "" -#: src/Module/Settings/Account.php:99 +#: src/Module/Settings/Account.php:85 msgid "Name too short." msgstr "" -#: src/Module/Settings/Account.php:108 +#: src/Module/Settings/Account.php:94 msgid "Wrong Password." msgstr "" -#: src/Module/Settings/Account.php:113 +#: src/Module/Settings/Account.php:99 msgid "Invalid email." msgstr "" -#: src/Module/Settings/Account.php:117 +#: src/Module/Settings/Account.php:103 msgid "Cannot change to that email." msgstr "" -#: src/Module/Settings/Account.php:146 src/Module/Settings/Account.php:195 -#: src/Module/Settings/Account.php:216 src/Module/Settings/Account.php:300 -#: src/Module/Settings/Account.php:329 +#: src/Module/Settings/Account.php:132 src/Module/Settings/Account.php:181 +#: src/Module/Settings/Account.php:202 src/Module/Settings/Account.php:286 +#: src/Module/Settings/Account.php:315 msgid "Settings were not updated." msgstr "" -#: src/Module/Settings/Account.php:342 +#: src/Module/Settings/Account.php:333 msgid "Contact CSV file upload error" msgstr "" -#: src/Module/Settings/Account.php:361 +#: src/Module/Settings/Account.php:352 msgid "Importing Contacts done" msgstr "" -#: src/Module/Settings/Account.php:374 +#: src/Module/Settings/Account.php:365 msgid "Relocate message has been send to your contacts" msgstr "" -#: src/Module/Settings/Account.php:391 +#: src/Module/Settings/Account.php:382 msgid "Unable to find your profile. Please contact your admin." msgstr "" -#: src/Module/Settings/Account.php:433 +#: src/Module/Settings/Account.php:424 msgid "" "Account for a service that automatically shares content based on user " "defined channels." msgstr "" -#: src/Module/Settings/Account.php:443 +#: src/Module/Settings/Account.php:434 msgid "Personal Page Subtypes" msgstr "" -#: src/Module/Settings/Account.php:444 +#: src/Module/Settings/Account.php:435 msgid "Community Group Subtypes" msgstr "" -#: src/Module/Settings/Account.php:455 +#: src/Module/Settings/Account.php:446 msgid "Account for a personal profile." msgstr "" -#: src/Module/Settings/Account.php:462 +#: src/Module/Settings/Account.php:453 msgid "" "Account for an organisation that automatically approves contact requests as " "\"Followers\"." msgstr "Compte per a una organització que aprovi automàticament les sol·licituds de contacte com a 'seguidors'." -#: src/Module/Settings/Account.php:469 +#: src/Module/Settings/Account.php:460 msgid "" "Account for a news reflector that automatically approves contact requests as" " \"Followers\"." msgstr "" -#: src/Module/Settings/Account.php:476 +#: src/Module/Settings/Account.php:467 msgid "Account for community discussions." msgstr "" -#: src/Module/Settings/Account.php:484 +#: src/Module/Settings/Account.php:475 msgid "" "Account for a regular personal profile that requires manual approval of " "\"Friends\" and \"Followers\"." msgstr "" -#: src/Module/Settings/Account.php:491 +#: src/Module/Settings/Account.php:482 msgid "" "Account for a public profile that automatically approves contact requests as" " \"Followers\"." msgstr "Cuenta para un perfil público que aprueba automáticamente las solicitudes de contacto como 'Seguidores'." -#: src/Module/Settings/Account.php:498 +#: src/Module/Settings/Account.php:489 msgid "Automatically approves all contact requests." msgstr "" -#: src/Module/Settings/Account.php:505 +#: src/Module/Settings/Account.php:496 +msgid "Contact requests have to be manually approved." +msgstr "" + +#: src/Module/Settings/Account.php:503 msgid "" "Account for a popular profile that automatically approves contact requests " "as \"Friends\"." msgstr "" -#: src/Module/Settings/Account.php:510 +#: src/Module/Settings/Account.php:508 msgid "Private Group [Experimental]" msgstr "" -#: src/Module/Settings/Account.php:512 +#: src/Module/Settings/Account.php:510 msgid "Requires manual approval of contact requests." msgstr "" -#: src/Module/Settings/Account.php:521 +#: src/Module/Settings/Account.php:519 msgid "OpenID:" msgstr "OpenID:" -#: src/Module/Settings/Account.php:521 +#: src/Module/Settings/Account.php:519 msgid "(Optional) Allow this OpenID to login to this account." msgstr "(Opcional) Permetre a aquest OpenID iniciar sessió en aquest compte." -#: src/Module/Settings/Account.php:529 +#: src/Module/Settings/Account.php:527 msgid "Publish your profile in your local site directory?" msgstr "" -#: src/Module/Settings/Account.php:529 +#: src/Module/Settings/Account.php:527 #, php-format msgid "" "Your profile will be published in this node's local " @@ -9787,94 +9835,94 @@ msgid "" " system settings." msgstr "" -#: src/Module/Settings/Account.php:535 +#: src/Module/Settings/Account.php:533 #, php-format msgid "" "Your profile will also be published in the global friendica directories " "(e.g. %s)." msgstr "" -#: src/Module/Settings/Account.php:548 +#: src/Module/Settings/Account.php:546 msgid "Account Settings" msgstr "Ajustos de Compte" -#: src/Module/Settings/Account.php:549 +#: src/Module/Settings/Account.php:547 #, php-format msgid "Your Identity Address is '%s' or '%s'." msgstr "" -#: src/Module/Settings/Account.php:556 +#: src/Module/Settings/Account.php:554 msgid "Password Settings" msgstr "Ajustos de Contrasenya" -#: src/Module/Settings/Account.php:558 +#: src/Module/Settings/Account.php:556 msgid "Leave password fields blank unless changing" msgstr "Deixi els camps de contrasenya buits per a no fer canvis" -#: src/Module/Settings/Account.php:560 +#: src/Module/Settings/Account.php:558 msgid "Password:" msgstr "Contrasenya:" -#: src/Module/Settings/Account.php:560 +#: src/Module/Settings/Account.php:558 msgid "Your current password to confirm the changes of the email address" msgstr "" -#: src/Module/Settings/Account.php:563 +#: src/Module/Settings/Account.php:561 msgid "Delete OpenID URL" msgstr "" -#: src/Module/Settings/Account.php:565 +#: src/Module/Settings/Account.php:563 msgid "Basic Settings" msgstr "Ajustos Basics" -#: src/Module/Settings/Account.php:566 -#: src/Module/Settings/Profile/Index.php:283 +#: src/Module/Settings/Account.php:564 +#: src/Module/Settings/Profile/Index.php:274 msgid "Display name:" msgstr "" -#: src/Module/Settings/Account.php:567 +#: src/Module/Settings/Account.php:565 msgid "Email Address:" msgstr "Adreça de Correu:" -#: src/Module/Settings/Account.php:568 +#: src/Module/Settings/Account.php:566 msgid "Your Timezone:" msgstr "La teva zona Horària:" -#: src/Module/Settings/Account.php:569 +#: src/Module/Settings/Account.php:567 msgid "Your Language:" msgstr "El teu idioma:" -#: src/Module/Settings/Account.php:569 +#: src/Module/Settings/Account.php:567 msgid "" "Set the language we use to show you friendica interface and to send you " "emails" msgstr "Definiu l’idioma que utilitzem per mostrar-vos la interfície Friendica i per enviar-vos correus electrònics" -#: src/Module/Settings/Account.php:570 +#: src/Module/Settings/Account.php:568 msgid "Default Post Location:" msgstr "Localització per Defecte del Missatge:" -#: src/Module/Settings/Account.php:571 +#: src/Module/Settings/Account.php:569 msgid "Use Browser Location:" msgstr "Ubicar-se amb el Navegador:" -#: src/Module/Settings/Account.php:573 +#: src/Module/Settings/Account.php:571 msgid "Security and Privacy Settings" msgstr "Ajustos de Seguretat i Privacitat" -#: src/Module/Settings/Account.php:575 +#: src/Module/Settings/Account.php:573 msgid "Maximum Friend Requests/Day:" msgstr "Nombre Màxim de Sol·licituds per Dia" -#: src/Module/Settings/Account.php:575 +#: src/Module/Settings/Account.php:573 msgid "(to prevent spam abuse)" msgstr "(per a prevenir abusos de spam)" -#: src/Module/Settings/Account.php:577 +#: src/Module/Settings/Account.php:575 msgid "Allow your profile to be searchable globally?" msgstr "" -#: src/Module/Settings/Account.php:577 +#: src/Module/Settings/Account.php:575 msgid "" "Activate this setting if you want others to easily find and follow you. Your" " profile will be searchable on remote systems. This setting also determines " @@ -9882,43 +9930,43 @@ msgid "" "indexed or not." msgstr "" -#: src/Module/Settings/Account.php:578 +#: src/Module/Settings/Account.php:576 msgid "Hide your contact/friend list from viewers of your profile?" msgstr "" -#: src/Module/Settings/Account.php:578 +#: src/Module/Settings/Account.php:576 msgid "" "A list of your contacts is displayed on your profile page. Activate this " "option to disable the display of your contact list." msgstr "" -#: src/Module/Settings/Account.php:579 +#: src/Module/Settings/Account.php:577 msgid "Hide your public content from anonymous viewers" msgstr "" -#: src/Module/Settings/Account.php:579 +#: src/Module/Settings/Account.php:577 msgid "" "Anonymous visitors will only see your basic profile details. Your public " "posts and replies will still be freely accessible on the remote servers of " "your followers and through relays." msgstr "" -#: src/Module/Settings/Account.php:580 +#: src/Module/Settings/Account.php:578 msgid "Make public posts unlisted" msgstr "" -#: src/Module/Settings/Account.php:580 +#: src/Module/Settings/Account.php:578 msgid "" "Your public posts will not appear on the community pages or in search " "results, nor be sent to relay servers. However they can still appear on " "public feeds on remote servers." msgstr "" -#: src/Module/Settings/Account.php:581 +#: src/Module/Settings/Account.php:579 msgid "Make all posted pictures accessible" msgstr "" -#: src/Module/Settings/Account.php:581 +#: src/Module/Settings/Account.php:579 msgid "" "This option makes every posted picture accessible via the direct link. This " "is a workaround for the problem that most other networks can't handle " @@ -9926,352 +9974,352 @@ msgid "" "public on your photo albums though." msgstr "" -#: src/Module/Settings/Account.php:582 +#: src/Module/Settings/Account.php:580 msgid "Allow friends to post to your profile page?" msgstr "Permet als amics publicar en la seva pàgina de perfil?" -#: src/Module/Settings/Account.php:582 +#: src/Module/Settings/Account.php:580 msgid "" "Your contacts may write posts on your profile wall. These posts will be " "distributed to your contacts" msgstr "" -#: src/Module/Settings/Account.php:583 +#: src/Module/Settings/Account.php:581 msgid "Allow friends to tag your posts?" msgstr "Permet als amics d'etiquetar els teus missatges?" -#: src/Module/Settings/Account.php:583 +#: src/Module/Settings/Account.php:581 msgid "Your contacts can add additional tags to your posts." msgstr "" -#: src/Module/Settings/Account.php:584 +#: src/Module/Settings/Account.php:582 msgid "Default privacy circle for new contacts" msgstr "" -#: src/Module/Settings/Account.php:585 +#: src/Module/Settings/Account.php:583 msgid "Default privacy circle for new group contacts" msgstr "" -#: src/Module/Settings/Account.php:586 +#: src/Module/Settings/Account.php:584 msgid "Default Post Permissions" msgstr "Permisos de Correu per Defecte" -#: src/Module/Settings/Account.php:590 +#: src/Module/Settings/Account.php:588 msgid "Expiration settings" msgstr "" -#: src/Module/Settings/Account.php:591 +#: src/Module/Settings/Account.php:589 msgid "Automatically expire posts after this many days:" msgstr "Després de aquests nombre de dies, els missatges caduquen automàticament:" -#: src/Module/Settings/Account.php:591 +#: src/Module/Settings/Account.php:589 msgid "If empty, posts will not expire. Expired posts will be deleted" msgstr "Si està buit, els missatges no caducarà. Missatges caducats s'eliminaran" -#: src/Module/Settings/Account.php:592 +#: src/Module/Settings/Account.php:590 msgid "Expire posts" msgstr "" -#: src/Module/Settings/Account.php:592 +#: src/Module/Settings/Account.php:590 msgid "When activated, posts and comments will be expired." msgstr "" -#: src/Module/Settings/Account.php:593 +#: src/Module/Settings/Account.php:591 msgid "Expire personal notes" msgstr "" -#: src/Module/Settings/Account.php:593 +#: src/Module/Settings/Account.php:591 msgid "" "When activated, the personal notes on your profile page will be expired." msgstr "" -#: src/Module/Settings/Account.php:594 +#: src/Module/Settings/Account.php:592 msgid "Expire starred posts" msgstr "" -#: src/Module/Settings/Account.php:594 +#: src/Module/Settings/Account.php:592 msgid "" "Starring posts keeps them from being expired. That behaviour is overwritten " "by this setting." msgstr "" -#: src/Module/Settings/Account.php:595 +#: src/Module/Settings/Account.php:593 msgid "Only expire posts by others" msgstr "" -#: src/Module/Settings/Account.php:595 +#: src/Module/Settings/Account.php:593 msgid "" "When activated, your own posts never expire. Then the settings above are " "only valid for posts you received." msgstr "" -#: src/Module/Settings/Account.php:598 +#: src/Module/Settings/Account.php:596 msgid "Notification Settings" msgstr "Ajustos de Notificació" -#: src/Module/Settings/Account.php:599 +#: src/Module/Settings/Account.php:597 msgid "Send a notification email when:" msgstr "Envia un correu notificant quan:" -#: src/Module/Settings/Account.php:600 +#: src/Module/Settings/Account.php:598 msgid "You receive an introduction" msgstr "Has rebut una presentació" -#: src/Module/Settings/Account.php:601 +#: src/Module/Settings/Account.php:599 msgid "Your introductions are confirmed" msgstr "La teva presentació està confirmada" -#: src/Module/Settings/Account.php:602 +#: src/Module/Settings/Account.php:600 msgid "Someone writes on your profile wall" msgstr "Algú ha escrit en el teu mur de perfil" -#: src/Module/Settings/Account.php:603 +#: src/Module/Settings/Account.php:601 msgid "Someone writes a followup comment" msgstr "Algú ha escrit un comentari de seguiment" -#: src/Module/Settings/Account.php:604 +#: src/Module/Settings/Account.php:602 msgid "You receive a private message" msgstr "Has rebut un missatge privat" -#: src/Module/Settings/Account.php:605 +#: src/Module/Settings/Account.php:603 msgid "You receive a friend suggestion" msgstr "Has rebut una suggerencia d'un amic" -#: src/Module/Settings/Account.php:606 +#: src/Module/Settings/Account.php:604 msgid "You are tagged in a post" msgstr "Estàs etiquetat en un enviament" -#: src/Module/Settings/Account.php:608 +#: src/Module/Settings/Account.php:606 msgid "Create a desktop notification when:" msgstr "" -#: src/Module/Settings/Account.php:609 +#: src/Module/Settings/Account.php:607 msgid "Someone tagged you" msgstr "" -#: src/Module/Settings/Account.php:610 +#: src/Module/Settings/Account.php:608 msgid "Someone directly commented on your post" msgstr "" -#: src/Module/Settings/Account.php:611 +#: src/Module/Settings/Account.php:609 msgid "Someone liked your content" msgstr "" -#: src/Module/Settings/Account.php:611 src/Module/Settings/Account.php:612 +#: src/Module/Settings/Account.php:609 src/Module/Settings/Account.php:610 msgid "Can only be enabled, when the direct comment notification is enabled." msgstr "" -#: src/Module/Settings/Account.php:612 +#: src/Module/Settings/Account.php:610 msgid "Someone shared your content" msgstr "" -#: src/Module/Settings/Account.php:613 +#: src/Module/Settings/Account.php:611 msgid "Someone commented in your thread" msgstr "" -#: src/Module/Settings/Account.php:614 +#: src/Module/Settings/Account.php:612 msgid "Someone commented in a thread where you commented" msgstr "" -#: src/Module/Settings/Account.php:615 +#: src/Module/Settings/Account.php:613 msgid "Someone commented in a thread where you interacted" msgstr "" -#: src/Module/Settings/Account.php:617 +#: src/Module/Settings/Account.php:615 msgid "Activate desktop notifications" msgstr "Activa les notificacions a l'escriptori" -#: src/Module/Settings/Account.php:617 +#: src/Module/Settings/Account.php:615 msgid "Show desktop popup on new notifications" msgstr "Mostra la finestra emergent a les noves notificacions" -#: src/Module/Settings/Account.php:621 +#: src/Module/Settings/Account.php:619 msgid "Text-only notification emails" msgstr "Correu electrònic de notificació de només text" -#: src/Module/Settings/Account.php:623 +#: src/Module/Settings/Account.php:621 msgid "Send text only notification emails, without the html part" msgstr "Envieu només missatges de correu electrònic de notificació de text, sense la part html" -#: src/Module/Settings/Account.php:627 +#: src/Module/Settings/Account.php:625 msgid "Show detailled notifications" msgstr "Mostra les notificacions detallades" -#: src/Module/Settings/Account.php:629 +#: src/Module/Settings/Account.php:627 msgid "" "Per default, notifications are condensed to a single notification per item. " "When enabled every notification is displayed." msgstr "Per defecte, les notificacions es condensen a una única notificació per element. Quan està activada, es mostra tota notificació." -#: src/Module/Settings/Account.php:633 +#: src/Module/Settings/Account.php:631 msgid "Show notifications of ignored contacts" msgstr "" -#: src/Module/Settings/Account.php:635 +#: src/Module/Settings/Account.php:633 msgid "" "You don't see posts from ignored contacts. But you still see their comments." " This setting controls if you want to still receive regular notifications " "that are caused by ignored contacts or not." msgstr "" -#: src/Module/Settings/Account.php:638 +#: src/Module/Settings/Account.php:636 msgid "Advanced Account/Page Type Settings" msgstr "Ajustos Avançats de Compte/ Pàgina" -#: src/Module/Settings/Account.php:639 +#: src/Module/Settings/Account.php:637 msgid "Change the behaviour of this account for special situations" msgstr "Canviar el comportament d'aquest compte en situacions especials" -#: src/Module/Settings/Account.php:642 +#: src/Module/Settings/Account.php:640 msgid "Import Contacts" msgstr "" -#: src/Module/Settings/Account.php:643 +#: src/Module/Settings/Account.php:641 msgid "" "Upload a CSV file that contains the handle of your followed accounts in the " "first column you exported from the old account." msgstr "" -#: src/Module/Settings/Account.php:644 +#: src/Module/Settings/Account.php:642 msgid "Upload File" msgstr "" -#: src/Module/Settings/Account.php:647 +#: src/Module/Settings/Account.php:645 msgid "Relocate" msgstr "traslladar-se" -#: src/Module/Settings/Account.php:648 +#: src/Module/Settings/Account.php:646 msgid "" "If you have moved this profile from another server, and some of your " "contacts don't receive your updates, try pushing this button." msgstr "Si heu mogut aquest perfil d'un altre servidor i alguns dels vostres contactes no reben les vostres actualitzacions, proveu de prémer aquest botó." -#: src/Module/Settings/Account.php:649 +#: src/Module/Settings/Account.php:647 msgid "Resend relocate message to contacts" msgstr "Torneu a enviar el missatge a contactes" -#: src/Module/Settings/Addons.php:86 +#: src/Module/Settings/Addons.php:72 msgid "Addon Settings" msgstr "" -#: src/Module/Settings/Addons.php:87 +#: src/Module/Settings/Addons.php:73 msgid "No Addon settings configured" msgstr "" -#: src/Module/Settings/Channels.php:142 +#: src/Module/Settings/Channels.php:134 msgid "" "This page can be used to define the channels that will automatically be " "reshared by your account." msgstr "" -#: src/Module/Settings/Channels.php:147 +#: src/Module/Settings/Channels.php:139 msgid "This page can be used to define your own channels." msgstr "" -#: src/Module/Settings/Channels.php:176 +#: src/Module/Settings/Channels.php:168 msgid "Publish" msgstr "" -#: src/Module/Settings/Channels.php:176 +#: src/Module/Settings/Channels.php:168 msgid "" "When selected, the channel results are reshared. This only works for public " "ActivityPub posts from the public timeline or the user defined circles." msgstr "" -#: src/Module/Settings/Channels.php:184 src/Module/Settings/Channels.php:205 -#: src/Module/Settings/Display.php:342 +#: src/Module/Settings/Channels.php:176 src/Module/Settings/Channels.php:197 +#: src/Module/Settings/Display.php:324 msgid "Label" msgstr "" -#: src/Module/Settings/Channels.php:185 src/Module/Settings/Channels.php:206 -#: src/Module/Settings/Display.php:343 -#: src/Module/Settings/TwoFactor/AppSpecific.php:137 +#: src/Module/Settings/Channels.php:177 src/Module/Settings/Channels.php:198 +#: src/Module/Settings/Display.php:325 +#: src/Module/Settings/TwoFactor/AppSpecific.php:123 msgid "Description" msgstr "Descripció" -#: src/Module/Settings/Channels.php:186 src/Module/Settings/Channels.php:207 +#: src/Module/Settings/Channels.php:178 src/Module/Settings/Channels.php:199 msgid "Access Key" msgstr "" -#: src/Module/Settings/Channels.php:187 src/Module/Settings/Channels.php:208 +#: src/Module/Settings/Channels.php:179 src/Module/Settings/Channels.php:200 msgid "Circle/Channel" msgstr "" -#: src/Module/Settings/Channels.php:188 src/Module/Settings/Channels.php:209 +#: src/Module/Settings/Channels.php:180 src/Module/Settings/Channels.php:201 msgid "Include Tags" msgstr "" -#: src/Module/Settings/Channels.php:189 src/Module/Settings/Channels.php:210 +#: src/Module/Settings/Channels.php:181 src/Module/Settings/Channels.php:202 msgid "Exclude Tags" msgstr "" -#: src/Module/Settings/Channels.php:190 src/Module/Settings/Channels.php:211 +#: src/Module/Settings/Channels.php:182 src/Module/Settings/Channels.php:203 msgid "Minimum Size" msgstr "" -#: src/Module/Settings/Channels.php:191 src/Module/Settings/Channels.php:212 +#: src/Module/Settings/Channels.php:183 src/Module/Settings/Channels.php:204 msgid "Maximum Size" msgstr "" -#: src/Module/Settings/Channels.php:192 src/Module/Settings/Channels.php:213 +#: src/Module/Settings/Channels.php:184 src/Module/Settings/Channels.php:205 msgid "Full Text Search" msgstr "" -#: src/Module/Settings/Channels.php:196 src/Module/Settings/Channels.php:217 +#: src/Module/Settings/Channels.php:188 src/Module/Settings/Channels.php:209 msgid "Select all languages that you want to see in this channel." msgstr "" -#: src/Module/Settings/Channels.php:198 +#: src/Module/Settings/Channels.php:190 msgid "Delete channel" msgstr "" -#: src/Module/Settings/Channels.php:198 +#: src/Module/Settings/Channels.php:190 msgid "Check to delete this entry from the channel list" msgstr "" -#: src/Module/Settings/Channels.php:205 +#: src/Module/Settings/Channels.php:197 msgid "Short name for the channel. It is displayed on the channels widget." msgstr "" -#: src/Module/Settings/Channels.php:206 +#: src/Module/Settings/Channels.php:198 msgid "This should describe the content of the channel in a few word." msgstr "" -#: src/Module/Settings/Channels.php:207 +#: src/Module/Settings/Channels.php:199 msgid "" "When you want to access this channel via an access key, you can define it " "here. Pay attention to not use an already used one." msgstr "" -#: src/Module/Settings/Channels.php:208 +#: src/Module/Settings/Channels.php:200 msgid "Select a circle or channel, that your channel should be based on." msgstr "" -#: src/Module/Settings/Channels.php:209 +#: src/Module/Settings/Channels.php:201 msgid "" "Comma separated list of tags. A post will be used when it contains any of " "the listed tags." msgstr "" -#: src/Module/Settings/Channels.php:210 +#: src/Module/Settings/Channels.php:202 msgid "" "Comma separated list of tags. If a post contain any of these tags, then it " "will not be part of nthis channel." msgstr "" -#: src/Module/Settings/Channels.php:211 +#: src/Module/Settings/Channels.php:203 msgid "" "Minimum post size. Leave empty for no minimum size. The size is calculated " "without links, attached posts, mentions or hashtags." msgstr "" -#: src/Module/Settings/Channels.php:212 +#: src/Module/Settings/Channels.php:204 msgid "" "Maximum post size. Leave empty for no maximum size. The size is calculated " "without links, attached posts, mentions or hashtags." msgstr "" -#: src/Module/Settings/Channels.php:213 +#: src/Module/Settings/Channels.php:205 #, php-format msgid "" "Search terms for the body, supports the \"boolean mode\" operators from " @@ -10279,586 +10327,589 @@ msgid "" "keywords: %s" msgstr "" -#: src/Module/Settings/Channels.php:214 +#: src/Module/Settings/Channels.php:206 msgid "Check to display images in the channel." msgstr "" -#: src/Module/Settings/Channels.php:215 +#: src/Module/Settings/Channels.php:207 msgid "Check to display videos in the channel." msgstr "" -#: src/Module/Settings/Channels.php:216 +#: src/Module/Settings/Channels.php:208 msgid "Check to display audio in the channel." msgstr "" -#: src/Module/Settings/Channels.php:221 +#: src/Module/Settings/Channels.php:213 msgid "Add new entry to the channel list" msgstr "" -#: src/Module/Settings/Channels.php:222 +#: src/Module/Settings/Channels.php:214 msgid "Add" msgstr "Afegir" -#: src/Module/Settings/Channels.php:224 +#: src/Module/Settings/Channels.php:216 msgid "Current Entries in the channel list" msgstr "" -#: src/Module/Settings/Channels.php:227 +#: src/Module/Settings/Channels.php:219 msgid "Delete entry from the channel list" msgstr "" -#: src/Module/Settings/Channels.php:228 +#: src/Module/Settings/Channels.php:220 msgid "Delete entry from the channel list?" msgstr "" -#: src/Module/Settings/Connectors.php:120 +#: src/Module/Settings/Connectors.php:108 msgid "Failed to connect with email account using the settings provided." msgstr "Connexió fracassada amb el compte de correu emprant la configuració proveïda." -#: src/Module/Settings/Connectors.php:166 -#: src/Module/Settings/Connectors.php:167 +#: src/Module/Settings/Connectors.php:155 +#: src/Module/Settings/Connectors.php:156 msgid "Diaspora (Socialhome, Hubzilla)" msgstr "" -#: src/Module/Settings/Connectors.php:166 -#: src/Module/Settings/Connectors.php:170 +#: src/Module/Settings/Connectors.php:155 #, php-format msgid "Built-in support for %s connectivity is enabled" msgstr "" -#: src/Module/Settings/Connectors.php:167 -#: src/Module/Settings/Connectors.php:169 +#: src/Module/Settings/Connectors.php:156 #, php-format msgid "Built-in support for %s connectivity is disabled" msgstr "" -#: src/Module/Settings/Connectors.php:169 -#: src/Module/Settings/Connectors.php:170 -msgid "OStatus (GNU Social)" -msgstr "" - -#: src/Module/Settings/Connectors.php:182 +#: src/Module/Settings/Connectors.php:167 msgid "Email access is disabled on this site." msgstr "L'accés al correu està deshabilitat en aquest lloc." -#: src/Module/Settings/Connectors.php:197 -#: src/Module/Settings/Connectors.php:244 +#: src/Module/Settings/Connectors.php:182 +#: src/Module/Settings/Connectors.php:233 msgid "None" msgstr "Cap" -#: src/Module/Settings/Connectors.php:209 +#: src/Module/Settings/Connectors.php:186 +msgid "Default (Mastodon will display the title and a link to the post)" +msgstr "" + +#: src/Module/Settings/Connectors.php:187 +msgid "" +"Use the summary (Mastodon and some others will treat it as content warning)" +msgstr "" + +#: src/Module/Settings/Connectors.php:188 +msgid "Embed the title in the body" +msgstr "" + +#: src/Module/Settings/Connectors.php:199 msgid "General Social Media Settings" msgstr "Configuració general de les xarxes socials" -#: src/Module/Settings/Connectors.php:212 +#: src/Module/Settings/Connectors.php:202 msgid "Followed content scope" msgstr "" -#: src/Module/Settings/Connectors.php:214 +#: src/Module/Settings/Connectors.php:204 msgid "" "By default, conversations in which your follows participated but didn't " "start will be shown in your timeline. You can turn this behavior off, or " "expand it to the conversations in which your follows liked a post." msgstr "" -#: src/Module/Settings/Connectors.php:216 +#: src/Module/Settings/Connectors.php:206 msgid "Only conversations my follows started" msgstr "" -#: src/Module/Settings/Connectors.php:217 +#: src/Module/Settings/Connectors.php:207 msgid "Conversations my follows started or commented on (default)" msgstr "" -#: src/Module/Settings/Connectors.php:218 +#: src/Module/Settings/Connectors.php:208 msgid "Any conversation my follows interacted with, including likes" msgstr "" -#: src/Module/Settings/Connectors.php:221 -msgid "Enable Content Warning" +#: src/Module/Settings/Connectors.php:211 +msgid "Collapse sensitive posts" msgstr "" -#: src/Module/Settings/Connectors.php:221 +#: src/Module/Settings/Connectors.php:211 msgid "" -"Users on networks like Mastodon or Pleroma are able to set a content warning" -" field which collapse their post by default. This enables the automatic " -"collapsing instead of setting the content warning as the post title. Doesn't" -" affect any other content filtering you eventually set up." +"If a post is marked as \"sensitive\", it will be displayed in a collapsed " +"state, if this option is enabled." msgstr "" -#: src/Module/Settings/Connectors.php:222 +#: src/Module/Settings/Connectors.php:212 msgid "Enable intelligent shortening" msgstr "" -#: src/Module/Settings/Connectors.php:222 +#: src/Module/Settings/Connectors.php:212 msgid "" "Normally the system tries to find the best link to add to shortened posts. " "If disabled, every shortened post will always point to the original " "friendica post." msgstr "" -#: src/Module/Settings/Connectors.php:223 +#: src/Module/Settings/Connectors.php:213 msgid "Enable simple text shortening" msgstr "" -#: src/Module/Settings/Connectors.php:223 +#: src/Module/Settings/Connectors.php:213 msgid "" "Normally the system shortens posts at the next line feed. If this option is " "enabled then the system will shorten the text at the maximum character " "limit." msgstr "" -#: src/Module/Settings/Connectors.php:224 +#: src/Module/Settings/Connectors.php:214 msgid "Attach the link title" msgstr "" -#: src/Module/Settings/Connectors.php:224 +#: src/Module/Settings/Connectors.php:214 msgid "" "When activated, the title of the attached link will be added as a title on " "posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that" " share feed content." msgstr "" -#: src/Module/Settings/Connectors.php:225 +#: src/Module/Settings/Connectors.php:215 msgid "API: Use spoiler field as title" msgstr "" -#: src/Module/Settings/Connectors.php:225 +#: src/Module/Settings/Connectors.php:215 msgid "" "When activated, the \"spoiler_text\" field in the API will be used for the " "title on standalone posts. When deactivated it will be used for spoiler " "text. For comments it will always be used for spoiler text." msgstr "" -#: src/Module/Settings/Connectors.php:226 +#: src/Module/Settings/Connectors.php:216 msgid "API: Automatically links at the end of the post as attached posts" msgstr "" -#: src/Module/Settings/Connectors.php:226 +#: src/Module/Settings/Connectors.php:216 msgid "" "When activated, added links at the end of the post react the same way as " "added links in the web interface." msgstr "" -#: src/Module/Settings/Connectors.php:227 +#: src/Module/Settings/Connectors.php:217 +msgid "Article Mode" +msgstr "" + +#: src/Module/Settings/Connectors.php:217 +msgid "" +"Controls how posts with titles are transmitted. Mastodon and its forks don't" +" display the content of these posts if the post is created in the correct " +"(default) way." +msgstr "" + +#: src/Module/Settings/Connectors.php:218 msgid "Your legacy ActivityPub/GNU Social account" msgstr "" -#: src/Module/Settings/Connectors.php:227 +#: src/Module/Settings/Connectors.php:218 msgid "" "If you enter your old account name from an ActivityPub based system or your " "GNU Social/Statusnet account name here (in the format user@domain.tld), your" " contacts will be added automatically. The field will be emptied when done." msgstr "" -#: src/Module/Settings/Connectors.php:229 -msgid "Repair OStatus subscriptions" -msgstr "Repara les subscripcions a OStatus" - -#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Connectors.php:222 msgid "Email/Mailbox Setup" msgstr "Preparació de Correu/Bústia" -#: src/Module/Settings/Connectors.php:234 +#: src/Module/Settings/Connectors.php:223 msgid "" "If you wish to communicate with email contacts using this service " "(optional), please specify how to connect to your mailbox." msgstr "Si vol comunicar-se amb els contactes de correu emprant aquest servei (opcional), Si us plau, especifiqui com connectar amb la seva bústia." -#: src/Module/Settings/Connectors.php:235 +#: src/Module/Settings/Connectors.php:224 msgid "Last successful email check:" msgstr "Última comprovació de correu amb èxit:" -#: src/Module/Settings/Connectors.php:237 +#: src/Module/Settings/Connectors.php:226 msgid "IMAP server name:" msgstr "Nom del servidor IMAP:" -#: src/Module/Settings/Connectors.php:238 +#: src/Module/Settings/Connectors.php:227 msgid "IMAP port:" msgstr "Port IMAP:" -#: src/Module/Settings/Connectors.php:239 +#: src/Module/Settings/Connectors.php:228 msgid "Security:" msgstr "Seguretat:" -#: src/Module/Settings/Connectors.php:240 +#: src/Module/Settings/Connectors.php:229 msgid "Email login name:" msgstr "Nom d'usuari del correu" -#: src/Module/Settings/Connectors.php:241 +#: src/Module/Settings/Connectors.php:230 msgid "Email password:" msgstr "Contrasenya del correu:" -#: src/Module/Settings/Connectors.php:242 +#: src/Module/Settings/Connectors.php:231 msgid "Reply-to address:" msgstr "Adreça de resposta:" -#: src/Module/Settings/Connectors.php:243 +#: src/Module/Settings/Connectors.php:232 msgid "Send public posts to all email contacts:" msgstr "Enviar correu públic a tots els contactes del correu:" -#: src/Module/Settings/Connectors.php:244 +#: src/Module/Settings/Connectors.php:233 msgid "Action after import:" msgstr "Acció després d'importar:" -#: src/Module/Settings/Connectors.php:244 +#: src/Module/Settings/Connectors.php:233 msgid "Move to folder" msgstr "Moure a la carpeta" -#: src/Module/Settings/Connectors.php:245 +#: src/Module/Settings/Connectors.php:234 msgid "Move to folder:" msgstr "Moure a la carpeta:" -#: src/Module/Settings/Delegation.php:73 +#: src/Module/Settings/Delegation.php:59 msgid "Delegation successfully granted." msgstr "" -#: src/Module/Settings/Delegation.php:75 +#: src/Module/Settings/Delegation.php:61 msgid "Parent user not found, unavailable or password doesn't match." msgstr "" -#: src/Module/Settings/Delegation.php:79 +#: src/Module/Settings/Delegation.php:65 msgid "Delegation successfully revoked." msgstr "" -#: src/Module/Settings/Delegation.php:98 -#: src/Module/Settings/Delegation.php:120 +#: src/Module/Settings/Delegation.php:84 +#: src/Module/Settings/Delegation.php:106 msgid "" "Delegated administrators can view but not change delegation permissions." msgstr "" -#: src/Module/Settings/Delegation.php:112 +#: src/Module/Settings/Delegation.php:98 msgid "Delegate user not found." msgstr "" -#: src/Module/Settings/Delegation.php:169 +#: src/Module/Settings/Delegation.php:155 msgid "No parent user" msgstr "Cap usuari principal" -#: src/Module/Settings/Delegation.php:180 -#: src/Module/Settings/Delegation.php:191 +#: src/Module/Settings/Delegation.php:166 +#: src/Module/Settings/Delegation.php:177 msgid "Parent User" msgstr "Usuari Principal" -#: src/Module/Settings/Delegation.php:188 +#: src/Module/Settings/Delegation.php:174 msgid "Additional Accounts" msgstr "" -#: src/Module/Settings/Delegation.php:189 +#: src/Module/Settings/Delegation.php:175 msgid "" "Register additional accounts that are automatically connected to your " "existing account so you can manage them from this account." msgstr "" -#: src/Module/Settings/Delegation.php:190 +#: src/Module/Settings/Delegation.php:176 msgid "Register an additional account" msgstr "" -#: src/Module/Settings/Delegation.php:192 +#: src/Module/Settings/Delegation.php:178 msgid "" "Parent users have total control about this account, including the account " "settings. Please double check whom you give this access." msgstr "Els usuaris principals tenen un control total sobre aquest compte, inclosa la configuració del compte. Si us plau, comprova a qui dóna aquest accés." -#: src/Module/Settings/Delegation.php:195 +#: src/Module/Settings/Delegation.php:181 msgid "Delegates" msgstr "delegada" -#: src/Module/Settings/Delegation.php:196 +#: src/Module/Settings/Delegation.php:182 msgid "" "Delegates are able to manage all aspects of this account/page except for " "basic account settings. Please do not delegate your personal account to " "anybody that you do not trust completely." msgstr "Els delegats poden gestionar tots els aspectes d'aquest compte/pàgina, excepte per als ajustaments bàsics del compte. Si us plau, no deleguin el seu compte personal a ningú que no confiïn completament." -#: src/Module/Settings/Delegation.php:197 +#: src/Module/Settings/Delegation.php:183 msgid "Existing Page Delegates" msgstr "Actuals Delegats de Pàgina" -#: src/Module/Settings/Delegation.php:198 +#: src/Module/Settings/Delegation.php:184 msgid "Potential Delegates" msgstr "Delegats Potencials" -#: src/Module/Settings/Delegation.php:199 +#: src/Module/Settings/Delegation.php:185 msgid "No entries." msgstr "Sense entrades" -#: src/Module/Settings/Display.php:185 +#: src/Module/Settings/Display.php:169 msgid "The theme you chose isn't available." msgstr "" -#: src/Module/Settings/Display.php:225 +#: src/Module/Settings/Display.php:209 #, php-format msgid "%s - (Unsupported)" msgstr "%s - (No és compatible)" -#: src/Module/Settings/Display.php:263 +#: src/Module/Settings/Display.php:246 msgid "No preview" msgstr "" -#: src/Module/Settings/Display.php:264 +#: src/Module/Settings/Display.php:247 msgid "No image" msgstr "" -#: src/Module/Settings/Display.php:265 +#: src/Module/Settings/Display.php:248 msgid "Small Image" msgstr "" -#: src/Module/Settings/Display.php:266 +#: src/Module/Settings/Display.php:249 msgid "Large Image" msgstr "" -#: src/Module/Settings/Display.php:311 +#: src/Module/Settings/Display.php:294 msgid "Display Settings" msgstr "Ajustos de Pantalla" -#: src/Module/Settings/Display.php:313 +#: src/Module/Settings/Display.php:296 msgid "General Theme Settings" msgstr "" -#: src/Module/Settings/Display.php:314 +#: src/Module/Settings/Display.php:297 msgid "Custom Theme Settings" msgstr "" -#: src/Module/Settings/Display.php:315 +#: src/Module/Settings/Display.php:298 msgid "Content Settings" msgstr "" -#: src/Module/Settings/Display.php:316 view/theme/duepuntozero/config.php:86 -#: view/theme/frio/config.php:151 view/theme/quattro/config.php:88 -#: view/theme/vier/config.php:136 +#: src/Module/Settings/Display.php:299 view/theme/duepuntozero/config.php:74 +#: view/theme/frio/config.php:139 view/theme/quattro/config.php:76 +#: view/theme/vier/config.php:124 msgid "Theme settings" msgstr "Configuració de Temes" -#: src/Module/Settings/Display.php:317 +#: src/Module/Settings/Display.php:300 msgid "Timelines" msgstr "" -#: src/Module/Settings/Display.php:324 +#: src/Module/Settings/Display.php:307 msgid "Display Theme:" msgstr "Visualitzar el Tema:" -#: src/Module/Settings/Display.php:325 +#: src/Module/Settings/Display.php:308 msgid "Mobile Theme:" msgstr "Tema Mobile:" -#: src/Module/Settings/Display.php:328 +#: src/Module/Settings/Display.php:311 msgid "Number of items to display per page:" msgstr "Número d'elements a mostrar per pàgina" -#: src/Module/Settings/Display.php:328 src/Module/Settings/Display.php:329 +#: src/Module/Settings/Display.php:311 src/Module/Settings/Display.php:312 msgid "Maximum of 100 items" msgstr "Màxim de 100 elements" -#: src/Module/Settings/Display.php:329 +#: src/Module/Settings/Display.php:312 msgid "Number of items to display per page when viewed from mobile device:" msgstr "Nombre d'elements a veure per pàgina quan es vegin des d'un dispositiu mòbil:" -#: src/Module/Settings/Display.php:330 +#: src/Module/Settings/Display.php:313 msgid "Update browser every xx seconds" msgstr "Actualitzar navegador cada xx segons" -#: src/Module/Settings/Display.php:330 +#: src/Module/Settings/Display.php:313 msgid "Minimum of 10 seconds. Enter -1 to disable it." msgstr "Mínim de 10 segons. Introduïu -1 per desactivar-lo." -#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/Display.php:314 msgid "Display emoticons" msgstr "" -#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/Display.php:314 msgid "When enabled, emoticons are replaced with matching symbols." msgstr "" -#: src/Module/Settings/Display.php:332 +#: src/Module/Settings/Display.php:315 msgid "Infinite scroll" msgstr "" -#: src/Module/Settings/Display.php:332 +#: src/Module/Settings/Display.php:315 msgid "Automatic fetch new items when reaching the page end." msgstr "" -#: src/Module/Settings/Display.php:333 +#: src/Module/Settings/Display.php:316 msgid "Enable Smart Threading" msgstr "" -#: src/Module/Settings/Display.php:333 +#: src/Module/Settings/Display.php:316 msgid "Enable the automatic suppression of extraneous thread indentation." msgstr "" -#: src/Module/Settings/Display.php:334 +#: src/Module/Settings/Display.php:317 msgid "Display the Dislike feature" msgstr "" -#: src/Module/Settings/Display.php:334 +#: src/Module/Settings/Display.php:317 msgid "" "Display the Dislike button and dislike reactions on posts and comments." msgstr "" -#: src/Module/Settings/Display.php:335 +#: src/Module/Settings/Display.php:318 msgid "Display the resharer" msgstr "" -#: src/Module/Settings/Display.php:335 +#: src/Module/Settings/Display.php:318 msgid "Display the first resharer as icon and text on a reshared item." msgstr "" -#: src/Module/Settings/Display.php:336 -msgid "Display sensitive content" -msgstr "" - -#: src/Module/Settings/Display.php:336 -msgid "If enabled, pictures in posts marked as \"sensitive\" will not be blurred." -msgstr "" - -#: src/Module/Settings/Display.php:337 +#: src/Module/Settings/Display.php:319 msgid "Stay local" msgstr "" -#: src/Module/Settings/Display.php:337 +#: src/Module/Settings/Display.php:319 msgid "Don't go to a remote system when following a contact link." msgstr "" -#: src/Module/Settings/Display.php:338 +#: src/Module/Settings/Display.php:320 msgid "Show the post deletion checkbox" msgstr "" -#: src/Module/Settings/Display.php:338 +#: src/Module/Settings/Display.php:320 msgid "Display the checkbox for the post deletion on the network page." msgstr "" -#: src/Module/Settings/Display.php:339 +#: src/Module/Settings/Display.php:321 msgid "DIsplay the event list" msgstr "" -#: src/Module/Settings/Display.php:339 +#: src/Module/Settings/Display.php:321 msgid "Display the birthday reminder and event list on the network page." msgstr "" -#: src/Module/Settings/Display.php:340 +#: src/Module/Settings/Display.php:322 msgid "Link preview mode" msgstr "" -#: src/Module/Settings/Display.php:340 +#: src/Module/Settings/Display.php:322 msgid "Appearance of the link preview that is added to each post with a link." msgstr "" -#: src/Module/Settings/Display.php:345 +#: src/Module/Settings/Display.php:327 msgid "Bookmark" msgstr "" -#: src/Module/Settings/Display.php:347 +#: src/Module/Settings/Display.php:329 msgid "" "Enable timelines that you want to see in the channels widget. Bookmark " "timelines that you want to see in the top menu." msgstr "" -#: src/Module/Settings/Display.php:349 +#: src/Module/Settings/Display.php:331 msgid "Channel languages:" msgstr "" -#: src/Module/Settings/Display.php:349 +#: src/Module/Settings/Display.php:331 msgid "Select all languages that you want to see in your channels." msgstr "" -#: src/Module/Settings/Display.php:351 +#: src/Module/Settings/Display.php:333 msgid "Beginning of week:" msgstr "" -#: src/Module/Settings/Display.php:352 +#: src/Module/Settings/Display.php:334 msgid "Default calendar view:" msgstr "" -#: src/Module/Settings/Features.php:74 +#: src/Module/Settings/Features.php:59 msgid "Additional Features" msgstr "Característiques Adicionals" -#: src/Module/Settings/OAuth.php:71 +#: src/Module/Settings/OAuth.php:57 msgid "Connected Apps" msgstr "Aplicacions conectades" -#: src/Module/Settings/OAuth.php:75 +#: src/Module/Settings/OAuth.php:61 msgid "Remove authorization" msgstr "retirar l'autorització" -#: src/Module/Settings/Profile/Index.php:116 +#: src/Module/Settings/Profile/Index.php:102 msgid "Display Name is required." msgstr "" -#: src/Module/Settings/Profile/Index.php:167 +#: src/Module/Settings/Profile/Index.php:156 msgid "Profile couldn't be updated." msgstr "" -#: src/Module/Settings/Profile/Index.php:205 -#: src/Module/Settings/Profile/Index.php:226 +#: src/Module/Settings/Profile/Index.php:196 +#: src/Module/Settings/Profile/Index.php:217 msgid "Label:" msgstr "" -#: src/Module/Settings/Profile/Index.php:206 -#: src/Module/Settings/Profile/Index.php:227 +#: src/Module/Settings/Profile/Index.php:197 +#: src/Module/Settings/Profile/Index.php:218 msgid "Value:" msgstr "" -#: src/Module/Settings/Profile/Index.php:217 -#: src/Module/Settings/Profile/Index.php:238 +#: src/Module/Settings/Profile/Index.php:208 +#: src/Module/Settings/Profile/Index.php:229 msgid "Field Permissions" msgstr "" -#: src/Module/Settings/Profile/Index.php:218 -#: src/Module/Settings/Profile/Index.php:239 +#: src/Module/Settings/Profile/Index.php:209 +#: src/Module/Settings/Profile/Index.php:230 msgid "(click to open/close)" msgstr "(clicar per a obrir/tancar)" -#: src/Module/Settings/Profile/Index.php:224 +#: src/Module/Settings/Profile/Index.php:215 msgid "Add a new profile field" msgstr "" -#: src/Module/Settings/Profile/Index.php:247 +#: src/Module/Settings/Profile/Index.php:238 msgid "" "The homepage is verified. A rel=\"me\" link back to your Friendica profile " "page was found on the homepage." msgstr "" -#: src/Module/Settings/Profile/Index.php:249 +#: src/Module/Settings/Profile/Index.php:240 #, php-format msgid "" "To verify your homepage, add a rel=\"me\" link to it, pointing to your " "profile URL (%s)." msgstr "" -#: src/Module/Settings/Profile/Index.php:255 +#: src/Module/Settings/Profile/Index.php:246 msgid "Profile Actions" msgstr "" -#: src/Module/Settings/Profile/Index.php:256 +#: src/Module/Settings/Profile/Index.php:247 msgid "Edit Profile Details" msgstr "Editor de Detalls del Perfil" -#: src/Module/Settings/Profile/Index.php:258 +#: src/Module/Settings/Profile/Index.php:249 msgid "Change Profile Photo" msgstr "Canviar la Foto del Perfil" -#: src/Module/Settings/Profile/Index.php:261 +#: src/Module/Settings/Profile/Index.php:252 msgid "Profile picture" msgstr "" -#: src/Module/Settings/Profile/Index.php:262 +#: src/Module/Settings/Profile/Index.php:253 msgid "Location" msgstr "Ubicació" -#: src/Module/Settings/Profile/Index.php:263 src/Util/Temporal.php:97 -#: src/Util/Temporal.php:99 +#: src/Module/Settings/Profile/Index.php:254 src/Util/Temporal.php:83 +#: src/Util/Temporal.php:85 msgid "Miscellaneous" msgstr "Miscel·lania" -#: src/Module/Settings/Profile/Index.php:264 +#: src/Module/Settings/Profile/Index.php:255 msgid "Custom Profile Fields" msgstr "" -#: src/Module/Settings/Profile/Index.php:265 src/Module/Welcome.php:58 +#: src/Module/Settings/Profile/Index.php:256 src/Module/Welcome.php:44 msgid "Upload Profile Photo" msgstr "Pujar Foto del Perfil" -#: src/Module/Settings/Profile/Index.php:266 +#: src/Module/Settings/Profile/Index.php:257 #, php-format msgid "" "Custom fields appear on your profile page.
\n" @@ -10868,396 +10919,396 @@ msgid "" "\t\t\t\tNon-public fields can only be seen by the selected Friendica contacts or the Friendica contacts in the selected circles.
" msgstr "" -#: src/Module/Settings/Profile/Index.php:286 +#: src/Module/Settings/Profile/Index.php:277 msgid "Street Address:" msgstr "Direcció:" -#: src/Module/Settings/Profile/Index.php:287 +#: src/Module/Settings/Profile/Index.php:278 msgid "Locality/City:" msgstr "Localitat/Ciutat:" -#: src/Module/Settings/Profile/Index.php:288 +#: src/Module/Settings/Profile/Index.php:279 msgid "Region/State:" msgstr "Regió/Estat:" -#: src/Module/Settings/Profile/Index.php:289 +#: src/Module/Settings/Profile/Index.php:280 msgid "Postal/Zip Code:" msgstr "Codi Postal:" -#: src/Module/Settings/Profile/Index.php:290 +#: src/Module/Settings/Profile/Index.php:281 msgid "Country:" msgstr "País" -#: src/Module/Settings/Profile/Index.php:292 +#: src/Module/Settings/Profile/Index.php:283 msgid "XMPP (Jabber) address:" msgstr "" -#: src/Module/Settings/Profile/Index.php:292 +#: src/Module/Settings/Profile/Index.php:283 msgid "" "The XMPP address will be published so that people can follow you there." msgstr "" -#: src/Module/Settings/Profile/Index.php:293 +#: src/Module/Settings/Profile/Index.php:284 msgid "Matrix (Element) address:" msgstr "" -#: src/Module/Settings/Profile/Index.php:293 +#: src/Module/Settings/Profile/Index.php:284 msgid "" "The Matrix address will be published so that people can follow you there." msgstr "" -#: src/Module/Settings/Profile/Index.php:294 +#: src/Module/Settings/Profile/Index.php:285 msgid "Homepage URL:" msgstr "Pàgina web URL:" -#: src/Module/Settings/Profile/Index.php:295 +#: src/Module/Settings/Profile/Index.php:286 msgid "Public Keywords:" msgstr "Paraules Clau Públiques" -#: src/Module/Settings/Profile/Index.php:295 +#: src/Module/Settings/Profile/Index.php:286 msgid "(Used for suggesting potential friends, can be seen by others)" msgstr "(Emprat per suggerir potencials amics, Altres poden veure-ho)" -#: src/Module/Settings/Profile/Index.php:296 +#: src/Module/Settings/Profile/Index.php:287 msgid "Private Keywords:" msgstr "Paraules Clau Privades:" -#: src/Module/Settings/Profile/Index.php:296 +#: src/Module/Settings/Profile/Index.php:287 msgid "(Used for searching profiles, never shown to others)" msgstr "(Emprat durant la cerca de perfils, mai mostrat a ningú)" -#: src/Module/Settings/Profile/Photo/Crop.php:107 -#: src/Module/Settings/Profile/Photo/Crop.php:125 -#: src/Module/Settings/Profile/Photo/Crop.php:143 -#: src/Module/Settings/Profile/Photo/Index.php:100 +#: src/Module/Settings/Profile/Photo/Crop.php:93 +#: src/Module/Settings/Profile/Photo/Crop.php:111 +#: src/Module/Settings/Profile/Photo/Crop.php:129 +#: src/Module/Settings/Profile/Photo/Index.php:86 #, php-format msgid "Image size reduction [%s] failed." msgstr "La reducció de la imatge [%s] va fracassar." -#: src/Module/Settings/Profile/Photo/Crop.php:150 +#: src/Module/Settings/Profile/Photo/Crop.php:136 msgid "" "Shift-reload the page or clear browser cache if the new photo does not " "display immediately." msgstr "Recarregui la pàgina o netegi la caché del navegador si la nova foto no apareix immediatament." -#: src/Module/Settings/Profile/Photo/Crop.php:155 +#: src/Module/Settings/Profile/Photo/Crop.php:141 msgid "Unable to process image" msgstr "No es pot processar la imatge" -#: src/Module/Settings/Profile/Photo/Crop.php:174 +#: src/Module/Settings/Profile/Photo/Crop.php:160 msgid "Photo not found." msgstr "" -#: src/Module/Settings/Profile/Photo/Crop.php:196 +#: src/Module/Settings/Profile/Photo/Crop.php:182 msgid "Profile picture successfully updated." msgstr "" -#: src/Module/Settings/Profile/Photo/Crop.php:222 -#: src/Module/Settings/Profile/Photo/Crop.php:226 +#: src/Module/Settings/Profile/Photo/Crop.php:208 +#: src/Module/Settings/Profile/Photo/Crop.php:212 msgid "Crop Image" msgstr "retallar imatge" -#: src/Module/Settings/Profile/Photo/Crop.php:223 +#: src/Module/Settings/Profile/Photo/Crop.php:209 msgid "Please adjust the image cropping for optimum viewing." msgstr "Per favor, ajusta la retallada d'imatge per a una optima visualització." -#: src/Module/Settings/Profile/Photo/Crop.php:225 +#: src/Module/Settings/Profile/Photo/Crop.php:211 msgid "Use Image As Is" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:46 +#: src/Module/Settings/Profile/Photo/Index.php:32 msgid "Missing uploaded image." msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:123 +#: src/Module/Settings/Profile/Photo/Index.php:109 msgid "Profile Picture Settings" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:124 +#: src/Module/Settings/Profile/Photo/Index.php:110 msgid "Current Profile Picture" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:125 +#: src/Module/Settings/Profile/Photo/Index.php:111 msgid "Upload Profile Picture" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:126 +#: src/Module/Settings/Profile/Photo/Index.php:112 msgid "Upload Picture:" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:131 +#: src/Module/Settings/Profile/Photo/Index.php:117 msgid "or" msgstr "o" -#: src/Module/Settings/Profile/Photo/Index.php:133 +#: src/Module/Settings/Profile/Photo/Index.php:119 msgid "skip this step" msgstr "saltar aquest pas" -#: src/Module/Settings/Profile/Photo/Index.php:135 +#: src/Module/Settings/Profile/Photo/Index.php:121 msgid "select a photo from your photo albums" msgstr "tria una foto dels teus àlbums" -#: src/Module/Settings/RemoveMe.php:76 +#: src/Module/Settings/RemoveMe.php:62 msgid "" "There was a validation error, please make sure you're logged in with the " "account you want to remove and try again." msgstr "" -#: src/Module/Settings/RemoveMe.php:76 +#: src/Module/Settings/RemoveMe.php:62 msgid "If this error persists, please contact your administrator." msgstr "" -#: src/Module/Settings/RemoveMe.php:90 -#: src/Navigation/Notifications/Repository/Notify.php:471 -#: src/Navigation/Notifications/Repository/Notify.php:492 +#: src/Module/Settings/RemoveMe.php:76 +#: src/Navigation/Notifications/Repository/Notify.php:457 +#: src/Navigation/Notifications/Repository/Notify.php:478 msgid "[Friendica System Notify]" msgstr "[Notificació del sistema Friendica]" -#: src/Module/Settings/RemoveMe.php:90 +#: src/Module/Settings/RemoveMe.php:76 msgid "User deleted their account" msgstr "L’usuari ha suprimit el seu compte" -#: src/Module/Settings/RemoveMe.php:91 +#: src/Module/Settings/RemoveMe.php:77 msgid "" "On your Friendica node an user deleted their account. Please ensure that " "their data is removed from the backups." msgstr "Al vostre node Friendica, un usuari ha suprimit el seu compte. Assegureu-vos que les seves dades siguin eliminades de les còpies de seguretat." -#: src/Module/Settings/RemoveMe.php:92 +#: src/Module/Settings/RemoveMe.php:78 #, php-format msgid "The user id is %d" msgstr "L’identificador d’usuari és %d" -#: src/Module/Settings/RemoveMe.php:105 +#: src/Module/Settings/RemoveMe.php:91 msgid "Your account has been successfully removed. Bye bye!" msgstr "" -#: src/Module/Settings/RemoveMe.php:130 +#: src/Module/Settings/RemoveMe.php:116 msgid "Remove My Account" msgstr "Eliminar el Meu Compte" -#: src/Module/Settings/RemoveMe.php:131 +#: src/Module/Settings/RemoveMe.php:117 msgid "" "This will completely remove your account. Once this has been done it is not " "recoverable." msgstr "Això eliminarà per complet el seu compte. Quan s'hagi fet això, no serà recuperable." -#: src/Module/Settings/RemoveMe.php:136 +#: src/Module/Settings/RemoveMe.php:122 msgid "Please enter your password for verification:" msgstr "Si us plau, introduïu la contrasenya per a la verificació:" -#: src/Module/Settings/Server/Action.php:60 +#: src/Module/Settings/Server/Action.php:46 msgid "Do you want to ignore this server?" msgstr "" -#: src/Module/Settings/Server/Action.php:64 +#: src/Module/Settings/Server/Action.php:50 msgid "Do you want to unignore this server?" msgstr "" -#: src/Module/Settings/Server/Action.php:74 -#: src/Module/Settings/Server/Index.php:104 +#: src/Module/Settings/Server/Action.php:60 +#: src/Module/Settings/Server/Index.php:90 msgid "Remote server settings" msgstr "" -#: src/Module/Settings/Server/Action.php:77 +#: src/Module/Settings/Server/Action.php:63 msgid "Server URL" msgstr "" -#: src/Module/Settings/Server/Index.php:78 +#: src/Module/Settings/Server/Index.php:64 msgid "Settings saved" msgstr "" -#: src/Module/Settings/Server/Index.php:105 +#: src/Module/Settings/Server/Index.php:91 msgid "" "Here you can find all the remote servers you have taken individual " "moderation actions against. For a list of servers your node has blocked, " "please check out the Information page." msgstr "" -#: src/Module/Settings/Server/Index.php:110 +#: src/Module/Settings/Server/Index.php:96 msgid "Delete all your settings for the remote server" msgstr "" -#: src/Module/Settings/Server/Index.php:111 +#: src/Module/Settings/Server/Index.php:97 msgid "Save changes" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:69 -#: src/Module/Settings/TwoFactor/Recovery.php:67 -#: src/Module/Settings/TwoFactor/Trusted.php:70 -#: src/Module/Settings/TwoFactor/Verify.php:72 +#: src/Module/Settings/TwoFactor/AppSpecific.php:55 +#: src/Module/Settings/TwoFactor/Recovery.php:53 +#: src/Module/Settings/TwoFactor/Trusted.php:56 +#: src/Module/Settings/TwoFactor/Verify.php:58 msgid "Please enter your password to access this page." msgstr "Introduïu la vostra contrasenya per accedir a aquesta pàgina." -#: src/Module/Settings/TwoFactor/AppSpecific.php:87 +#: src/Module/Settings/TwoFactor/AppSpecific.php:73 msgid "App-specific password generation failed: The description is empty." msgstr "Ha fallat la generació de contrasenya específica per a l’aplicació: la descripció està buida." -#: src/Module/Settings/TwoFactor/AppSpecific.php:90 +#: src/Module/Settings/TwoFactor/AppSpecific.php:76 msgid "" "App-specific password generation failed: This description already exists." msgstr "Ha fallat la generació de contrasenya específica per a l'aplicació: aquesta descripció ja existeix" -#: src/Module/Settings/TwoFactor/AppSpecific.php:94 +#: src/Module/Settings/TwoFactor/AppSpecific.php:80 msgid "New app-specific password generated." msgstr "S'ha generat una contrasenya nova específica per a l'aplicació." -#: src/Module/Settings/TwoFactor/AppSpecific.php:100 +#: src/Module/Settings/TwoFactor/AppSpecific.php:86 msgid "App-specific passwords successfully revoked." msgstr "Les contrasenyes específiques de l'aplicació s'han revocat correctament." -#: src/Module/Settings/TwoFactor/AppSpecific.php:110 +#: src/Module/Settings/TwoFactor/AppSpecific.php:96 msgid "App-specific password successfully revoked." msgstr "La contrasenya específica de l'aplicació s'ha revocat correctament." -#: src/Module/Settings/TwoFactor/AppSpecific.php:131 +#: src/Module/Settings/TwoFactor/AppSpecific.php:117 msgid "Two-factor app-specific passwords" msgstr "Contrasenyes específiques per a l'aplicació de dos factors" -#: src/Module/Settings/TwoFactor/AppSpecific.php:133 +#: src/Module/Settings/TwoFactor/AppSpecific.php:119 msgid "" "App-specific passwords are randomly generated passwords used instead your" " regular password to authenticate your account on third-party applications " "that don't support two-factor authentication.
" msgstr "Les contrasenyes específiques de l’aplicació són contrasenyes generades aleatòriament en lloc de la contrasenya habitual per autenticar el vostre compte en aplicacions de tercers que no admeten l’autenticació de dos factors
" -#: src/Module/Settings/TwoFactor/AppSpecific.php:134 +#: src/Module/Settings/TwoFactor/AppSpecific.php:120 msgid "" "Make sure to copy your new app-specific password now. You won’t be able to " "see it again!" msgstr "Assegureu-vos de copiar la vostra nova contrasenya específica de l'aplicació ara. No el podreu tornar a veure!" -#: src/Module/Settings/TwoFactor/AppSpecific.php:138 +#: src/Module/Settings/TwoFactor/AppSpecific.php:124 msgid "Last Used" msgstr "Últim utilitzat" -#: src/Module/Settings/TwoFactor/AppSpecific.php:139 +#: src/Module/Settings/TwoFactor/AppSpecific.php:125 msgid "Revoke" msgstr "Revocar" -#: src/Module/Settings/TwoFactor/AppSpecific.php:140 +#: src/Module/Settings/TwoFactor/AppSpecific.php:126 msgid "Revoke All" msgstr "Revoca tot" -#: src/Module/Settings/TwoFactor/AppSpecific.php:143 +#: src/Module/Settings/TwoFactor/AppSpecific.php:129 msgid "" "When you generate a new app-specific password, you must use it right away, " "it will be shown to you once after you generate it." msgstr "Quan genereu una contrasenya nova específica de l’aplicació, l’heu d’utilitzar de seguida, us la mostrarà un cop després de generar-la." -#: src/Module/Settings/TwoFactor/AppSpecific.php:144 +#: src/Module/Settings/TwoFactor/AppSpecific.php:130 msgid "Generate new app-specific password" msgstr "Genereu una contrasenya nova específica de l'aplicació" -#: src/Module/Settings/TwoFactor/AppSpecific.php:145 +#: src/Module/Settings/TwoFactor/AppSpecific.php:131 msgid "Friendiqa on my Fairphone 2..." msgstr "Friendica al meu Fairphone 2." -#: src/Module/Settings/TwoFactor/AppSpecific.php:146 +#: src/Module/Settings/TwoFactor/AppSpecific.php:132 msgid "Generate" msgstr "generar" -#: src/Module/Settings/TwoFactor/Index.php:88 +#: src/Module/Settings/TwoFactor/Index.php:74 msgid "Two-factor authentication successfully disabled." msgstr "S'ha desactivat correctament l'autenticació de dos factors." -#: src/Module/Settings/TwoFactor/Index.php:141 +#: src/Module/Settings/TwoFactor/Index.php:127 msgid "" "Use an application on a mobile device to get two-factor authentication " "codes when prompted on login.
" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:145 +#: src/Module/Settings/TwoFactor/Index.php:131 msgid "Authenticator app" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:146 +#: src/Module/Settings/TwoFactor/Index.php:132 msgid "Configured" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:146 +#: src/Module/Settings/TwoFactor/Index.php:132 msgid "Not Configured" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:147 +#: src/Module/Settings/TwoFactor/Index.php:133 msgid "You haven't finished configuring your authenticator app.
" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:148 +#: src/Module/Settings/TwoFactor/Index.php:134 msgid "Your authenticator app is correctly configured.
" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:150 +#: src/Module/Settings/TwoFactor/Index.php:136 msgid "Recovery codes" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:151 +#: src/Module/Settings/TwoFactor/Index.php:137 msgid "Remaining valid codes" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:153 +#: src/Module/Settings/TwoFactor/Index.php:139 msgid "" "These one-use codes can replace an authenticator app code in case you " "have lost access to it.
" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:155 +#: src/Module/Settings/TwoFactor/Index.php:141 msgid "App-specific passwords" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:156 +#: src/Module/Settings/TwoFactor/Index.php:142 msgid "Generated app-specific passwords" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:158 +#: src/Module/Settings/TwoFactor/Index.php:144 msgid "" "These randomly generated passwords allow you to authenticate on apps not " "supporting two-factor authentication.
" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:161 +#: src/Module/Settings/TwoFactor/Index.php:147 msgid "Current password:" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:161 +#: src/Module/Settings/TwoFactor/Index.php:147 msgid "" "You need to provide your current password to change two-factor " "authentication settings." msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:162 +#: src/Module/Settings/TwoFactor/Index.php:148 msgid "Enable two-factor authentication" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:163 +#: src/Module/Settings/TwoFactor/Index.php:149 msgid "Disable two-factor authentication" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:164 +#: src/Module/Settings/TwoFactor/Index.php:150 msgid "Show recovery codes" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:165 +#: src/Module/Settings/TwoFactor/Index.php:151 msgid "Manage app-specific passwords" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:166 +#: src/Module/Settings/TwoFactor/Index.php:152 msgid "Manage trusted browsers" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:167 +#: src/Module/Settings/TwoFactor/Index.php:153 msgid "Finish app configuration" msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:83 +#: src/Module/Settings/TwoFactor/Recovery.php:69 msgid "New recovery codes successfully generated." msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:109 +#: src/Module/Settings/TwoFactor/Recovery.php:95 msgid "Two-factor recovery codes" msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:111 +#: src/Module/Settings/TwoFactor/Recovery.php:97 msgid "" "Recovery codes can be used to access your account in the event you lose " "access to your device and cannot receive two-factor authentication " @@ -11266,68 +11317,68 @@ msgid "" "account.
" msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:113 +#: src/Module/Settings/TwoFactor/Recovery.php:99 msgid "" "When you generate new recovery codes, you must copy the new codes. Your old " "codes won’t work anymore." msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:114 +#: src/Module/Settings/TwoFactor/Recovery.php:100 msgid "Generate new recovery codes" msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:116 +#: src/Module/Settings/TwoFactor/Recovery.php:102 msgid "Next: Verification" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:87 +#: src/Module/Settings/TwoFactor/Trusted.php:73 msgid "Trusted browsers successfully removed." msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:97 +#: src/Module/Settings/TwoFactor/Trusted.php:83 msgid "Trusted browser successfully removed." msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:139 +#: src/Module/Settings/TwoFactor/Trusted.php:125 msgid "Two-factor Trusted Browsers" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:140 +#: src/Module/Settings/TwoFactor/Trusted.php:126 msgid "" "Trusted browsers are individual browsers you chose to skip two-factor " "authentication to access Friendica. Please use this feature sparingly, as it" " can negate the benefit of two-factor authentication." msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:141 +#: src/Module/Settings/TwoFactor/Trusted.php:127 msgid "Device" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:142 +#: src/Module/Settings/TwoFactor/Trusted.php:128 msgid "OS" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:144 +#: src/Module/Settings/TwoFactor/Trusted.php:130 msgid "Trusted" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:145 +#: src/Module/Settings/TwoFactor/Trusted.php:131 msgid "Created At" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:146 +#: src/Module/Settings/TwoFactor/Trusted.php:132 msgid "Last Use" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:148 +#: src/Module/Settings/TwoFactor/Trusted.php:134 msgid "Remove All" msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:94 +#: src/Module/Settings/TwoFactor/Verify.php:80 msgid "Two-factor authentication successfully activated." msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:128 +#: src/Module/Settings/TwoFactor/Verify.php:114 #, php-format msgid "" "Or you can submit the authentication settings manually:
\n" @@ -11347,105 +11398,105 @@ msgid "" "" msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:148 +#: src/Module/Settings/TwoFactor/Verify.php:134 msgid "Two-factor code verification" msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:150 +#: src/Module/Settings/TwoFactor/Verify.php:136 msgid "" "Please scan this QR Code with your authenticator app and submit the " "provided code.
" msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:152 +#: src/Module/Settings/TwoFactor/Verify.php:138 #, php-format msgid "" "Or you can open the following URL in your mobile device:
" msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:159 +#: src/Module/Settings/TwoFactor/Verify.php:145 msgid "Verify code and enable two-factor authentication" msgstr "" -#: src/Module/Settings/UserExport.php:90 +#: src/Module/Settings/UserExport.php:76 msgid "Export account" msgstr "Exportar compte" -#: src/Module/Settings/UserExport.php:90 +#: src/Module/Settings/UserExport.php:76 msgid "" "Export your account info and contacts. Use this to make a backup of your " "account and/or to move it to another server." msgstr "Exportar la teva informació del compte i de contactes. Empra això per fer una còpia de seguretat del teu compte i/o moure'l cap altre servidor. " -#: src/Module/Settings/UserExport.php:91 +#: src/Module/Settings/UserExport.php:77 msgid "Export all" msgstr "Exportar tot" -#: src/Module/Settings/UserExport.php:91 +#: src/Module/Settings/UserExport.php:77 msgid "" "Export your account info, contacts and all your items as json. Could be a " "very big file, and could take a lot of time. Use this to make a full backup " "of your account (photos are not exported)" msgstr "" -#: src/Module/Settings/UserExport.php:92 +#: src/Module/Settings/UserExport.php:78 msgid "Export Contacts to CSV" msgstr "" -#: src/Module/Settings/UserExport.php:92 +#: src/Module/Settings/UserExport.php:78 msgid "" "Export the list of the accounts you are following as CSV file. Compatible to" " e.g. Mastodon." msgstr "" -#: src/Module/Special/DisplayNotFound.php:35 +#: src/Module/Special/DisplayNotFound.php:21 msgid "The top-level post isn't visible." msgstr "" -#: src/Module/Special/DisplayNotFound.php:36 +#: src/Module/Special/DisplayNotFound.php:22 msgid "The top-level post was deleted." msgstr "" -#: src/Module/Special/DisplayNotFound.php:37 +#: src/Module/Special/DisplayNotFound.php:23 msgid "" "This node has blocked the top-level author or the author of the shared post." msgstr "" -#: src/Module/Special/DisplayNotFound.php:38 +#: src/Module/Special/DisplayNotFound.php:24 msgid "" "You have ignored or blocked the top-level author or the author of the shared" " post." msgstr "" -#: src/Module/Special/DisplayNotFound.php:39 +#: src/Module/Special/DisplayNotFound.php:25 msgid "" "You have ignored the top-level author's server or the shared post author's " "server." msgstr "" -#: src/Module/Special/DisplayNotFound.php:45 +#: src/Module/Special/DisplayNotFound.php:31 msgid "Conversation Not Found" msgstr "" -#: src/Module/Special/DisplayNotFound.php:46 +#: src/Module/Special/DisplayNotFound.php:32 msgid "Unfortunately, the requested conversation isn't available to you." msgstr "" -#: src/Module/Special/DisplayNotFound.php:47 +#: src/Module/Special/DisplayNotFound.php:33 msgid "Possible reasons include:" msgstr "" -#: src/Module/Special/HTTPException.php:78 +#: src/Module/Special/HTTPException.php:64 msgid "Stack trace:" msgstr "" -#: src/Module/Special/HTTPException.php:83 +#: src/Module/Special/HTTPException.php:69 #, php-format msgid "Exception thrown in %s:%d" msgstr "" -#: src/Module/Tos.php:58 src/Module/Tos.php:107 +#: src/Module/Tos.php:44 src/Module/Tos.php:93 msgid "" "At the time of registration, and for providing communications between the " "user account and their contacts, the user has to provide a display name (pen" @@ -11458,14 +11509,14 @@ msgid "" "settings, it is not necessary for communication." msgstr "" -#: src/Module/Tos.php:59 src/Module/Tos.php:108 +#: src/Module/Tos.php:45 src/Module/Tos.php:94 msgid "" "This data is required for communication and is passed on to the nodes of the" " communication partners and is stored there. Users can enter additional " "private data that may be transmitted to the communication partners accounts." msgstr "" -#: src/Module/Tos.php:60 src/Module/Tos.php:109 +#: src/Module/Tos.php:46 src/Module/Tos.php:95 #, php-format msgid "" "At any point in time a logged in user can export their account data from the" @@ -11476,121 +11527,121 @@ msgid "" "from the nodes of the communication partners." msgstr "" -#: src/Module/Tos.php:63 src/Module/Tos.php:106 +#: src/Module/Tos.php:49 src/Module/Tos.php:92 msgid "Privacy Statement" msgstr "" -#: src/Module/Tos.php:103 +#: src/Module/Tos.php:89 msgid "Rules" msgstr "" -#: src/Module/Update/Display.php:45 +#: src/Module/Update/Display.php:31 msgid "Parameter uri_id is missing." msgstr "" -#: src/Module/Update/Display.php:55 +#: src/Module/Update/Display.php:41 msgid "The requested item doesn't exist or has been deleted." msgstr "" -#: src/Module/User/Delegation.php:146 +#: src/Module/User/Delegation.php:132 #, php-format msgid "You are now logged in as %s" msgstr "" -#: src/Module/User/Delegation.php:185 +#: src/Module/User/Delegation.php:171 msgid "Switch between your accounts" msgstr "" -#: src/Module/User/Delegation.php:186 +#: src/Module/User/Delegation.php:172 msgid "Manage your accounts" msgstr "" -#: src/Module/User/Delegation.php:187 +#: src/Module/User/Delegation.php:173 msgid "" "Toggle between different identities or community/group pages which share " "your account details or which you have been granted \"manage\" permissions" msgstr "Alternar entre les diferents identitats o les pàgines de comunitats/grups que comparteixen les dades del seu compte o que se li ha concedit els permisos de \"administrar\"" -#: src/Module/User/Delegation.php:188 +#: src/Module/User/Delegation.php:174 msgid "Select an identity to manage: " msgstr "Seleccionar identitat a administrar:" -#: src/Module/User/Import.php:103 +#: src/Module/User/Import.php:90 msgid "User imports on closed servers can only be done by an administrator." msgstr "Les administracions de servidors tancats només poden ser realitzades per un administrador." -#: src/Module/User/Import.php:119 +#: src/Module/User/Import.php:106 msgid "Move account" msgstr "Moure el compte" -#: src/Module/User/Import.php:120 +#: src/Module/User/Import.php:107 msgid "You can import an account from another Friendica server." msgstr "Pots importar un compte d'un altre servidor Friendica" -#: src/Module/User/Import.php:121 +#: src/Module/User/Import.php:108 msgid "" "You need to export your account from the old server and upload it here. We " "will recreate your old account here with all your contacts. We will try also" " to inform your friends that you moved here." msgstr "Es necessari que exportis el teu compte de l'antic servidor i el pugis a aquest. Recrearem el teu antic compte aquí amb tots els teus contactes. Intentarem també informar als teus amics que t'has traslladat aquí." -#: src/Module/User/Import.php:122 +#: src/Module/User/Import.php:109 msgid "" "This feature is experimental. We can't import contacts from the OStatus " "network (GNU Social/Statusnet) or from Diaspora" msgstr "Aquesta característica és experimental. No podem importar contactes des de la xarxa OStatus(GNU Social/Statusnet) or from Diaspora" -#: src/Module/User/Import.php:123 +#: src/Module/User/Import.php:110 msgid "Account file" msgstr "Arxiu del compte" -#: src/Module/User/Import.php:123 +#: src/Module/User/Import.php:110 msgid "" "To export your account, go to \"Settings->Export your personal data\" and " "select \"Export account\"" msgstr "Per exportar el vostre compte, aneu a 'Configuració-> Exporta les vostres dades personals' i seleccioneu 'Exporta el compte'" -#: src/Module/User/Import.php:217 +#: src/Module/User/Import.php:204 msgid "Error decoding account file" msgstr "Error decodificant l'arxiu del compte" -#: src/Module/User/Import.php:222 +#: src/Module/User/Import.php:209 msgid "Error! No version data in file! This is not a Friendica account file?" msgstr "Error! No hi ha dades al arxiu! No es un arxiu de compte de Friendica?" -#: src/Module/User/Import.php:230 +#: src/Module/User/Import.php:217 #, php-format msgid "User '%s' already exists on this server!" msgstr "El usuari %s' ja existeix en aquest servidor!" -#: src/Module/User/Import.php:267 +#: src/Module/User/Import.php:254 msgid "User creation error" msgstr "Error en la creació de l'usuari" -#: src/Module/User/Import.php:316 +#: src/Module/User/Import.php:303 #, php-format msgid "%d contact not imported" msgid_plural "%d contacts not imported" msgstr[0] "%d contacte no importat" msgstr[1] "%d contactes no importats" -#: src/Module/User/Import.php:365 +#: src/Module/User/Import.php:352 msgid "User profile creation error" msgstr "Error en la creació del perfil d'usuari" -#: src/Module/User/Import.php:416 +#: src/Module/User/Import.php:403 msgid "Done. You can now login with your username and password" msgstr "Fet. Ja pots identificar-te amb el teu nom d'usuari i contrasenya" -#: src/Module/Welcome.php:44 +#: src/Module/Welcome.php:30 msgid "Welcome to Friendica" msgstr "Benvingut a Friendica" -#: src/Module/Welcome.php:45 +#: src/Module/Welcome.php:31 msgid "New Member Checklist" msgstr "Llista de Verificació dels Nous Membres" -#: src/Module/Welcome.php:46 +#: src/Module/Welcome.php:32 msgid "" "We would like to offer some tips and links to help make your experience " "enjoyable. Click any item to visit the relevant page. A link to this page " @@ -11598,33 +11649,33 @@ msgid "" "registration and then will quietly disappear." msgstr "Ens agradaria oferir alguns consells i enllaços per ajudar a fer la teva experiència agradable. Feu clic a qualsevol element per visitar la pàgina corresponent. Un enllaç a aquesta pàgina serà visible des de la pàgina d'inici durant dues setmanes després de la teva inscripció inicial i després desapareixerà en silenci." -#: src/Module/Welcome.php:48 +#: src/Module/Welcome.php:34 msgid "Getting Started" msgstr "Començem" -#: src/Module/Welcome.php:49 +#: src/Module/Welcome.php:35 msgid "Friendica Walk-Through" msgstr "Paseja per Friendica" -#: src/Module/Welcome.php:50 +#: src/Module/Welcome.php:36 msgid "" "On your Quick Start page - find a brief introduction to your " "profile and network tabs, make some new connections, and find some groups to" " join." msgstr "A la teva pàgina de Inici Ràpid - troba una breu presentació per les teves fitxes de perfil i xarxa, crea alguna nova connexió i troba algun grup per unir-te." -#: src/Module/Welcome.php:53 +#: src/Module/Welcome.php:39 msgid "Go to Your Settings" msgstr "Anar als Teus Ajustos" -#: src/Module/Welcome.php:54 +#: src/Module/Welcome.php:40 msgid "" "On your Settings page - change your initial password. Also make a " "note of your Identity Address. This looks just like an email address - and " "will be useful in making friends on the free social web." msgstr "En la de la seva configuració de la pàgina - canviï la contrasenya inicial. També prengui nota de la Adreça d'Identitat. Això s'assembla a una adreça de correu electrònic - i serà útil per fer amics a la xarxa social lliure." -#: src/Module/Welcome.php:55 +#: src/Module/Welcome.php:41 msgid "" "Review the other settings, particularly the privacy settings. An unpublished" " directory listing is like having an unlisted phone number. In general, you " @@ -11632,77 +11683,77 @@ msgid "" "potential friends know exactly how to find you." msgstr "Reviseu les altres configuracions, en particular la configuració de privadesa. Una llista de directoris no publicada és com tenir un número de telèfon no llistat. Normalment, hauria de publicar la seva llista - a menys que tots els seus amics i els amics potencials sàpiguen exactament com trobar-li." -#: src/Module/Welcome.php:59 +#: src/Module/Welcome.php:45 msgid "" "Upload a profile photo if you have not done so already. Studies have shown " "that people with real photos of themselves are ten times more likely to make" " friends than people who do not." msgstr "Puji una foto del seu perfil si encara no ho ha fet. Els estudis han demostrat que les persones amb fotos reals de ells mateixos tenen deu vegades més probabilitats de fer amics que les persones que no ho fan." -#: src/Module/Welcome.php:60 +#: src/Module/Welcome.php:46 msgid "Edit Your Profile" msgstr "Editar el Teu Perfil" -#: src/Module/Welcome.php:61 +#: src/Module/Welcome.php:47 msgid "" "Edit your default profile to your liking. Review the " "settings for hiding your list of friends and hiding the profile from unknown" " visitors." msgstr "Editi el perfil per defecte al seu gust. Reviseu la configuració per ocultar la seva llista d'amics i ocultar el perfil dels visitants desconeguts." -#: src/Module/Welcome.php:62 +#: src/Module/Welcome.php:48 msgid "Profile Keywords" msgstr "Paraules clau del Perfil" -#: src/Module/Welcome.php:63 +#: src/Module/Welcome.php:49 msgid "" "Set some public keywords for your profile which describe your interests. We " "may be able to find other people with similar interests and suggest " "friendships." msgstr "" -#: src/Module/Welcome.php:65 +#: src/Module/Welcome.php:51 msgid "Connecting" msgstr "Connectant" -#: src/Module/Welcome.php:67 +#: src/Module/Welcome.php:53 msgid "Importing Emails" msgstr "Important Emails" -#: src/Module/Welcome.php:68 +#: src/Module/Welcome.php:54 msgid "" "Enter your email access information on your Connector Settings page if you " "wish to import and interact with friends or mailing lists from your email " "INBOX" msgstr "Introduïu les dades d'accés al correu electrònic a la seva pàgina de configuració de connector, si es desitja importar i relacionar-se amb amics o llistes de correu de la seva bústia d'email" -#: src/Module/Welcome.php:69 +#: src/Module/Welcome.php:55 msgid "Go to Your Contacts Page" msgstr "Anar a la Teva Pàgina de Contactes" -#: src/Module/Welcome.php:70 +#: src/Module/Welcome.php:56 msgid "" "Your Contacts page is your gateway to managing friendships and connecting " "with friends on other networks. Typically you enter their address or site " "URL in the Add New Contact dialog." msgstr "La seva pàgina de Contactes és la seva porta d'entrada a la gestió de l'amistat i la connexió amb amics d'altres xarxes. Normalment, vostè entrar en la seva direcció o URL del lloc al diàleg Afegir Nou Contacte." -#: src/Module/Welcome.php:71 +#: src/Module/Welcome.php:57 msgid "Go to Your Site's Directory" msgstr "Anar al Teu Directori" -#: src/Module/Welcome.php:72 +#: src/Module/Welcome.php:58 msgid "" "The Directory page lets you find other people in this network or other " "federated sites. Look for a Connect or Follow link on " "their profile page. Provide your own Identity Address if requested." msgstr "La pàgina del Directori li permet trobar altres persones en aquesta xarxa o altres llocs federats. Busqui un enllaç Connectar o Seguir a la seva pàgina de perfil. Proporcioni la seva pròpia Adreça de Identitat si així ho sol·licita." -#: src/Module/Welcome.php:73 +#: src/Module/Welcome.php:59 msgid "Finding New People" msgstr "Trobar Gent Nova" -#: src/Module/Welcome.php:74 +#: src/Module/Welcome.php:60 msgid "" "On the side panel of the Contacts page are several tools to find new " "friends. We can match people by interest, look up people by name or " @@ -11711,412 +11762,408 @@ msgid "" "hours." msgstr "Al tauler lateral de la pàgina de contacte Hi ha diverses eines per trobar nous amics. Podem coincidir amb les persones per interesos, buscar persones pel nom o per interès, i oferir suggeriments basats en les relacions de la xarxa. En un nou lloc, els suggeriments d'amics, en general comencen a poblar el lloc a les 24 hores." -#: src/Module/Welcome.php:77 +#: src/Module/Welcome.php:63 msgid "Add Your Contacts To Circle" msgstr "" -#: src/Module/Welcome.php:78 +#: src/Module/Welcome.php:64 msgid "" "Once you have made some friends, organize them into private conversation " "circles from the sidebar of your Contacts page and then you can interact " "with each circle privately on your Network page." msgstr "" -#: src/Module/Welcome.php:80 +#: src/Module/Welcome.php:66 msgid "Why Aren't My Posts Public?" msgstr "Per que no es public el meu enviament?" -#: src/Module/Welcome.php:81 +#: src/Module/Welcome.php:67 msgid "" "Friendica respects your privacy. By default, your posts will only show up to" " people you've added as friends. For more information, see the help section " "from the link above." msgstr "Friendica respecta la teva privacitat. Per defecte, els teus enviaments només s'envien a gent que has afegit com a amic. Per més informació, mira la secció d'ajuda des de l'enllaç de dalt." -#: src/Module/Welcome.php:83 +#: src/Module/Welcome.php:69 msgid "Getting Help" msgstr "Demanant Ajuda" -#: src/Module/Welcome.php:84 +#: src/Module/Welcome.php:70 msgid "Go to the Help Section" msgstr "Anar a la secció d'Ajuda" -#: src/Module/Welcome.php:85 +#: src/Module/Welcome.php:71 msgid "" "Our help pages may be consulted for detail on other program" " features and resources." msgstr "A les nostres pàgines d'ajuda es poden consultar detalls sobre les característiques d'altres programes i recursos." -#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:161 +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:147 msgid "{0} wants to follow you" msgstr "" -#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:163 +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:149 msgid "{0} has started following you" msgstr "" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:96 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:82 #, php-format msgid "%s liked %s's post" msgstr "A %s li agrada l'enviament de %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:108 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:94 #, php-format msgid "%s disliked %s's post" msgstr "A %s no li agrada l'enviament de %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:120 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:106 #, php-format msgid "%s is attending %s's event" msgstr "" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:132 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:118 #, php-format msgid "%s is not attending %s's event" msgstr "" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:144 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:130 #, php-format msgid "%s may attending %s's event" msgstr "" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:174 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:160 #, php-format msgid "%s is now friends with %s" msgstr "%s es ara amic de %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:341 -#: src/Navigation/Notifications/Factory/FormattedNotify.php:379 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:327 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:365 #, php-format msgid "%s commented on %s's post" msgstr "%s va comentar en l'enviament de %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:378 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:364 #, php-format msgid "%s created a new post" msgstr "%s ha creat un enviament nou" -#: src/Navigation/Notifications/Factory/Introduction.php:133 +#: src/Navigation/Notifications/Factory/Introduction.php:118 msgid "Friend Suggestion" msgstr "Amics Suggerits " -#: src/Navigation/Notifications/Factory/Introduction.php:159 +#: src/Navigation/Notifications/Factory/Introduction.php:144 msgid "Friend/Connect Request" msgstr "Sol·licitud d'Amistat/Connexió" -#: src/Navigation/Notifications/Factory/Introduction.php:159 -msgid "New Follower" -msgstr "Nou Seguidor" - -#: src/Navigation/Notifications/Factory/Notification.php:134 +#: src/Navigation/Notifications/Factory/Notification.php:120 #, php-format msgid "%1$s wants to follow you" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:136 +#: src/Navigation/Notifications/Factory/Notification.php:122 #, php-format msgid "%1$s has started following you" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:208 +#: src/Navigation/Notifications/Factory/Notification.php:194 #, php-format msgid "%1$s liked your comment on %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:211 +#: src/Navigation/Notifications/Factory/Notification.php:197 #, php-format msgid "%1$s liked your post %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:218 +#: src/Navigation/Notifications/Factory/Notification.php:204 #, php-format msgid "%1$s disliked your comment on %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:221 +#: src/Navigation/Notifications/Factory/Notification.php:207 #, php-format msgid "%1$s disliked your post %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:228 +#: src/Navigation/Notifications/Factory/Notification.php:214 #, php-format msgid "%1$s shared your comment %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:231 -#: src/Navigation/Notifications/Factory/Notification.php:316 +#: src/Navigation/Notifications/Factory/Notification.php:217 +#: src/Navigation/Notifications/Factory/Notification.php:302 #, php-format msgid "%1$s shared your post %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:235 -#: src/Navigation/Notifications/Factory/Notification.php:305 +#: src/Navigation/Notifications/Factory/Notification.php:221 +#: src/Navigation/Notifications/Factory/Notification.php:291 #, php-format msgid "%1$s shared the post %2$s from %3$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:237 -#: src/Navigation/Notifications/Factory/Notification.php:307 +#: src/Navigation/Notifications/Factory/Notification.php:223 +#: src/Navigation/Notifications/Factory/Notification.php:293 #, php-format msgid "%1$s shared a post from %3$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:239 -#: src/Navigation/Notifications/Factory/Notification.php:309 +#: src/Navigation/Notifications/Factory/Notification.php:225 +#: src/Navigation/Notifications/Factory/Notification.php:295 #, php-format msgid "%1$s shared the post %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:241 -#: src/Navigation/Notifications/Factory/Notification.php:311 +#: src/Navigation/Notifications/Factory/Notification.php:227 +#: src/Navigation/Notifications/Factory/Notification.php:297 #, php-format msgid "%1$s shared a post" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:249 +#: src/Navigation/Notifications/Factory/Notification.php:235 #, php-format msgid "%1$s wants to attend your event %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:256 +#: src/Navigation/Notifications/Factory/Notification.php:242 #, php-format msgid "%1$s does not want to attend your event %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:263 +#: src/Navigation/Notifications/Factory/Notification.php:249 #, php-format msgid "%1$s maybe wants to attend your event %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:270 +#: src/Navigation/Notifications/Factory/Notification.php:256 #, php-format msgid "%1$s tagged you on %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:274 +#: src/Navigation/Notifications/Factory/Notification.php:260 #, php-format msgid "%1$s replied to you on %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:278 +#: src/Navigation/Notifications/Factory/Notification.php:264 #, php-format msgid "%1$s commented in your thread %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:282 +#: src/Navigation/Notifications/Factory/Notification.php:268 #, php-format msgid "%1$s commented on your comment %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:289 +#: src/Navigation/Notifications/Factory/Notification.php:275 #, php-format msgid "%1$s commented in their thread %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:291 +#: src/Navigation/Notifications/Factory/Notification.php:277 #, php-format msgid "%1$s commented in their thread" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:293 +#: src/Navigation/Notifications/Factory/Notification.php:279 #, php-format msgid "%1$s commented in the thread %2$s from %3$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:295 +#: src/Navigation/Notifications/Factory/Notification.php:281 #, php-format msgid "%1$s commented in the thread from %3$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:300 +#: src/Navigation/Notifications/Factory/Notification.php:286 #, php-format msgid "%1$s commented on your thread %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:225 -#: src/Navigation/Notifications/Repository/Notify.php:754 +#: src/Navigation/Notifications/Repository/Notify.php:211 +#: src/Navigation/Notifications/Repository/Notify.php:740 msgid "[Friendica:Notify]" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:293 +#: src/Navigation/Notifications/Repository/Notify.php:279 #, php-format msgid "%s New mail received at %s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:295 +#: src/Navigation/Notifications/Repository/Notify.php:281 #, php-format msgid "%1$s sent you a new private message at %2$s." msgstr "%1$s t'ha enviat un missatge privat nou en %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:296 +#: src/Navigation/Notifications/Repository/Notify.php:282 msgid "a private message" msgstr "un missatge privat" -#: src/Navigation/Notifications/Repository/Notify.php:296 +#: src/Navigation/Notifications/Repository/Notify.php:282 #, php-format msgid "%1$s sent you %2$s." msgstr "%1$s t'ha enviat %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:298 +#: src/Navigation/Notifications/Repository/Notify.php:284 #, php-format msgid "Please visit %s to view and/or reply to your private messages." msgstr "Per favor, visiteu %s per a veure i/o respondre els teus missatges privats." -#: src/Navigation/Notifications/Repository/Notify.php:328 +#: src/Navigation/Notifications/Repository/Notify.php:314 #, php-format msgid "%1$s commented on %2$s's %3$s %4$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:333 +#: src/Navigation/Notifications/Repository/Notify.php:319 #, php-format msgid "%1$s commented on your %2$s %3$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:337 +#: src/Navigation/Notifications/Repository/Notify.php:323 #, php-format msgid "%1$s commented on their %2$s %3$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:341 -#: src/Navigation/Notifications/Repository/Notify.php:788 +#: src/Navigation/Notifications/Repository/Notify.php:327 +#: src/Navigation/Notifications/Repository/Notify.php:774 #, php-format msgid "%1$s Comment to conversation #%2$d by %3$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:343 +#: src/Navigation/Notifications/Repository/Notify.php:329 #, php-format msgid "%s commented on an item/conversation you have been following." msgstr "%s ha comentat un element/conversació que estas seguint." -#: src/Navigation/Notifications/Repository/Notify.php:347 -#: src/Navigation/Notifications/Repository/Notify.php:362 -#: src/Navigation/Notifications/Repository/Notify.php:814 +#: src/Navigation/Notifications/Repository/Notify.php:333 +#: src/Navigation/Notifications/Repository/Notify.php:348 +#: src/Navigation/Notifications/Repository/Notify.php:800 #, php-format msgid "Please visit %s to view and/or reply to the conversation." msgstr "Si us pau, visiteu %s per a veure i/o respondre la conversació." -#: src/Navigation/Notifications/Repository/Notify.php:354 +#: src/Navigation/Notifications/Repository/Notify.php:340 #, php-format msgid "%s %s posted to your profile wall" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:356 +#: src/Navigation/Notifications/Repository/Notify.php:342 #, php-format msgid "%1$s posted to your profile wall at %2$s" msgstr "%1$s ha fet un enviament al teu mur de perfils en %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:357 +#: src/Navigation/Notifications/Repository/Notify.php:343 #, php-format msgid "%1$s posted to [url=%2$s]your wall[/url]" msgstr "%1$s enviat a [url=%2$s]teu mur[/url]" -#: src/Navigation/Notifications/Repository/Notify.php:370 +#: src/Navigation/Notifications/Repository/Notify.php:356 #, php-format msgid "%s Introduction received" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:372 +#: src/Navigation/Notifications/Repository/Notify.php:358 #, php-format msgid "You've received an introduction from '%1$s' at %2$s" msgstr "Has rebut una presentació des de '%1$s' en %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:373 +#: src/Navigation/Notifications/Repository/Notify.php:359 #, php-format msgid "You've received [url=%1$s]an introduction[/url] from %2$s." msgstr "Has rebut [url=%1$s] com a presentació[/url] des de %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:378 -#: src/Navigation/Notifications/Repository/Notify.php:424 +#: src/Navigation/Notifications/Repository/Notify.php:364 +#: src/Navigation/Notifications/Repository/Notify.php:410 #, php-format msgid "You may visit their profile at %s" msgstr "Pot visitar el seu perfil en %s" -#: src/Navigation/Notifications/Repository/Notify.php:380 +#: src/Navigation/Notifications/Repository/Notify.php:366 #, php-format msgid "Please visit %s to approve or reject the introduction." msgstr "Si us plau visiteu %s per aprovar o rebutjar la presentació." -#: src/Navigation/Notifications/Repository/Notify.php:387 +#: src/Navigation/Notifications/Repository/Notify.php:373 #, php-format msgid "%s A new person is sharing with you" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:389 -#: src/Navigation/Notifications/Repository/Notify.php:390 +#: src/Navigation/Notifications/Repository/Notify.php:375 +#: src/Navigation/Notifications/Repository/Notify.php:376 #, php-format msgid "%1$s is sharing with you at %2$s" msgstr "%1$s està compartint amb tú a %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:397 +#: src/Navigation/Notifications/Repository/Notify.php:383 #, php-format msgid "%s You have a new follower" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:399 -#: src/Navigation/Notifications/Repository/Notify.php:400 +#: src/Navigation/Notifications/Repository/Notify.php:385 +#: src/Navigation/Notifications/Repository/Notify.php:386 #, php-format msgid "You have a new follower at %2$s : %1$s" msgstr "Tens un nou seguidor a %2$s : %1$s" -#: src/Navigation/Notifications/Repository/Notify.php:413 +#: src/Navigation/Notifications/Repository/Notify.php:399 #, php-format msgid "%s Friend suggestion received" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:415 +#: src/Navigation/Notifications/Repository/Notify.php:401 #, php-format msgid "You've received a friend suggestion from '%1$s' at %2$s" msgstr "Has rebut una suggerencia d'amistat des de '%1$s' en %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:416 +#: src/Navigation/Notifications/Repository/Notify.php:402 #, php-format msgid "" "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." msgstr "Has rebut [url=%1$s] com a suggerencia d'amistat[/url] per a %2$s des de %3$s." -#: src/Navigation/Notifications/Repository/Notify.php:422 +#: src/Navigation/Notifications/Repository/Notify.php:408 msgid "Name:" msgstr "Nom:" -#: src/Navigation/Notifications/Repository/Notify.php:423 +#: src/Navigation/Notifications/Repository/Notify.php:409 msgid "Photo:" msgstr "Foto:" -#: src/Navigation/Notifications/Repository/Notify.php:426 +#: src/Navigation/Notifications/Repository/Notify.php:412 #, php-format msgid "Please visit %s to approve or reject the suggestion." msgstr "Si us plau, visiteu %s per aprovar o rebutjar la suggerencia." -#: src/Navigation/Notifications/Repository/Notify.php:434 -#: src/Navigation/Notifications/Repository/Notify.php:449 +#: src/Navigation/Notifications/Repository/Notify.php:420 +#: src/Navigation/Notifications/Repository/Notify.php:435 #, php-format msgid "%s Connection accepted" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:436 -#: src/Navigation/Notifications/Repository/Notify.php:451 +#: src/Navigation/Notifications/Repository/Notify.php:422 +#: src/Navigation/Notifications/Repository/Notify.php:437 #, php-format msgid "'%1$s' has accepted your connection request at %2$s" msgstr "'%1$s' ha acceptat la teva petició de conexió a %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:437 -#: src/Navigation/Notifications/Repository/Notify.php:452 +#: src/Navigation/Notifications/Repository/Notify.php:423 +#: src/Navigation/Notifications/Repository/Notify.php:438 #, php-format msgid "%2$s has accepted your [url=%1$s]connection request[/url]." msgstr "%2$s ha acceptat el teu [url=%1$s]sol·licitud de connexió[/url]." -#: src/Navigation/Notifications/Repository/Notify.php:442 +#: src/Navigation/Notifications/Repository/Notify.php:428 msgid "" "You are now mutual friends and may exchange status updates, photos, and " "email without restriction." msgstr "Ara sou amics mutus i podeu intercanviar actualitzacions d'estat, fotos i correu electrònic sense restriccions." -#: src/Navigation/Notifications/Repository/Notify.php:444 +#: src/Navigation/Notifications/Repository/Notify.php:430 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr " Visiteu%ssi voleu fer canvis en aquesta relació." -#: src/Navigation/Notifications/Repository/Notify.php:457 +#: src/Navigation/Notifications/Repository/Notify.php:443 #, php-format msgid "" "'%1$s' has chosen to accept you a fan, which restricts some forms of " @@ -12125,34 +12172,34 @@ msgid "" "automatically." msgstr "'%1$s' ha decidit acceptar-vos un fan, que restringeix algunes formes de comunicació, com ara la missatgeria privada i algunes interaccions de perfils. Si es tracta d’una pàgina de celebritat o comunitat, aquestes opcions s’apliquen automàticament." -#: src/Navigation/Notifications/Repository/Notify.php:459 +#: src/Navigation/Notifications/Repository/Notify.php:445 #, php-format msgid "" "'%1$s' may choose to extend this into a two-way or more permissive " "relationship in the future." msgstr "'%1$s' pot decidir optar per ampliar-la en una relació bidireccional o més permissiva en el futur." -#: src/Navigation/Notifications/Repository/Notify.php:461 +#: src/Navigation/Notifications/Repository/Notify.php:447 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "Visiteu%s si voleu fer canvis en aquesta relació." -#: src/Navigation/Notifications/Repository/Notify.php:471 +#: src/Navigation/Notifications/Repository/Notify.php:457 msgid "registration request" msgstr "sol·licitud de registre" -#: src/Navigation/Notifications/Repository/Notify.php:473 +#: src/Navigation/Notifications/Repository/Notify.php:459 #, php-format msgid "You've received a registration request from '%1$s' at %2$s" msgstr "Heu rebut una sol·licitud de registre de '%1$s' a %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:474 +#: src/Navigation/Notifications/Repository/Notify.php:460 #, php-format msgid "You've received a [url=%1$s]registration request[/url] from %2$s." msgstr "Heu rebut un [url=%1$s]sol·licitud de registre[/url] from %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:479 -#: src/Navigation/Notifications/Repository/Notify.php:500 +#: src/Navigation/Notifications/Repository/Notify.php:465 +#: src/Navigation/Notifications/Repository/Notify.php:486 #, php-format msgid "" "Display Name:\t%s\n" @@ -12160,768 +12207,755 @@ msgid "" "Login Name:\t%s (%s)" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:485 +#: src/Navigation/Notifications/Repository/Notify.php:471 #, php-format msgid "Please visit %s to approve or reject the request." msgstr "Visiteu %s per aprovar o rebutjar la sol·licitud." -#: src/Navigation/Notifications/Repository/Notify.php:492 +#: src/Navigation/Notifications/Repository/Notify.php:478 msgid "new registration" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:494 +#: src/Navigation/Notifications/Repository/Notify.php:480 #, php-format msgid "You've received a new registration from '%1$s' at %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:495 +#: src/Navigation/Notifications/Repository/Notify.php:481 #, php-format msgid "You've received a [url=%1$s]new registration[/url] from %2$s." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:506 +#: src/Navigation/Notifications/Repository/Notify.php:492 #, php-format msgid "Please visit %s to have a look at the new registration." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:782 +#: src/Navigation/Notifications/Repository/Notify.php:768 #, php-format msgid "%s %s tagged you" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:785 +#: src/Navigation/Notifications/Repository/Notify.php:771 #, php-format msgid "%s %s shared a new post" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:793 +#: src/Navigation/Notifications/Repository/Notify.php:779 #, php-format msgid "%1$s %2$s liked your post #%3$d" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:796 +#: src/Navigation/Notifications/Repository/Notify.php:782 #, php-format msgid "%1$s %2$s liked your comment on #%3$d" msgstr "" -#: src/Object/EMail/ItemCCEMail.php:42 +#: src/Object/EMail/ItemCCEMail.php:28 #, php-format msgid "" "This message was sent to you by %s, a member of the Friendica social " "network." msgstr "Aquest missatge va ser enviat a vostè per %s, un membre de la xarxa social Friendica." -#: src/Object/EMail/ItemCCEMail.php:44 +#: src/Object/EMail/ItemCCEMail.php:30 #, php-format msgid "You may visit them online at %s" msgstr "El pot visitar en línia a %s" -#: src/Object/EMail/ItemCCEMail.php:45 +#: src/Object/EMail/ItemCCEMail.php:31 msgid "" "Please contact the sender by replying to this post if you do not wish to " "receive these messages." msgstr "Si us plau, poseu-vos en contacte amb el remitent responent a aquest missatge si no voleu rebre aquests missatges." -#: src/Object/EMail/ItemCCEMail.php:49 +#: src/Object/EMail/ItemCCEMail.php:35 #, php-format msgid "%s posted an update." msgstr "%s ha publicat una actualització." -#: src/Object/Post.php:138 +#: src/Object/Post.php:124 msgid "Private Message" msgstr "Missatge Privat" -#: src/Object/Post.php:142 +#: src/Object/Post.php:128 msgid "Public Message" msgstr "" -#: src/Object/Post.php:146 +#: src/Object/Post.php:132 msgid "Unlisted Message" msgstr "" -#: src/Object/Post.php:182 +#: src/Object/Post.php:168 msgid "This entry was edited" msgstr "L'entrada fou editada" -#: src/Object/Post.php:210 +#: src/Object/Post.php:196 msgid "Connector Message" msgstr "" -#: src/Object/Post.php:226 src/Object/Post.php:228 +#: src/Object/Post.php:225 src/Object/Post.php:227 msgid "Edit" msgstr "Editar" -#: src/Object/Post.php:262 +#: src/Object/Post.php:261 msgid "Delete globally" msgstr "" -#: src/Object/Post.php:262 +#: src/Object/Post.php:261 msgid "Remove locally" msgstr "" -#: src/Object/Post.php:269 +#: src/Object/Post.php:268 #, php-format msgid "Block %s" msgstr "" -#: src/Object/Post.php:274 +#: src/Object/Post.php:273 #, php-format msgid "Ignore %s" msgstr "" -#: src/Object/Post.php:279 +#: src/Object/Post.php:278 #, php-format msgid "Collapse %s" msgstr "" -#: src/Object/Post.php:283 +#: src/Object/Post.php:282 msgid "Report post" msgstr "" -#: src/Object/Post.php:294 +#: src/Object/Post.php:293 msgid "Save to folder" msgstr "" -#: src/Object/Post.php:334 +#: src/Object/Post.php:333 msgid "I will attend" msgstr "" -#: src/Object/Post.php:334 +#: src/Object/Post.php:333 msgid "I will not attend" msgstr "" -#: src/Object/Post.php:334 +#: src/Object/Post.php:333 msgid "I might attend" msgstr "" -#: src/Object/Post.php:381 +#: src/Object/Post.php:380 msgid "Ignore thread" msgstr "" -#: src/Object/Post.php:382 +#: src/Object/Post.php:381 msgid "Unignore thread" msgstr "" -#: src/Object/Post.php:383 +#: src/Object/Post.php:382 msgid "Toggle ignore status" msgstr "" -#: src/Object/Post.php:393 +#: src/Object/Post.php:392 msgid "Add star" msgstr "" -#: src/Object/Post.php:394 +#: src/Object/Post.php:393 msgid "Remove star" msgstr "" -#: src/Object/Post.php:395 +#: src/Object/Post.php:394 msgid "Toggle star status" msgstr "" -#: src/Object/Post.php:406 +#: src/Object/Post.php:405 msgid "Pin" msgstr "" -#: src/Object/Post.php:407 +#: src/Object/Post.php:406 msgid "Unpin" msgstr "" -#: src/Object/Post.php:408 +#: src/Object/Post.php:407 msgid "Toggle pin status" msgstr "" -#: src/Object/Post.php:411 +#: src/Object/Post.php:410 msgid "Pinned" msgstr "" -#: src/Object/Post.php:416 +#: src/Object/Post.php:415 msgid "Add tag" msgstr "" -#: src/Object/Post.php:429 +#: src/Object/Post.php:430 msgid "Quote share this" msgstr "" -#: src/Object/Post.php:429 +#: src/Object/Post.php:430 msgid "Quote Share" msgstr "" -#: src/Object/Post.php:432 +#: src/Object/Post.php:433 msgid "Reshare this" msgstr "" -#: src/Object/Post.php:432 +#: src/Object/Post.php:433 msgid "Reshare" msgstr "" -#: src/Object/Post.php:433 +#: src/Object/Post.php:434 msgid "Cancel your Reshare" msgstr "" -#: src/Object/Post.php:433 +#: src/Object/Post.php:434 msgid "Unshare" msgstr "" -#: src/Object/Post.php:485 +#: src/Object/Post.php:478 #, php-format msgid "%s (Received %s)" msgstr "" -#: src/Object/Post.php:491 +#: src/Object/Post.php:484 msgid "Comment this item on your system" msgstr "" -#: src/Object/Post.php:491 +#: src/Object/Post.php:484 msgid "Remote comment" msgstr "" -#: src/Object/Post.php:513 +#: src/Object/Post.php:506 msgid "Share via ..." msgstr "" -#: src/Object/Post.php:513 +#: src/Object/Post.php:506 msgid "Share via external services" msgstr "" -#: src/Object/Post.php:520 +#: src/Object/Post.php:513 msgid "Unknown parent" msgstr "" -#: src/Object/Post.php:524 +#: src/Object/Post.php:517 #, php-format msgid "in reply to %s" msgstr "" -#: src/Object/Post.php:526 +#: src/Object/Post.php:519 msgid "Parent is probably private or not federated." msgstr "" -#: src/Object/Post.php:550 +#: src/Object/Post.php:543 msgid "to" msgstr "a" -#: src/Object/Post.php:551 +#: src/Object/Post.php:544 msgid "via" msgstr "via" -#: src/Object/Post.php:552 +#: src/Object/Post.php:545 msgid "Wall-to-Wall" msgstr "Mur-a-Mur" -#: src/Object/Post.php:553 +#: src/Object/Post.php:546 msgid "via Wall-To-Wall:" msgstr "via Mur-a-Mur" -#: src/Object/Post.php:604 +#: src/Object/Post.php:599 #, php-format msgid "Reply to %s" msgstr "" -#: src/Object/Post.php:607 +#: src/Object/Post.php:602 msgid "More" msgstr "" -#: src/Object/Post.php:626 +#: src/Object/Post.php:621 msgid "Notifier task is pending" msgstr "" -#: src/Object/Post.php:627 +#: src/Object/Post.php:622 msgid "Delivery to remote servers is pending" msgstr "" -#: src/Object/Post.php:628 +#: src/Object/Post.php:623 msgid "Delivery to remote servers is underway" msgstr "" -#: src/Object/Post.php:629 +#: src/Object/Post.php:624 msgid "Delivery to remote servers is mostly done" msgstr "" -#: src/Object/Post.php:630 +#: src/Object/Post.php:625 msgid "Delivery to remote servers is done" msgstr "" -#: src/Object/Post.php:652 +#: src/Object/Post.php:647 #, php-format msgid "%d comment" msgid_plural "%d comments" msgstr[0] "%d comentari" msgstr[1] "%d comentaris" -#: src/Object/Post.php:653 +#: src/Object/Post.php:648 msgid "Show more" msgstr "" -#: src/Object/Post.php:654 +#: src/Object/Post.php:649 msgid "Show fewer" msgstr "" -#: src/Object/Post.php:691 +#: src/Object/Post.php:686 #, php-format msgid "Reshared by: %s" msgstr "" -#: src/Object/Post.php:696 +#: src/Object/Post.php:691 #, php-format msgid "Viewed by: %s" msgstr "" -#: src/Object/Post.php:701 +#: src/Object/Post.php:696 #, php-format msgid "Read by: %s" msgstr "" -#: src/Object/Post.php:706 +#: src/Object/Post.php:701 #, php-format msgid "Liked by: %s" msgstr "" -#: src/Object/Post.php:711 +#: src/Object/Post.php:706 #, php-format msgid "Disliked by: %s" msgstr "" -#: src/Object/Post.php:716 +#: src/Object/Post.php:711 #, php-format msgid "Attended by: %s" msgstr "" -#: src/Object/Post.php:721 +#: src/Object/Post.php:716 #, php-format msgid "Maybe attended by: %s" msgstr "" -#: src/Object/Post.php:726 +#: src/Object/Post.php:721 #, php-format msgid "Not attended by: %s" msgstr "" -#: src/Object/Post.php:731 +#: src/Object/Post.php:726 #, php-format msgid "Commented by: %s" msgstr "" -#: src/Object/Post.php:736 +#: src/Object/Post.php:731 #, php-format msgid "Reacted with %s by: %s" msgstr "" -#: src/Object/Post.php:759 +#: src/Object/Post.php:754 #, php-format msgid "Quote shared by: %s" msgstr "" -#: src/Protocol/ActivityPub/Receiver.php:568 +#: src/Protocol/ActivityPub/Receiver.php:557 msgid "Chat" msgstr "" -#: src/Protocol/Delivery.php:547 +#: src/Protocol/Delivery.php:530 msgid "(no subject)" msgstr "" -#: src/Protocol/OStatus.php:1390 -#, php-format -msgid "%s is now following %s." -msgstr "" - -#: src/Protocol/OStatus.php:1391 -msgid "following" -msgstr "seguint" - -#: src/Protocol/OStatus.php:1394 -#, php-format -msgid "%s stopped following %s." -msgstr "" - -#: src/Protocol/OStatus.php:1395 -msgid "stopped following" -msgstr "Deixar de seguir" - -#: src/Render/FriendicaSmartyEngine.php:56 +#: src/Render/FriendicaSmartyEngine.php:42 #, php-format msgid "The folder %s must be writable by webserver." msgstr "" -#: src/Security/Authentication.php:227 +#: src/Security/Authentication.php:200 msgid "Login failed." msgstr "Error d'accés." -#: src/Security/Authentication.php:272 +#: src/Security/Authentication.php:245 msgid "Login failed. Please check your credentials." msgstr "" -#: src/Security/Authentication.php:391 +#: src/Security/Authentication.php:359 #, php-format msgid "Welcome %s" msgstr "" -#: src/Security/Authentication.php:392 +#: src/Security/Authentication.php:360 msgid "Please upload a profile photo." msgstr "Per favor, carrega una foto per al perfil" -#: src/Util/EMailer/MailBuilder.php:260 +#: src/Security/OpenWebAuth.php:149 +#, php-format +msgid "OpenWebAuth: %1$s welcomes %2$s" +msgstr "" + +#: src/Util/EMailer/MailBuilder.php:246 msgid "Friendica Notification" msgstr "" -#: src/Util/EMailer/NotifyMailBuilder.php:78 -#: src/Util/EMailer/SystemMailBuilder.php:54 +#: src/Util/EMailer/NotifyMailBuilder.php:64 +#: src/Util/EMailer/SystemMailBuilder.php:40 #, php-format msgid "%1$s, %2$s Administrator" msgstr "" -#: src/Util/EMailer/NotifyMailBuilder.php:80 -#: src/Util/EMailer/SystemMailBuilder.php:56 +#: src/Util/EMailer/NotifyMailBuilder.php:66 +#: src/Util/EMailer/SystemMailBuilder.php:42 #, php-format msgid "%s Administrator" msgstr "" -#: src/Util/EMailer/NotifyMailBuilder.php:193 -#: src/Util/EMailer/NotifyMailBuilder.php:217 -#: src/Util/EMailer/SystemMailBuilder.php:101 -#: src/Util/EMailer/SystemMailBuilder.php:118 +#: src/Util/EMailer/NotifyMailBuilder.php:179 +#: src/Util/EMailer/NotifyMailBuilder.php:203 +#: src/Util/EMailer/SystemMailBuilder.php:87 +#: src/Util/EMailer/SystemMailBuilder.php:104 msgid "thanks" msgstr "" -#: src/Util/Temporal.php:172 +#: src/Util/Temporal.php:158 msgid "YYYY-MM-DD or MM-DD" msgstr "" -#: src/Util/Temporal.php:280 +#: src/Util/Temporal.php:266 #, php-format msgid "Time zone: %s Change in Settings" msgstr "" -#: src/Util/Temporal.php:320 src/Util/Temporal.php:329 +#: src/Util/Temporal.php:306 src/Util/Temporal.php:315 msgid "never" msgstr "" -#: src/Util/Temporal.php:343 +#: src/Util/Temporal.php:329 msgid "less than a second ago" msgstr "" -#: src/Util/Temporal.php:352 +#: src/Util/Temporal.php:338 msgid "year" msgstr "" -#: src/Util/Temporal.php:352 +#: src/Util/Temporal.php:338 msgid "years" msgstr "" -#: src/Util/Temporal.php:353 +#: src/Util/Temporal.php:339 msgid "months" msgstr "" -#: src/Util/Temporal.php:354 +#: src/Util/Temporal.php:340 msgid "weeks" msgstr "" -#: src/Util/Temporal.php:355 +#: src/Util/Temporal.php:341 msgid "days" msgstr "" -#: src/Util/Temporal.php:356 +#: src/Util/Temporal.php:342 msgid "hour" msgstr "" -#: src/Util/Temporal.php:356 +#: src/Util/Temporal.php:342 msgid "hours" msgstr "" -#: src/Util/Temporal.php:357 +#: src/Util/Temporal.php:343 msgid "minute" msgstr "" -#: src/Util/Temporal.php:357 +#: src/Util/Temporal.php:343 msgid "minutes" msgstr "" -#: src/Util/Temporal.php:358 +#: src/Util/Temporal.php:344 msgid "second" msgstr "" -#: src/Util/Temporal.php:358 +#: src/Util/Temporal.php:344 msgid "seconds" msgstr "" -#: src/Util/Temporal.php:367 +#: src/Util/Temporal.php:353 #, php-format msgid "in %1$d %2$s" msgstr "" -#: src/Util/Temporal.php:370 +#: src/Util/Temporal.php:356 #, php-format msgid "%1$d %2$s ago" msgstr "" -#: src/Worker/PushSubscription.php:110 +#: src/Worker/PushSubscription.php:96 msgid "Notification from Friendica" msgstr "" -#: src/Worker/PushSubscription.php:111 +#: src/Worker/PushSubscription.php:97 msgid "Empty Post" msgstr "" -#: view/theme/duepuntozero/config.php:68 +#: view/theme/duepuntozero/config.php:56 msgid "default" msgstr "" -#: view/theme/duepuntozero/config.php:69 +#: view/theme/duepuntozero/config.php:57 msgid "greenzero" msgstr "" -#: view/theme/duepuntozero/config.php:70 +#: view/theme/duepuntozero/config.php:58 msgid "purplezero" msgstr "" -#: view/theme/duepuntozero/config.php:71 +#: view/theme/duepuntozero/config.php:59 msgid "easterbunny" msgstr "" -#: view/theme/duepuntozero/config.php:72 +#: view/theme/duepuntozero/config.php:60 msgid "darkzero" msgstr "" -#: view/theme/duepuntozero/config.php:73 +#: view/theme/duepuntozero/config.php:61 msgid "comix" msgstr "" -#: view/theme/duepuntozero/config.php:74 +#: view/theme/duepuntozero/config.php:62 msgid "slackr" msgstr "" -#: view/theme/duepuntozero/config.php:87 +#: view/theme/duepuntozero/config.php:75 msgid "Variations" msgstr "" -#: view/theme/frio/config.php:146 +#: view/theme/frio/config.php:134 msgid "Note" msgstr "" -#: view/theme/frio/config.php:146 +#: view/theme/frio/config.php:134 msgid "Check image permissions if all users are allowed to see the image" msgstr "" -#: view/theme/frio/config.php:152 +#: view/theme/frio/config.php:140 msgid "Appearance" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Accent color" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Blue" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Red" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Purple" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Green" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Pink" msgstr "" -#: view/theme/frio/config.php:154 +#: view/theme/frio/config.php:142 msgid "Copy or paste schemestring" msgstr "" -#: view/theme/frio/config.php:154 +#: view/theme/frio/config.php:142 msgid "" "You can copy this string to share your theme with others. Pasting here " "applies the schemestring" msgstr "" -#: view/theme/frio/config.php:155 +#: view/theme/frio/config.php:143 msgid "Navigation bar background color" msgstr "" -#: view/theme/frio/config.php:156 +#: view/theme/frio/config.php:144 msgid "Navigation bar icon color " msgstr "" -#: view/theme/frio/config.php:157 +#: view/theme/frio/config.php:145 msgid "Link color" msgstr "" -#: view/theme/frio/config.php:158 +#: view/theme/frio/config.php:146 msgid "Set the background color" msgstr "" -#: view/theme/frio/config.php:159 +#: view/theme/frio/config.php:147 msgid "Content background opacity" msgstr "" -#: view/theme/frio/config.php:160 +#: view/theme/frio/config.php:148 msgid "Set the background image" msgstr "" -#: view/theme/frio/config.php:161 +#: view/theme/frio/config.php:149 msgid "Background image style" msgstr "" -#: view/theme/frio/config.php:164 +#: view/theme/frio/config.php:152 msgid "Always open Compose page" msgstr "" -#: view/theme/frio/config.php:164 +#: view/theme/frio/config.php:152 msgid "" "The New Post button always open the Compose page " "instead of the modal form. When this is disabled, the Compose page can be " "accessed with a middle click on the link or from the modal." msgstr "" -#: view/theme/frio/config.php:168 +#: view/theme/frio/config.php:156 msgid "Login page background image" msgstr "" -#: view/theme/frio/config.php:172 +#: view/theme/frio/config.php:160 msgid "Login page background color" msgstr "" -#: view/theme/frio/config.php:172 +#: view/theme/frio/config.php:160 msgid "Leave background image and color empty for theme defaults" msgstr "" -#: view/theme/frio/php/Image.php:39 +#: view/theme/frio/php/Image.php:27 msgid "Top Banner" msgstr "" -#: view/theme/frio/php/Image.php:39 +#: view/theme/frio/php/Image.php:27 msgid "" "Resize image to the width of the screen and show background color below on " "long pages." msgstr "" -#: view/theme/frio/php/Image.php:40 +#: view/theme/frio/php/Image.php:28 msgid "Full screen" msgstr "" -#: view/theme/frio/php/Image.php:40 +#: view/theme/frio/php/Image.php:28 msgid "" "Resize image to fill entire screen, clipping either the right or the bottom." msgstr "" -#: view/theme/frio/php/Image.php:41 +#: view/theme/frio/php/Image.php:29 msgid "Single row mosaic" msgstr "" -#: view/theme/frio/php/Image.php:41 +#: view/theme/frio/php/Image.php:29 msgid "" "Resize image to repeat it on a single row, either vertical or horizontal." msgstr "" -#: view/theme/frio/php/Image.php:42 +#: view/theme/frio/php/Image.php:30 msgid "Mosaic" msgstr "" -#: view/theme/frio/php/Image.php:42 +#: view/theme/frio/php/Image.php:30 msgid "Repeat image to fill the screen." msgstr "" -#: view/theme/frio/php/default.php:82 view/theme/frio/php/standard.php:40 +#: view/theme/frio/php/default.php:70 view/theme/frio/php/standard.php:28 msgid "Skip to main content" msgstr "" -#: view/theme/frio/php/default.php:153 view/theme/frio/php/standard.php:75 +#: view/theme/frio/php/default.php:141 view/theme/frio/php/standard.php:63 msgid "Back to top" msgstr "" -#: view/theme/frio/php/scheme.php:105 +#: view/theme/frio/php/scheme.php:93 msgid "Light" msgstr "" -#: view/theme/frio/php/scheme.php:106 +#: view/theme/frio/php/scheme.php:94 msgid "Dark" msgstr "" -#: view/theme/frio/php/scheme.php:107 +#: view/theme/frio/php/scheme.php:95 msgid "Black" msgstr "" -#: view/theme/frio/php/scheme.php:118 +#: view/theme/frio/php/scheme.php:106 msgid "Custom" msgstr "" -#: view/theme/frio/theme.php:214 +#: view/theme/frio/theme.php:202 msgid "Guest" msgstr "" -#: view/theme/frio/theme.php:217 +#: view/theme/frio/theme.php:205 msgid "Visitor" msgstr "" -#: view/theme/quattro/config.php:89 +#: view/theme/quattro/config.php:77 msgid "Alignment" msgstr "" -#: view/theme/quattro/config.php:89 +#: view/theme/quattro/config.php:77 msgid "Left" msgstr "" -#: view/theme/quattro/config.php:89 +#: view/theme/quattro/config.php:77 msgid "Center" msgstr "" -#: view/theme/quattro/config.php:90 +#: view/theme/quattro/config.php:78 msgid "Color scheme" msgstr "" -#: view/theme/quattro/config.php:91 +#: view/theme/quattro/config.php:79 msgid "Posts font size" msgstr "" -#: view/theme/quattro/config.php:92 +#: view/theme/quattro/config.php:80 msgid "Textareas font size" msgstr "" -#: view/theme/vier/config.php:91 +#: view/theme/vier/config.php:79 msgid "Comma separated list of helper groups" msgstr "" -#: view/theme/vier/config.php:131 +#: view/theme/vier/config.php:119 msgid "don't show" msgstr "" -#: view/theme/vier/config.php:131 +#: view/theme/vier/config.php:119 msgid "show" msgstr "" -#: view/theme/vier/config.php:137 +#: view/theme/vier/config.php:125 msgid "Set style" msgstr "" -#: view/theme/vier/config.php:138 +#: view/theme/vier/config.php:126 msgid "Community Pages" msgstr "" -#: view/theme/vier/config.php:139 view/theme/vier/theme.php:148 +#: view/theme/vier/config.php:127 view/theme/vier/theme.php:136 msgid "Community Profiles" msgstr "" -#: view/theme/vier/config.php:140 +#: view/theme/vier/config.php:128 msgid "Help or @NewHere ?" msgstr "" -#: view/theme/vier/config.php:141 view/theme/vier/theme.php:319 +#: view/theme/vier/config.php:129 view/theme/vier/theme.php:307 msgid "Connect Services" msgstr "" -#: view/theme/vier/config.php:142 +#: view/theme/vier/config.php:130 msgid "Find Friends" msgstr "" -#: view/theme/vier/config.php:143 view/theme/vier/theme.php:175 +#: view/theme/vier/config.php:131 view/theme/vier/theme.php:163 msgid "Last users" msgstr "" -#: view/theme/vier/theme.php:234 +#: view/theme/vier/theme.php:222 msgid "Quick Start" msgstr "" diff --git a/view/lang/ca/strings.php b/view/lang/ca/strings.php index 6cb3101877..1f553c14aa 100644 --- a/view/lang/ca/strings.php +++ b/view/lang/ca/strings.php @@ -232,6 +232,9 @@ $a->strings['Post Composition Features'] = 'Característiques de Composició d\' $a->strings['Post/Comment Tools'] = 'Eines d\'Enviaments/Comentaris'; $a->strings['Post Categories'] = 'Categories en Enviaments'; $a->strings['Add categories to your posts'] = 'Afegeix categories als teus enviaments'; +$a->strings['Archives'] = 'Arxius'; +$a->strings['Saved Searches'] = 'Cerques Guardades'; +$a->strings['Saved Folders'] = 'Carpetes Guardades'; $a->strings['show more'] = 'Mostrar més'; $a->strings['event'] = 'esdeveniment'; $a->strings['status'] = 'estatus'; @@ -323,14 +326,12 @@ $a->strings['Invite Friends'] = 'Invita Amics'; $a->strings['Global Directory'] = 'Directori Global'; $a->strings['Local Directory'] = 'Directori Local'; $a->strings['All Contacts'] = 'Tots els Contactes'; -$a->strings['Saved Folders'] = 'Carpetes Guardades'; $a->strings['Everything'] = 'Tot'; $a->strings['Categories'] = 'Categories'; $a->strings['%d contact in common'] = [ 0 => '%d contacte en comú', 1 => '%d contactes en comú', ]; -$a->strings['Archives'] = 'Arxius'; $a->strings['Export'] = 'Exportar'; $a->strings['Export calendar as ical'] = 'Exportar calendari com ical'; $a->strings['Export calendar as csv'] = 'Exportar calendari com csv'; @@ -341,7 +342,6 @@ $a->strings['%d Contact'] = [ ]; $a->strings['View Contacts'] = 'Veure Contactes'; $a->strings['Remove term'] = 'Traieu termini'; -$a->strings['Saved Searches'] = 'Cerques Guardades'; $a->strings['Location:'] = 'Ubicació:'; $a->strings['Mutuals'] = 'Mútues'; $a->strings['Post to Email'] = 'Correu per enviar'; @@ -456,7 +456,6 @@ $a->strings['An author or name was not found.'] = 'Un autor o nom no va ser trob $a->strings['No browser URL could be matched to this address.'] = 'Cap direcció URL del navegador coincideix amb aquesta adreça.'; $a->strings['Unable to match @-style Identity Address with a known protocol or email contact.'] = 'Incapaç de trobar coincidències amb la Adreça d\'Identitat estil @ amb els protocols coneguts o contactes de correu. '; $a->strings['Use mailto: in front of address to force email check.'] = 'Emprar mailto: davant la adreça per a forçar la comprovació del correu.'; -$a->strings['The profile address specified belongs to a network which has been disabled on this site.'] = 'La direcció del perfil especificat pertany a una xarxa que ha estat desactivada en aquest lloc.'; $a->strings['Limited profile. This person will be unable to receive direct/personal notifications from you.'] = 'Perfil limitat. Aquesta persona no podrà rebre notificacions personals/directes de tu.'; $a->strings['Unable to retrieve contact information.'] = 'No es pot recuperar la informació de contacte.'; $a->strings['Starts:'] = 'Inici:'; @@ -547,6 +546,8 @@ $a->strings['Failed Updates'] = 'Actualitzacions Fallides'; $a->strings['This does not include updates prior to 1139, which did not return a status.'] = 'Això no inclou actualitzacions anteriors a 1139, raó per la que no ha retornat l\'estatus.'; $a->strings['Mark success (if update was manually applied)'] = 'Marcat am èxit (si l\'actualització es va fer manualment)'; $a->strings['Attempt to execute this update step automatically'] = 'Intentant executar aquest pas d\'actualització automàticament'; +$a->strings['No'] = 'No'; +$a->strings['Yes'] = 'Si'; $a->strings['Other'] = 'Altres'; $a->strings['Logs'] = 'Registres'; $a->strings['Clear'] = 'Netejar'; @@ -681,7 +682,6 @@ $a->strings['Submit Request'] = 'Sol·licitud Enviada'; $a->strings['You already added this contact.'] = 'Ja heu afegit aquest contacte.'; $a->strings['The network type couldn\'t be detected. Contact can\'t be added.'] = 'No s\'ha pogut detectar el tipus de xarxa. El contacte no es pot afegir.'; $a->strings['Diaspora support isn\'t enabled. Contact can\'t be added.'] = 'Diaspora l\'assistència no està habilitada. El contacte no es pot afegir.'; -$a->strings['OStatus support is disabled. Contact can\'t be added.'] = 'OStatus l\'assistència està desactivada. El contacte no es pot afegir.'; $a->strings['Please answer the following:'] = 'Si us plau, contesti les següents preguntes:'; $a->strings['Your Identity Address:'] = 'La Teva Adreça Identificativa:'; $a->strings['Profile URL'] = 'Perfil URL'; @@ -720,7 +720,6 @@ $a->strings['Replies/likes to your public posts may still be vi $a->strings['Status'] = 'Estatus'; $a->strings['Toggle Blocked status'] = 'Canvi de estatus blocat'; $a->strings['Toggle Ignored status'] = 'Canvi de estatus ignorat'; -$a->strings['Yes'] = 'Si'; $a->strings['No suggestions available. If this is a new site, please try again in 24 hours.'] = 'Cap suggeriment disponible. Si això és un nou lloc, si us plau torna a intentar en 24 hores.'; $a->strings['You aren\'t following this contact.'] = 'No seguiu aquest contacte.'; $a->strings['Unfollowing is currently not supported by your network.'] = 'Actualment, la vostra xarxa no és compatible amb el fet de seguir.'; @@ -814,7 +813,6 @@ $a->strings['Deny'] = 'Denegar'; $a->strings['Show Ignored Requests'] = 'Mostra les Sol·licituds Ignorades'; $a->strings['Hide Ignored Requests'] = 'Amaga les Sol·licituds Ignorades'; $a->strings['Claims to be known to you: '] = 'Diu que et coneix:'; -$a->strings['No'] = 'No'; $a->strings['Friend'] = 'Amic'; $a->strings['No introductions.'] = 'Sense presentacions.'; $a->strings['Network Notifications'] = 'Notificacions de la Xarxa'; @@ -824,8 +822,6 @@ $a->strings['Home Notifications'] = 'Notificacions d\'Inici'; $a->strings['{0} requested registration'] = '{0} solicituts de registre'; $a->strings['Authorize application connection'] = 'Autoritzi la connexió de aplicacions'; $a->strings['Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?'] = 'Vol autoritzar a aquesta aplicació per accedir als teus missatges i contactes, i/o crear nous enviaments per a vostè?'; -$a->strings['Resubscribing to OStatus contacts'] = 'Tornar a inscriure’s a OStatus contactes'; -$a->strings['Keep this window open until done.'] = 'Manteniu aquesta finestra oberta fins que no hàgiu acabat.'; $a->strings['No contact provided.'] = 'No s’ha proporcionat cap contacte.'; $a->strings['Couldn\'t fetch information for contact.'] = 'No s\'ha pogut obtenir informació per al contacte.'; $a->strings['Couldn\'t fetch friends for contact.'] = 'No s\'ha pogut buscar amics per contactar-los.'; @@ -833,8 +829,7 @@ $a->strings['Done'] = 'Fet'; $a->strings['success'] = 'èxit'; $a->strings['failed'] = 'suspendre'; $a->strings['ignored'] = 'ignorar'; -$a->strings['Remote privacy information not available.'] = 'Informació de privacitat remota no disponible.'; -$a->strings['Visible to:'] = 'Visible per a:'; +$a->strings['Keep this window open until done.'] = 'Manteniu aquesta finestra oberta fins que no hàgiu acabat.'; $a->strings['Edit post'] = 'Editar Enviament'; $a->strings['web link'] = 'enllaç de web'; $a->strings['Insert video link'] = 'Insertar enllaç de video'; @@ -844,6 +839,8 @@ $a->strings['audio link'] = 'enllaç de audio'; $a->strings['Remove Item Tag'] = 'Esborrar etiqueta del element'; $a->strings['Select a tag to remove: '] = 'Selecciona etiqueta a esborrar:'; $a->strings['Remove'] = 'Esborrar'; +$a->strings['Remote privacy information not available.'] = 'Informació de privacitat remota no disponible.'; +$a->strings['Visible to:'] = 'Visible per a:'; $a->strings['No contacts.'] = 'Sense Contactes'; $a->strings['Image file is empty.'] = 'El fitxer de imatge és buit.'; $a->strings['View Album'] = 'Veure Àlbum'; @@ -943,7 +940,6 @@ $a->strings['Failed to connect with email account using the settings provided.'] $a->strings['Email access is disabled on this site.'] = 'L\'accés al correu està deshabilitat en aquest lloc.'; $a->strings['None'] = 'Cap'; $a->strings['General Social Media Settings'] = 'Configuració general de les xarxes socials'; -$a->strings['Repair OStatus subscriptions'] = 'Repara les subscripcions a OStatus'; $a->strings['Email/Mailbox Setup'] = 'Preparació de Correu/Bústia'; $a->strings['If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox.'] = 'Si vol comunicar-se amb els contactes de correu emprant aquest servei (opcional), Si us plau, especifiqui com connectar amb la seva bústia.'; $a->strings['Last successful email check:'] = 'Última comprovació de correu amb èxit:'; @@ -1082,7 +1078,6 @@ $a->strings['%s commented on %s\'s post'] = '%s va comentar en l\'enviament de % $a->strings['%s created a new post'] = '%s ha creat un enviament nou'; $a->strings['Friend Suggestion'] = 'Amics Suggerits '; $a->strings['Friend/Connect Request'] = 'Sol·licitud d\'Amistat/Connexió'; -$a->strings['New Follower'] = 'Nou Seguidor'; $a->strings['%1$s sent you a new private message at %2$s.'] = '%1$s t\'ha enviat un missatge privat nou en %2$s.'; $a->strings['a private message'] = 'un missatge privat'; $a->strings['%1$s sent you %2$s.'] = '%1$s t\'ha enviat %2$s.'; @@ -1128,7 +1123,5 @@ $a->strings['%d comment'] = [ 0 => '%d comentari', 1 => '%d comentaris', ]; -$a->strings['following'] = 'seguint'; -$a->strings['stopped following'] = 'Deixar de seguir'; $a->strings['Login failed.'] = 'Error d\'accés.'; $a->strings['Please upload a profile photo.'] = 'Per favor, carrega una foto per al perfil'; diff --git a/view/lang/cs/messages.po b/view/lang/cs/messages.po index e8e066ba2e..ab72eb9bea 100644 --- a/view/lang/cs/messages.po +++ b/view/lang/cs/messages.po @@ -1,8 +1,7 @@ # FRIENDICA Distributed Social Network -# SPDX-FileCopyrightText: Copyright (C) 2010-2024, the Friendica project -# -# SPDX-License-Identifier: AGPL-3.0-or-later -# +# Copyright (C) 2010-2024, the Friendica project +# This file is distributed under the same license as the Friendica package. +# # Translators: # Aditoo, 2018-2019 # Josef Moravekupload_max_filesize
is set to %s (%s byte)"
msgstr ""
-#: src/Module/Admin/Site.php:497
+#: src/Module/Admin/Site.php:489
msgid "Maximum image length"
msgstr "Maximální velikost obrázků"
-#: src/Module/Admin/Site.php:497
+#: src/Module/Admin/Site.php:489
msgid ""
"Maximum length in pixels of the longest side of uploaded images. Default is "
"-1, which means no limits."
msgstr "Maximální délka delší stránky nahrávaných obrázků v pixelech. Výchozí hodnota je -1, což znamená bez omezení."
-#: src/Module/Admin/Site.php:498
+#: src/Module/Admin/Site.php:490
msgid "JPEG image quality"
msgstr "Kvalita obrázků JPEG"
-#: src/Module/Admin/Site.php:498
+#: src/Module/Admin/Site.php:490
msgid ""
"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
"100, which is full quality."
msgstr "Nahrávané obrázky JPEG budou uloženy se zadanou kvalitou v rozmezí [0-100]. Výchozí hodnota je 100, což znamená plnou kvalitu."
-#: src/Module/Admin/Site.php:500
+#: src/Module/Admin/Site.php:491
+msgid "Maximum media file size"
+msgstr ""
+
+#: src/Module/Admin/Site.php:491
+#, php-format
+msgid ""
+"Maximum size in bytes of uploaded media files. Default is 0, which means no limits. You can put k, m, or g behind the desired value for KiB, MiB, GiB, respectively.\n"
+"\t\t\t\t\t\t\t\t\t\t\t\t\tThe value of upload_max_filesize
in your PHP.ini
needs be set to at least the desired limit.\n"
+"\t\t\t\t\t\t\t\t\t\t\t\t\tCurrently upload_max_filesize
is set to %s (%s byte)"
+msgstr ""
+
+#: src/Module/Admin/Site.php:496
msgid "Register policy"
msgstr "Politika registrace"
-#: src/Module/Admin/Site.php:501
+#: src/Module/Admin/Site.php:497
msgid "Maximum Users"
msgstr ""
-#: src/Module/Admin/Site.php:501
+#: src/Module/Admin/Site.php:497
msgid ""
"If defined, the register policy is automatically closed when the given "
"number of users is reached and reopens the registry when the number drops "
@@ -4793,167 +4810,167 @@ msgid ""
"not when the policy is set to approval."
msgstr ""
-#: src/Module/Admin/Site.php:502
+#: src/Module/Admin/Site.php:498
msgid "Maximum Daily Registrations"
msgstr "Maximální počet denních registrací"
-#: src/Module/Admin/Site.php:502
+#: src/Module/Admin/Site.php:498
msgid ""
"If registration is permitted above, this sets the maximum number of new user"
" registrations to accept per day. If register is set to closed, this "
"setting has no effect."
msgstr "Pokud je registrace výše povolena, zde se nastaví maximální počet registrací nových uživatelů za den. Pokud je registrace zakázána, toto nastavení nemá žádný efekt."
-#: src/Module/Admin/Site.php:503
+#: src/Module/Admin/Site.php:499
msgid "Register text"
msgstr "Text při registraci"
-#: src/Module/Admin/Site.php:503
+#: src/Module/Admin/Site.php:499
msgid ""
"Will be displayed prominently on the registration page. You can use BBCode "
"here."
msgstr "Bude zobrazen viditelně na stránce registrace. Zde můžete používat BBCode."
-#: src/Module/Admin/Site.php:504
+#: src/Module/Admin/Site.php:500
msgid "Forbidden Nicknames"
msgstr "Zakázané přezdívky"
-#: src/Module/Admin/Site.php:504
+#: src/Module/Admin/Site.php:500
msgid ""
"Comma separated list of nicknames that are forbidden from registration. "
"Preset is a list of role names according RFC 2142."
msgstr "Seznam přezdívek, které nelze registrovat, oddělených čárkami. Přednastaven je seznam častých přezdívek dle RFC 2142."
-#: src/Module/Admin/Site.php:505
+#: src/Module/Admin/Site.php:501
msgid "Accounts abandoned after x days"
msgstr "Účty jsou opuštěny po x dnech"
-#: src/Module/Admin/Site.php:505
+#: src/Module/Admin/Site.php:501
msgid ""
"Will not waste system resources polling external sites for abandonded "
"accounts. Enter 0 for no time limit."
msgstr "Nebude se plýtvat systémovými zdroji kontaktováním externích webů s opuštěnými účty. Zadejte 0 pro žádný časový limit."
-#: src/Module/Admin/Site.php:506
+#: src/Module/Admin/Site.php:502
msgid "Allowed friend domains"
msgstr "Povolené domény přátel"
-#: src/Module/Admin/Site.php:506
+#: src/Module/Admin/Site.php:502
msgid ""
"Comma separated list of domains which are allowed to establish friendships "
"with this site. Wildcards are accepted. Empty to allow any domains"
msgstr "Seznam domén, kterým je povoleno navazovat přátelství s tímto webem, oddělených čárkami. Zástupné znaky (wildcards) jsou povoleny. Prázné znamená libovolné domény."
-#: src/Module/Admin/Site.php:507
+#: src/Module/Admin/Site.php:503
msgid "Allowed email domains"
msgstr "Povolené e-mailové domény"
-#: src/Module/Admin/Site.php:507
+#: src/Module/Admin/Site.php:503
msgid ""
"Comma separated list of domains which are allowed in email addresses for "
"registrations to this site. Wildcards are accepted. Empty to allow any "
"domains"
msgstr "Seznam domén e-mailových adres, kterým je povoleno provádět registraci na tomto webu, oddělených čárkami. Zástupné znaky (wildcards) jsou povoleny. Prázné znamená libovolné domény."
-#: src/Module/Admin/Site.php:508
+#: src/Module/Admin/Site.php:504
msgid "Disallowed email domains"
msgstr ""
-#: src/Module/Admin/Site.php:508
+#: src/Module/Admin/Site.php:504
msgid ""
"Comma separated list of domains which are rejected as email addresses for "
"registrations to this site. Wildcards are accepted."
msgstr ""
-#: src/Module/Admin/Site.php:509
+#: src/Module/Admin/Site.php:505
msgid "No OEmbed rich content"
msgstr "Žádný obohacený obsah oEmbed"
-#: src/Module/Admin/Site.php:509
+#: src/Module/Admin/Site.php:505
msgid ""
"Don't show the rich content (e.g. embedded PDF), except from the domains "
"listed below."
msgstr "Neukazovat obohacený obsah (např. vložené PDF dokumenty), kromě toho z domén vypsaných níže."
-#: src/Module/Admin/Site.php:510
+#: src/Module/Admin/Site.php:506
msgid "Trusted third-party domains"
msgstr ""
-#: src/Module/Admin/Site.php:510
+#: src/Module/Admin/Site.php:506
msgid ""
"Comma separated list of domains from which content is allowed to be embedded"
" in posts like with OEmbed. All sub-domains of the listed domains are "
"allowed as well."
msgstr ""
-#: src/Module/Admin/Site.php:511
+#: src/Module/Admin/Site.php:507
msgid "Block public"
msgstr "Blokovat veřejný přístup"
-#: src/Module/Admin/Site.php:511
+#: src/Module/Admin/Site.php:507
msgid ""
"Check to block public access to all otherwise public personal pages on this "
"site unless you are currently logged in."
msgstr "Označením zablokujete veřejný přístup ke všem jinak veřejně přístupným osobním stránkám nepřihlášeným uživatelům."
-#: src/Module/Admin/Site.php:512
+#: src/Module/Admin/Site.php:508
msgid "Force publish"
msgstr "Vynutit publikaci"
-#: src/Module/Admin/Site.php:512
+#: src/Module/Admin/Site.php:508
msgid ""
"Check to force all profiles on this site to be listed in the site directory."
msgstr "Označením budou všechny profily na tomto serveru uvedeny v adresáři stránky."
-#: src/Module/Admin/Site.php:512
+#: src/Module/Admin/Site.php:508
msgid "Enabling this may violate privacy laws like the GDPR"
msgstr "Povolení této funkce může porušit zákony o ochraně soukromí, jako je Obecné nařízení o ochraně osobních údajů (GDPR)"
-#: src/Module/Admin/Site.php:513
+#: src/Module/Admin/Site.php:509
msgid "Global directory URL"
msgstr "Adresa URL globálního adresáře"
-#: src/Module/Admin/Site.php:513
+#: src/Module/Admin/Site.php:509
msgid ""
"URL to the global directory. If this is not set, the global directory is "
"completely unavailable to the application."
msgstr "Adresa URL globálního adresáře. Pokud toto není nastaveno, globální adresář bude aplikaci naprosto nedostupný."
-#: src/Module/Admin/Site.php:514
+#: src/Module/Admin/Site.php:510
msgid "Private posts by default for new users"
msgstr "Nastavit pro nové uživatele příspěvky jako soukromé"
-#: src/Module/Admin/Site.php:514
+#: src/Module/Admin/Site.php:510
msgid ""
"Set default post permissions for all new members to the default privacy "
"circle rather than public."
msgstr ""
-#: src/Module/Admin/Site.php:515
+#: src/Module/Admin/Site.php:511
msgid "Don't include post content in email notifications"
msgstr "Nezahrnovat v e-mailových oznámeních obsah příspěvků"
-#: src/Module/Admin/Site.php:515
+#: src/Module/Admin/Site.php:511
msgid ""
"Don't include the content of a post/comment/private message/etc. in the "
"email notifications that are sent out from this site, as a privacy measure."
msgstr " V e-mailových oznámeních, které jsou odesílány z tohoto webu, nebudou z důvodů bezpečnosti obsaženy příspěvky/komentáře/soukromé zprávy apod. "
-#: src/Module/Admin/Site.php:516
+#: src/Module/Admin/Site.php:512
msgid "Disallow public access to addons listed in the apps menu."
msgstr "Zakázat veřejný přístup k rozšířením uvedeným v menu aplikace."
-#: src/Module/Admin/Site.php:516
+#: src/Module/Admin/Site.php:512
msgid ""
"Checking this box will restrict addons listed in the apps menu to members "
"only."
msgstr "Označení této volby omezí rozšíření uvedená v menu aplikace pouze pro členy."
-#: src/Module/Admin/Site.php:517
+#: src/Module/Admin/Site.php:513
msgid "Don't embed private images in posts"
msgstr "Nepovolit přidávání soukromých obrázků do příspěvků"
-#: src/Module/Admin/Site.php:517
+#: src/Module/Admin/Site.php:513
msgid ""
"Don't replace locally-hosted private photos in posts with an embedded copy "
"of the image. This means that contacts who receive posts containing private "
@@ -4961,11 +4978,11 @@ msgid ""
"while."
msgstr "Nenahrazovat místní soukromé fotky v příspěvcích vloženou kopií obrázku. To znamená, že kontakty, které obdrží příspěvek obsahující soukromé fotky, budou muset autentikovat a načíst každý obrázek, což může zabrat nějaký čas."
-#: src/Module/Admin/Site.php:518
+#: src/Module/Admin/Site.php:514
msgid "Explicit Content"
msgstr "Explicitní obsah"
-#: src/Module/Admin/Site.php:518
+#: src/Module/Admin/Site.php:514
msgid ""
"Set this to announce that your node is used mostly for explicit content that"
" might not be suited for minors. This information will be published in the "
@@ -4974,329 +4991,319 @@ msgid ""
"will be shown at the user registration page."
msgstr "Touto funkcí oznámíte, že je Váš server používán hlavně pro explicitní obsah, který nemusí být vhodný pro mladistvé. Tato informace bude publikována na stránce informací o serveru a může být využita např. globálním adresářem pro odfiltrování Vašeho serveru ze seznamu serverů pro spojení. Poznámka o tom bude navíc zobrazena na stránce registrace."
-#: src/Module/Admin/Site.php:519
+#: src/Module/Admin/Site.php:515
msgid "Only local search"
msgstr ""
-#: src/Module/Admin/Site.php:519
+#: src/Module/Admin/Site.php:515
msgid ""
"Blocks search for users who are not logged in to prevent crawlers from "
"blocking your system."
msgstr ""
-#: src/Module/Admin/Site.php:520
+#: src/Module/Admin/Site.php:516
msgid "Blocked tags for trending tags"
msgstr ""
-#: src/Module/Admin/Site.php:520
+#: src/Module/Admin/Site.php:516
msgid ""
"Comma separated list of hashtags that shouldn't be displayed in the trending"
" tags."
msgstr ""
-#: src/Module/Admin/Site.php:521
+#: src/Module/Admin/Site.php:517
msgid "Cache contact avatars"
msgstr ""
-#: src/Module/Admin/Site.php:521
+#: src/Module/Admin/Site.php:517
msgid ""
"Locally store the avatar pictures of the contacts. This uses a lot of "
"storage space but it increases the performance."
msgstr ""
-#: src/Module/Admin/Site.php:522
+#: src/Module/Admin/Site.php:518
msgid "Allow Users to set remote_self"
msgstr "Umožnit uživatelům nastavit remote_self"
-#: src/Module/Admin/Site.php:522
+#: src/Module/Admin/Site.php:518
msgid ""
"With checking this, every user is allowed to mark every contact as a "
"remote_self in the repair contact dialog. Setting this flag on a contact "
"causes mirroring every posting of that contact in the users stream."
msgstr "S tímto označením má každý uživatel možnost označit jakékoliv ze svých kontakt jako „remote_self“ v nastavení v dialogu opravit kontakt. Tímto označením se budou zrcadlit všechny správy tohoto kontaktu v uživatelově proudu."
-#: src/Module/Admin/Site.php:523
+#: src/Module/Admin/Site.php:519
msgid "Allow Users to set up relay channels"
msgstr ""
-#: src/Module/Admin/Site.php:523
+#: src/Module/Admin/Site.php:519
msgid ""
"If enabled, it is possible to create relay users that are used to reshare "
"content based on user defined channels."
msgstr ""
-#: src/Module/Admin/Site.php:524
+#: src/Module/Admin/Site.php:520
msgid "Adjust the feed poll frequency"
msgstr ""
-#: src/Module/Admin/Site.php:524
+#: src/Module/Admin/Site.php:520
msgid "Automatically detect and set the best feed poll frequency."
msgstr ""
-#: src/Module/Admin/Site.php:525
+#: src/Module/Admin/Site.php:521
msgid "Minimum poll interval"
msgstr ""
-#: src/Module/Admin/Site.php:525
+#: src/Module/Admin/Site.php:521
msgid ""
"Minimal distance in minutes between two polls for mail and feed contacts. "
"Reasonable values are between 1 and 59."
msgstr ""
-#: src/Module/Admin/Site.php:526
+#: src/Module/Admin/Site.php:522
msgid "Enable multiple registrations"
msgstr ""
-#: src/Module/Admin/Site.php:526
+#: src/Module/Admin/Site.php:522
msgid "Enable users to register additional accounts for use as pages."
msgstr ""
-#: src/Module/Admin/Site.php:527
+#: src/Module/Admin/Site.php:523
msgid "Enable OpenID"
msgstr ""
-#: src/Module/Admin/Site.php:527
+#: src/Module/Admin/Site.php:523
msgid "Enable OpenID support for registration and logins."
msgstr ""
-#: src/Module/Admin/Site.php:528
+#: src/Module/Admin/Site.php:524
msgid "Enable full name check"
msgstr ""
-#: src/Module/Admin/Site.php:528
+#: src/Module/Admin/Site.php:524
msgid ""
"Prevents users from registering with a display name with fewer than two "
"parts separated by spaces."
msgstr ""
-#: src/Module/Admin/Site.php:529
+#: src/Module/Admin/Site.php:525
msgid "Email administrators on new registration"
msgstr ""
-#: src/Module/Admin/Site.php:529
+#: src/Module/Admin/Site.php:525
msgid ""
"If enabled and the system is set to an open registration, an email for each "
"new registration is sent to the administrators."
msgstr ""
-#: src/Module/Admin/Site.php:530
+#: src/Module/Admin/Site.php:526
msgid "Community pages for visitors"
msgstr "Komunitní stránky pro návštěvníky"
-#: src/Module/Admin/Site.php:530
+#: src/Module/Admin/Site.php:526
msgid ""
"Which community pages should be available for visitors. Local users always "
"see both pages."
msgstr "Které komunitní stránky by měly být viditelné pro návštěvníky. Místní uživatelé vždy vidí obě stránky."
-#: src/Module/Admin/Site.php:531
+#: src/Module/Admin/Site.php:527
msgid "Posts per user on community page"
msgstr "Počet příspěvků na komunitní stránce"
-#: src/Module/Admin/Site.php:531
+#: src/Module/Admin/Site.php:527
msgid ""
"The maximum number of posts per user on the local community page. This is "
"useful, when a single user floods the local community page."
msgstr ""
-#: src/Module/Admin/Site.php:532
+#: src/Module/Admin/Site.php:528
msgid "Posts per server on community page"
msgstr ""
-#: src/Module/Admin/Site.php:532
+#: src/Module/Admin/Site.php:528
msgid ""
"The maximum number of posts per server on the global community page. This is"
" useful, when posts from a single server flood the global community page."
msgstr ""
-#: src/Module/Admin/Site.php:534
+#: src/Module/Admin/Site.php:530
msgid "Enable Mail support"
msgstr ""
-#: src/Module/Admin/Site.php:534
+#: src/Module/Admin/Site.php:530
msgid ""
"Enable built-in mail support to poll IMAP folders and to reply via mail."
msgstr ""
-#: src/Module/Admin/Site.php:535
+#: src/Module/Admin/Site.php:531
msgid ""
"Mail support can't be enabled because the PHP IMAP module is not installed."
msgstr ""
-#: src/Module/Admin/Site.php:536
-msgid "Enable OStatus support"
-msgstr ""
-
-#: src/Module/Admin/Site.php:536
-msgid ""
-"Enable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
-"communications in OStatus are public."
-msgstr ""
-
-#: src/Module/Admin/Site.php:538
+#: src/Module/Admin/Site.php:533
msgid ""
"Diaspora support can't be enabled because Friendica was installed into a sub"
" directory."
msgstr "Podpora pro Diasporu nemůže být zapnuta, protože Friendica byla nainstalována do podadresáře."
-#: src/Module/Admin/Site.php:539
+#: src/Module/Admin/Site.php:534
msgid "Enable Diaspora support"
msgstr "Zapnout podporu pro Diaspora"
-#: src/Module/Admin/Site.php:539
+#: src/Module/Admin/Site.php:534
msgid ""
"Enable built-in Diaspora network compatibility for communicating with "
"diaspora servers."
msgstr ""
-#: src/Module/Admin/Site.php:540
+#: src/Module/Admin/Site.php:535
msgid "Verify SSL"
msgstr "Ověřit SSL"
-#: src/Module/Admin/Site.php:540
+#: src/Module/Admin/Site.php:535
msgid ""
"If you wish, you can turn on strict certificate checking. This will mean you"
" cannot connect (at all) to self-signed SSL sites."
msgstr "Pokud si přejete, můžete vynutit striktní ověřování certifikátů. To znamená že se nebudete moci připojit k žádnému serveru s vlastním SSL certifikátem."
-#: src/Module/Admin/Site.php:541
+#: src/Module/Admin/Site.php:536
msgid "Proxy user"
msgstr "Proxy uživatel"
-#: src/Module/Admin/Site.php:541
+#: src/Module/Admin/Site.php:536
msgid "User name for the proxy server."
msgstr ""
-#: src/Module/Admin/Site.php:542
+#: src/Module/Admin/Site.php:537
msgid "Proxy URL"
msgstr "Proxy URL adresa"
-#: src/Module/Admin/Site.php:542
+#: src/Module/Admin/Site.php:537
msgid ""
"If you want to use a proxy server that Friendica should use to connect to "
"the network, put the URL of the proxy here."
msgstr ""
-#: src/Module/Admin/Site.php:543
+#: src/Module/Admin/Site.php:538
msgid "Network timeout"
msgstr "Čas vypršení síťového spojení (timeout)"
-#: src/Module/Admin/Site.php:543
+#: src/Module/Admin/Site.php:538
msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
msgstr "Hodnota ve vteřinách. Nastavte 0 pro neomezeno (není doporučeno)."
-#: src/Module/Admin/Site.php:544
+#: src/Module/Admin/Site.php:539
msgid "Maximum Load Average"
msgstr "Maximální průměrné zatížení"
-#: src/Module/Admin/Site.php:544
+#: src/Module/Admin/Site.php:539
#, php-format
msgid ""
"Maximum system load before delivery and poll processes are deferred - "
"default %d."
msgstr "Maximální systémová zátěž, než budou procesy pro doručení a dotazování odloženy - výchozí hodnota %d."
-#: src/Module/Admin/Site.php:545
+#: src/Module/Admin/Site.php:540
msgid "Minimal Memory"
msgstr "Minimální paměť"
-#: src/Module/Admin/Site.php:545
+#: src/Module/Admin/Site.php:540
msgid ""
"Minimal free memory in MB for the worker. Needs access to /proc/meminfo - "
"default 0 (deactivated)."
msgstr "Minimální volná paměť v MB pro pracovníka. Potřebuje přístup do /proc/meminfo - výchozí hodnota 0 (deaktivováno)"
-#: src/Module/Admin/Site.php:546
+#: src/Module/Admin/Site.php:541
msgid "Periodically optimize tables"
msgstr ""
-#: src/Module/Admin/Site.php:546
+#: src/Module/Admin/Site.php:541
msgid "Periodically optimize tables like the cache and the workerqueue"
msgstr ""
-#: src/Module/Admin/Site.php:548
+#: src/Module/Admin/Site.php:543
msgid "Discover followers/followings from contacts"
msgstr ""
-#: src/Module/Admin/Site.php:548
+#: src/Module/Admin/Site.php:543
msgid ""
"If enabled, contacts are checked for their followers and following contacts."
msgstr ""
-#: src/Module/Admin/Site.php:549
+#: src/Module/Admin/Site.php:544
msgid "None - deactivated"
msgstr ""
-#: src/Module/Admin/Site.php:550
+#: src/Module/Admin/Site.php:545
msgid ""
"Local contacts - contacts of our local contacts are discovered for their "
"followers/followings."
msgstr ""
-#: src/Module/Admin/Site.php:551
+#: src/Module/Admin/Site.php:546
msgid ""
"Interactors - contacts of our local contacts and contacts who interacted on "
"locally visible postings are discovered for their followers/followings."
msgstr ""
-#: src/Module/Admin/Site.php:553
+#: src/Module/Admin/Site.php:548
msgid "Only update contacts/servers with local data"
msgstr ""
-#: src/Module/Admin/Site.php:553
+#: src/Module/Admin/Site.php:548
msgid ""
"If enabled, the system will only look for changes in contacts and servers "
"that engaged on this system by either being in a contact list of a user or "
"when posts or comments exists from the contact on this system."
msgstr ""
-#: src/Module/Admin/Site.php:554
+#: src/Module/Admin/Site.php:549
msgid "Synchronize the contacts with the directory server"
msgstr ""
-#: src/Module/Admin/Site.php:554
+#: src/Module/Admin/Site.php:549
msgid ""
"if enabled, the system will check periodically for new contacts on the "
"defined directory server."
msgstr ""
-#: src/Module/Admin/Site.php:556
+#: src/Module/Admin/Site.php:551
msgid "Discover contacts from other servers"
msgstr "Objevit kontakty z ostatních serverů"
-#: src/Module/Admin/Site.php:556
+#: src/Module/Admin/Site.php:551
msgid ""
"Periodically query other servers for contacts and servers that they know of."
" The system queries Friendica, Mastodon and Hubzilla servers. Keep it "
"deactivated on small machines to decrease the database size and load."
msgstr ""
-#: src/Module/Admin/Site.php:557
+#: src/Module/Admin/Site.php:552
msgid "Days between requery"
msgstr "Dny mezi dotazy"
-#: src/Module/Admin/Site.php:557
+#: src/Module/Admin/Site.php:552
msgid ""
"Number of days after which a server is requeried for their contacts and "
"servers it knows of. This is only used when the discovery is activated."
msgstr ""
-#: src/Module/Admin/Site.php:558
+#: src/Module/Admin/Site.php:553
msgid "Search the local directory"
msgstr "Hledat v místním adresáři"
-#: src/Module/Admin/Site.php:558
+#: src/Module/Admin/Site.php:553
msgid ""
"Search the local directory instead of the global directory. When searching "
"locally, every search will be executed on the global directory in the "
"background. This improves the search results when the search is repeated."
msgstr "Prohledat místní adresář místo globálního adresáře. Při místním prohledávání bude každé hledání provedeno v globálním adresáři na pozadí. To vylepšuje výsledky při zopakování hledání."
-#: src/Module/Admin/Site.php:560
+#: src/Module/Admin/Site.php:555
msgid "Publish server information"
msgstr "Zveřejnit informace o serveru"
-#: src/Module/Admin/Site.php:560
+#: src/Module/Admin/Site.php:555
msgid ""
"If enabled, general server and usage data will be published. The data "
"contains the name and version of the server, number of users with public "
@@ -5304,50 +5311,50 @@ msgid ""
" href=\"http://the-federation.info/\">the-federation.info for details."
msgstr "Pokud je tohle povoleno, budou zveřejněna obecná data o serveru a jeho používání. Data obsahují jméno a verzi serveru, počet uživatelů s veřejnými profily, počet příspěvků a aktivované protokoly a konektory. Pro více informací navštivte the-federation.info."
-#: src/Module/Admin/Site.php:562
+#: src/Module/Admin/Site.php:557
msgid "Check upstream version"
msgstr "Zkontrolovat upstreamovou verzi"
-#: src/Module/Admin/Site.php:562
+#: src/Module/Admin/Site.php:557
msgid ""
"Enables checking for new Friendica versions at github. If there is a new "
"version, you will be informed in the admin panel overview."
msgstr "Umožní kontrolovat nové verze Friendica na GitHubu. Pokud existuje nová verze, budete informován/a na přehledu administračního panelu."
-#: src/Module/Admin/Site.php:563
+#: src/Module/Admin/Site.php:558
msgid "Suppress Tags"
msgstr "Potlačit štítky"
-#: src/Module/Admin/Site.php:563
+#: src/Module/Admin/Site.php:558
msgid "Suppress showing a list of hashtags at the end of the posting."
msgstr "Potlačit zobrazení seznamu hastagů na konci příspěvků."
-#: src/Module/Admin/Site.php:564
+#: src/Module/Admin/Site.php:559
msgid "Clean database"
msgstr "Vyčistit databázi"
-#: src/Module/Admin/Site.php:564
+#: src/Module/Admin/Site.php:559
msgid ""
"Remove old remote items, orphaned database records and old content from some"
" other helper tables."
msgstr "Odstranit staré vzdálené položky, osiřelé záznamy v databázi a starý obsah z některých dalších pomocných tabulek."
-#: src/Module/Admin/Site.php:565
+#: src/Module/Admin/Site.php:560
msgid "Lifespan of remote items"
msgstr "Životnost vzdálených položek"
-#: src/Module/Admin/Site.php:565
+#: src/Module/Admin/Site.php:560
msgid ""
"When the database cleanup is enabled, this defines the days after which "
"remote items will be deleted. Own items, and marked or filed items are "
"always kept. 0 disables this behaviour."
msgstr "Pokud je zapnuto čištění databáze, tato funkce definuje počet dnů, po kterých budou smazány vzdálené položky. Vlastní položky a označené či vyplněné položky jsou vždy ponechány. Hodnota 0 tuto funkci vypíná."
-#: src/Module/Admin/Site.php:566
+#: src/Module/Admin/Site.php:561
msgid "Lifespan of unclaimed items"
msgstr "Životnost nevyžádaných položek"
-#: src/Module/Admin/Site.php:566
+#: src/Module/Admin/Site.php:561
msgid ""
"When the database cleanup is enabled, this defines the days after which "
"unclaimed remote items (mostly content from the relay) will be deleted. "
@@ -5355,175 +5362,184 @@ msgid ""
"items if set to 0."
msgstr "Pokud je zapnuto čištění databáze, tato funkce definuje počet dnů, po kterých budou smazány nevyžádané vzdálené položky (většinou obsah z přeposílacího serveru). Výchozí hodnota je 90 dní. Pokud je zadaná hodnota 0, výchozí hodnotou bude obecná hodnota životnosti vzdálených položek."
-#: src/Module/Admin/Site.php:567
+#: src/Module/Admin/Site.php:562
msgid "Lifespan of raw conversation data"
msgstr "Životnost hrubých dat konverzací"
-#: src/Module/Admin/Site.php:567
+#: src/Module/Admin/Site.php:562
msgid ""
-"The conversation data is used for ActivityPub and OStatus, as well as for "
-"debug purposes. It should be safe to remove it after 14 days, default is 90 "
-"days."
-msgstr "Data konverzací jsou použita pro ActivityPub a OStatus a pro účely ladění. Mělo by být bezpečné je odstranit po 14 dnech, výchozí hodnota je 90 dní."
+"The conversation data is used for ActivityPub, as well as for debug "
+"purposes. It should be safe to remove it after 14 days, default is 90 days."
+msgstr ""
-#: src/Module/Admin/Site.php:568
+#: src/Module/Admin/Site.php:563
msgid "Maximum numbers of comments per post"
msgstr "Maximální počet komentářů k příspěvku"
-#: src/Module/Admin/Site.php:568
+#: src/Module/Admin/Site.php:563
msgid "How much comments should be shown for each post? Default value is 100."
msgstr "Kolik komentářů by mělo být zobrazeno k každému příspěvku? Výchozí hodnotou je 100."
-#: src/Module/Admin/Site.php:569
+#: src/Module/Admin/Site.php:564
msgid "Maximum numbers of comments per post on the display page"
msgstr ""
-#: src/Module/Admin/Site.php:569
+#: src/Module/Admin/Site.php:564
msgid ""
"How many comments should be shown on the single view for each post? Default "
"value is 1000."
msgstr ""
-#: src/Module/Admin/Site.php:570
+#: src/Module/Admin/Site.php:565
msgid "Items per page"
msgstr ""
-#: src/Module/Admin/Site.php:570
+#: src/Module/Admin/Site.php:565
msgid ""
"Number of items per page in stream pages (network, community, "
"profile/contact statuses, search)."
msgstr ""
-#: src/Module/Admin/Site.php:571
+#: src/Module/Admin/Site.php:566
msgid "Items per page for mobile devices"
msgstr ""
-#: src/Module/Admin/Site.php:571
+#: src/Module/Admin/Site.php:566
msgid ""
"Number of items per page in stream pages (network, community, "
"profile/contact statuses, search) for mobile devices."
msgstr ""
-#: src/Module/Admin/Site.php:572
+#: src/Module/Admin/Site.php:567
msgid "Temp path"
msgstr "Cesta k dočasným souborům"
-#: src/Module/Admin/Site.php:572
+#: src/Module/Admin/Site.php:567
msgid ""
"If you have a restricted system where the webserver can't access the system "
"temp path, enter another path here."
msgstr "Pokud máte omezený systém, kde webový server nemá přístup k systémové složce temp, zde zadejte jinou cestu."
-#: src/Module/Admin/Site.php:573
+#: src/Module/Admin/Site.php:568
msgid "Only search in tags"
msgstr "Hledat pouze ve štítcích"
-#: src/Module/Admin/Site.php:573
+#: src/Module/Admin/Site.php:568
msgid "On large systems the text search can slow down the system extremely."
msgstr "Textové vyhledávání může u rozsáhlých systémů znamenat velmi citelné zpomalení systému."
-#: src/Module/Admin/Site.php:574
+#: src/Module/Admin/Site.php:569
+msgid "Limited search scope"
+msgstr ""
+
+#: src/Module/Admin/Site.php:569
+msgid ""
+"If enabled, searches will only be performed in the data used for the "
+"channels and not in all posts."
+msgstr ""
+
+#: src/Module/Admin/Site.php:570
msgid "Maximum age of items in the search table"
msgstr ""
-#: src/Module/Admin/Site.php:574
+#: src/Module/Admin/Site.php:570
msgid ""
"Maximum age of items in the search table in days. Lower values will increase"
" the performance and reduce disk usage. 0 means no age restriction."
msgstr ""
-#: src/Module/Admin/Site.php:575
+#: src/Module/Admin/Site.php:571
msgid "Generate counts per contact circle when calculating network count"
msgstr ""
-#: src/Module/Admin/Site.php:575
+#: src/Module/Admin/Site.php:571
msgid ""
"On systems with users that heavily use contact circles the query can be very"
" expensive."
msgstr ""
-#: src/Module/Admin/Site.php:576
+#: src/Module/Admin/Site.php:572
msgid "Process \"view\" activities"
msgstr ""
-#: src/Module/Admin/Site.php:576
+#: src/Module/Admin/Site.php:572
msgid ""
"\"view\" activities are mostly geberated by Peertube systems. Per default "
"they are not processed for performance reasons. Only activate this option on"
" performant system."
msgstr ""
-#: src/Module/Admin/Site.php:577
+#: src/Module/Admin/Site.php:573
msgid "Days, after which a contact is archived"
msgstr ""
-#: src/Module/Admin/Site.php:577
+#: src/Module/Admin/Site.php:573
msgid ""
"Number of days that we try to deliver content or to update the contact data "
"before we archive a contact."
msgstr ""
-#: src/Module/Admin/Site.php:579
+#: src/Module/Admin/Site.php:575
msgid "Maximum number of parallel workers"
msgstr "Maximální počet paralelních pracovníků"
-#: src/Module/Admin/Site.php:579
+#: src/Module/Admin/Site.php:575
#, php-format
msgid ""
"On shared hosters set this to %d. On larger systems, values of %d are great."
" Default value is %d."
msgstr "Na sdílených hostinzích toto nastavte na hodnotu %d. Na větších systémech se hodí hodnoty kolem %d. Výchozí hodnotou je %d."
-#: src/Module/Admin/Site.php:580
+#: src/Module/Admin/Site.php:576
msgid "Maximum load for workers"
msgstr ""
-#: src/Module/Admin/Site.php:580
+#: src/Module/Admin/Site.php:576
msgid "Maximum load that causes a cooldown before each worker function call."
msgstr ""
-#: src/Module/Admin/Site.php:581
+#: src/Module/Admin/Site.php:577
msgid "Enable fastlane"
msgstr "Povolit fastlane"
-#: src/Module/Admin/Site.php:581
+#: src/Module/Admin/Site.php:577
msgid ""
"When enabed, the fastlane mechanism starts an additional worker if processes"
" with higher priority are blocked by processes of lower priority."
msgstr "Pokud je toto povoleno, mechanismus fastlane spustí dodatečného pracovníka, pokud jsou procesy vyšší priority zablokované procesy nižší priority."
-#: src/Module/Admin/Site.php:582
+#: src/Module/Admin/Site.php:578
msgid "Decoupled receiver"
msgstr ""
-#: src/Module/Admin/Site.php:582
+#: src/Module/Admin/Site.php:578
msgid ""
"Decouple incoming ActivityPub posts by processing them in the background via"
" a worker process. Only enable this on fast systems."
msgstr ""
-#: src/Module/Admin/Site.php:583
+#: src/Module/Admin/Site.php:579
msgid "Cron interval"
msgstr ""
-#: src/Module/Admin/Site.php:583
+#: src/Module/Admin/Site.php:579
msgid "Minimal period in minutes between two calls of the \"Cron\" worker job."
msgstr ""
-#: src/Module/Admin/Site.php:584
+#: src/Module/Admin/Site.php:580
msgid "Worker defer limit"
msgstr ""
-#: src/Module/Admin/Site.php:584
+#: src/Module/Admin/Site.php:580
msgid ""
"Per default the systems tries delivering for 15 times before dropping it."
msgstr ""
-#: src/Module/Admin/Site.php:585
+#: src/Module/Admin/Site.php:581
msgid "Worker fetch limit"
msgstr ""
-#: src/Module/Admin/Site.php:585
+#: src/Module/Admin/Site.php:581
msgid ""
"Number of worker tasks that are fetched in a single query. Higher values "
"should increase the performance, too high values will mostly likely decrease"
@@ -5531,214 +5547,214 @@ msgid ""
"system."
msgstr ""
-#: src/Module/Admin/Site.php:587
+#: src/Module/Admin/Site.php:583
msgid "Direct relay transfer"
msgstr "Přímý přenos na server pro přeposílání"
-#: src/Module/Admin/Site.php:587
+#: src/Module/Admin/Site.php:583
msgid ""
"Enables the direct transfer to other servers without using the relay servers"
msgstr "Umožňuje přímý přenos na ostatní servery bez použití přeposílacích serverů"
-#: src/Module/Admin/Site.php:588
+#: src/Module/Admin/Site.php:584
msgid "Relay scope"
msgstr "Rozsah příspěvků z přeposílacího serveru"
-#: src/Module/Admin/Site.php:588
+#: src/Module/Admin/Site.php:584
msgid ""
"Can be \"all\" or \"tags\". \"all\" means that every public post should be "
"received. \"tags\" means that only posts with selected tags should be "
"received."
msgstr "Může být buď „vše“ nebo „štítky“. „vše“ znamená, že budou přijaty všechny veřejné příspěvky. „štítky“ znamená, že budou přijaty pouze příspěvky s vybranými štítky."
-#: src/Module/Admin/Site.php:588 src/Module/Contact/Profile.php:314
-#: src/Module/Settings/TwoFactor/Index.php:146
+#: src/Module/Admin/Site.php:584 src/Module/Contact/Profile.php:314
+#: src/Module/Settings/TwoFactor/Index.php:132
msgid "Disabled"
msgstr "Zakázáno"
-#: src/Module/Admin/Site.php:588
+#: src/Module/Admin/Site.php:584
msgid "all"
msgstr "vše"
-#: src/Module/Admin/Site.php:588
+#: src/Module/Admin/Site.php:584
msgid "tags"
msgstr "štítky"
-#: src/Module/Admin/Site.php:589
+#: src/Module/Admin/Site.php:585
msgid "Server tags"
msgstr "Serverové štítky"
-#: src/Module/Admin/Site.php:589
+#: src/Module/Admin/Site.php:585
msgid "Comma separated list of tags for the \"tags\" subscription."
msgstr "Seznam štítků pro odběr „tags“, oddělených čárkami."
-#: src/Module/Admin/Site.php:590
+#: src/Module/Admin/Site.php:586
msgid "Deny Server tags"
msgstr ""
-#: src/Module/Admin/Site.php:590
+#: src/Module/Admin/Site.php:586
msgid "Comma separated list of tags that are rejected."
msgstr ""
-#: src/Module/Admin/Site.php:591
+#: src/Module/Admin/Site.php:587
msgid "Maximum amount of tags"
msgstr ""
-#: src/Module/Admin/Site.php:591
+#: src/Module/Admin/Site.php:587
msgid ""
"Maximum amount of tags in a post before it is rejected as spam. The post has"
" to contain at least one link. Posts from subscribed accounts will not be "
"rejected."
msgstr ""
-#: src/Module/Admin/Site.php:592
+#: src/Module/Admin/Site.php:588
msgid "Allow user tags"
msgstr "Povolit uživatelské štítky"
-#: src/Module/Admin/Site.php:592
+#: src/Module/Admin/Site.php:588
msgid ""
"If enabled, the tags from the saved searches will used for the \"tags\" "
"subscription in addition to the \"relay_server_tags\"."
msgstr "Pokud je toto povoleno, budou štítky z uložených hledání vedle odběru „relay_server_tags“ použity i pro odběr „tags“."
-#: src/Module/Admin/Site.php:593
+#: src/Module/Admin/Site.php:589
msgid "Deny undetected languages"
msgstr ""
-#: src/Module/Admin/Site.php:593
+#: src/Module/Admin/Site.php:589
msgid "If enabled, posts with undetected languages will be rejected."
msgstr ""
-#: src/Module/Admin/Site.php:594
+#: src/Module/Admin/Site.php:590
msgid "Language Quality"
msgstr ""
-#: src/Module/Admin/Site.php:594
+#: src/Module/Admin/Site.php:590
msgid "The minimum language quality that is required to accept the post."
msgstr ""
-#: src/Module/Admin/Site.php:595
+#: src/Module/Admin/Site.php:591
msgid "Number of languages for the language detection"
msgstr ""
-#: src/Module/Admin/Site.php:595
+#: src/Module/Admin/Site.php:591
msgid ""
"The system detects a list of languages per post. Only if the desired "
"languages are in the list, the message will be accepted. The higher the "
"number, the more posts will be falsely detected."
msgstr ""
-#: src/Module/Admin/Site.php:597
+#: src/Module/Admin/Site.php:593
msgid "Maximum age of channel"
msgstr ""
-#: src/Module/Admin/Site.php:597
+#: src/Module/Admin/Site.php:593
msgid ""
"This defines the maximum age in hours of items that should be displayed in "
"channels. This affects the channel performance."
msgstr ""
-#: src/Module/Admin/Site.php:598
+#: src/Module/Admin/Site.php:594
msgid "Maximum number of channel posts"
msgstr ""
-#: src/Module/Admin/Site.php:598
+#: src/Module/Admin/Site.php:594
msgid ""
"For performance reasons, the channels use a dedicated table to store "
"content. The higher the value the slower the channels."
msgstr ""
-#: src/Module/Admin/Site.php:599
+#: src/Module/Admin/Site.php:595
msgid "Interaction score days"
msgstr ""
-#: src/Module/Admin/Site.php:599
+#: src/Module/Admin/Site.php:595
msgid "Number of days that are used to calculate the interaction score."
msgstr ""
-#: src/Module/Admin/Site.php:600
+#: src/Module/Admin/Site.php:596
msgid "Maximum number of posts per author"
msgstr ""
-#: src/Module/Admin/Site.php:600
+#: src/Module/Admin/Site.php:596
msgid ""
"Maximum number of posts per page by author if the contact frequency is set "
"to \"Display only few posts\". If there are more posts, then the post with "
"the most interactions will be displayed."
msgstr ""
-#: src/Module/Admin/Site.php:601
+#: src/Module/Admin/Site.php:597
msgid "Sharer interaction days"
msgstr ""
-#: src/Module/Admin/Site.php:601
+#: src/Module/Admin/Site.php:597
msgid ""
"Number of days of the last interaction that are used to define which sharers"
" are used for the \"sharers of sharers\" channel."
msgstr ""
-#: src/Module/Admin/Site.php:604
+#: src/Module/Admin/Site.php:600
msgid "Start Relocation"
msgstr "Začít přemístění"
-#: src/Module/Admin/Storage.php:46
+#: src/Module/Admin/Storage.php:32
#, php-format
msgid "Storage backend, %s is invalid."
msgstr ""
-#: src/Module/Admin/Storage.php:73
+#: src/Module/Admin/Storage.php:59
#, php-format
msgid "Storage backend %s error: %s"
msgstr ""
-#: src/Module/Admin/Storage.php:84 src/Module/Admin/Storage.php:87
+#: src/Module/Admin/Storage.php:70 src/Module/Admin/Storage.php:73
msgid "Invalid storage backend setting value."
msgstr "Neplatná hodnota nastavení backendu úložiště."
-#: src/Module/Admin/Storage.php:139
+#: src/Module/Admin/Storage.php:125
msgid "Current Storage Backend"
msgstr ""
-#: src/Module/Admin/Storage.php:140
+#: src/Module/Admin/Storage.php:126
msgid "Storage Configuration"
msgstr ""
-#: src/Module/Admin/Storage.php:141 src/Module/BaseAdmin.php:91
+#: src/Module/Admin/Storage.php:127 src/Module/BaseAdmin.php:77
msgid "Storage"
msgstr ""
-#: src/Module/Admin/Storage.php:143
+#: src/Module/Admin/Storage.php:129
msgid "Save & Use storage backend"
msgstr ""
-#: src/Module/Admin/Storage.php:144
+#: src/Module/Admin/Storage.php:130
msgid "Use storage backend"
msgstr ""
-#: src/Module/Admin/Storage.php:145
+#: src/Module/Admin/Storage.php:131
msgid "Save & Reload"
msgstr ""
-#: src/Module/Admin/Storage.php:146
+#: src/Module/Admin/Storage.php:132
msgid "This backend doesn't have custom settings"
msgstr ""
-#: src/Module/Admin/Storage.php:148
+#: src/Module/Admin/Storage.php:134
msgid ""
"Changing the current backend is prohibited because it is set by an "
"environment variable"
msgstr ""
-#: src/Module/Admin/Storage.php:150
+#: src/Module/Admin/Storage.php:136
msgid "Database (legacy)"
msgstr "Databáze (legacy)"
-#: src/Module/Admin/Summary.php:55
+#: src/Module/Admin/Summary.php:41
#, php-format
msgid "Template engine (%s) error: %s"
msgstr ""
-#: src/Module/Admin/Summary.php:59
+#: src/Module/Admin/Summary.php:45
#, php-format
msgid ""
"Your DB still runs with MyISAM tables. You should change the engine type to "
@@ -5749,7 +5765,7 @@ msgid ""
" an automatic conversion..htconfig.php
. Pro pomoc při přechodu navštivte stránku Config v sekci nápovědy."
-#: src/Module/Admin/Summary.php:118
+#: src/Module/Admin/Summary.php:104
#, php-format
msgid ""
"Friendica's configuration now is stored in config/local.config.php, please "
@@ -5825,7 +5841,7 @@ msgid ""
"page for help with the transition."
msgstr "Konfigurace Friendica je nyní uložena v souboru config/local.config.php, prosím zkopírujte soubor config/local-sample.config.php a přesuňte svou konfiguraci ze souboru local.config.php
. Pro pomoc při přechodu navštivte stránku Config v sekci nápovědy."
-#: src/Module/Admin/Summary.php:124
+#: src/Module/Admin/Summary.php:110
#, php-format
msgid ""
"%s is not reachable on your system. This is a severe "
@@ -5833,107 +5849,107 @@ msgid ""
"href=\"%s\">the installation page for help."
msgstr "%s není na Vašem systému dosažitelné. Tohle je závažná chyba konfigurace, která brání komunikaci mezi servery. Pro pomoc navštivte stránku instalace."
-#: src/Module/Admin/Summary.php:148
+#: src/Module/Admin/Summary.php:134
#, php-format
msgid ""
"Friendica's system.basepath was updated from '%s' to '%s'. Please remove the"
" system.basepath from your db to avoid differences."
msgstr "system.basepath Friendica bylo aktualizováno z „%s“ na „%s“. Pro vyhnutí se rozdílům prosím odstraňte z vaší databáze system.basepath."
-#: src/Module/Admin/Summary.php:156
+#: src/Module/Admin/Summary.php:142
#, php-format
msgid ""
"Friendica's current system.basepath '%s' is wrong and the config file '%s' "
"isn't used."
msgstr "Aktuální system.basepath Friendica „%s“ je špatné a konfigurační soubor „%s“ se nepoužívá."
-#: src/Module/Admin/Summary.php:164
+#: src/Module/Admin/Summary.php:150
#, php-format
msgid ""
"Friendica's current system.basepath '%s' is not equal to the config file "
"'%s'. Please fix your configuration."
msgstr "Aktuální system.basepath „%s“ není rovno konfguračnímu souboru „%s“. Prosím opravte si svou konfiguraci."
-#: src/Module/Admin/Summary.php:175
+#: src/Module/Admin/Summary.php:161
msgid "Message queues"
msgstr "Fronty zpráv"
-#: src/Module/Admin/Summary.php:181
+#: src/Module/Admin/Summary.php:167
msgid "Server Settings"
msgstr "Nastavení serveru"
-#: src/Module/Admin/Summary.php:199
+#: src/Module/Admin/Summary.php:185
msgid "Version"
msgstr "Verze"
-#: src/Module/Admin/Summary.php:203
+#: src/Module/Admin/Summary.php:189
msgid "Active addons"
msgstr "Aktivní doplňky"
-#: src/Module/Admin/Themes/Details.php:57 src/Module/Admin/Themes/Index.php:65
+#: src/Module/Admin/Themes/Details.php:49 src/Module/Admin/Themes/Index.php:57
#, php-format
msgid "Theme %s disabled."
msgstr "Motiv %s zakázán."
-#: src/Module/Admin/Themes/Details.php:59 src/Module/Admin/Themes/Index.php:67
+#: src/Module/Admin/Themes/Details.php:51 src/Module/Admin/Themes/Index.php:59
#, php-format
msgid "Theme %s successfully enabled."
msgstr "Motiv %s úspěšně povolen."
-#: src/Module/Admin/Themes/Details.php:61 src/Module/Admin/Themes/Index.php:69
+#: src/Module/Admin/Themes/Details.php:53 src/Module/Admin/Themes/Index.php:61
#, php-format
msgid "Theme %s failed to install."
msgstr "Instalace motivu %s selhala."
-#: src/Module/Admin/Themes/Details.php:83
+#: src/Module/Admin/Themes/Details.php:75
msgid "Screenshot"
msgstr "Snímek obrazovky"
-#: src/Module/Admin/Themes/Details.php:91
-#: src/Module/Admin/Themes/Index.php:112 src/Module/BaseAdmin.php:93
+#: src/Module/Admin/Themes/Details.php:83
+#: src/Module/Admin/Themes/Index.php:104 src/Module/BaseAdmin.php:79
msgid "Themes"
msgstr "Motivy"
-#: src/Module/Admin/Themes/Embed.php:80
+#: src/Module/Admin/Themes/Embed.php:66
msgid "Unknown theme."
msgstr "Neznámý motiv."
-#: src/Module/Admin/Themes/Index.php:51
+#: src/Module/Admin/Themes/Index.php:43
msgid "Themes reloaded"
msgstr ""
-#: src/Module/Admin/Themes/Index.php:114
+#: src/Module/Admin/Themes/Index.php:106
msgid "Reload active themes"
msgstr "Znovu načíst aktivní motivy"
-#: src/Module/Admin/Themes/Index.php:118
+#: src/Module/Admin/Themes/Index.php:110
#, php-format
msgid "No themes found on the system. They should be placed in %1$s"
msgstr "V systému nebyly nalezeny žádné motivy. Měly by být uloženy v %1$s"
-#: src/Module/Admin/Themes/Index.php:119
+#: src/Module/Admin/Themes/Index.php:111
msgid "[Experimental]"
msgstr "[Experimentální]"
-#: src/Module/Admin/Themes/Index.php:120
+#: src/Module/Admin/Themes/Index.php:112
msgid "[Unsupported]"
msgstr "[Nepodporováno]"
-#: src/Module/Admin/Tos.php:79
+#: src/Module/Admin/Tos.php:65
msgid "Display Terms of Service"
msgstr "Zobrazit Podmínky používání"
-#: src/Module/Admin/Tos.php:79
+#: src/Module/Admin/Tos.php:65
msgid ""
"Enable the Terms of Service page. If this is enabled a link to the terms "
"will be added to the registration form and the general information page."
msgstr "Povolí stránku Podmínky používání. Pokud je toto povoleno, bude na formulář pro registrací a stránku s obecnými informacemi přidán odkaz k podmínkám."
-#: src/Module/Admin/Tos.php:80
+#: src/Module/Admin/Tos.php:66
msgid "Display Privacy Statement"
msgstr "Zobrazit Prohlášení o soukromí"
-#: src/Module/Admin/Tos.php:80
+#: src/Module/Admin/Tos.php:66
#, php-format
msgid ""
"Show some informations regarding the needed information to operate the node "
@@ -5941,160 +5957,160 @@ msgid ""
"noreferrer\">EU-GDPR."
msgstr ""
-#: src/Module/Admin/Tos.php:81
+#: src/Module/Admin/Tos.php:67
msgid "Privacy Statement Preview"
msgstr "Náhled Prohlášení o soukromí"
-#: src/Module/Admin/Tos.php:83
+#: src/Module/Admin/Tos.php:69
msgid "The Terms of Service"
msgstr "Podmínky používání"
-#: src/Module/Admin/Tos.php:83
+#: src/Module/Admin/Tos.php:69
msgid ""
"Enter the Terms of Service for your node here. You can use BBCode. Headers "
"of sections should be [h2] and below."
msgstr "Zde zadejte podmínky používání vašeho serveru. Můžete používat BBCode. Záhlaví sekcí by měly být označeny [h2] a níže."
-#: src/Module/Admin/Tos.php:84
+#: src/Module/Admin/Tos.php:70
msgid "The rules"
msgstr ""
-#: src/Module/Admin/Tos.php:84
+#: src/Module/Admin/Tos.php:70
msgid "Enter your system rules here. Each line represents one rule."
msgstr ""
-#: src/Module/Api/ApiResponse.php:293
+#: src/Module/Api/ApiResponse.php:279
#, php-format
msgid "API endpoint %s %s is not implemented but might be in the future."
msgstr ""
-#: src/Module/Api/Mastodon/Apps.php:73
+#: src/Module/Api/Mastodon/Apps.php:59
msgid "Missing parameters"
msgstr ""
-#: src/Module/Api/Mastodon/Statuses/Bookmark.php:50
+#: src/Module/Api/Mastodon/Statuses/Bookmark.php:36
msgid "Only starting posts can be bookmarked"
msgstr ""
-#: src/Module/Api/Mastodon/Statuses/Mute.php:51
+#: src/Module/Api/Mastodon/Statuses/Mute.php:37
msgid "Only starting posts can be muted"
msgstr ""
-#: src/Module/Api/Mastodon/Statuses/Reblog.php:58
+#: src/Module/Api/Mastodon/Statuses/Reblog.php:44
#, php-format
msgid "Posts from %s can't be shared"
msgstr ""
-#: src/Module/Api/Mastodon/Statuses/Unbookmark.php:51
+#: src/Module/Api/Mastodon/Statuses/Unbookmark.php:37
msgid "Only starting posts can be unbookmarked"
msgstr ""
-#: src/Module/Api/Mastodon/Statuses/Unmute.php:51
+#: src/Module/Api/Mastodon/Statuses/Unmute.php:37
msgid "Only starting posts can be unmuted"
msgstr ""
-#: src/Module/Api/Mastodon/Statuses/Unreblog.php:64
+#: src/Module/Api/Mastodon/Statuses/Unreblog.php:50
#, php-format
msgid "Posts from %s can't be unshared"
msgstr ""
-#: src/Module/Api/Twitter/ContactEndpoint.php:66
+#: src/Module/Api/Twitter/ContactEndpoint.php:52
msgid "Contact not found"
msgstr "Kontakt nenalezen."
-#: src/Module/Apps.php:62
+#: src/Module/Apps.php:48
msgid "No installed applications."
msgstr "Žádné nainstalované aplikace."
-#: src/Module/Apps.php:67
+#: src/Module/Apps.php:53
msgid "Applications"
msgstr "Aplikace"
-#: src/Module/Attach.php:49 src/Module/Attach.php:61
+#: src/Module/Attach.php:35 src/Module/Attach.php:47
msgid "Item was not found."
msgstr "Položka nebyla nalezena."
-#: src/Module/BaseAdmin.php:54 src/Module/BaseAdmin.php:58
-#: src/Module/BaseModeration.php:77 src/Module/BaseModeration.php:81
+#: src/Module/BaseAdmin.php:40 src/Module/BaseAdmin.php:44
+#: src/Module/BaseModeration.php:63 src/Module/BaseModeration.php:67
msgid "Please login to continue."
msgstr "Pro pokračování se prosím přihlaste."
-#: src/Module/BaseAdmin.php:63
+#: src/Module/BaseAdmin.php:49
msgid "You don't have access to administration pages."
msgstr ""
-#: src/Module/BaseAdmin.php:67
+#: src/Module/BaseAdmin.php:53
msgid ""
"Submanaged account can't access the administration pages. Please log back in"
" as the main account."
msgstr ""
-#: src/Module/BaseAdmin.php:86 src/Module/BaseModeration.php:109
+#: src/Module/BaseAdmin.php:72 src/Module/BaseModeration.php:95
msgid "Overview"
msgstr "Přehled"
-#: src/Module/BaseAdmin.php:89 src/Module/BaseModeration.php:112
+#: src/Module/BaseAdmin.php:75 src/Module/BaseModeration.php:98
msgid "Configuration"
msgstr "Konfigurace"
-#: src/Module/BaseAdmin.php:94 src/Module/BaseSettings.php:110
+#: src/Module/BaseAdmin.php:80 src/Module/BaseSettings.php:96
msgid "Additional features"
msgstr "Dodatečné vlastnosti"
-#: src/Module/BaseAdmin.php:97
+#: src/Module/BaseAdmin.php:83
msgid "Database"
msgstr "Databáze"
-#: src/Module/BaseAdmin.php:98
+#: src/Module/BaseAdmin.php:84
msgid "DB updates"
msgstr "Aktualizace databáze"
-#: src/Module/BaseAdmin.php:99
+#: src/Module/BaseAdmin.php:85
msgid "Inspect Deferred Workers"
msgstr "Prozkoumat odložené pracovníky"
-#: src/Module/BaseAdmin.php:100
+#: src/Module/BaseAdmin.php:86
msgid "Inspect worker Queue"
msgstr "Prozkoumat frontu pro pracovníka"
-#: src/Module/BaseAdmin.php:106 src/Module/BaseModeration.php:120
+#: src/Module/BaseAdmin.php:92 src/Module/BaseModeration.php:106
msgid "Diagnostics"
msgstr "Diagnostika"
-#: src/Module/BaseAdmin.php:107
+#: src/Module/BaseAdmin.php:93
msgid "PHP Info"
msgstr "Info o PHP"
-#: src/Module/BaseAdmin.php:108
+#: src/Module/BaseAdmin.php:94
msgid "probe address"
msgstr "vyzkoušet adresu"
-#: src/Module/BaseAdmin.php:109
+#: src/Module/BaseAdmin.php:95
msgid "check webfinger"
msgstr "vyzkoušet webfinger"
-#: src/Module/BaseAdmin.php:110
+#: src/Module/BaseAdmin.php:96
msgid "Babel"
msgstr "Babel"
-#: src/Module/BaseAdmin.php:111 src/Module/Debug/ActivityPubConversion.php:137
+#: src/Module/BaseAdmin.php:97 src/Module/Debug/ActivityPubConversion.php:129
msgid "ActivityPub Conversion"
msgstr ""
-#: src/Module/BaseAdmin.php:120
+#: src/Module/BaseAdmin.php:106
msgid "Addon Features"
msgstr "Vlastnosti doplňků"
-#: src/Module/BaseAdmin.php:121 src/Module/BaseModeration.php:129
+#: src/Module/BaseAdmin.php:107 src/Module/BaseModeration.php:115
msgid "User registrations waiting for confirmation"
msgstr "Registrace uživatelů čekající na potvrzení"
-#: src/Module/BaseApi.php:455 src/Module/BaseApi.php:471
-#: src/Module/BaseApi.php:487
+#: src/Module/BaseApi.php:441 src/Module/BaseApi.php:457
+#: src/Module/BaseApi.php:473
msgid "Too Many Requests"
msgstr ""
-#: src/Module/BaseApi.php:456
+#: src/Module/BaseApi.php:442
#, php-format
msgid "Daily posting limit of %d post reached. The post was rejected."
msgid_plural "Daily posting limit of %d posts reached. The post was rejected."
@@ -6103,7 +6119,7 @@ msgstr[1] "Byl dosažen denní limit %d příspěvků. Příspěvek byl odmítnu
msgstr[2] "Byl dosažen denní limit %d příspěvku. Příspěvek byl odmítnut."
msgstr[3] "Byl dosažen denní limit %d příspěvků. Příspěvek byl odmítnut."
-#: src/Module/BaseApi.php:472
+#: src/Module/BaseApi.php:458
#, php-format
msgid "Weekly posting limit of %d post reached. The post was rejected."
msgid_plural ""
@@ -6113,7 +6129,7 @@ msgstr[1] "Byl dosažen týdenní limit %d příspěvků. Příspěvek byl odmí
msgstr[2] "Byl dosažen týdenní limit %d příspěvku. Příspěvek byl odmítnut."
msgstr[3] "Byl dosažen týdenní limit %d příspěvků. Příspěvek byl odmítnut."
-#: src/Module/BaseApi.php:488
+#: src/Module/BaseApi.php:474
#, php-format
msgid "Monthly posting limit of %d post reached. The post was rejected."
msgid_plural ""
@@ -6123,84 +6139,84 @@ msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
-#: src/Module/BaseModeration.php:86
+#: src/Module/BaseModeration.php:72
msgid "You don't have access to moderation pages."
msgstr ""
-#: src/Module/BaseModeration.php:90
+#: src/Module/BaseModeration.php:76
msgid ""
"Submanaged account can't access the moderation pages. Please log back in as "
"the main account."
msgstr ""
-#: src/Module/BaseModeration.php:110 src/Module/Moderation/Reports.php:109
+#: src/Module/BaseModeration.php:96 src/Module/Moderation/Reports.php:101
msgid "Reports"
msgstr ""
-#: src/Module/BaseModeration.php:113 src/Module/Moderation/Users/Index.php:148
-#: src/Module/Moderation/Users/Index.php:158
+#: src/Module/BaseModeration.php:99 src/Module/Moderation/Users/Index.php:134
+#: src/Module/Moderation/Users/Index.php:144
msgid "Users"
msgstr "Uživatelé"
-#: src/Module/BaseModeration.php:115
+#: src/Module/BaseModeration.php:101
msgid "Tools"
msgstr "Nástroje"
-#: src/Module/BaseModeration.php:116
+#: src/Module/BaseModeration.php:102
msgid "Contact Blocklist"
msgstr "Blokované kontakty"
-#: src/Module/BaseModeration.php:117
+#: src/Module/BaseModeration.php:103
msgid "Server Blocklist"
msgstr "Blokované servery"
-#: src/Module/BaseModeration.php:118 src/Module/Moderation/Item/Delete.php:62
+#: src/Module/BaseModeration.php:104 src/Module/Moderation/Item/Delete.php:48
msgid "Delete Item"
msgstr "Smazat položku"
-#: src/Module/BaseModeration.php:121 src/Module/Moderation/Item/Source.php:76
+#: src/Module/BaseModeration.php:107 src/Module/Moderation/Item/Source.php:68
msgid "Item Source"
msgstr "Zdroj položky"
-#: src/Module/BaseProfile.php:52 src/Module/Contact.php:506
+#: src/Module/BaseProfile.php:38 src/Module/Contact.php:488
msgid "Profile Details"
msgstr "Detaily profilu"
-#: src/Module/BaseProfile.php:60
+#: src/Module/BaseProfile.php:46
msgid "Conversations started"
msgstr ""
-#: src/Module/BaseProfile.php:111
+#: src/Module/BaseProfile.php:97
msgid "Only You Can See This"
msgstr "Toto můžete vidět jen vy"
-#: src/Module/BaseProfile.php:116 src/Module/Profile/Schedule.php:81
+#: src/Module/BaseProfile.php:102 src/Module/Profile/Schedule.php:67
msgid "Scheduled Posts"
msgstr ""
-#: src/Module/BaseProfile.php:119
+#: src/Module/BaseProfile.php:105
msgid "Posts that are scheduled for publishing"
msgstr ""
-#: src/Module/BaseProfile.php:138 src/Module/BaseProfile.php:141
+#: src/Module/BaseProfile.php:124 src/Module/BaseProfile.php:127
msgid "Tips for New Members"
msgstr "Tipy pro nové členy"
-#: src/Module/BaseSearch.php:71
+#: src/Module/BaseSearch.php:57
#, php-format
msgid "People Search - %s"
msgstr "Vyhledávání lidí - %s"
-#: src/Module/BaseSearch.php:75
+#: src/Module/BaseSearch.php:61
#, php-format
msgid "Group Search - %s"
msgstr ""
-#: src/Module/BaseSearch.php:121 src/Module/Contact/MatchInterests.php:140
+#: src/Module/BaseSearch.php:107 src/Module/Contact/MatchInterests.php:136
msgid "No matches"
msgstr "Žádné shody"
-#: src/Module/BaseSearch.php:147
+#: src/Module/BaseSearch.php:133
#, php-format
msgid ""
"%d result was filtered out because your node blocks the domain it is "
@@ -6215,267 +6231,267 @@ msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
-#: src/Module/BaseSettings.php:78
+#: src/Module/BaseSettings.php:64
msgid "Account"
msgstr "Účet"
-#: src/Module/BaseSettings.php:85 src/Module/Security/TwoFactor/Verify.php:96
-#: src/Module/Settings/TwoFactor/Index.php:138
+#: src/Module/BaseSettings.php:71 src/Module/Security/TwoFactor/Verify.php:82
+#: src/Module/Settings/TwoFactor/Index.php:124
msgid "Two-factor authentication"
msgstr "Dvoufázové ověřování"
-#: src/Module/BaseSettings.php:118
+#: src/Module/BaseSettings.php:104
msgid "Display"
msgstr "Zobrazení"
-#: src/Module/BaseSettings.php:132 src/Module/Settings/Connectors.php:204
+#: src/Module/BaseSettings.php:118 src/Module/Settings/Connectors.php:195
msgid "Social Networks"
msgstr "Sociální sítě"
-#: src/Module/BaseSettings.php:146 src/Module/Settings/Delegation.php:194
+#: src/Module/BaseSettings.php:132 src/Module/Settings/Delegation.php:180
msgid "Manage Accounts"
msgstr ""
-#: src/Module/BaseSettings.php:153
+#: src/Module/BaseSettings.php:139
msgid "Connected apps"
msgstr "Připojené aplikace"
-#: src/Module/BaseSettings.php:160
+#: src/Module/BaseSettings.php:146
msgid "Remote servers"
msgstr ""
-#: src/Module/BaseSettings.php:167 src/Module/Settings/UserExport.php:98
+#: src/Module/BaseSettings.php:153 src/Module/Settings/UserExport.php:84
msgid "Export personal data"
msgstr "Exportovat osobní údaje"
-#: src/Module/BaseSettings.php:174
+#: src/Module/BaseSettings.php:160
msgid "Remove account"
msgstr "Odstranit účet"
-#: src/Module/Bookmarklet.php:54
+#: src/Module/Bookmarklet.php:40
msgid "This page is missing a url parameter."
msgstr "Této stránce chybí parametr url."
-#: src/Module/Bookmarklet.php:66
+#: src/Module/Bookmarklet.php:52
msgid "The post was created"
msgstr "Příspěvek byl vytvořen"
-#: src/Module/Calendar/Event/API.php:100 src/Module/Calendar/Event/API.php:135
-#: src/Module/Calendar/Event/Form.php:80
+#: src/Module/Calendar/Event/API.php:86 src/Module/Calendar/Event/API.php:121
+#: src/Module/Calendar/Event/Form.php:66
msgid "Invalid Request"
msgstr ""
-#: src/Module/Calendar/Event/API.php:109
+#: src/Module/Calendar/Event/API.php:95
msgid "Event id is missing."
msgstr ""
-#: src/Module/Calendar/Event/API.php:131
+#: src/Module/Calendar/Event/API.php:117
msgid "Failed to remove event"
msgstr "Odstranění události selhalo"
-#: src/Module/Calendar/Event/API.php:187 src/Module/Calendar/Event/API.php:189
+#: src/Module/Calendar/Event/API.php:173 src/Module/Calendar/Event/API.php:175
msgid "Event can not end before it has started."
msgstr "Událost nemůže končit dříve, než začala."
-#: src/Module/Calendar/Event/API.php:196 src/Module/Calendar/Event/API.php:198
+#: src/Module/Calendar/Event/API.php:182 src/Module/Calendar/Event/API.php:184
msgid "Event title and start time are required."
msgstr "Název události a datum začátku jsou vyžadovány."
-#: src/Module/Calendar/Event/Form.php:208
+#: src/Module/Calendar/Event/Form.php:194
msgid "Starting date and Title are required."
msgstr "Počáteční datum a Název jsou vyžadovány."
-#: src/Module/Calendar/Event/Form.php:209
-#: src/Module/Calendar/Event/Form.php:214
+#: src/Module/Calendar/Event/Form.php:195
+#: src/Module/Calendar/Event/Form.php:200
msgid "Event Starts:"
msgstr "Událost začíná:"
-#: src/Module/Calendar/Event/Form.php:209
-#: src/Module/Calendar/Event/Form.php:237 src/Module/Debug/Probe.php:59
-#: src/Module/Install.php:201 src/Module/Install.php:227
-#: src/Module/Install.php:232 src/Module/Install.php:246
-#: src/Module/Install.php:255 src/Module/Install.php:260
-#: src/Module/Install.php:266 src/Module/Install.php:271
-#: src/Module/Install.php:285 src/Module/Install.php:298
-#: src/Module/Install.php:325
-#: src/Module/Moderation/Blocklist/Server/Add.php:136
-#: src/Module/Moderation/Blocklist/Server/Add.php:138
-#: src/Module/Moderation/Blocklist/Server/Import.php:129
-#: src/Module/Moderation/Blocklist/Server/Index.php:86
-#: src/Module/Moderation/Blocklist/Server/Index.php:87
-#: src/Module/Moderation/Blocklist/Server/Index.php:115
-#: src/Module/Moderation/Blocklist/Server/Index.php:116
-#: src/Module/Moderation/Item/Delete.php:67 src/Module/Register.php:149
-#: src/Module/Security/TwoFactor/Verify.php:101
-#: src/Module/Settings/Channels.php:190 src/Module/Settings/Channels.php:211
-#: src/Module/Settings/TwoFactor/Index.php:161
-#: src/Module/Settings/TwoFactor/Verify.php:158
+#: src/Module/Calendar/Event/Form.php:195
+#: src/Module/Calendar/Event/Form.php:223 src/Module/Debug/Probe.php:45
+#: src/Module/Install.php:187 src/Module/Install.php:213
+#: src/Module/Install.php:218 src/Module/Install.php:232
+#: src/Module/Install.php:241 src/Module/Install.php:246
+#: src/Module/Install.php:252 src/Module/Install.php:257
+#: src/Module/Install.php:271 src/Module/Install.php:284
+#: src/Module/Install.php:311
+#: src/Module/Moderation/Blocklist/Server/Add.php:122
+#: src/Module/Moderation/Blocklist/Server/Add.php:124
+#: src/Module/Moderation/Blocklist/Server/Import.php:113
+#: src/Module/Moderation/Blocklist/Server/Index.php:72
+#: src/Module/Moderation/Blocklist/Server/Index.php:73
+#: src/Module/Moderation/Blocklist/Server/Index.php:101
+#: src/Module/Moderation/Blocklist/Server/Index.php:102
+#: src/Module/Moderation/Item/Delete.php:53 src/Module/Register.php:141
+#: src/Module/Security/TwoFactor/Verify.php:87
+#: src/Module/Settings/Channels.php:176 src/Module/Settings/Channels.php:197
+#: src/Module/Settings/TwoFactor/Index.php:147
+#: src/Module/Settings/TwoFactor/Verify.php:144
msgid "Required"
msgstr "Vyžadováno"
-#: src/Module/Calendar/Event/Form.php:223
-#: src/Module/Calendar/Event/Form.php:247
+#: src/Module/Calendar/Event/Form.php:209
+#: src/Module/Calendar/Event/Form.php:233
msgid "Finish date/time is not known or not relevant"
msgstr "Datum/čas konce není zadán nebo není relevantní"
-#: src/Module/Calendar/Event/Form.php:225
-#: src/Module/Calendar/Event/Form.php:230
+#: src/Module/Calendar/Event/Form.php:211
+#: src/Module/Calendar/Event/Form.php:216
msgid "Event Finishes:"
msgstr "Akce končí:"
-#: src/Module/Calendar/Event/Form.php:237
-#: src/Module/Calendar/Event/Form.php:243
+#: src/Module/Calendar/Event/Form.php:223
+#: src/Module/Calendar/Event/Form.php:229
msgid "Title (BBCode not allowed)"
msgstr ""
-#: src/Module/Calendar/Event/Form.php:239
+#: src/Module/Calendar/Event/Form.php:225
msgid "Description (BBCode allowed)"
msgstr ""
-#: src/Module/Calendar/Event/Form.php:241
+#: src/Module/Calendar/Event/Form.php:227
msgid "Location (BBCode not allowed)"
msgstr ""
-#: src/Module/Calendar/Event/Form.php:244
-#: src/Module/Calendar/Event/Form.php:245
+#: src/Module/Calendar/Event/Form.php:230
+#: src/Module/Calendar/Event/Form.php:231
msgid "Share this event"
msgstr "Sdílet tuto událost"
-#: src/Module/Calendar/Event/Form.php:251 src/Module/Profile/Profile.php:275
+#: src/Module/Calendar/Event/Form.php:237 src/Module/Profile/Profile.php:263
msgid "Basic"
msgstr "Základní"
-#: src/Module/Calendar/Export.php:94
+#: src/Module/Calendar/Export.php:80
msgid "This calendar format is not supported"
msgstr "Tento formát kalendáře není podporován."
-#: src/Module/Calendar/Export.php:96
+#: src/Module/Calendar/Export.php:82
msgid "No exportable data found"
msgstr "Nenalezena žádná data pro export"
-#: src/Module/Calendar/Export.php:113
+#: src/Module/Calendar/Export.php:99
msgid "calendar"
msgstr "kalendář"
-#: src/Module/Calendar/Show.php:124
+#: src/Module/Calendar/Show.php:110
msgid "Events"
msgstr "Události"
-#: src/Module/Calendar/Show.php:125
+#: src/Module/Calendar/Show.php:111
msgid "View"
msgstr "Zobrazit"
-#: src/Module/Calendar/Show.php:126
+#: src/Module/Calendar/Show.php:112
msgid "Create New Event"
msgstr "Vytvořit novou událost"
-#: src/Module/Calendar/Show.php:132 src/Module/Settings/Display.php:297
+#: src/Module/Calendar/Show.php:118 src/Module/Settings/Display.php:283
msgid "list"
msgstr "seznam"
-#: src/Module/Circle.php:57
+#: src/Module/Circle.php:43
msgid "Could not create circle."
msgstr ""
-#: src/Module/Circle.php:68 src/Module/Circle.php:216
-#: src/Module/Circle.php:240
+#: src/Module/Circle.php:54 src/Module/Circle.php:202
+#: src/Module/Circle.php:226
msgid "Circle not found."
msgstr ""
-#: src/Module/Circle.php:74
+#: src/Module/Circle.php:60
msgid "Circle name was not changed."
msgstr ""
-#: src/Module/Circle.php:92
+#: src/Module/Circle.php:78
msgid "Unknown circle."
msgstr ""
-#: src/Module/Circle.php:98 src/Module/Circle.php:107
-#: src/Module/Contact/Advanced.php:70 src/Module/Contact/Advanced.php:109
-#: src/Module/Contact/Contacts.php:71 src/Module/Contact/Conversations.php:86
-#: src/Module/Contact/Conversations.php:91
-#: src/Module/Contact/Conversations.php:96 src/Module/Contact/Media.php:61
-#: src/Module/Contact/Posts.php:78 src/Module/Contact/Posts.php:83
-#: src/Module/Contact/Posts.php:88 src/Module/Contact/Profile.php:159
-#: src/Module/Contact/Profile.php:164 src/Module/Contact/Profile.php:169
-#: src/Module/Contact/Redir.php:95 src/Module/Contact/Redir.php:141
-#: src/Module/FriendSuggest.php:71 src/Module/FriendSuggest.php:109
+#: src/Module/Circle.php:84 src/Module/Circle.php:93
+#: src/Module/Contact/Advanced.php:56 src/Module/Contact/Advanced.php:95
+#: src/Module/Contact/Contacts.php:57 src/Module/Contact/Conversations.php:72
+#: src/Module/Contact/Conversations.php:77
+#: src/Module/Contact/Conversations.php:82 src/Module/Contact/Media.php:47
+#: src/Module/Contact/Posts.php:64 src/Module/Contact/Posts.php:69
+#: src/Module/Contact/Posts.php:74 src/Module/Contact/Profile.php:145
+#: src/Module/Contact/Profile.php:150 src/Module/Contact/Profile.php:169
+#: src/Module/Contact/Redir.php:77 src/Module/Contact/Redir.php:131
+#: src/Module/FriendSuggest.php:57 src/Module/FriendSuggest.php:95
msgid "Contact not found."
msgstr "Kontakt nenalezen."
-#: src/Module/Circle.php:102 src/Module/Contact/Contacts.php:66
+#: src/Module/Circle.php:88 src/Module/Contact/Contacts.php:52
msgid "Invalid contact."
msgstr "Neplatný kontakt."
-#: src/Module/Circle.php:111 src/Module/Contact/Revoke.php:73
+#: src/Module/Circle.php:97 src/Module/Contact/Revoke.php:56
msgid "Contact is deleted."
msgstr "Knotakt je smazán."
-#: src/Module/Circle.php:117
+#: src/Module/Circle.php:103
msgid "Unable to add the contact to the circle."
msgstr ""
-#: src/Module/Circle.php:120
+#: src/Module/Circle.php:106
msgid "Contact successfully added to circle."
msgstr ""
-#: src/Module/Circle.php:124
+#: src/Module/Circle.php:110
msgid "Unable to remove the contact from the circle."
msgstr ""
-#: src/Module/Circle.php:127
+#: src/Module/Circle.php:113
msgid "Contact successfully removed from circle."
msgstr ""
-#: src/Module/Circle.php:131
+#: src/Module/Circle.php:117
msgid "Bad request."
msgstr "Špatný požadavek."
-#: src/Module/Circle.php:172
+#: src/Module/Circle.php:158
msgid "Save Circle"
msgstr ""
-#: src/Module/Circle.php:173
+#: src/Module/Circle.php:159
msgid "Filter"
msgstr "Filtr"
-#: src/Module/Circle.php:179
+#: src/Module/Circle.php:165
msgid "Create a circle of contacts/friends."
msgstr ""
-#: src/Module/Circle.php:221
+#: src/Module/Circle.php:207
msgid "Unable to remove circle."
msgstr ""
-#: src/Module/Circle.php:272
+#: src/Module/Circle.php:258
msgid "Delete Circle"
msgstr ""
-#: src/Module/Circle.php:282
+#: src/Module/Circle.php:268
msgid "Edit Circle Name"
msgstr ""
-#: src/Module/Circle.php:292
+#: src/Module/Circle.php:278
msgid "Members"
msgstr "Členové"
-#: src/Module/Circle.php:295
+#: src/Module/Circle.php:281
msgid "Circle is empty"
msgstr ""
-#: src/Module/Circle.php:311
+#: src/Module/Circle.php:297
msgid "Remove contact from circle"
msgstr ""
-#: src/Module/Circle.php:334
+#: src/Module/Circle.php:320
msgid "Click on a contact to add or remove."
msgstr "Klikněte na kontakt pro přidání nebo odebrání"
-#: src/Module/Circle.php:351
+#: src/Module/Circle.php:337
msgid "Add contact to circle"
msgstr ""
-#: src/Module/Contact.php:96
+#: src/Module/Contact.php:88
#, php-format
msgid "%d contact edited."
msgid_plural "%d contacts edited."
@@ -6484,192 +6500,192 @@ msgstr[1] "%d kontakty upraveny"
msgstr[2] "%d kontaktu upraveno"
msgstr[3] "%d kontaktů upraveno"
-#: src/Module/Contact.php:347
+#: src/Module/Contact.php:328
msgid "Show all contacts"
msgstr "Zobrazit všechny kontakty"
-#: src/Module/Contact.php:352 src/Module/Contact.php:431
-#: src/Module/Moderation/BaseUsers.php:85
+#: src/Module/Contact.php:333 src/Module/Contact.php:412
+#: src/Module/Moderation/BaseUsers.php:72
msgid "Pending"
msgstr "Čekající"
-#: src/Module/Contact.php:355
+#: src/Module/Contact.php:336
msgid "Only show pending contacts"
msgstr ""
-#: src/Module/Contact.php:360 src/Module/Contact.php:434
-#: src/Module/Moderation/BaseUsers.php:93
+#: src/Module/Contact.php:341 src/Module/Contact.php:415
+#: src/Module/Moderation/BaseUsers.php:80
msgid "Blocked"
msgstr "Blokované"
-#: src/Module/Contact.php:363
+#: src/Module/Contact.php:344
msgid "Only show blocked contacts"
msgstr "Zobrazit pouze blokované kontakty"
-#: src/Module/Contact.php:368 src/Module/Contact.php:440
-#: src/Module/Settings/Server/Index.php:107 src/Object/Post.php:399
+#: src/Module/Contact.php:349 src/Module/Contact.php:421
+#: src/Module/Settings/Server/Index.php:93 src/Object/Post.php:385
msgid "Ignored"
msgstr "Ignorované"
-#: src/Module/Contact.php:371
+#: src/Module/Contact.php:352
msgid "Only show ignored contacts"
msgstr "Zobrazit pouze ignorované kontakty"
-#: src/Module/Contact.php:376 src/Module/Contact.php:443
+#: src/Module/Contact.php:357 src/Module/Contact.php:424
msgid "Collapsed"
msgstr ""
-#: src/Module/Contact.php:379
+#: src/Module/Contact.php:360
msgid "Only show collapsed contacts"
msgstr ""
-#: src/Module/Contact.php:384 src/Module/Contact.php:446
+#: src/Module/Contact.php:365 src/Module/Contact.php:427
msgid "Archived"
msgstr "Archivované"
-#: src/Module/Contact.php:387
+#: src/Module/Contact.php:368
msgid "Only show archived contacts"
msgstr "Zobrazit pouze archivované kontakty"
-#: src/Module/Contact.php:392 src/Module/Contact.php:437
+#: src/Module/Contact.php:373 src/Module/Contact.php:418
msgid "Hidden"
msgstr "Skryté"
-#: src/Module/Contact.php:395
+#: src/Module/Contact.php:376
msgid "Only show hidden contacts"
msgstr "Zobrazit pouze skryté kontakty"
-#: src/Module/Contact.php:403
+#: src/Module/Contact.php:384
msgid "Organize your contact circles"
msgstr ""
-#: src/Module/Contact.php:458
+#: src/Module/Contact.php:439
msgid "Search your contacts"
msgstr "Prohledat vaše kontakty"
-#: src/Module/Contact.php:459 src/Module/Search/Index.php:207
+#: src/Module/Contact.php:440 src/Module/Search/Index.php:193
#, php-format
msgid "Results for: %s"
msgstr "Výsledky pro: %s"
-#: src/Module/Contact.php:466
+#: src/Module/Contact.php:448
msgid "Update"
msgstr "Aktualizace"
-#: src/Module/Contact.php:467 src/Module/Contact/Profile.php:518
-#: src/Module/Moderation/Blocklist/Contact.php:117
-#: src/Module/Moderation/Users/Blocked.php:138
-#: src/Module/Moderation/Users/Index.php:154
+#: src/Module/Contact.php:449 src/Module/Contact/Profile.php:518
+#: src/Module/Moderation/Blocklist/Contact.php:103
+#: src/Module/Moderation/Users/Blocked.php:124
+#: src/Module/Moderation/Users/Index.php:140
msgid "Unblock"
msgstr "Odblokovat"
-#: src/Module/Contact.php:468 src/Module/Contact/Profile.php:526
+#: src/Module/Contact.php:450 src/Module/Contact/Profile.php:526
msgid "Unignore"
msgstr "Přestat ignorovat"
-#: src/Module/Contact.php:469 src/Module/Contact/Profile.php:534
+#: src/Module/Contact.php:451 src/Module/Contact/Profile.php:534
msgid "Uncollapse"
msgstr ""
-#: src/Module/Contact.php:471
+#: src/Module/Contact.php:453
msgid "Batch Actions"
msgstr "Souhrnné akce"
-#: src/Module/Contact.php:514
+#: src/Module/Contact.php:496
msgid "Conversations started by this contact"
msgstr "Konverzace, které tento kontakt začal"
-#: src/Module/Contact.php:519
+#: src/Module/Contact.php:501
msgid "Posts and Comments"
msgstr "Příspěvky a komentáře"
-#: src/Module/Contact.php:522
+#: src/Module/Contact.php:504
msgid "Individual Posts and Replies"
msgstr ""
-#: src/Module/Contact.php:530
+#: src/Module/Contact.php:512
msgid "Posts containing media objects"
msgstr ""
-#: src/Module/Contact.php:538
+#: src/Module/Contact.php:520
msgid "View all known contacts"
msgstr ""
-#: src/Module/Contact.php:549
+#: src/Module/Contact.php:531
msgid "Advanced Contact Settings"
msgstr "Pokročilé nastavení kontaktu"
-#: src/Module/Contact.php:585
+#: src/Module/Contact.php:567
msgid "Mutual Friendship"
msgstr "Vzájemné přátelství"
-#: src/Module/Contact.php:589
+#: src/Module/Contact.php:571
msgid "is a fan of yours"
msgstr "je váš fanoušek"
-#: src/Module/Contact.php:593
+#: src/Module/Contact.php:575
msgid "you are a fan of"
msgstr "jste fanouškem"
-#: src/Module/Contact.php:611
+#: src/Module/Contact.php:593
msgid "Pending outgoing contact request"
msgstr ""
-#: src/Module/Contact.php:613
+#: src/Module/Contact.php:595
msgid "Pending incoming contact request"
msgstr ""
-#: src/Module/Contact.php:626 src/Module/Contact/Profile.php:377
+#: src/Module/Contact.php:608 src/Module/Contact/Profile.php:377
#, php-format
msgid "Visit %s's profile [%s]"
msgstr "Navštivte profil uživatele %s [%s]"
-#: src/Module/Contact/Advanced.php:99
+#: src/Module/Contact/Advanced.php:85
msgid "Contact update failed."
msgstr "Aktualizace kontaktu selhala."
-#: src/Module/Contact/Advanced.php:130
+#: src/Module/Contact/Advanced.php:116
msgid "Return to contact editor"
msgstr "Zpět k editoru kontaktu"
-#: src/Module/Contact/Advanced.php:134
-#: src/Module/Moderation/Blocklist/Contact.php:122
-#: src/Module/Moderation/Reports.php:110
-#: src/Module/Moderation/Users/Active.php:126
-#: src/Module/Moderation/Users/Blocked.php:126
-#: src/Module/Moderation/Users/Create.php:70
-#: src/Module/Moderation/Users/Deleted.php:83
-#: src/Module/Moderation/Users/Index.php:140
-#: src/Module/Moderation/Users/Index.php:160
-#: src/Module/Moderation/Users/Pending.php:99 src/Module/Settings/OAuth.php:72
+#: src/Module/Contact/Advanced.php:120
+#: src/Module/Moderation/Blocklist/Contact.php:108
+#: src/Module/Moderation/Reports.php:102
+#: src/Module/Moderation/Users/Active.php:112
+#: src/Module/Moderation/Users/Blocked.php:112
+#: src/Module/Moderation/Users/Create.php:56
+#: src/Module/Moderation/Users/Deleted.php:69
+#: src/Module/Moderation/Users/Index.php:126
+#: src/Module/Moderation/Users/Index.php:146
+#: src/Module/Moderation/Users/Pending.php:85 src/Module/Settings/OAuth.php:58
msgid "Name"
msgstr "Jméno"
-#: src/Module/Contact/Advanced.php:135
+#: src/Module/Contact/Advanced.php:121
msgid "Account Nickname"
msgstr "Přezdívka účtu"
-#: src/Module/Contact/Advanced.php:136
+#: src/Module/Contact/Advanced.php:122
msgid "Account URL"
msgstr "URL adresa účtu"
-#: src/Module/Contact/Advanced.php:137
+#: src/Module/Contact/Advanced.php:123
msgid "Poll/Feed URL"
msgstr "URL adresa poll/feed"
-#: src/Module/Contact/Advanced.php:138
+#: src/Module/Contact/Advanced.php:124
msgid "New photo from this URL"
msgstr "Nová fotka z této URL adresy"
-#: src/Module/Contact/Contacts.php:89
+#: src/Module/Contact/Contacts.php:75
msgid "No known contacts."
msgstr ""
-#: src/Module/Contact/Contacts.php:103 src/Module/Profile/Common.php:128
+#: src/Module/Contact/Contacts.php:89 src/Module/Profile/Common.php:114
msgid "No common contacts."
msgstr ""
-#: src/Module/Contact/Contacts.php:115 src/Module/Profile/Contacts.php:135
+#: src/Module/Contact/Contacts.php:101 src/Module/Profile/Contacts.php:121
#, php-format
msgid "Follower (%s)"
msgid_plural "Followers (%s)"
@@ -6678,7 +6694,7 @@ msgstr[1] "Sledující (%s)"
msgstr[2] "Sledující (%s)"
msgstr[3] "Sledující (%s)"
-#: src/Module/Contact/Contacts.php:119 src/Module/Profile/Contacts.php:138
+#: src/Module/Contact/Contacts.php:105 src/Module/Profile/Contacts.php:124
#, php-format
msgid "Following (%s)"
msgid_plural "Following (%s)"
@@ -6687,7 +6703,7 @@ msgstr[1] "Sledovaní (%s)"
msgstr[2] "Sledovaní (%s)"
msgstr[3] "Sleduji (%s)"
-#: src/Module/Contact/Contacts.php:123 src/Module/Profile/Contacts.php:141
+#: src/Module/Contact/Contacts.php:109 src/Module/Profile/Contacts.php:127
#, php-format
msgid "Mutual friend (%s)"
msgid_plural "Mutual friends (%s)"
@@ -6696,12 +6712,12 @@ msgstr[1] "Vzájemní přátelé (%s)"
msgstr[2] "Vzájemní přátelé (%s)"
msgstr[3] "Vzájemní přátelé (%s)"
-#: src/Module/Contact/Contacts.php:125 src/Module/Profile/Contacts.php:143
+#: src/Module/Contact/Contacts.php:111 src/Module/Profile/Contacts.php:129
#, php-format
msgid "These contacts both follow and are followed by %s."
msgstr ""
-#: src/Module/Contact/Contacts.php:131 src/Module/Profile/Common.php:116
+#: src/Module/Contact/Contacts.php:117 src/Module/Profile/Common.php:102
#, php-format
msgid "Common contact (%s)"
msgid_plural "Common contacts (%s)"
@@ -6710,14 +6726,14 @@ msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
-#: src/Module/Contact/Contacts.php:133 src/Module/Profile/Common.php:118
+#: src/Module/Contact/Contacts.php:119 src/Module/Profile/Common.php:104
#, php-format
msgid ""
"Both %s and yourself have publicly interacted with these "
"contacts (follow, comment or likes on public posts)."
msgstr ""
-#: src/Module/Contact/Contacts.php:139 src/Module/Profile/Contacts.php:149
+#: src/Module/Contact/Contacts.php:125 src/Module/Profile/Contacts.php:135
#, php-format
msgid "Contact (%s)"
msgid_plural "Contacts (%s)"
@@ -6726,95 +6742,91 @@ msgstr[1] "Kontakty (%s)"
msgstr[2] "Kontakty (%s)"
msgstr[3] "Kontakty (%s)"
-#: src/Module/Contact/Follow.php:70 src/Module/Contact/Redir.php:63
-#: src/Module/Contact/Redir.php:223 src/Module/Conversation/Community.php:166
-#: src/Module/Debug/ItemBody.php:38 src/Module/Diaspora/Receive.php:57
-#: src/Module/Item/Display.php:96 src/Module/Item/Feed.php:59
-#: src/Module/Item/Follow.php:41 src/Module/Item/Ignore.php:41
-#: src/Module/Item/Language.php:53 src/Module/Item/Pin.php:41
-#: src/Module/Item/Pin.php:56 src/Module/Item/Searchtext.php:53
-#: src/Module/Item/Star.php:42 src/Module/Update/Display.php:37
+#: src/Module/Contact/Follow.php:56 src/Module/Contact/Redir.php:45
+#: src/Module/Contact/Redir.php:206 src/Module/Conversation/Community.php:154
+#: src/Module/Debug/ItemBody.php:24 src/Module/Diaspora/Receive.php:45
+#: src/Module/Item/Display.php:82 src/Module/Item/Feed.php:45
+#: src/Module/Item/Follow.php:27 src/Module/Item/Ignore.php:27
+#: src/Module/Item/Language.php:39 src/Module/Item/Pin.php:27
+#: src/Module/Item/Pin.php:42 src/Module/Item/Searchtext.php:39
+#: src/Module/Item/Star.php:28 src/Module/Update/Display.php:23
msgid "Access denied."
msgstr "Přístup odmítnut."
-#: src/Module/Contact/Follow.php:105 src/Module/Contact/Unfollow.php:125
-#: src/Module/Profile/RemoteFollow.php:133
+#: src/Module/Contact/Follow.php:91 src/Module/Contact/Unfollow.php:111
+#: src/Module/Profile/RemoteFollow.php:119
msgid "Submit Request"
msgstr "Odeslat požadavek"
-#: src/Module/Contact/Follow.php:115
+#: src/Module/Contact/Follow.php:101
msgid "You already added this contact."
msgstr "Již jste si tento kontakt přidal/a"
-#: src/Module/Contact/Follow.php:130
+#: src/Module/Contact/Follow.php:116
msgid "The network type couldn't be detected. Contact can't be added."
msgstr "Typ sítě nemohl být detekován. Kontakt nemůže být přidán."
-#: src/Module/Contact/Follow.php:138
+#: src/Module/Contact/Follow.php:124
msgid "Diaspora support isn't enabled. Contact can't be added."
msgstr "Podpora pro Diasporu není zapnuta. Kontakt nemůže být přidán."
-#: src/Module/Contact/Follow.php:143
-msgid "OStatus support is disabled. Contact can't be added."
-msgstr "Podpora pro OStatus je vypnnuta. Kontakt nemůže být přidán."
-
-#: src/Module/Contact/Follow.php:168 src/Module/Profile/RemoteFollow.php:132
+#: src/Module/Contact/Follow.php:149 src/Module/Profile/RemoteFollow.php:118
msgid "Please answer the following:"
msgstr "Odpovězte, prosím, následující:"
-#: src/Module/Contact/Follow.php:169 src/Module/Contact/Unfollow.php:123
+#: src/Module/Contact/Follow.php:150 src/Module/Contact/Unfollow.php:109
msgid "Your Identity Address:"
msgstr "Vaše adresa identity:"
-#: src/Module/Contact/Follow.php:170 src/Module/Contact/Profile.php:408
-#: src/Module/Contact/Unfollow.php:129
-#: src/Module/Moderation/Blocklist/Contact.php:131
-#: src/Module/Moderation/Reports.php:117
-#: src/Module/Notifications/Introductions.php:129
-#: src/Module/Notifications/Introductions.php:198
+#: src/Module/Contact/Follow.php:151 src/Module/Contact/Profile.php:408
+#: src/Module/Contact/Unfollow.php:115
+#: src/Module/Moderation/Blocklist/Contact.php:117
+#: src/Module/Moderation/Reports.php:109
+#: src/Module/Notifications/Introductions.php:121
+#: src/Module/Notifications/Introductions.php:190
msgid "Profile URL"
msgstr "URL profilu"
-#: src/Module/Contact/Follow.php:171 src/Module/Contact/Profile.php:420
-#: src/Module/Notifications/Introductions.php:191
-#: src/Module/Profile/Profile.php:234
+#: src/Module/Contact/Follow.php:152 src/Module/Contact/Profile.php:420
+#: src/Module/Notifications/Introductions.php:183
+#: src/Module/Profile/Profile.php:222
msgid "Tags:"
msgstr "Štítky:"
-#: src/Module/Contact/Follow.php:182
+#: src/Module/Contact/Follow.php:163
#, php-format
msgid "%s knows you"
msgstr ""
-#: src/Module/Contact/Follow.php:183
+#: src/Module/Contact/Follow.php:164
msgid "Add a personal note:"
msgstr "Přidejte osobní poznámku:"
-#: src/Module/Contact/Follow.php:192 src/Module/Contact/Unfollow.php:138
+#: src/Module/Contact/Follow.php:173 src/Module/Contact/Unfollow.php:124
msgid "Posts and Replies"
msgstr ""
-#: src/Module/Contact/Follow.php:221
+#: src/Module/Contact/Follow.php:202
msgid "The contact could not be added."
msgstr "Kontakt nemohl být přidán."
-#: src/Module/Contact/MatchInterests.php:95
-#: src/Module/Media/Attachment/Upload.php:77
-#: src/Module/Media/Attachment/Upload.php:82
-#: src/Module/Media/Photo/Upload.php:81 src/Module/Media/Photo/Upload.php:86
-#: src/Module/Media/Photo/Upload.php:135
+#: src/Module/Contact/MatchInterests.php:81
+#: src/Module/Media/Attachment/Upload.php:63
+#: src/Module/Media/Attachment/Upload.php:68
+#: src/Module/Media/Photo/Upload.php:67 src/Module/Media/Photo/Upload.php:72
+#: src/Module/Media/Photo/Upload.php:121
msgid "Invalid request."
msgstr "Neplatný požadavek."
-#: src/Module/Contact/MatchInterests.php:102
+#: src/Module/Contact/MatchInterests.php:88
msgid "No keywords to match. Please add keywords to your profile."
msgstr ""
-#: src/Module/Contact/MatchInterests.php:145
+#: src/Module/Contact/MatchInterests.php:141
msgid "Profile Match"
msgstr "Shoda profilu"
-#: src/Module/Contact/Profile.php:145
+#: src/Module/Contact/Profile.php:131
msgid "Failed to update contact record."
msgstr "Nepodařilo se aktualizovat kontakt."
@@ -6952,7 +6964,7 @@ msgid "Block/Unblock contact"
msgstr "Blokovat / Odblokovat kontakt"
#: src/Module/Contact/Profile.php:379
-#: src/Module/Moderation/Report/Create.php:293
+#: src/Module/Moderation/Report/Create.php:279
msgid "Ignore contact"
msgstr "Ignorovat kontakt"
@@ -6997,7 +7009,7 @@ msgid "Manage remote servers"
msgstr ""
#: src/Module/Contact/Profile.php:400
-#: src/Module/Notifications/Introductions.php:192
+#: src/Module/Notifications/Introductions.php:184
msgid "Hide this contact from others"
msgstr "Skrýt tento kontakt před ostatními"
@@ -7025,12 +7037,12 @@ msgid ""
msgstr "Seznam klíčových slov, které by neměly být převáděna na hashtagy, když je zvoleno „Načíst informace a klíčová slova“. Oddělujte čárkami"
#: src/Module/Contact/Profile.php:421
-#: src/Module/Settings/TwoFactor/Index.php:160
+#: src/Module/Settings/TwoFactor/Index.php:146
msgid "Actions"
msgstr "Akce"
#: src/Module/Contact/Profile.php:423
-#: src/Module/Settings/TwoFactor/Index.php:140 view/theme/frio/theme.php:232
+#: src/Module/Settings/TwoFactor/Index.php:126 view/theme/frio/theme.php:220
msgid "Status"
msgstr "Stav"
@@ -7105,8 +7117,8 @@ msgstr ""
#: src/Module/Contact/Profile.php:441
msgid ""
-"If enabled, posts from this contact will only appear in channels, but not in"
-" the network stream."
+"If enabled, posts from this contact will only appear in channels and network"
+" streams in circles, but not in the general network stream."
msgstr ""
#: src/Module/Contact/Profile.php:509
@@ -7125,7 +7137,7 @@ msgstr "Přepínat stav Ignorováno"
msgid "Toggle Collapsed status"
msgstr ""
-#: src/Module/Contact/Profile.php:543 src/Module/Contact/Revoke.php:106
+#: src/Module/Contact/Profile.php:543 src/Module/Contact/Revoke.php:89
msgid "Revoke Follow"
msgstr ""
@@ -7133,134 +7145,130 @@ msgstr ""
msgid "Revoke the follow from this contact"
msgstr ""
-#: src/Module/Contact/Redir.php:135 src/Module/Contact/Redir.php:187
+#: src/Module/Contact/Redir.php:125
msgid "Bad Request."
msgstr ""
-#: src/Module/Contact/Revoke.php:63
-msgid "Unknown contact."
-msgstr ""
-
-#: src/Module/Contact/Revoke.php:77
+#: src/Module/Contact/Revoke.php:60
msgid "Contact is being deleted."
msgstr ""
-#: src/Module/Contact/Revoke.php:91
+#: src/Module/Contact/Revoke.php:74
msgid "Follow was successfully revoked."
msgstr ""
-#: src/Module/Contact/Revoke.php:107
+#: src/Module/Contact/Revoke.php:90
msgid ""
"Do you really want to revoke this contact's follow? This cannot be undone "
"and they will have to manually follow you back again."
msgstr ""
-#: src/Module/Contact/Suggestions.php:62
+#: src/Module/Contact/Suggestions.php:48
msgid ""
"No suggestions available. If this is a new site, please try again in 24 "
"hours."
msgstr "Nejsou dostupné žádné návrhy. Pokud je toto nový server, zkuste to znovu za 24 hodin."
-#: src/Module/Contact/Unfollow.php:98 src/Module/Contact/Unfollow.php:167
+#: src/Module/Contact/Unfollow.php:84 src/Module/Contact/Unfollow.php:153
msgid "You aren't following this contact."
msgstr "Tento kontakt nesledujete."
-#: src/Module/Contact/Unfollow.php:103
+#: src/Module/Contact/Unfollow.php:89
msgid "Unfollowing is currently not supported by your network."
msgstr "Zrušení sledování není aktuálně na Vaši síti podporováno."
-#: src/Module/Contact/Unfollow.php:121
+#: src/Module/Contact/Unfollow.php:107
msgid "Disconnect/Unfollow"
msgstr "Odpojit se/Zrušit sledování"
-#: src/Module/Contact/Unfollow.php:175
+#: src/Module/Contact/Unfollow.php:161
msgid "Contact was successfully unfollowed"
msgstr ""
-#: src/Module/Contact/Unfollow.php:178
+#: src/Module/Contact/Unfollow.php:164
msgid "Unable to unfollow this contact, please contact your administrator"
msgstr ""
-#: src/Module/Conversation/Channel.php:139
-#: src/Module/Conversation/Community.php:126 src/Module/Search/Index.php:152
-#: src/Module/Search/Index.php:194
+#: src/Module/Conversation/Channel.php:125
+#: src/Module/Conversation/Community.php:114 src/Module/Search/Index.php:138
+#: src/Module/Search/Index.php:180
msgid "No results."
msgstr "Žádné výsledky."
-#: src/Module/Conversation/Channel.php:177
+#: src/Module/Conversation/Channel.php:163
msgid "Channel not available."
msgstr ""
-#: src/Module/Conversation/Community.php:92
+#: src/Module/Conversation/Community.php:80
msgid ""
"This community stream shows all public posts received by this node. They may"
" not reflect the opinions of this node’s users."
msgstr "Tento komunitní proud ukazuje všechny veřejné příspěvky, které tento server přijme. Nemusí odrážet názory uživatelů serveru."
-#: src/Module/Conversation/Community.php:180
+#: src/Module/Conversation/Community.php:168
msgid "Community option not available."
msgstr "Možnost komunity není dostupná."
-#: src/Module/Conversation/Community.php:196
+#: src/Module/Conversation/Community.php:184
msgid "Not available."
msgstr "Není k dispozici."
-#: src/Module/Conversation/Network.php:214
+#: src/Module/Conversation/Network.php:202
msgid "No such circle"
msgstr ""
-#: src/Module/Conversation/Network.php:218
+#: src/Module/Conversation/Network.php:206
#, php-format
msgid "Circle: %s"
msgstr ""
-#: src/Module/Conversation/Network.php:237
+#: src/Module/Conversation/Network.php:226
#, php-format
msgid "Error %d (%s) while fetching the timeline."
msgstr ""
-#: src/Module/Conversation/Network.php:314
+#: src/Module/Conversation/Network.php:304
msgid "Network feed not available."
msgstr ""
-#: src/Module/Conversation/Timeline.php:203
+#: src/Module/Conversation/Timeline.php:190
msgid "Include"
msgstr ""
-#: src/Module/Conversation/Timeline.php:204
+#: src/Module/Conversation/Timeline.php:191
msgid "Hide"
msgstr ""
-#: src/Module/Credits.php:44
+#: src/Module/Credits.php:30
msgid "Credits"
msgstr "Poděkování"
-#: src/Module/Credits.php:45
+#: src/Module/Credits.php:31
msgid ""
"Friendica is a community project, that would not be possible without the "
"help of many people. Here is a list of those who have contributed to the "
"code or the translation of Friendica. Thank you all!"
msgstr "Friendica je komunitní projekt, který by nebyl možný bez pomoci mnoha lidí. Zde je seznam těch, kteří přispěli ke kódu nebo k překladu Friendica. Děkujeme všem!"
-#: src/Module/Debug/ActivityPubConversion.php:53
+#: src/Module/Debug/ActivityPubConversion.php:45
msgid "Formatted"
msgstr ""
-#: src/Module/Debug/ActivityPubConversion.php:65
+#: src/Module/Debug/ActivityPubConversion.php:57
msgid "Activity"
msgstr ""
-#: src/Module/Debug/ActivityPubConversion.php:117
+#: src/Module/Debug/ActivityPubConversion.php:109
msgid "Object data"
msgstr ""
-#: src/Module/Debug/ActivityPubConversion.php:124
+#: src/Module/Debug/ActivityPubConversion.php:116
msgid "Result Item"
msgstr ""
-#: src/Module/Debug/ActivityPubConversion.php:129
-#: src/Module/Debug/Babel.php:294 src/Module/Moderation/Item/Source.php:87
-#: src/Module/Security/TwoFactor/Verify.php:98
+#: src/Module/Debug/ActivityPubConversion.php:121
+#: src/Module/Debug/Babel.php:286 src/Module/Moderation/Item/Source.php:79
+#: src/Module/Security/TwoFactor/Verify.php:84
msgid "Error"
msgid_plural "Errors"
msgstr[0] "Chyba"
@@ -7268,506 +7276,506 @@ msgstr[1] "Chyby"
msgstr[2] "Chyb"
msgstr[3] "Chyb"
-#: src/Module/Debug/ActivityPubConversion.php:138
+#: src/Module/Debug/ActivityPubConversion.php:130
msgid "Source activity"
msgstr ""
-#: src/Module/Debug/Babel.php:52
+#: src/Module/Debug/Babel.php:44
msgid "Source input"
msgstr "Zdrojový vstup"
-#: src/Module/Debug/Babel.php:58
+#: src/Module/Debug/Babel.php:50
msgid "BBCode::toPlaintext"
msgstr "BBCode::toPlaintext"
-#: src/Module/Debug/Babel.php:64
+#: src/Module/Debug/Babel.php:56
msgid "BBCode::convert (raw HTML)"
msgstr "BBCode::convert (hrubé HTML)"
-#: src/Module/Debug/Babel.php:69
+#: src/Module/Debug/Babel.php:61
msgid "BBCode::convert (hex)"
msgstr ""
-#: src/Module/Debug/Babel.php:74
+#: src/Module/Debug/Babel.php:66
msgid "BBCode::convert"
msgstr "BBCode::convert"
-#: src/Module/Debug/Babel.php:80
+#: src/Module/Debug/Babel.php:72
msgid "BBCode::convert => HTML::toBBCode"
msgstr "BBCode::convert => HTML::toBBCode"
-#: src/Module/Debug/Babel.php:86
+#: src/Module/Debug/Babel.php:78
msgid "BBCode::toMarkdown"
msgstr "BBCode::toMarkdown"
-#: src/Module/Debug/Babel.php:92
+#: src/Module/Debug/Babel.php:84
msgid "BBCode::toMarkdown => Markdown::convert (raw HTML)"
msgstr ""
-#: src/Module/Debug/Babel.php:96
+#: src/Module/Debug/Babel.php:88
msgid "BBCode::toMarkdown => Markdown::convert"
msgstr "BBCode::toMarkdown => Markdown::convert"
-#: src/Module/Debug/Babel.php:102
+#: src/Module/Debug/Babel.php:94
msgid "BBCode::toMarkdown => Markdown::toBBCode"
msgstr "BBCode::toMarkdown => Markdown::toBBCode"
-#: src/Module/Debug/Babel.php:108
+#: src/Module/Debug/Babel.php:100
msgid "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode"
msgstr "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode"
-#: src/Module/Debug/Babel.php:116
+#: src/Module/Debug/Babel.php:108
msgid "Item Body"
msgstr "Tělo položky"
-#: src/Module/Debug/Babel.php:120
+#: src/Module/Debug/Babel.php:112
msgid "Item Tags"
msgstr "Štítky položky"
-#: src/Module/Debug/Babel.php:126
+#: src/Module/Debug/Babel.php:118
msgid "PageInfo::appendToBody"
msgstr ""
-#: src/Module/Debug/Babel.php:131
+#: src/Module/Debug/Babel.php:123
msgid "PageInfo::appendToBody => BBCode::convert (raw HTML)"
msgstr ""
-#: src/Module/Debug/Babel.php:135
+#: src/Module/Debug/Babel.php:127
msgid "PageInfo::appendToBody => BBCode::convert"
msgstr ""
-#: src/Module/Debug/Babel.php:142
+#: src/Module/Debug/Babel.php:134
msgid "Source input (Diaspora format)"
msgstr "Zdrojový vstup (formát Diaspora)"
-#: src/Module/Debug/Babel.php:151
+#: src/Module/Debug/Babel.php:143
msgid "Source input (Markdown)"
msgstr ""
-#: src/Module/Debug/Babel.php:157
+#: src/Module/Debug/Babel.php:149
msgid "Markdown::convert (raw HTML)"
msgstr "Markdown::convert (hrubé HTML)"
-#: src/Module/Debug/Babel.php:162
+#: src/Module/Debug/Babel.php:154
msgid "Markdown::convert"
msgstr "Markdown::convert"
-#: src/Module/Debug/Babel.php:168
+#: src/Module/Debug/Babel.php:160
msgid "Markdown::toBBCode"
msgstr "Markdown::toBBCode"
-#: src/Module/Debug/Babel.php:175
+#: src/Module/Debug/Babel.php:167
msgid "Raw HTML input"
msgstr "Hrubý HTML vstup"
-#: src/Module/Debug/Babel.php:180
+#: src/Module/Debug/Babel.php:172
msgid "HTML Input"
msgstr "HTML vstup"
-#: src/Module/Debug/Babel.php:187
+#: src/Module/Debug/Babel.php:179
msgid "HTML Purified (raw)"
msgstr ""
-#: src/Module/Debug/Babel.php:192
+#: src/Module/Debug/Babel.php:184
msgid "HTML Purified (hex)"
msgstr ""
-#: src/Module/Debug/Babel.php:197
+#: src/Module/Debug/Babel.php:189
msgid "HTML Purified"
msgstr ""
-#: src/Module/Debug/Babel.php:203
+#: src/Module/Debug/Babel.php:195
msgid "HTML::toBBCode"
msgstr "HTML::toBBCode"
-#: src/Module/Debug/Babel.php:209
+#: src/Module/Debug/Babel.php:201
msgid "HTML::toBBCode => BBCode::convert"
msgstr "HTML::toBBCode => BBCode::convert"
-#: src/Module/Debug/Babel.php:214
+#: src/Module/Debug/Babel.php:206
msgid "HTML::toBBCode => BBCode::convert (raw HTML)"
msgstr "HTML::toBBCode => BBCode::convert (hrubé HTML)"
-#: src/Module/Debug/Babel.php:220
+#: src/Module/Debug/Babel.php:212
msgid "HTML::toBBCode => BBCode::toPlaintext"
msgstr "HTML::toBBCode => BBCode::toPlaintext"
-#: src/Module/Debug/Babel.php:226
+#: src/Module/Debug/Babel.php:218
msgid "HTML::toMarkdown"
msgstr "HTML::toMarkdown"
-#: src/Module/Debug/Babel.php:232
+#: src/Module/Debug/Babel.php:224
msgid "HTML::toPlaintext"
msgstr "HTML::toPlaintext"
-#: src/Module/Debug/Babel.php:238
+#: src/Module/Debug/Babel.php:230
msgid "HTML::toPlaintext (compact)"
msgstr "HTML::toPlaintext (kompaktní)"
-#: src/Module/Debug/Babel.php:256
+#: src/Module/Debug/Babel.php:248
msgid "Decoded post"
msgstr ""
-#: src/Module/Debug/Babel.php:277
+#: src/Module/Debug/Babel.php:269
msgid "Post array before expand entities"
msgstr ""
-#: src/Module/Debug/Babel.php:284
+#: src/Module/Debug/Babel.php:276
msgid "Post converted"
msgstr ""
-#: src/Module/Debug/Babel.php:289
+#: src/Module/Debug/Babel.php:281
msgid "Converted body"
msgstr ""
-#: src/Module/Debug/Babel.php:295
+#: src/Module/Debug/Babel.php:287
msgid "Twitter addon is absent from the addon/ folder."
msgstr ""
-#: src/Module/Debug/Babel.php:305
+#: src/Module/Debug/Babel.php:297
msgid "Babel Diagnostic"
msgstr ""
-#: src/Module/Debug/Babel.php:307
+#: src/Module/Debug/Babel.php:299
msgid "Source text"
msgstr "Zdrojový text"
-#: src/Module/Debug/Babel.php:308
+#: src/Module/Debug/Babel.php:300
msgid "BBCode"
msgstr "BBCode"
-#: src/Module/Debug/Babel.php:310
+#: src/Module/Debug/Babel.php:302
msgid "Markdown"
msgstr "Markdown"
-#: src/Module/Debug/Babel.php:311
+#: src/Module/Debug/Babel.php:303
msgid "HTML"
msgstr "HTML"
-#: src/Module/Debug/Babel.php:313
+#: src/Module/Debug/Babel.php:305
msgid "Twitter Source / Tweet URL (requires API key)"
msgstr ""
-#: src/Module/Debug/Feed.php:53 src/Module/Filer/SaveTag.php:47
-#: src/Module/Settings/Profile/Index.php:177
+#: src/Module/Debug/Feed.php:39 src/Module/Filer/SaveTag.php:33
+#: src/Module/Settings/Profile/Index.php:166
msgid "You must be logged in to use this module"
msgstr "Pro používání tohoto modulu musíte být přihlášen/a"
-#: src/Module/Debug/Feed.php:78
+#: src/Module/Debug/Feed.php:64
msgid "Source URL"
msgstr "Zdrojová adresa URL"
-#: src/Module/Debug/Localtime.php:49
+#: src/Module/Debug/Localtime.php:35
msgid "Time Conversion"
msgstr "Časový převod"
-#: src/Module/Debug/Localtime.php:50
+#: src/Module/Debug/Localtime.php:36
msgid ""
"Friendica provides this service for sharing events with other networks and "
"friends in unknown timezones."
msgstr "Friendica poskytuje tuto službu ke sdílení událostí s ostatními sítěmi a přáteli v neznámých časových pásmech"
-#: src/Module/Debug/Localtime.php:51
+#: src/Module/Debug/Localtime.php:37
#, php-format
msgid "UTC time: %s"
msgstr "UTC čas: %s"
-#: src/Module/Debug/Localtime.php:54
+#: src/Module/Debug/Localtime.php:40
#, php-format
msgid "Current timezone: %s"
msgstr "Aktuální časové pásmo: %s"
-#: src/Module/Debug/Localtime.php:58
+#: src/Module/Debug/Localtime.php:44
#, php-format
msgid "Converted localtime: %s"
msgstr "Převedený místní čas : %s"
-#: src/Module/Debug/Localtime.php:62
+#: src/Module/Debug/Localtime.php:48
msgid "Please select your timezone:"
msgstr "Prosím, vyberte své časové pásmo:"
-#: src/Module/Debug/Probe.php:38 src/Module/Debug/WebFinger.php:37
+#: src/Module/Debug/Probe.php:24 src/Module/Debug/WebFinger.php:23
msgid "Only logged in users are permitted to perform a probing."
msgstr "Pouze přihlášení uživatelé mohou zkoušet adresy."
-#: src/Module/Debug/Probe.php:52
+#: src/Module/Debug/Probe.php:38
msgid "Probe Diagnostic"
msgstr ""
-#: src/Module/Debug/Probe.php:53
+#: src/Module/Debug/Probe.php:39
msgid "Output"
msgstr ""
-#: src/Module/Debug/Probe.php:56
+#: src/Module/Debug/Probe.php:42
msgid "Lookup address"
msgstr "Najít adresu"
-#: src/Module/Debug/WebFinger.php:50
+#: src/Module/Debug/WebFinger.php:36
msgid "Webfinger Diagnostic"
msgstr ""
-#: src/Module/Debug/WebFinger.php:52
+#: src/Module/Debug/WebFinger.php:38
msgid "Lookup address:"
msgstr ""
-#: src/Module/Directory.php:74
+#: src/Module/Directory.php:61
msgid "No entries (some entries may be hidden)."
msgstr "Žádné záznamy (některé položky mohou být skryty)."
-#: src/Module/Directory.php:90
+#: src/Module/Directory.php:77
msgid "Find on this site"
msgstr "Najít na tomto webu"
-#: src/Module/Directory.php:92
+#: src/Module/Directory.php:79
msgid "Results for:"
msgstr "Výsledky pro:"
-#: src/Module/Directory.php:94
+#: src/Module/Directory.php:81
msgid "Site Directory"
msgstr "Adresář serveru"
-#: src/Module/Filer/RemoveTag.php:105
+#: src/Module/Filer/RemoveTag.php:91
msgid "Item was not deleted"
msgstr ""
-#: src/Module/Filer/RemoveTag.php:115
+#: src/Module/Filer/RemoveTag.php:101
msgid "Item was not removed"
msgstr ""
-#: src/Module/Filer/SaveTag.php:73
+#: src/Module/Filer/SaveTag.php:59
msgid "- select -"
msgstr "- vyberte -"
-#: src/Module/FriendSuggest.php:82
+#: src/Module/FriendSuggest.php:68
msgid "Suggested contact not found."
msgstr "Navrhovaný kontakt nenalezen."
-#: src/Module/FriendSuggest.php:100
+#: src/Module/FriendSuggest.php:86
msgid "Friend suggestion sent."
msgstr "Návrh přátelství odeslán. "
-#: src/Module/FriendSuggest.php:137
+#: src/Module/FriendSuggest.php:123
msgid "Suggest Friends"
msgstr "Navrhnout přátele"
-#: src/Module/FriendSuggest.php:140
+#: src/Module/FriendSuggest.php:126
#, php-format
msgid "Suggest a friend for %s"
msgstr "Navrhnout přítele pro uživatele %s"
-#: src/Module/Friendica.php:81
+#: src/Module/Friendica.php:67
msgid "Installed addons/apps:"
msgstr "Nainstalované doplňky/aplikace:"
-#: src/Module/Friendica.php:86
+#: src/Module/Friendica.php:72
msgid "No installed addons/apps"
msgstr "Žádne nainstalované doplňky/aplikace"
-#: src/Module/Friendica.php:91
+#: src/Module/Friendica.php:77
#, php-format
msgid "Read about the Terms of Service of this node."
msgstr "Přečtěte si o Podmínkách používání tohoto serveru."
-#: src/Module/Friendica.php:98
+#: src/Module/Friendica.php:84
msgid "On this server the following remote servers are blocked."
msgstr "Na tomto serveru jsou zablokovány následující vzdálené servery."
-#: src/Module/Friendica.php:101
-#: src/Module/Moderation/Blocklist/Server/Index.php:87
-#: src/Module/Moderation/Blocklist/Server/Index.php:111
-#: src/Module/Settings/Channels.php:232
+#: src/Module/Friendica.php:87
+#: src/Module/Moderation/Blocklist/Server/Index.php:73
+#: src/Module/Moderation/Blocklist/Server/Index.php:97
+#: src/Module/Settings/Channels.php:218
msgid "Reason for the block"
msgstr "Důvody pro zablokování"
-#: src/Module/Friendica.php:103
+#: src/Module/Friendica.php:89
msgid "Download this list in CSV format"
msgstr ""
-#: src/Module/Friendica.php:117
+#: src/Module/Friendica.php:103
#, php-format
msgid ""
"This is Friendica, version %s that is running at the web location %s. The "
"database version is %s, the post update version is %s."
msgstr "Tohle je Friendica, verze %s, běžící na webové adrese %s. Verze databáze je %s, verze post update je %s."
-#: src/Module/Friendica.php:122
+#: src/Module/Friendica.php:108
msgid ""
"Please visit Friendi.ca to learn more "
"about the Friendica project."
msgstr "Pro více informací o projektu Friendica, prosím, navštivte stránku Friendi.ca"
-#: src/Module/Friendica.php:123
+#: src/Module/Friendica.php:109
msgid "Bug reports and issues: please visit"
msgstr "Pro hlášení chyb a námětů na změny prosím navštivte"
-#: src/Module/Friendica.php:123
+#: src/Module/Friendica.php:109
msgid "the bugtracker at github"
msgstr "sledování chyb na GitHubu"
-#: src/Module/Friendica.php:124
+#: src/Module/Friendica.php:110
msgid "Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca"
msgstr "Návrhy, pochvaly atd. prosím posílejte na adresu „info“ zavináč „friendi“-tečka-„ca“"
-#: src/Module/HCard.php:45
+#: src/Module/HCard.php:31
msgid "No profile"
msgstr "Žádný profil"
-#: src/Module/HTTPException/MethodNotAllowed.php:31
+#: src/Module/HTTPException/MethodNotAllowed.php:17
msgid "Method Not Allowed."
msgstr ""
-#: src/Module/Help.php:60
+#: src/Module/Help.php:46
msgid "Help:"
msgstr "Nápověda:"
-#: src/Module/Home.php:63
+#: src/Module/Home.php:52
#, php-format
msgid "Welcome to %s"
msgstr "Vítejte na %s"
-#: src/Module/Install.php:189
+#: src/Module/Install.php:175
msgid "Friendica Communications Server - Setup"
msgstr "Komunikační server Friendica - Nastavení"
-#: src/Module/Install.php:200
+#: src/Module/Install.php:186
msgid "System check"
msgstr "Zkouška systému"
-#: src/Module/Install.php:202 src/Module/Install.php:247
-#: src/Module/Install.php:326
+#: src/Module/Install.php:188 src/Module/Install.php:233
+#: src/Module/Install.php:312
msgid "Requirement not satisfied"
msgstr ""
-#: src/Module/Install.php:203
+#: src/Module/Install.php:189
msgid "Optional requirement not satisfied"
msgstr ""
-#: src/Module/Install.php:204
+#: src/Module/Install.php:190
msgid "OK"
msgstr ""
-#: src/Module/Install.php:208
+#: src/Module/Install.php:194
msgid "Next"
msgstr "Dále"
-#: src/Module/Install.php:209
+#: src/Module/Install.php:195
msgid "Check again"
msgstr "Vyzkoušet znovu"
-#: src/Module/Install.php:222
+#: src/Module/Install.php:208
msgid "Base settings"
msgstr "Základní nastavení"
-#: src/Module/Install.php:224
+#: src/Module/Install.php:210
msgid "Base path to installation"
msgstr "Základní cesta k instalaci"
-#: src/Module/Install.php:226
+#: src/Module/Install.php:212
msgid ""
"If the system cannot detect the correct path to your installation, enter the"
" correct path here. This setting should only be set if you are using a "
"restricted system and symbolic links to your webroot."
msgstr "Pokud systém nemůže detekovat správnou cestu k Vaší instalaci, zde zadejte jinou cestu. Toto nastavení by mělo být nastaveno pouze, pokud používáte omezený systém a symbolické odkazy ke kořenové složce webu."
-#: src/Module/Install.php:229
+#: src/Module/Install.php:215
msgid "The Friendica system URL"
msgstr ""
-#: src/Module/Install.php:231
+#: src/Module/Install.php:217
msgid ""
"Overwrite this field in case the system URL determination isn't right, "
"otherwise leave it as is."
msgstr ""
-#: src/Module/Install.php:242
+#: src/Module/Install.php:228
msgid "Database connection"
msgstr "Databázové spojení"
-#: src/Module/Install.php:243
+#: src/Module/Install.php:229
msgid ""
"In order to install Friendica we need to know how to connect to your "
"database."
msgstr "Pro instalaci Friendica potřebujeme znát připojení k vaší databázi."
-#: src/Module/Install.php:244
+#: src/Module/Install.php:230
msgid ""
"Please contact your hosting provider or site administrator if you have "
"questions about these settings."
msgstr "Pokud máte otázky k následujícím nastavením, obraťte se na svého poskytovatele hostingu nebo administrátora serveru."
-#: src/Module/Install.php:245
+#: src/Module/Install.php:231
msgid ""
"The database you specify below should already exist. If it does not, please "
"create it before continuing."
msgstr "Databáze, kterou uvedete níže, by již měla existovat. Pokud to tak není, prosíme, vytvořte ji před pokračováním."
-#: src/Module/Install.php:252
+#: src/Module/Install.php:238
msgid "Database Server Name"
msgstr "Jméno databázového serveru"
-#: src/Module/Install.php:257
+#: src/Module/Install.php:243
msgid "Database Login Name"
msgstr "Přihlašovací jméno k databázi"
-#: src/Module/Install.php:263
+#: src/Module/Install.php:249
msgid "Database Login Password"
msgstr "Heslo k databázovému účtu "
-#: src/Module/Install.php:265
+#: src/Module/Install.php:251
msgid "For security reasons the password must not be empty"
msgstr "Z bezpečnostních důvodů nesmí být heslo prázdné."
-#: src/Module/Install.php:268
+#: src/Module/Install.php:254
msgid "Database Name"
msgstr "Jméno databáze"
-#: src/Module/Install.php:272 src/Module/Install.php:300
+#: src/Module/Install.php:258 src/Module/Install.php:286
msgid "Please select a default timezone for your website"
msgstr "Prosím, vyberte výchozí časové pásmo pro váš server"
-#: src/Module/Install.php:287
+#: src/Module/Install.php:273
msgid "Site settings"
msgstr "Nastavení webu"
-#: src/Module/Install.php:295
+#: src/Module/Install.php:281
msgid "Site administrator email address"
msgstr "E-mailová adresa administrátora webu"
-#: src/Module/Install.php:297
+#: src/Module/Install.php:283
msgid ""
"Your account email address must match this in order to use the web admin "
"panel."
msgstr "Vaše e-mailová adresa účtu se musí s touto shodovat, aby bylo možné využívat administrační panel ve webovém rozhraní."
-#: src/Module/Install.php:304
+#: src/Module/Install.php:290
msgid "System Language:"
msgstr "Systémový jazyk"
-#: src/Module/Install.php:306
+#: src/Module/Install.php:292
msgid ""
"Set the default language for your Friendica installation interface and to "
"send emails."
msgstr "Nastavte si výchozí jazyk pro vaše instalační rozhraní Friendica a pro odesílání e-mailů."
-#: src/Module/Install.php:318
+#: src/Module/Install.php:304
msgid "Your Friendica site database has been installed."
msgstr "Databáze vašeho serveru Friendica byla nainstalována."
-#: src/Module/Install.php:328
+#: src/Module/Install.php:314
msgid "Installation finished"
msgstr "Instalace dokončena"
-#: src/Module/Install.php:348
+#: src/Module/Install.php:334
msgid "The server domain pattern syntax is case-insensitive shell wildcard, comprising the following special characters:
\n" "This file can be downloaded from the /friendica
path of any "
"Friendica server.
debug.store_source
config key is set in "
"config/local.config.php
for future items to have sources."
msgstr ""
-#: src/Module/Moderation/Item/Source.php:92
+#: src/Module/Moderation/Item/Source.php:84
msgid "Item Guid"
msgstr "Číslo GUID položky"
-#: src/Module/Moderation/Report/Create.php:95
+#: src/Module/Moderation/Report/Create.php:81
msgid "Contact not found or their server is already blocked on this node."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:136
+#: src/Module/Moderation/Report/Create.php:122
msgid "Please login to access this page."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:165
-#: src/Module/Moderation/Report/Create.php:180
-#: src/Module/Moderation/Report/Create.php:208
-#: src/Module/Moderation/Report/Create.php:260
-#: src/Module/Moderation/Report/Create.php:279
+#: src/Module/Moderation/Report/Create.php:151
+#: src/Module/Moderation/Report/Create.php:166
+#: src/Module/Moderation/Report/Create.php:194
+#: src/Module/Moderation/Report/Create.php:246
+#: src/Module/Moderation/Report/Create.php:265
msgid "Create Moderation Report"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:166
+#: src/Module/Moderation/Report/Create.php:152
msgid "Pick Contact"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:167
+#: src/Module/Moderation/Report/Create.php:153
msgid ""
"Please enter below the contact address or profile URL you would like to "
"create a moderation report about."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:171
+#: src/Module/Moderation/Report/Create.php:157
msgid "Contact address/URL"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:181
+#: src/Module/Moderation/Report/Create.php:167
msgid "Pick Category"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:182
+#: src/Module/Moderation/Report/Create.php:168
msgid "Please pick below the category of your report."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:186
-#: src/Module/Moderation/Report/Create.php:311
+#: src/Module/Moderation/Report/Create.php:172
+#: src/Module/Moderation/Report/Create.php:297
msgid "Spam"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:186
+#: src/Module/Moderation/Report/Create.php:172
msgid ""
"This contact is publishing many repeated/overly long posts/replies or "
"advertising their product/websites in otherwise irrelevant conversations."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:187
-#: src/Module/Moderation/Report/Create.php:312
+#: src/Module/Moderation/Report/Create.php:173
+#: src/Module/Moderation/Report/Create.php:298
msgid "Illegal Content"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:187
+#: src/Module/Moderation/Report/Create.php:173
msgid ""
"This contact is publishing content that is considered illegal in this node's"
" hosting juridiction."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:188
-#: src/Module/Moderation/Report/Create.php:313
+#: src/Module/Moderation/Report/Create.php:174
+#: src/Module/Moderation/Report/Create.php:299
msgid "Community Safety"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:188
+#: src/Module/Moderation/Report/Create.php:174
msgid ""
"This contact aggravated you or other people, by being provocative or "
"insensitive, intentionally or not. This includes disclosing people's private"
@@ -8551,12 +8559,12 @@ msgid ""
"replies."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:189
-#: src/Module/Moderation/Report/Create.php:314
+#: src/Module/Moderation/Report/Create.php:175
+#: src/Module/Moderation/Report/Create.php:300
msgid "Unwanted Content/Behavior"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:189
+#: src/Module/Moderation/Report/Create.php:175
msgid ""
"This contact has repeatedly published content irrelevant to the node's theme"
" or is openly criticizing the node's administration/moderation without "
@@ -8564,89 +8572,89 @@ msgid ""
"nitpicking on a sensitive topic."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:190
-#: src/Module/Moderation/Report/Create.php:315
+#: src/Module/Moderation/Report/Create.php:176
+#: src/Module/Moderation/Report/Create.php:301
msgid "Rules Violation"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:190
+#: src/Module/Moderation/Report/Create.php:176
msgid ""
"This contact violated one or more rules of this node. You will be able to "
"pick which one(s) in the next step."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:191
+#: src/Module/Moderation/Report/Create.php:177
msgid ""
"Please elaborate below why you submitted this report. The more details you "
"provide, the better your report can be handled."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:193
+#: src/Module/Moderation/Report/Create.php:179
msgid "Additional Information"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:193
+#: src/Module/Moderation/Report/Create.php:179
msgid ""
"Please provide any additional information relevant to this particular "
"report. You will be able to attach posts by this contact in the next step, "
"but any context is welcome."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:209
+#: src/Module/Moderation/Report/Create.php:195
msgid "Pick Rules"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:210
+#: src/Module/Moderation/Report/Create.php:196
msgid "Please pick below the node rules you believe this contact violated."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:261
+#: src/Module/Moderation/Report/Create.php:247
msgid "Pick Posts"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:262
+#: src/Module/Moderation/Report/Create.php:248
msgid "Please optionally pick posts to attach to your report."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:281
+#: src/Module/Moderation/Report/Create.php:267
msgid "Submit Report"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:282
+#: src/Module/Moderation/Report/Create.php:268
msgid "Further Action"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:283
+#: src/Module/Moderation/Report/Create.php:269
msgid ""
"You can also perform one of the following action on the contact you "
"reported:"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:291
+#: src/Module/Moderation/Report/Create.php:277
msgid "Nothing"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:292
+#: src/Module/Moderation/Report/Create.php:278
msgid "Collapse contact"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:292
+#: src/Module/Moderation/Report/Create.php:278
msgid ""
"Their posts and replies will keep appearing in your Network page but their "
"content will be collapsed by default."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:293
+#: src/Module/Moderation/Report/Create.php:279
msgid ""
"Their posts won't appear in your Network page anymore, but their replies can"
" appear in forum threads. They still can follow you."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:294
+#: src/Module/Moderation/Report/Create.php:280
msgid "Block contact"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:294
+#: src/Module/Moderation/Report/Create.php:280
msgid ""
"Their posts won't appear in your Network page anymore, but their replies can"
" appear in forum threads, with their content collapsed by default. They "
@@ -8654,51 +8662,51 @@ msgid ""
"means."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:297
+#: src/Module/Moderation/Report/Create.php:283
msgid "Forward report"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:297
+#: src/Module/Moderation/Report/Create.php:283
msgid "Would you ike to forward this report to the remote server?"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:330
+#: src/Module/Moderation/Report/Create.php:316
msgid "1. Pick a contact"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:331
+#: src/Module/Moderation/Report/Create.php:317
msgid "2. Pick a category"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:332
+#: src/Module/Moderation/Report/Create.php:318
msgid "2a. Pick rules"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:333
+#: src/Module/Moderation/Report/Create.php:319
msgid "2b. Add comment"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:334
+#: src/Module/Moderation/Report/Create.php:320
msgid "3. Pick posts"
msgstr ""
-#: src/Module/Moderation/Reports.php:105
+#: src/Module/Moderation/Reports.php:97
msgid "List of reports"
msgstr ""
-#: src/Module/Moderation/Reports.php:106
+#: src/Module/Moderation/Reports.php:98
msgid "This page display reports created by our or remote users."
msgstr ""
-#: src/Module/Moderation/Reports.php:107
+#: src/Module/Moderation/Reports.php:99
msgid "No report exists at this node."
msgstr ""
-#: src/Module/Moderation/Reports.php:110
+#: src/Module/Moderation/Reports.php:102
msgid "Category"
msgstr ""
-#: src/Module/Moderation/Reports.php:114
+#: src/Module/Moderation/Reports.php:106
#, php-format
msgid "%s total report"
msgid_plural "%s total reports"
@@ -8707,24 +8715,24 @@ msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
-#: src/Module/Moderation/Reports.php:117
+#: src/Module/Moderation/Reports.php:109
msgid "URL of the reported contact."
msgstr ""
-#: src/Module/Moderation/Summary.php:57 src/Module/Settings/Account.php:431
+#: src/Module/Moderation/Summary.php:43 src/Module/Settings/Account.php:422
msgid "Channel Relay"
msgstr ""
-#: src/Module/Moderation/Summary.php:77
+#: src/Module/Moderation/Summary.php:63
msgid "Registered users"
msgstr "Registrovaní uživatelé"
-#: src/Module/Moderation/Summary.php:79
+#: src/Module/Moderation/Summary.php:65
msgid "Pending registrations"
msgstr "Čekající registrace"
-#: src/Module/Moderation/Users/Active.php:43
-#: src/Module/Moderation/Users/Index.php:43
+#: src/Module/Moderation/Users/Active.php:29
+#: src/Module/Moderation/Users/Index.php:29
#, php-format
msgid "%s user blocked"
msgid_plural "%s users blocked"
@@ -8733,18 +8741,18 @@ msgstr[1] "%s uživatelé blokování"
msgstr[2] "%s uživatele blokováno"
msgstr[3] "%s uživatelů blokováno"
-#: src/Module/Moderation/Users/Active.php:51
-#: src/Module/Moderation/Users/Active.php:85
-#: src/Module/Moderation/Users/Blocked.php:51
-#: src/Module/Moderation/Users/Blocked.php:85
-#: src/Module/Moderation/Users/Index.php:58
-#: src/Module/Moderation/Users/Index.php:92
+#: src/Module/Moderation/Users/Active.php:37
+#: src/Module/Moderation/Users/Active.php:71
+#: src/Module/Moderation/Users/Blocked.php:37
+#: src/Module/Moderation/Users/Blocked.php:71
+#: src/Module/Moderation/Users/Index.php:44
+#: src/Module/Moderation/Users/Index.php:78
msgid "You can't remove yourself"
msgstr "Nemůžete odstranit sebe sama"
-#: src/Module/Moderation/Users/Active.php:55
-#: src/Module/Moderation/Users/Blocked.php:55
-#: src/Module/Moderation/Users/Index.php:62
+#: src/Module/Moderation/Users/Active.php:41
+#: src/Module/Moderation/Users/Blocked.php:41
+#: src/Module/Moderation/Users/Index.php:48
#, php-format
msgid "%s user deleted"
msgid_plural "%s users deleted"
@@ -8753,88 +8761,88 @@ msgstr[1] "%s uživatelů smazáno"
msgstr[2] "%s uživatele smazáno"
msgstr[3] "%s uživatelů smazáno"
-#: src/Module/Moderation/Users/Active.php:83
-#: src/Module/Moderation/Users/Blocked.php:83
-#: src/Module/Moderation/Users/Index.php:90
+#: src/Module/Moderation/Users/Active.php:69
+#: src/Module/Moderation/Users/Blocked.php:69
+#: src/Module/Moderation/Users/Index.php:76
#, php-format
msgid "User \"%s\" deleted"
msgstr "Uživatel „%s“ smazán"
-#: src/Module/Moderation/Users/Active.php:93
-#: src/Module/Moderation/Users/Index.php:100
+#: src/Module/Moderation/Users/Active.php:79
+#: src/Module/Moderation/Users/Index.php:86
#, php-format
msgid "User \"%s\" blocked"
msgstr "Uživatel „%s“ zablokován"
-#: src/Module/Moderation/Users/Active.php:126
-#: src/Module/Moderation/Users/Blocked.php:126
-#: src/Module/Moderation/Users/Deleted.php:83
-#: src/Module/Moderation/Users/Index.php:140
-#: src/Module/Moderation/Users/Index.php:160
+#: src/Module/Moderation/Users/Active.php:112
+#: src/Module/Moderation/Users/Blocked.php:112
+#: src/Module/Moderation/Users/Deleted.php:69
+#: src/Module/Moderation/Users/Index.php:126
+#: src/Module/Moderation/Users/Index.php:146
msgid "Register date"
msgstr "Datum registrace"
-#: src/Module/Moderation/Users/Active.php:126
-#: src/Module/Moderation/Users/Blocked.php:126
-#: src/Module/Moderation/Users/Deleted.php:83
-#: src/Module/Moderation/Users/Index.php:140
-#: src/Module/Moderation/Users/Index.php:160
+#: src/Module/Moderation/Users/Active.php:112
+#: src/Module/Moderation/Users/Blocked.php:112
+#: src/Module/Moderation/Users/Deleted.php:69
+#: src/Module/Moderation/Users/Index.php:126
+#: src/Module/Moderation/Users/Index.php:146
msgid "Last login"
msgstr "Datum posledního přihlášení"
-#: src/Module/Moderation/Users/Active.php:126
-#: src/Module/Moderation/Users/Blocked.php:126
-#: src/Module/Moderation/Users/Deleted.php:83
-#: src/Module/Moderation/Users/Index.php:140
-#: src/Module/Moderation/Users/Index.php:160
+#: src/Module/Moderation/Users/Active.php:112
+#: src/Module/Moderation/Users/Blocked.php:112
+#: src/Module/Moderation/Users/Deleted.php:69
+#: src/Module/Moderation/Users/Index.php:126
+#: src/Module/Moderation/Users/Index.php:146
msgid "Last public item"
msgstr ""
-#: src/Module/Moderation/Users/Active.php:134
+#: src/Module/Moderation/Users/Active.php:120
msgid "Active Accounts"
msgstr ""
-#: src/Module/Moderation/Users/Active.php:138
-#: src/Module/Moderation/Users/Blocked.php:137
-#: src/Module/Moderation/Users/Index.php:153
+#: src/Module/Moderation/Users/Active.php:124
+#: src/Module/Moderation/Users/Blocked.php:123
+#: src/Module/Moderation/Users/Index.php:139
msgid "User blocked"
msgstr "Uživatel zablokován"
-#: src/Module/Moderation/Users/Active.php:139
-#: src/Module/Moderation/Users/Blocked.php:139
-#: src/Module/Moderation/Users/Index.php:155
+#: src/Module/Moderation/Users/Active.php:125
+#: src/Module/Moderation/Users/Blocked.php:125
+#: src/Module/Moderation/Users/Index.php:141
msgid "Site admin"
msgstr "Administrátor webu"
-#: src/Module/Moderation/Users/Active.php:140
-#: src/Module/Moderation/Users/Blocked.php:140
-#: src/Module/Moderation/Users/Index.php:156
+#: src/Module/Moderation/Users/Active.php:126
+#: src/Module/Moderation/Users/Blocked.php:126
+#: src/Module/Moderation/Users/Index.php:142
msgid "Account expired"
msgstr "Účtu vypršela platnost"
-#: src/Module/Moderation/Users/Active.php:141
-#: src/Module/Moderation/Users/Index.php:159
+#: src/Module/Moderation/Users/Active.php:127
+#: src/Module/Moderation/Users/Index.php:145
msgid "Create a new user"
msgstr ""
-#: src/Module/Moderation/Users/Active.php:147
-#: src/Module/Moderation/Users/Blocked.php:146
-#: src/Module/Moderation/Users/Index.php:165
+#: src/Module/Moderation/Users/Active.php:133
+#: src/Module/Moderation/Users/Blocked.php:132
+#: src/Module/Moderation/Users/Index.php:151
msgid ""
"Selected users will be deleted!\\n\\nEverything these users had posted on "
"this site will be permanently deleted!\\n\\nAre you sure?"
msgstr "Vybraní uživatelé budou smazáni!\\n\\n Vše, co tito uživatelé na těchto stránkách vytvořili, bude trvale odstraněno!\\n\\nOpravdu chcete pokračovat?"
-#: src/Module/Moderation/Users/Active.php:148
-#: src/Module/Moderation/Users/Blocked.php:147
-#: src/Module/Moderation/Users/Index.php:166
+#: src/Module/Moderation/Users/Active.php:134
+#: src/Module/Moderation/Users/Blocked.php:133
+#: src/Module/Moderation/Users/Index.php:152
msgid ""
"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
"site will be permanently deleted!\\n\\nAre you sure?"
msgstr "Uživatel {0} bude smazán!\\n\\n Vše, co tento uživatel na těchto stránkách vytvořil, bude trvale odstraněno!\\n\\n Opravdu chcete pokračovat?"
-#: src/Module/Moderation/Users/Blocked.php:43
-#: src/Module/Moderation/Users/Index.php:50
+#: src/Module/Moderation/Users/Blocked.php:29
+#: src/Module/Moderation/Users/Index.php:36
#, php-format
msgid "%s user unblocked"
msgid_plural "%s users unblocked"
@@ -8843,54 +8851,54 @@ msgstr[1] "%s uživatelé odblokováni"
msgstr[2] "%s uživatele odblokováno"
msgstr[3] "%s uživatelů odblokováno"
-#: src/Module/Moderation/Users/Blocked.php:92
-#: src/Module/Moderation/Users/Index.php:106
+#: src/Module/Moderation/Users/Blocked.php:78
+#: src/Module/Moderation/Users/Index.php:92
#, php-format
msgid "User \"%s\" unblocked"
msgstr "Uživatel „%s“ odblokován"
-#: src/Module/Moderation/Users/Blocked.php:134
+#: src/Module/Moderation/Users/Blocked.php:120
msgid "Blocked Users"
msgstr ""
-#: src/Module/Moderation/Users/Create.php:62
+#: src/Module/Moderation/Users/Create.php:48
msgid "New User"
msgstr "Nový uživatel"
-#: src/Module/Moderation/Users/Create.php:63
+#: src/Module/Moderation/Users/Create.php:49
msgid "Add User"
msgstr "Přidat uživatele"
-#: src/Module/Moderation/Users/Create.php:70
+#: src/Module/Moderation/Users/Create.php:56
msgid "Name of the new user."
msgstr "Jméno nového uživatele."
-#: src/Module/Moderation/Users/Create.php:71
+#: src/Module/Moderation/Users/Create.php:57
msgid "Nickname"
msgstr "Přezdívka"
-#: src/Module/Moderation/Users/Create.php:71
+#: src/Module/Moderation/Users/Create.php:57
msgid "Nickname of the new user."
msgstr "Přezdívka nového uživatele."
-#: src/Module/Moderation/Users/Create.php:72
+#: src/Module/Moderation/Users/Create.php:58
msgid "Email address of the new user."
msgstr "Emailová adresa nového uživatele."
-#: src/Module/Moderation/Users/Deleted.php:81
+#: src/Module/Moderation/Users/Deleted.php:67
msgid "Users awaiting permanent deletion"
msgstr ""
-#: src/Module/Moderation/Users/Deleted.php:83
-#: src/Module/Moderation/Users/Index.php:160
+#: src/Module/Moderation/Users/Deleted.php:69
+#: src/Module/Moderation/Users/Index.php:146
msgid "Permanent deletion"
msgstr "Trvalé smazání"
-#: src/Module/Moderation/Users/Index.php:150
+#: src/Module/Moderation/Users/Index.php:136
msgid "User waiting for permanent deletion"
msgstr "Uživatel čekající na trvalé smazání"
-#: src/Module/Moderation/Users/Pending.php:44
+#: src/Module/Moderation/Users/Pending.php:30
#, php-format
msgid "%s user approved"
msgid_plural "%s users approved"
@@ -8899,7 +8907,7 @@ msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
-#: src/Module/Moderation/Users/Pending.php:51
+#: src/Module/Moderation/Users/Pending.php:37
#, php-format
msgid "%s registration revoked"
msgid_plural "%s registrations revoked"
@@ -8908,420 +8916,406 @@ msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
-#: src/Module/Moderation/Users/Pending.php:76
+#: src/Module/Moderation/Users/Pending.php:62
msgid "Account approved."
msgstr "Účet schválen."
-#: src/Module/Moderation/Users/Pending.php:82
+#: src/Module/Moderation/Users/Pending.php:68
msgid "Registration revoked"
msgstr ""
-#: src/Module/Moderation/Users/Pending.php:97
+#: src/Module/Moderation/Users/Pending.php:83
msgid "User registrations awaiting review"
msgstr ""
-#: src/Module/Moderation/Users/Pending.php:99
+#: src/Module/Moderation/Users/Pending.php:85
msgid "Request date"
msgstr "Datum požadavku"
-#: src/Module/Moderation/Users/Pending.php:100
+#: src/Module/Moderation/Users/Pending.php:86
msgid "No registrations."
msgstr "Žádné registrace."
-#: src/Module/Moderation/Users/Pending.php:101
+#: src/Module/Moderation/Users/Pending.php:87
msgid "Note from the user"
msgstr "Poznámka od uživatele"
-#: src/Module/Moderation/Users/Pending.php:103
+#: src/Module/Moderation/Users/Pending.php:89
msgid "Deny"
msgstr "Odmítnout"
-#: src/Module/Notifications/Introductions.php:99
+#: src/Module/Notifications/Introductions.php:91
msgid "Show Ignored Requests"
msgstr "Zobrazit ignorované požadavky"
-#: src/Module/Notifications/Introductions.php:99
+#: src/Module/Notifications/Introductions.php:91
msgid "Hide Ignored Requests"
msgstr "Skrýt ignorované požadavky"
-#: src/Module/Notifications/Introductions.php:115
-#: src/Module/Notifications/Introductions.php:178
+#: src/Module/Notifications/Introductions.php:107
+#: src/Module/Notifications/Introductions.php:170
msgid "Notification type:"
msgstr "Typ oznámení:"
-#: src/Module/Notifications/Introductions.php:118
+#: src/Module/Notifications/Introductions.php:110
msgid "Suggested by:"
msgstr "Navrhl/a:"
-#: src/Module/Notifications/Introductions.php:143
+#: src/Module/Notifications/Introductions.php:135
msgid "Claims to be known to you: "
msgstr "Vaši údajní známí: "
-#: src/Module/Notifications/Introductions.php:152
+#: src/Module/Notifications/Introductions.php:144
msgid "Shall your connection be bidirectional or not?"
msgstr "Má vaše spojení být obousměrné, nebo ne?"
-#: src/Module/Notifications/Introductions.php:153
+#: src/Module/Notifications/Introductions.php:145
#, php-format
msgid ""
"Accepting %s as a friend allows %s to subscribe to your posts, and you will "
"also receive updates from them in your news feed."
msgstr "Přijetí uživatele %s jako přítele dovolí uživateli %s odebírat Vaše příspěvky a Vy budete také přijímat aktualizace od něj ve Vašem kanále."
-#: src/Module/Notifications/Introductions.php:154
+#: src/Module/Notifications/Introductions.php:146
#, php-format
msgid ""
"Accepting %s as a subscriber allows them to subscribe to your posts, but you"
" will not receive updates from them in your news feed."
msgstr "Přijetí uživatele %s jako odběratele mu dovolí odebírat Vaše příspěvky, ale nebudete od něj přijímat aktualizace ve Vašem kanále."
-#: src/Module/Notifications/Introductions.php:156
+#: src/Module/Notifications/Introductions.php:148
msgid "Friend"
msgstr "Přítel"
-#: src/Module/Notifications/Introductions.php:157
+#: src/Module/Notifications/Introductions.php:149
msgid "Subscriber"
msgstr "Odběratel"
-#: src/Module/Notifications/Introductions.php:216
+#: src/Module/Notifications/Introductions.php:208
msgid "No introductions."
msgstr "Žádné představení."
-#: src/Module/Notifications/Introductions.php:217
-#: src/Module/Notifications/Notifications.php:135
+#: src/Module/Notifications/Introductions.php:209
+#: src/Module/Notifications/Notifications.php:127
#, php-format
msgid "No more %s notifications."
msgstr "Žádná další %s oznámení"
-#: src/Module/Notifications/Notification.php:135
+#: src/Module/Notifications/Notification.php:121
msgid "You must be logged in to show this page."
msgstr ""
-#: src/Module/Notifications/Notifications.php:66
+#: src/Module/Notifications/Notifications.php:52
msgid "Network Notifications"
msgstr "Síťová oznámení"
-#: src/Module/Notifications/Notifications.php:72
+#: src/Module/Notifications/Notifications.php:58
msgid "System Notifications"
msgstr "Systémová oznámení"
-#: src/Module/Notifications/Notifications.php:78
+#: src/Module/Notifications/Notifications.php:64
msgid "Personal Notifications"
msgstr "Osobní oznámení"
-#: src/Module/Notifications/Notifications.php:84
+#: src/Module/Notifications/Notifications.php:70
msgid "Home Notifications"
msgstr "Oznámení na domovské stránce"
-#: src/Module/Notifications/Notifications.php:140
+#: src/Module/Notifications/Notifications.php:132
msgid "Show unread"
msgstr "Zobrazit nepřečtené"
-#: src/Module/Notifications/Ping.php:220
+#: src/Module/Notifications/Ping.php:206
msgid "{0} requested registration"
msgstr "{0} požaduje registraci"
-#: src/Module/Notifications/Ping.php:229
+#: src/Module/Notifications/Ping.php:215
#, php-format
msgid "{0} and %d others requested registration"
msgstr ""
-#: src/Module/OAuth/Acknowledge.php:51
+#: src/Module/OAuth/Acknowledge.php:37
msgid "Authorize application connection"
msgstr "Povolit připojení aplikacím"
-#: src/Module/OAuth/Acknowledge.php:53
+#: src/Module/OAuth/Acknowledge.php:39
msgid ""
"Do you want to authorize this application to access your posts and contacts,"
" and/or create new posts for you?"
msgstr "Chcete umožnit této aplikaci přístup k vašim příspěvkům a kontaktům a/nebo k vytváření Vašich nových příspěvků?"
-#: src/Module/OAuth/Authorize.php:54
+#: src/Module/OAuth/Authorize.php:40
msgid "Unsupported or missing response type"
msgstr ""
-#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:75
+#: src/Module/OAuth/Authorize.php:45 src/Module/OAuth/Token.php:61
msgid "Incomplete request data"
msgstr ""
-#: src/Module/OAuth/Authorize.php:106
+#: src/Module/OAuth/Authorize.php:92
#, php-format
msgid ""
"Please copy the following authentication code into your application and "
"close this window: %s"
msgstr ""
-#: src/Module/OAuth/Token.php:80
+#: src/Module/OAuth/Token.php:66
msgid "Invalid data or unknown client"
msgstr ""
-#: src/Module/OAuth/Token.php:105
+#: src/Module/OAuth/Token.php:91
msgid "Unsupported or missing grant type"
msgstr ""
-#: src/Module/OStatus/Repair.php:83
-msgid "Resubscribing to OStatus contacts"
-msgstr "Znovu Vás registruji ke kontaktům OStatus"
-
-#: src/Module/OStatus/Repair.php:84 src/Module/OStatus/Subscribe.php:160
-msgid "Keep this window open until done."
-msgstr "Toto okno nechte otevřené až do konce."
-
-#: src/Module/OStatus/Repair.php:85
-msgid "✔ Done"
-msgstr ""
-
-#: src/Module/OStatus/Repair.php:86
-msgid "No OStatus contacts to resubscribe to."
-msgstr ""
-
-#: src/Module/OStatus/Subscribe.php:72
+#: src/Module/OStatus/Subscribe.php:58
msgid "Subscribing to contacts"
msgstr ""
-#: src/Module/OStatus/Subscribe.php:81
+#: src/Module/OStatus/Subscribe.php:67
msgid "No contact provided."
msgstr "Nebyl poskytnut žádný kontakt."
-#: src/Module/OStatus/Subscribe.php:87
+#: src/Module/OStatus/Subscribe.php:73
msgid "Couldn't fetch information for contact."
msgstr "Nelze načíst informace pro kontakt."
-#: src/Module/OStatus/Subscribe.php:98
+#: src/Module/OStatus/Subscribe.php:84
msgid "Couldn't fetch friends for contact."
msgstr "Nelze načíst přátele pro kontakt."
-#: src/Module/OStatus/Subscribe.php:104 src/Module/OStatus/Subscribe.php:115
+#: src/Module/OStatus/Subscribe.php:90 src/Module/OStatus/Subscribe.php:101
msgid "Couldn't fetch following contacts."
msgstr ""
-#: src/Module/OStatus/Subscribe.php:110
+#: src/Module/OStatus/Subscribe.php:96
msgid "Couldn't fetch remote profile."
msgstr ""
-#: src/Module/OStatus/Subscribe.php:120
+#: src/Module/OStatus/Subscribe.php:106
msgid "Unsupported network"
msgstr ""
-#: src/Module/OStatus/Subscribe.php:136
+#: src/Module/OStatus/Subscribe.php:122
msgid "Done"
msgstr "Hotovo"
-#: src/Module/OStatus/Subscribe.php:150
+#: src/Module/OStatus/Subscribe.php:136
msgid "success"
msgstr "úspěch"
-#: src/Module/OStatus/Subscribe.php:152
+#: src/Module/OStatus/Subscribe.php:138
msgid "failed"
msgstr "selhalo"
-#: src/Module/OStatus/Subscribe.php:155
+#: src/Module/OStatus/Subscribe.php:141
msgid "ignored"
msgstr "ignorován"
-#: src/Module/Photo.php:124
+#: src/Module/OStatus/Subscribe.php:146
+msgid "Keep this window open until done."
+msgstr "Toto okno nechte otevřené až do konce."
+
+#: src/Module/Photo.php:108
msgid "The Photo is not available."
msgstr ""
-#: src/Module/Photo.php:149
+#: src/Module/Photo.php:133
#, php-format
msgid "The Photo with id %s is not available."
msgstr ""
-#: src/Module/Photo.php:190
+#: src/Module/Photo.php:174
#, php-format
msgid "Invalid external resource with url %s."
msgstr ""
-#: src/Module/Photo.php:192
+#: src/Module/Photo.php:176
#, php-format
msgid "Invalid photo with id %s."
msgstr "Neplatná fotka s ID %s."
-#: src/Module/Post/Edit.php:82 src/Module/Post/Edit.php:96
+#: src/Module/Post/Edit.php:68 src/Module/Post/Edit.php:82
msgid "Post not found."
msgstr ""
-#: src/Module/Post/Edit.php:102
+#: src/Module/Post/Edit.php:88
msgid "Edit post"
msgstr "Upravit příspěvek"
-#: src/Module/Post/Edit.php:136
+#: src/Module/Post/Edit.php:122
msgid "web link"
msgstr "webový odkaz"
-#: src/Module/Post/Edit.php:137
+#: src/Module/Post/Edit.php:123
msgid "Insert video link"
msgstr "Vložit odkaz na video"
-#: src/Module/Post/Edit.php:138
+#: src/Module/Post/Edit.php:124
msgid "video link"
msgstr "odkaz na video"
-#: src/Module/Post/Edit.php:139
+#: src/Module/Post/Edit.php:125
msgid "Insert audio link"
msgstr "Vložit odkaz na audio"
-#: src/Module/Post/Edit.php:140
+#: src/Module/Post/Edit.php:126
msgid "audio link"
msgstr "odkaz na audio"
-#: src/Module/Post/Tag/Remove.php:106
+#: src/Module/Post/Tag/Remove.php:92
msgid "Remove Item Tag"
msgstr "Odebrat štítek položky"
-#: src/Module/Post/Tag/Remove.php:107
+#: src/Module/Post/Tag/Remove.php:93
msgid "Select a tag to remove: "
msgstr "Vyberte štítek k odebrání: "
-#: src/Module/Post/Tag/Remove.php:108
-#: src/Module/Settings/TwoFactor/Trusted.php:147
+#: src/Module/Post/Tag/Remove.php:94
+#: src/Module/Settings/TwoFactor/Trusted.php:133
msgid "Remove"
msgstr "Odstranit"
-#: src/Module/Privacy/PermissionTooltip.php:71
+#: src/Module/Privacy/PermissionTooltip.php:57
#, php-format
msgid "Wrong type \"%s\", expected one of: %s"
msgstr ""
-#: src/Module/Privacy/PermissionTooltip.php:101
+#: src/Module/Privacy/PermissionTooltip.php:87
msgid "Model not found"
msgstr ""
-#: src/Module/Privacy/PermissionTooltip.php:118
+#: src/Module/Privacy/PermissionTooltip.php:104
msgid "Unlisted"
msgstr ""
-#: src/Module/Privacy/PermissionTooltip.php:124
+#: src/Module/Privacy/PermissionTooltip.php:110
msgid "Remote privacy information not available."
msgstr "Vzdálené informace o soukromí nejsou k dispozici."
-#: src/Module/Privacy/PermissionTooltip.php:131
+#: src/Module/Privacy/PermissionTooltip.php:117
msgid "Visible to:"
msgstr "Viditelné pro:"
-#: src/Module/Privacy/PermissionTooltip.php:133
+#: src/Module/Privacy/PermissionTooltip.php:119
msgid "CC:"
msgstr ""
-#: src/Module/Privacy/PermissionTooltip.php:134
+#: src/Module/Privacy/PermissionTooltip.php:120
msgid "BCC:"
msgstr ""
-#: src/Module/Privacy/PermissionTooltip.php:135
+#: src/Module/Privacy/PermissionTooltip.php:121
msgid "Audience:"
msgstr ""
-#: src/Module/Privacy/PermissionTooltip.php:136
+#: src/Module/Privacy/PermissionTooltip.php:122
msgid "Attributed To:"
msgstr ""
-#: src/Module/Privacy/PermissionTooltip.php:234
+#: src/Module/Privacy/PermissionTooltip.php:220
#, php-format
msgid "Collection (%s)"
msgstr ""
-#: src/Module/Privacy/PermissionTooltip.php:238
+#: src/Module/Privacy/PermissionTooltip.php:224
#, php-format
msgid "Followers (%s)"
msgstr "Sledující (%s)"
-#: src/Module/Privacy/PermissionTooltip.php:255
+#: src/Module/Privacy/PermissionTooltip.php:241
#, php-format
msgid "%d more"
msgstr ""
-#: src/Module/Profile/Contacts.php:159
+#: src/Module/Profile/Contacts.php:145
msgid "No contacts."
msgstr "Žádné kontakty."
-#: src/Module/Profile/Conversations.php:106
-#: src/Module/Profile/Conversations.php:109 src/Module/Profile/Profile.php:351
-#: src/Module/Profile/Profile.php:354 src/Protocol/Feed.php:1095
-#: src/Protocol/OStatus.php:1011
-#, php-format
-msgid "%s's timeline"
-msgstr "Časová osa uživatele %s"
-
-#: src/Module/Profile/Conversations.php:107 src/Module/Profile/Profile.php:352
-#: src/Protocol/Feed.php:1099 src/Protocol/OStatus.php:1016
+#: src/Module/Profile/Conversations.php:92 src/Module/Profile/Profile.php:339
+#: src/Protocol/Feed.php:1097
#, php-format
msgid "%s's posts"
msgstr "Příspěvky uživatele %s"
-#: src/Module/Profile/Conversations.php:108 src/Module/Profile/Profile.php:353
-#: src/Protocol/Feed.php:1102 src/Protocol/OStatus.php:1020
+#: src/Module/Profile/Conversations.php:93 src/Module/Profile/Profile.php:340
+#: src/Protocol/Feed.php:1100
#, php-format
msgid "%s's comments"
msgstr "Komentáře uživatele %s"
-#: src/Module/Profile/Photos.php:164 src/Module/Profile/Photos.php:167
-#: src/Module/Profile/Photos.php:192
-#: src/Module/Settings/Profile/Photo/Index.php:58
+#: src/Module/Profile/Conversations.php:94 src/Module/Profile/Profile.php:341
+#: src/Protocol/Feed.php:1093
+#, php-format
+msgid "%s's timeline"
+msgstr "Časová osa uživatele %s"
+
+#: src/Module/Profile/Photos.php:150 src/Module/Profile/Photos.php:153
+#: src/Module/Profile/Photos.php:178
+#: src/Module/Settings/Profile/Photo/Index.php:44
#, php-format
msgid "Image exceeds size limit of %s"
msgstr "Velikost obrázku překročila limit %s"
-#: src/Module/Profile/Photos.php:170
+#: src/Module/Profile/Photos.php:156
msgid "Image upload didn't complete, please try again"
msgstr "Nahrávání obrázku nebylo dokončeno, zkuste to prosím znovu"
-#: src/Module/Profile/Photos.php:173
+#: src/Module/Profile/Photos.php:159
msgid "Image file is missing"
msgstr "Chybí soubor obrázku"
-#: src/Module/Profile/Photos.php:178
+#: src/Module/Profile/Photos.php:164
msgid ""
"Server can't accept new file upload at this time, please contact your "
"administrator"
msgstr "Server v tuto chvíli nemůže akceptovat nové nahrané soubory, prosím kontaktujte vašeho administrátora"
-#: src/Module/Profile/Photos.php:200
+#: src/Module/Profile/Photos.php:186
msgid "Image file is empty."
msgstr "Soubor obrázku je prázdný."
-#: src/Module/Profile/Photos.php:352
+#: src/Module/Profile/Photos.php:338
msgid "View Album"
msgstr "Zobrazit album"
-#: src/Module/Profile/Profile.php:112 src/Module/Profile/Restricted.php:50
+#: src/Module/Profile/Profile.php:100 src/Module/Profile/Restricted.php:36
msgid "Profile not found."
msgstr "Profil nenalezen."
-#: src/Module/Profile/Profile.php:158
+#: src/Module/Profile/Profile.php:146
#, php-format
msgid ""
"You're currently viewing your profile as %s Cancel"
msgstr ""
-#: src/Module/Profile/Profile.php:167
+#: src/Module/Profile/Profile.php:155
msgid "Full Name:"
msgstr "Celé jméno:"
-#: src/Module/Profile/Profile.php:172
+#: src/Module/Profile/Profile.php:160
msgid "Member since:"
msgstr "Členem od:"
-#: src/Module/Profile/Profile.php:178
+#: src/Module/Profile/Profile.php:166
msgid "j F, Y"
msgstr "j F, Y"
-#: src/Module/Profile/Profile.php:179
+#: src/Module/Profile/Profile.php:167
msgid "j F"
msgstr "j F"
-#: src/Module/Profile/Profile.php:187 src/Util/Temporal.php:168
+#: src/Module/Profile/Profile.php:175 src/Util/Temporal.php:154
msgid "Birthday:"
msgstr "Narozeniny:"
-#: src/Module/Profile/Profile.php:190
-#: src/Module/Settings/Profile/Index.php:291 src/Util/Temporal.php:170
+#: src/Module/Profile/Profile.php:178
+#: src/Module/Settings/Profile/Index.php:282 src/Util/Temporal.php:156
msgid "Age: "
msgstr "Věk: "
-#: src/Module/Profile/Profile.php:190
-#: src/Module/Settings/Profile/Index.php:291 src/Util/Temporal.php:170
+#: src/Module/Profile/Profile.php:178
+#: src/Module/Settings/Profile/Index.php:282 src/Util/Temporal.php:156
#, php-format
msgid "%d year old"
msgid_plural "%d years old"
@@ -9330,46 +9324,46 @@ msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
-#: src/Module/Profile/Profile.php:195
-#: src/Module/Settings/Profile/Index.php:284
+#: src/Module/Profile/Profile.php:183
+#: src/Module/Settings/Profile/Index.php:275
msgid "Description:"
msgstr "Popis:"
-#: src/Module/Profile/Profile.php:261
+#: src/Module/Profile/Profile.php:249
msgid "Groups:"
msgstr ""
-#: src/Module/Profile/Profile.php:273
+#: src/Module/Profile/Profile.php:261
msgid "View profile as:"
msgstr ""
-#: src/Module/Profile/Profile.php:290
+#: src/Module/Profile/Profile.php:278
msgid "View as"
msgstr ""
-#: src/Module/Profile/RemoteFollow.php:82
+#: src/Module/Profile/RemoteFollow.php:68
msgid "Profile unavailable."
msgstr "Profil není k dispozici."
-#: src/Module/Profile/RemoteFollow.php:88
+#: src/Module/Profile/RemoteFollow.php:74
msgid "Invalid locator"
msgstr "Neplatný odkaz"
-#: src/Module/Profile/RemoteFollow.php:95
+#: src/Module/Profile/RemoteFollow.php:81
msgid "The provided profile link doesn't seem to be valid"
msgstr ""
-#: src/Module/Profile/RemoteFollow.php:100
+#: src/Module/Profile/RemoteFollow.php:86
msgid ""
"Remote subscription can't be done for your network. Please subscribe "
"directly on your system."
msgstr "Vzdálený odběr nemůže být na vaší síti proveden. Prosím, přihlaste se k odběru přímo na vašem systému."
-#: src/Module/Profile/RemoteFollow.php:128
+#: src/Module/Profile/RemoteFollow.php:114
msgid "Friend/Connection Request"
msgstr "Požadavek o přátelství/spojení"
-#: src/Module/Profile/RemoteFollow.php:129
+#: src/Module/Profile/RemoteFollow.php:115
#, php-format
msgid ""
"Enter your Webfinger address (user@domain.tld) or profile URL here. If this "
@@ -9377,579 +9371,579 @@ msgid ""
" or %s directly on your system."
msgstr ""
-#: src/Module/Profile/RemoteFollow.php:130
+#: src/Module/Profile/RemoteFollow.php:116
#, php-format
msgid ""
"If you are not yet a member of the free social web, follow "
"this link to find a public Friendica node and join us today."
msgstr ""
-#: src/Module/Profile/RemoteFollow.php:131
+#: src/Module/Profile/RemoteFollow.php:117
msgid "Your Webfinger address or profile URL:"
msgstr ""
-#: src/Module/Profile/Restricted.php:59
+#: src/Module/Profile/Restricted.php:45
msgid "Restricted profile"
msgstr ""
-#: src/Module/Profile/Restricted.php:60
+#: src/Module/Profile/Restricted.php:46
msgid ""
"This profile has been restricted which prevents access to their public "
"content from anonymous visitors."
msgstr ""
-#: src/Module/Profile/Schedule.php:83
+#: src/Module/Profile/Schedule.php:69
msgid "Scheduled"
msgstr ""
-#: src/Module/Profile/Schedule.php:84
+#: src/Module/Profile/Schedule.php:70
msgid "Content"
msgstr ""
-#: src/Module/Profile/Schedule.php:85
+#: src/Module/Profile/Schedule.php:71
msgid "Remove post"
msgstr ""
-#: src/Module/Register.php:85
+#: src/Module/Register.php:77
msgid "Only parent users can create additional accounts."
msgstr ""
-#: src/Module/Register.php:100 src/Module/User/Import.php:112
+#: src/Module/Register.php:92 src/Module/User/Import.php:98
msgid ""
"This site has exceeded the number of allowed daily account registrations. "
"Please try again tomorrow."
msgstr "Došlo k překročení maximálního povoleného počtu registrací za den na tomto serveru. Zkuste to zítra znovu."
-#: src/Module/Register.php:117
+#: src/Module/Register.php:109
msgid ""
"You may (optionally) fill in this form via OpenID by supplying your OpenID "
"and clicking \"Register\"."
msgstr "Tento formulář můžete (volitelně) vyplnit s pomocí OpenID tím, že vyplníte své OpenID a kliknete na tlačítko „Zaregistrovat“."
-#: src/Module/Register.php:118
+#: src/Module/Register.php:110
msgid ""
"If you are not familiar with OpenID, please leave that field blank and fill "
"in the rest of the items."
msgstr "Pokud nepoužíváte OpenID, nechte prosím toto pole prázdné a vyplňte zbylé položky."
-#: src/Module/Register.php:119
+#: src/Module/Register.php:111
msgid "Your OpenID (optional): "
msgstr "Vaše OpenID (nepovinné): "
-#: src/Module/Register.php:128
+#: src/Module/Register.php:120
msgid "Include your profile in member directory?"
msgstr "Chcete zahrnout váš profil v adresáři členů?"
-#: src/Module/Register.php:149
+#: src/Module/Register.php:141
msgid "Note for the admin"
msgstr "Poznámka pro administrátora"
-#: src/Module/Register.php:149
+#: src/Module/Register.php:141
msgid "Leave a message for the admin, why you want to join this node"
msgstr "Zanechejte administrátorovi zprávu, proč se k tomuto serveru chcete připojit"
-#: src/Module/Register.php:150
+#: src/Module/Register.php:142
msgid "Membership on this site is by invitation only."
msgstr "Členství na tomto webu je pouze na pozvání."
-#: src/Module/Register.php:151
+#: src/Module/Register.php:143
msgid "Your invitation code: "
msgstr "Váš kód pozvánky: "
-#: src/Module/Register.php:159
+#: src/Module/Register.php:151
msgid "Your Display Name (as you would like it to be displayed on this system"
msgstr ""
-#: src/Module/Register.php:160
+#: src/Module/Register.php:152
msgid ""
"Your Email Address: (Initial information will be send there, so this has to "
"be an existing address.)"
msgstr "Vaše e-mailová adresa: (Budou sem poslány počáteční informace, musí to proto být existující adresa.)"
-#: src/Module/Register.php:161
+#: src/Module/Register.php:153
msgid "Please repeat your e-mail address:"
msgstr ""
-#: src/Module/Register.php:163 src/Module/Security/PasswordTooLong.php:100
-#: src/Module/Settings/Account.php:564
+#: src/Module/Register.php:155 src/Module/Security/PasswordTooLong.php:86
+#: src/Module/Settings/Account.php:555
msgid "New Password:"
msgstr "Nové heslo:"
-#: src/Module/Register.php:163
+#: src/Module/Register.php:155
msgid "Leave empty for an auto generated password."
msgstr "Ponechte prázdné pro automatické vygenerovaní hesla."
-#: src/Module/Register.php:164 src/Module/Security/PasswordTooLong.php:101
-#: src/Module/Settings/Account.php:565
+#: src/Module/Register.php:156 src/Module/Security/PasswordTooLong.php:87
+#: src/Module/Settings/Account.php:556
msgid "Confirm:"
msgstr "Potvrďte:"
-#: src/Module/Register.php:165
+#: src/Module/Register.php:157
#, php-format
msgid ""
"Choose a profile nickname. This must begin with a text character. Your "
"profile address on this site will then be \"nickname@%s\"."
msgstr "Vyberte si přezdívku pro váš profil. Musí začínat textovým znakem. Vaše profilová adresa na této stránce bude mít tvar „přezdívka@%s“."
-#: src/Module/Register.php:166
+#: src/Module/Register.php:158
msgid "Choose a nickname: "
msgstr "Vyberte přezdívku:"
-#: src/Module/Register.php:174 src/Module/User/Import.php:118
+#: src/Module/Register.php:166 src/Module/User/Import.php:104
msgid "Import"
msgstr "Import"
-#: src/Module/Register.php:175
+#: src/Module/Register.php:167
msgid "Import your profile to this friendica instance"
msgstr "Importovat váš profil do této instance Friendica"
-#: src/Module/Register.php:182
+#: src/Module/Register.php:174
msgid "Note: This node explicitly contains adult content"
msgstr "Poznámka: Tento server explicitně obsahuje obsah pro dospělé"
-#: src/Module/Register.php:184 src/Module/Settings/Delegation.php:181
+#: src/Module/Register.php:176 src/Module/Settings/Delegation.php:167
msgid "Parent Password:"
msgstr "Rodičovské heslo:"
-#: src/Module/Register.php:184 src/Module/Settings/Delegation.php:181
+#: src/Module/Register.php:176 src/Module/Settings/Delegation.php:167
msgid ""
"Please enter the password of the parent account to legitimize your request."
msgstr "Prosím vložte heslo rodičovského účtu k legitimizaci vašeho požadavku."
-#: src/Module/Register.php:213
+#: src/Module/Register.php:205
msgid "Password doesn't match."
msgstr ""
-#: src/Module/Register.php:219
+#: src/Module/Register.php:211
msgid "Please enter your password."
msgstr ""
-#: src/Module/Register.php:261
+#: src/Module/Register.php:253
msgid "You have entered too much information."
msgstr ""
-#: src/Module/Register.php:284
+#: src/Module/Register.php:276
msgid "Please enter the identical mail address in the second field."
msgstr ""
-#: src/Module/Register.php:292
+#: src/Module/Register.php:284
msgid "Nickname cannot start with a digit."
msgstr ""
-#: src/Module/Register.php:294
+#: src/Module/Register.php:286
msgid "Nickname can only contain US-ASCII characters."
msgstr ""
-#: src/Module/Register.php:323
+#: src/Module/Register.php:315
msgid "The additional account was created."
msgstr ""
-#: src/Module/Register.php:348
+#: src/Module/Register.php:340
msgid ""
"Registration successful. Please check your email for further instructions."
msgstr "Registrace byla úspěšná. Zkontrolujte prosím svůj e-mail pro další instrukce."
-#: src/Module/Register.php:355
+#: src/Module/Register.php:347
#, php-format
msgid ""
"Failed to send email message. Here your accout details:You can enter one of your one-time recovery codes in case you lost access" " to your mobile device.
" msgstr "Pokud jste ztratil/a přístup k vašemu mobilnímu zařízení , můžete zadat jeden z vašich jednorázových záložních kódů.
" -#: src/Module/Security/TwoFactor/Recovery.php:101 +#: src/Module/Security/TwoFactor/Recovery.php:87 #, php-format msgid "Don’t have your phone? Enter a two-factor recovery code" msgstr "Nemáte svůj mobil? Zadejte dvoufázový záložní kód" -#: src/Module/Security/TwoFactor/Recovery.php:102 +#: src/Module/Security/TwoFactor/Recovery.php:88 msgid "Please enter a recovery code" msgstr "Prosím zadejte záložní kód" -#: src/Module/Security/TwoFactor/Recovery.php:103 +#: src/Module/Security/TwoFactor/Recovery.php:89 msgid "Submit recovery code and complete login" msgstr "Odeslat záložní kód a dokončit přihlášení" -#: src/Module/Security/TwoFactor/SignOut.php:122 +#: src/Module/Security/TwoFactor/SignOut.php:108 msgid "Sign out of this browser?" msgstr "" -#: src/Module/Security/TwoFactor/SignOut.php:123 +#: src/Module/Security/TwoFactor/SignOut.php:109 msgid "" "If you trust this browser, you will not be asked for verification code " "the next time you sign in.
" msgstr "" -#: src/Module/Security/TwoFactor/SignOut.php:124 +#: src/Module/Security/TwoFactor/SignOut.php:110 msgid "Sign out" msgstr "" -#: src/Module/Security/TwoFactor/SignOut.php:126 +#: src/Module/Security/TwoFactor/SignOut.php:112 msgid "Trust and sign out" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:96 +#: src/Module/Security/TwoFactor/Trust.php:82 msgid "Couldn't save browser to Cookie." msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:141 +#: src/Module/Security/TwoFactor/Trust.php:127 msgid "Trust this browser?" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:142 +#: src/Module/Security/TwoFactor/Trust.php:128 msgid "" "If you choose to trust this browser, you will not be asked for a " "verification code the next time you sign in.
" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:143 +#: src/Module/Security/TwoFactor/Trust.php:129 msgid "Not now" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:144 +#: src/Module/Security/TwoFactor/Trust.php:130 msgid "Don't trust" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:145 +#: src/Module/Security/TwoFactor/Trust.php:131 msgid "Trust" msgstr "" -#: src/Module/Security/TwoFactor/Verify.php:97 +#: src/Module/Security/TwoFactor/Verify.php:83 msgid "" "Open the two-factor authentication app on your device to get an " "authentication code and verify your identity.
" msgstr "Otevřete na vašem zařízení aplikaci pro dvoufázové ověřování, získejte autentizační kód a ověřte svou identitu.
" -#: src/Module/Security/TwoFactor/Verify.php:100 +#: src/Module/Security/TwoFactor/Verify.php:86 #, php-format msgid "" "If you do not have access to your authentication code you can use a two-factor recovery code." msgstr "" -#: src/Module/Security/TwoFactor/Verify.php:101 -#: src/Module/Settings/TwoFactor/Verify.php:158 +#: src/Module/Security/TwoFactor/Verify.php:87 +#: src/Module/Settings/TwoFactor/Verify.php:144 msgid "Please enter a code from your authentication app" msgstr "Prosím zadejte kód z vaší autentizační aplikace" -#: src/Module/Security/TwoFactor/Verify.php:102 +#: src/Module/Security/TwoFactor/Verify.php:88 msgid "Verify code and complete login" msgstr "Ověřit kód a dokončit přihlášení" -#: src/Module/Settings/Account.php:96 +#: src/Module/Settings/Account.php:82 msgid "Please use a shorter name." msgstr "" -#: src/Module/Settings/Account.php:99 +#: src/Module/Settings/Account.php:85 msgid "Name too short." msgstr "" -#: src/Module/Settings/Account.php:108 +#: src/Module/Settings/Account.php:94 msgid "Wrong Password." msgstr "" -#: src/Module/Settings/Account.php:113 +#: src/Module/Settings/Account.php:99 msgid "Invalid email." msgstr "Neplatný e-mail." -#: src/Module/Settings/Account.php:117 +#: src/Module/Settings/Account.php:103 msgid "Cannot change to that email." msgstr "Nelze změnit na tento e-mail." -#: src/Module/Settings/Account.php:146 src/Module/Settings/Account.php:195 -#: src/Module/Settings/Account.php:216 src/Module/Settings/Account.php:300 -#: src/Module/Settings/Account.php:329 +#: src/Module/Settings/Account.php:132 src/Module/Settings/Account.php:181 +#: src/Module/Settings/Account.php:202 src/Module/Settings/Account.php:286 +#: src/Module/Settings/Account.php:315 msgid "Settings were not updated." msgstr "" -#: src/Module/Settings/Account.php:342 +#: src/Module/Settings/Account.php:333 msgid "Contact CSV file upload error" msgstr "" -#: src/Module/Settings/Account.php:361 +#: src/Module/Settings/Account.php:352 msgid "Importing Contacts done" msgstr "" -#: src/Module/Settings/Account.php:374 +#: src/Module/Settings/Account.php:365 msgid "Relocate message has been send to your contacts" msgstr "Správa o změně umístění byla odeslána vašim kontaktům" -#: src/Module/Settings/Account.php:391 +#: src/Module/Settings/Account.php:382 msgid "Unable to find your profile. Please contact your admin." msgstr "Nelze najít Váš účet. Prosím kontaktujte vašeho administrátora." -#: src/Module/Settings/Account.php:433 +#: src/Module/Settings/Account.php:424 msgid "" "Account for a service that automatically shares content based on user " "defined channels." msgstr "" -#: src/Module/Settings/Account.php:443 +#: src/Module/Settings/Account.php:434 msgid "Personal Page Subtypes" msgstr "Podtypy osobních stránek" -#: src/Module/Settings/Account.php:444 +#: src/Module/Settings/Account.php:435 msgid "Community Group Subtypes" msgstr "" -#: src/Module/Settings/Account.php:455 +#: src/Module/Settings/Account.php:446 msgid "Account for a personal profile." msgstr "Účet pro osobní profil." -#: src/Module/Settings/Account.php:462 +#: src/Module/Settings/Account.php:453 msgid "" "Account for an organisation that automatically approves contact requests as " "\"Followers\"." msgstr "Účet pro organizaci, který automaticky potvrzuje požadavky o přidání kontaktu jako „Sledující“." -#: src/Module/Settings/Account.php:469 +#: src/Module/Settings/Account.php:460 msgid "" "Account for a news reflector that automatically approves contact requests as" " \"Followers\"." msgstr "Účet pro zpravodaje, který automaticky potvrzuje požadavky o přidání kontaktu jako „Sledující“." -#: src/Module/Settings/Account.php:476 +#: src/Module/Settings/Account.php:467 msgid "Account for community discussions." msgstr "Účet pro komunitní diskuze." -#: src/Module/Settings/Account.php:484 +#: src/Module/Settings/Account.php:475 msgid "" "Account for a regular personal profile that requires manual approval of " "\"Friends\" and \"Followers\"." msgstr "Účet pro běžný osobní profil, který vyžaduje manuální potvrzení „Přátel“ a „Sledujících“." -#: src/Module/Settings/Account.php:491 +#: src/Module/Settings/Account.php:482 msgid "" "Account for a public profile that automatically approves contact requests as" " \"Followers\"." msgstr "Účet pro veřejný profil, který automaticky potvrzuje požadavky o přidání kontaktu jako „Sledující“." -#: src/Module/Settings/Account.php:498 +#: src/Module/Settings/Account.php:489 msgid "Automatically approves all contact requests." msgstr "Automaticky potvrzuje všechny žádosti o přidání kontaktu." -#: src/Module/Settings/Account.php:505 +#: src/Module/Settings/Account.php:496 msgid "Contact requests have to be manually approved." msgstr "" -#: src/Module/Settings/Account.php:512 +#: src/Module/Settings/Account.php:503 msgid "" "Account for a popular profile that automatically approves contact requests " "as \"Friends\"." msgstr "Účet pro populární profil, který automaticky potvrzuje požadavky o přidání kontaktu jako „Přátele“." -#: src/Module/Settings/Account.php:517 +#: src/Module/Settings/Account.php:508 msgid "Private Group [Experimental]" msgstr "" -#: src/Module/Settings/Account.php:519 +#: src/Module/Settings/Account.php:510 msgid "Requires manual approval of contact requests." msgstr "Vyžaduje manuální potvrzení požadavků o přidání kontaktu." -#: src/Module/Settings/Account.php:528 +#: src/Module/Settings/Account.php:519 msgid "OpenID:" msgstr "OpenID:" -#: src/Module/Settings/Account.php:528 +#: src/Module/Settings/Account.php:519 msgid "(Optional) Allow this OpenID to login to this account." msgstr "(Volitelné) Povolit tomuto OpenID přihlášení k tomuto účtu." -#: src/Module/Settings/Account.php:536 +#: src/Module/Settings/Account.php:527 msgid "Publish your profile in your local site directory?" msgstr "" -#: src/Module/Settings/Account.php:536 +#: src/Module/Settings/Account.php:527 #, php-format msgid "" "Your profile will be published in this node's local " @@ -9957,94 +9951,94 @@ msgid "" " system settings." msgstr "Váš profil bude publikován v místním adresáři tohoto serveru. Vaše detaily o profilu mohou být veřejně viditelné v závislosti na systémových nastaveních." -#: src/Module/Settings/Account.php:542 +#: src/Module/Settings/Account.php:533 #, php-format msgid "" "Your profile will also be published in the global friendica directories " "(e.g. %s)." msgstr "" -#: src/Module/Settings/Account.php:555 +#: src/Module/Settings/Account.php:546 msgid "Account Settings" msgstr "Nastavení účtu" -#: src/Module/Settings/Account.php:556 +#: src/Module/Settings/Account.php:547 #, php-format msgid "Your Identity Address is '%s' or '%s'." msgstr "Vaše adresa identity je „%s“ nebo „%s“." -#: src/Module/Settings/Account.php:563 +#: src/Module/Settings/Account.php:554 msgid "Password Settings" msgstr "Nastavení hesla" -#: src/Module/Settings/Account.php:565 +#: src/Module/Settings/Account.php:556 msgid "Leave password fields blank unless changing" msgstr "Pokud nechcete změnit heslo, položku hesla nevyplňujte" -#: src/Module/Settings/Account.php:567 +#: src/Module/Settings/Account.php:558 msgid "Password:" msgstr "Heslo: " -#: src/Module/Settings/Account.php:567 +#: src/Module/Settings/Account.php:558 msgid "Your current password to confirm the changes of the email address" msgstr "" -#: src/Module/Settings/Account.php:570 +#: src/Module/Settings/Account.php:561 msgid "Delete OpenID URL" msgstr "" -#: src/Module/Settings/Account.php:572 +#: src/Module/Settings/Account.php:563 msgid "Basic Settings" msgstr "Základní nastavení" -#: src/Module/Settings/Account.php:573 -#: src/Module/Settings/Profile/Index.php:283 +#: src/Module/Settings/Account.php:564 +#: src/Module/Settings/Profile/Index.php:274 msgid "Display name:" msgstr "" -#: src/Module/Settings/Account.php:574 +#: src/Module/Settings/Account.php:565 msgid "Email Address:" msgstr "E-mailová adresa:" -#: src/Module/Settings/Account.php:575 +#: src/Module/Settings/Account.php:566 msgid "Your Timezone:" msgstr "Vaše časové pásmo:" -#: src/Module/Settings/Account.php:576 +#: src/Module/Settings/Account.php:567 msgid "Your Language:" msgstr "Váš jazyk:" -#: src/Module/Settings/Account.php:576 +#: src/Module/Settings/Account.php:567 msgid "" "Set the language we use to show you friendica interface and to send you " "emails" msgstr "Nastavte jazyk, který máme používat pro rozhraní Friendica a pro posílání e-mailů" -#: src/Module/Settings/Account.php:577 +#: src/Module/Settings/Account.php:568 msgid "Default Post Location:" msgstr "Výchozí poloha příspěvků:" -#: src/Module/Settings/Account.php:578 +#: src/Module/Settings/Account.php:569 msgid "Use Browser Location:" msgstr "Používat polohu dle prohlížeče:" -#: src/Module/Settings/Account.php:580 +#: src/Module/Settings/Account.php:571 msgid "Security and Privacy Settings" msgstr "Nastavení zabezpečení a soukromí" -#: src/Module/Settings/Account.php:582 +#: src/Module/Settings/Account.php:573 msgid "Maximum Friend Requests/Day:" msgstr "Maximální počet požadavků o přátelství za den:" -#: src/Module/Settings/Account.php:582 +#: src/Module/Settings/Account.php:573 msgid "(to prevent spam abuse)" msgstr "(ay se zabránilo spamu)" -#: src/Module/Settings/Account.php:584 +#: src/Module/Settings/Account.php:575 msgid "Allow your profile to be searchable globally?" msgstr "" -#: src/Module/Settings/Account.php:584 +#: src/Module/Settings/Account.php:575 msgid "" "Activate this setting if you want others to easily find and follow you. Your" " profile will be searchable on remote systems. This setting also determines " @@ -10052,43 +10046,43 @@ msgid "" "indexed or not." msgstr "" -#: src/Module/Settings/Account.php:585 +#: src/Module/Settings/Account.php:576 msgid "Hide your contact/friend list from viewers of your profile?" msgstr "" -#: src/Module/Settings/Account.php:585 +#: src/Module/Settings/Account.php:576 msgid "" "A list of your contacts is displayed on your profile page. Activate this " "option to disable the display of your contact list." msgstr "" -#: src/Module/Settings/Account.php:586 +#: src/Module/Settings/Account.php:577 msgid "Hide your public content from anonymous viewers" msgstr "" -#: src/Module/Settings/Account.php:586 +#: src/Module/Settings/Account.php:577 msgid "" "Anonymous visitors will only see your basic profile details. Your public " "posts and replies will still be freely accessible on the remote servers of " "your followers and through relays." msgstr "" -#: src/Module/Settings/Account.php:587 +#: src/Module/Settings/Account.php:578 msgid "Make public posts unlisted" msgstr "" -#: src/Module/Settings/Account.php:587 +#: src/Module/Settings/Account.php:578 msgid "" "Your public posts will not appear on the community pages or in search " "results, nor be sent to relay servers. However they can still appear on " "public feeds on remote servers." msgstr "" -#: src/Module/Settings/Account.php:588 +#: src/Module/Settings/Account.php:579 msgid "Make all posted pictures accessible" msgstr "" -#: src/Module/Settings/Account.php:588 +#: src/Module/Settings/Account.php:579 msgid "" "This option makes every posted picture accessible via the direct link. This " "is a workaround for the problem that most other networks can't handle " @@ -10096,352 +10090,352 @@ msgid "" "public on your photo albums though." msgstr "" -#: src/Module/Settings/Account.php:589 +#: src/Module/Settings/Account.php:580 msgid "Allow friends to post to your profile page?" msgstr "Povolit přátelům umisťování příspěvků na vaši profilovou stránku?" -#: src/Module/Settings/Account.php:589 +#: src/Module/Settings/Account.php:580 msgid "" "Your contacts may write posts on your profile wall. These posts will be " "distributed to your contacts" msgstr "Vaše kontakty mohou psát příspěvky na vaši profilovou zeď. Tyto příspěvky budou přeposílány vašim kontaktům." -#: src/Module/Settings/Account.php:590 +#: src/Module/Settings/Account.php:581 msgid "Allow friends to tag your posts?" msgstr "Povolit přátelům označovat vaše příspěvky?" -#: src/Module/Settings/Account.php:590 +#: src/Module/Settings/Account.php:581 msgid "Your contacts can add additional tags to your posts." msgstr "Vaše kontakty mohou přidávat k vašim příspěvkům dodatečné štítky." -#: src/Module/Settings/Account.php:591 +#: src/Module/Settings/Account.php:582 msgid "Default privacy circle for new contacts" msgstr "" -#: src/Module/Settings/Account.php:592 +#: src/Module/Settings/Account.php:583 msgid "Default privacy circle for new group contacts" msgstr "" -#: src/Module/Settings/Account.php:593 +#: src/Module/Settings/Account.php:584 msgid "Default Post Permissions" msgstr "Výchozí oprávnění pro příspěvek" -#: src/Module/Settings/Account.php:597 +#: src/Module/Settings/Account.php:588 msgid "Expiration settings" msgstr "" -#: src/Module/Settings/Account.php:598 +#: src/Module/Settings/Account.php:589 msgid "Automatically expire posts after this many days:" msgstr "Automaticky expirovat příspěvky po zadaném počtu dní:" -#: src/Module/Settings/Account.php:598 +#: src/Module/Settings/Account.php:589 msgid "If empty, posts will not expire. Expired posts will be deleted" msgstr "Pokud je prázdné, příspěvky nebudou nikdy expirovat. Expirované příspěvky budou vymazány" -#: src/Module/Settings/Account.php:599 +#: src/Module/Settings/Account.php:590 msgid "Expire posts" msgstr "" -#: src/Module/Settings/Account.php:599 +#: src/Module/Settings/Account.php:590 msgid "When activated, posts and comments will be expired." msgstr "" -#: src/Module/Settings/Account.php:600 +#: src/Module/Settings/Account.php:591 msgid "Expire personal notes" msgstr "" -#: src/Module/Settings/Account.php:600 +#: src/Module/Settings/Account.php:591 msgid "" "When activated, the personal notes on your profile page will be expired." msgstr "" -#: src/Module/Settings/Account.php:601 +#: src/Module/Settings/Account.php:592 msgid "Expire starred posts" msgstr "" -#: src/Module/Settings/Account.php:601 +#: src/Module/Settings/Account.php:592 msgid "" "Starring posts keeps them from being expired. That behaviour is overwritten " "by this setting." msgstr "" -#: src/Module/Settings/Account.php:602 +#: src/Module/Settings/Account.php:593 msgid "Only expire posts by others" msgstr "" -#: src/Module/Settings/Account.php:602 +#: src/Module/Settings/Account.php:593 msgid "" "When activated, your own posts never expire. Then the settings above are " "only valid for posts you received." msgstr "" -#: src/Module/Settings/Account.php:605 +#: src/Module/Settings/Account.php:596 msgid "Notification Settings" msgstr "Nastavení oznámení" -#: src/Module/Settings/Account.php:606 +#: src/Module/Settings/Account.php:597 msgid "Send a notification email when:" msgstr "Poslat oznámení e-mailem, když:" -#: src/Module/Settings/Account.php:607 +#: src/Module/Settings/Account.php:598 msgid "You receive an introduction" msgstr "obdržíte představení" -#: src/Module/Settings/Account.php:608 +#: src/Module/Settings/Account.php:599 msgid "Your introductions are confirmed" msgstr "jsou vaše představení potvrzena" -#: src/Module/Settings/Account.php:609 +#: src/Module/Settings/Account.php:600 msgid "Someone writes on your profile wall" msgstr "vám někdo napíše na vaši profilovou stránku" -#: src/Module/Settings/Account.php:610 +#: src/Module/Settings/Account.php:601 msgid "Someone writes a followup comment" msgstr "Vám někdo napíše následný komentář" -#: src/Module/Settings/Account.php:611 +#: src/Module/Settings/Account.php:602 msgid "You receive a private message" msgstr "obdržíte soukromou zprávu" -#: src/Module/Settings/Account.php:612 +#: src/Module/Settings/Account.php:603 msgid "You receive a friend suggestion" msgstr "obdržíte návrh přátelství" -#: src/Module/Settings/Account.php:613 +#: src/Module/Settings/Account.php:604 msgid "You are tagged in a post" msgstr "jste označen v příspěvku" -#: src/Module/Settings/Account.php:615 +#: src/Module/Settings/Account.php:606 msgid "Create a desktop notification when:" msgstr "" -#: src/Module/Settings/Account.php:616 +#: src/Module/Settings/Account.php:607 msgid "Someone tagged you" msgstr "" -#: src/Module/Settings/Account.php:617 +#: src/Module/Settings/Account.php:608 msgid "Someone directly commented on your post" msgstr "" -#: src/Module/Settings/Account.php:618 +#: src/Module/Settings/Account.php:609 msgid "Someone liked your content" msgstr "" -#: src/Module/Settings/Account.php:618 src/Module/Settings/Account.php:619 +#: src/Module/Settings/Account.php:609 src/Module/Settings/Account.php:610 msgid "Can only be enabled, when the direct comment notification is enabled." msgstr "" -#: src/Module/Settings/Account.php:619 +#: src/Module/Settings/Account.php:610 msgid "Someone shared your content" msgstr "" -#: src/Module/Settings/Account.php:620 +#: src/Module/Settings/Account.php:611 msgid "Someone commented in your thread" msgstr "" -#: src/Module/Settings/Account.php:621 +#: src/Module/Settings/Account.php:612 msgid "Someone commented in a thread where you commented" msgstr "" -#: src/Module/Settings/Account.php:622 +#: src/Module/Settings/Account.php:613 msgid "Someone commented in a thread where you interacted" msgstr "" -#: src/Module/Settings/Account.php:624 +#: src/Module/Settings/Account.php:615 msgid "Activate desktop notifications" msgstr "Aktivovat desktopová oznámení" -#: src/Module/Settings/Account.php:624 +#: src/Module/Settings/Account.php:615 msgid "Show desktop popup on new notifications" msgstr "Zobrazit desktopové zprávy při nových oznámeních." -#: src/Module/Settings/Account.php:628 +#: src/Module/Settings/Account.php:619 msgid "Text-only notification emails" msgstr "Pouze textové oznamovací e-maily" -#: src/Module/Settings/Account.php:630 +#: src/Module/Settings/Account.php:621 msgid "Send text only notification emails, without the html part" msgstr "Posílat pouze textové oznamovací e-maily, bez HTML části." -#: src/Module/Settings/Account.php:634 +#: src/Module/Settings/Account.php:625 msgid "Show detailled notifications" msgstr "Zobrazit detailní oznámení" -#: src/Module/Settings/Account.php:636 +#: src/Module/Settings/Account.php:627 msgid "" "Per default, notifications are condensed to a single notification per item. " "When enabled every notification is displayed." msgstr "Ve výchozím nastavení jsou oznámení zhuštěné na jediné oznámení pro každou položku. Pokud je toto povolené, budou zobrazována všechna oznámení." -#: src/Module/Settings/Account.php:640 +#: src/Module/Settings/Account.php:631 msgid "Show notifications of ignored contacts" msgstr "" -#: src/Module/Settings/Account.php:642 +#: src/Module/Settings/Account.php:633 msgid "" "You don't see posts from ignored contacts. But you still see their comments." " This setting controls if you want to still receive regular notifications " "that are caused by ignored contacts or not." msgstr "" -#: src/Module/Settings/Account.php:645 +#: src/Module/Settings/Account.php:636 msgid "Advanced Account/Page Type Settings" msgstr "Pokročilé nastavení účtu/stránky" -#: src/Module/Settings/Account.php:646 +#: src/Module/Settings/Account.php:637 msgid "Change the behaviour of this account for special situations" msgstr "Změnit chování tohoto účtu ve speciálních situacích" -#: src/Module/Settings/Account.php:649 +#: src/Module/Settings/Account.php:640 msgid "Import Contacts" msgstr "" -#: src/Module/Settings/Account.php:650 +#: src/Module/Settings/Account.php:641 msgid "" "Upload a CSV file that contains the handle of your followed accounts in the " "first column you exported from the old account." msgstr "" -#: src/Module/Settings/Account.php:651 +#: src/Module/Settings/Account.php:642 msgid "Upload File" msgstr "" -#: src/Module/Settings/Account.php:654 +#: src/Module/Settings/Account.php:645 msgid "Relocate" msgstr "Přemístit" -#: src/Module/Settings/Account.php:655 +#: src/Module/Settings/Account.php:646 msgid "" "If you have moved this profile from another server, and some of your " "contacts don't receive your updates, try pushing this button." msgstr "Pokud jste přemístil/a tento profil z jiného serveru a nějaký z vašich kontaktů nedostává vaše aktualizace, zkuste stisknout toto tlačítko." -#: src/Module/Settings/Account.php:656 +#: src/Module/Settings/Account.php:647 msgid "Resend relocate message to contacts" msgstr "Znovu odeslat správu o přemístění Vašim kontaktům" -#: src/Module/Settings/Addons.php:86 +#: src/Module/Settings/Addons.php:72 msgid "Addon Settings" msgstr "Nastavení doplňků" -#: src/Module/Settings/Addons.php:87 +#: src/Module/Settings/Addons.php:73 msgid "No Addon settings configured" msgstr "Žádná nastavení doplňků nenakonfigurována" -#: src/Module/Settings/Channels.php:148 +#: src/Module/Settings/Channels.php:134 msgid "" "This page can be used to define the channels that will automatically be " "reshared by your account." msgstr "" -#: src/Module/Settings/Channels.php:153 +#: src/Module/Settings/Channels.php:139 msgid "This page can be used to define your own channels." msgstr "" -#: src/Module/Settings/Channels.php:182 +#: src/Module/Settings/Channels.php:168 msgid "Publish" msgstr "" -#: src/Module/Settings/Channels.php:182 +#: src/Module/Settings/Channels.php:168 msgid "" "When selected, the channel results are reshared. This only works for public " "ActivityPub posts from the public timeline or the user defined circles." msgstr "" -#: src/Module/Settings/Channels.php:190 src/Module/Settings/Channels.php:211 -#: src/Module/Settings/Display.php:338 +#: src/Module/Settings/Channels.php:176 src/Module/Settings/Channels.php:197 +#: src/Module/Settings/Display.php:324 msgid "Label" msgstr "" -#: src/Module/Settings/Channels.php:191 src/Module/Settings/Channels.php:212 -#: src/Module/Settings/Display.php:339 -#: src/Module/Settings/TwoFactor/AppSpecific.php:137 +#: src/Module/Settings/Channels.php:177 src/Module/Settings/Channels.php:198 +#: src/Module/Settings/Display.php:325 +#: src/Module/Settings/TwoFactor/AppSpecific.php:123 msgid "Description" msgstr "" -#: src/Module/Settings/Channels.php:192 src/Module/Settings/Channels.php:213 +#: src/Module/Settings/Channels.php:178 src/Module/Settings/Channels.php:199 msgid "Access Key" msgstr "" -#: src/Module/Settings/Channels.php:193 src/Module/Settings/Channels.php:214 +#: src/Module/Settings/Channels.php:179 src/Module/Settings/Channels.php:200 msgid "Circle/Channel" msgstr "" -#: src/Module/Settings/Channels.php:194 src/Module/Settings/Channels.php:215 +#: src/Module/Settings/Channels.php:180 src/Module/Settings/Channels.php:201 msgid "Include Tags" msgstr "" -#: src/Module/Settings/Channels.php:195 src/Module/Settings/Channels.php:216 +#: src/Module/Settings/Channels.php:181 src/Module/Settings/Channels.php:202 msgid "Exclude Tags" msgstr "" -#: src/Module/Settings/Channels.php:196 src/Module/Settings/Channels.php:217 +#: src/Module/Settings/Channels.php:182 src/Module/Settings/Channels.php:203 msgid "Minimum Size" msgstr "" -#: src/Module/Settings/Channels.php:197 src/Module/Settings/Channels.php:218 +#: src/Module/Settings/Channels.php:183 src/Module/Settings/Channels.php:204 msgid "Maximum Size" msgstr "" -#: src/Module/Settings/Channels.php:198 src/Module/Settings/Channels.php:219 +#: src/Module/Settings/Channels.php:184 src/Module/Settings/Channels.php:205 msgid "Full Text Search" msgstr "" -#: src/Module/Settings/Channels.php:202 src/Module/Settings/Channels.php:223 +#: src/Module/Settings/Channels.php:188 src/Module/Settings/Channels.php:209 msgid "Select all languages that you want to see in this channel." msgstr "" -#: src/Module/Settings/Channels.php:204 +#: src/Module/Settings/Channels.php:190 msgid "Delete channel" msgstr "" -#: src/Module/Settings/Channels.php:204 +#: src/Module/Settings/Channels.php:190 msgid "Check to delete this entry from the channel list" msgstr "" -#: src/Module/Settings/Channels.php:211 +#: src/Module/Settings/Channels.php:197 msgid "Short name for the channel. It is displayed on the channels widget." msgstr "" -#: src/Module/Settings/Channels.php:212 +#: src/Module/Settings/Channels.php:198 msgid "This should describe the content of the channel in a few word." msgstr "" -#: src/Module/Settings/Channels.php:213 +#: src/Module/Settings/Channels.php:199 msgid "" "When you want to access this channel via an access key, you can define it " "here. Pay attention to not use an already used one." msgstr "" -#: src/Module/Settings/Channels.php:214 +#: src/Module/Settings/Channels.php:200 msgid "Select a circle or channel, that your channel should be based on." msgstr "" -#: src/Module/Settings/Channels.php:215 +#: src/Module/Settings/Channels.php:201 msgid "" "Comma separated list of tags. A post will be used when it contains any of " "the listed tags." msgstr "" -#: src/Module/Settings/Channels.php:216 +#: src/Module/Settings/Channels.php:202 msgid "" "Comma separated list of tags. If a post contain any of these tags, then it " "will not be part of nthis channel." msgstr "" -#: src/Module/Settings/Channels.php:217 +#: src/Module/Settings/Channels.php:203 msgid "" "Minimum post size. Leave empty for no minimum size. The size is calculated " "without links, attached posts, mentions or hashtags." msgstr "" -#: src/Module/Settings/Channels.php:218 +#: src/Module/Settings/Channels.php:204 msgid "" "Maximum post size. Leave empty for no maximum size. The size is calculated " "without links, attached posts, mentions or hashtags." msgstr "" -#: src/Module/Settings/Channels.php:219 +#: src/Module/Settings/Channels.php:205 #, php-format msgid "" "Search terms for the body, supports the \"boolean mode\" operators from " @@ -10449,576 +10443,589 @@ msgid "" "keywords: %s" msgstr "" -#: src/Module/Settings/Channels.php:220 +#: src/Module/Settings/Channels.php:206 msgid "Check to display images in the channel." msgstr "" -#: src/Module/Settings/Channels.php:221 +#: src/Module/Settings/Channels.php:207 msgid "Check to display videos in the channel." msgstr "" -#: src/Module/Settings/Channels.php:222 +#: src/Module/Settings/Channels.php:208 msgid "Check to display audio in the channel." msgstr "" -#: src/Module/Settings/Channels.php:227 +#: src/Module/Settings/Channels.php:213 msgid "Add new entry to the channel list" msgstr "" -#: src/Module/Settings/Channels.php:228 +#: src/Module/Settings/Channels.php:214 msgid "Add" msgstr "Přidat" -#: src/Module/Settings/Channels.php:230 +#: src/Module/Settings/Channels.php:216 msgid "Current Entries in the channel list" msgstr "" -#: src/Module/Settings/Channels.php:233 +#: src/Module/Settings/Channels.php:219 msgid "Delete entry from the channel list" msgstr "" -#: src/Module/Settings/Channels.php:234 +#: src/Module/Settings/Channels.php:220 msgid "Delete entry from the channel list?" msgstr "" -#: src/Module/Settings/Connectors.php:120 +#: src/Module/Settings/Connectors.php:108 msgid "Failed to connect with email account using the settings provided." msgstr "Nepodařilo se připojit k e-mailovému účtu pomocí dodaného nastavení." -#: src/Module/Settings/Connectors.php:166 -#: src/Module/Settings/Connectors.php:167 +#: src/Module/Settings/Connectors.php:155 +#: src/Module/Settings/Connectors.php:156 msgid "Diaspora (Socialhome, Hubzilla)" msgstr "Diaspora (Socialhome, Hubzilla)" -#: src/Module/Settings/Connectors.php:166 -#: src/Module/Settings/Connectors.php:170 +#: src/Module/Settings/Connectors.php:155 #, php-format msgid "Built-in support for %s connectivity is enabled" msgstr "" -#: src/Module/Settings/Connectors.php:167 -#: src/Module/Settings/Connectors.php:169 +#: src/Module/Settings/Connectors.php:156 #, php-format msgid "Built-in support for %s connectivity is disabled" msgstr "" -#: src/Module/Settings/Connectors.php:169 -#: src/Module/Settings/Connectors.php:170 -msgid "OStatus (GNU Social)" -msgstr "" - -#: src/Module/Settings/Connectors.php:182 +#: src/Module/Settings/Connectors.php:167 msgid "Email access is disabled on this site." msgstr "Přístup k e-mailu je na tomto serveru zakázán." -#: src/Module/Settings/Connectors.php:197 -#: src/Module/Settings/Connectors.php:244 +#: src/Module/Settings/Connectors.php:182 +#: src/Module/Settings/Connectors.php:233 msgid "None" msgstr "Žádné" -#: src/Module/Settings/Connectors.php:209 +#: src/Module/Settings/Connectors.php:186 +msgid "Default (Mastodon will display the title and a link to the post)" +msgstr "" + +#: src/Module/Settings/Connectors.php:187 +msgid "" +"Use the summary (Mastodon and some others will treat it as content warning)" +msgstr "" + +#: src/Module/Settings/Connectors.php:188 +msgid "Embed the title in the body" +msgstr "" + +#: src/Module/Settings/Connectors.php:199 msgid "General Social Media Settings" msgstr "Obecná nastavení sociálních sítí" -#: src/Module/Settings/Connectors.php:212 +#: src/Module/Settings/Connectors.php:202 msgid "Followed content scope" msgstr "" -#: src/Module/Settings/Connectors.php:214 +#: src/Module/Settings/Connectors.php:204 msgid "" "By default, conversations in which your follows participated but didn't " "start will be shown in your timeline. You can turn this behavior off, or " "expand it to the conversations in which your follows liked a post." msgstr "" -#: src/Module/Settings/Connectors.php:216 +#: src/Module/Settings/Connectors.php:206 msgid "Only conversations my follows started" msgstr "" -#: src/Module/Settings/Connectors.php:217 +#: src/Module/Settings/Connectors.php:207 msgid "Conversations my follows started or commented on (default)" msgstr "" -#: src/Module/Settings/Connectors.php:218 +#: src/Module/Settings/Connectors.php:208 msgid "Any conversation my follows interacted with, including likes" msgstr "" -#: src/Module/Settings/Connectors.php:221 +#: src/Module/Settings/Connectors.php:211 msgid "Collapse sensitive posts" msgstr "" -#: src/Module/Settings/Connectors.php:221 +#: src/Module/Settings/Connectors.php:211 msgid "" "If a post is marked as \"sensitive\", it will be displayed in a collapsed " "state, if this option is enabled." msgstr "" -#: src/Module/Settings/Connectors.php:222 +#: src/Module/Settings/Connectors.php:212 msgid "Enable intelligent shortening" msgstr "" -#: src/Module/Settings/Connectors.php:222 +#: src/Module/Settings/Connectors.php:212 msgid "" "Normally the system tries to find the best link to add to shortened posts. " "If disabled, every shortened post will always point to the original " "friendica post." msgstr "" -#: src/Module/Settings/Connectors.php:223 +#: src/Module/Settings/Connectors.php:213 msgid "Enable simple text shortening" msgstr "" -#: src/Module/Settings/Connectors.php:223 +#: src/Module/Settings/Connectors.php:213 msgid "" "Normally the system shortens posts at the next line feed. If this option is " "enabled then the system will shorten the text at the maximum character " "limit." msgstr "" -#: src/Module/Settings/Connectors.php:224 +#: src/Module/Settings/Connectors.php:214 msgid "Attach the link title" msgstr "" -#: src/Module/Settings/Connectors.php:224 +#: src/Module/Settings/Connectors.php:214 msgid "" "When activated, the title of the attached link will be added as a title on " "posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that" " share feed content." msgstr "" -#: src/Module/Settings/Connectors.php:225 +#: src/Module/Settings/Connectors.php:215 msgid "API: Use spoiler field as title" msgstr "" -#: src/Module/Settings/Connectors.php:225 +#: src/Module/Settings/Connectors.php:215 msgid "" "When activated, the \"spoiler_text\" field in the API will be used for the " "title on standalone posts. When deactivated it will be used for spoiler " "text. For comments it will always be used for spoiler text." msgstr "" -#: src/Module/Settings/Connectors.php:226 +#: src/Module/Settings/Connectors.php:216 msgid "API: Automatically links at the end of the post as attached posts" msgstr "" -#: src/Module/Settings/Connectors.php:226 +#: src/Module/Settings/Connectors.php:216 msgid "" "When activated, added links at the end of the post react the same way as " "added links in the web interface." msgstr "" -#: src/Module/Settings/Connectors.php:227 +#: src/Module/Settings/Connectors.php:217 +msgid "Article Mode" +msgstr "" + +#: src/Module/Settings/Connectors.php:217 +msgid "" +"Controls how posts with titles are transmitted. Mastodon and its forks don't" +" display the content of these posts if the post is created in the correct " +"(default) way." +msgstr "" + +#: src/Module/Settings/Connectors.php:218 msgid "Your legacy ActivityPub/GNU Social account" msgstr "" -#: src/Module/Settings/Connectors.php:227 +#: src/Module/Settings/Connectors.php:218 msgid "" "If you enter your old account name from an ActivityPub based system or your " "GNU Social/Statusnet account name here (in the format user@domain.tld), your" " contacts will be added automatically. The field will be emptied when done." msgstr "" -#: src/Module/Settings/Connectors.php:229 -msgid "Repair OStatus subscriptions" -msgstr "Opravit odběry z OStatus" - -#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Connectors.php:222 msgid "Email/Mailbox Setup" msgstr "Nastavení e-mailu" -#: src/Module/Settings/Connectors.php:234 +#: src/Module/Settings/Connectors.php:223 msgid "" "If you wish to communicate with email contacts using this service " "(optional), please specify how to connect to your mailbox." msgstr "Pokud chcete komunikovat pomocí této služby s vašimi kontakty z e-mailu (volitelné), uveďte, jak se připojit k Vaší e-mailové schránce." -#: src/Module/Settings/Connectors.php:235 +#: src/Module/Settings/Connectors.php:224 msgid "Last successful email check:" msgstr "Poslední úspěšná kontrola e-mailu:" -#: src/Module/Settings/Connectors.php:237 +#: src/Module/Settings/Connectors.php:226 msgid "IMAP server name:" msgstr "Jméno IMAP serveru:" -#: src/Module/Settings/Connectors.php:238 +#: src/Module/Settings/Connectors.php:227 msgid "IMAP port:" msgstr "IMAP port:" -#: src/Module/Settings/Connectors.php:239 +#: src/Module/Settings/Connectors.php:228 msgid "Security:" msgstr "Zabezpečení:" -#: src/Module/Settings/Connectors.php:240 +#: src/Module/Settings/Connectors.php:229 msgid "Email login name:" msgstr "Přihlašovací jméno k e-mailu:" -#: src/Module/Settings/Connectors.php:241 +#: src/Module/Settings/Connectors.php:230 msgid "Email password:" msgstr "Heslo k e-mailu:" -#: src/Module/Settings/Connectors.php:242 +#: src/Module/Settings/Connectors.php:231 msgid "Reply-to address:" msgstr "Odpovědět na adresu:" -#: src/Module/Settings/Connectors.php:243 +#: src/Module/Settings/Connectors.php:232 msgid "Send public posts to all email contacts:" msgstr "Poslat veřejné příspěvky na všechny e-mailové kontakty:" -#: src/Module/Settings/Connectors.php:244 +#: src/Module/Settings/Connectors.php:233 msgid "Action after import:" msgstr "Akce po importu:" -#: src/Module/Settings/Connectors.php:244 +#: src/Module/Settings/Connectors.php:233 msgid "Move to folder" msgstr "Přesunout do složky" -#: src/Module/Settings/Connectors.php:245 +#: src/Module/Settings/Connectors.php:234 msgid "Move to folder:" msgstr "Přesunout do složky:" -#: src/Module/Settings/Delegation.php:73 +#: src/Module/Settings/Delegation.php:59 msgid "Delegation successfully granted." msgstr "" -#: src/Module/Settings/Delegation.php:75 +#: src/Module/Settings/Delegation.php:61 msgid "Parent user not found, unavailable or password doesn't match." msgstr "" -#: src/Module/Settings/Delegation.php:79 +#: src/Module/Settings/Delegation.php:65 msgid "Delegation successfully revoked." msgstr "" -#: src/Module/Settings/Delegation.php:98 -#: src/Module/Settings/Delegation.php:120 +#: src/Module/Settings/Delegation.php:84 +#: src/Module/Settings/Delegation.php:106 msgid "" "Delegated administrators can view but not change delegation permissions." msgstr "" -#: src/Module/Settings/Delegation.php:112 +#: src/Module/Settings/Delegation.php:98 msgid "Delegate user not found." msgstr "" -#: src/Module/Settings/Delegation.php:169 +#: src/Module/Settings/Delegation.php:155 msgid "No parent user" msgstr "Žádný rodičovský uživatel" -#: src/Module/Settings/Delegation.php:180 -#: src/Module/Settings/Delegation.php:191 +#: src/Module/Settings/Delegation.php:166 +#: src/Module/Settings/Delegation.php:177 msgid "Parent User" msgstr "Rodičovský uživatel" -#: src/Module/Settings/Delegation.php:188 +#: src/Module/Settings/Delegation.php:174 msgid "Additional Accounts" msgstr "" -#: src/Module/Settings/Delegation.php:189 +#: src/Module/Settings/Delegation.php:175 msgid "" "Register additional accounts that are automatically connected to your " "existing account so you can manage them from this account." msgstr "" -#: src/Module/Settings/Delegation.php:190 +#: src/Module/Settings/Delegation.php:176 msgid "Register an additional account" msgstr "" -#: src/Module/Settings/Delegation.php:192 +#: src/Module/Settings/Delegation.php:178 msgid "" "Parent users have total control about this account, including the account " "settings. Please double check whom you give this access." msgstr "Rodičovští uživatelé mají naprostou kontrolu nad tímto účtem, včetně nastavení účtu. Prosím překontrolujte, komu tento přístup dáváte." -#: src/Module/Settings/Delegation.php:195 +#: src/Module/Settings/Delegation.php:181 msgid "Delegates" msgstr "Delegáti" -#: src/Module/Settings/Delegation.php:196 +#: src/Module/Settings/Delegation.php:182 msgid "" "Delegates are able to manage all aspects of this account/page except for " "basic account settings. Please do not delegate your personal account to " "anybody that you do not trust completely." msgstr "Delegáti jsou schopni řídit všechny aspekty tohoto účtu/stránky, kromě základních nastavení účtu. Prosím, nedelegujte svůj osobní účet nikomu, komu zcela nedůvěřujete." -#: src/Module/Settings/Delegation.php:197 +#: src/Module/Settings/Delegation.php:183 msgid "Existing Page Delegates" msgstr "Stávající delegáti stránky " -#: src/Module/Settings/Delegation.php:198 +#: src/Module/Settings/Delegation.php:184 msgid "Potential Delegates" msgstr "Potenciální delegáti" -#: src/Module/Settings/Delegation.php:199 +#: src/Module/Settings/Delegation.php:185 msgid "No entries." msgstr "Žádné záznamy." -#: src/Module/Settings/Display.php:183 +#: src/Module/Settings/Display.php:169 msgid "The theme you chose isn't available." msgstr "Motiv, který jste si vybral/a, není dostupný." -#: src/Module/Settings/Display.php:223 +#: src/Module/Settings/Display.php:209 #, php-format msgid "%s - (Unsupported)" msgstr "%s - (Nepodporováno)" -#: src/Module/Settings/Display.php:260 +#: src/Module/Settings/Display.php:246 msgid "No preview" msgstr "" -#: src/Module/Settings/Display.php:261 +#: src/Module/Settings/Display.php:247 msgid "No image" msgstr "" -#: src/Module/Settings/Display.php:262 +#: src/Module/Settings/Display.php:248 msgid "Small Image" msgstr "" -#: src/Module/Settings/Display.php:263 +#: src/Module/Settings/Display.php:249 msgid "Large Image" msgstr "" -#: src/Module/Settings/Display.php:308 +#: src/Module/Settings/Display.php:294 msgid "Display Settings" msgstr "Nastavení zobrazení" -#: src/Module/Settings/Display.php:310 +#: src/Module/Settings/Display.php:296 msgid "General Theme Settings" msgstr "Obecná nastavení motivu" -#: src/Module/Settings/Display.php:311 +#: src/Module/Settings/Display.php:297 msgid "Custom Theme Settings" msgstr "Vlastní nastavení motivu" -#: src/Module/Settings/Display.php:312 +#: src/Module/Settings/Display.php:298 msgid "Content Settings" msgstr "Nastavení obsahu" -#: src/Module/Settings/Display.php:313 view/theme/duepuntozero/config.php:86 -#: view/theme/frio/config.php:151 view/theme/quattro/config.php:88 -#: view/theme/vier/config.php:136 +#: src/Module/Settings/Display.php:299 view/theme/duepuntozero/config.php:74 +#: view/theme/frio/config.php:139 view/theme/quattro/config.php:76 +#: view/theme/vier/config.php:124 msgid "Theme settings" msgstr "Nastavení motivu" -#: src/Module/Settings/Display.php:314 +#: src/Module/Settings/Display.php:300 msgid "Timelines" msgstr "" -#: src/Module/Settings/Display.php:321 +#: src/Module/Settings/Display.php:307 msgid "Display Theme:" msgstr "Motiv zobrazení:" -#: src/Module/Settings/Display.php:322 +#: src/Module/Settings/Display.php:308 msgid "Mobile Theme:" msgstr "Mobilní motiv:" -#: src/Module/Settings/Display.php:325 +#: src/Module/Settings/Display.php:311 msgid "Number of items to display per page:" msgstr "Počet položek zobrazených na stránce:" -#: src/Module/Settings/Display.php:325 src/Module/Settings/Display.php:326 +#: src/Module/Settings/Display.php:311 src/Module/Settings/Display.php:312 msgid "Maximum of 100 items" msgstr "Maximum 100 položek" -#: src/Module/Settings/Display.php:326 +#: src/Module/Settings/Display.php:312 msgid "Number of items to display per page when viewed from mobile device:" msgstr "Počet položek ke zobrazení na stránce při zobrazení na mobilním zařízení:" -#: src/Module/Settings/Display.php:327 +#: src/Module/Settings/Display.php:313 msgid "Update browser every xx seconds" msgstr "Aktualizovat prohlížeč každých xx sekund" -#: src/Module/Settings/Display.php:327 +#: src/Module/Settings/Display.php:313 msgid "Minimum of 10 seconds. Enter -1 to disable it." msgstr "Minimum je 10 sekund. Zadáním hodnoty -1 funkci vypnete." -#: src/Module/Settings/Display.php:328 +#: src/Module/Settings/Display.php:314 msgid "Display emoticons" msgstr "" -#: src/Module/Settings/Display.php:328 +#: src/Module/Settings/Display.php:314 msgid "When enabled, emoticons are replaced with matching symbols." msgstr "" -#: src/Module/Settings/Display.php:329 +#: src/Module/Settings/Display.php:315 msgid "Infinite scroll" msgstr "Nekonečné posouvání" -#: src/Module/Settings/Display.php:329 +#: src/Module/Settings/Display.php:315 msgid "Automatic fetch new items when reaching the page end." msgstr "" -#: src/Module/Settings/Display.php:330 +#: src/Module/Settings/Display.php:316 msgid "Enable Smart Threading" msgstr "" -#: src/Module/Settings/Display.php:330 +#: src/Module/Settings/Display.php:316 msgid "Enable the automatic suppression of extraneous thread indentation." msgstr "" -#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/Display.php:317 msgid "Display the Dislike feature" msgstr "" -#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/Display.php:317 msgid "" "Display the Dislike button and dislike reactions on posts and comments." msgstr "" -#: src/Module/Settings/Display.php:332 +#: src/Module/Settings/Display.php:318 msgid "Display the resharer" msgstr "" -#: src/Module/Settings/Display.php:332 +#: src/Module/Settings/Display.php:318 msgid "Display the first resharer as icon and text on a reshared item." msgstr "" -#: src/Module/Settings/Display.php:333 +#: src/Module/Settings/Display.php:319 msgid "Stay local" msgstr "" -#: src/Module/Settings/Display.php:333 +#: src/Module/Settings/Display.php:319 msgid "Don't go to a remote system when following a contact link." msgstr "" -#: src/Module/Settings/Display.php:334 +#: src/Module/Settings/Display.php:320 msgid "Show the post deletion checkbox" msgstr "" -#: src/Module/Settings/Display.php:334 +#: src/Module/Settings/Display.php:320 msgid "Display the checkbox for the post deletion on the network page." msgstr "" -#: src/Module/Settings/Display.php:335 +#: src/Module/Settings/Display.php:321 msgid "DIsplay the event list" msgstr "" -#: src/Module/Settings/Display.php:335 +#: src/Module/Settings/Display.php:321 msgid "Display the birthday reminder and event list on the network page." msgstr "" -#: src/Module/Settings/Display.php:336 +#: src/Module/Settings/Display.php:322 msgid "Link preview mode" msgstr "" -#: src/Module/Settings/Display.php:336 +#: src/Module/Settings/Display.php:322 msgid "Appearance of the link preview that is added to each post with a link." msgstr "" -#: src/Module/Settings/Display.php:341 +#: src/Module/Settings/Display.php:327 msgid "Bookmark" msgstr "" -#: src/Module/Settings/Display.php:343 +#: src/Module/Settings/Display.php:329 msgid "" "Enable timelines that you want to see in the channels widget. Bookmark " "timelines that you want to see in the top menu." msgstr "" -#: src/Module/Settings/Display.php:345 +#: src/Module/Settings/Display.php:331 msgid "Channel languages:" msgstr "" -#: src/Module/Settings/Display.php:345 +#: src/Module/Settings/Display.php:331 msgid "Select all languages that you want to see in your channels." msgstr "" -#: src/Module/Settings/Display.php:347 +#: src/Module/Settings/Display.php:333 msgid "Beginning of week:" msgstr "Začátek týdne:" -#: src/Module/Settings/Display.php:348 +#: src/Module/Settings/Display.php:334 msgid "Default calendar view:" msgstr "" -#: src/Module/Settings/Features.php:73 +#: src/Module/Settings/Features.php:59 msgid "Additional Features" msgstr "Dodatečné vlastnosti" -#: src/Module/Settings/OAuth.php:71 +#: src/Module/Settings/OAuth.php:57 msgid "Connected Apps" msgstr "Připojené aplikace" -#: src/Module/Settings/OAuth.php:75 +#: src/Module/Settings/OAuth.php:61 msgid "Remove authorization" msgstr "Odstranit oprávnění" -#: src/Module/Settings/Profile/Index.php:116 +#: src/Module/Settings/Profile/Index.php:102 msgid "Display Name is required." msgstr "" -#: src/Module/Settings/Profile/Index.php:167 +#: src/Module/Settings/Profile/Index.php:156 msgid "Profile couldn't be updated." msgstr "" -#: src/Module/Settings/Profile/Index.php:205 -#: src/Module/Settings/Profile/Index.php:226 +#: src/Module/Settings/Profile/Index.php:196 +#: src/Module/Settings/Profile/Index.php:217 msgid "Label:" msgstr "" -#: src/Module/Settings/Profile/Index.php:206 -#: src/Module/Settings/Profile/Index.php:227 +#: src/Module/Settings/Profile/Index.php:197 +#: src/Module/Settings/Profile/Index.php:218 msgid "Value:" msgstr "" -#: src/Module/Settings/Profile/Index.php:217 -#: src/Module/Settings/Profile/Index.php:238 +#: src/Module/Settings/Profile/Index.php:208 +#: src/Module/Settings/Profile/Index.php:229 msgid "Field Permissions" msgstr "" -#: src/Module/Settings/Profile/Index.php:218 -#: src/Module/Settings/Profile/Index.php:239 +#: src/Module/Settings/Profile/Index.php:209 +#: src/Module/Settings/Profile/Index.php:230 msgid "(click to open/close)" msgstr "(klikněte pro otevření/zavření)" -#: src/Module/Settings/Profile/Index.php:224 +#: src/Module/Settings/Profile/Index.php:215 msgid "Add a new profile field" msgstr "" -#: src/Module/Settings/Profile/Index.php:247 +#: src/Module/Settings/Profile/Index.php:238 msgid "" "The homepage is verified. A rel=\"me\" link back to your Friendica profile " "page was found on the homepage." msgstr "" -#: src/Module/Settings/Profile/Index.php:249 +#: src/Module/Settings/Profile/Index.php:240 #, php-format msgid "" "To verify your homepage, add a rel=\"me\" link to it, pointing to your " "profile URL (%s)." msgstr "" -#: src/Module/Settings/Profile/Index.php:255 +#: src/Module/Settings/Profile/Index.php:246 msgid "Profile Actions" msgstr "Akce profilu" -#: src/Module/Settings/Profile/Index.php:256 +#: src/Module/Settings/Profile/Index.php:247 msgid "Edit Profile Details" msgstr "Upravit podrobnosti profilu " -#: src/Module/Settings/Profile/Index.php:258 +#: src/Module/Settings/Profile/Index.php:249 msgid "Change Profile Photo" msgstr "Změnit profilovou fotku" -#: src/Module/Settings/Profile/Index.php:261 +#: src/Module/Settings/Profile/Index.php:252 msgid "Profile picture" msgstr "Profilový obrázek" -#: src/Module/Settings/Profile/Index.php:262 +#: src/Module/Settings/Profile/Index.php:253 msgid "Location" msgstr "Poloha" -#: src/Module/Settings/Profile/Index.php:263 src/Util/Temporal.php:97 -#: src/Util/Temporal.php:99 +#: src/Module/Settings/Profile/Index.php:254 src/Util/Temporal.php:83 +#: src/Util/Temporal.php:85 msgid "Miscellaneous" msgstr "Různé" -#: src/Module/Settings/Profile/Index.php:264 +#: src/Module/Settings/Profile/Index.php:255 msgid "Custom Profile Fields" msgstr "" -#: src/Module/Settings/Profile/Index.php:265 src/Module/Welcome.php:58 +#: src/Module/Settings/Profile/Index.php:256 src/Module/Welcome.php:44 msgid "Upload Profile Photo" msgstr "Nahrát profilovou fotku" -#: src/Module/Settings/Profile/Index.php:266 +#: src/Module/Settings/Profile/Index.php:257 #, php-format msgid "" "Custom fields appear on your profile page.
\n" @@ -11028,396 +11035,396 @@ msgid "" "\t\t\t\tNon-public fields can only be seen by the selected Friendica contacts or the Friendica contacts in the selected circles.
" msgstr "" -#: src/Module/Settings/Profile/Index.php:286 +#: src/Module/Settings/Profile/Index.php:277 msgid "Street Address:" msgstr "Ulice:" -#: src/Module/Settings/Profile/Index.php:287 +#: src/Module/Settings/Profile/Index.php:278 msgid "Locality/City:" msgstr "Poloha/město:" -#: src/Module/Settings/Profile/Index.php:288 +#: src/Module/Settings/Profile/Index.php:279 msgid "Region/State:" msgstr "Region / stát:" -#: src/Module/Settings/Profile/Index.php:289 +#: src/Module/Settings/Profile/Index.php:280 msgid "Postal/Zip Code:" msgstr "PSČ:" -#: src/Module/Settings/Profile/Index.php:290 +#: src/Module/Settings/Profile/Index.php:281 msgid "Country:" msgstr "Země:" -#: src/Module/Settings/Profile/Index.php:292 +#: src/Module/Settings/Profile/Index.php:283 msgid "XMPP (Jabber) address:" msgstr "Adresa XMPP (Jabber):" -#: src/Module/Settings/Profile/Index.php:292 +#: src/Module/Settings/Profile/Index.php:283 msgid "" "The XMPP address will be published so that people can follow you there." msgstr "" -#: src/Module/Settings/Profile/Index.php:293 +#: src/Module/Settings/Profile/Index.php:284 msgid "Matrix (Element) address:" msgstr "" -#: src/Module/Settings/Profile/Index.php:293 +#: src/Module/Settings/Profile/Index.php:284 msgid "" "The Matrix address will be published so that people can follow you there." msgstr "" -#: src/Module/Settings/Profile/Index.php:294 +#: src/Module/Settings/Profile/Index.php:285 msgid "Homepage URL:" msgstr "Odkaz na domovskou stránku:" -#: src/Module/Settings/Profile/Index.php:295 +#: src/Module/Settings/Profile/Index.php:286 msgid "Public Keywords:" msgstr "Veřejná klíčová slova:" -#: src/Module/Settings/Profile/Index.php:295 +#: src/Module/Settings/Profile/Index.php:286 msgid "(Used for suggesting potential friends, can be seen by others)" msgstr "(Používá se pro doporučování potenciálních přátel, může být viděno ostatními)" -#: src/Module/Settings/Profile/Index.php:296 +#: src/Module/Settings/Profile/Index.php:287 msgid "Private Keywords:" msgstr "Soukromá klíčová slova:" -#: src/Module/Settings/Profile/Index.php:296 +#: src/Module/Settings/Profile/Index.php:287 msgid "(Used for searching profiles, never shown to others)" msgstr "(Používá se pro vyhledávání profilů, není nikdy zobrazeno ostatním)" -#: src/Module/Settings/Profile/Photo/Crop.php:107 -#: src/Module/Settings/Profile/Photo/Crop.php:125 -#: src/Module/Settings/Profile/Photo/Crop.php:143 -#: src/Module/Settings/Profile/Photo/Index.php:100 +#: src/Module/Settings/Profile/Photo/Crop.php:93 +#: src/Module/Settings/Profile/Photo/Crop.php:111 +#: src/Module/Settings/Profile/Photo/Crop.php:129 +#: src/Module/Settings/Profile/Photo/Index.php:86 #, php-format msgid "Image size reduction [%s] failed." msgstr "Nepodařilo se snížit velikost obrázku [%s]." -#: src/Module/Settings/Profile/Photo/Crop.php:150 +#: src/Module/Settings/Profile/Photo/Crop.php:136 msgid "" "Shift-reload the page or clear browser cache if the new photo does not " "display immediately." msgstr "Znovu načtěte stránku (Shift+F5) nebo vymažte cache prohlížeče, pokud se nová fotka nezobrazí okamžitě." -#: src/Module/Settings/Profile/Photo/Crop.php:155 +#: src/Module/Settings/Profile/Photo/Crop.php:141 msgid "Unable to process image" msgstr "Obrázek nelze zpracovat " -#: src/Module/Settings/Profile/Photo/Crop.php:174 +#: src/Module/Settings/Profile/Photo/Crop.php:160 msgid "Photo not found." msgstr "" -#: src/Module/Settings/Profile/Photo/Crop.php:196 +#: src/Module/Settings/Profile/Photo/Crop.php:182 msgid "Profile picture successfully updated." msgstr "" -#: src/Module/Settings/Profile/Photo/Crop.php:222 -#: src/Module/Settings/Profile/Photo/Crop.php:226 +#: src/Module/Settings/Profile/Photo/Crop.php:208 +#: src/Module/Settings/Profile/Photo/Crop.php:212 msgid "Crop Image" msgstr "Oříznout obrázek" -#: src/Module/Settings/Profile/Photo/Crop.php:223 +#: src/Module/Settings/Profile/Photo/Crop.php:209 msgid "Please adjust the image cropping for optimum viewing." msgstr "Prosím, ořízněte tento obrázek pro optimální zobrazení." -#: src/Module/Settings/Profile/Photo/Crop.php:225 +#: src/Module/Settings/Profile/Photo/Crop.php:211 msgid "Use Image As Is" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:46 +#: src/Module/Settings/Profile/Photo/Index.php:32 msgid "Missing uploaded image." msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:123 +#: src/Module/Settings/Profile/Photo/Index.php:109 msgid "Profile Picture Settings" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:124 +#: src/Module/Settings/Profile/Photo/Index.php:110 msgid "Current Profile Picture" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:125 +#: src/Module/Settings/Profile/Photo/Index.php:111 msgid "Upload Profile Picture" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:126 +#: src/Module/Settings/Profile/Photo/Index.php:112 msgid "Upload Picture:" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:131 +#: src/Module/Settings/Profile/Photo/Index.php:117 msgid "or" msgstr "nebo" -#: src/Module/Settings/Profile/Photo/Index.php:133 +#: src/Module/Settings/Profile/Photo/Index.php:119 msgid "skip this step" msgstr "tento krok přeskočte" -#: src/Module/Settings/Profile/Photo/Index.php:135 +#: src/Module/Settings/Profile/Photo/Index.php:121 msgid "select a photo from your photo albums" msgstr "si vyberte fotku z vašich fotoalb" -#: src/Module/Settings/RemoveMe.php:76 +#: src/Module/Settings/RemoveMe.php:62 msgid "" "There was a validation error, please make sure you're logged in with the " "account you want to remove and try again." msgstr "" -#: src/Module/Settings/RemoveMe.php:76 +#: src/Module/Settings/RemoveMe.php:62 msgid "If this error persists, please contact your administrator." msgstr "" -#: src/Module/Settings/RemoveMe.php:90 -#: src/Navigation/Notifications/Repository/Notify.php:471 -#: src/Navigation/Notifications/Repository/Notify.php:492 +#: src/Module/Settings/RemoveMe.php:76 +#: src/Navigation/Notifications/Repository/Notify.php:457 +#: src/Navigation/Notifications/Repository/Notify.php:478 msgid "[Friendica System Notify]" msgstr "[Systémové oznámení Friendica]" -#: src/Module/Settings/RemoveMe.php:90 +#: src/Module/Settings/RemoveMe.php:76 msgid "User deleted their account" msgstr "Uživatel si smazal účet" -#: src/Module/Settings/RemoveMe.php:91 +#: src/Module/Settings/RemoveMe.php:77 msgid "" "On your Friendica node an user deleted their account. Please ensure that " "their data is removed from the backups." msgstr "Uživatel na vašem serveru Friendica smazal svůj účet. Prosím ujistěte se, ře jsou jeho data odstraněna ze záloh dat." -#: src/Module/Settings/RemoveMe.php:92 +#: src/Module/Settings/RemoveMe.php:78 #, php-format msgid "The user id is %d" msgstr "Uživatelské ID je %d" -#: src/Module/Settings/RemoveMe.php:105 +#: src/Module/Settings/RemoveMe.php:91 msgid "Your account has been successfully removed. Bye bye!" msgstr "" -#: src/Module/Settings/RemoveMe.php:130 +#: src/Module/Settings/RemoveMe.php:116 msgid "Remove My Account" msgstr "Odstranit můj účet" -#: src/Module/Settings/RemoveMe.php:131 +#: src/Module/Settings/RemoveMe.php:117 msgid "" "This will completely remove your account. Once this has been done it is not " "recoverable." msgstr "Tímto bude kompletně odstraněn váš účet. Jakmile bude účet odstraněn, nebude už možné ho obnovit." -#: src/Module/Settings/RemoveMe.php:136 +#: src/Module/Settings/RemoveMe.php:122 msgid "Please enter your password for verification:" msgstr "Prosím, zadejte své heslo pro ověření:" -#: src/Module/Settings/Server/Action.php:60 +#: src/Module/Settings/Server/Action.php:46 msgid "Do you want to ignore this server?" msgstr "" -#: src/Module/Settings/Server/Action.php:64 +#: src/Module/Settings/Server/Action.php:50 msgid "Do you want to unignore this server?" msgstr "" -#: src/Module/Settings/Server/Action.php:74 -#: src/Module/Settings/Server/Index.php:104 +#: src/Module/Settings/Server/Action.php:60 +#: src/Module/Settings/Server/Index.php:90 msgid "Remote server settings" msgstr "" -#: src/Module/Settings/Server/Action.php:77 +#: src/Module/Settings/Server/Action.php:63 msgid "Server URL" msgstr "" -#: src/Module/Settings/Server/Index.php:78 +#: src/Module/Settings/Server/Index.php:64 msgid "Settings saved" msgstr "" -#: src/Module/Settings/Server/Index.php:105 +#: src/Module/Settings/Server/Index.php:91 msgid "" "Here you can find all the remote servers you have taken individual " "moderation actions against. For a list of servers your node has blocked, " "please check out the Information page." msgstr "" -#: src/Module/Settings/Server/Index.php:110 +#: src/Module/Settings/Server/Index.php:96 msgid "Delete all your settings for the remote server" msgstr "" -#: src/Module/Settings/Server/Index.php:111 +#: src/Module/Settings/Server/Index.php:97 msgid "Save changes" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:69 -#: src/Module/Settings/TwoFactor/Recovery.php:67 -#: src/Module/Settings/TwoFactor/Trusted.php:70 -#: src/Module/Settings/TwoFactor/Verify.php:72 +#: src/Module/Settings/TwoFactor/AppSpecific.php:55 +#: src/Module/Settings/TwoFactor/Recovery.php:53 +#: src/Module/Settings/TwoFactor/Trusted.php:56 +#: src/Module/Settings/TwoFactor/Verify.php:58 msgid "Please enter your password to access this page." msgstr "Pro přístup k této stránce prosím zadejte své heslo." -#: src/Module/Settings/TwoFactor/AppSpecific.php:87 +#: src/Module/Settings/TwoFactor/AppSpecific.php:73 msgid "App-specific password generation failed: The description is empty." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:90 +#: src/Module/Settings/TwoFactor/AppSpecific.php:76 msgid "" "App-specific password generation failed: This description already exists." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:94 +#: src/Module/Settings/TwoFactor/AppSpecific.php:80 msgid "New app-specific password generated." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:100 +#: src/Module/Settings/TwoFactor/AppSpecific.php:86 msgid "App-specific passwords successfully revoked." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:110 +#: src/Module/Settings/TwoFactor/AppSpecific.php:96 msgid "App-specific password successfully revoked." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:131 +#: src/Module/Settings/TwoFactor/AppSpecific.php:117 msgid "Two-factor app-specific passwords" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:133 +#: src/Module/Settings/TwoFactor/AppSpecific.php:119 msgid "" "App-specific passwords are randomly generated passwords used instead your" " regular password to authenticate your account on third-party applications " "that don't support two-factor authentication.
" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:134 +#: src/Module/Settings/TwoFactor/AppSpecific.php:120 msgid "" "Make sure to copy your new app-specific password now. You won’t be able to " "see it again!" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:138 +#: src/Module/Settings/TwoFactor/AppSpecific.php:124 msgid "Last Used" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:139 +#: src/Module/Settings/TwoFactor/AppSpecific.php:125 msgid "Revoke" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:140 +#: src/Module/Settings/TwoFactor/AppSpecific.php:126 msgid "Revoke All" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:143 +#: src/Module/Settings/TwoFactor/AppSpecific.php:129 msgid "" "When you generate a new app-specific password, you must use it right away, " "it will be shown to you once after you generate it." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:144 +#: src/Module/Settings/TwoFactor/AppSpecific.php:130 msgid "Generate new app-specific password" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:145 +#: src/Module/Settings/TwoFactor/AppSpecific.php:131 msgid "Friendiqa on my Fairphone 2..." msgstr "Friendiqa na mém Fairphone 2..." -#: src/Module/Settings/TwoFactor/AppSpecific.php:146 +#: src/Module/Settings/TwoFactor/AppSpecific.php:132 msgid "Generate" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:88 +#: src/Module/Settings/TwoFactor/Index.php:74 msgid "Two-factor authentication successfully disabled." msgstr "Dvoufázové ověřování úspěšně zakázáno." -#: src/Module/Settings/TwoFactor/Index.php:141 +#: src/Module/Settings/TwoFactor/Index.php:127 msgid "" "Use an application on a mobile device to get two-factor authentication " "codes when prompted on login.
" msgstr "Pomocí aplikace na mobilním zařízení získejte při přihlášení kódy pro dvoufázové ověřování.
" -#: src/Module/Settings/TwoFactor/Index.php:145 +#: src/Module/Settings/TwoFactor/Index.php:131 msgid "Authenticator app" msgstr "Autentizační aplikace" -#: src/Module/Settings/TwoFactor/Index.php:146 +#: src/Module/Settings/TwoFactor/Index.php:132 msgid "Configured" msgstr "Nakonfigurováno" -#: src/Module/Settings/TwoFactor/Index.php:146 +#: src/Module/Settings/TwoFactor/Index.php:132 msgid "Not Configured" msgstr "Nenakonfigurováno" -#: src/Module/Settings/TwoFactor/Index.php:147 +#: src/Module/Settings/TwoFactor/Index.php:133 msgid "You haven't finished configuring your authenticator app.
" msgstr "Nedokončil/a jste konfiguraci vaší autentizační aplikace.
" -#: src/Module/Settings/TwoFactor/Index.php:148 +#: src/Module/Settings/TwoFactor/Index.php:134 msgid "Your authenticator app is correctly configured.
" msgstr "Vaše autentizační aplikace je správně nakonfigurována.
" -#: src/Module/Settings/TwoFactor/Index.php:150 +#: src/Module/Settings/TwoFactor/Index.php:136 msgid "Recovery codes" msgstr "Záložní kódy" -#: src/Module/Settings/TwoFactor/Index.php:151 +#: src/Module/Settings/TwoFactor/Index.php:137 msgid "Remaining valid codes" msgstr "Zbývající platné kódy" -#: src/Module/Settings/TwoFactor/Index.php:153 +#: src/Module/Settings/TwoFactor/Index.php:139 msgid "" "These one-use codes can replace an authenticator app code in case you " "have lost access to it.
" msgstr "Tyto jednorázové kódy mohou nahradit kód autentizační aplikace, pokud k ní ztratíte přístup.
" -#: src/Module/Settings/TwoFactor/Index.php:155 +#: src/Module/Settings/TwoFactor/Index.php:141 msgid "App-specific passwords" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:156 +#: src/Module/Settings/TwoFactor/Index.php:142 msgid "Generated app-specific passwords" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:158 +#: src/Module/Settings/TwoFactor/Index.php:144 msgid "" "These randomly generated passwords allow you to authenticate on apps not " "supporting two-factor authentication.
" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:161 +#: src/Module/Settings/TwoFactor/Index.php:147 msgid "Current password:" msgstr "Aktuální heslo:" -#: src/Module/Settings/TwoFactor/Index.php:161 +#: src/Module/Settings/TwoFactor/Index.php:147 msgid "" "You need to provide your current password to change two-factor " "authentication settings." msgstr "Pro změnu nastavení dvoufázového ověřování musíte poskytnout vaše aktuální heslo." -#: src/Module/Settings/TwoFactor/Index.php:162 +#: src/Module/Settings/TwoFactor/Index.php:148 msgid "Enable two-factor authentication" msgstr "Povolit dvoufázové ověřování" -#: src/Module/Settings/TwoFactor/Index.php:163 +#: src/Module/Settings/TwoFactor/Index.php:149 msgid "Disable two-factor authentication" msgstr "Zakázat dvoufázové ověřování" -#: src/Module/Settings/TwoFactor/Index.php:164 +#: src/Module/Settings/TwoFactor/Index.php:150 msgid "Show recovery codes" msgstr "Zobrazit záložní kódy" -#: src/Module/Settings/TwoFactor/Index.php:165 +#: src/Module/Settings/TwoFactor/Index.php:151 msgid "Manage app-specific passwords" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:166 +#: src/Module/Settings/TwoFactor/Index.php:152 msgid "Manage trusted browsers" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:167 +#: src/Module/Settings/TwoFactor/Index.php:153 msgid "Finish app configuration" msgstr "Dokončit konfiguraci aplikace" -#: src/Module/Settings/TwoFactor/Recovery.php:83 +#: src/Module/Settings/TwoFactor/Recovery.php:69 msgid "New recovery codes successfully generated." msgstr "Nové záložní kódy byly úspěšně vygenerovány." -#: src/Module/Settings/TwoFactor/Recovery.php:109 +#: src/Module/Settings/TwoFactor/Recovery.php:95 msgid "Two-factor recovery codes" msgstr "Dvoufázové záložní kódy" -#: src/Module/Settings/TwoFactor/Recovery.php:111 +#: src/Module/Settings/TwoFactor/Recovery.php:97 msgid "" "Recovery codes can be used to access your account in the event you lose " "access to your device and cannot receive two-factor authentication " @@ -11426,68 +11433,68 @@ msgid "" "account.
" msgstr "Záložní kódy mohou být použity pro přístup k vašemu účtu, pokud ztratíte přístup k vašemu zařízení a nemůžete obdržet dvoufázové autentizační kódy.
Uložte je na bezpečné místo! Pokud zratíte vaše zařízení a nemáte Záložní kódy, ztratíte přístup ke svému účtu.
" -#: src/Module/Settings/TwoFactor/Recovery.php:113 +#: src/Module/Settings/TwoFactor/Recovery.php:99 msgid "" "When you generate new recovery codes, you must copy the new codes. Your old " "codes won’t work anymore." msgstr "Když vygenerujete nové záložní kódy, musíte si zkopírovat nové kódy. Vaše staré kódy již nebudou fungovat." -#: src/Module/Settings/TwoFactor/Recovery.php:114 +#: src/Module/Settings/TwoFactor/Recovery.php:100 msgid "Generate new recovery codes" msgstr "Vygenerovat nové záložní kódy" -#: src/Module/Settings/TwoFactor/Recovery.php:116 +#: src/Module/Settings/TwoFactor/Recovery.php:102 msgid "Next: Verification" msgstr "Další: Ověření" -#: src/Module/Settings/TwoFactor/Trusted.php:87 +#: src/Module/Settings/TwoFactor/Trusted.php:73 msgid "Trusted browsers successfully removed." msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:97 +#: src/Module/Settings/TwoFactor/Trusted.php:83 msgid "Trusted browser successfully removed." msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:139 +#: src/Module/Settings/TwoFactor/Trusted.php:125 msgid "Two-factor Trusted Browsers" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:140 +#: src/Module/Settings/TwoFactor/Trusted.php:126 msgid "" "Trusted browsers are individual browsers you chose to skip two-factor " "authentication to access Friendica. Please use this feature sparingly, as it" " can negate the benefit of two-factor authentication." msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:141 +#: src/Module/Settings/TwoFactor/Trusted.php:127 msgid "Device" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:142 +#: src/Module/Settings/TwoFactor/Trusted.php:128 msgid "OS" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:144 +#: src/Module/Settings/TwoFactor/Trusted.php:130 msgid "Trusted" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:145 +#: src/Module/Settings/TwoFactor/Trusted.php:131 msgid "Created At" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:146 +#: src/Module/Settings/TwoFactor/Trusted.php:132 msgid "Last Use" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:148 +#: src/Module/Settings/TwoFactor/Trusted.php:134 msgid "Remove All" msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:94 +#: src/Module/Settings/TwoFactor/Verify.php:80 msgid "Two-factor authentication successfully activated." msgstr "Dvoufázové ověření úspěšně aktivováno." -#: src/Module/Settings/TwoFactor/Verify.php:128 +#: src/Module/Settings/TwoFactor/Verify.php:114 #, php-format msgid "" "Or you can submit the authentication settings manually:
\n" @@ -11507,105 +11514,105 @@ msgid "" "" msgstr "Nebo můžete zadat autentizační nastavení manuálně:
\nPlease scan this QR Code with your authenticator app and submit the " "provided code.
" msgstr "Prosím naskenujte tento QR kód vaší autentizační aplikací a zadejte poskytnutý kód.
" -#: src/Module/Settings/TwoFactor/Verify.php:152 +#: src/Module/Settings/TwoFactor/Verify.php:138 #, php-format msgid "" "Or you can open the following URL in your mobile device:
" msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:159 +#: src/Module/Settings/TwoFactor/Verify.php:145 msgid "Verify code and enable two-factor authentication" msgstr "Ověřit kód a povolit dvoufázové ověřování" -#: src/Module/Settings/UserExport.php:90 +#: src/Module/Settings/UserExport.php:76 msgid "Export account" msgstr "Exportovat účet" -#: src/Module/Settings/UserExport.php:90 +#: src/Module/Settings/UserExport.php:76 msgid "" "Export your account info and contacts. Use this to make a backup of your " "account and/or to move it to another server." msgstr "Exportujte svůj účet a své kontakty. Použijte tuto funkci pro vytvoření zálohy svého účtu a/nebo k přesunu na jiný server." -#: src/Module/Settings/UserExport.php:91 +#: src/Module/Settings/UserExport.php:77 msgid "Export all" msgstr "Exportovat vše" -#: src/Module/Settings/UserExport.php:91 +#: src/Module/Settings/UserExport.php:77 msgid "" "Export your account info, contacts and all your items as json. Could be a " "very big file, and could take a lot of time. Use this to make a full backup " "of your account (photos are not exported)" msgstr "" -#: src/Module/Settings/UserExport.php:92 +#: src/Module/Settings/UserExport.php:78 msgid "Export Contacts to CSV" msgstr "" -#: src/Module/Settings/UserExport.php:92 +#: src/Module/Settings/UserExport.php:78 msgid "" "Export the list of the accounts you are following as CSV file. Compatible to" " e.g. Mastodon." msgstr "" -#: src/Module/Special/DisplayNotFound.php:35 +#: src/Module/Special/DisplayNotFound.php:21 msgid "The top-level post isn't visible." msgstr "" -#: src/Module/Special/DisplayNotFound.php:36 +#: src/Module/Special/DisplayNotFound.php:22 msgid "The top-level post was deleted." msgstr "" -#: src/Module/Special/DisplayNotFound.php:37 +#: src/Module/Special/DisplayNotFound.php:23 msgid "" "This node has blocked the top-level author or the author of the shared post." msgstr "" -#: src/Module/Special/DisplayNotFound.php:38 +#: src/Module/Special/DisplayNotFound.php:24 msgid "" "You have ignored or blocked the top-level author or the author of the shared" " post." msgstr "" -#: src/Module/Special/DisplayNotFound.php:39 +#: src/Module/Special/DisplayNotFound.php:25 msgid "" "You have ignored the top-level author's server or the shared post author's " "server." msgstr "" -#: src/Module/Special/DisplayNotFound.php:45 +#: src/Module/Special/DisplayNotFound.php:31 msgid "Conversation Not Found" msgstr "" -#: src/Module/Special/DisplayNotFound.php:46 +#: src/Module/Special/DisplayNotFound.php:32 msgid "Unfortunately, the requested conversation isn't available to you." msgstr "" -#: src/Module/Special/DisplayNotFound.php:47 +#: src/Module/Special/DisplayNotFound.php:33 msgid "Possible reasons include:" msgstr "" -#: src/Module/Special/HTTPException.php:78 +#: src/Module/Special/HTTPException.php:64 msgid "Stack trace:" msgstr "" -#: src/Module/Special/HTTPException.php:83 +#: src/Module/Special/HTTPException.php:69 #, php-format msgid "Exception thrown in %s:%d" msgstr "" -#: src/Module/Tos.php:58 src/Module/Tos.php:107 +#: src/Module/Tos.php:44 src/Module/Tos.php:93 msgid "" "At the time of registration, and for providing communications between the " "user account and their contacts, the user has to provide a display name (pen" @@ -11618,14 +11625,14 @@ msgid "" "settings, it is not necessary for communication." msgstr "Ve chvíli registrace, a pro poskytování komunikace mezi uživatelským účtem a jeho kontakty, musí uživatel poskytnout zobrazované jméno (pseudonym), uživatelské jméno (přezdívku) a funkční e-mailovou adresu. Jména budou dostupná na profilové stránce účtu pro kteréhokoliv návštěvníka, i kdyby ostatní detaily nebyly zobrazeny. E-mailová adresa bude použita pouze pro zasílání oznámení o interakcích, nebude ale viditelně zobrazována. Zápis účtu do adresáře účtů serveru nebo globálního adresáře účtů je nepovinný a může být ovládán v nastavení uživatele, není potřebný pro komunikaci." -#: src/Module/Tos.php:59 src/Module/Tos.php:108 +#: src/Module/Tos.php:45 src/Module/Tos.php:94 msgid "" "This data is required for communication and is passed on to the nodes of the" " communication partners and is stored there. Users can enter additional " "private data that may be transmitted to the communication partners accounts." msgstr "Tato data jsou vyžadována ke komunikaci a jsou předávána serverům komunikačních partnerů a jsou tam ukládána. Uživatelé mohou zadávat dodatečná soukromá data, která mohou být odeslána na účty komunikačních partnerů." -#: src/Module/Tos.php:60 src/Module/Tos.php:109 +#: src/Module/Tos.php:46 src/Module/Tos.php:95 #, php-format msgid "" "At any point in time a logged in user can export their account data from the" @@ -11636,98 +11643,98 @@ msgid "" "from the nodes of the communication partners." msgstr "" -#: src/Module/Tos.php:63 src/Module/Tos.php:106 +#: src/Module/Tos.php:49 src/Module/Tos.php:92 msgid "Privacy Statement" msgstr "Prohlášení o soukromí" -#: src/Module/Tos.php:103 +#: src/Module/Tos.php:89 msgid "Rules" msgstr "" -#: src/Module/Update/Display.php:45 +#: src/Module/Update/Display.php:31 msgid "Parameter uri_id is missing." msgstr "" -#: src/Module/Update/Display.php:55 +#: src/Module/Update/Display.php:41 msgid "The requested item doesn't exist or has been deleted." msgstr "Požadovaná položka neexistuje nebo byla smazána." -#: src/Module/User/Delegation.php:146 +#: src/Module/User/Delegation.php:132 #, php-format msgid "You are now logged in as %s" msgstr "" -#: src/Module/User/Delegation.php:185 +#: src/Module/User/Delegation.php:171 msgid "Switch between your accounts" msgstr "" -#: src/Module/User/Delegation.php:186 +#: src/Module/User/Delegation.php:172 msgid "Manage your accounts" msgstr "" -#: src/Module/User/Delegation.php:187 +#: src/Module/User/Delegation.php:173 msgid "" "Toggle between different identities or community/group pages which share " "your account details or which you have been granted \"manage\" permissions" msgstr "Přepínání mezi různými identitami nebo komunitními/skupinovými stránkami, které sdílí vaše detaily účtu, nebo kterým jste přidělil/a oprávnění nastavovat přístupová práva." -#: src/Module/User/Delegation.php:188 +#: src/Module/User/Delegation.php:174 msgid "Select an identity to manage: " msgstr "Vyberte identitu ke spravování: " -#: src/Module/User/Import.php:104 +#: src/Module/User/Import.php:90 msgid "User imports on closed servers can only be done by an administrator." msgstr "Importy uživatelů na uzavřených serverech může provést pouze administrátor." -#: src/Module/User/Import.php:120 +#: src/Module/User/Import.php:106 msgid "Move account" msgstr "Přesunout účet" -#: src/Module/User/Import.php:121 +#: src/Module/User/Import.php:107 msgid "You can import an account from another Friendica server." msgstr "Můžete importovat účet z jiného serveru Friendica." -#: src/Module/User/Import.php:122 +#: src/Module/User/Import.php:108 msgid "" "You need to export your account from the old server and upload it here. We " "will recreate your old account here with all your contacts. We will try also" " to inform your friends that you moved here." msgstr "Musíte exportovat svůj účet na starém serveru a nahrát ho zde. My následně vytvoříme Váš původní účet zde včetně všech kontaktů. Zároveň se pokusíme informovat všechny Vaše přátele, že jste se sem přestěhoval/a." -#: src/Module/User/Import.php:123 +#: src/Module/User/Import.php:109 msgid "" "This feature is experimental. We can't import contacts from the OStatus " "network (GNU Social/Statusnet) or from Diaspora" msgstr "Tato vlastnost je experimentální. Nemůžeme importovat kontakty za sítě OStatus (GNU social/StatusNet) nebo z Diaspory" -#: src/Module/User/Import.php:124 +#: src/Module/User/Import.php:110 msgid "Account file" msgstr "Soubor s účtem" -#: src/Module/User/Import.php:124 +#: src/Module/User/Import.php:110 msgid "" "To export your account, go to \"Settings->Export your personal data\" and " "select \"Export account\"" msgstr "K exportu Vašeho účtu jděte na „Nastavení->Exportovat osobní údaje“ a zvolte „Exportovat účet“" -#: src/Module/User/Import.php:218 +#: src/Module/User/Import.php:204 msgid "Error decoding account file" msgstr "Chyba dekódování uživatelského účtu" -#: src/Module/User/Import.php:223 +#: src/Module/User/Import.php:209 msgid "Error! No version data in file! This is not a Friendica account file?" msgstr "Chyba! V souboru nejsou data o verzi! Je to opravdu soubor s účtem Friendica?" -#: src/Module/User/Import.php:231 +#: src/Module/User/Import.php:217 #, php-format msgid "User '%s' already exists on this server!" msgstr "Uživatel „%s“ již na tomto serveru existuje!" -#: src/Module/User/Import.php:268 +#: src/Module/User/Import.php:254 msgid "User creation error" msgstr "Chyba při vytváření uživatele" -#: src/Module/User/Import.php:317 +#: src/Module/User/Import.php:303 #, php-format msgid "%d contact not imported" msgid_plural "%d contacts not imported" @@ -11736,23 +11743,23 @@ msgstr[1] "%d kontakty nenaimportovány" msgstr[2] "%d kontaktu nenaimportováno" msgstr[3] "%d kontaktů nenaimportováno" -#: src/Module/User/Import.php:366 +#: src/Module/User/Import.php:352 msgid "User profile creation error" msgstr "Chyba vytváření uživatelského profilu" -#: src/Module/User/Import.php:417 +#: src/Module/User/Import.php:403 msgid "Done. You can now login with your username and password" msgstr "Hotovo. Nyní se můžete přihlásit se svým uživatelským jménem a heslem" -#: src/Module/Welcome.php:44 +#: src/Module/Welcome.php:30 msgid "Welcome to Friendica" msgstr "Vítejte na Friendica" -#: src/Module/Welcome.php:45 +#: src/Module/Welcome.php:31 msgid "New Member Checklist" msgstr "Seznam doporučení pro nového člena" -#: src/Module/Welcome.php:46 +#: src/Module/Welcome.php:32 msgid "" "We would like to offer some tips and links to help make your experience " "enjoyable. Click any item to visit the relevant page. A link to this page " @@ -11760,33 +11767,33 @@ msgid "" "registration and then will quietly disappear." msgstr "Rádi bychom vám nabídli několik tipů a odkazů, abychom vám zpříjemnili zážitek. Kliknutím na jakoukoliv položku zobrazíte relevantní stránku. Odkaz na tuto stránku bude viditelný z vaší domovské stránky po dobu dvou týdnů od vaší první registrace a poté tiše zmizí." -#: src/Module/Welcome.php:48 +#: src/Module/Welcome.php:34 msgid "Getting Started" msgstr "Začínáme" -#: src/Module/Welcome.php:49 +#: src/Module/Welcome.php:35 msgid "Friendica Walk-Through" msgstr "Prohlídka Friendica " -#: src/Module/Welcome.php:50 +#: src/Module/Welcome.php:36 msgid "" "On your Quick Start page - find a brief introduction to your " "profile and network tabs, make some new connections, and find some groups to" " join." msgstr "Na vaší stránce Rychlý začátek najděte stručný úvod k vašemu profilu a síťovým záložkám, spojte se s novými kontakty a najděte skupiny, ke kterým se můžete připojit." -#: src/Module/Welcome.php:53 +#: src/Module/Welcome.php:39 msgid "Go to Your Settings" msgstr "Navštivte své nastavení" -#: src/Module/Welcome.php:54 +#: src/Module/Welcome.php:40 msgid "" "On your Settings page - change your initial password. Also make a " "note of your Identity Address. This looks just like an email address - and " "will be useful in making friends on the free social web." msgstr "Na vaší stránce Nastavení si změňte vaše první heslo. Věnujte také svou pozornost vaší adrese identity. Vypadá jako e-mailová adresa a bude vám užitečná pro navazování přátelství na svobodném sociálním webu." -#: src/Module/Welcome.php:55 +#: src/Module/Welcome.php:41 msgid "" "Review the other settings, particularly the privacy settings. An unpublished" " directory listing is like having an unlisted phone number. In general, you " @@ -11794,77 +11801,77 @@ msgid "" "potential friends know exactly how to find you." msgstr "Prohlédněte si další nastavení, a to zejména nastavení soukromí. Nezveřejnění svého účtu v adresáři je jako mít nezveřejněné telefonní číslo. Obecně platí, že je lepší mít svůj účet zveřejněný - ledaže by všichni vaši přátelé a potenciální přátelé přesně věděli, jak vás najít." -#: src/Module/Welcome.php:59 +#: src/Module/Welcome.php:45 msgid "" "Upload a profile photo if you have not done so already. Studies have shown " "that people with real photos of themselves are ten times more likely to make" " friends than people who do not." msgstr "Nahrajte si svou profilovou fotku, pokud jste tak již neučinil/a. Studie ukázaly, že lidé se skutečnými fotkami mají desetkrát častěji přátele než lidé, kteří nemají." -#: src/Module/Welcome.php:60 +#: src/Module/Welcome.php:46 msgid "Edit Your Profile" msgstr "Upravte si svůj profil" -#: src/Module/Welcome.php:61 +#: src/Module/Welcome.php:47 msgid "" "Edit your default profile to your liking. Review the " "settings for hiding your list of friends and hiding the profile from unknown" " visitors." msgstr "Upravte si výchozí profil podle vašich představ. Prověřte nastavení pro skrytí vašeho seznamu přátel a skrytí profilu před neznámými návštěvníky." -#: src/Module/Welcome.php:62 +#: src/Module/Welcome.php:48 msgid "Profile Keywords" msgstr "Profilová klíčová slova" -#: src/Module/Welcome.php:63 +#: src/Module/Welcome.php:49 msgid "" "Set some public keywords for your profile which describe your interests. We " "may be able to find other people with similar interests and suggest " "friendships." msgstr "" -#: src/Module/Welcome.php:65 +#: src/Module/Welcome.php:51 msgid "Connecting" msgstr "Připojuji se" -#: src/Module/Welcome.php:67 +#: src/Module/Welcome.php:53 msgid "Importing Emails" msgstr "Importuji e-maily" -#: src/Module/Welcome.php:68 +#: src/Module/Welcome.php:54 msgid "" "Enter your email access information on your Connector Settings page if you " "wish to import and interact with friends or mailing lists from your email " "INBOX" msgstr "Pokud chcete importovat své přátele nebo mailové skupiny z INBOX vašeho e-mailu a komunikovat s nimi, zadejte na vaší stránce Nastavení kontektoru své přístupové údaje do svého e-mailového účtu" -#: src/Module/Welcome.php:69 +#: src/Module/Welcome.php:55 msgid "Go to Your Contacts Page" msgstr "Navštivte vaši stránku Kontakty" -#: src/Module/Welcome.php:70 +#: src/Module/Welcome.php:56 msgid "" "Your Contacts page is your gateway to managing friendships and connecting " "with friends on other networks. Typically you enter their address or site " "URL in the Add New Contact dialog." msgstr "Vaše stránka Kontakty je vaše brána k nastavování přátelství a propojení s přáteli z dalších sítí. Typicky zadáte jejich emailovou adresu nebo URL adresu jejich serveru prostřednictvím dialogu Přidat nový kontakt." -#: src/Module/Welcome.php:71 +#: src/Module/Welcome.php:57 msgid "Go to Your Site's Directory" msgstr "Navštivte adresář vaší stránky" -#: src/Module/Welcome.php:72 +#: src/Module/Welcome.php:58 msgid "" "The Directory page lets you find other people in this network or other " "federated sites. Look for a Connect or Follow link on " "their profile page. Provide your own Identity Address if requested." msgstr "Stránka Adresář vám pomůže najít další lidi na tomto serveru nebo v jiných propojených serverech. Najděte na jejich stránce odkaz Spojit se nebo Sledovat. Uveďte svou vlastní adresu identity, je-li požadována." -#: src/Module/Welcome.php:73 +#: src/Module/Welcome.php:59 msgid "Finding New People" msgstr "Nalezení nových lidí" -#: src/Module/Welcome.php:74 +#: src/Module/Welcome.php:60 msgid "" "On the side panel of the Contacts page are several tools to find new " "friends. We can match people by interest, look up people by name or " @@ -11873,412 +11880,408 @@ msgid "" "hours." msgstr "Na bočním panelu stránky s kontakty je několik nástrojů k nalezení nových přátel. Porovnáme lidi dle zájmů, najdeme lidi podle jména nebo zájmu a poskytneme Vám návrhy založené na přátelství v síti přátel. Na zcela novém serveru se návrhy přátelství nabínou obvykle během 24 hodin." -#: src/Module/Welcome.php:77 +#: src/Module/Welcome.php:63 msgid "Add Your Contacts To Circle" msgstr "" -#: src/Module/Welcome.php:78 +#: src/Module/Welcome.php:64 msgid "" "Once you have made some friends, organize them into private conversation " "circles from the sidebar of your Contacts page and then you can interact " "with each circle privately on your Network page." msgstr "" -#: src/Module/Welcome.php:80 +#: src/Module/Welcome.php:66 msgid "Why Aren't My Posts Public?" msgstr "Proč nejsou mé příspěvky veřejné?" -#: src/Module/Welcome.php:81 +#: src/Module/Welcome.php:67 msgid "" "Friendica respects your privacy. By default, your posts will only show up to" " people you've added as friends. For more information, see the help section " "from the link above." msgstr "Friendica respektuje vaše soukromí. Ve výchozím stavu jsou vaše příspěvky viditelné pouze lidem, které označíte jako vaše přátelé. Více informací naleznete v nápovědě na výše uvedeném odkazu" -#: src/Module/Welcome.php:83 +#: src/Module/Welcome.php:69 msgid "Getting Help" msgstr "Získání nápovědy" -#: src/Module/Welcome.php:84 +#: src/Module/Welcome.php:70 msgid "Go to the Help Section" msgstr "Navštivte sekci nápovědy" -#: src/Module/Welcome.php:85 +#: src/Module/Welcome.php:71 msgid "" "Our help pages may be consulted for detail on other program" " features and resources." msgstr "Na stránkách Nápověda naleznete nejen další podrobnosti o všech funkcích Friendika ale také další zdroje informací." -#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:161 +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:147 msgid "{0} wants to follow you" msgstr "" -#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:163 +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:149 msgid "{0} has started following you" msgstr "" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:96 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:82 #, php-format msgid "%s liked %s's post" msgstr "Uživateli %s se líbí příspěvek uživatele %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:108 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:94 #, php-format msgid "%s disliked %s's post" msgstr "Uživateli %s se nelíbí příspěvek uživatele %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:120 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:106 #, php-format msgid "%s is attending %s's event" msgstr "%s se zúčastní události %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:132 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:118 #, php-format msgid "%s is not attending %s's event" msgstr "%s se nezúčastní události %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:144 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:130 #, php-format msgid "%s may attending %s's event" msgstr "" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:174 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:160 #, php-format msgid "%s is now friends with %s" msgstr "%s se nyní přátelí s uživatelem %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:341 -#: src/Navigation/Notifications/Factory/FormattedNotify.php:379 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:327 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:365 #, php-format msgid "%s commented on %s's post" msgstr "%s okomentoval/a příspěvek uživatele %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:378 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:364 #, php-format msgid "%s created a new post" msgstr "%s vytvořil nový příspěvek" -#: src/Navigation/Notifications/Factory/Introduction.php:132 +#: src/Navigation/Notifications/Factory/Introduction.php:118 msgid "Friend Suggestion" msgstr "Návrh přátelství" -#: src/Navigation/Notifications/Factory/Introduction.php:158 +#: src/Navigation/Notifications/Factory/Introduction.php:144 msgid "Friend/Connect Request" msgstr "Požadavek o přátelství/spojení" -#: src/Navigation/Notifications/Factory/Introduction.php:158 -msgid "New Follower" -msgstr "Nový sledující" - -#: src/Navigation/Notifications/Factory/Notification.php:134 +#: src/Navigation/Notifications/Factory/Notification.php:120 #, php-format msgid "%1$s wants to follow you" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:136 +#: src/Navigation/Notifications/Factory/Notification.php:122 #, php-format msgid "%1$s has started following you" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:208 +#: src/Navigation/Notifications/Factory/Notification.php:194 #, php-format msgid "%1$s liked your comment on %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:211 +#: src/Navigation/Notifications/Factory/Notification.php:197 #, php-format msgid "%1$s liked your post %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:218 +#: src/Navigation/Notifications/Factory/Notification.php:204 #, php-format msgid "%1$s disliked your comment on %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:221 +#: src/Navigation/Notifications/Factory/Notification.php:207 #, php-format msgid "%1$s disliked your post %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:228 +#: src/Navigation/Notifications/Factory/Notification.php:214 #, php-format msgid "%1$s shared your comment %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:231 -#: src/Navigation/Notifications/Factory/Notification.php:316 +#: src/Navigation/Notifications/Factory/Notification.php:217 +#: src/Navigation/Notifications/Factory/Notification.php:302 #, php-format msgid "%1$s shared your post %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:235 -#: src/Navigation/Notifications/Factory/Notification.php:305 +#: src/Navigation/Notifications/Factory/Notification.php:221 +#: src/Navigation/Notifications/Factory/Notification.php:291 #, php-format msgid "%1$s shared the post %2$s from %3$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:237 -#: src/Navigation/Notifications/Factory/Notification.php:307 +#: src/Navigation/Notifications/Factory/Notification.php:223 +#: src/Navigation/Notifications/Factory/Notification.php:293 #, php-format msgid "%1$s shared a post from %3$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:239 -#: src/Navigation/Notifications/Factory/Notification.php:309 +#: src/Navigation/Notifications/Factory/Notification.php:225 +#: src/Navigation/Notifications/Factory/Notification.php:295 #, php-format msgid "%1$s shared the post %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:241 -#: src/Navigation/Notifications/Factory/Notification.php:311 +#: src/Navigation/Notifications/Factory/Notification.php:227 +#: src/Navigation/Notifications/Factory/Notification.php:297 #, php-format msgid "%1$s shared a post" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:249 +#: src/Navigation/Notifications/Factory/Notification.php:235 #, php-format msgid "%1$s wants to attend your event %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:256 +#: src/Navigation/Notifications/Factory/Notification.php:242 #, php-format msgid "%1$s does not want to attend your event %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:263 +#: src/Navigation/Notifications/Factory/Notification.php:249 #, php-format msgid "%1$s maybe wants to attend your event %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:270 +#: src/Navigation/Notifications/Factory/Notification.php:256 #, php-format msgid "%1$s tagged you on %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:274 +#: src/Navigation/Notifications/Factory/Notification.php:260 #, php-format msgid "%1$s replied to you on %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:278 +#: src/Navigation/Notifications/Factory/Notification.php:264 #, php-format msgid "%1$s commented in your thread %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:282 +#: src/Navigation/Notifications/Factory/Notification.php:268 #, php-format msgid "%1$s commented on your comment %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:289 +#: src/Navigation/Notifications/Factory/Notification.php:275 #, php-format msgid "%1$s commented in their thread %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:291 +#: src/Navigation/Notifications/Factory/Notification.php:277 #, php-format msgid "%1$s commented in their thread" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:293 +#: src/Navigation/Notifications/Factory/Notification.php:279 #, php-format msgid "%1$s commented in the thread %2$s from %3$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:295 +#: src/Navigation/Notifications/Factory/Notification.php:281 #, php-format msgid "%1$s commented in the thread from %3$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:300 +#: src/Navigation/Notifications/Factory/Notification.php:286 #, php-format msgid "%1$s commented on your thread %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:225 -#: src/Navigation/Notifications/Repository/Notify.php:754 +#: src/Navigation/Notifications/Repository/Notify.php:211 +#: src/Navigation/Notifications/Repository/Notify.php:740 msgid "[Friendica:Notify]" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:293 +#: src/Navigation/Notifications/Repository/Notify.php:279 #, php-format msgid "%s New mail received at %s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:295 +#: src/Navigation/Notifications/Repository/Notify.php:281 #, php-format msgid "%1$s sent you a new private message at %2$s." msgstr "%1$s vám poslal/a novou soukromou zprávu na %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:296 +#: src/Navigation/Notifications/Repository/Notify.php:282 msgid "a private message" msgstr "soukromou zprávu" -#: src/Navigation/Notifications/Repository/Notify.php:296 +#: src/Navigation/Notifications/Repository/Notify.php:282 #, php-format msgid "%1$s sent you %2$s." msgstr "%1$s vám poslal/a %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:298 +#: src/Navigation/Notifications/Repository/Notify.php:284 #, php-format msgid "Please visit %s to view and/or reply to your private messages." msgstr "Pro zobrazení vašich soukromých zpráv a možnost na ně odpovědět prosím navštivte %s." -#: src/Navigation/Notifications/Repository/Notify.php:328 +#: src/Navigation/Notifications/Repository/Notify.php:314 #, php-format msgid "%1$s commented on %2$s's %3$s %4$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:333 +#: src/Navigation/Notifications/Repository/Notify.php:319 #, php-format msgid "%1$s commented on your %2$s %3$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:337 +#: src/Navigation/Notifications/Repository/Notify.php:323 #, php-format msgid "%1$s commented on their %2$s %3$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:341 -#: src/Navigation/Notifications/Repository/Notify.php:788 +#: src/Navigation/Notifications/Repository/Notify.php:327 +#: src/Navigation/Notifications/Repository/Notify.php:774 #, php-format msgid "%1$s Comment to conversation #%2$d by %3$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:343 +#: src/Navigation/Notifications/Repository/Notify.php:329 #, php-format msgid "%s commented on an item/conversation you have been following." msgstr "%s okomentoval/a vámi sledovanou položku/konverzaci." -#: src/Navigation/Notifications/Repository/Notify.php:347 -#: src/Navigation/Notifications/Repository/Notify.php:362 -#: src/Navigation/Notifications/Repository/Notify.php:814 +#: src/Navigation/Notifications/Repository/Notify.php:333 +#: src/Navigation/Notifications/Repository/Notify.php:348 +#: src/Navigation/Notifications/Repository/Notify.php:800 #, php-format msgid "Please visit %s to view and/or reply to the conversation." msgstr "Prosím navštivte %s pro zobrazení konverzace a možnosti odpovědět." -#: src/Navigation/Notifications/Repository/Notify.php:354 +#: src/Navigation/Notifications/Repository/Notify.php:340 #, php-format msgid "%s %s posted to your profile wall" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:356 +#: src/Navigation/Notifications/Repository/Notify.php:342 #, php-format msgid "%1$s posted to your profile wall at %2$s" msgstr "%1$s přidal/a příspěvek na vaši profilovou zeď na %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:357 +#: src/Navigation/Notifications/Repository/Notify.php:343 #, php-format msgid "%1$s posted to [url=%2$s]your wall[/url]" msgstr "%1$s přidal/a příspěvek na [url=%2$s]vaši zeď[/url]" -#: src/Navigation/Notifications/Repository/Notify.php:370 +#: src/Navigation/Notifications/Repository/Notify.php:356 #, php-format msgid "%s Introduction received" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:372 +#: src/Navigation/Notifications/Repository/Notify.php:358 #, php-format msgid "You've received an introduction from '%1$s' at %2$s" msgstr "Obdržel/a jste představení od uživatele „%1$s“ na %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:373 +#: src/Navigation/Notifications/Repository/Notify.php:359 #, php-format msgid "You've received [url=%1$s]an introduction[/url] from %2$s." msgstr "Obdržel/a jste [url=%1$s]představení[/url] od uživatele %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:378 -#: src/Navigation/Notifications/Repository/Notify.php:424 +#: src/Navigation/Notifications/Repository/Notify.php:364 +#: src/Navigation/Notifications/Repository/Notify.php:410 #, php-format msgid "You may visit their profile at %s" msgstr "Můžete navštívit jeho/její profil na %s" -#: src/Navigation/Notifications/Repository/Notify.php:380 +#: src/Navigation/Notifications/Repository/Notify.php:366 #, php-format msgid "Please visit %s to approve or reject the introduction." msgstr "Prosím navštivte %s pro schválení či zamítnutí představení." -#: src/Navigation/Notifications/Repository/Notify.php:387 +#: src/Navigation/Notifications/Repository/Notify.php:373 #, php-format msgid "%s A new person is sharing with you" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:389 -#: src/Navigation/Notifications/Repository/Notify.php:390 +#: src/Navigation/Notifications/Repository/Notify.php:375 +#: src/Navigation/Notifications/Repository/Notify.php:376 #, php-format msgid "%1$s is sharing with you at %2$s" msgstr "Uživatel %1$s s vámi sdílí na %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:397 +#: src/Navigation/Notifications/Repository/Notify.php:383 #, php-format msgid "%s You have a new follower" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:399 -#: src/Navigation/Notifications/Repository/Notify.php:400 +#: src/Navigation/Notifications/Repository/Notify.php:385 +#: src/Navigation/Notifications/Repository/Notify.php:386 #, php-format msgid "You have a new follower at %2$s : %1$s" msgstr "Máte nového sledujícího na %2$s: %1$s" -#: src/Navigation/Notifications/Repository/Notify.php:413 +#: src/Navigation/Notifications/Repository/Notify.php:399 #, php-format msgid "%s Friend suggestion received" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:415 +#: src/Navigation/Notifications/Repository/Notify.php:401 #, php-format msgid "You've received a friend suggestion from '%1$s' at %2$s" msgstr "Obdržel/a jste návrh přátelství od uživatele „%1$s“ na %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:416 +#: src/Navigation/Notifications/Repository/Notify.php:402 #, php-format msgid "" "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." msgstr "Obdržel/a jste [url=%1$s]návrh přátelství[/url] s uživatelem %2$s od uživatele %3$s." -#: src/Navigation/Notifications/Repository/Notify.php:422 +#: src/Navigation/Notifications/Repository/Notify.php:408 msgid "Name:" msgstr "Jméno:" -#: src/Navigation/Notifications/Repository/Notify.php:423 +#: src/Navigation/Notifications/Repository/Notify.php:409 msgid "Photo:" msgstr "Fotka:" -#: src/Navigation/Notifications/Repository/Notify.php:426 +#: src/Navigation/Notifications/Repository/Notify.php:412 #, php-format msgid "Please visit %s to approve or reject the suggestion." msgstr "Prosím navštivte %s pro schválení či zamítnutí návrhu." -#: src/Navigation/Notifications/Repository/Notify.php:434 -#: src/Navigation/Notifications/Repository/Notify.php:449 +#: src/Navigation/Notifications/Repository/Notify.php:420 +#: src/Navigation/Notifications/Repository/Notify.php:435 #, php-format msgid "%s Connection accepted" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:436 -#: src/Navigation/Notifications/Repository/Notify.php:451 +#: src/Navigation/Notifications/Repository/Notify.php:422 +#: src/Navigation/Notifications/Repository/Notify.php:437 #, php-format msgid "'%1$s' has accepted your connection request at %2$s" msgstr "„%1$s“ přijal/a váš požadavek o spojení na %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:437 -#: src/Navigation/Notifications/Repository/Notify.php:452 +#: src/Navigation/Notifications/Repository/Notify.php:423 +#: src/Navigation/Notifications/Repository/Notify.php:438 #, php-format msgid "%2$s has accepted your [url=%1$s]connection request[/url]." msgstr "%2$s přijal/a váš [url=%1$s]požadavek o spojení[/url]." -#: src/Navigation/Notifications/Repository/Notify.php:442 +#: src/Navigation/Notifications/Repository/Notify.php:428 msgid "" "You are now mutual friends and may exchange status updates, photos, and " "email without restriction." msgstr "Jste nyní vzájemní přátelé a můžete si vyměňovat stavové zprávy, fotky a e-maily bez omezení." -#: src/Navigation/Notifications/Repository/Notify.php:444 +#: src/Navigation/Notifications/Repository/Notify.php:430 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "Pokud chcete provést změny s tímto vztahem, prosím navštivte %s." -#: src/Navigation/Notifications/Repository/Notify.php:457 +#: src/Navigation/Notifications/Repository/Notify.php:443 #, php-format msgid "" "'%1$s' has chosen to accept you a fan, which restricts some forms of " @@ -12287,34 +12290,34 @@ msgid "" "automatically." msgstr "„%1$s“ se rozhodl/a vás přijmout jako fanouška, což omezuje některé formy komunikace - například soukoromé zprávy a některé interakce s profily. Pokud je toto stránka celebrity či komunity, byla tato nastavení aplikována automaticky." -#: src/Navigation/Notifications/Repository/Notify.php:459 +#: src/Navigation/Notifications/Repository/Notify.php:445 #, php-format msgid "" "'%1$s' may choose to extend this into a two-way or more permissive " "relationship in the future." msgstr "„%1$s“ se může rozhodnout tento vztah v budoucnosti rozšířit do oboustranného či jiného liberálnějšího vztahu." -#: src/Navigation/Notifications/Repository/Notify.php:461 +#: src/Navigation/Notifications/Repository/Notify.php:447 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "Prosím navštivte %s pokud chcete změnit tento vztah." -#: src/Navigation/Notifications/Repository/Notify.php:471 +#: src/Navigation/Notifications/Repository/Notify.php:457 msgid "registration request" msgstr "požadavek o registraci" -#: src/Navigation/Notifications/Repository/Notify.php:473 +#: src/Navigation/Notifications/Repository/Notify.php:459 #, php-format msgid "You've received a registration request from '%1$s' at %2$s" msgstr "Obdržel/a jste požadavek o registraci od uživatele „%1$s“ na %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:474 +#: src/Navigation/Notifications/Repository/Notify.php:460 #, php-format msgid "You've received a [url=%1$s]registration request[/url] from %2$s." msgstr "Obdržel/a jste [url=%1$s]požadavek o registraci[/url] od uživatele %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:479 -#: src/Navigation/Notifications/Repository/Notify.php:500 +#: src/Navigation/Notifications/Repository/Notify.php:465 +#: src/Navigation/Notifications/Repository/Notify.php:486 #, php-format msgid "" "Display Name:\t%s\n" @@ -12322,288 +12325,288 @@ msgid "" "Login Name:\t%s (%s)" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:485 +#: src/Navigation/Notifications/Repository/Notify.php:471 #, php-format msgid "Please visit %s to approve or reject the request." msgstr "Prosím navštivte %s k odsouhlasení nebo k zamítnutí požadavku." -#: src/Navigation/Notifications/Repository/Notify.php:492 +#: src/Navigation/Notifications/Repository/Notify.php:478 msgid "new registration" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:494 +#: src/Navigation/Notifications/Repository/Notify.php:480 #, php-format msgid "You've received a new registration from '%1$s' at %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:495 +#: src/Navigation/Notifications/Repository/Notify.php:481 #, php-format msgid "You've received a [url=%1$s]new registration[/url] from %2$s." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:506 +#: src/Navigation/Notifications/Repository/Notify.php:492 #, php-format msgid "Please visit %s to have a look at the new registration." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:782 +#: src/Navigation/Notifications/Repository/Notify.php:768 #, php-format msgid "%s %s tagged you" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:785 +#: src/Navigation/Notifications/Repository/Notify.php:771 #, php-format msgid "%s %s shared a new post" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:793 +#: src/Navigation/Notifications/Repository/Notify.php:779 #, php-format msgid "%1$s %2$s liked your post #%3$d" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:796 +#: src/Navigation/Notifications/Repository/Notify.php:782 #, php-format msgid "%1$s %2$s liked your comment on #%3$d" msgstr "" -#: src/Object/EMail/ItemCCEMail.php:42 +#: src/Object/EMail/ItemCCEMail.php:28 #, php-format msgid "" "This message was sent to you by %s, a member of the Friendica social " "network." msgstr "Tuto zprávu vám poslal/a %s, člen sociální sítě Friendica." -#: src/Object/EMail/ItemCCEMail.php:44 +#: src/Object/EMail/ItemCCEMail.php:30 #, php-format msgid "You may visit them online at %s" msgstr "Můžete jej/ji navštívit online na adrese %s" -#: src/Object/EMail/ItemCCEMail.php:45 +#: src/Object/EMail/ItemCCEMail.php:31 msgid "" "Please contact the sender by replying to this post if you do not wish to " "receive these messages." msgstr "Pokud nechcete dostávat tyto zprávy, kontaktujte prosím odesílatele odpovědí na tuto zprávu." -#: src/Object/EMail/ItemCCEMail.php:49 +#: src/Object/EMail/ItemCCEMail.php:35 #, php-format msgid "%s posted an update." msgstr "%s poslal/a aktualizaci." -#: src/Object/Post.php:138 +#: src/Object/Post.php:124 msgid "Private Message" msgstr "Soukromá zpráva" -#: src/Object/Post.php:142 +#: src/Object/Post.php:128 msgid "Public Message" msgstr "" -#: src/Object/Post.php:146 +#: src/Object/Post.php:132 msgid "Unlisted Message" msgstr "" -#: src/Object/Post.php:182 +#: src/Object/Post.php:168 msgid "This entry was edited" msgstr "Tato položka byla upravena" -#: src/Object/Post.php:210 +#: src/Object/Post.php:196 msgid "Connector Message" msgstr "" -#: src/Object/Post.php:239 src/Object/Post.php:241 +#: src/Object/Post.php:225 src/Object/Post.php:227 msgid "Edit" msgstr "Upravit" -#: src/Object/Post.php:275 +#: src/Object/Post.php:261 msgid "Delete globally" msgstr "Smazat globálně" -#: src/Object/Post.php:275 +#: src/Object/Post.php:261 msgid "Remove locally" msgstr "Odstranit lokálně" -#: src/Object/Post.php:282 +#: src/Object/Post.php:268 #, php-format msgid "Block %s" msgstr "" -#: src/Object/Post.php:287 +#: src/Object/Post.php:273 #, php-format msgid "Ignore %s" msgstr "" -#: src/Object/Post.php:292 +#: src/Object/Post.php:278 #, php-format msgid "Collapse %s" msgstr "" -#: src/Object/Post.php:296 +#: src/Object/Post.php:282 msgid "Report post" msgstr "" -#: src/Object/Post.php:307 +#: src/Object/Post.php:293 msgid "Save to folder" msgstr "" -#: src/Object/Post.php:347 +#: src/Object/Post.php:333 msgid "I will attend" msgstr "zúčastním se" -#: src/Object/Post.php:347 +#: src/Object/Post.php:333 msgid "I will not attend" msgstr "nezúčastním se" -#: src/Object/Post.php:347 +#: src/Object/Post.php:333 msgid "I might attend" msgstr "mohl bych se zúčastnit" -#: src/Object/Post.php:394 +#: src/Object/Post.php:380 msgid "Ignore thread" msgstr "" -#: src/Object/Post.php:395 +#: src/Object/Post.php:381 msgid "Unignore thread" msgstr "" -#: src/Object/Post.php:396 +#: src/Object/Post.php:382 msgid "Toggle ignore status" msgstr "" -#: src/Object/Post.php:406 +#: src/Object/Post.php:392 msgid "Add star" msgstr "" -#: src/Object/Post.php:407 +#: src/Object/Post.php:393 msgid "Remove star" msgstr "" -#: src/Object/Post.php:408 +#: src/Object/Post.php:394 msgid "Toggle star status" msgstr "" -#: src/Object/Post.php:419 +#: src/Object/Post.php:405 msgid "Pin" msgstr "" -#: src/Object/Post.php:420 +#: src/Object/Post.php:406 msgid "Unpin" msgstr "" -#: src/Object/Post.php:421 +#: src/Object/Post.php:407 msgid "Toggle pin status" msgstr "" -#: src/Object/Post.php:424 +#: src/Object/Post.php:410 msgid "Pinned" msgstr "" -#: src/Object/Post.php:429 +#: src/Object/Post.php:415 msgid "Add tag" msgstr "" -#: src/Object/Post.php:444 +#: src/Object/Post.php:430 msgid "Quote share this" msgstr "" -#: src/Object/Post.php:444 +#: src/Object/Post.php:430 msgid "Quote Share" msgstr "" -#: src/Object/Post.php:447 +#: src/Object/Post.php:433 msgid "Reshare this" msgstr "" -#: src/Object/Post.php:447 +#: src/Object/Post.php:433 msgid "Reshare" msgstr "" -#: src/Object/Post.php:448 +#: src/Object/Post.php:434 msgid "Cancel your Reshare" msgstr "" -#: src/Object/Post.php:448 +#: src/Object/Post.php:434 msgid "Unshare" msgstr "" -#: src/Object/Post.php:492 +#: src/Object/Post.php:478 #, php-format msgid "%s (Received %s)" msgstr "" -#: src/Object/Post.php:498 +#: src/Object/Post.php:484 msgid "Comment this item on your system" msgstr "" -#: src/Object/Post.php:498 +#: src/Object/Post.php:484 msgid "Remote comment" msgstr "" -#: src/Object/Post.php:520 +#: src/Object/Post.php:506 msgid "Share via ..." msgstr "" -#: src/Object/Post.php:520 +#: src/Object/Post.php:506 msgid "Share via external services" msgstr "" -#: src/Object/Post.php:527 +#: src/Object/Post.php:513 msgid "Unknown parent" msgstr "" -#: src/Object/Post.php:531 +#: src/Object/Post.php:517 #, php-format msgid "in reply to %s" msgstr "" -#: src/Object/Post.php:533 +#: src/Object/Post.php:519 msgid "Parent is probably private or not federated." msgstr "" -#: src/Object/Post.php:557 +#: src/Object/Post.php:543 msgid "to" msgstr "na" -#: src/Object/Post.php:558 +#: src/Object/Post.php:544 msgid "via" msgstr "přes" -#: src/Object/Post.php:559 +#: src/Object/Post.php:545 msgid "Wall-to-Wall" msgstr "Ze zdi na zeď" -#: src/Object/Post.php:560 +#: src/Object/Post.php:546 msgid "via Wall-To-Wall:" msgstr "ze zdi na zeď" -#: src/Object/Post.php:613 +#: src/Object/Post.php:599 #, php-format msgid "Reply to %s" msgstr "Odpovědět uživateli %s" -#: src/Object/Post.php:616 +#: src/Object/Post.php:602 msgid "More" msgstr "" -#: src/Object/Post.php:635 +#: src/Object/Post.php:621 msgid "Notifier task is pending" msgstr "Úloha pro notifiera čeká" -#: src/Object/Post.php:636 +#: src/Object/Post.php:622 msgid "Delivery to remote servers is pending" msgstr "Doručení vzdáleným serverům čeká" -#: src/Object/Post.php:637 +#: src/Object/Post.php:623 msgid "Delivery to remote servers is underway" msgstr "Doručení vzdáleným serverům je v plném proudu" -#: src/Object/Post.php:638 +#: src/Object/Post.php:624 msgid "Delivery to remote servers is mostly done" msgstr "Doručení vzdáleným serverům je téměř hotovo" -#: src/Object/Post.php:639 +#: src/Object/Post.php:625 msgid "Delivery to remote servers is done" msgstr "Doručení vzdáleným serverům je hotovo" -#: src/Object/Post.php:661 +#: src/Object/Post.php:647 #, php-format msgid "%d comment" msgid_plural "%d comments" @@ -12612,480 +12615,467 @@ msgstr[1] "%d komentáře" msgstr[2] "%d komentáře" msgstr[3] "%d komentářů" -#: src/Object/Post.php:662 +#: src/Object/Post.php:648 msgid "Show more" msgstr "Zobrazit více" -#: src/Object/Post.php:663 +#: src/Object/Post.php:649 msgid "Show fewer" msgstr "Zobrazit méně" -#: src/Object/Post.php:700 +#: src/Object/Post.php:686 #, php-format msgid "Reshared by: %s" msgstr "" -#: src/Object/Post.php:705 +#: src/Object/Post.php:691 #, php-format msgid "Viewed by: %s" msgstr "" -#: src/Object/Post.php:710 +#: src/Object/Post.php:696 #, php-format msgid "Read by: %s" msgstr "" -#: src/Object/Post.php:715 +#: src/Object/Post.php:701 #, php-format msgid "Liked by: %s" msgstr "" -#: src/Object/Post.php:720 +#: src/Object/Post.php:706 #, php-format msgid "Disliked by: %s" msgstr "" -#: src/Object/Post.php:725 +#: src/Object/Post.php:711 #, php-format msgid "Attended by: %s" msgstr "" -#: src/Object/Post.php:730 +#: src/Object/Post.php:716 #, php-format msgid "Maybe attended by: %s" msgstr "" -#: src/Object/Post.php:735 +#: src/Object/Post.php:721 #, php-format msgid "Not attended by: %s" msgstr "" -#: src/Object/Post.php:740 +#: src/Object/Post.php:726 #, php-format msgid "Commented by: %s" msgstr "" -#: src/Object/Post.php:745 +#: src/Object/Post.php:731 #, php-format msgid "Reacted with %s by: %s" msgstr "" -#: src/Object/Post.php:768 +#: src/Object/Post.php:754 #, php-format msgid "Quote shared by: %s" msgstr "" -#: src/Protocol/ActivityPub/Receiver.php:568 +#: src/Protocol/ActivityPub/Receiver.php:557 msgid "Chat" msgstr "" -#: src/Protocol/Delivery.php:544 +#: src/Protocol/Delivery.php:530 msgid "(no subject)" msgstr "" -#: src/Protocol/OStatus.php:1392 -#, php-format -msgid "%s is now following %s." -msgstr "%s nyní sleduje %s." - -#: src/Protocol/OStatus.php:1393 -msgid "following" -msgstr "sleduji" - -#: src/Protocol/OStatus.php:1396 -#, php-format -msgid "%s stopped following %s." -msgstr "%s přestal/a sledovat uživatele %s." - -#: src/Protocol/OStatus.php:1397 -msgid "stopped following" -msgstr "přestal/a sledovat" - -#: src/Render/FriendicaSmartyEngine.php:56 +#: src/Render/FriendicaSmartyEngine.php:42 #, php-format msgid "The folder %s must be writable by webserver." msgstr "" -#: src/Security/Authentication.php:216 +#: src/Security/Authentication.php:200 msgid "Login failed." msgstr "Přihlášení se nezdařilo." -#: src/Security/Authentication.php:261 +#: src/Security/Authentication.php:245 msgid "Login failed. Please check your credentials." msgstr "" -#: src/Security/Authentication.php:375 +#: src/Security/Authentication.php:359 #, php-format msgid "Welcome %s" msgstr "Vítejte, %s" -#: src/Security/Authentication.php:376 +#: src/Security/Authentication.php:360 msgid "Please upload a profile photo." msgstr "Prosím nahrajte profilovou fotku." -#: src/Util/EMailer/MailBuilder.php:260 +#: src/Security/OpenWebAuth.php:149 +#, php-format +msgid "OpenWebAuth: %1$s welcomes %2$s" +msgstr "OpenWebAuth: %1$s vítá uživatele %2$s" + +#: src/Util/EMailer/MailBuilder.php:246 msgid "Friendica Notification" msgstr "" -#: src/Util/EMailer/NotifyMailBuilder.php:78 -#: src/Util/EMailer/SystemMailBuilder.php:54 +#: src/Util/EMailer/NotifyMailBuilder.php:64 +#: src/Util/EMailer/SystemMailBuilder.php:40 #, php-format msgid "%1$s, %2$s Administrator" msgstr "" -#: src/Util/EMailer/NotifyMailBuilder.php:80 -#: src/Util/EMailer/SystemMailBuilder.php:56 +#: src/Util/EMailer/NotifyMailBuilder.php:66 +#: src/Util/EMailer/SystemMailBuilder.php:42 #, php-format msgid "%s Administrator" msgstr "" -#: src/Util/EMailer/NotifyMailBuilder.php:193 -#: src/Util/EMailer/NotifyMailBuilder.php:217 -#: src/Util/EMailer/SystemMailBuilder.php:101 -#: src/Util/EMailer/SystemMailBuilder.php:118 +#: src/Util/EMailer/NotifyMailBuilder.php:179 +#: src/Util/EMailer/NotifyMailBuilder.php:203 +#: src/Util/EMailer/SystemMailBuilder.php:87 +#: src/Util/EMailer/SystemMailBuilder.php:104 msgid "thanks" msgstr "" -#: src/Util/Temporal.php:172 +#: src/Util/Temporal.php:158 msgid "YYYY-MM-DD or MM-DD" msgstr "" -#: src/Util/Temporal.php:280 +#: src/Util/Temporal.php:266 #, php-format msgid "Time zone: %s Change in Settings" msgstr "" -#: src/Util/Temporal.php:320 src/Util/Temporal.php:329 +#: src/Util/Temporal.php:306 src/Util/Temporal.php:315 msgid "never" msgstr "" -#: src/Util/Temporal.php:343 +#: src/Util/Temporal.php:329 msgid "less than a second ago" msgstr "" -#: src/Util/Temporal.php:352 +#: src/Util/Temporal.php:338 msgid "year" msgstr "" -#: src/Util/Temporal.php:352 +#: src/Util/Temporal.php:338 msgid "years" msgstr "" -#: src/Util/Temporal.php:353 +#: src/Util/Temporal.php:339 msgid "months" msgstr "" -#: src/Util/Temporal.php:354 +#: src/Util/Temporal.php:340 msgid "weeks" msgstr "" -#: src/Util/Temporal.php:355 +#: src/Util/Temporal.php:341 msgid "days" msgstr "" -#: src/Util/Temporal.php:356 +#: src/Util/Temporal.php:342 msgid "hour" msgstr "" -#: src/Util/Temporal.php:356 +#: src/Util/Temporal.php:342 msgid "hours" msgstr "" -#: src/Util/Temporal.php:357 +#: src/Util/Temporal.php:343 msgid "minute" msgstr "" -#: src/Util/Temporal.php:357 +#: src/Util/Temporal.php:343 msgid "minutes" msgstr "" -#: src/Util/Temporal.php:358 +#: src/Util/Temporal.php:344 msgid "second" msgstr "" -#: src/Util/Temporal.php:358 +#: src/Util/Temporal.php:344 msgid "seconds" msgstr "" -#: src/Util/Temporal.php:367 +#: src/Util/Temporal.php:353 #, php-format msgid "in %1$d %2$s" msgstr "" -#: src/Util/Temporal.php:370 +#: src/Util/Temporal.php:356 #, php-format msgid "%1$d %2$s ago" msgstr "" -#: src/Worker/PushSubscription.php:110 +#: src/Worker/PushSubscription.php:96 msgid "Notification from Friendica" msgstr "" -#: src/Worker/PushSubscription.php:111 +#: src/Worker/PushSubscription.php:97 msgid "Empty Post" msgstr "" -#: view/theme/duepuntozero/config.php:68 +#: view/theme/duepuntozero/config.php:56 msgid "default" msgstr "" -#: view/theme/duepuntozero/config.php:69 +#: view/theme/duepuntozero/config.php:57 msgid "greenzero" msgstr "" -#: view/theme/duepuntozero/config.php:70 +#: view/theme/duepuntozero/config.php:58 msgid "purplezero" msgstr "" -#: view/theme/duepuntozero/config.php:71 +#: view/theme/duepuntozero/config.php:59 msgid "easterbunny" msgstr "" -#: view/theme/duepuntozero/config.php:72 +#: view/theme/duepuntozero/config.php:60 msgid "darkzero" msgstr "" -#: view/theme/duepuntozero/config.php:73 +#: view/theme/duepuntozero/config.php:61 msgid "comix" msgstr "" -#: view/theme/duepuntozero/config.php:74 +#: view/theme/duepuntozero/config.php:62 msgid "slackr" msgstr "" -#: view/theme/duepuntozero/config.php:87 +#: view/theme/duepuntozero/config.php:75 msgid "Variations" msgstr "" -#: view/theme/frio/config.php:146 +#: view/theme/frio/config.php:134 msgid "Note" msgstr "" -#: view/theme/frio/config.php:146 +#: view/theme/frio/config.php:134 msgid "Check image permissions if all users are allowed to see the image" msgstr "" -#: view/theme/frio/config.php:152 +#: view/theme/frio/config.php:140 msgid "Appearance" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Accent color" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Blue" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Red" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Purple" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Green" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Pink" msgstr "" -#: view/theme/frio/config.php:154 +#: view/theme/frio/config.php:142 msgid "Copy or paste schemestring" msgstr "" -#: view/theme/frio/config.php:154 +#: view/theme/frio/config.php:142 msgid "" "You can copy this string to share your theme with others. Pasting here " "applies the schemestring" msgstr "" -#: view/theme/frio/config.php:155 +#: view/theme/frio/config.php:143 msgid "Navigation bar background color" msgstr "" -#: view/theme/frio/config.php:156 +#: view/theme/frio/config.php:144 msgid "Navigation bar icon color " msgstr "" -#: view/theme/frio/config.php:157 +#: view/theme/frio/config.php:145 msgid "Link color" msgstr "" -#: view/theme/frio/config.php:158 +#: view/theme/frio/config.php:146 msgid "Set the background color" msgstr "" -#: view/theme/frio/config.php:159 +#: view/theme/frio/config.php:147 msgid "Content background opacity" msgstr "" -#: view/theme/frio/config.php:160 +#: view/theme/frio/config.php:148 msgid "Set the background image" msgstr "" -#: view/theme/frio/config.php:161 +#: view/theme/frio/config.php:149 msgid "Background image style" msgstr "" -#: view/theme/frio/config.php:164 +#: view/theme/frio/config.php:152 msgid "Always open Compose page" msgstr "" -#: view/theme/frio/config.php:164 +#: view/theme/frio/config.php:152 msgid "" "The New Post button always open the Compose page " "instead of the modal form. When this is disabled, the Compose page can be " "accessed with a middle click on the link or from the modal." msgstr "" -#: view/theme/frio/config.php:168 +#: view/theme/frio/config.php:156 msgid "Login page background image" msgstr "" -#: view/theme/frio/config.php:172 +#: view/theme/frio/config.php:160 msgid "Login page background color" msgstr "" -#: view/theme/frio/config.php:172 +#: view/theme/frio/config.php:160 msgid "Leave background image and color empty for theme defaults" msgstr "" -#: view/theme/frio/php/Image.php:39 +#: view/theme/frio/php/Image.php:27 msgid "Top Banner" msgstr "" -#: view/theme/frio/php/Image.php:39 +#: view/theme/frio/php/Image.php:27 msgid "" "Resize image to the width of the screen and show background color below on " "long pages." msgstr "" -#: view/theme/frio/php/Image.php:40 +#: view/theme/frio/php/Image.php:28 msgid "Full screen" msgstr "" -#: view/theme/frio/php/Image.php:40 +#: view/theme/frio/php/Image.php:28 msgid "" "Resize image to fill entire screen, clipping either the right or the bottom." msgstr "" -#: view/theme/frio/php/Image.php:41 +#: view/theme/frio/php/Image.php:29 msgid "Single row mosaic" msgstr "" -#: view/theme/frio/php/Image.php:41 +#: view/theme/frio/php/Image.php:29 msgid "" "Resize image to repeat it on a single row, either vertical or horizontal." msgstr "" -#: view/theme/frio/php/Image.php:42 +#: view/theme/frio/php/Image.php:30 msgid "Mosaic" msgstr "" -#: view/theme/frio/php/Image.php:42 +#: view/theme/frio/php/Image.php:30 msgid "Repeat image to fill the screen." msgstr "" -#: view/theme/frio/php/default.php:82 view/theme/frio/php/standard.php:40 +#: view/theme/frio/php/default.php:70 view/theme/frio/php/standard.php:28 msgid "Skip to main content" msgstr "" -#: view/theme/frio/php/default.php:153 view/theme/frio/php/standard.php:75 +#: view/theme/frio/php/default.php:141 view/theme/frio/php/standard.php:63 msgid "Back to top" msgstr "" -#: view/theme/frio/php/scheme.php:105 +#: view/theme/frio/php/scheme.php:93 msgid "Light" msgstr "" -#: view/theme/frio/php/scheme.php:106 +#: view/theme/frio/php/scheme.php:94 msgid "Dark" msgstr "" -#: view/theme/frio/php/scheme.php:107 +#: view/theme/frio/php/scheme.php:95 msgid "Black" msgstr "" -#: view/theme/frio/php/scheme.php:118 +#: view/theme/frio/php/scheme.php:106 msgid "Custom" msgstr "" -#: view/theme/frio/theme.php:214 +#: view/theme/frio/theme.php:202 msgid "Guest" msgstr "" -#: view/theme/frio/theme.php:217 +#: view/theme/frio/theme.php:205 msgid "Visitor" msgstr "" -#: view/theme/quattro/config.php:89 +#: view/theme/quattro/config.php:77 msgid "Alignment" msgstr "" -#: view/theme/quattro/config.php:89 +#: view/theme/quattro/config.php:77 msgid "Left" msgstr "" -#: view/theme/quattro/config.php:89 +#: view/theme/quattro/config.php:77 msgid "Center" msgstr "" -#: view/theme/quattro/config.php:90 +#: view/theme/quattro/config.php:78 msgid "Color scheme" msgstr "" -#: view/theme/quattro/config.php:91 +#: view/theme/quattro/config.php:79 msgid "Posts font size" msgstr "" -#: view/theme/quattro/config.php:92 +#: view/theme/quattro/config.php:80 msgid "Textareas font size" msgstr "" -#: view/theme/vier/config.php:91 +#: view/theme/vier/config.php:79 msgid "Comma separated list of helper groups" msgstr "" -#: view/theme/vier/config.php:131 +#: view/theme/vier/config.php:119 msgid "don't show" msgstr "" -#: view/theme/vier/config.php:131 +#: view/theme/vier/config.php:119 msgid "show" msgstr "" -#: view/theme/vier/config.php:137 +#: view/theme/vier/config.php:125 msgid "Set style" msgstr "" -#: view/theme/vier/config.php:138 +#: view/theme/vier/config.php:126 msgid "Community Pages" msgstr "" -#: view/theme/vier/config.php:139 view/theme/vier/theme.php:148 +#: view/theme/vier/config.php:127 view/theme/vier/theme.php:136 msgid "Community Profiles" msgstr "" -#: view/theme/vier/config.php:140 +#: view/theme/vier/config.php:128 msgid "Help or @NewHere ?" msgstr "" -#: view/theme/vier/config.php:141 view/theme/vier/theme.php:319 +#: view/theme/vier/config.php:129 view/theme/vier/theme.php:307 msgid "Connect Services" msgstr "" -#: view/theme/vier/config.php:142 +#: view/theme/vier/config.php:130 msgid "Find Friends" msgstr "" -#: view/theme/vier/config.php:143 view/theme/vier/theme.php:175 +#: view/theme/vier/config.php:131 view/theme/vier/theme.php:163 msgid "Last users" msgstr "" -#: view/theme/vier/theme.php:234 +#: view/theme/vier/theme.php:222 msgid "Quick Start" msgstr "" diff --git a/view/lang/cs/strings.php b/view/lang/cs/strings.php index 741dbf3bd3..e33686c236 100644 --- a/view/lang/cs/strings.php +++ b/view/lang/cs/strings.php @@ -573,7 +573,6 @@ $a->strings['An author or name was not found.'] = 'Autor nebo jméno nenalezeno' $a->strings['No browser URL could be matched to this address.'] = 'Této adrese neodpovídá žádné URL prohlížeče.'; $a->strings['Unable to match @-style Identity Address with a known protocol or email contact.'] = 'Není možné namapovat adresu identity ve stylu @ s žádným možným protokolem ani emailovým kontaktem.'; $a->strings['Use mailto: in front of address to force email check.'] = 'Použite mailo: před adresou k vynucení emailové kontroly.'; -$a->strings['The profile address specified belongs to a network which has been disabled on this site.'] = 'Zadaná adresa profilu patří do sítě, která byla na tomto serveru zakázána.'; $a->strings['Limited profile. This person will be unable to receive direct/personal notifications from you.'] = 'Omezený profil. Tato osoba nebude schopna od vás přijímat přímá/osobní oznámení.'; $a->strings['Unable to retrieve contact information.'] = 'Nepodařilo se získat kontaktní informace.'; $a->strings['Starts:'] = 'Začíná:'; @@ -616,7 +615,6 @@ $a->strings['g A l F d'] = 'g A, l d. F'; $a->strings['[No description]'] = '[Žádný popis]'; $a->strings['Event Reminders'] = 'Připomenutí událostí'; $a->strings['Upcoming events the next 7 days:'] = 'Nadcházející události v příštích 7 dnech:'; -$a->strings['OpenWebAuth: %1$s welcomes %2$s'] = 'OpenWebAuth: %1$s vítá uživatele %2$s'; $a->strings['Hometown:'] = 'Rodné město:'; $a->strings['Sexual Preference:'] = 'Sexuální orientace:'; $a->strings['Political Views:'] = 'Politické přesvědčení:'; @@ -860,7 +858,6 @@ $a->strings['When the database cleanup is enabled, this defines the days after w $a->strings['Lifespan of unclaimed items'] = 'Životnost nevyžádaných položek'; $a->strings['When the database cleanup is enabled, this defines the days after which unclaimed remote items (mostly content from the relay) will be deleted. Default value is 90 days. Defaults to the general lifespan value of remote items if set to 0.'] = 'Pokud je zapnuto čištění databáze, tato funkce definuje počet dnů, po kterých budou smazány nevyžádané vzdálené položky (většinou obsah z přeposílacího serveru). Výchozí hodnota je 90 dní. Pokud je zadaná hodnota 0, výchozí hodnotou bude obecná hodnota životnosti vzdálených položek.'; $a->strings['Lifespan of raw conversation data'] = 'Životnost hrubých dat konverzací'; -$a->strings['The conversation data is used for ActivityPub and OStatus, as well as for debug purposes. It should be safe to remove it after 14 days, default is 90 days.'] = 'Data konverzací jsou použita pro ActivityPub a OStatus a pro účely ladění. Mělo by být bezpečné je odstranit po 14 dnech, výchozí hodnota je 90 dní.'; $a->strings['Maximum numbers of comments per post'] = 'Maximální počet komentářů k příspěvku'; $a->strings['How much comments should be shown for each post? Default value is 100.'] = 'Kolik komentářů by mělo být zobrazeno k každému příspěvku? Výchozí hodnotou je 100.'; $a->strings['Temp path'] = 'Cesta k dočasným souborům'; @@ -1057,7 +1054,6 @@ $a->strings['Submit Request'] = 'Odeslat požadavek'; $a->strings['You already added this contact.'] = 'Již jste si tento kontakt přidal/a'; $a->strings['The network type couldn\'t be detected. Contact can\'t be added.'] = 'Typ sítě nemohl být detekován. Kontakt nemůže být přidán.'; $a->strings['Diaspora support isn\'t enabled. Contact can\'t be added.'] = 'Podpora pro Diasporu není zapnuta. Kontakt nemůže být přidán.'; -$a->strings['OStatus support is disabled. Contact can\'t be added.'] = 'Podpora pro OStatus je vypnnuta. Kontakt nemůže být přidán.'; $a->strings['Please answer the following:'] = 'Odpovězte, prosím, následující:'; $a->strings['Your Identity Address:'] = 'Vaše adresa identity:'; $a->strings['Profile URL'] = 'URL profilu'; @@ -1361,8 +1357,6 @@ $a->strings['Show unread'] = 'Zobrazit nepřečtené'; $a->strings['{0} requested registration'] = '{0} požaduje registraci'; $a->strings['Authorize application connection'] = 'Povolit připojení aplikacím'; $a->strings['Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?'] = 'Chcete umožnit této aplikaci přístup k vašim příspěvkům a kontaktům a/nebo k vytváření Vašich nových příspěvků?'; -$a->strings['Resubscribing to OStatus contacts'] = 'Znovu Vás registruji ke kontaktům OStatus'; -$a->strings['Keep this window open until done.'] = 'Toto okno nechte otevřené až do konce.'; $a->strings['No contact provided.'] = 'Nebyl poskytnut žádný kontakt.'; $a->strings['Couldn\'t fetch information for contact.'] = 'Nelze načíst informace pro kontakt.'; $a->strings['Couldn\'t fetch friends for contact.'] = 'Nelze načíst přátele pro kontakt.'; @@ -1370,6 +1364,7 @@ $a->strings['Done'] = 'Hotovo'; $a->strings['success'] = 'úspěch'; $a->strings['failed'] = 'selhalo'; $a->strings['ignored'] = 'ignorován'; +$a->strings['Keep this window open until done.'] = 'Toto okno nechte otevřené až do konce.'; $a->strings['Invalid photo with id %s.'] = 'Neplatná fotka s ID %s.'; $a->strings['Edit post'] = 'Upravit příspěvek'; $a->strings['web link'] = 'webový odkaz'; @@ -1384,9 +1379,9 @@ $a->strings['Remote privacy information not available.'] = 'Vzdálené informace $a->strings['Visible to:'] = 'Viditelné pro:'; $a->strings['Followers (%s)'] = 'Sledující (%s)'; $a->strings['No contacts.'] = 'Žádné kontakty.'; -$a->strings['%s\'s timeline'] = 'Časová osa uživatele %s'; $a->strings['%s\'s posts'] = 'Příspěvky uživatele %s'; $a->strings['%s\'s comments'] = 'Komentáře uživatele %s'; +$a->strings['%s\'s timeline'] = 'Časová osa uživatele %s'; $a->strings['Image exceeds size limit of %s'] = 'Velikost obrázku překročila limit %s'; $a->strings['Image upload didn\'t complete, please try again'] = 'Nahrávání obrázku nebylo dokončeno, zkuste to prosím znovu'; $a->strings['Image file is missing'] = 'Chybí soubor obrázku'; @@ -1524,7 +1519,6 @@ $a->strings['Diaspora (Socialhome, Hubzilla)'] = 'Diaspora (Socialhome, Hubzilla $a->strings['Email access is disabled on this site.'] = 'Přístup k e-mailu je na tomto serveru zakázán.'; $a->strings['None'] = 'Žádné'; $a->strings['General Social Media Settings'] = 'Obecná nastavení sociálních sítí'; -$a->strings['Repair OStatus subscriptions'] = 'Opravit odběry z OStatus'; $a->strings['Email/Mailbox Setup'] = 'Nastavení e-mailu'; $a->strings['If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox.'] = 'Pokud chcete komunikovat pomocí této služby s vašimi kontakty z e-mailu (volitelné), uveďte, jak se připojit k Vaší e-mailové schránce.'; $a->strings['Last successful email check:'] = 'Poslední úspěšná kontrola e-mailu:'; @@ -1720,7 +1714,6 @@ $a->strings['%s commented on %s\'s post'] = '%s okomentoval/a příspěvek uživ $a->strings['%s created a new post'] = '%s vytvořil nový příspěvek'; $a->strings['Friend Suggestion'] = 'Návrh přátelství'; $a->strings['Friend/Connect Request'] = 'Požadavek o přátelství/spojení'; -$a->strings['New Follower'] = 'Nový sledující'; $a->strings['%1$s sent you a new private message at %2$s.'] = '%1$s vám poslal/a novou soukromou zprávu na %2$s.'; $a->strings['a private message'] = 'soukromou zprávu'; $a->strings['%1$s sent you %2$s.'] = '%1$s vám poslal/a %2$s.'; @@ -1781,10 +1774,7 @@ $a->strings['%d comment'] = [ ]; $a->strings['Show more'] = 'Zobrazit více'; $a->strings['Show fewer'] = 'Zobrazit méně'; -$a->strings['%s is now following %s.'] = '%s nyní sleduje %s.'; -$a->strings['following'] = 'sleduji'; -$a->strings['%s stopped following %s.'] = '%s přestal/a sledovat uživatele %s.'; -$a->strings['stopped following'] = 'přestal/a sledovat'; $a->strings['Login failed.'] = 'Přihlášení se nezdařilo.'; $a->strings['Welcome %s'] = 'Vítejte, %s'; $a->strings['Please upload a profile photo.'] = 'Prosím nahrajte profilovou fotku.'; +$a->strings['OpenWebAuth: %1$s welcomes %2$s'] = 'OpenWebAuth: %1$s vítá uživatele %2$s'; diff --git a/view/lang/de/messages.po b/view/lang/de/messages.po index ec43a39abf..805fc69c30 100644 --- a/view/lang/de/messages.po +++ b/view/lang/de/messages.po @@ -1,8 +1,7 @@ # FRIENDICA Distributed Social Network -# SPDX-FileCopyrightText: Copyright (C) 2010-2024, the Friendica project -# -# SPDX-License-Identifier: AGPL-3.0-or-later -# +# Copyright (C) 2010-2024, the Friendica project +# This file is distributed under the same license as the Friendica package. +# # Translators: # Andreas H., 2015 # Andreas H., 2015-2018 @@ -58,7 +57,7 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-08-11 06:43+0000\n" +"POT-Creation-Date: 2024-10-07 20:46+0000\n" "PO-Revision-Date: 2011-05-05 10:19+0000\n" "Last-Translator: Tobias Diekershoffupload_max_filesize
is set to %s (%s byte)"
msgstr "Die maximale Größe von Bildern in Bytes. Grundeinstellung ist 0, welches keine Limitierung durch die Bildgröße bedeutet. Du kannst k, m oder g als Abkürzung hinter der Zahl angeben um KiB, MIB oder GiB zu definieren.\n\t\t\t\t\t\t\t\t\t\t\t\t\tDer Wert der 1upload_max_filesize1
Variable in der php.ini
Datei muss diesem Limit mindestens entsprechen.\n\t\t\t\t\t\t\t\t\t\t\t\t\tDerzeit ist 3upload_max_filesize3
auf %s (%sByte) gesetzt."
-#: src/Module/Admin/Site.php:499
+#: src/Module/Admin/Site.php:489
msgid "Maximum image length"
msgstr "Maximale Bildlänge"
-#: src/Module/Admin/Site.php:499
+#: src/Module/Admin/Site.php:489
msgid ""
"Maximum length in pixels of the longest side of uploaded images. Default is "
"-1, which means no limits."
msgstr "Maximale Länge in Pixeln der längsten Seite eines hochgeladenen Bildes. Grundeinstellung ist -1, was keine Einschränkung bedeutet."
-#: src/Module/Admin/Site.php:500
+#: src/Module/Admin/Site.php:490
msgid "JPEG image quality"
msgstr "Qualität des JPEG Bildes"
-#: src/Module/Admin/Site.php:500
+#: src/Module/Admin/Site.php:490
msgid ""
"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
"100, which is full quality."
msgstr "Hochgeladene JPEG-Bilder werden mit dieser Qualität [0-100] gespeichert. Grundeinstellung ist 100, kein Qualitätsverlust."
-#: src/Module/Admin/Site.php:502
+#: src/Module/Admin/Site.php:491
+msgid "Maximum media file size"
+msgstr ""
+
+#: src/Module/Admin/Site.php:491
+#, php-format
+msgid ""
+"Maximum size in bytes of uploaded media files. Default is 0, which means no limits. You can put k, m, or g behind the desired value for KiB, MiB, GiB, respectively.\n"
+"\t\t\t\t\t\t\t\t\t\t\t\t\tThe value of upload_max_filesize
in your PHP.ini
needs be set to at least the desired limit.\n"
+"\t\t\t\t\t\t\t\t\t\t\t\t\tCurrently upload_max_filesize
is set to %s (%s byte)"
+msgstr ""
+
+#: src/Module/Admin/Site.php:496
msgid "Register policy"
msgstr "Registrierungsmethode"
-#: src/Module/Admin/Site.php:503
+#: src/Module/Admin/Site.php:497
msgid "Maximum Users"
msgstr "Maximale Benutzeranzahl"
-#: src/Module/Admin/Site.php:503
+#: src/Module/Admin/Site.php:497
msgid ""
"If defined, the register policy is automatically closed when the given "
"number of users is reached and reopens the registry when the number drops "
@@ -4782,167 +4792,167 @@ msgid ""
"not when the policy is set to approval."
msgstr "Falls definiert, wird die Registrierungsrichtlinie automatisch geschlossen, wenn die angegebene Anzahl von Benutzern erreicht ist, und die Registrierung wieder geöffnet, wenn die Anzahl unter den Grenzwert fällt. Dies funktioniert nur, wenn die Richtlinie auf \"Öffnen\" oder \"Schließen\" eingestellt ist, nicht aber, wenn die Richtlinie auf \"Genehmigung\" eingestellt ist."
-#: src/Module/Admin/Site.php:504
+#: src/Module/Admin/Site.php:498
msgid "Maximum Daily Registrations"
msgstr "Maximum täglicher Registrierungen"
-#: src/Module/Admin/Site.php:504
+#: src/Module/Admin/Site.php:498
msgid ""
"If registration is permitted above, this sets the maximum number of new user"
" registrations to accept per day. If register is set to closed, this "
"setting has no effect."
msgstr "Wenn die Registrierung weiter oben erlaubt ist, regelt dies die maximale Anzahl von Neuanmeldungen pro Tag. Wenn die Registrierung geschlossen ist, hat diese Einstellung keinen Effekt."
-#: src/Module/Admin/Site.php:505
+#: src/Module/Admin/Site.php:499
msgid "Register text"
msgstr "Registrierungstext"
-#: src/Module/Admin/Site.php:505
+#: src/Module/Admin/Site.php:499
msgid ""
"Will be displayed prominently on the registration page. You can use BBCode "
"here."
msgstr "Wird gut sichtbar auf der Registrierungsseite angezeigt. BBCode kann verwendet werden."
-#: src/Module/Admin/Site.php:506
+#: src/Module/Admin/Site.php:500
msgid "Forbidden Nicknames"
msgstr "Verbotene Spitznamen"
-#: src/Module/Admin/Site.php:506
+#: src/Module/Admin/Site.php:500
msgid ""
"Comma separated list of nicknames that are forbidden from registration. "
"Preset is a list of role names according RFC 2142."
msgstr "Durch Kommas getrennte Liste von Spitznamen, die von der Registrierung ausgeschlossen sind. Die Vorgabe ist eine Liste von Rollennamen nach RFC 2142."
-#: src/Module/Admin/Site.php:507
+#: src/Module/Admin/Site.php:501
msgid "Accounts abandoned after x days"
msgstr "Nutzerkonten gelten nach x Tagen als unbenutzt"
-#: src/Module/Admin/Site.php:507
+#: src/Module/Admin/Site.php:501
msgid ""
"Will not waste system resources polling external sites for abandonded "
"accounts. Enter 0 for no time limit."
msgstr "Verschwende keine System-Ressourcen auf das Pollen externer Seiten, wenn Konten nicht mehr benutzt werden. 0 eingeben für kein Limit."
-#: src/Module/Admin/Site.php:508
+#: src/Module/Admin/Site.php:502
msgid "Allowed friend domains"
msgstr "Erlaubte Domains für Kontakte"
-#: src/Module/Admin/Site.php:508
+#: src/Module/Admin/Site.php:502
msgid ""
"Comma separated list of domains which are allowed to establish friendships "
"with this site. Wildcards are accepted. Empty to allow any domains"
msgstr "Liste der Domains, die für Kontakte erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben."
-#: src/Module/Admin/Site.php:509
+#: src/Module/Admin/Site.php:503
msgid "Allowed email domains"
msgstr "Erlaubte Domains für E-Mails"
-#: src/Module/Admin/Site.php:509
+#: src/Module/Admin/Site.php:503
msgid ""
"Comma separated list of domains which are allowed in email addresses for "
"registrations to this site. Wildcards are accepted. Empty to allow any "
"domains"
msgstr "Liste der Domains, die für E-Mail-Adressen bei der Registrierung erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben."
-#: src/Module/Admin/Site.php:510
+#: src/Module/Admin/Site.php:504
msgid "Disallowed email domains"
msgstr "Nicht erlaubte Domains für E-Mails"
-#: src/Module/Admin/Site.php:510
+#: src/Module/Admin/Site.php:504
msgid ""
"Comma separated list of domains which are rejected as email addresses for "
"registrations to this site. Wildcards are accepted."
msgstr "Komma-getrennte Liste von Domains, die als E-Mail-Adressen für Registrierungen auf dieser Website abgelehnt werden. Platzhalter sind erlaubt."
-#: src/Module/Admin/Site.php:511
+#: src/Module/Admin/Site.php:505
msgid "No OEmbed rich content"
msgstr "OEmbed nicht verwenden"
-#: src/Module/Admin/Site.php:511
+#: src/Module/Admin/Site.php:505
msgid ""
"Don't show the rich content (e.g. embedded PDF), except from the domains "
"listed below."
msgstr "Verhindert das Einbetten von reichhaltigen Inhalten (z.B. eingebettete PDF Dateien). Ausgenommen von dieser Regel werden Domänen, die unten aufgeführt werden."
-#: src/Module/Admin/Site.php:512
+#: src/Module/Admin/Site.php:506
msgid "Trusted third-party domains"
msgstr "Vertrauenswürdige Drittanbieter-Domains"
-#: src/Module/Admin/Site.php:512
+#: src/Module/Admin/Site.php:506
msgid ""
"Comma separated list of domains from which content is allowed to be embedded"
" in posts like with OEmbed. All sub-domains of the listed domains are "
"allowed as well."
msgstr "Komma separierte Liste von Domains von denen Inhalte in Beiträgen eingebettet werden dürfen. Alle Subdomains werden ebenfalls akzeptiert."
-#: src/Module/Admin/Site.php:513
+#: src/Module/Admin/Site.php:507
msgid "Block public"
msgstr "Öffentlichen Zugriff blockieren"
-#: src/Module/Admin/Site.php:513
+#: src/Module/Admin/Site.php:507
msgid ""
"Check to block public access to all otherwise public personal pages on this "
"site unless you are currently logged in."
msgstr "Klicken, um öffentlichen Zugriff auf sonst öffentliche Profile zu blockieren, wenn man nicht eingeloggt ist."
-#: src/Module/Admin/Site.php:514
+#: src/Module/Admin/Site.php:508
msgid "Force publish"
msgstr "Erzwinge Veröffentlichung"
-#: src/Module/Admin/Site.php:514
+#: src/Module/Admin/Site.php:508
msgid ""
"Check to force all profiles on this site to be listed in the site directory."
msgstr "Klicken, um Anzeige aller Profile dieses Servers im Verzeichnis zu erzwingen."
-#: src/Module/Admin/Site.php:514
+#: src/Module/Admin/Site.php:508
msgid "Enabling this may violate privacy laws like the GDPR"
msgstr "Wenn du diese Option aktivierst, verstößt das unter Umständen gegen Gesetze wie die EU-DSGVO."
-#: src/Module/Admin/Site.php:515
+#: src/Module/Admin/Site.php:509
msgid "Global directory URL"
msgstr "URL des weltweiten Verzeichnisses"
-#: src/Module/Admin/Site.php:515
+#: src/Module/Admin/Site.php:509
msgid ""
"URL to the global directory. If this is not set, the global directory is "
"completely unavailable to the application."
msgstr "URL des weltweiten Verzeichnisses. Wenn diese nicht gesetzt ist, ist das Verzeichnis für die Applikation nicht erreichbar."
-#: src/Module/Admin/Site.php:516
+#: src/Module/Admin/Site.php:510
msgid "Private posts by default for new users"
msgstr "Private Beiträge als Standard für neue Nutzer"
-#: src/Module/Admin/Site.php:516
+#: src/Module/Admin/Site.php:510
msgid ""
"Set default post permissions for all new members to the default privacy "
"circle rather than public."
msgstr "Die Standard-Zugriffsrechte für neue Nutzer werden so gesetzt, dass als Voreinstellung in den privaten Circle gepostet wird anstelle von öffentlichen."
-#: src/Module/Admin/Site.php:517
+#: src/Module/Admin/Site.php:511
msgid "Don't include post content in email notifications"
msgstr "Inhalte von Beiträgen nicht in E-Mail-Benachrichtigungen versenden"
-#: src/Module/Admin/Site.php:517
+#: src/Module/Admin/Site.php:511
msgid ""
"Don't include the content of a post/comment/private message/etc. in the "
"email notifications that are sent out from this site, as a privacy measure."
msgstr "Inhalte von Beiträgen/Kommentaren/privaten Nachrichten/usw. zum Datenschutz nicht in E-Mail-Benachrichtigungen einbinden."
-#: src/Module/Admin/Site.php:518
+#: src/Module/Admin/Site.php:512
msgid "Disallow public access to addons listed in the apps menu."
msgstr "Öffentlichen Zugriff auf Addons im Apps Menü verbieten."
-#: src/Module/Admin/Site.php:518
+#: src/Module/Admin/Site.php:512
msgid ""
"Checking this box will restrict addons listed in the apps menu to members "
"only."
msgstr "Wenn ausgewählt, werden die im Apps Menü aufgeführten Addons nur angemeldeten Nutzern der Seite zur Verfügung gestellt."
-#: src/Module/Admin/Site.php:519
+#: src/Module/Admin/Site.php:513
msgid "Don't embed private images in posts"
msgstr "Private Bilder nicht in Beiträgen einbetten."
-#: src/Module/Admin/Site.php:519
+#: src/Module/Admin/Site.php:513
msgid ""
"Don't replace locally-hosted private photos in posts with an embedded copy "
"of the image. This means that contacts who receive posts containing private "
@@ -4950,11 +4960,11 @@ msgid ""
"while."
msgstr "Ersetze lokal gehostete, private Fotos in Beiträgen nicht mit einer eingebetteten Kopie des Bildes. Dies bedeutet, dass Kontakte, die Beiträge mit privaten Fotos erhalten, sich zunächst auf den jeweiligen Servern authentifizieren müssen, bevor die Bilder geladen und angezeigt werden, was eine gewisse Zeit dauert."
-#: src/Module/Admin/Site.php:520
+#: src/Module/Admin/Site.php:514
msgid "Explicit Content"
msgstr "Sensibler Inhalt"
-#: src/Module/Admin/Site.php:520
+#: src/Module/Admin/Site.php:514
msgid ""
"Set this to announce that your node is used mostly for explicit content that"
" might not be suited for minors. This information will be published in the "
@@ -4963,329 +4973,319 @@ msgid ""
"will be shown at the user registration page."
msgstr "Wähle dies, um anzuzeigen, dass dein Knoten hauptsächlich für explizite Inhalte verwendet wird, die möglicherweise nicht für Minderjährige geeignet sind. Diese Info wird in der Knoteninformation veröffentlicht und kann durch das Globale Verzeichnis genutzt werden, um deinen Knoten von den Auflistungen auszuschließen. Zusätzlich wird auf der Registrierungsseite ein Hinweis darüber angezeigt."
-#: src/Module/Admin/Site.php:521
+#: src/Module/Admin/Site.php:515
msgid "Only local search"
msgstr "Nur lokale Suche"
-#: src/Module/Admin/Site.php:521
+#: src/Module/Admin/Site.php:515
msgid ""
"Blocks search for users who are not logged in to prevent crawlers from "
"blocking your system."
msgstr "Sperrt die Suche für nicht eingeloggte Benutzer, um zu verhindern, dass Crawler Ihr System blockieren."
-#: src/Module/Admin/Site.php:522
+#: src/Module/Admin/Site.php:516
msgid "Blocked tags for trending tags"
msgstr "Blockierte Tags für Trend-Tags"
-#: src/Module/Admin/Site.php:522
+#: src/Module/Admin/Site.php:516
msgid ""
"Comma separated list of hashtags that shouldn't be displayed in the trending"
" tags."
msgstr "Durch Kommata getrennte Liste von Hashtags, die nicht in den Trending Tags angezeigt werden sollen."
-#: src/Module/Admin/Site.php:523
+#: src/Module/Admin/Site.php:517
msgid "Cache contact avatars"
msgstr "Kontaktprofilbilder zwischenspeichern"
-#: src/Module/Admin/Site.php:523
+#: src/Module/Admin/Site.php:517
msgid ""
"Locally store the avatar pictures of the contacts. This uses a lot of "
"storage space but it increases the performance."
msgstr "Die Profilbilder der Kontakte zwischenspeichern. Der Zwischenspeicher verbraucht viel Platz im Speicherplatz, verbessert aber die Performance."
-#: src/Module/Admin/Site.php:524
+#: src/Module/Admin/Site.php:518
msgid "Allow Users to set remote_self"
msgstr "Nutzern erlauben, das remote_self Flag zu setzen"
-#: src/Module/Admin/Site.php:524
+#: src/Module/Admin/Site.php:518
msgid ""
"With checking this, every user is allowed to mark every contact as a "
"remote_self in the repair contact dialog. Setting this flag on a contact "
"causes mirroring every posting of that contact in the users stream."
msgstr "Ist dies ausgewählt, kann jeder Nutzer jeden seiner Kontakte als remote_self (entferntes Konto) im \"Erweitert\"-Reiter der Kontaktansicht markieren. Nach dem Setzen dieses Flags werden alle Top-Level-Beiträge dieser Kontakte automatisch in den Stream dieses Nutzers gepostet (gespiegelt)."
-#: src/Module/Admin/Site.php:525
+#: src/Module/Admin/Site.php:519
msgid "Allow Users to set up relay channels"
msgstr "Benutzern erlauben Relaiskanäle einzurichten"
-#: src/Module/Admin/Site.php:525
+#: src/Module/Admin/Site.php:519
msgid ""
"If enabled, it is possible to create relay users that are used to reshare "
"content based on user defined channels."
msgstr "Wenn aktiviert, ist es möglich, Relaisbenutzer zu erstellen, die dazu verwendet werden, Inhalte basierend auf benutzerdefinierten Kanälen erneut zu teilen."
-#: src/Module/Admin/Site.php:526
+#: src/Module/Admin/Site.php:520
msgid "Adjust the feed poll frequency"
msgstr "Einstellen der Abrufhäufigkeit"
-#: src/Module/Admin/Site.php:526
+#: src/Module/Admin/Site.php:520
msgid "Automatically detect and set the best feed poll frequency."
msgstr "Automatisches Erkennen und Einstellen der besten Abrufhäufigkeit."
-#: src/Module/Admin/Site.php:527
+#: src/Module/Admin/Site.php:521
msgid "Minimum poll interval"
msgstr "Minimales Abfrageintervall"
-#: src/Module/Admin/Site.php:527
+#: src/Module/Admin/Site.php:521
msgid ""
"Minimal distance in minutes between two polls for mail and feed contacts. "
"Reasonable values are between 1 and 59."
msgstr "Minimaler Abstand in Minuten zwischen zwei Abfragen für Mail- und Feed-Kontakte. Sinnvolle Werte liegen zwischen 1 und 59."
-#: src/Module/Admin/Site.php:528
+#: src/Module/Admin/Site.php:522
msgid "Enable multiple registrations"
msgstr "Erlaube Mehrfachregistrierung"
-#: src/Module/Admin/Site.php:528
+#: src/Module/Admin/Site.php:522
msgid "Enable users to register additional accounts for use as pages."
msgstr "Erlaube es Benutzern weitere Konten für Organisationen o.ä. mit der gleichen E-Mail Adresse anzulegen."
-#: src/Module/Admin/Site.php:529
+#: src/Module/Admin/Site.php:523
msgid "Enable OpenID"
msgstr "OpenID aktivieren"
-#: src/Module/Admin/Site.php:529
+#: src/Module/Admin/Site.php:523
msgid "Enable OpenID support for registration and logins."
msgstr "OpenID Unterstützung bei der Registrierung und dem Login aktivieren."
-#: src/Module/Admin/Site.php:530
+#: src/Module/Admin/Site.php:524
msgid "Enable full name check"
msgstr "Namen auf Vollständigkeit überprüfen"
-#: src/Module/Admin/Site.php:530
+#: src/Module/Admin/Site.php:524
msgid ""
"Prevents users from registering with a display name with fewer than two "
"parts separated by spaces."
msgstr "Verhindert, dass sich Benutzer mit einem Anzeigenamen registrieren, der aus weniger als zwei durch Leerzeichen getrennten Teilen besteht."
-#: src/Module/Admin/Site.php:531
+#: src/Module/Admin/Site.php:525
msgid "Email administrators on new registration"
msgstr "Email den Administratoren bei neuen Registrierungen"
-#: src/Module/Admin/Site.php:531
+#: src/Module/Admin/Site.php:525
msgid ""
"If enabled and the system is set to an open registration, an email for each "
"new registration is sent to the administrators."
msgstr "Wenn diese Option aktiviert ist und die Registrierung auf offen eingestellt ist, wird den Administratoren bei jeder neuen Registierung eine Email geschickt."
-#: src/Module/Admin/Site.php:532
+#: src/Module/Admin/Site.php:526
msgid "Community pages for visitors"
msgstr "Für Besucher verfügbare Gemeinschaftsseite"
-#: src/Module/Admin/Site.php:532
+#: src/Module/Admin/Site.php:526
msgid ""
"Which community pages should be available for visitors. Local users always "
"see both pages."
msgstr "Welche Gemeinschaftsseiten sollen für Besucher dieses Knotens verfügbar sein? Lokale Nutzer können grundsätzlich beide Seiten verwenden."
-#: src/Module/Admin/Site.php:533
+#: src/Module/Admin/Site.php:527
msgid "Posts per user on community page"
msgstr "Anzahl der Beiträge pro Benutzer auf der Gemeinschaftsseite"
-#: src/Module/Admin/Site.php:533
+#: src/Module/Admin/Site.php:527
msgid ""
"The maximum number of posts per user on the local community page. This is "
"useful, when a single user floods the local community page."
msgstr "Die maximale Anzahl von Beiträgen pro Benutzer auf der lokalen Gemeinschaftsseite. Dies ist nützlich, wenn ein einzelner Benutzer die lokale Gemeinschaftsseite überflutet."
-#: src/Module/Admin/Site.php:534
+#: src/Module/Admin/Site.php:528
msgid "Posts per server on community page"
msgstr "Beiträge pro Server auf der Gemeinschaftsseite"
-#: src/Module/Admin/Site.php:534
+#: src/Module/Admin/Site.php:528
msgid ""
"The maximum number of posts per server on the global community page. This is"
" useful, when posts from a single server flood the global community page."
msgstr "Die maximale Anzahl von Beiträgen pro Server auf der globalen Gemeinschaftsseite. Dies ist nützlich, wenn Beiträge von einem einzelnen Server die globale Gemeinschaftsseite überfluten."
-#: src/Module/Admin/Site.php:536
+#: src/Module/Admin/Site.php:530
msgid "Enable Mail support"
msgstr "E-Mail Unterstützung aktivieren"
-#: src/Module/Admin/Site.php:536
+#: src/Module/Admin/Site.php:530
msgid ""
"Enable built-in mail support to poll IMAP folders and to reply via mail."
msgstr "Aktiviert die Unterstützung IMAP Ordner abzurufen und ermöglicht es auch auf E-Mails zu antworten."
-#: src/Module/Admin/Site.php:537
+#: src/Module/Admin/Site.php:531
msgid ""
"Mail support can't be enabled because the PHP IMAP module is not installed."
msgstr "E-Mail Unterstützung kann nicht aktiviert werden, da das PHP IMAP Modul nicht installiert ist."
-#: src/Module/Admin/Site.php:538
-msgid "Enable OStatus support"
-msgstr "OStatus Unterstützung aktivieren"
-
-#: src/Module/Admin/Site.php:538
-msgid ""
-"Enable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
-"communications in OStatus are public."
-msgstr "Aktiviere die OStatus (StatusNet, GNU Social usw.) Unterstützung. Die Kommunikation über das OStatus Protokoll ist grundsätzlich öffentlich."
-
-#: src/Module/Admin/Site.php:540
+#: src/Module/Admin/Site.php:533
msgid ""
"Diaspora support can't be enabled because Friendica was installed into a sub"
" directory."
msgstr "Diaspora Unterstützung kann nicht aktiviert werden, da Friendica in ein Unterverzeichnis installiert ist."
-#: src/Module/Admin/Site.php:541
+#: src/Module/Admin/Site.php:534
msgid "Enable Diaspora support"
msgstr "Diaspora-Unterstützung aktivieren"
-#: src/Module/Admin/Site.php:541
+#: src/Module/Admin/Site.php:534
msgid ""
"Enable built-in Diaspora network compatibility for communicating with "
"diaspora servers."
msgstr "Aktiviere die Unterstützung des Diaspora Protokolls zur Kommunikation mit Diaspora Servern."
-#: src/Module/Admin/Site.php:542
+#: src/Module/Admin/Site.php:535
msgid "Verify SSL"
msgstr "SSL Überprüfen"
-#: src/Module/Admin/Site.php:542
+#: src/Module/Admin/Site.php:535
msgid ""
"If you wish, you can turn on strict certificate checking. This will mean you"
" cannot connect (at all) to self-signed SSL sites."
msgstr "Wenn gewollt, kann man hier eine strenge Zertifikatskontrolle einstellen. Das bedeutet, dass man zu keinen Seiten mit selbst unterzeichnetem SSL-Zertifikat eine Verbindung herstellen kann."
-#: src/Module/Admin/Site.php:543
+#: src/Module/Admin/Site.php:536
msgid "Proxy user"
msgstr "Proxy-Nutzer"
-#: src/Module/Admin/Site.php:543
+#: src/Module/Admin/Site.php:536
msgid "User name for the proxy server."
msgstr "Nutzername für den Proxy-Server"
-#: src/Module/Admin/Site.php:544
+#: src/Module/Admin/Site.php:537
msgid "Proxy URL"
msgstr "Proxy-URL"
-#: src/Module/Admin/Site.php:544
+#: src/Module/Admin/Site.php:537
msgid ""
"If you want to use a proxy server that Friendica should use to connect to "
"the network, put the URL of the proxy here."
msgstr "Wenn Friendica einen Proxy-Server verwenden soll um das Netzwerk zu erreichen, füge hier die URL des Proxys ein."
-#: src/Module/Admin/Site.php:545
+#: src/Module/Admin/Site.php:538
msgid "Network timeout"
msgstr "Netzwerk-Wartezeit"
-#: src/Module/Admin/Site.php:545
+#: src/Module/Admin/Site.php:538
msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
msgstr "Der Wert ist in Sekunden. Setze 0 für unbegrenzt (nicht empfohlen)."
-#: src/Module/Admin/Site.php:546
+#: src/Module/Admin/Site.php:539
msgid "Maximum Load Average"
msgstr "Maximum Load Average"
-#: src/Module/Admin/Site.php:546
+#: src/Module/Admin/Site.php:539
#, php-format
msgid ""
"Maximum system load before delivery and poll processes are deferred - "
"default %d."
msgstr "Maximale System-LOAD bevor Verteil- und Empfangsprozesse verschoben werden - Standard %d"
-#: src/Module/Admin/Site.php:547
+#: src/Module/Admin/Site.php:540
msgid "Minimal Memory"
msgstr "Minimaler Speicher"
-#: src/Module/Admin/Site.php:547
+#: src/Module/Admin/Site.php:540
msgid ""
"Minimal free memory in MB for the worker. Needs access to /proc/meminfo - "
"default 0 (deactivated)."
msgstr "Minimal freier Speicher in MB für den Worker Prozess. Benötigt Zugriff auf /proc/meminfo - Standardwert ist 0 (deaktiviert)"
-#: src/Module/Admin/Site.php:548
+#: src/Module/Admin/Site.php:541
msgid "Periodically optimize tables"
msgstr "Optimiere die Tabellen regelmäßig"
-#: src/Module/Admin/Site.php:548
+#: src/Module/Admin/Site.php:541
msgid "Periodically optimize tables like the cache and the workerqueue"
msgstr "Optimiert Tabellen wie den Cache oder die Worker-Warteschlage regelmäßig."
-#: src/Module/Admin/Site.php:550
+#: src/Module/Admin/Site.php:543
msgid "Discover followers/followings from contacts"
msgstr "Endecke folgende und gefolgte Kontakte von Kontakten"
-#: src/Module/Admin/Site.php:550
+#: src/Module/Admin/Site.php:543
msgid ""
"If enabled, contacts are checked for their followers and following contacts."
msgstr "Ist dies aktiv, werden die Kontakte auf deren folgenden und gefolgten Kontakte überprüft."
-#: src/Module/Admin/Site.php:551
+#: src/Module/Admin/Site.php:544
msgid "None - deactivated"
msgstr "Keine - deaktiviert"
-#: src/Module/Admin/Site.php:552
+#: src/Module/Admin/Site.php:545
msgid ""
"Local contacts - contacts of our local contacts are discovered for their "
"followers/followings."
msgstr "Lokale Kontakte - Die Beziehungen der lokalen Kontakte werden analysiert."
-#: src/Module/Admin/Site.php:553
+#: src/Module/Admin/Site.php:546
msgid ""
"Interactors - contacts of our local contacts and contacts who interacted on "
"locally visible postings are discovered for their followers/followings."
msgstr "Interaktionen - Kontakte der lokalen Kontakte sowie die Profile die mit öffentlichen lokalen Beiträgen interagiert haben, werden bzgl. ihrer Beziehungen analysiert."
-#: src/Module/Admin/Site.php:555
+#: src/Module/Admin/Site.php:548
msgid "Only update contacts/servers with local data"
msgstr "Nur Kontakte/Server mit lokalen Daten aktualisieren"
-#: src/Module/Admin/Site.php:555
+#: src/Module/Admin/Site.php:548
msgid ""
"If enabled, the system will only look for changes in contacts and servers "
"that engaged on this system by either being in a contact list of a user or "
"when posts or comments exists from the contact on this system."
msgstr "Wenn diese Option aktiviert ist, sucht das System nur nach Änderungen bei Kontakten und Servern, die mit dieser Instanz interagiert haben, indem sie entweder in einer Kontaktliste eines Benutzers enthalten sind oder wenn Beiträge oder Kommentare von diesem Kontakt in dieser Instanz vorhanden sind."
-#: src/Module/Admin/Site.php:556
+#: src/Module/Admin/Site.php:549
msgid "Synchronize the contacts with the directory server"
msgstr "Gleiche die Kontakte mit dem Directory-Server ab"
-#: src/Module/Admin/Site.php:556
+#: src/Module/Admin/Site.php:549
msgid ""
"if enabled, the system will check periodically for new contacts on the "
"defined directory server."
msgstr "Ist dies aktiv, wird das System regelmäßig auf dem Verzeichnis-Server nach neuen potentiellen Kontakten nachsehen."
-#: src/Module/Admin/Site.php:558
+#: src/Module/Admin/Site.php:551
msgid "Discover contacts from other servers"
msgstr "Neue Kontakte auf anderen Servern entdecken"
-#: src/Module/Admin/Site.php:558
+#: src/Module/Admin/Site.php:551
msgid ""
"Periodically query other servers for contacts and servers that they know of."
" The system queries Friendica, Mastodon and Hubzilla servers. Keep it "
"deactivated on small machines to decrease the database size and load."
msgstr "Regelmäßige Abfrage anderer Server nach Kontakten und Servern, welche dort bekannt sind. Das System fragt Friendica, Mastodon und Hubzilla Server ab. Lass diese Options auf kleinen Instanzen deaktiviert, um die Datenbankgröße und -last zu verringern."
-#: src/Module/Admin/Site.php:559
+#: src/Module/Admin/Site.php:552
msgid "Days between requery"
msgstr "Tage zwischen erneuten Abfragen"
-#: src/Module/Admin/Site.php:559
+#: src/Module/Admin/Site.php:552
msgid ""
"Number of days after which a server is requeried for their contacts and "
"servers it knows of. This is only used when the discovery is activated."
msgstr "Anzahl der Tage, nach denen ein Server nach seinen Kontakten und den ihm bekannten Servern abgefragt wird. Dies wird nur verwendet, wenn die Erkennung aktiviert ist."
-#: src/Module/Admin/Site.php:560
+#: src/Module/Admin/Site.php:553
msgid "Search the local directory"
msgstr "Lokales Verzeichnis durchsuchen"
-#: src/Module/Admin/Site.php:560
+#: src/Module/Admin/Site.php:553
msgid ""
"Search the local directory instead of the global directory. When searching "
"locally, every search will be executed on the global directory in the "
"background. This improves the search results when the search is repeated."
msgstr "Suche im lokalen Verzeichnis anstelle des globalen Verzeichnisses durchführen. Jede Suche wird im Hintergrund auch im globalen Verzeichnis durchgeführt, um die Suchresultate zu verbessern, wenn die Suche wiederholt wird."
-#: src/Module/Admin/Site.php:562
+#: src/Module/Admin/Site.php:555
msgid "Publish server information"
msgstr "Server-Informationen veröffentlichen"
-#: src/Module/Admin/Site.php:562
+#: src/Module/Admin/Site.php:555
msgid ""
"If enabled, general server and usage data will be published. The data "
"contains the name and version of the server, number of users with public "
@@ -5293,50 +5293,50 @@ msgid ""
" href=\"http://the-federation.info/\">the-federation.info for details."
msgstr "Wenn aktiviert, werden allgemeine Informationen über den Server und Nutzungsdaten veröffentlicht. Die Daten beinhalten den Namen sowie die Version des Servers, die Anzahl der Personen mit öffentlichen Profilen, die Anzahl der Beiträge sowie aktivierte Protokolle und Konnektoren. Für Details bitte the-federation.info aufrufen."
-#: src/Module/Admin/Site.php:564
+#: src/Module/Admin/Site.php:557
msgid "Check upstream version"
msgstr "Suche nach Updates"
-#: src/Module/Admin/Site.php:564
+#: src/Module/Admin/Site.php:557
msgid ""
"Enables checking for new Friendica versions at github. If there is a new "
"version, you will be informed in the admin panel overview."
msgstr "Wenn diese Option aktiviert ist, wird regelmäßig nach neuen Friendica-Versionen auf github gesucht. Wenn es eine neue Version gibt, wird dies auf der Übersichtsseite im Admin-Panel angezeigt."
-#: src/Module/Admin/Site.php:565
+#: src/Module/Admin/Site.php:558
msgid "Suppress Tags"
msgstr "Tags unterdrücken"
-#: src/Module/Admin/Site.php:565
+#: src/Module/Admin/Site.php:558
msgid "Suppress showing a list of hashtags at the end of the posting."
msgstr "Unterdrückt die Anzeige von Tags am Ende eines Beitrags."
-#: src/Module/Admin/Site.php:566
+#: src/Module/Admin/Site.php:559
msgid "Clean database"
msgstr "Datenbank aufräumen"
-#: src/Module/Admin/Site.php:566
+#: src/Module/Admin/Site.php:559
msgid ""
"Remove old remote items, orphaned database records and old content from some"
" other helper tables."
msgstr "Entferne alte Beiträge von anderen Knoten, verwaiste Einträge und alten Inhalt einiger Hilfstabellen."
-#: src/Module/Admin/Site.php:567
+#: src/Module/Admin/Site.php:560
msgid "Lifespan of remote items"
msgstr "Lebensdauer von Beiträgen anderer Knoten"
-#: src/Module/Admin/Site.php:567
+#: src/Module/Admin/Site.php:560
msgid ""
"When the database cleanup is enabled, this defines the days after which "
"remote items will be deleted. Own items, and marked or filed items are "
"always kept. 0 disables this behaviour."
msgstr "Wenn das Aufräumen der Datenbank aktiviert ist, definiert dies die Anzahl in Tagen, nach der Beiträge, die auf anderen Knoten des Netzwerks verfasst wurden, gelöscht werden sollen. Eigene Beiträge sowie markierte oder abgespeicherte Beiträge werden nicht gelöscht. Ein Wert von 0 deaktiviert das automatische Löschen von Beiträgen."
-#: src/Module/Admin/Site.php:568
+#: src/Module/Admin/Site.php:561
msgid "Lifespan of unclaimed items"
msgstr "Lebensdauer nicht angeforderter Beiträge"
-#: src/Module/Admin/Site.php:568
+#: src/Module/Admin/Site.php:561
msgid ""
"When the database cleanup is enabled, this defines the days after which "
"unclaimed remote items (mostly content from the relay) will be deleted. "
@@ -5344,185 +5344,184 @@ msgid ""
"items if set to 0."
msgstr "Wenn das Aufräumen der Datenbank aktiviert ist, definiert dies die Anzahl von Tagen, nach denen nicht angeforderte Beiträge (hauptsächlich solche, die über das Relais eintreffen) gelöscht werden. Der Standardwert beträgt 90 Tage. Wird dieser Wert auf 0 gesetzt, wird die Lebensdauer von Beiträgen anderer Knoten verwendet."
-#: src/Module/Admin/Site.php:569
+#: src/Module/Admin/Site.php:562
msgid "Lifespan of raw conversation data"
msgstr "Lebensdauer der Beiträge"
-#: src/Module/Admin/Site.php:569
+#: src/Module/Admin/Site.php:562
msgid ""
-"The conversation data is used for ActivityPub and OStatus, as well as for "
-"debug purposes. It should be safe to remove it after 14 days, default is 90 "
-"days."
-msgstr "Die Konversationsdaten werden für ActivityPub und OStatus sowie für Debug-Zwecke verwendet. Sie sollten gefahrlos nach 14 Tagen entfernt werden können, der Standardwert beträgt 90 Tage."
+"The conversation data is used for ActivityPub, as well as for debug "
+"purposes. It should be safe to remove it after 14 days, default is 90 days."
+msgstr ""
-#: src/Module/Admin/Site.php:570
+#: src/Module/Admin/Site.php:563
msgid "Maximum numbers of comments per post"
msgstr "Maximale Anzahl von Kommentaren pro Beitrag"
-#: src/Module/Admin/Site.php:570
+#: src/Module/Admin/Site.php:563
msgid "How much comments should be shown for each post? Default value is 100."
msgstr "Wie viele Kommentare sollen pro Beitrag angezeigt werden? Standardwert sind 100."
-#: src/Module/Admin/Site.php:571
+#: src/Module/Admin/Site.php:564
msgid "Maximum numbers of comments per post on the display page"
msgstr "Maximale Anzahl von Kommentaren in der Einzelansicht"
-#: src/Module/Admin/Site.php:571
+#: src/Module/Admin/Site.php:564
msgid ""
"How many comments should be shown on the single view for each post? Default "
"value is 1000."
msgstr "Wie viele Kommentare sollen auf der Einzelansicht eines Beitrags angezeigt werden? Grundeinstellung sind 1000."
-#: src/Module/Admin/Site.php:572
+#: src/Module/Admin/Site.php:565
msgid "Items per page"
msgstr "Beiträge pro Seite"
-#: src/Module/Admin/Site.php:572
+#: src/Module/Admin/Site.php:565
msgid ""
"Number of items per page in stream pages (network, community, "
"profile/contact statuses, search)."
msgstr "Anzahl der Elemente pro Seite in den Stream-Seiten (Netzwerk, Community, Profil/Kontaktstatus, Suche)."
-#: src/Module/Admin/Site.php:573
+#: src/Module/Admin/Site.php:566
msgid "Items per page for mobile devices"
msgstr "Beiträge pro Seite für mobile Endgeräte"
-#: src/Module/Admin/Site.php:573
+#: src/Module/Admin/Site.php:566
msgid ""
"Number of items per page in stream pages (network, community, "
"profile/contact statuses, search) for mobile devices."
msgstr "Anzahl der Beiträge pro Seite in Stream-Seiten (Netzwerk, Community, Profil-/Kontaktstatus, Suche) für mobile Endgeräte."
-#: src/Module/Admin/Site.php:574
+#: src/Module/Admin/Site.php:567
msgid "Temp path"
msgstr "Temp-Pfad"
-#: src/Module/Admin/Site.php:574
+#: src/Module/Admin/Site.php:567
msgid ""
"If you have a restricted system where the webserver can't access the system "
"temp path, enter another path here."
msgstr "Solltest du ein eingeschränktes System haben, auf dem der Webserver nicht auf das temp-Verzeichnis des Systems zugreifen kann, setze hier einen anderen Pfad."
-#: src/Module/Admin/Site.php:575
+#: src/Module/Admin/Site.php:568
msgid "Only search in tags"
msgstr "Nur in Tags suchen"
-#: src/Module/Admin/Site.php:575
+#: src/Module/Admin/Site.php:568
msgid "On large systems the text search can slow down the system extremely."
msgstr "Auf großen Knoten kann die Volltext-Suche das System ausbremsen."
-#: src/Module/Admin/Site.php:576
+#: src/Module/Admin/Site.php:569
msgid "Limited search scope"
msgstr "Suchfeld begrenzen"
-#: src/Module/Admin/Site.php:576
+#: src/Module/Admin/Site.php:569
msgid ""
"If enabled, searches will only be performed in the data used for the "
"channels and not in all posts."
msgstr "Ist dies aktiviert, werden bei Suchen nur die Daten der Kanäle durchsucht anstatt alle Beiträge zu durchsuchen."
-#: src/Module/Admin/Site.php:577
+#: src/Module/Admin/Site.php:570
msgid "Maximum age of items in the search table"
msgstr "Maximales Alter der Elemente in der Suchtabelle"
-#: src/Module/Admin/Site.php:577
+#: src/Module/Admin/Site.php:570
msgid ""
"Maximum age of items in the search table in days. Lower values will increase"
" the performance and reduce disk usage. 0 means no age restriction."
msgstr "Maximales Alter der Elemente in der Suchtabelle in Tagen. Niedrigere Werte erhöhen die Leistung und reduzieren den Festplattenverbrauch. 0 bedeutet keine Altersbeschränkung."
-#: src/Module/Admin/Site.php:578
+#: src/Module/Admin/Site.php:571
msgid "Generate counts per contact circle when calculating network count"
msgstr "Erstelle Zählungen je Circle bei der Berechnung der Netzwerkanzahl"
-#: src/Module/Admin/Site.php:578
+#: src/Module/Admin/Site.php:571
msgid ""
"On systems with users that heavily use contact circles the query can be very"
" expensive."
msgstr "Auf Systemen mit Benutzern, die häufig Circles verwenden, kann die Abfrage sehr aufwändig sein."
-#: src/Module/Admin/Site.php:579
+#: src/Module/Admin/Site.php:572
msgid "Process \"view\" activities"
msgstr "\"view\"-Aktivitäten verarbeiten"
-#: src/Module/Admin/Site.php:579
+#: src/Module/Admin/Site.php:572
msgid ""
"\"view\" activities are mostly geberated by Peertube systems. Per default "
"they are not processed for performance reasons. Only activate this option on"
" performant system."
msgstr "\"view\"-Aktivitäten werden zumeist von Peertube-Systemen genutzt. Standardmäßig werden sie aus Leistungsgründen nicht verarbeitet. Aktivieren Sie diese Option nur auf performanten Systemen."
-#: src/Module/Admin/Site.php:580
+#: src/Module/Admin/Site.php:573
msgid "Days, after which a contact is archived"
msgstr "Anzahl der Tage, nach denen ein Kontakt archiviert wird"
-#: src/Module/Admin/Site.php:580
+#: src/Module/Admin/Site.php:573
msgid ""
"Number of days that we try to deliver content or to update the contact data "
"before we archive a contact."
msgstr "Die Anzahl der Tage, die wir versuchen, Inhalte zu liefern oder die Kontaktdaten zu aktualisieren, bevor wir einen Kontakt archivieren."
-#: src/Module/Admin/Site.php:582
+#: src/Module/Admin/Site.php:575
msgid "Maximum number of parallel workers"
msgstr "Maximale Anzahl parallel laufender Worker"
-#: src/Module/Admin/Site.php:582
+#: src/Module/Admin/Site.php:575
#, php-format
msgid ""
"On shared hosters set this to %d. On larger systems, values of %d are great."
" Default value is %d."
msgstr "Wenn dein Knoten bei einem Shared Hoster ist, setze diesen Wert auf %d. Auf größeren Systemen funktioniert ein Wert von %d recht gut. Standardeinstellung sind %d."
-#: src/Module/Admin/Site.php:583
+#: src/Module/Admin/Site.php:576
msgid "Maximum load for workers"
msgstr "Maximale Last für Worker"
-#: src/Module/Admin/Site.php:583
+#: src/Module/Admin/Site.php:576
msgid "Maximum load that causes a cooldown before each worker function call."
msgstr "Maximale Auslastung des Systems, welche eine Verzögerung vor jedem Aufruf des Workers verursacht."
-#: src/Module/Admin/Site.php:584
+#: src/Module/Admin/Site.php:577
msgid "Enable fastlane"
msgstr "Aktiviere Fastlane"
-#: src/Module/Admin/Site.php:584
+#: src/Module/Admin/Site.php:577
msgid ""
"When enabed, the fastlane mechanism starts an additional worker if processes"
" with higher priority are blocked by processes of lower priority."
msgstr "Wenn aktiviert, wird der Fastlane-Mechanismus einen weiteren Worker-Prozeß starten, wenn Prozesse mit höherer Priorität von Prozessen mit niedrigerer Priorität blockiert werden."
-#: src/Module/Admin/Site.php:585
+#: src/Module/Admin/Site.php:578
msgid "Decoupled receiver"
msgstr "Entkoppelter Empfänger"
-#: src/Module/Admin/Site.php:585
+#: src/Module/Admin/Site.php:578
msgid ""
"Decouple incoming ActivityPub posts by processing them in the background via"
" a worker process. Only enable this on fast systems."
msgstr "Entkoppelt eingehende ActivityPub-Beiträge, indem sie im Hintergrund über einen Worker-Prozess verarbeitet werden. Aktiviere dies nur auf schnellen Systemen."
-#: src/Module/Admin/Site.php:586
+#: src/Module/Admin/Site.php:579
msgid "Cron interval"
msgstr "Cron Intervall"
-#: src/Module/Admin/Site.php:586
+#: src/Module/Admin/Site.php:579
msgid "Minimal period in minutes between two calls of the \"Cron\" worker job."
msgstr "Minimaler Intervall in Minuten zwischen zwei Aufrufen des \"Cron\" Arbeitsprozesses."
-#: src/Module/Admin/Site.php:587
+#: src/Module/Admin/Site.php:580
msgid "Worker defer limit"
msgstr "Worker-Verzögerungsgrenze"
-#: src/Module/Admin/Site.php:587
+#: src/Module/Admin/Site.php:580
msgid ""
"Per default the systems tries delivering for 15 times before dropping it."
msgstr "Standardmäßig versucht das System 15 Mal zuzustellen, bevor es den Vorgang abbricht."
-#: src/Module/Admin/Site.php:588
+#: src/Module/Admin/Site.php:581
msgid "Worker fetch limit"
msgstr "Worker Abrufbegrenzung"
-#: src/Module/Admin/Site.php:588
+#: src/Module/Admin/Site.php:581
msgid ""
"Number of worker tasks that are fetched in a single query. Higher values "
"should increase the performance, too high values will mostly likely decrease"
@@ -5530,214 +5529,214 @@ msgid ""
"system."
msgstr "Anzahl der Worker-Aufgaben, die in einer einzigen Abfrage abgerufen werden. Höhere Werte sollten die Leistung verbessern, zu hohe Werte werden sie wahrscheinlich verringern. Änder dies nur, wenn Du weißt, wie Du die Leistung des Systems messen kannst."
-#: src/Module/Admin/Site.php:590
+#: src/Module/Admin/Site.php:583
msgid "Direct relay transfer"
msgstr "Direkte Relais-Übertragung"
-#: src/Module/Admin/Site.php:590
+#: src/Module/Admin/Site.php:583
msgid ""
"Enables the direct transfer to other servers without using the relay servers"
msgstr "Aktiviert das direkte Verteilen an andere Server, ohne dass ein Relais-Server verwendet wird."
-#: src/Module/Admin/Site.php:591
+#: src/Module/Admin/Site.php:584
msgid "Relay scope"
msgstr "Geltungsbereich des Relais"
-#: src/Module/Admin/Site.php:591
+#: src/Module/Admin/Site.php:584
msgid ""
"Can be \"all\" or \"tags\". \"all\" means that every public post should be "
"received. \"tags\" means that only posts with selected tags should be "
"received."
msgstr "Der Wert kann entweder 'Alle' oder 'Schlagwörter' sein. 'Alle' bedeutet, dass alle öffentliche Beiträge empfangen werden sollen. 'Schlagwörter' schränkt dem Empfang auf Beiträge ein, die bestimmte Schlagwörter beinhalten."
-#: src/Module/Admin/Site.php:591 src/Module/Contact/Profile.php:328
-#: src/Module/Settings/TwoFactor/Index.php:146
+#: src/Module/Admin/Site.php:584 src/Module/Contact/Profile.php:314
+#: src/Module/Settings/TwoFactor/Index.php:132
msgid "Disabled"
msgstr "Deaktiviert"
-#: src/Module/Admin/Site.php:591
+#: src/Module/Admin/Site.php:584
msgid "all"
msgstr "Alle"
-#: src/Module/Admin/Site.php:591
+#: src/Module/Admin/Site.php:584
msgid "tags"
msgstr "Schlagwörter"
-#: src/Module/Admin/Site.php:592
+#: src/Module/Admin/Site.php:585
msgid "Server tags"
msgstr "Server-Schlagworte"
-#: src/Module/Admin/Site.php:592
+#: src/Module/Admin/Site.php:585
msgid "Comma separated list of tags for the \"tags\" subscription."
msgstr "Liste von Schlagworten, die abonniert werden sollen, mit Komma getrennt."
-#: src/Module/Admin/Site.php:593
+#: src/Module/Admin/Site.php:586
msgid "Deny Server tags"
msgstr "Server Tags ablehnen"
-#: src/Module/Admin/Site.php:593
+#: src/Module/Admin/Site.php:586
msgid "Comma separated list of tags that are rejected."
msgstr "Durch Kommas getrennte Liste der Tags, die abgelehnt werden"
-#: src/Module/Admin/Site.php:594
+#: src/Module/Admin/Site.php:587
msgid "Maximum amount of tags"
msgstr "Maximale Anzahl an Tags"
-#: src/Module/Admin/Site.php:594
+#: src/Module/Admin/Site.php:587
msgid ""
"Maximum amount of tags in a post before it is rejected as spam. The post has"
" to contain at least one link. Posts from subscribed accounts will not be "
"rejected."
msgstr "Maximale Anzahl von Tags in einem Beitrag, bevor er als Spam abgelehnt wird. Der Beitrag muss mindestens einen Link enthalten. Beiträge von abonnierten Konten werden nicht abgelehnt."
-#: src/Module/Admin/Site.php:595
+#: src/Module/Admin/Site.php:588
msgid "Allow user tags"
msgstr "Verwende Schlagworte der Nutzer"
-#: src/Module/Admin/Site.php:595
+#: src/Module/Admin/Site.php:588
msgid ""
"If enabled, the tags from the saved searches will used for the \"tags\" "
"subscription in addition to the \"relay_server_tags\"."
msgstr "Ist dies aktiviert, werden die Schlagwörter der gespeicherten Suchen zusätzlich zu den oben definierten Server-Schlagworten abonniert."
-#: src/Module/Admin/Site.php:596
+#: src/Module/Admin/Site.php:589
msgid "Deny undetected languages"
msgstr "Nicht erkannte Sprachen ablehnen"
-#: src/Module/Admin/Site.php:596
+#: src/Module/Admin/Site.php:589
msgid "If enabled, posts with undetected languages will be rejected."
msgstr "Wenn diese Option aktiviert ist, werden Beiträge mit nicht erkannten Sprachen abgelehnt."
-#: src/Module/Admin/Site.php:597
+#: src/Module/Admin/Site.php:590
msgid "Language Quality"
msgstr "Sprachqualität"
-#: src/Module/Admin/Site.php:597
+#: src/Module/Admin/Site.php:590
msgid "The minimum language quality that is required to accept the post."
msgstr "Die minimale erkannte Sprachqualität, die erforderlich ist, um den Beitrag anzunehmen."
-#: src/Module/Admin/Site.php:598
+#: src/Module/Admin/Site.php:591
msgid "Number of languages for the language detection"
msgstr "Anzahl der Sprachen für die Spracherkennung"
-#: src/Module/Admin/Site.php:598
+#: src/Module/Admin/Site.php:591
msgid ""
"The system detects a list of languages per post. Only if the desired "
"languages are in the list, the message will be accepted. The higher the "
"number, the more posts will be falsely detected."
msgstr "Das System erkennt eine Liste von Sprachen pro Beitrag. Nur wenn die gewünschten Sprachen in der Liste enthalten sind, wird die Nachricht akzeptiert. Je höher die Zahl, desto mehr Beiträge werden fälschlicherweise erkannt."
-#: src/Module/Admin/Site.php:600
+#: src/Module/Admin/Site.php:593
msgid "Maximum age of channel"
msgstr "Maximales Alter des Kanals"
-#: src/Module/Admin/Site.php:600
+#: src/Module/Admin/Site.php:593
msgid ""
"This defines the maximum age in hours of items that should be displayed in "
"channels. This affects the channel performance."
msgstr "Hier wird das maximale Alter in Stunden von Beiträgen festgelegt, die in Kanälen angezeigt werden sollen. Dies wirkt sich auf die Leistung der Kanäle aus."
-#: src/Module/Admin/Site.php:601
+#: src/Module/Admin/Site.php:594
msgid "Maximum number of channel posts"
msgstr "Maximale Anzahl von Kanalbeiträgen"
-#: src/Module/Admin/Site.php:601
+#: src/Module/Admin/Site.php:594
msgid ""
"For performance reasons, the channels use a dedicated table to store "
"content. The higher the value the slower the channels."
msgstr "Aus Leistungsgründen verwenden die Kanäle eine dedizierte Tabelle zur Speicherung von Inhalten. Je höher der Wert, desto langsamer sind die Kanäle."
-#: src/Module/Admin/Site.php:602
+#: src/Module/Admin/Site.php:595
msgid "Interaction score days"
msgstr "Interaktionsscore Tage"
-#: src/Module/Admin/Site.php:602
+#: src/Module/Admin/Site.php:595
msgid "Number of days that are used to calculate the interaction score."
msgstr "Anzahl der Tage, die zur Berechnung des Interaktionsscores herangezogen werden."
-#: src/Module/Admin/Site.php:603
+#: src/Module/Admin/Site.php:596
msgid "Maximum number of posts per author"
msgstr "Maximale Anzahl von Beiträgen pro Autor"
-#: src/Module/Admin/Site.php:603
+#: src/Module/Admin/Site.php:596
msgid ""
"Maximum number of posts per page by author if the contact frequency is set "
"to \"Display only few posts\". If there are more posts, then the post with "
"the most interactions will be displayed."
msgstr "Maximale Anzahl von Beiträgen pro Seite und Autor, wenn die Kontakthäufigkeit auf \"Nur wenige Beiträge anzeigen\" eingestellt ist. Wenn es mehr Beiträge gibt, wird der Beitrag mit den meisten Interaktionen angezeigt."
-#: src/Module/Admin/Site.php:604
+#: src/Module/Admin/Site.php:597
msgid "Sharer interaction days"
msgstr "Interaktionstage für teilende"
-#: src/Module/Admin/Site.php:604
+#: src/Module/Admin/Site.php:597
msgid ""
"Number of days of the last interaction that are used to define which sharers"
" are used for the \"sharers of sharers\" channel."
msgstr "Anzahl der Tage der letzten Interaktion, die verwendet werden, um festzulegen, welche teilenden für den Kanal \"Geteilt von teilenden\" verwendet werden."
-#: src/Module/Admin/Site.php:607
+#: src/Module/Admin/Site.php:600
msgid "Start Relocation"
msgstr "Umsiedlung starten"
-#: src/Module/Admin/Storage.php:46
+#: src/Module/Admin/Storage.php:32
#, php-format
msgid "Storage backend, %s is invalid."
msgstr "Speicher-Backend, %s ist ungültig."
-#: src/Module/Admin/Storage.php:73
+#: src/Module/Admin/Storage.php:59
#, php-format
msgid "Storage backend %s error: %s"
msgstr "Speicher-Backend %s Fehler %s"
-#: src/Module/Admin/Storage.php:84 src/Module/Admin/Storage.php:87
+#: src/Module/Admin/Storage.php:70 src/Module/Admin/Storage.php:73
msgid "Invalid storage backend setting value."
msgstr "Ungültige Einstellung für das Datenspeicher-Backend"
-#: src/Module/Admin/Storage.php:139
+#: src/Module/Admin/Storage.php:125
msgid "Current Storage Backend"
msgstr "Aktuelles Speicher-Backend"
-#: src/Module/Admin/Storage.php:140
+#: src/Module/Admin/Storage.php:126
msgid "Storage Configuration"
msgstr "Speicher Konfiguration"
-#: src/Module/Admin/Storage.php:141 src/Module/BaseAdmin.php:91
+#: src/Module/Admin/Storage.php:127 src/Module/BaseAdmin.php:77
msgid "Storage"
msgstr "Speicher"
-#: src/Module/Admin/Storage.php:143
+#: src/Module/Admin/Storage.php:129
msgid "Save & Use storage backend"
msgstr "Speichern & Dieses Speicher-Backend verwenden"
-#: src/Module/Admin/Storage.php:144
+#: src/Module/Admin/Storage.php:130
msgid "Use storage backend"
msgstr "Dieses Speicher-Backend verwenden"
-#: src/Module/Admin/Storage.php:145
+#: src/Module/Admin/Storage.php:131
msgid "Save & Reload"
msgstr "Speichern & Neu Laden"
-#: src/Module/Admin/Storage.php:146
+#: src/Module/Admin/Storage.php:132
msgid "This backend doesn't have custom settings"
msgstr "Dieses Backend hat keine zusätzlichen Einstellungen"
-#: src/Module/Admin/Storage.php:148
+#: src/Module/Admin/Storage.php:134
msgid ""
"Changing the current backend is prohibited because it is set by an "
"environment variable"
msgstr "Das Ändern des aktuellen Backends ist nicht möglich, da es durch eine Umgebungsvariable festgelegt ist"
-#: src/Module/Admin/Storage.php:150
+#: src/Module/Admin/Storage.php:136
msgid "Database (legacy)"
msgstr "Datenbank (legacy)"
-#: src/Module/Admin/Summary.php:55
+#: src/Module/Admin/Summary.php:41
#, php-format
msgid "Template engine (%s) error: %s"
msgstr "Template engine (%s) Fehler: %s"
-#: src/Module/Admin/Summary.php:59
+#: src/Module/Admin/Summary.php:45
#, php-format
msgid ""
"Your DB still runs with MyISAM tables. You should change the engine type to "
@@ -5748,7 +5747,7 @@ msgid ""
" an automatic conversion..htconfig.php
. Wie die Übertragung der Werte aussehen muss, kannst du der Konfiguration Hilfeseite entnehmen."
-#: src/Module/Admin/Summary.php:118
+#: src/Module/Admin/Summary.php:104
#, php-format
msgid ""
"Friendica's configuration now is stored in config/local.config.php, please "
@@ -5824,7 +5823,7 @@ msgid ""
"page for help with the transition."
msgstr "Die Konfiguration von Friendica befindet sich ab jetzt in der 'config/local.config.php' Datei. Kopiere bitte die Datei 'config/local-sample.config.php' nach 'config/local.config.php' und setze die Konfigurationvariablen so wie in der alten config/local.ini.php
. Wie die Übertragung der Werte aussehen muss, kannst du der Konfiguration Hilfeseite entnehmen."
-#: src/Module/Admin/Summary.php:124
+#: src/Module/Admin/Summary.php:110
#, php-format
msgid ""
"%s is not reachable on your system. This is a severe "
@@ -5832,107 +5831,107 @@ msgid ""
"href=\"%s\">the installation page for help."
msgstr "%s konnte von deinem System nicht aufgerufen werden. Dies deutet auf ein schwerwiegendes Problem deiner Konfiguration hin. Bitte konsultiere die Installations-Dokumentation zum Beheben des Problems."
-#: src/Module/Admin/Summary.php:148
+#: src/Module/Admin/Summary.php:134
#, php-format
msgid ""
"Friendica's system.basepath was updated from '%s' to '%s'. Please remove the"
" system.basepath from your db to avoid differences."
msgstr "Friendica's system.basepath wurde aktualisiert '%s' von '%s'. Bitte entferne system.basepath aus der Datenbank um Unterschiede zu vermeiden."
-#: src/Module/Admin/Summary.php:156
+#: src/Module/Admin/Summary.php:142
#, php-format
msgid ""
"Friendica's current system.basepath '%s' is wrong and the config file '%s' "
"isn't used."
msgstr "Friendica's aktueller system.basepath '%s' ist verkehrt und die config file '%s' wird nicht benutzt."
-#: src/Module/Admin/Summary.php:164
+#: src/Module/Admin/Summary.php:150
#, php-format
msgid ""
"Friendica's current system.basepath '%s' is not equal to the config file "
"'%s'. Please fix your configuration."
msgstr "Friendica's aktueller system.basepath '%s' ist nicht gleich wie die config file '%s'. Bitte korrigiere deine Konfiguration."
-#: src/Module/Admin/Summary.php:175
+#: src/Module/Admin/Summary.php:161
msgid "Message queues"
msgstr "Nachrichten-Warteschlangen"
-#: src/Module/Admin/Summary.php:181
+#: src/Module/Admin/Summary.php:167
msgid "Server Settings"
msgstr "Servereinstellungen"
-#: src/Module/Admin/Summary.php:199
+#: src/Module/Admin/Summary.php:185
msgid "Version"
msgstr "Version"
-#: src/Module/Admin/Summary.php:203
+#: src/Module/Admin/Summary.php:189
msgid "Active addons"
msgstr "Aktivierte Addons"
-#: src/Module/Admin/Themes/Details.php:63 src/Module/Admin/Themes/Index.php:71
+#: src/Module/Admin/Themes/Details.php:49 src/Module/Admin/Themes/Index.php:57
#, php-format
msgid "Theme %s disabled."
msgstr "Theme %s deaktiviert."
-#: src/Module/Admin/Themes/Details.php:65 src/Module/Admin/Themes/Index.php:73
+#: src/Module/Admin/Themes/Details.php:51 src/Module/Admin/Themes/Index.php:59
#, php-format
msgid "Theme %s successfully enabled."
msgstr "Theme %s erfolgreich aktiviert."
-#: src/Module/Admin/Themes/Details.php:67 src/Module/Admin/Themes/Index.php:75
+#: src/Module/Admin/Themes/Details.php:53 src/Module/Admin/Themes/Index.php:61
#, php-format
msgid "Theme %s failed to install."
msgstr "Theme %s konnte nicht aktiviert werden."
-#: src/Module/Admin/Themes/Details.php:89
+#: src/Module/Admin/Themes/Details.php:75
msgid "Screenshot"
msgstr "Bildschirmfoto"
-#: src/Module/Admin/Themes/Details.php:97
-#: src/Module/Admin/Themes/Index.php:118 src/Module/BaseAdmin.php:93
+#: src/Module/Admin/Themes/Details.php:83
+#: src/Module/Admin/Themes/Index.php:104 src/Module/BaseAdmin.php:79
msgid "Themes"
msgstr "Themen"
-#: src/Module/Admin/Themes/Embed.php:80
+#: src/Module/Admin/Themes/Embed.php:66
msgid "Unknown theme."
msgstr "Unbekanntes Theme"
-#: src/Module/Admin/Themes/Index.php:57
+#: src/Module/Admin/Themes/Index.php:43
msgid "Themes reloaded"
msgstr "Themes wurden neu geladen"
-#: src/Module/Admin/Themes/Index.php:120
+#: src/Module/Admin/Themes/Index.php:106
msgid "Reload active themes"
msgstr "Aktives Theme neu laden"
-#: src/Module/Admin/Themes/Index.php:124
+#: src/Module/Admin/Themes/Index.php:110
#, php-format
msgid "No themes found on the system. They should be placed in %1$s"
msgstr "Es wurden keine Themes auf dem System gefunden. Diese sollten in %1$s platziert werden."
-#: src/Module/Admin/Themes/Index.php:125
+#: src/Module/Admin/Themes/Index.php:111
msgid "[Experimental]"
msgstr "[Experimentell]"
-#: src/Module/Admin/Themes/Index.php:126
+#: src/Module/Admin/Themes/Index.php:112
msgid "[Unsupported]"
msgstr "[Nicht unterstützt]"
-#: src/Module/Admin/Tos.php:79
+#: src/Module/Admin/Tos.php:65
msgid "Display Terms of Service"
msgstr "Nutzungsbedingungen anzeigen"
-#: src/Module/Admin/Tos.php:79
+#: src/Module/Admin/Tos.php:65
msgid ""
"Enable the Terms of Service page. If this is enabled a link to the terms "
"will be added to the registration form and the general information page."
msgstr "Aktiviert die Seite für die Nutzungsbedingungen. Ist dies der Fall, werden sie auch von der Registrierungsseite und der allgemeinen Informationsseite verlinkt."
-#: src/Module/Admin/Tos.php:80
+#: src/Module/Admin/Tos.php:66
msgid "Display Privacy Statement"
msgstr "Datenschutzerklärung anzeigen"
-#: src/Module/Admin/Tos.php:80
+#: src/Module/Admin/Tos.php:66
#, php-format
msgid ""
"Show some informations regarding the needed information to operate the node "
@@ -5940,167 +5939,167 @@ msgid ""
"noreferrer\">EU-GDPR."
msgstr "Zeige Informationen über die zum Betrieb der Seite notwendigen, personenbezogenen Daten an, wie es z.B. die EU.-DSGVO verlangt."
-#: src/Module/Admin/Tos.php:81
+#: src/Module/Admin/Tos.php:67
msgid "Privacy Statement Preview"
msgstr "Vorschau: Datenschutzerklärung"
-#: src/Module/Admin/Tos.php:83
+#: src/Module/Admin/Tos.php:69
msgid "The Terms of Service"
msgstr "Die Nutzungsbedingungen"
-#: src/Module/Admin/Tos.php:83
+#: src/Module/Admin/Tos.php:69
msgid ""
"Enter the Terms of Service for your node here. You can use BBCode. Headers "
"of sections should be [h2] and below."
msgstr "Füge hier die Nutzungsbedingungen deines Knotens ein. Du kannst BBCode zur Formatierung verwenden. Überschriften sollten [h2] oder darunter sein."
-#: src/Module/Admin/Tos.php:84
+#: src/Module/Admin/Tos.php:70
msgid "The rules"
msgstr "Die Regeln"
-#: src/Module/Admin/Tos.php:84
+#: src/Module/Admin/Tos.php:70
msgid "Enter your system rules here. Each line represents one rule."
msgstr "Gib die Regeln deines Server hier ein. Jede Zeile steht für eine Regel."
-#: src/Module/Api/ApiResponse.php:293
+#: src/Module/Api/ApiResponse.php:279
#, php-format
msgid "API endpoint %s %s is not implemented but might be in the future."
msgstr "API Endpunkt %s %s ist noch nicht implementiert, vielleicht in der Zukunft."
-#: src/Module/Api/Mastodon/Apps.php:73
+#: src/Module/Api/Mastodon/Apps.php:59
msgid "Missing parameters"
msgstr "Fehlende Parameter"
-#: src/Module/Api/Mastodon/Statuses/Bookmark.php:50
+#: src/Module/Api/Mastodon/Statuses/Bookmark.php:36
msgid "Only starting posts can be bookmarked"
msgstr "Lesezeichen können nur für den ersten Beitrag einer Unterhaltung angelegt werden"
-#: src/Module/Api/Mastodon/Statuses/Mute.php:51
+#: src/Module/Api/Mastodon/Statuses/Mute.php:37
msgid "Only starting posts can be muted"
msgstr "Nur die ersten Beiträge von Unterhaltungen können stumm geschaltet werden"
-#: src/Module/Api/Mastodon/Statuses/Reblog.php:58
+#: src/Module/Api/Mastodon/Statuses/Reblog.php:44
#, php-format
msgid "Posts from %s can't be shared"
msgstr "Beiträge von %s können nicht geteilt werden"
-#: src/Module/Api/Mastodon/Statuses/Unbookmark.php:51
+#: src/Module/Api/Mastodon/Statuses/Unbookmark.php:37
msgid "Only starting posts can be unbookmarked"
msgstr "Lesezeichen können nur für die ersten Beiträge einer Unterhaltung entfernt werden"
-#: src/Module/Api/Mastodon/Statuses/Unmute.php:51
+#: src/Module/Api/Mastodon/Statuses/Unmute.php:37
msgid "Only starting posts can be unmuted"
msgstr "Nur die ersten Beiträge einer Unterhaltung können wieder auf laut gestellt werden"
-#: src/Module/Api/Mastodon/Statuses/Unreblog.php:64
+#: src/Module/Api/Mastodon/Statuses/Unreblog.php:50
#, php-format
msgid "Posts from %s can't be unshared"
msgstr "Beiträge von %s können nicht ungeteilt werden"
-#: src/Module/Api/Twitter/ContactEndpoint.php:66
+#: src/Module/Api/Twitter/ContactEndpoint.php:52
msgid "Contact not found"
msgstr "Kontakt nicht gefunden"
-#: src/Module/Apps.php:62
+#: src/Module/Apps.php:48
msgid "No installed applications."
msgstr "Keine Applikationen installiert."
-#: src/Module/Apps.php:67
+#: src/Module/Apps.php:53
msgid "Applications"
msgstr "Anwendungen"
-#: src/Module/Attach.php:49 src/Module/Attach.php:61
+#: src/Module/Attach.php:35 src/Module/Attach.php:47
msgid "Item was not found."
msgstr "Beitrag konnte nicht gefunden werden."
-#: src/Module/BaseAdmin.php:54 src/Module/BaseAdmin.php:58
-#: src/Module/BaseModeration.php:77 src/Module/BaseModeration.php:81
+#: src/Module/BaseAdmin.php:40 src/Module/BaseAdmin.php:44
+#: src/Module/BaseModeration.php:63 src/Module/BaseModeration.php:67
msgid "Please login to continue."
msgstr "Bitte melde dich an, um fortzufahren."
-#: src/Module/BaseAdmin.php:63
+#: src/Module/BaseAdmin.php:49
msgid "You don't have access to administration pages."
msgstr "Du hast keinen Zugriff auf die Administrationsseiten."
-#: src/Module/BaseAdmin.php:67
+#: src/Module/BaseAdmin.php:53
msgid ""
"Submanaged account can't access the administration pages. Please log back in"
" as the main account."
msgstr "Verwaltete Benutzerkonten haben keinen Zugriff auf die Administrationsseiten. Bitte wechsle wieder zurück auf das Administrator Konto."
-#: src/Module/BaseAdmin.php:86 src/Module/BaseModeration.php:109
+#: src/Module/BaseAdmin.php:72 src/Module/BaseModeration.php:95
msgid "Overview"
msgstr "Übersicht"
-#: src/Module/BaseAdmin.php:89 src/Module/BaseModeration.php:112
+#: src/Module/BaseAdmin.php:75 src/Module/BaseModeration.php:98
msgid "Configuration"
msgstr "Konfiguration"
-#: src/Module/BaseAdmin.php:94 src/Module/BaseSettings.php:110
+#: src/Module/BaseAdmin.php:80 src/Module/BaseSettings.php:96
msgid "Additional features"
msgstr "Zusätzliche Features"
-#: src/Module/BaseAdmin.php:97
+#: src/Module/BaseAdmin.php:83
msgid "Database"
msgstr "Datenbank"
-#: src/Module/BaseAdmin.php:98
+#: src/Module/BaseAdmin.php:84
msgid "DB updates"
msgstr "DB Updates"
-#: src/Module/BaseAdmin.php:99
+#: src/Module/BaseAdmin.php:85
msgid "Inspect Deferred Workers"
msgstr "Verzögerte Worker inspizieren"
-#: src/Module/BaseAdmin.php:100
+#: src/Module/BaseAdmin.php:86
msgid "Inspect worker Queue"
msgstr "Worker Warteschlange inspizieren"
-#: src/Module/BaseAdmin.php:106 src/Module/BaseModeration.php:120
+#: src/Module/BaseAdmin.php:92 src/Module/BaseModeration.php:106
msgid "Diagnostics"
msgstr "Diagnostik"
-#: src/Module/BaseAdmin.php:107
+#: src/Module/BaseAdmin.php:93
msgid "PHP Info"
msgstr "PHP-Info"
-#: src/Module/BaseAdmin.php:108
+#: src/Module/BaseAdmin.php:94
msgid "probe address"
msgstr "Adresse untersuchen"
-#: src/Module/BaseAdmin.php:109
+#: src/Module/BaseAdmin.php:95
msgid "check webfinger"
msgstr "Webfinger überprüfen"
-#: src/Module/BaseAdmin.php:110
+#: src/Module/BaseAdmin.php:96
msgid "Babel"
msgstr "Babel"
-#: src/Module/BaseAdmin.php:111 src/Module/Debug/ActivityPubConversion.php:143
+#: src/Module/BaseAdmin.php:97 src/Module/Debug/ActivityPubConversion.php:129
msgid "ActivityPub Conversion"
msgstr "Umwandlung nach ActivityPub"
-#: src/Module/BaseAdmin.php:120
+#: src/Module/BaseAdmin.php:106
msgid "Addon Features"
msgstr "Addon Features"
-#: src/Module/BaseAdmin.php:121 src/Module/BaseModeration.php:129
+#: src/Module/BaseAdmin.php:107 src/Module/BaseModeration.php:115
msgid "User registrations waiting for confirmation"
msgstr "Nutzeranmeldungen, die auf Bestätigung warten"
-#: src/Module/BaseApi.php:455 src/Module/BaseApi.php:471
-#: src/Module/BaseApi.php:487
+#: src/Module/BaseApi.php:441 src/Module/BaseApi.php:457
+#: src/Module/BaseApi.php:473
msgid "Too Many Requests"
msgstr "Zu viele Abfragen"
-#: src/Module/BaseApi.php:456
+#: src/Module/BaseApi.php:442
#, php-format
msgid "Daily posting limit of %d post reached. The post was rejected."
msgid_plural "Daily posting limit of %d posts reached. The post was rejected."
msgstr[0] "Das tägliche Limit von %d Beitrag wurde erreicht. Die Nachricht wurde verworfen."
msgstr[1] "Das tägliche Limit von %d Beiträgen wurde erreicht. Der Beitrag wurde verworfen."
-#: src/Module/BaseApi.php:472
+#: src/Module/BaseApi.php:458
#, php-format
msgid "Weekly posting limit of %d post reached. The post was rejected."
msgid_plural ""
@@ -6108,7 +6107,7 @@ msgid_plural ""
msgstr[0] "Das wöchentliche Limit von %d Beitrag wurde erreicht. Die Nachricht wurde verworfen."
msgstr[1] "Das wöchentliche Limit von %d Beiträgen wurde erreicht. Der Beitrag wurde verworfen."
-#: src/Module/BaseApi.php:488
+#: src/Module/BaseApi.php:474
#, php-format
msgid "Monthly posting limit of %d post reached. The post was rejected."
msgid_plural ""
@@ -6116,84 +6115,84 @@ msgid_plural ""
msgstr[0] "Das monatliche Limit von %d Beitrag wurde erreicht. Der Beitrag wurde verworfen."
msgstr[1] "Das monatliche Limit von %d Beiträgen wurde erreicht. Der Beitrag wurde verworfen."
-#: src/Module/BaseModeration.php:86
+#: src/Module/BaseModeration.php:72
msgid "You don't have access to moderation pages."
msgstr "Du hast keinen Zugriff zu den Moderationsseiten."
-#: src/Module/BaseModeration.php:90
+#: src/Module/BaseModeration.php:76
msgid ""
"Submanaged account can't access the moderation pages. Please log back in as "
"the main account."
msgstr "Das verwaltete Konto kann nicht auf die Moderationsseiten zugreifen. Bitte melde dich wieder mit dem Hauptkonto an."
-#: src/Module/BaseModeration.php:110 src/Module/Moderation/Reports.php:115
+#: src/Module/BaseModeration.php:96 src/Module/Moderation/Reports.php:101
msgid "Reports"
msgstr "Reports"
-#: src/Module/BaseModeration.php:113 src/Module/Moderation/Users/Index.php:148
-#: src/Module/Moderation/Users/Index.php:158
+#: src/Module/BaseModeration.php:99 src/Module/Moderation/Users/Index.php:134
+#: src/Module/Moderation/Users/Index.php:144
msgid "Users"
msgstr "Nutzer"
-#: src/Module/BaseModeration.php:115
+#: src/Module/BaseModeration.php:101
msgid "Tools"
msgstr "Werkzeuge"
-#: src/Module/BaseModeration.php:116
+#: src/Module/BaseModeration.php:102
msgid "Contact Blocklist"
msgstr "Kontakt Blockliste"
-#: src/Module/BaseModeration.php:117
+#: src/Module/BaseModeration.php:103
msgid "Server Blocklist"
msgstr "Server Blockliste"
-#: src/Module/BaseModeration.php:118 src/Module/Moderation/Item/Delete.php:62
+#: src/Module/BaseModeration.php:104 src/Module/Moderation/Item/Delete.php:48
msgid "Delete Item"
msgstr "Eintrag löschen"
-#: src/Module/BaseModeration.php:121 src/Module/Moderation/Item/Source.php:82
+#: src/Module/BaseModeration.php:107 src/Module/Moderation/Item/Source.php:68
msgid "Item Source"
msgstr "Beitrags Quelle"
-#: src/Module/BaseProfile.php:52 src/Module/Contact.php:513
+#: src/Module/BaseProfile.php:38 src/Module/Contact.php:488
msgid "Profile Details"
msgstr "Profildetails"
-#: src/Module/BaseProfile.php:60
+#: src/Module/BaseProfile.php:46
msgid "Conversations started"
msgstr "Begonnene Unterhaltungen"
-#: src/Module/BaseProfile.php:111
+#: src/Module/BaseProfile.php:97
msgid "Only You Can See This"
msgstr "Nur du kannst das sehen"
-#: src/Module/BaseProfile.php:116 src/Module/Profile/Schedule.php:81
+#: src/Module/BaseProfile.php:102 src/Module/Profile/Schedule.php:67
msgid "Scheduled Posts"
msgstr "Geplante Beiträge"
-#: src/Module/BaseProfile.php:119
+#: src/Module/BaseProfile.php:105
msgid "Posts that are scheduled for publishing"
msgstr "Beiträge die für einen späteren Zeitpunkt für die Veröffentlichung geplant sind"
-#: src/Module/BaseProfile.php:138 src/Module/BaseProfile.php:141
+#: src/Module/BaseProfile.php:124 src/Module/BaseProfile.php:127
msgid "Tips for New Members"
msgstr "Tipps für neue Nutzer"
-#: src/Module/BaseSearch.php:71
+#: src/Module/BaseSearch.php:57
#, php-format
msgid "People Search - %s"
msgstr "Personensuche - %s"
-#: src/Module/BaseSearch.php:75
+#: src/Module/BaseSearch.php:61
#, php-format
msgid "Group Search - %s"
msgstr "Gruppensuche - %s"
-#: src/Module/BaseSearch.php:121 src/Module/Contact/MatchInterests.php:140
+#: src/Module/BaseSearch.php:107 src/Module/Contact/MatchInterests.php:136
msgid "No matches"
msgstr "Keine Übereinstimmungen"
-#: src/Module/BaseSearch.php:147
+#: src/Module/BaseSearch.php:133
#, php-format
msgid ""
"%d result was filtered out because your node blocks the domain it is "
@@ -6206,832 +6205,828 @@ msgid_plural ""
msgstr[0] "%d Ergebnis wurde herausgefiltert, weil Ihr Knoten die Domäne blockiert, auf der das Ergebnis registriert ist. Sie können die Liste aller Domänen, die Ihr Knoten derzeit blockiert, auf der Info-Seite einsehen."
msgstr[1] "%d Ergebnisse wurden herausgefiltert, weil Ihr Knoten die Domäne blockiert, auf der die Ergebnisse registriert sind. Du kannst die Liste aller Domänen, die Ihr Knoten derzeit blockiert, auf derInfo-Seite einsehen."
-#: src/Module/BaseSettings.php:78
+#: src/Module/BaseSettings.php:64
msgid "Account"
msgstr "Nutzerkonto"
-#: src/Module/BaseSettings.php:85 src/Module/Security/TwoFactor/Verify.php:96
-#: src/Module/Settings/TwoFactor/Index.php:138
+#: src/Module/BaseSettings.php:71 src/Module/Security/TwoFactor/Verify.php:82
+#: src/Module/Settings/TwoFactor/Index.php:124
msgid "Two-factor authentication"
msgstr "Zwei-Faktor Authentifizierung"
-#: src/Module/BaseSettings.php:118
+#: src/Module/BaseSettings.php:104
msgid "Display"
msgstr "Anzeige"
-#: src/Module/BaseSettings.php:132 src/Module/Settings/Connectors.php:213
+#: src/Module/BaseSettings.php:118 src/Module/Settings/Connectors.php:195
msgid "Social Networks"
msgstr "Soziale Netzwerke"
-#: src/Module/BaseSettings.php:146 src/Module/Settings/Delegation.php:194
+#: src/Module/BaseSettings.php:132 src/Module/Settings/Delegation.php:180
msgid "Manage Accounts"
msgstr "Accounts Verwalten"
-#: src/Module/BaseSettings.php:153
+#: src/Module/BaseSettings.php:139
msgid "Connected apps"
msgstr "Verbundene Programme"
-#: src/Module/BaseSettings.php:160
+#: src/Module/BaseSettings.php:146
msgid "Remote servers"
msgstr "Remote Instanzen"
-#: src/Module/BaseSettings.php:167 src/Module/Settings/UserExport.php:98
+#: src/Module/BaseSettings.php:153 src/Module/Settings/UserExport.php:84
msgid "Export personal data"
msgstr "Persönliche Daten exportieren"
-#: src/Module/BaseSettings.php:174
+#: src/Module/BaseSettings.php:160
msgid "Remove account"
msgstr "Konto löschen"
-#: src/Module/Bookmarklet.php:54
+#: src/Module/Bookmarklet.php:40
msgid "This page is missing a url parameter."
msgstr "Der Seite fehlt ein URL Parameter."
-#: src/Module/Bookmarklet.php:66
+#: src/Module/Bookmarklet.php:52
msgid "The post was created"
msgstr "Der Beitrag wurde angelegt"
-#: src/Module/Calendar/Event/API.php:100 src/Module/Calendar/Event/API.php:135
-#: src/Module/Calendar/Event/Form.php:80
+#: src/Module/Calendar/Event/API.php:86 src/Module/Calendar/Event/API.php:121
+#: src/Module/Calendar/Event/Form.php:66
msgid "Invalid Request"
msgstr "Ungültige Anfrage"
-#: src/Module/Calendar/Event/API.php:109
+#: src/Module/Calendar/Event/API.php:95
msgid "Event id is missing."
msgstr "Die Veranstaltung fehlt."
-#: src/Module/Calendar/Event/API.php:131
+#: src/Module/Calendar/Event/API.php:117
msgid "Failed to remove event"
msgstr "Entfernen der Veranstaltung fehlgeschlagen"
-#: src/Module/Calendar/Event/API.php:187 src/Module/Calendar/Event/API.php:189
+#: src/Module/Calendar/Event/API.php:173 src/Module/Calendar/Event/API.php:175
msgid "Event can not end before it has started."
msgstr "Die Veranstaltung kann nicht enden, bevor sie beginnt."
-#: src/Module/Calendar/Event/API.php:196 src/Module/Calendar/Event/API.php:198
+#: src/Module/Calendar/Event/API.php:182 src/Module/Calendar/Event/API.php:184
msgid "Event title and start time are required."
msgstr "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden."
-#: src/Module/Calendar/Event/Form.php:208
+#: src/Module/Calendar/Event/Form.php:194
msgid "Starting date and Title are required."
msgstr "Anfangszeitpunkt und Titel werden benötigt"
-#: src/Module/Calendar/Event/Form.php:209
-#: src/Module/Calendar/Event/Form.php:214
+#: src/Module/Calendar/Event/Form.php:195
+#: src/Module/Calendar/Event/Form.php:200
msgid "Event Starts:"
msgstr "Veranstaltungsbeginn:"
-#: src/Module/Calendar/Event/Form.php:209
-#: src/Module/Calendar/Event/Form.php:237 src/Module/Debug/Probe.php:59
-#: src/Module/Install.php:201 src/Module/Install.php:227
-#: src/Module/Install.php:232 src/Module/Install.php:246
-#: src/Module/Install.php:255 src/Module/Install.php:260
-#: src/Module/Install.php:266 src/Module/Install.php:271
-#: src/Module/Install.php:285 src/Module/Install.php:298
-#: src/Module/Install.php:325
-#: src/Module/Moderation/Blocklist/Server/Add.php:136
-#: src/Module/Moderation/Blocklist/Server/Add.php:138
-#: src/Module/Moderation/Blocklist/Server/Import.php:129
-#: src/Module/Moderation/Blocklist/Server/Index.php:86
-#: src/Module/Moderation/Blocklist/Server/Index.php:87
-#: src/Module/Moderation/Blocklist/Server/Index.php:115
-#: src/Module/Moderation/Blocklist/Server/Index.php:116
-#: src/Module/Moderation/Item/Delete.php:67 src/Module/Register.php:155
-#: src/Module/Security/TwoFactor/Verify.php:101
-#: src/Module/Settings/Channels.php:190 src/Module/Settings/Channels.php:211
-#: src/Module/Settings/TwoFactor/Index.php:161
-#: src/Module/Settings/TwoFactor/Verify.php:158
+#: src/Module/Calendar/Event/Form.php:195
+#: src/Module/Calendar/Event/Form.php:223 src/Module/Debug/Probe.php:45
+#: src/Module/Install.php:187 src/Module/Install.php:213
+#: src/Module/Install.php:218 src/Module/Install.php:232
+#: src/Module/Install.php:241 src/Module/Install.php:246
+#: src/Module/Install.php:252 src/Module/Install.php:257
+#: src/Module/Install.php:271 src/Module/Install.php:284
+#: src/Module/Install.php:311
+#: src/Module/Moderation/Blocklist/Server/Add.php:122
+#: src/Module/Moderation/Blocklist/Server/Add.php:124
+#: src/Module/Moderation/Blocklist/Server/Import.php:113
+#: src/Module/Moderation/Blocklist/Server/Index.php:72
+#: src/Module/Moderation/Blocklist/Server/Index.php:73
+#: src/Module/Moderation/Blocklist/Server/Index.php:101
+#: src/Module/Moderation/Blocklist/Server/Index.php:102
+#: src/Module/Moderation/Item/Delete.php:53 src/Module/Register.php:141
+#: src/Module/Security/TwoFactor/Verify.php:87
+#: src/Module/Settings/Channels.php:176 src/Module/Settings/Channels.php:197
+#: src/Module/Settings/TwoFactor/Index.php:147
+#: src/Module/Settings/TwoFactor/Verify.php:144
msgid "Required"
msgstr "Benötigt"
-#: src/Module/Calendar/Event/Form.php:223
-#: src/Module/Calendar/Event/Form.php:247
+#: src/Module/Calendar/Event/Form.php:209
+#: src/Module/Calendar/Event/Form.php:233
msgid "Finish date/time is not known or not relevant"
msgstr "Enddatum/-zeit ist nicht bekannt oder nicht relevant"
-#: src/Module/Calendar/Event/Form.php:225
-#: src/Module/Calendar/Event/Form.php:230
+#: src/Module/Calendar/Event/Form.php:211
+#: src/Module/Calendar/Event/Form.php:216
msgid "Event Finishes:"
msgstr "Veranstaltungsende:"
-#: src/Module/Calendar/Event/Form.php:237
-#: src/Module/Calendar/Event/Form.php:243
+#: src/Module/Calendar/Event/Form.php:223
+#: src/Module/Calendar/Event/Form.php:229
msgid "Title (BBCode not allowed)"
msgstr "Titel (BBCode nicht erlaubt)"
-#: src/Module/Calendar/Event/Form.php:239
+#: src/Module/Calendar/Event/Form.php:225
msgid "Description (BBCode allowed)"
msgstr "Beschreibung (BBCode erlaubt)"
-#: src/Module/Calendar/Event/Form.php:241
+#: src/Module/Calendar/Event/Form.php:227
msgid "Location (BBCode not allowed)"
msgstr "Ort (BBCode nicht erlaubt)"
-#: src/Module/Calendar/Event/Form.php:244
-#: src/Module/Calendar/Event/Form.php:245
+#: src/Module/Calendar/Event/Form.php:230
+#: src/Module/Calendar/Event/Form.php:231
msgid "Share this event"
msgstr "Veranstaltung teilen"
-#: src/Module/Calendar/Event/Form.php:251 src/Module/Profile/Profile.php:277
+#: src/Module/Calendar/Event/Form.php:237 src/Module/Profile/Profile.php:263
msgid "Basic"
msgstr "Allgemein"
-#: src/Module/Calendar/Export.php:94
+#: src/Module/Calendar/Export.php:80
msgid "This calendar format is not supported"
msgstr "Dieses Kalenderformat wird nicht unterstützt."
-#: src/Module/Calendar/Export.php:96
+#: src/Module/Calendar/Export.php:82
msgid "No exportable data found"
msgstr "Keine exportierbaren Daten gefunden"
-#: src/Module/Calendar/Export.php:113
+#: src/Module/Calendar/Export.php:99
msgid "calendar"
msgstr "Kalender"
-#: src/Module/Calendar/Show.php:124
+#: src/Module/Calendar/Show.php:110
msgid "Events"
msgstr "Veranstaltungen"
-#: src/Module/Calendar/Show.php:125
+#: src/Module/Calendar/Show.php:111
msgid "View"
msgstr "Ansehen"
-#: src/Module/Calendar/Show.php:126
+#: src/Module/Calendar/Show.php:112
msgid "Create New Event"
msgstr "Neue Veranstaltung erstellen"
-#: src/Module/Calendar/Show.php:132 src/Module/Settings/Display.php:297
+#: src/Module/Calendar/Show.php:118 src/Module/Settings/Display.php:283
msgid "list"
msgstr "Liste"
-#: src/Module/Circle.php:57
+#: src/Module/Circle.php:43
msgid "Could not create circle."
msgstr "Der Circle konnte nicht erstellt werden."
-#: src/Module/Circle.php:68 src/Module/Circle.php:216
-#: src/Module/Circle.php:240
+#: src/Module/Circle.php:54 src/Module/Circle.php:202
+#: src/Module/Circle.php:226
msgid "Circle not found."
msgstr "Circle nicht gefunden."
-#: src/Module/Circle.php:74
+#: src/Module/Circle.php:60
msgid "Circle name was not changed."
msgstr "Der Name des Circles wurde nicht geändert."
-#: src/Module/Circle.php:92
+#: src/Module/Circle.php:78
msgid "Unknown circle."
msgstr "Unbekannter Circle."
-#: src/Module/Circle.php:98 src/Module/Circle.php:107
-#: src/Module/Contact/Advanced.php:70 src/Module/Contact/Advanced.php:109
-#: src/Module/Contact/Contacts.php:71 src/Module/Contact/Conversations.php:86
-#: src/Module/Contact/Conversations.php:91
-#: src/Module/Contact/Conversations.php:96 src/Module/Contact/Media.php:61
-#: src/Module/Contact/Posts.php:78 src/Module/Contact/Posts.php:83
-#: src/Module/Contact/Posts.php:88 src/Module/Contact/Profile.php:159
-#: src/Module/Contact/Profile.php:164 src/Module/Contact/Profile.php:183
-#: src/Module/Contact/Redir.php:91 src/Module/Contact/Redir.php:145
-#: src/Module/FriendSuggest.php:71 src/Module/FriendSuggest.php:109
+#: src/Module/Circle.php:84 src/Module/Circle.php:93
+#: src/Module/Contact/Advanced.php:56 src/Module/Contact/Advanced.php:95
+#: src/Module/Contact/Contacts.php:57 src/Module/Contact/Conversations.php:72
+#: src/Module/Contact/Conversations.php:77
+#: src/Module/Contact/Conversations.php:82 src/Module/Contact/Media.php:47
+#: src/Module/Contact/Posts.php:64 src/Module/Contact/Posts.php:69
+#: src/Module/Contact/Posts.php:74 src/Module/Contact/Profile.php:145
+#: src/Module/Contact/Profile.php:150 src/Module/Contact/Profile.php:169
+#: src/Module/Contact/Redir.php:77 src/Module/Contact/Redir.php:131
+#: src/Module/FriendSuggest.php:57 src/Module/FriendSuggest.php:95
msgid "Contact not found."
msgstr "Kontakt nicht gefunden."
-#: src/Module/Circle.php:102 src/Module/Contact/Contacts.php:66
+#: src/Module/Circle.php:88 src/Module/Contact/Contacts.php:52
msgid "Invalid contact."
msgstr "Ungültiger Kontakt."
-#: src/Module/Circle.php:111 src/Module/Contact/Revoke.php:70
+#: src/Module/Circle.php:97 src/Module/Contact/Revoke.php:56
msgid "Contact is deleted."
msgstr "Kontakt wurde gelöscht"
-#: src/Module/Circle.php:117
+#: src/Module/Circle.php:103
msgid "Unable to add the contact to the circle."
msgstr "Es ist nicht möglich, den Kontakt zum Circle hinzuzufügen."
-#: src/Module/Circle.php:120
+#: src/Module/Circle.php:106
msgid "Contact successfully added to circle."
msgstr "Der Kontakt wurde erfolgreich dem Circle hinzugefügt."
-#: src/Module/Circle.php:124
+#: src/Module/Circle.php:110
msgid "Unable to remove the contact from the circle."
msgstr "Es ist nicht möglich, den Kontakt aus dem Circle zu entfernen."
-#: src/Module/Circle.php:127
+#: src/Module/Circle.php:113
msgid "Contact successfully removed from circle."
msgstr "Kontakt erfolgreich aus dem Circle entfernt."
-#: src/Module/Circle.php:131
+#: src/Module/Circle.php:117
msgid "Bad request."
msgstr "Ungültige Anfrage."
-#: src/Module/Circle.php:172
+#: src/Module/Circle.php:158
msgid "Save Circle"
msgstr "Circle speichern"
-#: src/Module/Circle.php:173
+#: src/Module/Circle.php:159
msgid "Filter"
msgstr "Filter"
-#: src/Module/Circle.php:179
+#: src/Module/Circle.php:165
msgid "Create a circle of contacts/friends."
msgstr "Erstelle einen Circle aus Kontakten/Freunden"
-#: src/Module/Circle.php:221
+#: src/Module/Circle.php:207
msgid "Unable to remove circle."
msgstr "Der Circle kann nicht entfernt werden."
-#: src/Module/Circle.php:272
+#: src/Module/Circle.php:258
msgid "Delete Circle"
msgstr "Circle löschen"
-#: src/Module/Circle.php:282
+#: src/Module/Circle.php:268
msgid "Edit Circle Name"
msgstr "Name des Circles ändern"
-#: src/Module/Circle.php:292
+#: src/Module/Circle.php:278
msgid "Members"
msgstr "Mitglieder"
-#: src/Module/Circle.php:295
+#: src/Module/Circle.php:281
msgid "Circle is empty"
msgstr "Dieser Circle ist leer"
-#: src/Module/Circle.php:311
+#: src/Module/Circle.php:297
msgid "Remove contact from circle"
msgstr "Kontakt aus Circle entfernen"
-#: src/Module/Circle.php:334
+#: src/Module/Circle.php:320
msgid "Click on a contact to add or remove."
msgstr "Klicke einen Kontakt an, um ihn hinzuzufügen oder zu entfernen"
-#: src/Module/Circle.php:351
+#: src/Module/Circle.php:337
msgid "Add contact to circle"
msgstr "Kontakt zu Circle hinzufügen"
-#: src/Module/Contact.php:102
+#: src/Module/Contact.php:88
#, php-format
msgid "%d contact edited."
msgid_plural "%d contacts edited."
msgstr[0] "%d Kontakt bearbeitet."
msgstr[1] "%d Kontakte bearbeitet."
-#: src/Module/Contact.php:353
+#: src/Module/Contact.php:328
msgid "Show all contacts"
msgstr "Alle Kontakte anzeigen"
-#: src/Module/Contact.php:358 src/Module/Contact.php:437
-#: src/Module/Moderation/BaseUsers.php:85
+#: src/Module/Contact.php:333 src/Module/Contact.php:412
+#: src/Module/Moderation/BaseUsers.php:72
msgid "Pending"
msgstr "Ausstehend"
-#: src/Module/Contact.php:361
+#: src/Module/Contact.php:336
msgid "Only show pending contacts"
msgstr "Zeige nur noch ausstehende Kontakte."
-#: src/Module/Contact.php:366 src/Module/Contact.php:440
-#: src/Module/Moderation/BaseUsers.php:93
+#: src/Module/Contact.php:341 src/Module/Contact.php:415
+#: src/Module/Moderation/BaseUsers.php:80
msgid "Blocked"
msgstr "Geblockt"
-#: src/Module/Contact.php:369
+#: src/Module/Contact.php:344
msgid "Only show blocked contacts"
msgstr "Nur blockierte Kontakte anzeigen"
-#: src/Module/Contact.php:374 src/Module/Contact.php:446
-#: src/Module/Settings/Server/Index.php:107 src/Object/Post.php:399
+#: src/Module/Contact.php:349 src/Module/Contact.php:421
+#: src/Module/Settings/Server/Index.php:93 src/Object/Post.php:385
msgid "Ignored"
msgstr "Ignoriert"
-#: src/Module/Contact.php:377
+#: src/Module/Contact.php:352
msgid "Only show ignored contacts"
msgstr "Nur ignorierte Kontakte anzeigen"
-#: src/Module/Contact.php:382 src/Module/Contact.php:449
+#: src/Module/Contact.php:357 src/Module/Contact.php:424
msgid "Collapsed"
msgstr "Zugeklappt"
-#: src/Module/Contact.php:385
+#: src/Module/Contact.php:360
msgid "Only show collapsed contacts"
msgstr "Zeige nur zugeklappte Kontakte"
-#: src/Module/Contact.php:390 src/Module/Contact.php:452
+#: src/Module/Contact.php:365 src/Module/Contact.php:427
msgid "Archived"
msgstr "Archiviert"
-#: src/Module/Contact.php:393
+#: src/Module/Contact.php:368
msgid "Only show archived contacts"
msgstr "Nur archivierte Kontakte anzeigen"
-#: src/Module/Contact.php:398 src/Module/Contact.php:443
+#: src/Module/Contact.php:373 src/Module/Contact.php:418
msgid "Hidden"
msgstr "Verborgen"
-#: src/Module/Contact.php:401
+#: src/Module/Contact.php:376
msgid "Only show hidden contacts"
msgstr "Nur verborgene Kontakte anzeigen"
-#: src/Module/Contact.php:409
+#: src/Module/Contact.php:384
msgid "Organize your contact circles"
msgstr "Verwalte Deine Circles"
-#: src/Module/Contact.php:464
+#: src/Module/Contact.php:439
msgid "Search your contacts"
msgstr "Suche in deinen Kontakten"
-#: src/Module/Contact.php:465 src/Module/Search/Index.php:207
+#: src/Module/Contact.php:440 src/Module/Search/Index.php:193
#, php-format
msgid "Results for: %s"
msgstr "Ergebnisse für: %s"
-#: src/Module/Contact.php:473
+#: src/Module/Contact.php:448
msgid "Update"
msgstr "Aktualisierungen"
-#: src/Module/Contact.php:474 src/Module/Contact/Profile.php:532
-#: src/Module/Moderation/Blocklist/Contact.php:117
-#: src/Module/Moderation/Users/Blocked.php:138
-#: src/Module/Moderation/Users/Index.php:154
+#: src/Module/Contact.php:449 src/Module/Contact/Profile.php:518
+#: src/Module/Moderation/Blocklist/Contact.php:103
+#: src/Module/Moderation/Users/Blocked.php:124
+#: src/Module/Moderation/Users/Index.php:140
msgid "Unblock"
msgstr "Entsperren"
-#: src/Module/Contact.php:475 src/Module/Contact/Profile.php:540
+#: src/Module/Contact.php:450 src/Module/Contact/Profile.php:526
msgid "Unignore"
msgstr "Ignorieren aufheben"
-#: src/Module/Contact.php:476 src/Module/Contact/Profile.php:548
+#: src/Module/Contact.php:451 src/Module/Contact/Profile.php:534
msgid "Uncollapse"
msgstr "Aufklappen"
-#: src/Module/Contact.php:478
+#: src/Module/Contact.php:453
msgid "Batch Actions"
msgstr "Stapelverarbeitung"
-#: src/Module/Contact.php:521
+#: src/Module/Contact.php:496
msgid "Conversations started by this contact"
msgstr "Unterhaltungen, die von diesem Kontakt begonnen wurden"
-#: src/Module/Contact.php:526
+#: src/Module/Contact.php:501
msgid "Posts and Comments"
msgstr "Statusnachrichten und Kommentare"
-#: src/Module/Contact.php:529
+#: src/Module/Contact.php:504
msgid "Individual Posts and Replies"
msgstr "Individuelle Beiträge und Antworten"
-#: src/Module/Contact.php:537
+#: src/Module/Contact.php:512
msgid "Posts containing media objects"
msgstr "Beiträge die Medien Objekte beinhalten"
-#: src/Module/Contact.php:545
+#: src/Module/Contact.php:520
msgid "View all known contacts"
msgstr "Alle bekannten Kontakte anzeigen"
-#: src/Module/Contact.php:556
+#: src/Module/Contact.php:531
msgid "Advanced Contact Settings"
msgstr "Fortgeschrittene Kontakteinstellungen"
-#: src/Module/Contact.php:592
+#: src/Module/Contact.php:567
msgid "Mutual Friendship"
msgstr "Beidseitige Freundschaft"
-#: src/Module/Contact.php:596
+#: src/Module/Contact.php:571
msgid "is a fan of yours"
msgstr "ist ein Fan von dir"
-#: src/Module/Contact.php:600
+#: src/Module/Contact.php:575
msgid "you are a fan of"
msgstr "Du bist Fan von"
-#: src/Module/Contact.php:618
+#: src/Module/Contact.php:593
msgid "Pending outgoing contact request"
msgstr "Ausstehende ausgehende Kontaktanfrage"
-#: src/Module/Contact.php:620
+#: src/Module/Contact.php:595
msgid "Pending incoming contact request"
msgstr "Ausstehende eingehende Kontaktanfrage"
-#: src/Module/Contact.php:633 src/Module/Contact/Profile.php:391
+#: src/Module/Contact.php:608 src/Module/Contact/Profile.php:377
#, php-format
msgid "Visit %s's profile [%s]"
msgstr "Besuche %ss Profil [%s]"
-#: src/Module/Contact/Advanced.php:99
+#: src/Module/Contact/Advanced.php:85
msgid "Contact update failed."
msgstr "Konnte den Kontakt nicht aktualisieren."
-#: src/Module/Contact/Advanced.php:130
+#: src/Module/Contact/Advanced.php:116
msgid "Return to contact editor"
msgstr "Zurück zum Kontakteditor"
-#: src/Module/Contact/Advanced.php:134
-#: src/Module/Moderation/Blocklist/Contact.php:122
-#: src/Module/Moderation/Reports.php:116
-#: src/Module/Moderation/Users/Active.php:126
-#: src/Module/Moderation/Users/Blocked.php:126
-#: src/Module/Moderation/Users/Create.php:70
-#: src/Module/Moderation/Users/Deleted.php:83
-#: src/Module/Moderation/Users/Index.php:140
-#: src/Module/Moderation/Users/Index.php:160
-#: src/Module/Moderation/Users/Pending.php:99 src/Module/Settings/OAuth.php:72
+#: src/Module/Contact/Advanced.php:120
+#: src/Module/Moderation/Blocklist/Contact.php:108
+#: src/Module/Moderation/Reports.php:102
+#: src/Module/Moderation/Users/Active.php:112
+#: src/Module/Moderation/Users/Blocked.php:112
+#: src/Module/Moderation/Users/Create.php:56
+#: src/Module/Moderation/Users/Deleted.php:69
+#: src/Module/Moderation/Users/Index.php:126
+#: src/Module/Moderation/Users/Index.php:146
+#: src/Module/Moderation/Users/Pending.php:85 src/Module/Settings/OAuth.php:58
msgid "Name"
msgstr "Name"
-#: src/Module/Contact/Advanced.php:135
+#: src/Module/Contact/Advanced.php:121
msgid "Account Nickname"
msgstr "Konto-Spitzname"
-#: src/Module/Contact/Advanced.php:136
+#: src/Module/Contact/Advanced.php:122
msgid "Account URL"
msgstr "Konto-URL"
-#: src/Module/Contact/Advanced.php:137
+#: src/Module/Contact/Advanced.php:123
msgid "Poll/Feed URL"
msgstr "Pull/Feed-URL"
-#: src/Module/Contact/Advanced.php:138
+#: src/Module/Contact/Advanced.php:124
msgid "New photo from this URL"
msgstr "Neues Foto von dieser URL"
-#: src/Module/Contact/Contacts.php:89
+#: src/Module/Contact/Contacts.php:75
msgid "No known contacts."
msgstr "Keine bekannten Kontakte."
-#: src/Module/Contact/Contacts.php:103 src/Module/Profile/Common.php:128
+#: src/Module/Contact/Contacts.php:89 src/Module/Profile/Common.php:114
msgid "No common contacts."
msgstr "Keine gemeinsamen Kontakte."
-#: src/Module/Contact/Contacts.php:115 src/Module/Profile/Contacts.php:135
+#: src/Module/Contact/Contacts.php:101 src/Module/Profile/Contacts.php:121
#, php-format
msgid "Follower (%s)"
msgid_plural "Followers (%s)"
msgstr[0] "Folgende (%s)"
msgstr[1] "Folgende (%s)"
-#: src/Module/Contact/Contacts.php:119 src/Module/Profile/Contacts.php:138
+#: src/Module/Contact/Contacts.php:105 src/Module/Profile/Contacts.php:124
#, php-format
msgid "Following (%s)"
msgid_plural "Following (%s)"
msgstr[0] "Gefolgte (%s)"
msgstr[1] "Gefolgte (%s)"
-#: src/Module/Contact/Contacts.php:123 src/Module/Profile/Contacts.php:141
+#: src/Module/Contact/Contacts.php:109 src/Module/Profile/Contacts.php:127
#, php-format
msgid "Mutual friend (%s)"
msgid_plural "Mutual friends (%s)"
msgstr[0] "Beidseitige Freundschafte (%s)"
msgstr[1] "Beidseitige Freundschaften (%s)"
-#: src/Module/Contact/Contacts.php:125 src/Module/Profile/Contacts.php:143
+#: src/Module/Contact/Contacts.php:111 src/Module/Profile/Contacts.php:129
#, php-format
msgid "These contacts both follow and are followed by %s."
msgstr "Diese Kontakte sind sowohl Folgende als auch Gefolgte von %s."
-#: src/Module/Contact/Contacts.php:131 src/Module/Profile/Common.php:116
+#: src/Module/Contact/Contacts.php:117 src/Module/Profile/Common.php:102
#, php-format
msgid "Common contact (%s)"
msgid_plural "Common contacts (%s)"
msgstr[0] "Gemeinsamer Kontakt (%s)"
msgstr[1] "Gemeinsame Kontakte (%s)"
-#: src/Module/Contact/Contacts.php:133 src/Module/Profile/Common.php:118
+#: src/Module/Contact/Contacts.php:119 src/Module/Profile/Common.php:104
#, php-format
msgid ""
"Both %s and yourself have publicly interacted with these "
"contacts (follow, comment or likes on public posts)."
msgstr "Du und %s haben mit diesen Kontakten öffentlich interagiert (Folgen, Kommentare und Likes in öffentlichen Beiträgen)"
-#: src/Module/Contact/Contacts.php:139 src/Module/Profile/Contacts.php:149
+#: src/Module/Contact/Contacts.php:125 src/Module/Profile/Contacts.php:135
#, php-format
msgid "Contact (%s)"
msgid_plural "Contacts (%s)"
msgstr[0] "Kontakt (%s)"
msgstr[1] "Kontakte (%s)"
-#: src/Module/Contact/Follow.php:70 src/Module/Contact/Redir.php:59
-#: src/Module/Contact/Redir.php:220 src/Module/Conversation/Community.php:166
-#: src/Module/Debug/ItemBody.php:38 src/Module/Diaspora/Receive.php:59
-#: src/Module/Item/Display.php:96 src/Module/Item/Feed.php:59
-#: src/Module/Item/Follow.php:41 src/Module/Item/Ignore.php:41
-#: src/Module/Item/Language.php:53 src/Module/Item/Pin.php:41
-#: src/Module/Item/Pin.php:56 src/Module/Item/Searchtext.php:53
-#: src/Module/Item/Star.php:42 src/Module/Update/Display.php:37
+#: src/Module/Contact/Follow.php:56 src/Module/Contact/Redir.php:45
+#: src/Module/Contact/Redir.php:206 src/Module/Conversation/Community.php:154
+#: src/Module/Debug/ItemBody.php:24 src/Module/Diaspora/Receive.php:45
+#: src/Module/Item/Display.php:82 src/Module/Item/Feed.php:45
+#: src/Module/Item/Follow.php:27 src/Module/Item/Ignore.php:27
+#: src/Module/Item/Language.php:39 src/Module/Item/Pin.php:27
+#: src/Module/Item/Pin.php:42 src/Module/Item/Searchtext.php:39
+#: src/Module/Item/Star.php:28 src/Module/Update/Display.php:23
msgid "Access denied."
msgstr "Zugriff verweigert."
-#: src/Module/Contact/Follow.php:105 src/Module/Contact/Unfollow.php:125
-#: src/Module/Profile/RemoteFollow.php:133
+#: src/Module/Contact/Follow.php:91 src/Module/Contact/Unfollow.php:111
+#: src/Module/Profile/RemoteFollow.php:119
msgid "Submit Request"
msgstr "Anfrage abschicken"
-#: src/Module/Contact/Follow.php:115
+#: src/Module/Contact/Follow.php:101
msgid "You already added this contact."
msgstr "Du hast den Kontakt bereits hinzugefügt."
-#: src/Module/Contact/Follow.php:130
+#: src/Module/Contact/Follow.php:116
msgid "The network type couldn't be detected. Contact can't be added."
msgstr "Der Netzwerktyp wurde nicht erkannt. Der Kontakt kann nicht hinzugefügt werden."
-#: src/Module/Contact/Follow.php:138
+#: src/Module/Contact/Follow.php:124
msgid "Diaspora support isn't enabled. Contact can't be added."
msgstr "Diaspora-Unterstützung ist nicht aktiviert. Der Kontakt kann nicht zugefügt werden."
-#: src/Module/Contact/Follow.php:143
-msgid "OStatus support is disabled. Contact can't be added."
-msgstr "OStatus-Unterstützung ist nicht aktiviert. Der Kontakt kann nicht zugefügt werden."
-
-#: src/Module/Contact/Follow.php:168 src/Module/Profile/RemoteFollow.php:132
+#: src/Module/Contact/Follow.php:149 src/Module/Profile/RemoteFollow.php:118
msgid "Please answer the following:"
msgstr "Bitte beantworte folgendes:"
-#: src/Module/Contact/Follow.php:169 src/Module/Contact/Unfollow.php:123
+#: src/Module/Contact/Follow.php:150 src/Module/Contact/Unfollow.php:109
msgid "Your Identity Address:"
msgstr "Adresse Deines Profils:"
-#: src/Module/Contact/Follow.php:170 src/Module/Contact/Profile.php:422
-#: src/Module/Contact/Unfollow.php:129
-#: src/Module/Moderation/Blocklist/Contact.php:131
-#: src/Module/Moderation/Reports.php:123
-#: src/Module/Notifications/Introductions.php:135
-#: src/Module/Notifications/Introductions.php:204
+#: src/Module/Contact/Follow.php:151 src/Module/Contact/Profile.php:408
+#: src/Module/Contact/Unfollow.php:115
+#: src/Module/Moderation/Blocklist/Contact.php:117
+#: src/Module/Moderation/Reports.php:109
+#: src/Module/Notifications/Introductions.php:121
+#: src/Module/Notifications/Introductions.php:190
msgid "Profile URL"
msgstr "Profil URL"
-#: src/Module/Contact/Follow.php:171 src/Module/Contact/Profile.php:434
-#: src/Module/Notifications/Introductions.php:197
-#: src/Module/Profile/Profile.php:236
+#: src/Module/Contact/Follow.php:152 src/Module/Contact/Profile.php:420
+#: src/Module/Notifications/Introductions.php:183
+#: src/Module/Profile/Profile.php:222
msgid "Tags:"
msgstr "Tags:"
-#: src/Module/Contact/Follow.php:182
+#: src/Module/Contact/Follow.php:163
#, php-format
msgid "%s knows you"
msgstr "%skennt dich"
-#: src/Module/Contact/Follow.php:183
+#: src/Module/Contact/Follow.php:164
msgid "Add a personal note:"
msgstr "Eine persönliche Notiz beifügen:"
-#: src/Module/Contact/Follow.php:192 src/Module/Contact/Unfollow.php:138
+#: src/Module/Contact/Follow.php:173 src/Module/Contact/Unfollow.php:124
msgid "Posts and Replies"
msgstr "Beiträge und Antworten"
-#: src/Module/Contact/Follow.php:221
+#: src/Module/Contact/Follow.php:202
msgid "The contact could not be added."
msgstr "Der Kontakt konnte nicht hinzugefügt werden."
-#: src/Module/Contact/MatchInterests.php:95
-#: src/Module/Media/Attachment/Upload.php:77
-#: src/Module/Media/Attachment/Upload.php:82
-#: src/Module/Media/Photo/Upload.php:81 src/Module/Media/Photo/Upload.php:86
-#: src/Module/Media/Photo/Upload.php:135
+#: src/Module/Contact/MatchInterests.php:81
+#: src/Module/Media/Attachment/Upload.php:63
+#: src/Module/Media/Attachment/Upload.php:68
+#: src/Module/Media/Photo/Upload.php:67 src/Module/Media/Photo/Upload.php:72
+#: src/Module/Media/Photo/Upload.php:121
msgid "Invalid request."
msgstr "Ungültige Anfrage"
-#: src/Module/Contact/MatchInterests.php:102
+#: src/Module/Contact/MatchInterests.php:88
msgid "No keywords to match. Please add keywords to your profile."
msgstr "Keine Schlüsselwörter zum Abgleichen gefunden. Bitte füge einige Schlüsselwörter zu deinem Profil hinzu."
-#: src/Module/Contact/MatchInterests.php:145
+#: src/Module/Contact/MatchInterests.php:141
msgid "Profile Match"
msgstr "Profilübereinstimmungen"
-#: src/Module/Contact/Profile.php:145
+#: src/Module/Contact/Profile.php:131
msgid "Failed to update contact record."
msgstr "Aktualisierung der Kontaktdaten fehlgeschlagen."
-#: src/Module/Contact/Profile.php:209
+#: src/Module/Contact/Profile.php:195
msgid "Contact has been unblocked"
msgstr "Kontakt wurde wieder freigegeben"
-#: src/Module/Contact/Profile.php:213
+#: src/Module/Contact/Profile.php:199
msgid "Contact has been blocked"
msgstr "Kontakt wurde blockiert"
-#: src/Module/Contact/Profile.php:225
+#: src/Module/Contact/Profile.php:211
msgid "Contact has been unignored"
msgstr "Kontakt wird nicht mehr ignoriert"
-#: src/Module/Contact/Profile.php:229
+#: src/Module/Contact/Profile.php:215
msgid "Contact has been ignored"
msgstr "Kontakt wurde ignoriert"
-#: src/Module/Contact/Profile.php:241
+#: src/Module/Contact/Profile.php:227
msgid "Contact has been uncollapsed"
msgstr "Kontakt wurde aufgeklappt"
-#: src/Module/Contact/Profile.php:245
+#: src/Module/Contact/Profile.php:231
msgid "Contact has been collapsed"
msgstr "Kontakt wurde zugeklappt"
-#: src/Module/Contact/Profile.php:273
+#: src/Module/Contact/Profile.php:259
#, php-format
msgid "You are mutual friends with %s"
msgstr "Du hast mit %s eine beidseitige Freundschaft"
-#: src/Module/Contact/Profile.php:274
+#: src/Module/Contact/Profile.php:260
#, php-format
msgid "You are sharing with %s"
msgstr "Du teilst mit %s"
-#: src/Module/Contact/Profile.php:275
+#: src/Module/Contact/Profile.php:261
#, php-format
msgid "%s is sharing with you"
msgstr "%s teilt mit dir"
-#: src/Module/Contact/Profile.php:291
+#: src/Module/Contact/Profile.php:277
msgid "Private communications are not available for this contact."
msgstr "Private Kommunikation ist für diesen Kontakt nicht verfügbar."
-#: src/Module/Contact/Profile.php:301
+#: src/Module/Contact/Profile.php:287
msgid "This contact is on a server you ignored."
msgstr "Dieser Kontakt befindet sich auf einem Server, den du ignoriert hast."
-#: src/Module/Contact/Profile.php:304
+#: src/Module/Contact/Profile.php:290
msgid "Never"
msgstr "Niemals"
-#: src/Module/Contact/Profile.php:307
+#: src/Module/Contact/Profile.php:293
msgid "(Update was not successful)"
msgstr "(Aktualisierung war nicht erfolgreich)"
-#: src/Module/Contact/Profile.php:307
+#: src/Module/Contact/Profile.php:293
msgid "(Update was successful)"
msgstr "(Aktualisierung war erfolgreich)"
-#: src/Module/Contact/Profile.php:309 src/Module/Contact/Profile.php:503
+#: src/Module/Contact/Profile.php:295 src/Module/Contact/Profile.php:489
msgid "Suggest friends"
msgstr "Kontakte vorschlagen"
-#: src/Module/Contact/Profile.php:313
+#: src/Module/Contact/Profile.php:299
#, php-format
msgid "Network type: %s"
msgstr "Netzwerktyp: %s"
-#: src/Module/Contact/Profile.php:318
+#: src/Module/Contact/Profile.php:304
msgid "Communications lost with this contact!"
msgstr "Verbindungen mit diesem Kontakt verloren!"
-#: src/Module/Contact/Profile.php:324
+#: src/Module/Contact/Profile.php:310
msgid "Fetch further information for feeds"
msgstr "Weitere Informationen zu Feeds holen"
-#: src/Module/Contact/Profile.php:326
+#: src/Module/Contact/Profile.php:312
msgid ""
"Fetch information like preview pictures, title and teaser from the feed "
"item. You can activate this if the feed doesn't contain much text. Keywords "
"are taken from the meta header in the feed item and are posted as hash tags."
msgstr "Zusätzliche Informationen wie Vorschaubilder, Titel und Zusammenfassungen vom Feed-Eintrag laden. Du kannst diese Option aktivieren, wenn der Feed nicht allzu viel Text beinhaltet. Schlagwörter werden aus den Meta-Informationen des Feed-Headers bezogen und als Hash-Tags verwendet."
-#: src/Module/Contact/Profile.php:329
+#: src/Module/Contact/Profile.php:315
msgid "Fetch information"
msgstr "Beziehe Information"
-#: src/Module/Contact/Profile.php:330
+#: src/Module/Contact/Profile.php:316
msgid "Fetch keywords"
msgstr "Schlüsselwörter abrufen"
-#: src/Module/Contact/Profile.php:331
+#: src/Module/Contact/Profile.php:317
msgid "Fetch information and keywords"
msgstr "Beziehe Information und Schlüsselworte"
-#: src/Module/Contact/Profile.php:341 src/Module/Contact/Profile.php:346
-#: src/Module/Contact/Profile.php:351 src/Module/Contact/Profile.php:357
+#: src/Module/Contact/Profile.php:327 src/Module/Contact/Profile.php:332
+#: src/Module/Contact/Profile.php:337 src/Module/Contact/Profile.php:343
msgid "No mirroring"
msgstr "Kein Spiegeln"
-#: src/Module/Contact/Profile.php:342 src/Module/Contact/Profile.php:352
-#: src/Module/Contact/Profile.php:358
+#: src/Module/Contact/Profile.php:328 src/Module/Contact/Profile.php:338
+#: src/Module/Contact/Profile.php:344
msgid "Mirror as my own posting"
msgstr "Spiegeln als meine eigenen Beiträge"
-#: src/Module/Contact/Profile.php:347 src/Module/Contact/Profile.php:353
+#: src/Module/Contact/Profile.php:333 src/Module/Contact/Profile.php:339
msgid "Native reshare"
msgstr "Natives Teilen"
-#: src/Module/Contact/Profile.php:373
+#: src/Module/Contact/Profile.php:359
msgid "Contact Information / Notes"
msgstr "Kontakt-Informationen / -Notizen"
-#: src/Module/Contact/Profile.php:374
+#: src/Module/Contact/Profile.php:360
msgid "Contact Settings"
msgstr "Kontakteinstellungen"
-#: src/Module/Contact/Profile.php:382
+#: src/Module/Contact/Profile.php:368
msgid "Contact"
msgstr "Kontakt"
-#: src/Module/Contact/Profile.php:386
+#: src/Module/Contact/Profile.php:372
msgid "Their personal note"
msgstr "Die persönliche Mitteilung"
-#: src/Module/Contact/Profile.php:388
+#: src/Module/Contact/Profile.php:374
msgid "Edit contact notes"
msgstr "Notizen zum Kontakt bearbeiten"
-#: src/Module/Contact/Profile.php:392
+#: src/Module/Contact/Profile.php:378
msgid "Block/Unblock contact"
msgstr "Kontakt blockieren/freischalten"
-#: src/Module/Contact/Profile.php:393
-#: src/Module/Moderation/Report/Create.php:293
+#: src/Module/Contact/Profile.php:379
+#: src/Module/Moderation/Report/Create.php:279
msgid "Ignore contact"
msgstr "Ignoriere den Kontakt"
-#: src/Module/Contact/Profile.php:394
+#: src/Module/Contact/Profile.php:380
msgid "View conversations"
msgstr "Unterhaltungen anzeigen"
-#: src/Module/Contact/Profile.php:399
+#: src/Module/Contact/Profile.php:385
msgid "Last update:"
msgstr "Letzte Aktualisierung: "
-#: src/Module/Contact/Profile.php:401
+#: src/Module/Contact/Profile.php:387
msgid "Update public posts"
msgstr "Öffentliche Beiträge aktualisieren"
-#: src/Module/Contact/Profile.php:403 src/Module/Contact/Profile.php:513
+#: src/Module/Contact/Profile.php:389 src/Module/Contact/Profile.php:499
msgid "Update now"
msgstr "Jetzt aktualisieren"
-#: src/Module/Contact/Profile.php:405
+#: src/Module/Contact/Profile.php:391
msgid "Awaiting connection acknowledge"
msgstr "Bedarf der Bestätigung des Kontakts"
-#: src/Module/Contact/Profile.php:406
+#: src/Module/Contact/Profile.php:392
msgid "Currently blocked"
msgstr "Derzeit geblockt"
-#: src/Module/Contact/Profile.php:407
+#: src/Module/Contact/Profile.php:393
msgid "Currently ignored"
msgstr "Derzeit ignoriert"
-#: src/Module/Contact/Profile.php:408
+#: src/Module/Contact/Profile.php:394
msgid "Currently collapsed"
msgstr "Derzeit zugeklappt"
-#: src/Module/Contact/Profile.php:409
+#: src/Module/Contact/Profile.php:395
msgid "Currently archived"
msgstr "Momentan archiviert"
-#: src/Module/Contact/Profile.php:412
+#: src/Module/Contact/Profile.php:398
msgid "Manage remote servers"
msgstr "Verwaltung entfernter Instanzen"
-#: src/Module/Contact/Profile.php:414
-#: src/Module/Notifications/Introductions.php:198
+#: src/Module/Contact/Profile.php:400
+#: src/Module/Notifications/Introductions.php:184
msgid "Hide this contact from others"
msgstr "Verbirg diesen Kontakt vor Anderen"
-#: src/Module/Contact/Profile.php:414
+#: src/Module/Contact/Profile.php:400
msgid ""
"Replies/likes to your public posts may still be visible"
msgstr "Antworten/Likes auf deine öffentlichen Beiträge könnten weiterhin sichtbar sein"
-#: src/Module/Contact/Profile.php:415
+#: src/Module/Contact/Profile.php:401
msgid "Notification for new posts"
msgstr "Benachrichtigung bei neuen Beiträgen"
-#: src/Module/Contact/Profile.php:415
+#: src/Module/Contact/Profile.php:401
msgid "Send a notification of every new post of this contact"
msgstr "Sende eine Benachrichtigung, wann immer dieser Kontakt einen neuen Beitrag schreibt."
-#: src/Module/Contact/Profile.php:417
+#: src/Module/Contact/Profile.php:403
msgid "Keyword Deny List"
msgstr "Liste der gesperrten Schlüsselwörter"
-#: src/Module/Contact/Profile.php:417
+#: src/Module/Contact/Profile.php:403
msgid ""
"Comma separated list of keywords that should not be converted to hashtags, "
"when \"Fetch information and keywords\" is selected"
msgstr "Komma-Separierte Liste mit Schlüsselworten, die nicht in Hashtags konvertiert werden, wenn \"Beziehe Information und Schlüsselworte\" aktiviert wurde"
-#: src/Module/Contact/Profile.php:435
-#: src/Module/Settings/TwoFactor/Index.php:160
+#: src/Module/Contact/Profile.php:421
+#: src/Module/Settings/TwoFactor/Index.php:146
msgid "Actions"
msgstr "Aktionen"
-#: src/Module/Contact/Profile.php:437
-#: src/Module/Settings/TwoFactor/Index.php:140 view/theme/frio/theme.php:232
+#: src/Module/Contact/Profile.php:423
+#: src/Module/Settings/TwoFactor/Index.php:126 view/theme/frio/theme.php:220
msgid "Status"
msgstr "Status"
-#: src/Module/Contact/Profile.php:443
+#: src/Module/Contact/Profile.php:429
msgid "Mirror postings from this contact"
msgstr "Spiegle Beiträge dieses Kontakts"
-#: src/Module/Contact/Profile.php:445
+#: src/Module/Contact/Profile.php:431
msgid ""
"Mark this contact as remote_self, this will cause friendica to repost new "
"entries from this contact."
msgstr "Markiere diesen Kontakt als remote_self (entferntes Konto), dies veranlasst Friendica, alle Top-Level Beiträge dieses Kontakts an all Deine Kontakte zu senden (spiegeln)."
-#: src/Module/Contact/Profile.php:448
+#: src/Module/Contact/Profile.php:434
msgid "Channel Settings"
msgstr "Kanal Einstellungen"
-#: src/Module/Contact/Profile.php:449
+#: src/Module/Contact/Profile.php:435
msgid "Frequency of this contact in relevant channels"
msgstr "Häufigkeit dieses Kontakts in relevanten Kanälen"
-#: src/Module/Contact/Profile.php:450
+#: src/Module/Contact/Profile.php:436
msgid ""
"Depending on the type of the channel not all posts from this contact are "
"displayed. By default, posts need to have a minimum amount of interactions "
@@ -7041,706 +7036,706 @@ msgid ""
"block or hide the contact completely."
msgstr "Je nach Art des Kanals werden nicht alle Beiträge dieses Kontakts angezeigt. Standardmäßig müssen Beiträge eine Mindestanzahl an Interaktionen (Kommentare, Gefällt mir Angaben) aufweisen, um in Ihren Kanälen angezeigt zu werden. Andererseits kann es Kontakte geben, die den Kanal überfluten, so dass du vielleicht nur einige ihrer Beiträge sehen möchtest. Oder du willst deren Inhalte überhaupt nicht sehen, aber du willst den Kontakt nicht komplett blockieren oder ausblenden."
-#: src/Module/Contact/Profile.php:451
+#: src/Module/Contact/Profile.php:437
msgid "Default frequency"
msgstr "Standardhäufigkeit"
-#: src/Module/Contact/Profile.php:451
+#: src/Module/Contact/Profile.php:437
msgid ""
"Posts by this contact are displayed in the \"for you\" channel if you "
"interact often with this contact or if a post reached some level of "
"interaction."
msgstr "Beiträge dieses Kontakts werden im \"Für Dich\"-Kanal angezeigt, wenn du häufig mit diesem Kontakt interagieren oder wenn ein Beitrag ein gewisses Maß an Interaktion erreicht hat."
-#: src/Module/Contact/Profile.php:452
+#: src/Module/Contact/Profile.php:438
msgid "Display all posts of this contact"
msgstr "Alle Beiträge dieses Kontakts anzeigen"
-#: src/Module/Contact/Profile.php:452
+#: src/Module/Contact/Profile.php:438
msgid "All posts from this contact will appear on the \"for you\" channel"
msgstr "Alle Beiträge dieses Kontakts werden auf dem Kanal \"Für Dich\" erscheinen"
-#: src/Module/Contact/Profile.php:453
+#: src/Module/Contact/Profile.php:439
msgid "Display only few posts"
msgstr "Zeige nur einige Beiträge an"
-#: src/Module/Contact/Profile.php:453
+#: src/Module/Contact/Profile.php:439
msgid ""
"When a contact creates a lot of posts in a short period, this setting "
"reduces the number of displayed posts in every channel."
msgstr "Wenn ein Kontakt viele Beiträge in einem kurzen Zeitraum erstellt, reduziert diese Einstellung die Anzahl der angezeigten Beiträge in jedem Kanal."
-#: src/Module/Contact/Profile.php:454
+#: src/Module/Contact/Profile.php:440
msgid "Never display posts"
msgstr "Zeige keine Beiträge an"
-#: src/Module/Contact/Profile.php:454
+#: src/Module/Contact/Profile.php:440
msgid "Posts from this contact will never be displayed in any channel"
msgstr "Beiträge von diesem Kontakt werden in keinem Kanal angezeigt"
-#: src/Module/Contact/Profile.php:455
+#: src/Module/Contact/Profile.php:441
msgid "Channel Only"
msgstr "Ausschließlich Kanäle"
-#: src/Module/Contact/Profile.php:455
+#: src/Module/Contact/Profile.php:441
msgid ""
"If enabled, posts from this contact will only appear in channels and network"
" streams in circles, but not in the general network stream."
msgstr "Ist dies aktiviert, werden Beiträge dieses Kontakt nur in Kanälen und Circles angezeigt werden, aber nicht im allgemeinen Netzwerk Stream."
-#: src/Module/Contact/Profile.php:523
+#: src/Module/Contact/Profile.php:509
msgid "Refetch contact data"
msgstr "Kontaktdaten neu laden"
-#: src/Module/Contact/Profile.php:534
+#: src/Module/Contact/Profile.php:520
msgid "Toggle Blocked status"
msgstr "Geblockt-Status ein-/ausschalten"
-#: src/Module/Contact/Profile.php:542
+#: src/Module/Contact/Profile.php:528
msgid "Toggle Ignored status"
msgstr "Ignoriert-Status ein-/ausschalten"
-#: src/Module/Contact/Profile.php:550
+#: src/Module/Contact/Profile.php:536
msgid "Toggle Collapsed status"
msgstr "Status auf \"Zusammengeklappt\" umschalten"
-#: src/Module/Contact/Profile.php:557 src/Module/Contact/Revoke.php:103
+#: src/Module/Contact/Profile.php:543 src/Module/Contact/Revoke.php:89
msgid "Revoke Follow"
msgstr "Folgen widerrufen"
-#: src/Module/Contact/Profile.php:559
+#: src/Module/Contact/Profile.php:545
msgid "Revoke the follow from this contact"
msgstr "Widerruft das Folgen dieses Kontaktes"
-#: src/Module/Contact/Redir.php:139
+#: src/Module/Contact/Redir.php:125
msgid "Bad Request."
msgstr "Ungültige Anfrage."
-#: src/Module/Contact/Revoke.php:74
+#: src/Module/Contact/Revoke.php:60
msgid "Contact is being deleted."
msgstr "Kontakt wurde gelöscht."
-#: src/Module/Contact/Revoke.php:88
+#: src/Module/Contact/Revoke.php:74
msgid "Follow was successfully revoked."
msgstr "Folgen wurde erfolgreich widerrufen."
-#: src/Module/Contact/Revoke.php:104
+#: src/Module/Contact/Revoke.php:90
msgid ""
"Do you really want to revoke this contact's follow? This cannot be undone "
"and they will have to manually follow you back again."
msgstr "Willst du das Folgen dieses Kontakt wirklich widerrufen? Dies kann nicht rückgängig gemacht werden und der Kontakt muss Ihnen manuell wieder folgen."
-#: src/Module/Contact/Suggestions.php:62
+#: src/Module/Contact/Suggestions.php:48
msgid ""
"No suggestions available. If this is a new site, please try again in 24 "
"hours."
msgstr "Keine Vorschläge verfügbar. Falls der Server frisch aufgesetzt wurde, versuche es bitte in 24 Stunden noch einmal."
-#: src/Module/Contact/Unfollow.php:98 src/Module/Contact/Unfollow.php:167
+#: src/Module/Contact/Unfollow.php:84 src/Module/Contact/Unfollow.php:153
msgid "You aren't following this contact."
msgstr "Du folgst diesem Kontakt."
-#: src/Module/Contact/Unfollow.php:103
+#: src/Module/Contact/Unfollow.php:89
msgid "Unfollowing is currently not supported by your network."
msgstr "Bei diesem Netzwerk wird das Entfolgen derzeit nicht unterstützt."
-#: src/Module/Contact/Unfollow.php:121
+#: src/Module/Contact/Unfollow.php:107
msgid "Disconnect/Unfollow"
msgstr "Verbindung lösen/Nicht mehr folgen"
-#: src/Module/Contact/Unfollow.php:175
+#: src/Module/Contact/Unfollow.php:161
msgid "Contact was successfully unfollowed"
msgstr "Kontakt wurde erfolgreich entfolgt."
-#: src/Module/Contact/Unfollow.php:178
+#: src/Module/Contact/Unfollow.php:164
msgid "Unable to unfollow this contact, please contact your administrator"
msgstr "Konnte dem Kontakt nicht entfolgen. Bitte kontaktiere deinen Administrator."
-#: src/Module/Conversation/Channel.php:139
-#: src/Module/Conversation/Community.php:126 src/Module/Search/Index.php:152
-#: src/Module/Search/Index.php:194
+#: src/Module/Conversation/Channel.php:125
+#: src/Module/Conversation/Community.php:114 src/Module/Search/Index.php:138
+#: src/Module/Search/Index.php:180
msgid "No results."
msgstr "Keine Ergebnisse."
-#: src/Module/Conversation/Channel.php:177
+#: src/Module/Conversation/Channel.php:163
msgid "Channel not available."
msgstr "Channel nicht verüfgbar"
-#: src/Module/Conversation/Community.php:92
+#: src/Module/Conversation/Community.php:80
msgid ""
"This community stream shows all public posts received by this node. They may"
" not reflect the opinions of this node’s users."
msgstr "Diese Gemeinschaftsseite zeigt alle öffentlichen Beiträge, die auf diesem Knoten eingegangen sind. Der Inhalt entspricht nicht zwingend der Meinung der Nutzer dieses Servers."
-#: src/Module/Conversation/Community.php:180
+#: src/Module/Conversation/Community.php:168
msgid "Community option not available."
msgstr "Optionen für die Gemeinschaftsseite nicht verfügbar."
-#: src/Module/Conversation/Community.php:196
+#: src/Module/Conversation/Community.php:184
msgid "Not available."
msgstr "Nicht verfügbar."
-#: src/Module/Conversation/Network.php:216
+#: src/Module/Conversation/Network.php:202
msgid "No such circle"
msgstr "Circle ist nicht vorhanden"
-#: src/Module/Conversation/Network.php:220
+#: src/Module/Conversation/Network.php:206
#, php-format
msgid "Circle: %s"
msgstr "Circle: %s"
-#: src/Module/Conversation/Network.php:239
+#: src/Module/Conversation/Network.php:226
#, php-format
msgid "Error %d (%s) while fetching the timeline."
msgstr "Fehler %d (%s) beim Abruf der Timeline."
-#: src/Module/Conversation/Network.php:316
+#: src/Module/Conversation/Network.php:304
msgid "Network feed not available."
msgstr "Netzwerkfeed nicht verfügbar."
-#: src/Module/Conversation/Timeline.php:204
+#: src/Module/Conversation/Timeline.php:190
msgid "Include"
msgstr "Einschließen"
-#: src/Module/Conversation/Timeline.php:205
+#: src/Module/Conversation/Timeline.php:191
msgid "Hide"
msgstr "Verbergen"
-#: src/Module/Credits.php:44
+#: src/Module/Credits.php:30
msgid "Credits"
msgstr "Credits"
-#: src/Module/Credits.php:45
+#: src/Module/Credits.php:31
msgid ""
"Friendica is a community project, that would not be possible without the "
"help of many people. Here is a list of those who have contributed to the "
"code or the translation of Friendica. Thank you all!"
msgstr "Friendica ist ein Gemeinschaftsprojekt, das nicht ohne die Hilfe vieler Personen möglich wäre. Hier ist eine Aufzählung der Personen, die zum Code oder der Übersetzung beigetragen haben. Dank an alle !"
-#: src/Module/Debug/ActivityPubConversion.php:59
+#: src/Module/Debug/ActivityPubConversion.php:45
msgid "Formatted"
msgstr "Formatiert"
-#: src/Module/Debug/ActivityPubConversion.php:71
+#: src/Module/Debug/ActivityPubConversion.php:57
msgid "Activity"
msgstr "Aktivität"
-#: src/Module/Debug/ActivityPubConversion.php:123
+#: src/Module/Debug/ActivityPubConversion.php:109
msgid "Object data"
msgstr "Objekt Daten"
-#: src/Module/Debug/ActivityPubConversion.php:130
+#: src/Module/Debug/ActivityPubConversion.php:116
msgid "Result Item"
msgstr "Resultierender Eintrag"
-#: src/Module/Debug/ActivityPubConversion.php:135
-#: src/Module/Debug/Babel.php:300 src/Module/Moderation/Item/Source.php:93
-#: src/Module/Security/TwoFactor/Verify.php:98
+#: src/Module/Debug/ActivityPubConversion.php:121
+#: src/Module/Debug/Babel.php:286 src/Module/Moderation/Item/Source.php:79
+#: src/Module/Security/TwoFactor/Verify.php:84
msgid "Error"
msgid_plural "Errors"
msgstr[0] "Fehler"
msgstr[1] "Fehler"
-#: src/Module/Debug/ActivityPubConversion.php:144
+#: src/Module/Debug/ActivityPubConversion.php:130
msgid "Source activity"
msgstr "Quelle der Aktivität"
-#: src/Module/Debug/Babel.php:58
+#: src/Module/Debug/Babel.php:44
msgid "Source input"
msgstr "Originaltext:"
-#: src/Module/Debug/Babel.php:64
+#: src/Module/Debug/Babel.php:50
msgid "BBCode::toPlaintext"
msgstr "BBCode::toPlaintext"
-#: src/Module/Debug/Babel.php:70
+#: src/Module/Debug/Babel.php:56
msgid "BBCode::convert (raw HTML)"
msgstr "BBCode::convert (pures HTML)"
-#: src/Module/Debug/Babel.php:75
+#: src/Module/Debug/Babel.php:61
msgid "BBCode::convert (hex)"
msgstr "BBCode::convert (hex)"
-#: src/Module/Debug/Babel.php:80
+#: src/Module/Debug/Babel.php:66
msgid "BBCode::convert"
msgstr "BBCode::convert"
-#: src/Module/Debug/Babel.php:86
+#: src/Module/Debug/Babel.php:72
msgid "BBCode::convert => HTML::toBBCode"
msgstr "BBCode::convert => HTML::toBBCode"
-#: src/Module/Debug/Babel.php:92
+#: src/Module/Debug/Babel.php:78
msgid "BBCode::toMarkdown"
msgstr "BBCode::toMarkdown"
-#: src/Module/Debug/Babel.php:98
+#: src/Module/Debug/Babel.php:84
msgid "BBCode::toMarkdown => Markdown::convert (raw HTML)"
msgstr "BBCode::toMarkdown => Markdown::convert (rohes HTML)"
-#: src/Module/Debug/Babel.php:102
+#: src/Module/Debug/Babel.php:88
msgid "BBCode::toMarkdown => Markdown::convert"
msgstr "BBCode::toMarkdown => Markdown::convert"
-#: src/Module/Debug/Babel.php:108
+#: src/Module/Debug/Babel.php:94
msgid "BBCode::toMarkdown => Markdown::toBBCode"
msgstr "BBCode::toMarkdown => Markdown::toBBCode"
-#: src/Module/Debug/Babel.php:114
+#: src/Module/Debug/Babel.php:100
msgid "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode"
msgstr "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode"
-#: src/Module/Debug/Babel.php:122
+#: src/Module/Debug/Babel.php:108
msgid "Item Body"
msgstr "Beitragskörper"
-#: src/Module/Debug/Babel.php:126
+#: src/Module/Debug/Babel.php:112
msgid "Item Tags"
msgstr "Tags des Beitrags"
-#: src/Module/Debug/Babel.php:132
+#: src/Module/Debug/Babel.php:118
msgid "PageInfo::appendToBody"
msgstr "PageInfo::appendToBody"
-#: src/Module/Debug/Babel.php:137
+#: src/Module/Debug/Babel.php:123
msgid "PageInfo::appendToBody => BBCode::convert (raw HTML)"
msgstr "PageInfo::appendToBody => BBCode::convert (pures HTML)"
-#: src/Module/Debug/Babel.php:141
+#: src/Module/Debug/Babel.php:127
msgid "PageInfo::appendToBody => BBCode::convert"
msgstr "PageInfo::appendToBody => BBCode::convert"
-#: src/Module/Debug/Babel.php:148
+#: src/Module/Debug/Babel.php:134
msgid "Source input (Diaspora format)"
msgstr "Originaltext (Diaspora Format): "
-#: src/Module/Debug/Babel.php:157
+#: src/Module/Debug/Babel.php:143
msgid "Source input (Markdown)"
msgstr "Originaltext (Markdown)"
-#: src/Module/Debug/Babel.php:163
+#: src/Module/Debug/Babel.php:149
msgid "Markdown::convert (raw HTML)"
msgstr "Markdown::convert (pures HTML)"
-#: src/Module/Debug/Babel.php:168
+#: src/Module/Debug/Babel.php:154
msgid "Markdown::convert"
msgstr "Markdown::convert"
-#: src/Module/Debug/Babel.php:174
+#: src/Module/Debug/Babel.php:160
msgid "Markdown::toBBCode"
msgstr "Markdown::toBBCode"
-#: src/Module/Debug/Babel.php:181
+#: src/Module/Debug/Babel.php:167
msgid "Raw HTML input"
msgstr "Reine HTML Eingabe"
-#: src/Module/Debug/Babel.php:186
+#: src/Module/Debug/Babel.php:172
msgid "HTML Input"
msgstr "HTML Eingabe"
-#: src/Module/Debug/Babel.php:193
+#: src/Module/Debug/Babel.php:179
msgid "HTML Purified (raw)"
msgstr "HTML Purified (raw)"
-#: src/Module/Debug/Babel.php:198
+#: src/Module/Debug/Babel.php:184
msgid "HTML Purified (hex)"
msgstr "HTML Purified (hex)"
-#: src/Module/Debug/Babel.php:203
+#: src/Module/Debug/Babel.php:189
msgid "HTML Purified"
msgstr "HTML Purified"
-#: src/Module/Debug/Babel.php:209
+#: src/Module/Debug/Babel.php:195
msgid "HTML::toBBCode"
msgstr "HTML::toBBCode"
-#: src/Module/Debug/Babel.php:215
+#: src/Module/Debug/Babel.php:201
msgid "HTML::toBBCode => BBCode::convert"
msgstr "HTML::toBBCode => BBCode::convert"
-#: src/Module/Debug/Babel.php:220
+#: src/Module/Debug/Babel.php:206
msgid "HTML::toBBCode => BBCode::convert (raw HTML)"
msgstr "HTML::toBBCode => BBCode::convert (pures HTML)"
-#: src/Module/Debug/Babel.php:226
+#: src/Module/Debug/Babel.php:212
msgid "HTML::toBBCode => BBCode::toPlaintext"
msgstr "HTML::toBBCode => BBCode::toPlaintext"
-#: src/Module/Debug/Babel.php:232
+#: src/Module/Debug/Babel.php:218
msgid "HTML::toMarkdown"
msgstr "HTML::toMarkdown"
-#: src/Module/Debug/Babel.php:238
+#: src/Module/Debug/Babel.php:224
msgid "HTML::toPlaintext"
msgstr "HTML::toPlaintext"
-#: src/Module/Debug/Babel.php:244
+#: src/Module/Debug/Babel.php:230
msgid "HTML::toPlaintext (compact)"
msgstr "HTML::toPlaintext (kompakt)"
-#: src/Module/Debug/Babel.php:262
+#: src/Module/Debug/Babel.php:248
msgid "Decoded post"
msgstr "Dekodierter Beitrag"
-#: src/Module/Debug/Babel.php:283
+#: src/Module/Debug/Babel.php:269
msgid "Post array before expand entities"
msgstr "Beiträgs Array bevor die Entitäten erweitert wurden."
-#: src/Module/Debug/Babel.php:290
+#: src/Module/Debug/Babel.php:276
msgid "Post converted"
msgstr "Konvertierter Beitrag"
-#: src/Module/Debug/Babel.php:295
+#: src/Module/Debug/Babel.php:281
msgid "Converted body"
msgstr "Konvertierter Beitragskörper"
-#: src/Module/Debug/Babel.php:301
+#: src/Module/Debug/Babel.php:287
msgid "Twitter addon is absent from the addon/ folder."
msgstr "Das Twitter-Addon konnte nicht im addpn/ Verzeichnis gefunden werden."
-#: src/Module/Debug/Babel.php:311
+#: src/Module/Debug/Babel.php:297
msgid "Babel Diagnostic"
msgstr "Babel Diagnostik"
-#: src/Module/Debug/Babel.php:313
+#: src/Module/Debug/Babel.php:299
msgid "Source text"
msgstr "Quelltext"
-#: src/Module/Debug/Babel.php:314
+#: src/Module/Debug/Babel.php:300
msgid "BBCode"
msgstr "BBCode"
-#: src/Module/Debug/Babel.php:316
+#: src/Module/Debug/Babel.php:302
msgid "Markdown"
msgstr "Markdown"
-#: src/Module/Debug/Babel.php:317
+#: src/Module/Debug/Babel.php:303
msgid "HTML"
msgstr "HTML"
-#: src/Module/Debug/Babel.php:319
+#: src/Module/Debug/Babel.php:305
msgid "Twitter Source / Tweet URL (requires API key)"
msgstr "Twitter Quelle / Tweet URL (benötigt API Schlüssel)"
-#: src/Module/Debug/Feed.php:53 src/Module/Filer/SaveTag.php:47
-#: src/Module/Settings/Profile/Index.php:180
+#: src/Module/Debug/Feed.php:39 src/Module/Filer/SaveTag.php:33
+#: src/Module/Settings/Profile/Index.php:166
msgid "You must be logged in to use this module"
msgstr "Du musst eingeloggt sein, um dieses Modul benutzen zu können."
-#: src/Module/Debug/Feed.php:78
+#: src/Module/Debug/Feed.php:64
msgid "Source URL"
msgstr "URL der Quelle"
-#: src/Module/Debug/Localtime.php:49
+#: src/Module/Debug/Localtime.php:35
msgid "Time Conversion"
msgstr "Zeitumrechnung"
-#: src/Module/Debug/Localtime.php:50
+#: src/Module/Debug/Localtime.php:36
msgid ""
"Friendica provides this service for sharing events with other networks and "
"friends in unknown timezones."
msgstr "Friendica bietet diese Funktion an, um das Teilen von Events mit Kontakten zu vereinfachen, deren Zeitzone nicht ermittelt werden kann."
-#: src/Module/Debug/Localtime.php:51
+#: src/Module/Debug/Localtime.php:37
#, php-format
msgid "UTC time: %s"
msgstr "UTC Zeit: %s"
-#: src/Module/Debug/Localtime.php:54
+#: src/Module/Debug/Localtime.php:40
#, php-format
msgid "Current timezone: %s"
msgstr "Aktuelle Zeitzone: %s"
-#: src/Module/Debug/Localtime.php:58
+#: src/Module/Debug/Localtime.php:44
#, php-format
msgid "Converted localtime: %s"
msgstr "Umgerechnete lokale Zeit: %s"
-#: src/Module/Debug/Localtime.php:62
+#: src/Module/Debug/Localtime.php:48
msgid "Please select your timezone:"
msgstr "Bitte wähle Deine Zeitzone:"
-#: src/Module/Debug/Probe.php:38 src/Module/Debug/WebFinger.php:37
+#: src/Module/Debug/Probe.php:24 src/Module/Debug/WebFinger.php:23
msgid "Only logged in users are permitted to perform a probing."
msgstr "Nur eingeloggten Benutzern ist das Untersuchen von Adressen gestattet."
-#: src/Module/Debug/Probe.php:52
+#: src/Module/Debug/Probe.php:38
msgid "Probe Diagnostic"
msgstr "Probe Diagnostik"
-#: src/Module/Debug/Probe.php:53
+#: src/Module/Debug/Probe.php:39
msgid "Output"
msgstr "Ergebnis"
-#: src/Module/Debug/Probe.php:56
+#: src/Module/Debug/Probe.php:42
msgid "Lookup address"
msgstr "Adresse nachschlagen"
-#: src/Module/Debug/WebFinger.php:50
+#: src/Module/Debug/WebFinger.php:36
msgid "Webfinger Diagnostic"
msgstr "Webfinger Diagnostik"
-#: src/Module/Debug/WebFinger.php:52
+#: src/Module/Debug/WebFinger.php:38
msgid "Lookup address:"
msgstr "Adresse nachschlagen:"
-#: src/Module/Directory.php:75
+#: src/Module/Directory.php:61
msgid "No entries (some entries may be hidden)."
msgstr "Keine Einträge (einige Einträge könnten versteckt sein)."
-#: src/Module/Directory.php:91
+#: src/Module/Directory.php:77
msgid "Find on this site"
msgstr "Auf diesem Server suchen"
-#: src/Module/Directory.php:93
+#: src/Module/Directory.php:79
msgid "Results for:"
msgstr "Ergebnisse für:"
-#: src/Module/Directory.php:95
+#: src/Module/Directory.php:81
msgid "Site Directory"
msgstr "Verzeichnis"
-#: src/Module/Filer/RemoveTag.php:105
+#: src/Module/Filer/RemoveTag.php:91
msgid "Item was not deleted"
msgstr "Item wurde nicht gelöscht"
-#: src/Module/Filer/RemoveTag.php:115
+#: src/Module/Filer/RemoveTag.php:101
msgid "Item was not removed"
msgstr "Item wurde nicht entfernt"
-#: src/Module/Filer/SaveTag.php:73
+#: src/Module/Filer/SaveTag.php:59
msgid "- select -"
msgstr "- auswählen -"
-#: src/Module/FriendSuggest.php:82
+#: src/Module/FriendSuggest.php:68
msgid "Suggested contact not found."
msgstr "Vorgeschlagener Kontakt wurde nicht gefunden."
-#: src/Module/FriendSuggest.php:100
+#: src/Module/FriendSuggest.php:86
msgid "Friend suggestion sent."
msgstr "Kontaktvorschlag gesendet."
-#: src/Module/FriendSuggest.php:137
+#: src/Module/FriendSuggest.php:123
msgid "Suggest Friends"
msgstr "Kontakte vorschlagen"
-#: src/Module/FriendSuggest.php:140
+#: src/Module/FriendSuggest.php:126
#, php-format
msgid "Suggest a friend for %s"
msgstr "Schlage %s einen Kontakt vor"
-#: src/Module/Friendica.php:81
+#: src/Module/Friendica.php:67
msgid "Installed addons/apps:"
msgstr "Installierte Apps und Addons"
-#: src/Module/Friendica.php:86
+#: src/Module/Friendica.php:72
msgid "No installed addons/apps"
msgstr "Es sind keine Addons oder Apps installiert"
-#: src/Module/Friendica.php:91
+#: src/Module/Friendica.php:77
#, php-format
msgid "Read about the Terms of Service of this node."
msgstr "Erfahre mehr über die Nutzungsbedingungen dieses Knotens."
-#: src/Module/Friendica.php:98
+#: src/Module/Friendica.php:84
msgid "On this server the following remote servers are blocked."
msgstr "Auf diesem Server werden die folgenden, entfernten Server blockiert."
-#: src/Module/Friendica.php:101
-#: src/Module/Moderation/Blocklist/Server/Index.php:87
-#: src/Module/Moderation/Blocklist/Server/Index.php:111
-#: src/Module/Settings/Channels.php:232
+#: src/Module/Friendica.php:87
+#: src/Module/Moderation/Blocklist/Server/Index.php:73
+#: src/Module/Moderation/Blocklist/Server/Index.php:97
+#: src/Module/Settings/Channels.php:218
msgid "Reason for the block"
msgstr "Begründung für die Blockierung"
-#: src/Module/Friendica.php:103
+#: src/Module/Friendica.php:89
msgid "Download this list in CSV format"
msgstr "Liste im CSV-Format herunterladen"
-#: src/Module/Friendica.php:117
+#: src/Module/Friendica.php:103
#, php-format
msgid ""
"This is Friendica, version %s that is running at the web location %s. The "
"database version is %s, the post update version is %s."
msgstr "Diese Friendica-Instanz verwendet die Version %s, sie ist unter der folgenden Adresse im Web zu finden %s. Die Datenbankversion ist %s und die Post-Update-Version %s."
-#: src/Module/Friendica.php:122
+#: src/Module/Friendica.php:108
msgid ""
"Please visit Friendi.ca to learn more "
"about the Friendica project."
msgstr "Bitte besuche Friendi.ca, um mehr über das Friendica-Projekt zu erfahren."
-#: src/Module/Friendica.php:123
+#: src/Module/Friendica.php:109
msgid "Bug reports and issues: please visit"
msgstr "Probleme oder Fehler gefunden? Bitte besuche"
-#: src/Module/Friendica.php:123
+#: src/Module/Friendica.php:109
msgid "the bugtracker at github"
msgstr "den Bugtracker auf github"
-#: src/Module/Friendica.php:124
+#: src/Module/Friendica.php:110
msgid "Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca"
msgstr "Vorschläge, Lob usw.: E-Mail an \"Info\" at \"Friendi - dot ca\""
-#: src/Module/HCard.php:45
+#: src/Module/HCard.php:31
msgid "No profile"
msgstr "Kein Profil"
-#: src/Module/HTTPException/MethodNotAllowed.php:31
+#: src/Module/HTTPException/MethodNotAllowed.php:17
msgid "Method Not Allowed."
msgstr "Methode nicht erlaubt."
-#: src/Module/Help.php:60
+#: src/Module/Help.php:46
msgid "Help:"
msgstr "Hilfe:"
-#: src/Module/Home.php:66
+#: src/Module/Home.php:52
#, php-format
msgid "Welcome to %s"
msgstr "Willkommen zu %s"
-#: src/Module/Install.php:189
+#: src/Module/Install.php:175
msgid "Friendica Communications Server - Setup"
msgstr "Friendica Komunikationsserver - Installation"
-#: src/Module/Install.php:200
+#: src/Module/Install.php:186
msgid "System check"
msgstr "Systemtest"
-#: src/Module/Install.php:202 src/Module/Install.php:247
-#: src/Module/Install.php:326
+#: src/Module/Install.php:188 src/Module/Install.php:233
+#: src/Module/Install.php:312
msgid "Requirement not satisfied"
msgstr "Anforderung ist nicht erfüllt"
-#: src/Module/Install.php:203
+#: src/Module/Install.php:189
msgid "Optional requirement not satisfied"
msgstr "Optionale Anforderung ist nicht erfüllt"
-#: src/Module/Install.php:204
+#: src/Module/Install.php:190
msgid "OK"
msgstr "Ok"
-#: src/Module/Install.php:208
+#: src/Module/Install.php:194
msgid "Next"
msgstr "Nächste"
-#: src/Module/Install.php:209
+#: src/Module/Install.php:195
msgid "Check again"
msgstr "Noch einmal testen"
-#: src/Module/Install.php:222
+#: src/Module/Install.php:208
msgid "Base settings"
msgstr "Grundeinstellungen"
-#: src/Module/Install.php:224
+#: src/Module/Install.php:210
msgid "Base path to installation"
msgstr "Basis-Pfad zur Installation"
-#: src/Module/Install.php:226
+#: src/Module/Install.php:212
msgid ""
"If the system cannot detect the correct path to your installation, enter the"
" correct path here. This setting should only be set if you are using a "
"restricted system and symbolic links to your webroot."
msgstr "Falls das System nicht den korrekten Pfad zu deiner Installation gefunden hat, gib den richtigen Pfad bitte hier ein. Du solltest hier den Pfad nur auf einem eingeschränkten System angeben müssen, bei dem du mit symbolischen Links auf dein Webverzeichnis verweist."
-#: src/Module/Install.php:229
+#: src/Module/Install.php:215
msgid "The Friendica system URL"
msgstr "Die Friendica System URL"
-#: src/Module/Install.php:231
+#: src/Module/Install.php:217
msgid ""
"Overwrite this field in case the system URL determination isn't right, "
"otherwise leave it as is."
msgstr "Überschreibe dieses Feld, falls die System-URL-Erkennung nicht korrekt ist, ansonsten lasse es unverändert."
-#: src/Module/Install.php:242
+#: src/Module/Install.php:228
msgid "Database connection"
msgstr "Datenbankverbindung"
-#: src/Module/Install.php:243
+#: src/Module/Install.php:229
msgid ""
"In order to install Friendica we need to know how to connect to your "
"database."
msgstr "Um Friendica installieren zu können, müssen wir wissen, wie wir mit Deiner Datenbank Kontakt aufnehmen können."
-#: src/Module/Install.php:244
+#: src/Module/Install.php:230
msgid ""
"Please contact your hosting provider or site administrator if you have "
"questions about these settings."
msgstr "Bitte kontaktiere den Hosting-Provider oder den Administrator der Seite, falls du Fragen zu diesen Einstellungen haben solltest."
-#: src/Module/Install.php:245
+#: src/Module/Install.php:231
msgid ""
"The database you specify below should already exist. If it does not, please "
"create it before continuing."
msgstr "Die Datenbank, die du unten angibst, sollte bereits existieren. Ist dies noch nicht der Fall, erzeuge sie bitte, bevor du mit der Installation fortfährst."
-#: src/Module/Install.php:252
+#: src/Module/Install.php:238
msgid "Database Server Name"
msgstr "Datenbank-Server"
-#: src/Module/Install.php:257
+#: src/Module/Install.php:243
msgid "Database Login Name"
msgstr "Datenbank-Nutzer"
-#: src/Module/Install.php:263
+#: src/Module/Install.php:249
msgid "Database Login Password"
msgstr "Datenbank-Passwort"
-#: src/Module/Install.php:265
+#: src/Module/Install.php:251
msgid "For security reasons the password must not be empty"
msgstr "Aus Sicherheitsgründen darf das Passwort nicht leer sein."
-#: src/Module/Install.php:268
+#: src/Module/Install.php:254
msgid "Database Name"
msgstr "Datenbank-Name"
-#: src/Module/Install.php:272 src/Module/Install.php:300
+#: src/Module/Install.php:258 src/Module/Install.php:286
msgid "Please select a default timezone for your website"
msgstr "Bitte wähle die Standardzeitzone Deiner Webseite"
-#: src/Module/Install.php:287
+#: src/Module/Install.php:273
msgid "Site settings"
msgstr "Server-Einstellungen"
-#: src/Module/Install.php:295
+#: src/Module/Install.php:281
msgid "Site administrator email address"
msgstr "E-Mail-Adresse des Administrators"
-#: src/Module/Install.php:297
+#: src/Module/Install.php:283
msgid ""
"Your account email address must match this in order to use the web admin "
"panel."
msgstr "Die E-Mail-Adresse, die in Deinem Friendica-Account eingetragen ist, muss mit dieser Adresse übereinstimmen, damit du das Admin-Panel benutzen kannst."
-#: src/Module/Install.php:304
+#: src/Module/Install.php:290
msgid "System Language:"
msgstr "Systemsprache:"
-#: src/Module/Install.php:306
+#: src/Module/Install.php:292
msgid ""
"Set the default language for your Friendica installation interface and to "
"send emails."
msgstr "Wähle die Standardsprache für deine Friendica-Installations-Oberfläche und den E-Mail-Versand"
-#: src/Module/Install.php:318
+#: src/Module/Install.php:304
msgid "Your Friendica site database has been installed."
msgstr "Die Datenbank Deiner Friendica-Seite wurde installiert."
-#: src/Module/Install.php:328
+#: src/Module/Install.php:314
msgid "Installation finished"
msgstr "Installation abgeschlossen"
-#: src/Module/Install.php:348
+#: src/Module/Install.php:334
msgid "The server domain pattern syntax is case-insensitive shell wildcard, comprising the following special characters:
\n" "Die Syntax für das Domainmuster ist unabhängig von der Groß-/Kleinschreibung. Shell Willdcards bestehen aus den folgenden Zeichen:
\n*
: Eine beliebige Anzahl von Zeichen?
: Ein einzelnes ZeichenThis file can be downloaded from the /friendica
path of any "
"Friendica server.
Diese Datei kann vom /friendica
Pfad auf jedem Friendica Server heruntergeladen werden.
debug.store_source
config key is set in "
"config/local.config.php
for future items to have sources."
msgstr "Bitte stelle sicher, dass der Config-Schlüssel debug.store_source
in der config/local.config.php
gesetzt ist um in Zukunft Quellen zu haben."
-#: src/Module/Moderation/Item/Source.php:98
+#: src/Module/Moderation/Item/Source.php:84
msgid "Item Guid"
msgstr "Beitrags-Guid"
-#: src/Module/Moderation/Report/Create.php:95
+#: src/Module/Moderation/Report/Create.php:81
msgid "Contact not found or their server is already blocked on this node."
msgstr "Kontakt nicht gefunden oder seine Instanz ist bereits auf dieser Instanz blockiert."
-#: src/Module/Moderation/Report/Create.php:136
+#: src/Module/Moderation/Report/Create.php:122
msgid "Please login to access this page."
msgstr "Bitte melde dich an, um auf diese Seite zuzugreifen."
-#: src/Module/Moderation/Report/Create.php:165
-#: src/Module/Moderation/Report/Create.php:180
-#: src/Module/Moderation/Report/Create.php:208
-#: src/Module/Moderation/Report/Create.php:260
-#: src/Module/Moderation/Report/Create.php:279
+#: src/Module/Moderation/Report/Create.php:151
+#: src/Module/Moderation/Report/Create.php:166
+#: src/Module/Moderation/Report/Create.php:194
+#: src/Module/Moderation/Report/Create.php:246
+#: src/Module/Moderation/Report/Create.php:265
msgid "Create Moderation Report"
msgstr "Moderationsbericht erstellen"
-#: src/Module/Moderation/Report/Create.php:166
+#: src/Module/Moderation/Report/Create.php:152
msgid "Pick Contact"
msgstr "Kontakt wählen"
-#: src/Module/Moderation/Report/Create.php:167
+#: src/Module/Moderation/Report/Create.php:153
msgid ""
"Please enter below the contact address or profile URL you would like to "
"create a moderation report about."
msgstr "Bitte gib unten die Kontaktadresse oder Profil-URL ein, über die du einen Moderationsbericht erstellen möchten."
-#: src/Module/Moderation/Report/Create.php:171
+#: src/Module/Moderation/Report/Create.php:157
msgid "Contact address/URL"
msgstr "Kontaktadresse/URL"
-#: src/Module/Moderation/Report/Create.php:181
+#: src/Module/Moderation/Report/Create.php:167
msgid "Pick Category"
msgstr "Kategorie auswählen"
-#: src/Module/Moderation/Report/Create.php:182
+#: src/Module/Moderation/Report/Create.php:168
msgid "Please pick below the category of your report."
msgstr "Bitte wähle unten die Kategorie für deinen Bericht."
-#: src/Module/Moderation/Report/Create.php:186
-#: src/Module/Moderation/Report/Create.php:311
+#: src/Module/Moderation/Report/Create.php:172
+#: src/Module/Moderation/Report/Create.php:297
msgid "Spam"
msgstr "Spam"
-#: src/Module/Moderation/Report/Create.php:186
+#: src/Module/Moderation/Report/Create.php:172
msgid ""
"This contact is publishing many repeated/overly long posts/replies or "
"advertising their product/websites in otherwise irrelevant conversations."
msgstr "Dieser Kontakt veröffentlicht viele wiederholte/überlange Beiträge/Antworten oder wirbt für sein Produkt/seine Website in ansonsten belanglosen Gesprächen."
-#: src/Module/Moderation/Report/Create.php:187
-#: src/Module/Moderation/Report/Create.php:312
+#: src/Module/Moderation/Report/Create.php:173
+#: src/Module/Moderation/Report/Create.php:298
msgid "Illegal Content"
msgstr "Illegaler Inhalt"
-#: src/Module/Moderation/Report/Create.php:187
+#: src/Module/Moderation/Report/Create.php:173
msgid ""
"This contact is publishing content that is considered illegal in this node's"
" hosting juridiction."
msgstr "Dieser Kontakt veröffentlicht Inhalte, die in dem Land, in dem diese Instanz gehostet wird, als illegal gelten."
-#: src/Module/Moderation/Report/Create.php:188
-#: src/Module/Moderation/Report/Create.php:313
+#: src/Module/Moderation/Report/Create.php:174
+#: src/Module/Moderation/Report/Create.php:299
msgid "Community Safety"
msgstr "Sicherheit in der Gemeinschaft"
-#: src/Module/Moderation/Report/Create.php:188
+#: src/Module/Moderation/Report/Create.php:174
msgid ""
"This contact aggravated you or other people, by being provocative or "
"insensitive, intentionally or not. This includes disclosing people's private"
@@ -8508,12 +8503,12 @@ msgid ""
"replies."
msgstr "Dieser Kontakt hat dich oder andere Personen verärgert, indem er absichtlich oder unabsichtlich provokativ oder unsensibel war. Dazu gehören die Offenlegung privater Informationen (Doxxing), das Posten von Drohungen oder anstößigen Bildern in Beiträgen oder Antworten."
-#: src/Module/Moderation/Report/Create.php:189
-#: src/Module/Moderation/Report/Create.php:314
+#: src/Module/Moderation/Report/Create.php:175
+#: src/Module/Moderation/Report/Create.php:300
msgid "Unwanted Content/Behavior"
msgstr "Unerwünschte Inhalte/Verhaltensweisen"
-#: src/Module/Moderation/Report/Create.php:189
+#: src/Module/Moderation/Report/Create.php:175
msgid ""
"This contact has repeatedly published content irrelevant to the node's theme"
" or is openly criticizing the node's administration/moderation without "
@@ -8521,89 +8516,89 @@ msgid ""
"nitpicking on a sensitive topic."
msgstr "Dieser Kontakt hat wiederholt Inhalte veröffentlicht, die für das Thema der Instanz irrelevant sind, oder er kritisiert offen die Verwaltung/Moderation der Instanz, ohne sich direkt mit den betreffenden Personen auseinanderzusetzen, oder er ist wiederholt erbsenzählerisch bei einem heiklen Thema."
-#: src/Module/Moderation/Report/Create.php:190
-#: src/Module/Moderation/Report/Create.php:315
+#: src/Module/Moderation/Report/Create.php:176
+#: src/Module/Moderation/Report/Create.php:301
msgid "Rules Violation"
msgstr "Verstoß gegen die Regeln"
-#: src/Module/Moderation/Report/Create.php:190
+#: src/Module/Moderation/Report/Create.php:176
msgid ""
"This contact violated one or more rules of this node. You will be able to "
"pick which one(s) in the next step."
msgstr "Dieser Kontakt hat gegen eine oder mehrere Regeln dieser Instanz verstoßen. Du kannst im nächsten Schritt auswählen, welche."
-#: src/Module/Moderation/Report/Create.php:191
+#: src/Module/Moderation/Report/Create.php:177
msgid ""
"Please elaborate below why you submitted this report. The more details you "
"provide, the better your report can be handled."
msgstr "Bitte gib im Folgenden an, warum du diese Meldung eingereicht hast. Je mehr Details du angibst, desto besser kann Ihre Meldung bearbeitet werden."
-#: src/Module/Moderation/Report/Create.php:193
+#: src/Module/Moderation/Report/Create.php:179
msgid "Additional Information"
msgstr "Zusätzliche Informationen"
-#: src/Module/Moderation/Report/Create.php:193
+#: src/Module/Moderation/Report/Create.php:179
msgid ""
"Please provide any additional information relevant to this particular "
"report. You will be able to attach posts by this contact in the next step, "
"but any context is welcome."
msgstr "Bitte gib alle zusätzlichen Informationen an, die für diesen Bericht relevant sind. Du kannst im nächsten Schritt Beiträge dieser Kontaktperson anhängen, aber jeder Kontext ist willkommen."
-#: src/Module/Moderation/Report/Create.php:209
+#: src/Module/Moderation/Report/Create.php:195
msgid "Pick Rules"
msgstr "Regeln auswählen"
-#: src/Module/Moderation/Report/Create.php:210
+#: src/Module/Moderation/Report/Create.php:196
msgid "Please pick below the node rules you believe this contact violated."
msgstr "Bitte wähle unten die Instanzregeln aus, gegen die dieser Kontakt deiner Meinung nach verstoßen hat."
-#: src/Module/Moderation/Report/Create.php:261
+#: src/Module/Moderation/Report/Create.php:247
msgid "Pick Posts"
msgstr "Beiträge auswählen"
-#: src/Module/Moderation/Report/Create.php:262
+#: src/Module/Moderation/Report/Create.php:248
msgid "Please optionally pick posts to attach to your report."
msgstr "Bitte wähle optional Beiträge aus, die du an diesen Bericht anhängen möchtest."
-#: src/Module/Moderation/Report/Create.php:281
+#: src/Module/Moderation/Report/Create.php:267
msgid "Submit Report"
msgstr "Bericht senden"
-#: src/Module/Moderation/Report/Create.php:282
+#: src/Module/Moderation/Report/Create.php:268
msgid "Further Action"
msgstr "Weiteres Vorgehen"
-#: src/Module/Moderation/Report/Create.php:283
+#: src/Module/Moderation/Report/Create.php:269
msgid ""
"You can also perform one of the following action on the contact you "
"reported:"
msgstr "Du kannst auch eine der folgenden Aktionen für den gemeldeten Kontakt durchführen:"
-#: src/Module/Moderation/Report/Create.php:291
+#: src/Module/Moderation/Report/Create.php:277
msgid "Nothing"
msgstr "Nichts"
-#: src/Module/Moderation/Report/Create.php:292
+#: src/Module/Moderation/Report/Create.php:278
msgid "Collapse contact"
msgstr "Kontakt verbergen"
-#: src/Module/Moderation/Report/Create.php:292
+#: src/Module/Moderation/Report/Create.php:278
msgid ""
"Their posts and replies will keep appearing in your Network page but their "
"content will be collapsed by default."
msgstr "Ihre Beiträge und Antworten werden weiterhin auf Ihrer Netzwerkseite angezeigt, aber ihr Inhalt wird standardmäßig ausgeblendet."
-#: src/Module/Moderation/Report/Create.php:293
+#: src/Module/Moderation/Report/Create.php:279
msgid ""
"Their posts won't appear in your Network page anymore, but their replies can"
" appear in forum threads. They still can follow you."
msgstr "Ihre Beiträge werden nicht mehr auf deiner Netzwerkseite angezeigt, aber ihre Antworten können in Forenbeiträgen erscheinen. Sie können dir immer noch folgen."
-#: src/Module/Moderation/Report/Create.php:294
+#: src/Module/Moderation/Report/Create.php:280
msgid "Block contact"
msgstr "Kontakt blockieren"
-#: src/Module/Moderation/Report/Create.php:294
+#: src/Module/Moderation/Report/Create.php:280
msgid ""
"Their posts won't appear in your Network page anymore, but their replies can"
" appear in forum threads, with their content collapsed by default. They "
@@ -8611,708 +8606,694 @@ msgid ""
"means."
msgstr "Ihre Beiträge erscheinen nicht mehr auf deiner Netzwerkseite, aber ihre Antworten können in Forumsthemen erscheinen, wobei ihr Inhalt standardmäßig eingeklappt ist. Sie können dir nicht folgen, haben aber auf anderem Wege weiterhin Zugang zu deinen öffentlichen Beiträgen."
-#: src/Module/Moderation/Report/Create.php:297
+#: src/Module/Moderation/Report/Create.php:283
msgid "Forward report"
msgstr "Bericht weiterleiten"
-#: src/Module/Moderation/Report/Create.php:297
+#: src/Module/Moderation/Report/Create.php:283
msgid "Would you ike to forward this report to the remote server?"
msgstr "Möchtest du diesen Bericht an den Entfernten-Server weiterleiten?"
-#: src/Module/Moderation/Report/Create.php:330
+#: src/Module/Moderation/Report/Create.php:316
msgid "1. Pick a contact"
msgstr "1. Wähle einen Kontakt"
-#: src/Module/Moderation/Report/Create.php:331
+#: src/Module/Moderation/Report/Create.php:317
msgid "2. Pick a category"
msgstr "2. Wähle eine Kategorie"
-#: src/Module/Moderation/Report/Create.php:332
+#: src/Module/Moderation/Report/Create.php:318
msgid "2a. Pick rules"
msgstr "2a. Regeln wählen"
-#: src/Module/Moderation/Report/Create.php:333
+#: src/Module/Moderation/Report/Create.php:319
msgid "2b. Add comment"
msgstr "2b. Kommentar hinzufügen"
-#: src/Module/Moderation/Report/Create.php:334
+#: src/Module/Moderation/Report/Create.php:320
msgid "3. Pick posts"
msgstr "3. Beiträge auswählen"
-#: src/Module/Moderation/Reports.php:111
+#: src/Module/Moderation/Reports.php:97
msgid "List of reports"
msgstr "Liste der Reports"
-#: src/Module/Moderation/Reports.php:112
+#: src/Module/Moderation/Reports.php:98
msgid "This page display reports created by our or remote users."
msgstr "Auf dieser Seite werden Reports angezeigt, die von unseren oder entfernten Benutzern erstellt wurden."
-#: src/Module/Moderation/Reports.php:113
+#: src/Module/Moderation/Reports.php:99
msgid "No report exists at this node."
msgstr "Auf dieser Instanz ist kein Report vorhanden."
-#: src/Module/Moderation/Reports.php:116
+#: src/Module/Moderation/Reports.php:102
msgid "Category"
msgstr "Kategorie"
-#: src/Module/Moderation/Reports.php:120
+#: src/Module/Moderation/Reports.php:106
#, php-format
msgid "%s total report"
msgid_plural "%s total reports"
msgstr[0] "%s Report"
msgstr[1] "%s Reports insgesamt"
-#: src/Module/Moderation/Reports.php:123
+#: src/Module/Moderation/Reports.php:109
msgid "URL of the reported contact."
msgstr "URL des gemeldeten Kontakts."
-#: src/Module/Moderation/Summary.php:57 src/Module/Settings/Account.php:436
+#: src/Module/Moderation/Summary.php:43 src/Module/Settings/Account.php:422
msgid "Channel Relay"
msgstr "Kanalrelais"
-#: src/Module/Moderation/Summary.php:77
+#: src/Module/Moderation/Summary.php:63
msgid "Registered users"
msgstr "Registrierte Personen"
-#: src/Module/Moderation/Summary.php:79
+#: src/Module/Moderation/Summary.php:65
msgid "Pending registrations"
msgstr "Anstehende Anmeldungen"
-#: src/Module/Moderation/Users/Active.php:43
-#: src/Module/Moderation/Users/Index.php:43
+#: src/Module/Moderation/Users/Active.php:29
+#: src/Module/Moderation/Users/Index.php:29
#, php-format
msgid "%s user blocked"
msgid_plural "%s users blocked"
msgstr[0] "%s Nutzer blockiert"
msgstr[1] "%s Nutzer blockiert"
-#: src/Module/Moderation/Users/Active.php:51
-#: src/Module/Moderation/Users/Active.php:85
-#: src/Module/Moderation/Users/Blocked.php:51
-#: src/Module/Moderation/Users/Blocked.php:85
-#: src/Module/Moderation/Users/Index.php:58
-#: src/Module/Moderation/Users/Index.php:92
+#: src/Module/Moderation/Users/Active.php:37
+#: src/Module/Moderation/Users/Active.php:71
+#: src/Module/Moderation/Users/Blocked.php:37
+#: src/Module/Moderation/Users/Blocked.php:71
+#: src/Module/Moderation/Users/Index.php:44
+#: src/Module/Moderation/Users/Index.php:78
msgid "You can't remove yourself"
msgstr "Du kannst dich nicht selbst löschen!"
-#: src/Module/Moderation/Users/Active.php:55
-#: src/Module/Moderation/Users/Blocked.php:55
-#: src/Module/Moderation/Users/Index.php:62
+#: src/Module/Moderation/Users/Active.php:41
+#: src/Module/Moderation/Users/Blocked.php:41
+#: src/Module/Moderation/Users/Index.php:48
#, php-format
msgid "%s user deleted"
msgid_plural "%s users deleted"
msgstr[0] "%s Nutzer gelöscht"
msgstr[1] "%s Nutzer gelöscht"
-#: src/Module/Moderation/Users/Active.php:83
-#: src/Module/Moderation/Users/Blocked.php:83
-#: src/Module/Moderation/Users/Index.php:90
+#: src/Module/Moderation/Users/Active.php:69
+#: src/Module/Moderation/Users/Blocked.php:69
+#: src/Module/Moderation/Users/Index.php:76
#, php-format
msgid "User \"%s\" deleted"
msgstr "Nutzer \"%s\" gelöscht"
-#: src/Module/Moderation/Users/Active.php:93
-#: src/Module/Moderation/Users/Index.php:100
+#: src/Module/Moderation/Users/Active.php:79
+#: src/Module/Moderation/Users/Index.php:86
#, php-format
msgid "User \"%s\" blocked"
msgstr "Nutzer \"%s\" blockiert"
-#: src/Module/Moderation/Users/Active.php:126
-#: src/Module/Moderation/Users/Blocked.php:126
-#: src/Module/Moderation/Users/Deleted.php:83
-#: src/Module/Moderation/Users/Index.php:140
-#: src/Module/Moderation/Users/Index.php:160
+#: src/Module/Moderation/Users/Active.php:112
+#: src/Module/Moderation/Users/Blocked.php:112
+#: src/Module/Moderation/Users/Deleted.php:69
+#: src/Module/Moderation/Users/Index.php:126
+#: src/Module/Moderation/Users/Index.php:146
msgid "Register date"
msgstr "Anmeldedatum"
-#: src/Module/Moderation/Users/Active.php:126
-#: src/Module/Moderation/Users/Blocked.php:126
-#: src/Module/Moderation/Users/Deleted.php:83
-#: src/Module/Moderation/Users/Index.php:140
-#: src/Module/Moderation/Users/Index.php:160
+#: src/Module/Moderation/Users/Active.php:112
+#: src/Module/Moderation/Users/Blocked.php:112
+#: src/Module/Moderation/Users/Deleted.php:69
+#: src/Module/Moderation/Users/Index.php:126
+#: src/Module/Moderation/Users/Index.php:146
msgid "Last login"
msgstr "Letzte Anmeldung"
-#: src/Module/Moderation/Users/Active.php:126
-#: src/Module/Moderation/Users/Blocked.php:126
-#: src/Module/Moderation/Users/Deleted.php:83
-#: src/Module/Moderation/Users/Index.php:140
-#: src/Module/Moderation/Users/Index.php:160
+#: src/Module/Moderation/Users/Active.php:112
+#: src/Module/Moderation/Users/Blocked.php:112
+#: src/Module/Moderation/Users/Deleted.php:69
+#: src/Module/Moderation/Users/Index.php:126
+#: src/Module/Moderation/Users/Index.php:146
msgid "Last public item"
msgstr "Letzter öffentliche Beitrag"
-#: src/Module/Moderation/Users/Active.php:134
+#: src/Module/Moderation/Users/Active.php:120
msgid "Active Accounts"
msgstr "Aktive Benutzerkonten"
-#: src/Module/Moderation/Users/Active.php:138
-#: src/Module/Moderation/Users/Blocked.php:137
-#: src/Module/Moderation/Users/Index.php:153
+#: src/Module/Moderation/Users/Active.php:124
+#: src/Module/Moderation/Users/Blocked.php:123
+#: src/Module/Moderation/Users/Index.php:139
msgid "User blocked"
msgstr "Nutzer blockiert."
-#: src/Module/Moderation/Users/Active.php:139
-#: src/Module/Moderation/Users/Blocked.php:139
-#: src/Module/Moderation/Users/Index.php:155
+#: src/Module/Moderation/Users/Active.php:125
+#: src/Module/Moderation/Users/Blocked.php:125
+#: src/Module/Moderation/Users/Index.php:141
msgid "Site admin"
msgstr "Seitenadministrator"
-#: src/Module/Moderation/Users/Active.php:140
-#: src/Module/Moderation/Users/Blocked.php:140
-#: src/Module/Moderation/Users/Index.php:156
+#: src/Module/Moderation/Users/Active.php:126
+#: src/Module/Moderation/Users/Blocked.php:126
+#: src/Module/Moderation/Users/Index.php:142
msgid "Account expired"
msgstr "Account ist abgelaufen"
-#: src/Module/Moderation/Users/Active.php:141
-#: src/Module/Moderation/Users/Index.php:159
+#: src/Module/Moderation/Users/Active.php:127
+#: src/Module/Moderation/Users/Index.php:145
msgid "Create a new user"
msgstr "Neues Benutzerkonto anlegen"
-#: src/Module/Moderation/Users/Active.php:147
-#: src/Module/Moderation/Users/Blocked.php:146
-#: src/Module/Moderation/Users/Index.php:165
+#: src/Module/Moderation/Users/Active.php:133
+#: src/Module/Moderation/Users/Blocked.php:132
+#: src/Module/Moderation/Users/Index.php:151
msgid ""
"Selected users will be deleted!\\n\\nEverything these users had posted on "
"this site will be permanently deleted!\\n\\nAre you sure?"
msgstr "Die markierten Nutzer werden gelöscht!\\n\\nAlle Beiträge, die diese Nutzer auf dieser Seite veröffentlicht haben, werden permanent gelöscht!\\n\\nBist du sicher?"
-#: src/Module/Moderation/Users/Active.php:148
-#: src/Module/Moderation/Users/Blocked.php:147
-#: src/Module/Moderation/Users/Index.php:166
+#: src/Module/Moderation/Users/Active.php:134
+#: src/Module/Moderation/Users/Blocked.php:133
+#: src/Module/Moderation/Users/Index.php:152
msgid ""
"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
"site will be permanently deleted!\\n\\nAre you sure?"
msgstr "Der Nutzer {0} wird gelöscht!\\n\\nAlles, was dieser Nutzer auf dieser Seite veröffentlicht hat, wird permanent gelöscht!\\n\\nBist du sicher?"
-#: src/Module/Moderation/Users/Blocked.php:43
-#: src/Module/Moderation/Users/Index.php:50
+#: src/Module/Moderation/Users/Blocked.php:29
+#: src/Module/Moderation/Users/Index.php:36
#, php-format
msgid "%s user unblocked"
msgid_plural "%s users unblocked"
msgstr[0] "%s Nutzer freigeschaltet"
msgstr[1] "%s Nutzer freigeschaltet"
-#: src/Module/Moderation/Users/Blocked.php:92
-#: src/Module/Moderation/Users/Index.php:106
+#: src/Module/Moderation/Users/Blocked.php:78
+#: src/Module/Moderation/Users/Index.php:92
#, php-format
msgid "User \"%s\" unblocked"
msgstr "Nutzer \"%s\" frei geschaltet"
-#: src/Module/Moderation/Users/Blocked.php:134
+#: src/Module/Moderation/Users/Blocked.php:120
msgid "Blocked Users"
msgstr "Blockierte Benutzer"
-#: src/Module/Moderation/Users/Create.php:62
+#: src/Module/Moderation/Users/Create.php:48
msgid "New User"
msgstr "Neuer Nutzer"
-#: src/Module/Moderation/Users/Create.php:63
+#: src/Module/Moderation/Users/Create.php:49
msgid "Add User"
msgstr "Nutzer hinzufügen"
-#: src/Module/Moderation/Users/Create.php:70
+#: src/Module/Moderation/Users/Create.php:56
msgid "Name of the new user."
msgstr "Name des neuen Nutzers"
-#: src/Module/Moderation/Users/Create.php:71
+#: src/Module/Moderation/Users/Create.php:57
msgid "Nickname"
msgstr "Spitzname"
-#: src/Module/Moderation/Users/Create.php:71
+#: src/Module/Moderation/Users/Create.php:57
msgid "Nickname of the new user."
msgstr "Spitznamen für den neuen Nutzer"
-#: src/Module/Moderation/Users/Create.php:72
+#: src/Module/Moderation/Users/Create.php:58
msgid "Email address of the new user."
msgstr "Email Adresse des neuen Nutzers"
-#: src/Module/Moderation/Users/Deleted.php:81
+#: src/Module/Moderation/Users/Deleted.php:67
msgid "Users awaiting permanent deletion"
msgstr "Nutzer wartet auf permanente Löschung"
-#: src/Module/Moderation/Users/Deleted.php:83
-#: src/Module/Moderation/Users/Index.php:160
+#: src/Module/Moderation/Users/Deleted.php:69
+#: src/Module/Moderation/Users/Index.php:146
msgid "Permanent deletion"
msgstr "Permanent löschen"
-#: src/Module/Moderation/Users/Index.php:150
+#: src/Module/Moderation/Users/Index.php:136
msgid "User waiting for permanent deletion"
msgstr "Nutzer wartet auf permanente Löschung"
-#: src/Module/Moderation/Users/Pending.php:44
+#: src/Module/Moderation/Users/Pending.php:30
#, php-format
msgid "%s user approved"
msgid_plural "%s users approved"
msgstr[0] "%sNutzer zugelassen"
msgstr[1] "%sNutzer zugelassen"
-#: src/Module/Moderation/Users/Pending.php:51
+#: src/Module/Moderation/Users/Pending.php:37
#, php-format
msgid "%s registration revoked"
msgid_plural "%s registrations revoked"
msgstr[0] "%sRegistration zurückgezogen"
msgstr[1] "%sRegistrierungen zurückgezogen"
-#: src/Module/Moderation/Users/Pending.php:76
+#: src/Module/Moderation/Users/Pending.php:62
msgid "Account approved."
msgstr "Konto freigegeben."
-#: src/Module/Moderation/Users/Pending.php:82
+#: src/Module/Moderation/Users/Pending.php:68
msgid "Registration revoked"
msgstr "Registrierung zurückgezogen"
-#: src/Module/Moderation/Users/Pending.php:97
+#: src/Module/Moderation/Users/Pending.php:83
msgid "User registrations awaiting review"
msgstr "Neuanmeldungen, die auf Deine Bestätigung warten"
-#: src/Module/Moderation/Users/Pending.php:99
+#: src/Module/Moderation/Users/Pending.php:85
msgid "Request date"
msgstr "Anfragedatum"
-#: src/Module/Moderation/Users/Pending.php:100
+#: src/Module/Moderation/Users/Pending.php:86
msgid "No registrations."
msgstr "Keine Neuanmeldungen."
-#: src/Module/Moderation/Users/Pending.php:101
+#: src/Module/Moderation/Users/Pending.php:87
msgid "Note from the user"
msgstr "Hinweis vom Nutzer"
-#: src/Module/Moderation/Users/Pending.php:103
+#: src/Module/Moderation/Users/Pending.php:89
msgid "Deny"
msgstr "Verwehren"
-#: src/Module/Notifications/Introductions.php:105
+#: src/Module/Notifications/Introductions.php:91
msgid "Show Ignored Requests"
msgstr "Zeige ignorierte Anfragen"
-#: src/Module/Notifications/Introductions.php:105
+#: src/Module/Notifications/Introductions.php:91
msgid "Hide Ignored Requests"
msgstr "Verberge ignorierte Anfragen"
-#: src/Module/Notifications/Introductions.php:121
-#: src/Module/Notifications/Introductions.php:184
+#: src/Module/Notifications/Introductions.php:107
+#: src/Module/Notifications/Introductions.php:170
msgid "Notification type:"
msgstr "Art der Benachrichtigung:"
-#: src/Module/Notifications/Introductions.php:124
+#: src/Module/Notifications/Introductions.php:110
msgid "Suggested by:"
msgstr "Vorgeschlagen von:"
-#: src/Module/Notifications/Introductions.php:149
+#: src/Module/Notifications/Introductions.php:135
msgid "Claims to be known to you: "
msgstr "Behauptet, dich zu kennen: "
-#: src/Module/Notifications/Introductions.php:158
+#: src/Module/Notifications/Introductions.php:144
msgid "Shall your connection be bidirectional or not?"
msgstr "Soll die Verbindung beidseitig sein oder nicht?"
-#: src/Module/Notifications/Introductions.php:159
+#: src/Module/Notifications/Introductions.php:145
#, php-format
msgid ""
"Accepting %s as a friend allows %s to subscribe to your posts, and you will "
"also receive updates from them in your news feed."
msgstr "Akzeptierst du %s als Kontakt, erlaubst du damit das Lesen deiner Beiträge und abonnierst selbst auch die Beiträge von %s."
-#: src/Module/Notifications/Introductions.php:160
+#: src/Module/Notifications/Introductions.php:146
#, php-format
msgid ""
"Accepting %s as a subscriber allows them to subscribe to your posts, but you"
" will not receive updates from them in your news feed."
msgstr "Wenn du %s als Abonnent akzeptierst, erlaubst du damit das Lesen deiner Beiträge, wirst aber selbst die Beiträge der anderen Seite nicht erhalten."
-#: src/Module/Notifications/Introductions.php:162
+#: src/Module/Notifications/Introductions.php:148
msgid "Friend"
msgstr "Kontakt"
-#: src/Module/Notifications/Introductions.php:163
+#: src/Module/Notifications/Introductions.php:149
msgid "Subscriber"
msgstr "Abonnent"
-#: src/Module/Notifications/Introductions.php:222
+#: src/Module/Notifications/Introductions.php:208
msgid "No introductions."
msgstr "Keine Kontaktanfragen."
-#: src/Module/Notifications/Introductions.php:223
-#: src/Module/Notifications/Notifications.php:141
+#: src/Module/Notifications/Introductions.php:209
+#: src/Module/Notifications/Notifications.php:127
#, php-format
msgid "No more %s notifications."
msgstr "Keine weiteren %s-Benachrichtigungen"
-#: src/Module/Notifications/Notification.php:135
+#: src/Module/Notifications/Notification.php:121
msgid "You must be logged in to show this page."
msgstr "Du musst eingeloggt sein damit diese Seite angezeigt werden kann."
-#: src/Module/Notifications/Notifications.php:66
+#: src/Module/Notifications/Notifications.php:52
msgid "Network Notifications"
msgstr "Netzwerkbenachrichtigungen"
-#: src/Module/Notifications/Notifications.php:72
+#: src/Module/Notifications/Notifications.php:58
msgid "System Notifications"
msgstr "Systembenachrichtigungen"
-#: src/Module/Notifications/Notifications.php:78
+#: src/Module/Notifications/Notifications.php:64
msgid "Personal Notifications"
msgstr "Persönliche Benachrichtigungen"
-#: src/Module/Notifications/Notifications.php:84
+#: src/Module/Notifications/Notifications.php:70
msgid "Home Notifications"
msgstr "Pinnwandbenachrichtigungen"
-#: src/Module/Notifications/Notifications.php:146
+#: src/Module/Notifications/Notifications.php:132
msgid "Show unread"
msgstr "Ungelesene anzeigen"
-#: src/Module/Notifications/Ping.php:220
+#: src/Module/Notifications/Ping.php:206
msgid "{0} requested registration"
msgstr "{0} möchte sich registrieren"
-#: src/Module/Notifications/Ping.php:229
+#: src/Module/Notifications/Ping.php:215
#, php-format
msgid "{0} and %d others requested registration"
msgstr "{0} und %d weitere möchten sich registrieren"
-#: src/Module/OAuth/Acknowledge.php:51
+#: src/Module/OAuth/Acknowledge.php:37
msgid "Authorize application connection"
msgstr "Verbindung der Applikation autorisieren"
-#: src/Module/OAuth/Acknowledge.php:53
+#: src/Module/OAuth/Acknowledge.php:39
msgid ""
"Do you want to authorize this application to access your posts and contacts,"
" and/or create new posts for you?"
msgstr "Möchtest du dieser Anwendung den Zugriff auf Deine Beiträge und Kontakte sowie das Erstellen neuer Beiträge in Deinem Namen gestatten?"
-#: src/Module/OAuth/Authorize.php:54
+#: src/Module/OAuth/Authorize.php:40
msgid "Unsupported or missing response type"
msgstr "Der Typ der Antwort fehlt oder wird nicht unterstützt"
-#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:75
+#: src/Module/OAuth/Authorize.php:45 src/Module/OAuth/Token.php:61
msgid "Incomplete request data"
msgstr "Daten der Anfrage sind nicht vollständig"
-#: src/Module/OAuth/Authorize.php:106
+#: src/Module/OAuth/Authorize.php:92
#, php-format
msgid ""
"Please copy the following authentication code into your application and "
"close this window: %s"
msgstr "Bitte kopiere den folgenden Authentifizierungscode in deine App und schließe dieses Fenster: %s"
-#: src/Module/OAuth/Token.php:80
+#: src/Module/OAuth/Token.php:66
msgid "Invalid data or unknown client"
msgstr "Ungültige Daten oder unbekannter Client"
-#: src/Module/OAuth/Token.php:105
+#: src/Module/OAuth/Token.php:91
msgid "Unsupported or missing grant type"
msgstr "Der Grant-Typ fehlt oder wird nicht unterstützt"
-#: src/Module/OStatus/Repair.php:83
-msgid "Resubscribing to OStatus contacts"
-msgstr "Erneuern der OStatus-Abonements"
-
-#: src/Module/OStatus/Repair.php:84 src/Module/OStatus/Subscribe.php:160
-msgid "Keep this window open until done."
-msgstr "Lasse dieses Fenster offen, bis der Vorgang abgeschlossen ist."
-
-#: src/Module/OStatus/Repair.php:85
-msgid "✔ Done"
-msgstr "✔ Erledigt"
-
-#: src/Module/OStatus/Repair.php:86
-msgid "No OStatus contacts to resubscribe to."
-msgstr "Keine OStatus Kontakte zum Neufolgen vorhanden."
-
-#: src/Module/OStatus/Subscribe.php:72
+#: src/Module/OStatus/Subscribe.php:58
msgid "Subscribing to contacts"
msgstr "Kontakten folgen"
-#: src/Module/OStatus/Subscribe.php:81
+#: src/Module/OStatus/Subscribe.php:67
msgid "No contact provided."
msgstr "Keine Kontakte gefunden."
-#: src/Module/OStatus/Subscribe.php:87
+#: src/Module/OStatus/Subscribe.php:73
msgid "Couldn't fetch information for contact."
msgstr "Konnte die Kontaktinformationen nicht einholen."
-#: src/Module/OStatus/Subscribe.php:98
+#: src/Module/OStatus/Subscribe.php:84
msgid "Couldn't fetch friends for contact."
msgstr "Konnte die Kontaktliste des Kontakts nicht abfragen."
-#: src/Module/OStatus/Subscribe.php:104 src/Module/OStatus/Subscribe.php:115
+#: src/Module/OStatus/Subscribe.php:90 src/Module/OStatus/Subscribe.php:101
msgid "Couldn't fetch following contacts."
msgstr "Konnte Liste der gefolgten Kontakte nicht einholen."
-#: src/Module/OStatus/Subscribe.php:110
+#: src/Module/OStatus/Subscribe.php:96
msgid "Couldn't fetch remote profile."
msgstr "Konnte das entfernte Profil nicht laden."
-#: src/Module/OStatus/Subscribe.php:120
+#: src/Module/OStatus/Subscribe.php:106
msgid "Unsupported network"
msgstr "Netzwerk wird nicht unterstützt"
-#: src/Module/OStatus/Subscribe.php:136
+#: src/Module/OStatus/Subscribe.php:122
msgid "Done"
msgstr "Erledigt"
-#: src/Module/OStatus/Subscribe.php:150
+#: src/Module/OStatus/Subscribe.php:136
msgid "success"
msgstr "Erfolg"
-#: src/Module/OStatus/Subscribe.php:152
+#: src/Module/OStatus/Subscribe.php:138
msgid "failed"
msgstr "Fehlgeschlagen"
-#: src/Module/OStatus/Subscribe.php:155
+#: src/Module/OStatus/Subscribe.php:141
msgid "ignored"
msgstr "Ignoriert"
-#: src/Module/Photo.php:122
+#: src/Module/OStatus/Subscribe.php:146
+msgid "Keep this window open until done."
+msgstr "Lasse dieses Fenster offen, bis der Vorgang abgeschlossen ist."
+
+#: src/Module/Photo.php:108
msgid "The Photo is not available."
msgstr "Das Foto ist nicht verfügbar."
-#: src/Module/Photo.php:147
+#: src/Module/Photo.php:133
#, php-format
msgid "The Photo with id %s is not available."
msgstr "Das Bild mit ID %s ist nicht verfügbar."
-#: src/Module/Photo.php:188
+#: src/Module/Photo.php:174
#, php-format
msgid "Invalid external resource with url %s."
msgstr "Ungültige externe Ressource mit der URL %s"
-#: src/Module/Photo.php:190
+#: src/Module/Photo.php:176
#, php-format
msgid "Invalid photo with id %s."
msgstr "Fehlerhaftes Foto mit der ID %s."
-#: src/Module/Post/Edit.php:82 src/Module/Post/Edit.php:96
+#: src/Module/Post/Edit.php:68 src/Module/Post/Edit.php:82
msgid "Post not found."
msgstr "Beitrag nicht gefunden."
-#: src/Module/Post/Edit.php:102
+#: src/Module/Post/Edit.php:88
msgid "Edit post"
msgstr "Beitrag bearbeiten"
-#: src/Module/Post/Edit.php:136
+#: src/Module/Post/Edit.php:122
msgid "web link"
msgstr "Weblink"
-#: src/Module/Post/Edit.php:137
+#: src/Module/Post/Edit.php:123
msgid "Insert video link"
msgstr "Video-Adresse einfügen"
-#: src/Module/Post/Edit.php:138
+#: src/Module/Post/Edit.php:124
msgid "video link"
msgstr "Video-Link"
-#: src/Module/Post/Edit.php:139
+#: src/Module/Post/Edit.php:125
msgid "Insert audio link"
msgstr "Audio-Adresse einfügen"
-#: src/Module/Post/Edit.php:140
+#: src/Module/Post/Edit.php:126
msgid "audio link"
msgstr "Audio-Link"
-#: src/Module/Post/Tag/Remove.php:106
+#: src/Module/Post/Tag/Remove.php:92
msgid "Remove Item Tag"
msgstr "Gegenstands-Tag entfernen"
-#: src/Module/Post/Tag/Remove.php:107
+#: src/Module/Post/Tag/Remove.php:93
msgid "Select a tag to remove: "
msgstr "Wähle ein Tag zum Entfernen aus: "
-#: src/Module/Post/Tag/Remove.php:108
-#: src/Module/Settings/TwoFactor/Trusted.php:147
+#: src/Module/Post/Tag/Remove.php:94
+#: src/Module/Settings/TwoFactor/Trusted.php:133
msgid "Remove"
msgstr "Entfernen"
-#: src/Module/Privacy/PermissionTooltip.php:71
+#: src/Module/Privacy/PermissionTooltip.php:57
#, php-format
msgid "Wrong type \"%s\", expected one of: %s"
msgstr "Falscher Typ \"%s\", hatte einen der Folgenden erwartet: %s"
-#: src/Module/Privacy/PermissionTooltip.php:101
+#: src/Module/Privacy/PermissionTooltip.php:87
msgid "Model not found"
msgstr "Model nicht gefunden"
-#: src/Module/Privacy/PermissionTooltip.php:118
+#: src/Module/Privacy/PermissionTooltip.php:104
msgid "Unlisted"
msgstr "Ungelistet"
-#: src/Module/Privacy/PermissionTooltip.php:124
+#: src/Module/Privacy/PermissionTooltip.php:110
msgid "Remote privacy information not available."
msgstr "Entfernte Privatsphäreneinstellungen nicht verfügbar."
-#: src/Module/Privacy/PermissionTooltip.php:131
+#: src/Module/Privacy/PermissionTooltip.php:117
msgid "Visible to:"
msgstr "Sichtbar für:"
-#: src/Module/Privacy/PermissionTooltip.php:133
+#: src/Module/Privacy/PermissionTooltip.php:119
msgid "CC:"
msgstr "CC:"
-#: src/Module/Privacy/PermissionTooltip.php:134
+#: src/Module/Privacy/PermissionTooltip.php:120
msgid "BCC:"
msgstr "BCC:"
-#: src/Module/Privacy/PermissionTooltip.php:135
+#: src/Module/Privacy/PermissionTooltip.php:121
msgid "Audience:"
msgstr "Publikum:"
-#: src/Module/Privacy/PermissionTooltip.php:136
+#: src/Module/Privacy/PermissionTooltip.php:122
msgid "Attributed To:"
msgstr "Zuzuschreiben:"
-#: src/Module/Privacy/PermissionTooltip.php:234
+#: src/Module/Privacy/PermissionTooltip.php:220
#, php-format
msgid "Collection (%s)"
msgstr "Sammlung (%s)"
-#: src/Module/Privacy/PermissionTooltip.php:238
+#: src/Module/Privacy/PermissionTooltip.php:224
#, php-format
msgid "Followers (%s)"
msgstr "Folgende (%s)"
-#: src/Module/Privacy/PermissionTooltip.php:255
+#: src/Module/Privacy/PermissionTooltip.php:241
#, php-format
msgid "%d more"
msgstr "%d weitere"
-#: src/Module/Profile/Contacts.php:159
+#: src/Module/Profile/Contacts.php:145
msgid "No contacts."
msgstr "Keine Kontakte."
-#: src/Module/Profile/Conversations.php:106
-#: src/Module/Profile/Conversations.php:109 src/Module/Profile/Profile.php:353
-#: src/Module/Profile/Profile.php:356 src/Protocol/Feed.php:1114
-#: src/Protocol/OStatus.php:1011
-#, php-format
-msgid "%s's timeline"
-msgstr "Timeline von %s"
-
-#: src/Module/Profile/Conversations.php:107 src/Module/Profile/Profile.php:354
-#: src/Protocol/Feed.php:1118 src/Protocol/OStatus.php:1016
+#: src/Module/Profile/Conversations.php:92 src/Module/Profile/Profile.php:339
+#: src/Protocol/Feed.php:1097
#, php-format
msgid "%s's posts"
msgstr "Beiträge von %s"
-#: src/Module/Profile/Conversations.php:108 src/Module/Profile/Profile.php:355
-#: src/Protocol/Feed.php:1121 src/Protocol/OStatus.php:1020
+#: src/Module/Profile/Conversations.php:93 src/Module/Profile/Profile.php:340
+#: src/Protocol/Feed.php:1100
#, php-format
msgid "%s's comments"
msgstr "Kommentare von %s"
-#: src/Module/Profile/Photos.php:164 src/Module/Profile/Photos.php:167
-#: src/Module/Profile/Photos.php:192
-#: src/Module/Settings/Profile/Photo/Index.php:58
+#: src/Module/Profile/Conversations.php:94 src/Module/Profile/Profile.php:341
+#: src/Protocol/Feed.php:1093
+#, php-format
+msgid "%s's timeline"
+msgstr "Timeline von %s"
+
+#: src/Module/Profile/Photos.php:150 src/Module/Profile/Photos.php:153
+#: src/Module/Profile/Photos.php:178
+#: src/Module/Settings/Profile/Photo/Index.php:44
#, php-format
msgid "Image exceeds size limit of %s"
msgstr "Bildgröße überschreitet das Limit von %s"
-#: src/Module/Profile/Photos.php:170
+#: src/Module/Profile/Photos.php:156
msgid "Image upload didn't complete, please try again"
msgstr "Der Upload des Bildes war nicht vollständig. Bitte versuche es erneut."
-#: src/Module/Profile/Photos.php:173
+#: src/Module/Profile/Photos.php:159
msgid "Image file is missing"
msgstr "Bilddatei konnte nicht gefunden werden."
-#: src/Module/Profile/Photos.php:178
+#: src/Module/Profile/Photos.php:164
msgid ""
"Server can't accept new file upload at this time, please contact your "
"administrator"
msgstr "Der Server kann derzeit keine neuen Datei-Uploads akzeptieren. Bitte kontaktiere deinen Administrator."
-#: src/Module/Profile/Photos.php:200
+#: src/Module/Profile/Photos.php:186
msgid "Image file is empty."
msgstr "Bilddatei ist leer."
-#: src/Module/Profile/Photos.php:352
+#: src/Module/Profile/Photos.php:338
msgid "View Album"
msgstr "Album betrachten"
-#: src/Module/Profile/Profile.php:114 src/Module/Profile/Restricted.php:50
+#: src/Module/Profile/Profile.php:100 src/Module/Profile/Restricted.php:36
msgid "Profile not found."
msgstr "Profil nicht gefunden."
-#: src/Module/Profile/Profile.php:160
+#: src/Module/Profile/Profile.php:146
#, php-format
msgid ""
"You're currently viewing your profile as %s Cancel"
msgstr "Du betrachtest dein Profil gerade als %s Abbrechen"
-#: src/Module/Profile/Profile.php:169
+#: src/Module/Profile/Profile.php:155
msgid "Full Name:"
msgstr "Kompletter Name:"
-#: src/Module/Profile/Profile.php:174
+#: src/Module/Profile/Profile.php:160
msgid "Member since:"
msgstr "Mitglied seit:"
-#: src/Module/Profile/Profile.php:180
+#: src/Module/Profile/Profile.php:166
msgid "j F, Y"
msgstr "j F, Y"
-#: src/Module/Profile/Profile.php:181
+#: src/Module/Profile/Profile.php:167
msgid "j F"
msgstr "j F"
-#: src/Module/Profile/Profile.php:189 src/Util/Temporal.php:168
+#: src/Module/Profile/Profile.php:175 src/Util/Temporal.php:154
msgid "Birthday:"
msgstr "Geburtstag:"
-#: src/Module/Profile/Profile.php:192
-#: src/Module/Settings/Profile/Index.php:296 src/Util/Temporal.php:170
+#: src/Module/Profile/Profile.php:178
+#: src/Module/Settings/Profile/Index.php:282 src/Util/Temporal.php:156
msgid "Age: "
msgstr "Alter: "
-#: src/Module/Profile/Profile.php:192
-#: src/Module/Settings/Profile/Index.php:296 src/Util/Temporal.php:170
+#: src/Module/Profile/Profile.php:178
+#: src/Module/Settings/Profile/Index.php:282 src/Util/Temporal.php:156
#, php-format
msgid "%d year old"
msgid_plural "%d years old"
msgstr[0] "%d Jahr alt"
msgstr[1] "%d Jahre alt"
-#: src/Module/Profile/Profile.php:197
-#: src/Module/Settings/Profile/Index.php:289
+#: src/Module/Profile/Profile.php:183
+#: src/Module/Settings/Profile/Index.php:275
msgid "Description:"
msgstr "Beschreibung"
-#: src/Module/Profile/Profile.php:263
+#: src/Module/Profile/Profile.php:249
msgid "Groups:"
msgstr "Gruppen:"
-#: src/Module/Profile/Profile.php:275
+#: src/Module/Profile/Profile.php:261
msgid "View profile as:"
msgstr "Das Profil aus der Sicht von jemandem anderen betrachten:"
-#: src/Module/Profile/Profile.php:292
+#: src/Module/Profile/Profile.php:278
msgid "View as"
msgstr "Betrachten als"
-#: src/Module/Profile/RemoteFollow.php:82
+#: src/Module/Profile/RemoteFollow.php:68
msgid "Profile unavailable."
msgstr "Profil nicht verfügbar."
-#: src/Module/Profile/RemoteFollow.php:88
+#: src/Module/Profile/RemoteFollow.php:74
msgid "Invalid locator"
msgstr "Ungültiger Locator"
-#: src/Module/Profile/RemoteFollow.php:95
+#: src/Module/Profile/RemoteFollow.php:81
msgid "The provided profile link doesn't seem to be valid"
msgstr "Der angegebene Profil-Link scheint nicht gültig zu sein."
-#: src/Module/Profile/RemoteFollow.php:100
+#: src/Module/Profile/RemoteFollow.php:86
msgid ""
"Remote subscription can't be done for your network. Please subscribe "
"directly on your system."
msgstr "Entferntes Abonnieren kann für dein Netzwerk nicht durchgeführt werden. Bitte nutze direkt die Abonnieren-Funktion deines Systems. "
-#: src/Module/Profile/RemoteFollow.php:128
+#: src/Module/Profile/RemoteFollow.php:114
msgid "Friend/Connection Request"
msgstr "Kontaktanfrage"
-#: src/Module/Profile/RemoteFollow.php:129
+#: src/Module/Profile/RemoteFollow.php:115
#, php-format
msgid ""
"Enter your Webfinger address (user@domain.tld) or profile URL here. If this "
@@ -9320,579 +9301,579 @@ msgid ""
" or %s directly on your system."
msgstr "Gib entweder deine Webfinger- (user@domain.tld) oder die Profil-Adresse an. Wenn dies von deinem System nicht unterstützt wird, folge bitte %s oder %s direkt von deinem System. "
-#: src/Module/Profile/RemoteFollow.php:130
+#: src/Module/Profile/RemoteFollow.php:116
#, php-format
msgid ""
"If you are not yet a member of the free social web, follow "
"this link to find a public Friendica node and join us today."
msgstr "Solltest du das freie Soziale Netzwerk noch nicht benutzen, kannst du diesem Link folgen um eine öffentliche Friendica Instanz zu finden um noch heute dem Netzwerk beizutreten."
-#: src/Module/Profile/RemoteFollow.php:131
+#: src/Module/Profile/RemoteFollow.php:117
msgid "Your Webfinger address or profile URL:"
msgstr "Deine Webfinger Adresse oder Profil-URL"
-#: src/Module/Profile/Restricted.php:59
+#: src/Module/Profile/Restricted.php:45
msgid "Restricted profile"
msgstr "Eingeschränktes Profil"
-#: src/Module/Profile/Restricted.php:60
+#: src/Module/Profile/Restricted.php:46
msgid ""
"This profile has been restricted which prevents access to their public "
"content from anonymous visitors."
msgstr "Das Profil wurde eingeschränkt, dies verhindert den Zugriff auf öffentliche Beiträge durch anonyme Besucher des Profils."
-#: src/Module/Profile/Schedule.php:83
+#: src/Module/Profile/Schedule.php:69
msgid "Scheduled"
msgstr "Zeitplan"
-#: src/Module/Profile/Schedule.php:84
+#: src/Module/Profile/Schedule.php:70
msgid "Content"
msgstr "Inhalt"
-#: src/Module/Profile/Schedule.php:85
+#: src/Module/Profile/Schedule.php:71
msgid "Remove post"
msgstr "Beitrag entfernen"
-#: src/Module/Register.php:91
+#: src/Module/Register.php:77
msgid "Only parent users can create additional accounts."
msgstr "Zusätzliche Nutzerkonten können nur von Verwaltern angelegt werden."
-#: src/Module/Register.php:106 src/Module/User/Import.php:112
+#: src/Module/Register.php:92 src/Module/User/Import.php:98
msgid ""
"This site has exceeded the number of allowed daily account registrations. "
"Please try again tomorrow."
msgstr "Die maximale Anzahl täglicher Registrierungen auf dieser Seite wurde überschritten. Bitte versuche es morgen noch einmal."
-#: src/Module/Register.php:123
+#: src/Module/Register.php:109
msgid ""
"You may (optionally) fill in this form via OpenID by supplying your OpenID "
"and clicking \"Register\"."
msgstr "Du kannst dieses Formular auch (optional) mit deiner OpenID ausfüllen, indem du deine OpenID angibst und 'Registrieren' klickst."
-#: src/Module/Register.php:124
+#: src/Module/Register.php:110
msgid ""
"If you are not familiar with OpenID, please leave that field blank and fill "
"in the rest of the items."
msgstr "Wenn du nicht mit OpenID vertraut bist, lass dieses Feld bitte leer und fülle die restlichen Felder aus."
-#: src/Module/Register.php:125
+#: src/Module/Register.php:111
msgid "Your OpenID (optional): "
msgstr "Deine OpenID (optional): "
-#: src/Module/Register.php:134
+#: src/Module/Register.php:120
msgid "Include your profile in member directory?"
msgstr "Soll dein Profil im Nutzerverzeichnis angezeigt werden?"
-#: src/Module/Register.php:155
+#: src/Module/Register.php:141
msgid "Note for the admin"
msgstr "Hinweis für den Admin"
-#: src/Module/Register.php:155
+#: src/Module/Register.php:141
msgid "Leave a message for the admin, why you want to join this node"
msgstr "Hinterlasse eine Nachricht an den Admin, warum du einen Account auf dieser Instanz haben möchtest."
-#: src/Module/Register.php:156
+#: src/Module/Register.php:142
msgid "Membership on this site is by invitation only."
msgstr "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich."
-#: src/Module/Register.php:157
+#: src/Module/Register.php:143
msgid "Your invitation code: "
msgstr "Dein Einladungscode"
-#: src/Module/Register.php:165
+#: src/Module/Register.php:151
msgid "Your Display Name (as you would like it to be displayed on this system"
msgstr "Ihr Anzeigename (wie er auf dieser Instanz angezeigt werden soll)"
-#: src/Module/Register.php:166
+#: src/Module/Register.php:152
msgid ""
"Your Email Address: (Initial information will be send there, so this has to "
"be an existing address.)"
msgstr "Deine E-Mail Adresse (Informationen zur Registrierung werden an diese Adresse gesendet, darum muss sie existieren.)"
-#: src/Module/Register.php:167
+#: src/Module/Register.php:153
msgid "Please repeat your e-mail address:"
msgstr "Bitte wiederhole deine E-Mail Adresse"
-#: src/Module/Register.php:169 src/Module/Security/PasswordTooLong.php:100
-#: src/Module/Settings/Account.php:569
+#: src/Module/Register.php:155 src/Module/Security/PasswordTooLong.php:86
+#: src/Module/Settings/Account.php:555
msgid "New Password:"
msgstr "Neues Passwort:"
-#: src/Module/Register.php:169
+#: src/Module/Register.php:155
msgid "Leave empty for an auto generated password."
msgstr "Leer lassen, um das Passwort automatisch zu generieren."
-#: src/Module/Register.php:170 src/Module/Security/PasswordTooLong.php:101
-#: src/Module/Settings/Account.php:570
+#: src/Module/Register.php:156 src/Module/Security/PasswordTooLong.php:87
+#: src/Module/Settings/Account.php:556
msgid "Confirm:"
msgstr "Bestätigen:"
-#: src/Module/Register.php:171
+#: src/Module/Register.php:157
#, php-format
msgid ""
"Choose a profile nickname. This must begin with a text character. Your "
"profile address on this site will then be \"nickname@%s\"."
msgstr "Wähle einen Spitznamen für dein Profil. Dieser muss mit einem Buchstaben beginnen. Die Adresse deines Profils auf dieser Seite wird 'spitzname@%s' sein."
-#: src/Module/Register.php:172
+#: src/Module/Register.php:158
msgid "Choose a nickname: "
msgstr "Spitznamen wählen: "
-#: src/Module/Register.php:180 src/Module/User/Import.php:118
+#: src/Module/Register.php:166 src/Module/User/Import.php:104
msgid "Import"
msgstr "Import"
-#: src/Module/Register.php:181
+#: src/Module/Register.php:167
msgid "Import your profile to this friendica instance"
msgstr "Importiere dein Profil auf diese Friendica-Instanz"
-#: src/Module/Register.php:188
+#: src/Module/Register.php:174
msgid "Note: This node explicitly contains adult content"
msgstr "Hinweis: Dieser Knoten enthält explizit Inhalte für Erwachsene"
-#: src/Module/Register.php:190 src/Module/Settings/Delegation.php:181
+#: src/Module/Register.php:176 src/Module/Settings/Delegation.php:167
msgid "Parent Password:"
msgstr "Passwort des Verwalters"
-#: src/Module/Register.php:190 src/Module/Settings/Delegation.php:181
+#: src/Module/Register.php:176 src/Module/Settings/Delegation.php:167
msgid ""
"Please enter the password of the parent account to legitimize your request."
msgstr "Bitte gib das Passwort des Verwalters ein, um deine Anfrage zu bestätigen."
-#: src/Module/Register.php:219
+#: src/Module/Register.php:205
msgid "Password doesn't match."
msgstr "Das Passwort stimmt nicht."
-#: src/Module/Register.php:225
+#: src/Module/Register.php:211
msgid "Please enter your password."
msgstr "Bitte gib dein Passwort an."
-#: src/Module/Register.php:267
+#: src/Module/Register.php:253
msgid "You have entered too much information."
msgstr "Du hast zu viele Informationen eingegeben."
-#: src/Module/Register.php:290
+#: src/Module/Register.php:276
msgid "Please enter the identical mail address in the second field."
msgstr "Bitte gib die gleiche E-Mail Adresse noch einmal an."
-#: src/Module/Register.php:298
+#: src/Module/Register.php:284
msgid "Nickname cannot start with a digit."
msgstr "Der Spitzname darf nicht mit einer Zahl beginnen."
-#: src/Module/Register.php:300
+#: src/Module/Register.php:286
msgid "Nickname can only contain US-ASCII characters."
msgstr "Spitzname darf nur US-ASCII-Zeichen enthalten."
-#: src/Module/Register.php:329
+#: src/Module/Register.php:315
msgid "The additional account was created."
msgstr "Das zusätzliche Nutzerkonto wurde angelegt."
-#: src/Module/Register.php:354
+#: src/Module/Register.php:340
msgid ""
"Registration successful. Please check your email for further instructions."
msgstr "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an dich gesendet."
-#: src/Module/Register.php:361
+#: src/Module/Register.php:347
#, php-format
msgid ""
"Failed to send email message. Here your accout details:You can enter one of your one-time recovery codes in case you lost access" " to your mobile device.
" msgstr "Du kannst einen deiner einmaligen Wiederherstellungscodes eingeben, falls du den Zugriff auf dein Mobilgerät verloren hast." -#: src/Module/Security/TwoFactor/Recovery.php:101 +#: src/Module/Security/TwoFactor/Recovery.php:87 #, php-format msgid "Don’t have your phone? Enter a two-factor recovery code" msgstr "Hast du dein Handy nicht? Gib einen Zwei-Faktor-Wiederherstellungscode ein" -#: src/Module/Security/TwoFactor/Recovery.php:102 +#: src/Module/Security/TwoFactor/Recovery.php:88 msgid "Please enter a recovery code" msgstr "Bitte gib einen Wiederherstellungscode ein" -#: src/Module/Security/TwoFactor/Recovery.php:103 +#: src/Module/Security/TwoFactor/Recovery.php:89 msgid "Submit recovery code and complete login" msgstr "Sende den Wiederherstellungscode und schließe die Anmeldung ab" -#: src/Module/Security/TwoFactor/SignOut.php:122 +#: src/Module/Security/TwoFactor/SignOut.php:108 msgid "Sign out of this browser?" msgstr "Von diesem Browser abmelden?" -#: src/Module/Security/TwoFactor/SignOut.php:123 +#: src/Module/Security/TwoFactor/SignOut.php:109 msgid "" "If you trust this browser, you will not be asked for verification code " "the next time you sign in.
" msgstr "Wenn du diesem Browser vertraust, wirst du bei zukünftigen Anmeldungen nicht nach dem Verifikationscode gefragt.
" -#: src/Module/Security/TwoFactor/SignOut.php:124 +#: src/Module/Security/TwoFactor/SignOut.php:110 msgid "Sign out" msgstr "Abmelden" -#: src/Module/Security/TwoFactor/SignOut.php:126 +#: src/Module/Security/TwoFactor/SignOut.php:112 msgid "Trust and sign out" msgstr "Vertrauen und Abmelden" -#: src/Module/Security/TwoFactor/Trust.php:96 +#: src/Module/Security/TwoFactor/Trust.php:82 msgid "Couldn't save browser to Cookie." msgstr "Konnte keine Cookies speichern." -#: src/Module/Security/TwoFactor/Trust.php:141 +#: src/Module/Security/TwoFactor/Trust.php:127 msgid "Trust this browser?" msgstr "Vertraust du diesen Browser?" -#: src/Module/Security/TwoFactor/Trust.php:142 +#: src/Module/Security/TwoFactor/Trust.php:128 msgid "" "If you choose to trust this browser, you will not be asked for a " "verification code the next time you sign in.
" msgstr "Wenn du diesem Browser vertraust, wirst du bei zukünftigen Anmeldungen nicht nach dem Verifikationscode gefragt.
" -#: src/Module/Security/TwoFactor/Trust.php:143 +#: src/Module/Security/TwoFactor/Trust.php:129 msgid "Not now" msgstr "Nicht jetzt" -#: src/Module/Security/TwoFactor/Trust.php:144 +#: src/Module/Security/TwoFactor/Trust.php:130 msgid "Don't trust" msgstr "Nicht vertrauen" -#: src/Module/Security/TwoFactor/Trust.php:145 +#: src/Module/Security/TwoFactor/Trust.php:131 msgid "Trust" msgstr "Vertrauen" -#: src/Module/Security/TwoFactor/Verify.php:97 +#: src/Module/Security/TwoFactor/Verify.php:83 msgid "" "Open the two-factor authentication app on your device to get an " "authentication code and verify your identity.
" msgstr "Öffne die Zwei-Faktor-Authentifizierungs-App auf deinem Gerät, um einen Authentifizierungscode abzurufen und deine Identität zu überprüfen.
" -#: src/Module/Security/TwoFactor/Verify.php:100 +#: src/Module/Security/TwoFactor/Verify.php:86 #, php-format msgid "" "If you do not have access to your authentication code you can use a two-factor recovery code." msgstr "Wenn du keinen Zugriff auf deinen Authentifikationscode hast, kannst du einen Zwei-Faktor Wiederherstellungsschlüssel verwenden." -#: src/Module/Security/TwoFactor/Verify.php:101 -#: src/Module/Settings/TwoFactor/Verify.php:158 +#: src/Module/Security/TwoFactor/Verify.php:87 +#: src/Module/Settings/TwoFactor/Verify.php:144 msgid "Please enter a code from your authentication app" msgstr "Bitte gebe einen Code aus Ihrer Authentifizierungs-App ein" -#: src/Module/Security/TwoFactor/Verify.php:102 +#: src/Module/Security/TwoFactor/Verify.php:88 msgid "Verify code and complete login" msgstr "Code überprüfen und Anmeldung abschließen" -#: src/Module/Settings/Account.php:96 +#: src/Module/Settings/Account.php:82 msgid "Please use a shorter name." msgstr "Bitte verwende einen kürzeren Namen." -#: src/Module/Settings/Account.php:99 +#: src/Module/Settings/Account.php:85 msgid "Name too short." msgstr "Der Name ist zu kurz." -#: src/Module/Settings/Account.php:108 +#: src/Module/Settings/Account.php:94 msgid "Wrong Password." msgstr "Falsches Passwort" -#: src/Module/Settings/Account.php:113 +#: src/Module/Settings/Account.php:99 msgid "Invalid email." msgstr "Ungültige E-Mail-Adresse." -#: src/Module/Settings/Account.php:117 +#: src/Module/Settings/Account.php:103 msgid "Cannot change to that email." msgstr "Ändern der E-Mail nicht möglich. " -#: src/Module/Settings/Account.php:146 src/Module/Settings/Account.php:195 -#: src/Module/Settings/Account.php:216 src/Module/Settings/Account.php:300 -#: src/Module/Settings/Account.php:329 +#: src/Module/Settings/Account.php:132 src/Module/Settings/Account.php:181 +#: src/Module/Settings/Account.php:202 src/Module/Settings/Account.php:286 +#: src/Module/Settings/Account.php:315 msgid "Settings were not updated." msgstr "Einstellungen nicht aktualisiert" -#: src/Module/Settings/Account.php:347 +#: src/Module/Settings/Account.php:333 msgid "Contact CSV file upload error" msgstr "Fehler beim Hochladen der Kontakt CSV Datei" -#: src/Module/Settings/Account.php:366 +#: src/Module/Settings/Account.php:352 msgid "Importing Contacts done" msgstr "Kontakte wurden importiert." -#: src/Module/Settings/Account.php:379 +#: src/Module/Settings/Account.php:365 msgid "Relocate message has been send to your contacts" msgstr "Die Umzugsbenachrichtigung wurde an Deine Kontakte versendet." -#: src/Module/Settings/Account.php:396 +#: src/Module/Settings/Account.php:382 msgid "Unable to find your profile. Please contact your admin." msgstr "Konnte dein Profil nicht finden. Bitte kontaktiere den Admin." -#: src/Module/Settings/Account.php:438 +#: src/Module/Settings/Account.php:424 msgid "" "Account for a service that automatically shares content based on user " "defined channels." msgstr "Konto für einen Dienst, der automatisch Inhalte basierend auf vom Benutzer definierten Kanälen teilt." -#: src/Module/Settings/Account.php:448 +#: src/Module/Settings/Account.php:434 msgid "Personal Page Subtypes" msgstr "Unterarten der persönlichen Seite" -#: src/Module/Settings/Account.php:449 +#: src/Module/Settings/Account.php:435 msgid "Community Group Subtypes" msgstr "Unterarten der Gemeinschaftsgruppen" -#: src/Module/Settings/Account.php:460 +#: src/Module/Settings/Account.php:446 msgid "Account for a personal profile." msgstr "Konto für ein persönliches Profil." -#: src/Module/Settings/Account.php:467 +#: src/Module/Settings/Account.php:453 msgid "" "Account for an organisation that automatically approves contact requests as " "\"Followers\"." msgstr "Konto für eine Organisation, das Kontaktanfragen automatisch als \"Follower\" annimmt." -#: src/Module/Settings/Account.php:474 +#: src/Module/Settings/Account.php:460 msgid "" "Account for a news reflector that automatically approves contact requests as" " \"Followers\"." msgstr "Konto für einen Feedspiegel, das Kontaktanfragen automatisch als \"Follower\" annimmt." -#: src/Module/Settings/Account.php:481 +#: src/Module/Settings/Account.php:467 msgid "Account for community discussions." msgstr "Konto für Diskussionsforen. " -#: src/Module/Settings/Account.php:489 +#: src/Module/Settings/Account.php:475 msgid "" "Account for a regular personal profile that requires manual approval of " "\"Friends\" and \"Followers\"." msgstr "Konto für ein normales, persönliches Profil. Kontaktanfragen müssen manuell als \"Friend\" oder \"Follower\" bestätigt werden." -#: src/Module/Settings/Account.php:496 +#: src/Module/Settings/Account.php:482 msgid "" "Account for a public profile that automatically approves contact requests as" " \"Followers\"." msgstr "Konto für ein öffentliches Profil, das Kontaktanfragen automatisch als \"Follower\" annimmt." -#: src/Module/Settings/Account.php:503 +#: src/Module/Settings/Account.php:489 msgid "Automatically approves all contact requests." msgstr "Bestätigt alle Kontaktanfragen automatisch." -#: src/Module/Settings/Account.php:510 +#: src/Module/Settings/Account.php:496 msgid "Contact requests have to be manually approved." msgstr "Kontaktanfragen müssen manuell akzeptiert werden." -#: src/Module/Settings/Account.php:517 +#: src/Module/Settings/Account.php:503 msgid "" "Account for a popular profile that automatically approves contact requests " "as \"Friends\"." msgstr "Konto für ein gefragtes Profil, das Kontaktanfragen automatisch als \"Friend\" annimmt." -#: src/Module/Settings/Account.php:522 +#: src/Module/Settings/Account.php:508 msgid "Private Group [Experimental]" msgstr "Private Gruppe [experimentell]" -#: src/Module/Settings/Account.php:524 +#: src/Module/Settings/Account.php:510 msgid "Requires manual approval of contact requests." msgstr "Kontaktanfragen müssen manuell bestätigt werden." -#: src/Module/Settings/Account.php:533 +#: src/Module/Settings/Account.php:519 msgid "OpenID:" msgstr "OpenID:" -#: src/Module/Settings/Account.php:533 +#: src/Module/Settings/Account.php:519 msgid "(Optional) Allow this OpenID to login to this account." msgstr "(Optional) Erlaube die Anmeldung für dieses Konto mit dieser OpenID." -#: src/Module/Settings/Account.php:541 +#: src/Module/Settings/Account.php:527 msgid "Publish your profile in your local site directory?" msgstr "Darf dein Profil im lokalen Verzeichnis dieses Servers veröffentlicht werden?" -#: src/Module/Settings/Account.php:541 +#: src/Module/Settings/Account.php:527 #, php-format msgid "" "Your profile will be published in this node's local " @@ -9900,94 +9881,94 @@ msgid "" " system settings." msgstr "Dein Profil wird im lokalen Verzeichnis dieses Knotens veröffentlicht. Je nach Systemeinstellungen kann es öffentlich auffindbar sein." -#: src/Module/Settings/Account.php:547 +#: src/Module/Settings/Account.php:533 #, php-format msgid "" "Your profile will also be published in the global friendica directories " "(e.g. %s)." msgstr "Dein Profil wird auch in den globalen Friendica Verzeichnissen (z.B. %s) veröffentlicht werden." -#: src/Module/Settings/Account.php:560 +#: src/Module/Settings/Account.php:546 msgid "Account Settings" msgstr "Kontoeinstellungen" -#: src/Module/Settings/Account.php:561 +#: src/Module/Settings/Account.php:547 #, php-format msgid "Your Identity Address is '%s' or '%s'." msgstr "Die Adresse deines Profils lautet '%s' oder '%s'." -#: src/Module/Settings/Account.php:568 +#: src/Module/Settings/Account.php:554 msgid "Password Settings" msgstr "Passwort-Einstellungen" -#: src/Module/Settings/Account.php:570 +#: src/Module/Settings/Account.php:556 msgid "Leave password fields blank unless changing" msgstr "Lass die Passwort-Felder leer, außer du willst das Passwort ändern" -#: src/Module/Settings/Account.php:572 +#: src/Module/Settings/Account.php:558 msgid "Password:" msgstr "Passwort:" -#: src/Module/Settings/Account.php:572 +#: src/Module/Settings/Account.php:558 msgid "Your current password to confirm the changes of the email address" msgstr "Dein aktuelles Passwort um die Änderungen deiner E-Mail Adresse zu bestätigen" -#: src/Module/Settings/Account.php:575 +#: src/Module/Settings/Account.php:561 msgid "Delete OpenID URL" msgstr "OpenID URL löschen" -#: src/Module/Settings/Account.php:577 +#: src/Module/Settings/Account.php:563 msgid "Basic Settings" msgstr "Grundeinstellungen" -#: src/Module/Settings/Account.php:578 -#: src/Module/Settings/Profile/Index.php:288 +#: src/Module/Settings/Account.php:564 +#: src/Module/Settings/Profile/Index.php:274 msgid "Display name:" msgstr "Anzeigename:" -#: src/Module/Settings/Account.php:579 +#: src/Module/Settings/Account.php:565 msgid "Email Address:" msgstr "E-Mail-Adresse:" -#: src/Module/Settings/Account.php:580 +#: src/Module/Settings/Account.php:566 msgid "Your Timezone:" msgstr "Deine Zeitzone:" -#: src/Module/Settings/Account.php:581 +#: src/Module/Settings/Account.php:567 msgid "Your Language:" msgstr "Deine Sprache:" -#: src/Module/Settings/Account.php:581 +#: src/Module/Settings/Account.php:567 msgid "" "Set the language we use to show you friendica interface and to send you " "emails" msgstr "Wähle die Sprache, in der wir dir die Friendica-Oberfläche präsentieren sollen und dir E-Mail schicken" -#: src/Module/Settings/Account.php:582 +#: src/Module/Settings/Account.php:568 msgid "Default Post Location:" msgstr "Standardstandort:" -#: src/Module/Settings/Account.php:583 +#: src/Module/Settings/Account.php:569 msgid "Use Browser Location:" msgstr "Standort des Browsers verwenden:" -#: src/Module/Settings/Account.php:585 +#: src/Module/Settings/Account.php:571 msgid "Security and Privacy Settings" msgstr "Sicherheits- und Privatsphäre-Einstellungen" -#: src/Module/Settings/Account.php:587 +#: src/Module/Settings/Account.php:573 msgid "Maximum Friend Requests/Day:" msgstr "Maximale Anzahl von Kontaktanfragen/Tag:" -#: src/Module/Settings/Account.php:587 +#: src/Module/Settings/Account.php:573 msgid "(to prevent spam abuse)" msgstr "(um SPAM zu vermeiden)" -#: src/Module/Settings/Account.php:589 +#: src/Module/Settings/Account.php:575 msgid "Allow your profile to be searchable globally?" msgstr "Darf dein Profil bei Suchanfragen gefunden werden?" -#: src/Module/Settings/Account.php:589 +#: src/Module/Settings/Account.php:575 msgid "" "Activate this setting if you want others to easily find and follow you. Your" " profile will be searchable on remote systems. This setting also determines " @@ -9995,43 +9976,43 @@ msgid "" "indexed or not." msgstr "Aktiviere diese Einstellung, wenn du von anderen einfach gefunden und gefolgt werden möchtest. Dein Profil wird dann auf anderen Systemen leicht durchsuchbar. Außerdem regelt diese Einstellung ob Friendica Suchmaschinen mitteilen soll, ob dein Profil indiziert werden soll oder nicht." -#: src/Module/Settings/Account.php:590 +#: src/Module/Settings/Account.php:576 msgid "Hide your contact/friend list from viewers of your profile?" msgstr "Liste der Kontakte vor Betrachtern des Profil verbergen?" -#: src/Module/Settings/Account.php:590 +#: src/Module/Settings/Account.php:576 msgid "" "A list of your contacts is displayed on your profile page. Activate this " "option to disable the display of your contact list." msgstr "Auf deiner Profilseite wird eine Liste deiner Kontakte angezeigt. Aktiviere diese Option wenn du das nicht möchtest." -#: src/Module/Settings/Account.php:591 +#: src/Module/Settings/Account.php:577 msgid "Hide your public content from anonymous viewers" msgstr "Verbirg die öffentliche Inhalte vor anonymen Besuchern" -#: src/Module/Settings/Account.php:591 +#: src/Module/Settings/Account.php:577 msgid "" "Anonymous visitors will only see your basic profile details. Your public " "posts and replies will still be freely accessible on the remote servers of " "your followers and through relays." msgstr "Anonyme Besucher deines Profils werden nur grundlegende Informationen angezeigt bekommen. Deine öffentlichen Beiträge und Kommentare werden weiterhin frei zugänglich auf den Servern deiner Kontakte und über Relays sein." -#: src/Module/Settings/Account.php:592 +#: src/Module/Settings/Account.php:578 msgid "Make public posts unlisted" msgstr "Öffentliche Beiträge nicht listen" -#: src/Module/Settings/Account.php:592 +#: src/Module/Settings/Account.php:578 msgid "" "Your public posts will not appear on the community pages or in search " "results, nor be sent to relay servers. However they can still appear on " "public feeds on remote servers." msgstr "Deine öffentlichen Beiträge werden nicht auf der Gemeinschaftsseite oder in den Suchergebnissen erscheinen, außerdem werden sie nicht an Relay-Server geschickt. Sie werden aber weiterhin in allen öffentlichen Feeds, auch auf entfernten Servern, erscheinen." -#: src/Module/Settings/Account.php:593 +#: src/Module/Settings/Account.php:579 msgid "Make all posted pictures accessible" msgstr "Alle geposteten Bilder zugreifbar machen" -#: src/Module/Settings/Account.php:593 +#: src/Module/Settings/Account.php:579 msgid "" "This option makes every posted picture accessible via the direct link. This " "is a workaround for the problem that most other networks can't handle " @@ -10039,352 +10020,352 @@ msgid "" "public on your photo albums though." msgstr "Diese Option macht jedes veröffentlichte Bild über den direkten Link zugänglich. Dies ist eine Problemumgehung für das Problem, dass die meisten anderen Netzwerke keine Berechtigungen für Bilder verarbeiten können. Nicht öffentliche Bilder sind in Ihren Fotoalben jedoch immer noch nicht für die Öffentlichkeit sichtbar." -#: src/Module/Settings/Account.php:594 +#: src/Module/Settings/Account.php:580 msgid "Allow friends to post to your profile page?" msgstr "Dürfen deine Kontakte auf deine Pinnwand schreiben?" -#: src/Module/Settings/Account.php:594 +#: src/Module/Settings/Account.php:580 msgid "" "Your contacts may write posts on your profile wall. These posts will be " "distributed to your contacts" msgstr "Deine Kontakte können Beiträge auf deiner Pinnwand hinterlassen. Diese werden an deine Kontakte verteilt." -#: src/Module/Settings/Account.php:595 +#: src/Module/Settings/Account.php:581 msgid "Allow friends to tag your posts?" msgstr "Dürfen deine Kontakte deine Beiträge mit Schlagwörtern versehen?" -#: src/Module/Settings/Account.php:595 +#: src/Module/Settings/Account.php:581 msgid "Your contacts can add additional tags to your posts." msgstr "Deine Kontakte dürfen deine Beiträge mit zusätzlichen Schlagworten versehen." -#: src/Module/Settings/Account.php:596 +#: src/Module/Settings/Account.php:582 msgid "Default privacy circle for new contacts" msgstr "Voreingestellter Circle für neue Kontakte" -#: src/Module/Settings/Account.php:597 +#: src/Module/Settings/Account.php:583 msgid "Default privacy circle for new group contacts" msgstr "Voreingestellter Circle für neue Gruppenkontakte" -#: src/Module/Settings/Account.php:598 +#: src/Module/Settings/Account.php:584 msgid "Default Post Permissions" msgstr "Standard-Zugriffsrechte für Beiträge" -#: src/Module/Settings/Account.php:602 +#: src/Module/Settings/Account.php:588 msgid "Expiration settings" msgstr "Verfalls-Einstellungen" -#: src/Module/Settings/Account.php:603 +#: src/Module/Settings/Account.php:589 msgid "Automatically expire posts after this many days:" msgstr "Beiträge verfallen automatisch nach dieser Anzahl von Tagen:" -#: src/Module/Settings/Account.php:603 +#: src/Module/Settings/Account.php:589 msgid "If empty, posts will not expire. Expired posts will be deleted" msgstr "Wenn leer, verfallen Beiträge nie automatisch. Verfallene Beiträge werden gelöscht." -#: src/Module/Settings/Account.php:604 +#: src/Module/Settings/Account.php:590 msgid "Expire posts" msgstr "Beiträge verfallen lassen" -#: src/Module/Settings/Account.php:604 +#: src/Module/Settings/Account.php:590 msgid "When activated, posts and comments will be expired." msgstr "Ist dies aktiviert, werden Beiträge und Kommentare verfallen." -#: src/Module/Settings/Account.php:605 +#: src/Module/Settings/Account.php:591 msgid "Expire personal notes" msgstr "Persönliche Notizen verfallen lassen" -#: src/Module/Settings/Account.php:605 +#: src/Module/Settings/Account.php:591 msgid "" "When activated, the personal notes on your profile page will be expired." msgstr "Ist dies aktiviert, werden persönliche Notizen auf deiner Pinnwand verfallen." -#: src/Module/Settings/Account.php:606 +#: src/Module/Settings/Account.php:592 msgid "Expire starred posts" msgstr "Markierte Beiträge verfallen lassen" -#: src/Module/Settings/Account.php:606 +#: src/Module/Settings/Account.php:592 msgid "" "Starring posts keeps them from being expired. That behaviour is overwritten " "by this setting." msgstr "Markierte Beiträge verfallen eigentlich nicht. Mit dieser Option kannst du sie verfallen lassen." -#: src/Module/Settings/Account.php:607 +#: src/Module/Settings/Account.php:593 msgid "Only expire posts by others" msgstr "Nur Beiträge anderer verfallen lassen." -#: src/Module/Settings/Account.php:607 +#: src/Module/Settings/Account.php:593 msgid "" "When activated, your own posts never expire. Then the settings above are " "only valid for posts you received." msgstr "Wenn aktiviert werden deine eigenen Beiträge niemals verfallen. Die obigen Einstellungen betreffen dann ausschließlich die Beiträge von anderen Accounts." -#: src/Module/Settings/Account.php:610 +#: src/Module/Settings/Account.php:596 msgid "Notification Settings" msgstr "Benachrichtigungseinstellungen" -#: src/Module/Settings/Account.php:611 +#: src/Module/Settings/Account.php:597 msgid "Send a notification email when:" msgstr "Benachrichtigungs-E-Mail senden, wenn:" -#: src/Module/Settings/Account.php:612 +#: src/Module/Settings/Account.php:598 msgid "You receive an introduction" msgstr "– du eine Kontaktanfrage erhältst" -#: src/Module/Settings/Account.php:613 +#: src/Module/Settings/Account.php:599 msgid "Your introductions are confirmed" msgstr "– eine Deiner Kontaktanfragen akzeptiert wurde" -#: src/Module/Settings/Account.php:614 +#: src/Module/Settings/Account.php:600 msgid "Someone writes on your profile wall" msgstr "– jemand etwas auf Deine Pinnwand schreibt" -#: src/Module/Settings/Account.php:615 +#: src/Module/Settings/Account.php:601 msgid "Someone writes a followup comment" msgstr "– jemand auch einen Kommentar verfasst" -#: src/Module/Settings/Account.php:616 +#: src/Module/Settings/Account.php:602 msgid "You receive a private message" msgstr "– du eine private Nachricht erhältst" -#: src/Module/Settings/Account.php:617 +#: src/Module/Settings/Account.php:603 msgid "You receive a friend suggestion" msgstr "– du eine Empfehlung erhältst" -#: src/Module/Settings/Account.php:618 +#: src/Module/Settings/Account.php:604 msgid "You are tagged in a post" msgstr "– du in einem Beitrag erwähnt wirst" -#: src/Module/Settings/Account.php:620 +#: src/Module/Settings/Account.php:606 msgid "Create a desktop notification when:" msgstr "Benachrichtigungen anzeigen wenn:" -#: src/Module/Settings/Account.php:621 +#: src/Module/Settings/Account.php:607 msgid "Someone tagged you" msgstr "Dich jemand erwähnt" -#: src/Module/Settings/Account.php:622 +#: src/Module/Settings/Account.php:608 msgid "Someone directly commented on your post" msgstr "Jemand einen Beitrag von dir kommentiert hat" -#: src/Module/Settings/Account.php:623 +#: src/Module/Settings/Account.php:609 msgid "Someone liked your content" msgstr "Einer deiner Beiträge gemocht wurde" -#: src/Module/Settings/Account.php:623 src/Module/Settings/Account.php:624 +#: src/Module/Settings/Account.php:609 src/Module/Settings/Account.php:610 msgid "Can only be enabled, when the direct comment notification is enabled." msgstr "Kann nur aktiviert werden, wenn die \"Jemand einen Beitrag von dir kommentiert hat \" Option eingeschaltet ist." -#: src/Module/Settings/Account.php:624 +#: src/Module/Settings/Account.php:610 msgid "Someone shared your content" msgstr "Einer deiner Beiträge geteilt wurde" -#: src/Module/Settings/Account.php:625 +#: src/Module/Settings/Account.php:611 msgid "Someone commented in your thread" msgstr "Jemand hat in deiner Unterhaltung kommentiert" -#: src/Module/Settings/Account.php:626 +#: src/Module/Settings/Account.php:612 msgid "Someone commented in a thread where you commented" msgstr "Jemand in einer Unterhaltung kommentiert hat, in der du auch kommentiert hast" -#: src/Module/Settings/Account.php:627 +#: src/Module/Settings/Account.php:613 msgid "Someone commented in a thread where you interacted" msgstr "Jemand kommentierte in einer Unterhaltung mit der du interagiert hast" -#: src/Module/Settings/Account.php:629 +#: src/Module/Settings/Account.php:615 msgid "Activate desktop notifications" msgstr "Desktop-Benachrichtigungen einschalten" -#: src/Module/Settings/Account.php:629 +#: src/Module/Settings/Account.php:615 msgid "Show desktop popup on new notifications" msgstr "Desktop-Benachrichtigungen einschalten" -#: src/Module/Settings/Account.php:633 +#: src/Module/Settings/Account.php:619 msgid "Text-only notification emails" msgstr "Benachrichtigungs-E-Mail als Rein-Text." -#: src/Module/Settings/Account.php:635 +#: src/Module/Settings/Account.php:621 msgid "Send text only notification emails, without the html part" msgstr "Sende Benachrichtigungs-E-Mail als Rein-Text - ohne HTML-Teil" -#: src/Module/Settings/Account.php:639 +#: src/Module/Settings/Account.php:625 msgid "Show detailled notifications" msgstr "Detaillierte Benachrichtigungen anzeigen" -#: src/Module/Settings/Account.php:641 +#: src/Module/Settings/Account.php:627 msgid "" "Per default, notifications are condensed to a single notification per item. " "When enabled every notification is displayed." msgstr "Normalerweise werden alle Benachrichtigungen zu einem Thema in einer einzigen Benachrichtigung zusammengefasst. Wenn diese Option aktiviert ist, wird jede Benachrichtigung einzeln angezeigt." -#: src/Module/Settings/Account.php:645 +#: src/Module/Settings/Account.php:631 msgid "Show notifications of ignored contacts" msgstr "Zeige Benachrichtigungen von ignorierten Kontakten" -#: src/Module/Settings/Account.php:647 +#: src/Module/Settings/Account.php:633 msgid "" "You don't see posts from ignored contacts. But you still see their comments." " This setting controls if you want to still receive regular notifications " "that are caused by ignored contacts or not." msgstr "Beiträge von ignorierten Kontakten werden dir nicht angezeigt. Aber du siehst immer noch ihre Kommentare. Diese Einstellung legt fest, ob du dazu weiterhin Benachrichtigungen erhalten willst oder ob diese einfach verworfen werden sollen." -#: src/Module/Settings/Account.php:650 +#: src/Module/Settings/Account.php:636 msgid "Advanced Account/Page Type Settings" msgstr "Erweiterte Konto-/Seitentyp-Einstellungen" -#: src/Module/Settings/Account.php:651 +#: src/Module/Settings/Account.php:637 msgid "Change the behaviour of this account for special situations" msgstr "Verhalten dieses Kontos in bestimmten Situationen:" -#: src/Module/Settings/Account.php:654 +#: src/Module/Settings/Account.php:640 msgid "Import Contacts" msgstr "Kontakte Importieren" -#: src/Module/Settings/Account.php:655 +#: src/Module/Settings/Account.php:641 msgid "" "Upload a CSV file that contains the handle of your followed accounts in the " "first column you exported from the old account." msgstr "Lade eine CSV Datei hoch, die das Handle der Kontakte deines alten Nutzerkontos in der ersten Spalte enthält." -#: src/Module/Settings/Account.php:656 +#: src/Module/Settings/Account.php:642 msgid "Upload File" msgstr "Datei hochladen" -#: src/Module/Settings/Account.php:659 +#: src/Module/Settings/Account.php:645 msgid "Relocate" msgstr "Umziehen" -#: src/Module/Settings/Account.php:660 +#: src/Module/Settings/Account.php:646 msgid "" "If you have moved this profile from another server, and some of your " "contacts don't receive your updates, try pushing this button." msgstr "Wenn du dein Profil von einem anderen Server umgezogen hast und einige deiner Kontakte deine Beiträge nicht erhalten, verwende diesen Button." -#: src/Module/Settings/Account.php:661 +#: src/Module/Settings/Account.php:647 msgid "Resend relocate message to contacts" msgstr "Umzugsbenachrichtigung erneut an Kontakte senden" -#: src/Module/Settings/Addons.php:86 +#: src/Module/Settings/Addons.php:72 msgid "Addon Settings" msgstr "Addon Einstellungen" -#: src/Module/Settings/Addons.php:87 +#: src/Module/Settings/Addons.php:73 msgid "No Addon settings configured" msgstr "Keine Addon-Einstellungen konfiguriert" -#: src/Module/Settings/Channels.php:148 +#: src/Module/Settings/Channels.php:134 msgid "" "This page can be used to define the channels that will automatically be " "reshared by your account." msgstr "Diese Seite kann verwendet werden, um die Kanäle zu definieren, die automatisch von Deinem Konto geteilt werden." -#: src/Module/Settings/Channels.php:153 +#: src/Module/Settings/Channels.php:139 msgid "This page can be used to define your own channels." msgstr "Auf dieser Seite kannst du deine eigenen Kanäle definieren." -#: src/Module/Settings/Channels.php:182 +#: src/Module/Settings/Channels.php:168 msgid "Publish" msgstr "Veröffentlichen" -#: src/Module/Settings/Channels.php:182 +#: src/Module/Settings/Channels.php:168 msgid "" "When selected, the channel results are reshared. This only works for public " "ActivityPub posts from the public timeline or the user defined circles." msgstr "Wenn ausgewählt, werden die Kanalergebnisse erneut geteilt. Dies funktioniert nur für öffentliche ActivityPub-Beiträge aus der öffentlichen Timeline oder den vom Benutzer definierten Circles." -#: src/Module/Settings/Channels.php:190 src/Module/Settings/Channels.php:211 -#: src/Module/Settings/Display.php:338 +#: src/Module/Settings/Channels.php:176 src/Module/Settings/Channels.php:197 +#: src/Module/Settings/Display.php:324 msgid "Label" msgstr "Bezeichnung" -#: src/Module/Settings/Channels.php:191 src/Module/Settings/Channels.php:212 -#: src/Module/Settings/Display.php:339 -#: src/Module/Settings/TwoFactor/AppSpecific.php:137 +#: src/Module/Settings/Channels.php:177 src/Module/Settings/Channels.php:198 +#: src/Module/Settings/Display.php:325 +#: src/Module/Settings/TwoFactor/AppSpecific.php:123 msgid "Description" msgstr "Beschreibung" -#: src/Module/Settings/Channels.php:192 src/Module/Settings/Channels.php:213 +#: src/Module/Settings/Channels.php:178 src/Module/Settings/Channels.php:199 msgid "Access Key" msgstr "Zugriffsschlüssel" -#: src/Module/Settings/Channels.php:193 src/Module/Settings/Channels.php:214 +#: src/Module/Settings/Channels.php:179 src/Module/Settings/Channels.php:200 msgid "Circle/Channel" msgstr "Circle/Kanal" -#: src/Module/Settings/Channels.php:194 src/Module/Settings/Channels.php:215 +#: src/Module/Settings/Channels.php:180 src/Module/Settings/Channels.php:201 msgid "Include Tags" msgstr "Tags einschließen" -#: src/Module/Settings/Channels.php:195 src/Module/Settings/Channels.php:216 +#: src/Module/Settings/Channels.php:181 src/Module/Settings/Channels.php:202 msgid "Exclude Tags" msgstr "Tags ausschließen" -#: src/Module/Settings/Channels.php:196 src/Module/Settings/Channels.php:217 +#: src/Module/Settings/Channels.php:182 src/Module/Settings/Channels.php:203 msgid "Minimum Size" msgstr "Mindestgröße" -#: src/Module/Settings/Channels.php:197 src/Module/Settings/Channels.php:218 +#: src/Module/Settings/Channels.php:183 src/Module/Settings/Channels.php:204 msgid "Maximum Size" msgstr "Maximale Größe" -#: src/Module/Settings/Channels.php:198 src/Module/Settings/Channels.php:219 +#: src/Module/Settings/Channels.php:184 src/Module/Settings/Channels.php:205 msgid "Full Text Search" msgstr "Volltextsuche" -#: src/Module/Settings/Channels.php:202 src/Module/Settings/Channels.php:223 +#: src/Module/Settings/Channels.php:188 src/Module/Settings/Channels.php:209 msgid "Select all languages that you want to see in this channel." msgstr "Wähle alle Sprachen aus, die du in diesem Kanal sehen willst." -#: src/Module/Settings/Channels.php:204 +#: src/Module/Settings/Channels.php:190 msgid "Delete channel" msgstr "Lösche Kanal" -#: src/Module/Settings/Channels.php:204 +#: src/Module/Settings/Channels.php:190 msgid "Check to delete this entry from the channel list" msgstr "Haken setzen, um diesen Eintrag aus der Kanalliste zu löschen" -#: src/Module/Settings/Channels.php:211 +#: src/Module/Settings/Channels.php:197 msgid "Short name for the channel. It is displayed on the channels widget." msgstr "Kurzname für den Kanal. Er wird im Widget für die Kanäle angezeigt." -#: src/Module/Settings/Channels.php:212 +#: src/Module/Settings/Channels.php:198 msgid "This should describe the content of the channel in a few word." msgstr "Dies sollte den Inhalt des Kanals in wenigen Worten beschreiben." -#: src/Module/Settings/Channels.php:213 +#: src/Module/Settings/Channels.php:199 msgid "" "When you want to access this channel via an access key, you can define it " "here. Pay attention to not use an already used one." msgstr "Wenn du auf diesen Kanal über einen Zugangsschlüssel zugreifen willst, kannst du ihn hier festlegen. Achte darauf, dass du nicht einen bereits verwendeten Schlüssel benutzt." -#: src/Module/Settings/Channels.php:214 +#: src/Module/Settings/Channels.php:200 msgid "Select a circle or channel, that your channel should be based on." msgstr "Wähle einen Circle oder Kanal, auf dem Ihr Kanal basieren soll." -#: src/Module/Settings/Channels.php:215 +#: src/Module/Settings/Channels.php:201 msgid "" "Comma separated list of tags. A post will be used when it contains any of " "the listed tags." msgstr "Durch Kommata getrennte Liste von Tags. Ein Beitrag wird verwendet, wenn er eines der aufgeführten Tags enthält." -#: src/Module/Settings/Channels.php:216 +#: src/Module/Settings/Channels.php:202 msgid "" "Comma separated list of tags. If a post contain any of these tags, then it " "will not be part of nthis channel." msgstr "Durch Kommata getrennte Liste von Tags. Wenn ein Beitrag eines dieser Tags enthält, wird er nicht Teil dieses Kanals sein." -#: src/Module/Settings/Channels.php:217 +#: src/Module/Settings/Channels.php:203 msgid "" "Minimum post size. Leave empty for no minimum size. The size is calculated " "without links, attached posts, mentions or hashtags." msgstr "Mindestbeitragsgröße. Lass dieses Feld leer um die Mindestgröße nicht anzugeben. Die Größe wird ohne Links, angehängte Beiträge, Erwähnungen oder Hashtags berechnet." -#: src/Module/Settings/Channels.php:218 +#: src/Module/Settings/Channels.php:204 msgid "" "Maximum post size. Leave empty for no maximum size. The size is calculated " "without links, attached posts, mentions or hashtags." msgstr "Maximalbeitragsgröße. Lass dieses Feld leer um die Maximalgröße nicht anzugeben. Die Größe wird ohne Links, angehängte Beiträge, Erwähnungen oder Hashtags berechnet." -#: src/Module/Settings/Channels.php:219 +#: src/Module/Settings/Channels.php:205 #, php-format msgid "" "Search terms for the body, supports the \"boolean mode\" operators from " @@ -10392,600 +10373,589 @@ msgid "" "keywords: %s" msgstr "Suchbegriffe für den Body, unterstützt die \"boolean mode\"-Operatoren von MariaDB. In der Hilfe findest du eine vollständige Liste der Operatoren und zusätzliche Schlüsselwörter: %s" -#: src/Module/Settings/Channels.php:220 +#: src/Module/Settings/Channels.php:206 msgid "Check to display images in the channel." msgstr "Aktiviere diese Option, um Bilder im Kanal anzuzeigen." -#: src/Module/Settings/Channels.php:221 +#: src/Module/Settings/Channels.php:207 msgid "Check to display videos in the channel." msgstr "Aktiviere diese Option, um Videos im Kanal anzuzeigen." -#: src/Module/Settings/Channels.php:222 +#: src/Module/Settings/Channels.php:208 msgid "Check to display audio in the channel." msgstr "Aktiviere diese Option, um Audio im Kanal anzuzeigen." -#: src/Module/Settings/Channels.php:227 +#: src/Module/Settings/Channels.php:213 msgid "Add new entry to the channel list" msgstr "Neuen Eintrag zur Kanalliste hinzufügen" -#: src/Module/Settings/Channels.php:228 +#: src/Module/Settings/Channels.php:214 msgid "Add" msgstr "Hinzufügen" -#: src/Module/Settings/Channels.php:230 +#: src/Module/Settings/Channels.php:216 msgid "Current Entries in the channel list" msgstr "Aktuelle Einträge in der Kanalliste" -#: src/Module/Settings/Channels.php:233 +#: src/Module/Settings/Channels.php:219 msgid "Delete entry from the channel list" msgstr "Eintrag aus der Kanalliste löschen" -#: src/Module/Settings/Channels.php:234 +#: src/Module/Settings/Channels.php:220 msgid "Delete entry from the channel list?" msgstr "Eintrag aus der Kanalliste löschen?" -#: src/Module/Settings/Connectors.php:122 +#: src/Module/Settings/Connectors.php:108 msgid "Failed to connect with email account using the settings provided." msgstr "Verbindung zum E-Mail-Konto mit den angegebenen Einstellungen nicht möglich." -#: src/Module/Settings/Connectors.php:169 -#: src/Module/Settings/Connectors.php:170 +#: src/Module/Settings/Connectors.php:155 +#: src/Module/Settings/Connectors.php:156 msgid "Diaspora (Socialhome, Hubzilla)" msgstr "Diaspora (Socialhome, Hubzilla)" -#: src/Module/Settings/Connectors.php:169 -#: src/Module/Settings/Connectors.php:173 +#: src/Module/Settings/Connectors.php:155 #, php-format msgid "Built-in support for %s connectivity is enabled" msgstr "Eingebaute Unterstützung für die Verbindung zu %s ist aktiviert." -#: src/Module/Settings/Connectors.php:170 -#: src/Module/Settings/Connectors.php:172 +#: src/Module/Settings/Connectors.php:156 #, php-format msgid "Built-in support for %s connectivity is disabled" msgstr "Eingebaute Unterstützung für die Verbindung zu %s ist nicht aktiviert." -#: src/Module/Settings/Connectors.php:172 -#: src/Module/Settings/Connectors.php:173 -msgid "OStatus (GNU Social)" -msgstr "OStatus (GNU Social)" - -#: src/Module/Settings/Connectors.php:185 +#: src/Module/Settings/Connectors.php:167 msgid "Email access is disabled on this site." msgstr "Zugriff auf E-Mails für diese Seite deaktiviert." -#: src/Module/Settings/Connectors.php:200 -#: src/Module/Settings/Connectors.php:254 +#: src/Module/Settings/Connectors.php:182 +#: src/Module/Settings/Connectors.php:233 msgid "None" msgstr "Keine" -#: src/Module/Settings/Connectors.php:204 +#: src/Module/Settings/Connectors.php:186 msgid "Default (Mastodon will display the title and a link to the post)" msgstr "Grundeinstellung (Mastodon zweigt den Titel und einen Link auf den Beitrag)" -#: src/Module/Settings/Connectors.php:205 +#: src/Module/Settings/Connectors.php:187 msgid "" "Use the summary (Mastodon and some others will treat it as content warning)" msgstr "Verwende die Zusammenfassung (sie wird auf Mastodon und anderen als Inhaltswarnung behandelt)" -#: src/Module/Settings/Connectors.php:206 +#: src/Module/Settings/Connectors.php:188 msgid "Embed the title in the body" msgstr "Titel in Nachrichtenkörper einbetten" -#: src/Module/Settings/Connectors.php:218 +#: src/Module/Settings/Connectors.php:199 msgid "General Social Media Settings" msgstr "Allgemeine Einstellungen zu Sozialen Medien" -#: src/Module/Settings/Connectors.php:221 +#: src/Module/Settings/Connectors.php:202 msgid "Followed content scope" msgstr "Umfang zu folgender Inhalte" -#: src/Module/Settings/Connectors.php:223 +#: src/Module/Settings/Connectors.php:204 msgid "" "By default, conversations in which your follows participated but didn't " "start will be shown in your timeline. You can turn this behavior off, or " "expand it to the conversations in which your follows liked a post." msgstr "Normalerweise werden Unterhaltungen an denen deine Kontakte beteiligt sind, sie aber nicht begonnen haben, in deiner Timeline angezeigt. Mit dieser Einstellung kann dieses Vorgehen kontrolliert werden. Es kann entweder dahin erweitert werden, dass auch Unterhaltungen angezeigt werden in denen deine Kontakte einen Kommentar mögen, oder komplett ausgeschaltet werden, so dass nur noch die Unterhaltungen angezeigt werden, die von deinen Kontakten gestartet wurden." -#: src/Module/Settings/Connectors.php:225 +#: src/Module/Settings/Connectors.php:206 msgid "Only conversations my follows started" msgstr "Nur Unterhaltungen, die meine Kontakte gestartet haben" -#: src/Module/Settings/Connectors.php:226 +#: src/Module/Settings/Connectors.php:207 msgid "Conversations my follows started or commented on (default)" msgstr "Unterhaltungen an denen meine Kontakte beteiligt sind (Grundeinstellung)" -#: src/Module/Settings/Connectors.php:227 +#: src/Module/Settings/Connectors.php:208 msgid "Any conversation my follows interacted with, including likes" msgstr "Unterhaltungen mit denen meine Kontakte interagiert haben, inklusive likes" -#: src/Module/Settings/Connectors.php:230 +#: src/Module/Settings/Connectors.php:211 msgid "Collapse sensitive posts" msgstr "\"Sensible\" Inhalte einklappen" -#: src/Module/Settings/Connectors.php:230 +#: src/Module/Settings/Connectors.php:211 msgid "" "If a post is marked as \"sensitive\", it will be displayed in a collapsed " "state, if this option is enabled." msgstr "Wenn ein Beitrag als \"sensibel\" gekennzeichnet ist, wird er eingeklappt angezeigt, wenn diese Option aktiviert ist." -#: src/Module/Settings/Connectors.php:231 +#: src/Module/Settings/Connectors.php:212 msgid "Enable intelligent shortening" msgstr "Intelligentes kürzen einschalten" -#: src/Module/Settings/Connectors.php:231 +#: src/Module/Settings/Connectors.php:212 msgid "" "Normally the system tries to find the best link to add to shortened posts. " "If disabled, every shortened post will always point to the original " "friendica post." msgstr "Normalerweise versucht das System, den besten Link zu finden, um ihn zum gekürzten Postings hinzuzufügen. Wird diese Option ausgewählt, wird stets ein Link auf die originale Friendica-Nachricht beigefügt." -#: src/Module/Settings/Connectors.php:232 +#: src/Module/Settings/Connectors.php:213 msgid "Enable simple text shortening" msgstr "Einfache Textkürzung aktivieren" -#: src/Module/Settings/Connectors.php:232 +#: src/Module/Settings/Connectors.php:213 msgid "" "Normally the system shortens posts at the next line feed. If this option is " "enabled then the system will shorten the text at the maximum character " "limit." msgstr "Normalerweise kürzt das System Beiträge bei Zeilenumbrüchen. Ist diese Option aktiv, wird das System die Kürzung beim Erreichen der maximalen Zeichenzahl vornehmen." -#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Connectors.php:214 msgid "Attach the link title" msgstr "Link Titel hinzufügen" -#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Connectors.php:214 msgid "" "When activated, the title of the attached link will be added as a title on " "posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that" " share feed content." msgstr "Ist dies aktiviert, wird der Titel von angehangenen Links bei Beiträgen nach Diaspora* angefügt. Dies ist vorallem bei Entfernten Konten nützlich die Beiträge von Feeds weiterleiten." -#: src/Module/Settings/Connectors.php:234 +#: src/Module/Settings/Connectors.php:215 msgid "API: Use spoiler field as title" msgstr "API: Verwende den Spoiler Text als Titel" -#: src/Module/Settings/Connectors.php:234 +#: src/Module/Settings/Connectors.php:215 msgid "" "When activated, the \"spoiler_text\" field in the API will be used for the " "title on standalone posts. When deactivated it will be used for spoiler " "text. For comments it will always be used for spoiler text." msgstr "Ist dies aktiviert, wird das \"spoiler_text\" der API als Titel von neuen Beiträgen verwendet. Ist es deaktiviert wird der Text als Spoiler-Text verwendet. Bei Kommentaren wird der Inhalt immer als Spoiler-Text verwendet." -#: src/Module/Settings/Connectors.php:235 +#: src/Module/Settings/Connectors.php:216 msgid "API: Automatically links at the end of the post as attached posts" msgstr "API: Automatische Links am Ende des Beitrags als angehängte Beiträge" -#: src/Module/Settings/Connectors.php:235 +#: src/Module/Settings/Connectors.php:216 msgid "" "When activated, added links at the end of the post react the same way as " "added links in the web interface." msgstr "Wenn dies aktiviert ist, reagieren hinzugefügte Links am Ende des Beitrags genauso wie hinzugefügte Links in der Weboberfläche." -#: src/Module/Settings/Connectors.php:236 +#: src/Module/Settings/Connectors.php:217 msgid "Article Mode" msgstr "Artikel Modus" -#: src/Module/Settings/Connectors.php:236 +#: src/Module/Settings/Connectors.php:217 msgid "" "Controls how posts with titles are transmitted. Mastodon and its forks don't" " display the content of these posts if the post is created in the correct " "(default) way." msgstr "Kontrolliert wie Beiträge mit Titeln übermittel werden. Mastodon und dessen Forks stellen den Inhalt dieser Beiträge nicht dar, wenn sie an sich korrekt in den Grundeinstellungen übertragen werden." -#: src/Module/Settings/Connectors.php:237 +#: src/Module/Settings/Connectors.php:218 msgid "Your legacy ActivityPub/GNU Social account" msgstr "Dein alter ActivityPub/GNU Social-Account" -#: src/Module/Settings/Connectors.php:237 +#: src/Module/Settings/Connectors.php:218 msgid "" "If you enter your old account name from an ActivityPub based system or your " "GNU Social/Statusnet account name here (in the format user@domain.tld), your" " contacts will be added automatically. The field will be emptied when done." msgstr "Wenn du deinen alten ActivityPub oder GNU Social/Statusnet-Account-Namen hier angibst (Format name@domain.tld), werden deine Kontakte automatisch hinzugefügt. Dieses Feld wird geleert, wenn die Kontakte hinzugefügt wurden." -#: src/Module/Settings/Connectors.php:239 -msgid "Repair OStatus subscriptions" -msgstr "OStatus-Abonnements reparieren" - -#: src/Module/Settings/Connectors.php:243 +#: src/Module/Settings/Connectors.php:222 msgid "Email/Mailbox Setup" msgstr "E-Mail/Postfach-Einstellungen" -#: src/Module/Settings/Connectors.php:244 +#: src/Module/Settings/Connectors.php:223 msgid "" "If you wish to communicate with email contacts using this service " "(optional), please specify how to connect to your mailbox." msgstr "Wenn du mit E-Mail-Kontakten über diesen Service kommunizieren möchtest (optional), gib bitte die Einstellungen für dein Postfach an." -#: src/Module/Settings/Connectors.php:245 +#: src/Module/Settings/Connectors.php:224 msgid "Last successful email check:" msgstr "Letzter erfolgreicher E-Mail-Check" -#: src/Module/Settings/Connectors.php:247 +#: src/Module/Settings/Connectors.php:226 msgid "IMAP server name:" msgstr "IMAP-Server-Name:" -#: src/Module/Settings/Connectors.php:248 +#: src/Module/Settings/Connectors.php:227 msgid "IMAP port:" msgstr "IMAP-Port:" -#: src/Module/Settings/Connectors.php:249 +#: src/Module/Settings/Connectors.php:228 msgid "Security:" msgstr "Sicherheit:" -#: src/Module/Settings/Connectors.php:250 +#: src/Module/Settings/Connectors.php:229 msgid "Email login name:" msgstr "E-Mail-Login-Name:" -#: src/Module/Settings/Connectors.php:251 +#: src/Module/Settings/Connectors.php:230 msgid "Email password:" msgstr "E-Mail-Passwort:" -#: src/Module/Settings/Connectors.php:252 +#: src/Module/Settings/Connectors.php:231 msgid "Reply-to address:" msgstr "Reply-to Adresse:" -#: src/Module/Settings/Connectors.php:253 +#: src/Module/Settings/Connectors.php:232 msgid "Send public posts to all email contacts:" msgstr "Sende öffentliche Beiträge an alle E-Mail-Kontakte:" -#: src/Module/Settings/Connectors.php:254 +#: src/Module/Settings/Connectors.php:233 msgid "Action after import:" msgstr "Aktion nach Import:" -#: src/Module/Settings/Connectors.php:254 +#: src/Module/Settings/Connectors.php:233 msgid "Move to folder" msgstr "In einen Ordner verschieben" -#: src/Module/Settings/Connectors.php:255 +#: src/Module/Settings/Connectors.php:234 msgid "Move to folder:" msgstr "In diesen Ordner verschieben:" -#: src/Module/Settings/Delegation.php:73 +#: src/Module/Settings/Delegation.php:59 msgid "Delegation successfully granted." msgstr "Delegierung erfolgreich eingerichtet." -#: src/Module/Settings/Delegation.php:75 +#: src/Module/Settings/Delegation.php:61 msgid "Parent user not found, unavailable or password doesn't match." msgstr "Der angegebene Nutzer konnte nicht gefunden werden, ist nicht verfügbar oder das angegebene Passwort ist nicht richtig." -#: src/Module/Settings/Delegation.php:79 +#: src/Module/Settings/Delegation.php:65 msgid "Delegation successfully revoked." msgstr "Delegation erfolgreich aufgehoben." -#: src/Module/Settings/Delegation.php:98 -#: src/Module/Settings/Delegation.php:120 +#: src/Module/Settings/Delegation.php:84 +#: src/Module/Settings/Delegation.php:106 msgid "" "Delegated administrators can view but not change delegation permissions." msgstr "Verwalter können die Berechtigungen der Delegationen einsehen, sie aber nicht ändern." -#: src/Module/Settings/Delegation.php:112 +#: src/Module/Settings/Delegation.php:98 msgid "Delegate user not found." msgstr "Delegierter Nutzer nicht gefunden" -#: src/Module/Settings/Delegation.php:169 +#: src/Module/Settings/Delegation.php:155 msgid "No parent user" msgstr "Kein Verwalter" -#: src/Module/Settings/Delegation.php:180 -#: src/Module/Settings/Delegation.php:191 +#: src/Module/Settings/Delegation.php:166 +#: src/Module/Settings/Delegation.php:177 msgid "Parent User" msgstr "Verwalter" -#: src/Module/Settings/Delegation.php:188 +#: src/Module/Settings/Delegation.php:174 msgid "Additional Accounts" msgstr "Zusätzliche Accounts" -#: src/Module/Settings/Delegation.php:189 +#: src/Module/Settings/Delegation.php:175 msgid "" "Register additional accounts that are automatically connected to your " "existing account so you can manage them from this account." msgstr "Zusätzliche Accounts registrieren, die automatisch mit deinem bestehenden Account verknüpft werden, damit du sie anschließend verwalten kannst." -#: src/Module/Settings/Delegation.php:190 +#: src/Module/Settings/Delegation.php:176 msgid "Register an additional account" msgstr "Einen zusätzlichen Account registrieren" -#: src/Module/Settings/Delegation.php:192 +#: src/Module/Settings/Delegation.php:178 msgid "" "Parent users have total control about this account, including the account " "settings. Please double check whom you give this access." msgstr "Verwalter haben Zugriff auf alle Funktionen dieses Benutzerkontos und können dessen Einstellungen ändern." -#: src/Module/Settings/Delegation.php:195 +#: src/Module/Settings/Delegation.php:181 msgid "Delegates" msgstr "Bevollmächtigte" -#: src/Module/Settings/Delegation.php:196 +#: src/Module/Settings/Delegation.php:182 msgid "" "Delegates are able to manage all aspects of this account/page except for " "basic account settings. Please do not delegate your personal account to " "anybody that you do not trust completely." msgstr "Bevollmächtigte sind in der Lage, alle Aspekte dieses Kontos/dieser Seite zu verwalten, abgesehen von den Grundeinstellungen des Kontos. Bitte gib niemandem eine Bevollmächtigung für Deinen privaten Account, dem du nicht absolut vertraust!" -#: src/Module/Settings/Delegation.php:197 +#: src/Module/Settings/Delegation.php:183 msgid "Existing Page Delegates" msgstr "Vorhandene Bevollmächtigte für die Seite" -#: src/Module/Settings/Delegation.php:198 +#: src/Module/Settings/Delegation.php:184 msgid "Potential Delegates" msgstr "Potentielle Bevollmächtigte" -#: src/Module/Settings/Delegation.php:199 +#: src/Module/Settings/Delegation.php:185 msgid "No entries." msgstr "Keine Einträge." -#: src/Module/Settings/Display.php:183 +#: src/Module/Settings/Display.php:169 msgid "The theme you chose isn't available." msgstr "Das gewählte Theme ist nicht verfügbar" -#: src/Module/Settings/Display.php:223 +#: src/Module/Settings/Display.php:209 #, php-format msgid "%s - (Unsupported)" msgstr "%s - (Nicht unterstützt)" -#: src/Module/Settings/Display.php:260 +#: src/Module/Settings/Display.php:246 msgid "No preview" msgstr "Keine Vorschau" -#: src/Module/Settings/Display.php:261 +#: src/Module/Settings/Display.php:247 msgid "No image" msgstr "Kein Bild" -#: src/Module/Settings/Display.php:262 +#: src/Module/Settings/Display.php:248 msgid "Small Image" msgstr "Kleines Bild" -#: src/Module/Settings/Display.php:263 +#: src/Module/Settings/Display.php:249 msgid "Large Image" msgstr "Große Bilder" -#: src/Module/Settings/Display.php:308 +#: src/Module/Settings/Display.php:294 msgid "Display Settings" msgstr "Anzeige-Einstellungen" -#: src/Module/Settings/Display.php:310 +#: src/Module/Settings/Display.php:296 msgid "General Theme Settings" msgstr "Allgemeine Theme-Einstellungen" -#: src/Module/Settings/Display.php:311 +#: src/Module/Settings/Display.php:297 msgid "Custom Theme Settings" msgstr "Benutzerdefinierte Theme-Einstellungen" -#: src/Module/Settings/Display.php:312 +#: src/Module/Settings/Display.php:298 msgid "Content Settings" msgstr "Einstellungen zum Inhalt" -#: src/Module/Settings/Display.php:313 view/theme/duepuntozero/config.php:86 -#: view/theme/frio/config.php:151 view/theme/quattro/config.php:88 -#: view/theme/vier/config.php:136 +#: src/Module/Settings/Display.php:299 view/theme/duepuntozero/config.php:74 +#: view/theme/frio/config.php:139 view/theme/quattro/config.php:76 +#: view/theme/vier/config.php:124 msgid "Theme settings" msgstr "Theme-Einstellungen" -#: src/Module/Settings/Display.php:314 +#: src/Module/Settings/Display.php:300 msgid "Timelines" msgstr "Timelines" -#: src/Module/Settings/Display.php:321 +#: src/Module/Settings/Display.php:307 msgid "Display Theme:" msgstr "Theme:" -#: src/Module/Settings/Display.php:322 +#: src/Module/Settings/Display.php:308 msgid "Mobile Theme:" msgstr "Mobiles Theme" -#: src/Module/Settings/Display.php:325 +#: src/Module/Settings/Display.php:311 msgid "Number of items to display per page:" msgstr "Zahl der Beiträge, die pro Netzwerkseite angezeigt werden sollen: " -#: src/Module/Settings/Display.php:325 src/Module/Settings/Display.php:326 +#: src/Module/Settings/Display.php:311 src/Module/Settings/Display.php:312 msgid "Maximum of 100 items" msgstr "Maximal 100 Beiträge" -#: src/Module/Settings/Display.php:326 +#: src/Module/Settings/Display.php:312 msgid "Number of items to display per page when viewed from mobile device:" msgstr "Zahl der Beiträge, die pro Netzwerkseite auf mobilen Geräten angezeigt werden sollen:" -#: src/Module/Settings/Display.php:327 +#: src/Module/Settings/Display.php:313 msgid "Update browser every xx seconds" msgstr "Browser alle xx Sekunden aktualisieren" -#: src/Module/Settings/Display.php:327 +#: src/Module/Settings/Display.php:313 msgid "Minimum of 10 seconds. Enter -1 to disable it." msgstr "Minimum sind 10 Sekunden. Gib -1 ein, um abzuschalten." -#: src/Module/Settings/Display.php:328 +#: src/Module/Settings/Display.php:314 msgid "Display emoticons" msgstr "Zeige Emoticons" -#: src/Module/Settings/Display.php:328 +#: src/Module/Settings/Display.php:314 msgid "When enabled, emoticons are replaced with matching symbols." msgstr "Wenn dies aktiviert ist, werden Text-Emoticons in Beiträgen durch Symbole ersetzt." -#: src/Module/Settings/Display.php:329 +#: src/Module/Settings/Display.php:315 msgid "Infinite scroll" msgstr "Endloses Scrollen" -#: src/Module/Settings/Display.php:329 +#: src/Module/Settings/Display.php:315 msgid "Automatic fetch new items when reaching the page end." msgstr "Automatisch neue Beiträge laden, wenn das Ende der Seite erreicht ist." -#: src/Module/Settings/Display.php:330 +#: src/Module/Settings/Display.php:316 msgid "Enable Smart Threading" msgstr "Intelligentes Threading aktivieren" -#: src/Module/Settings/Display.php:330 +#: src/Module/Settings/Display.php:316 msgid "Enable the automatic suppression of extraneous thread indentation." msgstr "Schaltet das automatische Unterdrücken von überflüssigen Thread-Einrückungen ein." -#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/Display.php:317 msgid "Display the Dislike feature" msgstr "Das \"Nicht-mögen\" Feature anzeigen" -#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/Display.php:317 msgid "" "Display the Dislike button and dislike reactions on posts and comments." msgstr "Einen \"Ich mag das nicht\" Button und die dislike Reaktion auf Beiträge und Kommentare anzeigen." -#: src/Module/Settings/Display.php:332 +#: src/Module/Settings/Display.php:318 msgid "Display the resharer" msgstr "Teilenden anzeigen" -#: src/Module/Settings/Display.php:332 +#: src/Module/Settings/Display.php:318 msgid "Display the first resharer as icon and text on a reshared item." msgstr "Zeige das Profilbild des ersten Kontakts von dem ein Beitrag geteilt wurde." -#: src/Module/Settings/Display.php:333 +#: src/Module/Settings/Display.php:319 msgid "Stay local" msgstr "Bleib lokal" -#: src/Module/Settings/Display.php:333 +#: src/Module/Settings/Display.php:319 msgid "Don't go to a remote system when following a contact link." msgstr "Gehe nicht zu einem Remote-System, wenn einem Kontaktlink gefolgt wird" -#: src/Module/Settings/Display.php:334 +#: src/Module/Settings/Display.php:320 msgid "Show the post deletion checkbox" msgstr "Die Checkbox zum Löschen von Beiträgen anzeigen" -#: src/Module/Settings/Display.php:334 +#: src/Module/Settings/Display.php:320 msgid "Display the checkbox for the post deletion on the network page." msgstr "Zeigt die Checkbox für das Löschen von Beiträgen auf der Netzwerkseite an." -#: src/Module/Settings/Display.php:335 +#: src/Module/Settings/Display.php:321 msgid "DIsplay the event list" msgstr "Anzeige der der anstehenden Ereignisse" -#: src/Module/Settings/Display.php:335 +#: src/Module/Settings/Display.php:321 msgid "Display the birthday reminder and event list on the network page." msgstr "Zeigt die Geburtstagserinnerungen und die anstehenden Veranstaltungen auf der Netzwerkseite an." -#: src/Module/Settings/Display.php:336 +#: src/Module/Settings/Display.php:322 msgid "Link preview mode" msgstr "Vorschau Modus für Links" -#: src/Module/Settings/Display.php:336 +#: src/Module/Settings/Display.php:322 msgid "Appearance of the link preview that is added to each post with a link." msgstr "Aussehen der Linkvorschau, die zu jedem Beitrag mit einem Link hinzugefügt wird." -#: src/Module/Settings/Display.php:341 +#: src/Module/Settings/Display.php:327 msgid "Bookmark" msgstr "Lesezeichen" -#: src/Module/Settings/Display.php:343 +#: src/Module/Settings/Display.php:329 msgid "" "Enable timelines that you want to see in the channels widget. Bookmark " "timelines that you want to see in the top menu." msgstr "Aktiviere die Timelines, die Sie im Kanäle-Widget sehen möchten. Setze ein Lesezeichen für Timelines, die du im oberen Menü sehen willst." -#: src/Module/Settings/Display.php:345 +#: src/Module/Settings/Display.php:331 msgid "Channel languages:" msgstr "Channel Sprachen:" -#: src/Module/Settings/Display.php:345 +#: src/Module/Settings/Display.php:331 msgid "Select all languages that you want to see in your channels." msgstr "Wähle alle Sprachen aus, die du in deinen Kanälen sehen willst." -#: src/Module/Settings/Display.php:347 +#: src/Module/Settings/Display.php:333 msgid "Beginning of week:" msgstr "Wochenbeginn:" -#: src/Module/Settings/Display.php:348 +#: src/Module/Settings/Display.php:334 msgid "Default calendar view:" msgstr "Standard-Kalenderansicht:" -#: src/Module/Settings/Features.php:73 +#: src/Module/Settings/Features.php:59 msgid "Additional Features" msgstr "Zusätzliche Features" -#: src/Module/Settings/OAuth.php:71 +#: src/Module/Settings/OAuth.php:57 msgid "Connected Apps" msgstr "Verbundene Programme" -#: src/Module/Settings/OAuth.php:75 +#: src/Module/Settings/OAuth.php:61 msgid "Remove authorization" msgstr "Autorisierung entziehen" -#: src/Module/Settings/Profile/Index.php:116 +#: src/Module/Settings/Profile/Index.php:102 msgid "Display Name is required." msgstr "Der Anzeigename ist erforderlich." -#: src/Module/Settings/Profile/Index.php:170 +#: src/Module/Settings/Profile/Index.php:156 msgid "Profile couldn't be updated." msgstr "Das Profil konnte nicht aktualisiert werden." -#: src/Module/Settings/Profile/Index.php:210 -#: src/Module/Settings/Profile/Index.php:231 +#: src/Module/Settings/Profile/Index.php:196 +#: src/Module/Settings/Profile/Index.php:217 msgid "Label:" msgstr "Bezeichnung:" -#: src/Module/Settings/Profile/Index.php:211 -#: src/Module/Settings/Profile/Index.php:232 +#: src/Module/Settings/Profile/Index.php:197 +#: src/Module/Settings/Profile/Index.php:218 msgid "Value:" msgstr "Wert:" -#: src/Module/Settings/Profile/Index.php:222 -#: src/Module/Settings/Profile/Index.php:243 +#: src/Module/Settings/Profile/Index.php:208 +#: src/Module/Settings/Profile/Index.php:229 msgid "Field Permissions" msgstr "Berechtigungen des Felds" -#: src/Module/Settings/Profile/Index.php:223 -#: src/Module/Settings/Profile/Index.php:244 +#: src/Module/Settings/Profile/Index.php:209 +#: src/Module/Settings/Profile/Index.php:230 msgid "(click to open/close)" msgstr "(klicke zum Öffnen/Schließen)" -#: src/Module/Settings/Profile/Index.php:229 +#: src/Module/Settings/Profile/Index.php:215 msgid "Add a new profile field" msgstr "Neues Profilfeld hinzufügen" -#: src/Module/Settings/Profile/Index.php:252 +#: src/Module/Settings/Profile/Index.php:238 msgid "" "The homepage is verified. A rel=\"me\" link back to your Friendica profile " "page was found on the homepage." msgstr "Die Homepage ist verifiziert. Ein rel=\"me\" Link zurück auf dein Friendica Profil wurde gefunden." -#: src/Module/Settings/Profile/Index.php:254 +#: src/Module/Settings/Profile/Index.php:240 #, php-format msgid "" "To verify your homepage, add a rel=\"me\" link to it, pointing to your " "profile URL (%s)." msgstr "Um deine Homepage zu verifizieren, füge einen rel=\"me\" Link auf der Seite hinzu, der auf dein Profil mit der URL (%s) verweist." -#: src/Module/Settings/Profile/Index.php:260 +#: src/Module/Settings/Profile/Index.php:246 msgid "Profile Actions" msgstr "Profilaktionen" -#: src/Module/Settings/Profile/Index.php:261 +#: src/Module/Settings/Profile/Index.php:247 msgid "Edit Profile Details" msgstr "Profil bearbeiten" -#: src/Module/Settings/Profile/Index.php:263 +#: src/Module/Settings/Profile/Index.php:249 msgid "Change Profile Photo" msgstr "Profilbild ändern" -#: src/Module/Settings/Profile/Index.php:266 +#: src/Module/Settings/Profile/Index.php:252 msgid "Profile picture" msgstr "Profilbild" -#: src/Module/Settings/Profile/Index.php:267 +#: src/Module/Settings/Profile/Index.php:253 msgid "Location" msgstr "Wohnort" -#: src/Module/Settings/Profile/Index.php:268 src/Util/Temporal.php:97 -#: src/Util/Temporal.php:99 +#: src/Module/Settings/Profile/Index.php:254 src/Util/Temporal.php:83 +#: src/Util/Temporal.php:85 msgid "Miscellaneous" msgstr "Verschiedenes" -#: src/Module/Settings/Profile/Index.php:269 +#: src/Module/Settings/Profile/Index.php:255 msgid "Custom Profile Fields" msgstr "Benutzerdefinierte Profilfelder" -#: src/Module/Settings/Profile/Index.php:270 src/Module/Welcome.php:58 +#: src/Module/Settings/Profile/Index.php:256 src/Module/Welcome.php:44 msgid "Upload Profile Photo" msgstr "Profilbild hochladen" -#: src/Module/Settings/Profile/Index.php:271 +#: src/Module/Settings/Profile/Index.php:257 #, php-format msgid "" "Custom fields appear on your profile page.
\n" @@ -10995,396 +10965,396 @@ msgid "" "\t\t\t\tNon-public fields can only be seen by the selected Friendica contacts or the Friendica contacts in the selected circles.
" msgstr "Die benutzerdefinierten Felder erscheinen auf deiner Profil-Seite
.\n\nBBCode kann verwendet werden
\nDie Reihenfolge der Felder kann durch Ziehen des Feld-Titels mit der Maus angepasst werden.
\nWird die Bezeichnung des Felds geleert, wird das Feld beim Speichern aus dem Profil entfernt.
\nNicht öffentliche Felder können nur von den ausgewählten Friendica Circles gesehen werden.
" -#: src/Module/Settings/Profile/Index.php:291 +#: src/Module/Settings/Profile/Index.php:277 msgid "Street Address:" msgstr "Adresse:" -#: src/Module/Settings/Profile/Index.php:292 +#: src/Module/Settings/Profile/Index.php:278 msgid "Locality/City:" msgstr "Wohnort:" -#: src/Module/Settings/Profile/Index.php:293 +#: src/Module/Settings/Profile/Index.php:279 msgid "Region/State:" msgstr "Region/Bundesstaat:" -#: src/Module/Settings/Profile/Index.php:294 +#: src/Module/Settings/Profile/Index.php:280 msgid "Postal/Zip Code:" msgstr "Postleitzahl:" -#: src/Module/Settings/Profile/Index.php:295 +#: src/Module/Settings/Profile/Index.php:281 msgid "Country:" msgstr "Land:" -#: src/Module/Settings/Profile/Index.php:297 +#: src/Module/Settings/Profile/Index.php:283 msgid "XMPP (Jabber) address:" msgstr "XMPP (Jabber) Adresse" -#: src/Module/Settings/Profile/Index.php:297 +#: src/Module/Settings/Profile/Index.php:283 msgid "" "The XMPP address will be published so that people can follow you there." msgstr "Die XMPP Adresse wird veröffentlicht, damit man dort mit dir kommunizieren kann." -#: src/Module/Settings/Profile/Index.php:298 +#: src/Module/Settings/Profile/Index.php:284 msgid "Matrix (Element) address:" msgstr "Matrix (Element) Adresse:" -#: src/Module/Settings/Profile/Index.php:298 +#: src/Module/Settings/Profile/Index.php:284 msgid "" "The Matrix address will be published so that people can follow you there." msgstr "Die Matrix Adresse wird veröffentlicht, damit man dort mit dir kommunizieren kann." -#: src/Module/Settings/Profile/Index.php:299 +#: src/Module/Settings/Profile/Index.php:285 msgid "Homepage URL:" msgstr "Adresse der Homepage:" -#: src/Module/Settings/Profile/Index.php:300 +#: src/Module/Settings/Profile/Index.php:286 msgid "Public Keywords:" msgstr "Öffentliche Schlüsselwörter:" -#: src/Module/Settings/Profile/Index.php:300 +#: src/Module/Settings/Profile/Index.php:286 msgid "(Used for suggesting potential friends, can be seen by others)" msgstr "(Wird verwendet, um potentielle Kontakte zu finden, kann von Kontakten eingesehen werden)" -#: src/Module/Settings/Profile/Index.php:301 +#: src/Module/Settings/Profile/Index.php:287 msgid "Private Keywords:" msgstr "Private Schlüsselwörter:" -#: src/Module/Settings/Profile/Index.php:301 +#: src/Module/Settings/Profile/Index.php:287 msgid "(Used for searching profiles, never shown to others)" msgstr "(Wird für die Suche nach Profilen verwendet und niemals veröffentlicht)" -#: src/Module/Settings/Profile/Photo/Crop.php:107 -#: src/Module/Settings/Profile/Photo/Crop.php:125 -#: src/Module/Settings/Profile/Photo/Crop.php:143 -#: src/Module/Settings/Profile/Photo/Index.php:100 +#: src/Module/Settings/Profile/Photo/Crop.php:93 +#: src/Module/Settings/Profile/Photo/Crop.php:111 +#: src/Module/Settings/Profile/Photo/Crop.php:129 +#: src/Module/Settings/Profile/Photo/Index.php:86 #, php-format msgid "Image size reduction [%s] failed." msgstr "Verkleinern der Bildgröße von [%s] scheiterte." -#: src/Module/Settings/Profile/Photo/Crop.php:150 +#: src/Module/Settings/Profile/Photo/Crop.php:136 msgid "" "Shift-reload the page or clear browser cache if the new photo does not " "display immediately." msgstr "Drücke Umschalt+Neu Laden oder leere den Browser-Cache, falls das neue Foto nicht gleich angezeigt wird." -#: src/Module/Settings/Profile/Photo/Crop.php:155 +#: src/Module/Settings/Profile/Photo/Crop.php:141 msgid "Unable to process image" msgstr "Bild konnte nicht verarbeitet werden" -#: src/Module/Settings/Profile/Photo/Crop.php:174 +#: src/Module/Settings/Profile/Photo/Crop.php:160 msgid "Photo not found." msgstr "Foto nicht gefunden" -#: src/Module/Settings/Profile/Photo/Crop.php:196 +#: src/Module/Settings/Profile/Photo/Crop.php:182 msgid "Profile picture successfully updated." msgstr "Profilbild erfolgreich aktualisiert." -#: src/Module/Settings/Profile/Photo/Crop.php:222 -#: src/Module/Settings/Profile/Photo/Crop.php:226 +#: src/Module/Settings/Profile/Photo/Crop.php:208 +#: src/Module/Settings/Profile/Photo/Crop.php:212 msgid "Crop Image" msgstr "Bild zurechtschneiden" -#: src/Module/Settings/Profile/Photo/Crop.php:223 +#: src/Module/Settings/Profile/Photo/Crop.php:209 msgid "Please adjust the image cropping for optimum viewing." msgstr "Passe bitte den Bildausschnitt an, damit das Bild optimal dargestellt werden kann." -#: src/Module/Settings/Profile/Photo/Crop.php:225 +#: src/Module/Settings/Profile/Photo/Crop.php:211 msgid "Use Image As Is" msgstr "Bild wie es ist verwenden" -#: src/Module/Settings/Profile/Photo/Index.php:46 +#: src/Module/Settings/Profile/Photo/Index.php:32 msgid "Missing uploaded image." msgstr "Hochgeladenes Bild nicht gefunden." -#: src/Module/Settings/Profile/Photo/Index.php:123 +#: src/Module/Settings/Profile/Photo/Index.php:109 msgid "Profile Picture Settings" msgstr "Einstellungen zum Profilbild" -#: src/Module/Settings/Profile/Photo/Index.php:124 +#: src/Module/Settings/Profile/Photo/Index.php:110 msgid "Current Profile Picture" msgstr "Aktuelles Profilbild" -#: src/Module/Settings/Profile/Photo/Index.php:125 +#: src/Module/Settings/Profile/Photo/Index.php:111 msgid "Upload Profile Picture" msgstr "Profilbild aktualisieren" -#: src/Module/Settings/Profile/Photo/Index.php:126 +#: src/Module/Settings/Profile/Photo/Index.php:112 msgid "Upload Picture:" msgstr "Bild hochladen" -#: src/Module/Settings/Profile/Photo/Index.php:131 +#: src/Module/Settings/Profile/Photo/Index.php:117 msgid "or" msgstr "oder" -#: src/Module/Settings/Profile/Photo/Index.php:133 +#: src/Module/Settings/Profile/Photo/Index.php:119 msgid "skip this step" msgstr "diesen Schritt überspringen" -#: src/Module/Settings/Profile/Photo/Index.php:135 +#: src/Module/Settings/Profile/Photo/Index.php:121 msgid "select a photo from your photo albums" msgstr "wähle ein Foto aus deinen Fotoalben" -#: src/Module/Settings/RemoveMe.php:76 +#: src/Module/Settings/RemoveMe.php:62 msgid "" "There was a validation error, please make sure you're logged in with the " "account you want to remove and try again." msgstr "Es gab einen Überprüfungsfehler. Bitte vergewisser dich, dass du mit dem Konto, das du entfernen möchtest angemeldet bist, und versuche es erneut." -#: src/Module/Settings/RemoveMe.php:76 +#: src/Module/Settings/RemoveMe.php:62 msgid "If this error persists, please contact your administrator." msgstr "Wenn dieser Fehler weiterhin besteht, wende dich bitte an den Administrator deiner Instanz." -#: src/Module/Settings/RemoveMe.php:90 -#: src/Navigation/Notifications/Repository/Notify.php:471 -#: src/Navigation/Notifications/Repository/Notify.php:492 +#: src/Module/Settings/RemoveMe.php:76 +#: src/Navigation/Notifications/Repository/Notify.php:457 +#: src/Navigation/Notifications/Repository/Notify.php:478 msgid "[Friendica System Notify]" msgstr "[Friendica-Systembenachrichtigung]" -#: src/Module/Settings/RemoveMe.php:90 +#: src/Module/Settings/RemoveMe.php:76 msgid "User deleted their account" msgstr "Gelöschter Nutzeraccount" -#: src/Module/Settings/RemoveMe.php:91 +#: src/Module/Settings/RemoveMe.php:77 msgid "" "On your Friendica node an user deleted their account. Please ensure that " "their data is removed from the backups." msgstr "Ein Nutzer deiner Friendica-Instanz hat seinen Account gelöscht. Bitte stelle sicher, dass dessen Daten aus deinen Backups entfernt werden." -#: src/Module/Settings/RemoveMe.php:92 +#: src/Module/Settings/RemoveMe.php:78 #, php-format msgid "The user id is %d" msgstr "Die ID des Users lautet %d" -#: src/Module/Settings/RemoveMe.php:105 +#: src/Module/Settings/RemoveMe.php:91 msgid "Your account has been successfully removed. Bye bye!" msgstr "Ihr Konto wurde erfolgreich gelöscht. Auf Wiedersehen!" -#: src/Module/Settings/RemoveMe.php:130 +#: src/Module/Settings/RemoveMe.php:116 msgid "Remove My Account" msgstr "Konto löschen" -#: src/Module/Settings/RemoveMe.php:131 +#: src/Module/Settings/RemoveMe.php:117 msgid "" "This will completely remove your account. Once this has been done it is not " "recoverable." msgstr "Dein Konto wird endgültig gelöscht. Es gibt keine Möglichkeit, es wiederherzustellen." -#: src/Module/Settings/RemoveMe.php:136 +#: src/Module/Settings/RemoveMe.php:122 msgid "Please enter your password for verification:" msgstr "Bitte gib dein Passwort zur Verifikation ein:" -#: src/Module/Settings/Server/Action.php:60 +#: src/Module/Settings/Server/Action.php:46 msgid "Do you want to ignore this server?" msgstr "Möchtest du diese Instanz ignorieren?" -#: src/Module/Settings/Server/Action.php:64 +#: src/Module/Settings/Server/Action.php:50 msgid "Do you want to unignore this server?" msgstr "Möchtest du diese Instanz nicht mehr ignorieren?" -#: src/Module/Settings/Server/Action.php:74 -#: src/Module/Settings/Server/Index.php:104 +#: src/Module/Settings/Server/Action.php:60 +#: src/Module/Settings/Server/Index.php:90 msgid "Remote server settings" msgstr "Einstellungen der Remote-Instanz" -#: src/Module/Settings/Server/Action.php:77 +#: src/Module/Settings/Server/Action.php:63 msgid "Server URL" msgstr "Server URL" -#: src/Module/Settings/Server/Index.php:78 +#: src/Module/Settings/Server/Index.php:64 msgid "Settings saved" msgstr "Einstellungen gespeichert" -#: src/Module/Settings/Server/Index.php:105 +#: src/Module/Settings/Server/Index.php:91 msgid "" "Here you can find all the remote servers you have taken individual " "moderation actions against. For a list of servers your node has blocked, " "please check out the Information page." msgstr "Hier findest du alle Entfernten-Server, gegen die du individuelle Moderationsmaßnahmen ergriffen hast. Eine Liste der Server, die deine Instanz blockiert hat, findest du auf der Informationseite ." -#: src/Module/Settings/Server/Index.php:110 +#: src/Module/Settings/Server/Index.php:96 msgid "Delete all your settings for the remote server" msgstr "Lösche alle deine Einstellungen für die Entfernte-Instanz" -#: src/Module/Settings/Server/Index.php:111 +#: src/Module/Settings/Server/Index.php:97 msgid "Save changes" msgstr "Einstellungen speichern" -#: src/Module/Settings/TwoFactor/AppSpecific.php:69 -#: src/Module/Settings/TwoFactor/Recovery.php:67 -#: src/Module/Settings/TwoFactor/Trusted.php:70 -#: src/Module/Settings/TwoFactor/Verify.php:72 +#: src/Module/Settings/TwoFactor/AppSpecific.php:55 +#: src/Module/Settings/TwoFactor/Recovery.php:53 +#: src/Module/Settings/TwoFactor/Trusted.php:56 +#: src/Module/Settings/TwoFactor/Verify.php:58 msgid "Please enter your password to access this page." msgstr "Bitte gib dein Passwort ein, um auf diese Seite zuzugreifen." -#: src/Module/Settings/TwoFactor/AppSpecific.php:87 +#: src/Module/Settings/TwoFactor/AppSpecific.php:73 msgid "App-specific password generation failed: The description is empty." msgstr "Die Erzeugung des App spezifischen Passworts ist fehlgeschlagen. Die Beschreibung ist leer." -#: src/Module/Settings/TwoFactor/AppSpecific.php:90 +#: src/Module/Settings/TwoFactor/AppSpecific.php:76 msgid "" "App-specific password generation failed: This description already exists." msgstr "Die Erzeugung des App spezifischen Passworts ist fehlgeschlagen. Die Beschreibung existiert bereits." -#: src/Module/Settings/TwoFactor/AppSpecific.php:94 +#: src/Module/Settings/TwoFactor/AppSpecific.php:80 msgid "New app-specific password generated." msgstr "Neues App spezifisches Passwort erzeugt." -#: src/Module/Settings/TwoFactor/AppSpecific.php:100 +#: src/Module/Settings/TwoFactor/AppSpecific.php:86 msgid "App-specific passwords successfully revoked." msgstr "App spezifische Passwörter erfolgreich widerrufen." -#: src/Module/Settings/TwoFactor/AppSpecific.php:110 +#: src/Module/Settings/TwoFactor/AppSpecific.php:96 msgid "App-specific password successfully revoked." msgstr "App spezifisches Passwort erfolgreich widerrufen." -#: src/Module/Settings/TwoFactor/AppSpecific.php:131 +#: src/Module/Settings/TwoFactor/AppSpecific.php:117 msgid "Two-factor app-specific passwords" msgstr "Zwei-Faktor App spezifische Passwörter." -#: src/Module/Settings/TwoFactor/AppSpecific.php:133 +#: src/Module/Settings/TwoFactor/AppSpecific.php:119 msgid "" "App-specific passwords are randomly generated passwords used instead your" " regular password to authenticate your account on third-party applications " "that don't support two-factor authentication.
" msgstr "App spezifische Passwörter sind zufällig generierte Passwörter die anstelle des regulären Passworts zur Anmeldung mit Client Anwendungen verwendet werden, wenn diese Anwendungen die Zwei-Faktor-Authentifizierung nicht unterstützen.
" -#: src/Module/Settings/TwoFactor/AppSpecific.php:134 +#: src/Module/Settings/TwoFactor/AppSpecific.php:120 msgid "" "Make sure to copy your new app-specific password now. You won’t be able to " "see it again!" msgstr "Das neue App spezifische Passwort muss jetzt übertragen werden. Später wirst du es nicht mehr einsehen können!" -#: src/Module/Settings/TwoFactor/AppSpecific.php:138 +#: src/Module/Settings/TwoFactor/AppSpecific.php:124 msgid "Last Used" msgstr "Zuletzt verwendet" -#: src/Module/Settings/TwoFactor/AppSpecific.php:139 +#: src/Module/Settings/TwoFactor/AppSpecific.php:125 msgid "Revoke" msgstr "Widerrufen" -#: src/Module/Settings/TwoFactor/AppSpecific.php:140 +#: src/Module/Settings/TwoFactor/AppSpecific.php:126 msgid "Revoke All" msgstr "Alle widerrufen" -#: src/Module/Settings/TwoFactor/AppSpecific.php:143 +#: src/Module/Settings/TwoFactor/AppSpecific.php:129 msgid "" "When you generate a new app-specific password, you must use it right away, " "it will be shown to you once after you generate it." msgstr "Wenn du eine neues App spezifisches Passwort erstellst, musst du es sofort verwenden. Es wird dir nur ein einziges Mal nach der Erstellung angezeigt." -#: src/Module/Settings/TwoFactor/AppSpecific.php:144 +#: src/Module/Settings/TwoFactor/AppSpecific.php:130 msgid "Generate new app-specific password" msgstr "Neues App spezifisches Passwort erstellen" -#: src/Module/Settings/TwoFactor/AppSpecific.php:145 +#: src/Module/Settings/TwoFactor/AppSpecific.php:131 msgid "Friendiqa on my Fairphone 2..." msgstr "Friendiqa auf meinem Fairphone 2" -#: src/Module/Settings/TwoFactor/AppSpecific.php:146 +#: src/Module/Settings/TwoFactor/AppSpecific.php:132 msgid "Generate" msgstr "Erstellen" -#: src/Module/Settings/TwoFactor/Index.php:88 +#: src/Module/Settings/TwoFactor/Index.php:74 msgid "Two-factor authentication successfully disabled." msgstr "Zwei-Faktor Authentifizierung erfolgreich deaktiviert." -#: src/Module/Settings/TwoFactor/Index.php:141 +#: src/Module/Settings/TwoFactor/Index.php:127 msgid "" "Use an application on a mobile device to get two-factor authentication " "codes when prompted on login.
" msgstr "Benutze eine App auf deinem Smartphone um einen Zwei-Faktor Identifikationscode zu bekommen wenn beim Anmelden das verlangt wird.
" -#: src/Module/Settings/TwoFactor/Index.php:145 +#: src/Module/Settings/TwoFactor/Index.php:131 msgid "Authenticator app" msgstr "Zwei-Faktor Authentifizierungsapp" -#: src/Module/Settings/TwoFactor/Index.php:146 +#: src/Module/Settings/TwoFactor/Index.php:132 msgid "Configured" msgstr "Konfiguriert" -#: src/Module/Settings/TwoFactor/Index.php:146 +#: src/Module/Settings/TwoFactor/Index.php:132 msgid "Not Configured" msgstr "Nicht konfiguriert" -#: src/Module/Settings/TwoFactor/Index.php:147 +#: src/Module/Settings/TwoFactor/Index.php:133 msgid "You haven't finished configuring your authenticator app.
" msgstr "Die Konfiguration deiner Zwei-Faktor Authentifizierungsapp ist nicht abgeschlossen.
" -#: src/Module/Settings/TwoFactor/Index.php:148 +#: src/Module/Settings/TwoFactor/Index.php:134 msgid "Your authenticator app is correctly configured.
" msgstr "Deine Zwei-Faktor Authentifizierungsapp ist korrekt konfiguriert.
" -#: src/Module/Settings/TwoFactor/Index.php:150 +#: src/Module/Settings/TwoFactor/Index.php:136 msgid "Recovery codes" msgstr "Wiederherstellungsschlüssel" -#: src/Module/Settings/TwoFactor/Index.php:151 +#: src/Module/Settings/TwoFactor/Index.php:137 msgid "Remaining valid codes" msgstr "Verbleibende Wiederherstellungsschlüssel" -#: src/Module/Settings/TwoFactor/Index.php:153 +#: src/Module/Settings/TwoFactor/Index.php:139 msgid "" "These one-use codes can replace an authenticator app code in case you " "have lost access to it.
" msgstr "Diese Einmalcodes können einen Authentifikator-App-Code ersetzen, falls du den Zugriff darauf verloren hast.
" -#: src/Module/Settings/TwoFactor/Index.php:155 +#: src/Module/Settings/TwoFactor/Index.php:141 msgid "App-specific passwords" msgstr "App spezifische Passwörter" -#: src/Module/Settings/TwoFactor/Index.php:156 +#: src/Module/Settings/TwoFactor/Index.php:142 msgid "Generated app-specific passwords" msgstr "App spezifische Passwörter erstellen" -#: src/Module/Settings/TwoFactor/Index.php:158 +#: src/Module/Settings/TwoFactor/Index.php:144 msgid "" "These randomly generated passwords allow you to authenticate on apps not " "supporting two-factor authentication.
" msgstr "Diese zufällig erzeugten Passwörter erlauben es dir dich mit Apps anzumelden, die keine Zwei-Faktor-Authentifizierung unterstützen.
" -#: src/Module/Settings/TwoFactor/Index.php:161 +#: src/Module/Settings/TwoFactor/Index.php:147 msgid "Current password:" msgstr "Aktuelles Passwort:" -#: src/Module/Settings/TwoFactor/Index.php:161 +#: src/Module/Settings/TwoFactor/Index.php:147 msgid "" "You need to provide your current password to change two-factor " "authentication settings." msgstr "Du musst dein aktuelles Passwort eingeben um die Einstellungen der Zwei-Faktor-Authentifizierung zu ändern" -#: src/Module/Settings/TwoFactor/Index.php:162 +#: src/Module/Settings/TwoFactor/Index.php:148 msgid "Enable two-factor authentication" msgstr "Aktiviere die Zwei-Faktor-Authentifizierung" -#: src/Module/Settings/TwoFactor/Index.php:163 +#: src/Module/Settings/TwoFactor/Index.php:149 msgid "Disable two-factor authentication" msgstr "Deaktiviere die Zwei-Faktor-Authentifizierung" -#: src/Module/Settings/TwoFactor/Index.php:164 +#: src/Module/Settings/TwoFactor/Index.php:150 msgid "Show recovery codes" msgstr "Wiederherstellungscodes anzeigen" -#: src/Module/Settings/TwoFactor/Index.php:165 +#: src/Module/Settings/TwoFactor/Index.php:151 msgid "Manage app-specific passwords" msgstr "App spezifische Passwörter verwalten" -#: src/Module/Settings/TwoFactor/Index.php:166 +#: src/Module/Settings/TwoFactor/Index.php:152 msgid "Manage trusted browsers" msgstr "Vertrauenswürdige Browser verwalten" -#: src/Module/Settings/TwoFactor/Index.php:167 +#: src/Module/Settings/TwoFactor/Index.php:153 msgid "Finish app configuration" msgstr "Beende die App-Konfiguration" -#: src/Module/Settings/TwoFactor/Recovery.php:83 +#: src/Module/Settings/TwoFactor/Recovery.php:69 msgid "New recovery codes successfully generated." msgstr "Neue Wiederherstellungscodes erfolgreich generiert." -#: src/Module/Settings/TwoFactor/Recovery.php:109 +#: src/Module/Settings/TwoFactor/Recovery.php:95 msgid "Two-factor recovery codes" msgstr "Zwei-Faktor-Wiederherstellungscodes" -#: src/Module/Settings/TwoFactor/Recovery.php:111 +#: src/Module/Settings/TwoFactor/Recovery.php:97 msgid "" "Recovery codes can be used to access your account in the event you lose " "access to your device and cannot receive two-factor authentication " @@ -11393,68 +11363,68 @@ msgid "" "account.
" msgstr "Wiederherstellungscodes können verwendet werden, um auf dein Konto zuzugreifen, falls du den Zugriff auf dein Gerät verlieren und keine Zwei-Faktor-Authentifizierungscodes erhalten kannst.
Bewahre diese an einem sicheren Ort auf! Wenn du dein Gerät verlierst und nicht über die Wiederherstellungscodes verfügst, verlierst du den Zugriff auf dein Konto.
" -#: src/Module/Settings/TwoFactor/Recovery.php:113 +#: src/Module/Settings/TwoFactor/Recovery.php:99 msgid "" "When you generate new recovery codes, you must copy the new codes. Your old " "codes won’t work anymore." msgstr "Wenn du neue Wiederherstellungscodes generierst, mußt du die neuen Codes kopieren. Deine alten Codes funktionieren nicht mehr." -#: src/Module/Settings/TwoFactor/Recovery.php:114 +#: src/Module/Settings/TwoFactor/Recovery.php:100 msgid "Generate new recovery codes" msgstr "Generiere neue Wiederherstellungscodes" -#: src/Module/Settings/TwoFactor/Recovery.php:116 +#: src/Module/Settings/TwoFactor/Recovery.php:102 msgid "Next: Verification" msgstr "Weiter: Überprüfung" -#: src/Module/Settings/TwoFactor/Trusted.php:87 +#: src/Module/Settings/TwoFactor/Trusted.php:73 msgid "Trusted browsers successfully removed." msgstr "Die vertrauenswürdigen Browser wurden erfolgreich entfernt." -#: src/Module/Settings/TwoFactor/Trusted.php:97 +#: src/Module/Settings/TwoFactor/Trusted.php:83 msgid "Trusted browser successfully removed." msgstr "Der vertrauenswürdige Browser erfolgreich entfernt." -#: src/Module/Settings/TwoFactor/Trusted.php:139 +#: src/Module/Settings/TwoFactor/Trusted.php:125 msgid "Two-factor Trusted Browsers" msgstr "Zwei-Faktor vertrauenswürdige Browser" -#: src/Module/Settings/TwoFactor/Trusted.php:140 +#: src/Module/Settings/TwoFactor/Trusted.php:126 msgid "" "Trusted browsers are individual browsers you chose to skip two-factor " "authentication to access Friendica. Please use this feature sparingly, as it" " can negate the benefit of two-factor authentication." msgstr "Vertrauenswürdige Browser sind spezielle Browser für die du entscheidest, dass die Zwei-Faktor Authentifikation übersprungen werden soll. Bitte verwende diese Option sparsam, da sie die Vorteile der 2FA aufhebt." -#: src/Module/Settings/TwoFactor/Trusted.php:141 +#: src/Module/Settings/TwoFactor/Trusted.php:127 msgid "Device" msgstr "Gerät" -#: src/Module/Settings/TwoFactor/Trusted.php:142 +#: src/Module/Settings/TwoFactor/Trusted.php:128 msgid "OS" msgstr "OS" -#: src/Module/Settings/TwoFactor/Trusted.php:144 +#: src/Module/Settings/TwoFactor/Trusted.php:130 msgid "Trusted" msgstr "Vertrauenswürdig" -#: src/Module/Settings/TwoFactor/Trusted.php:145 +#: src/Module/Settings/TwoFactor/Trusted.php:131 msgid "Created At" msgstr "Erstellt am" -#: src/Module/Settings/TwoFactor/Trusted.php:146 +#: src/Module/Settings/TwoFactor/Trusted.php:132 msgid "Last Use" msgstr "Zuletzt verwendet" -#: src/Module/Settings/TwoFactor/Trusted.php:148 +#: src/Module/Settings/TwoFactor/Trusted.php:134 msgid "Remove All" msgstr "Alle entfernen" -#: src/Module/Settings/TwoFactor/Verify.php:94 +#: src/Module/Settings/TwoFactor/Verify.php:80 msgid "Two-factor authentication successfully activated." msgstr "Zwei-Faktor-Authentifizierung erfolgreich aktiviert." -#: src/Module/Settings/TwoFactor/Verify.php:128 +#: src/Module/Settings/TwoFactor/Verify.php:114 #, php-format msgid "" "Or you can submit the authentication settings manually:
\n" @@ -11474,105 +11444,105 @@ msgid "" "" msgstr "Oder du kannst die Authentifizierungseinstellungen manuell übermitteln:
\nPlease scan this QR Code with your authenticator app and submit the " "provided code.
" msgstr "Bitte scanne diesen QR-Code mit deiner Authentifikator-App und übermittele den bereitgestellten Code.
" -#: src/Module/Settings/TwoFactor/Verify.php:152 +#: src/Module/Settings/TwoFactor/Verify.php:138 #, php-format msgid "" "Or you can open the following URL in your mobile device:
" msgstr "Oder du kannst die folgende URL in deinem Mobilgerät öffnen:
" -#: src/Module/Settings/TwoFactor/Verify.php:159 +#: src/Module/Settings/TwoFactor/Verify.php:145 msgid "Verify code and enable two-factor authentication" msgstr "Überprüfe den Code und aktiviere die Zwei-Faktor-Authentifizierung" -#: src/Module/Settings/UserExport.php:90 +#: src/Module/Settings/UserExport.php:76 msgid "Export account" msgstr "Account exportieren" -#: src/Module/Settings/UserExport.php:90 +#: src/Module/Settings/UserExport.php:76 msgid "" "Export your account info and contacts. Use this to make a backup of your " "account and/or to move it to another server." msgstr "Exportiere Deine Account-Informationen und Kontakte. Verwende dies, um ein Backup Deines Accounts anzulegen und/oder damit auf einen anderen Server umzuziehen." -#: src/Module/Settings/UserExport.php:91 +#: src/Module/Settings/UserExport.php:77 msgid "Export all" msgstr "Alles exportieren" -#: src/Module/Settings/UserExport.php:91 +#: src/Module/Settings/UserExport.php:77 msgid "" "Export your account info, contacts and all your items as json. Could be a " "very big file, and could take a lot of time. Use this to make a full backup " "of your account (photos are not exported)" msgstr "Exportiere deine Account Informationen, Kontakte und alle Einträge als JSON Datei. Dies könnte eine sehr große Datei werden und dementsprechend viel Zeit benötigen. Verwende dies um ein komplettes Backup deines Accounts anzulegen (Photos werden nicht exportiert)." -#: src/Module/Settings/UserExport.php:92 +#: src/Module/Settings/UserExport.php:78 msgid "Export Contacts to CSV" msgstr "Kontakte nach CSV exportieren" -#: src/Module/Settings/UserExport.php:92 +#: src/Module/Settings/UserExport.php:78 msgid "" "Export the list of the accounts you are following as CSV file. Compatible to" " e.g. Mastodon." msgstr "Exportiert die Liste der Nutzerkonten denen du folgst in eine CSV Datei. Das Format ist z.B. zu Mastodon kompatibel." -#: src/Module/Special/DisplayNotFound.php:35 +#: src/Module/Special/DisplayNotFound.php:21 msgid "The top-level post isn't visible." msgstr "Der Beitrag der obersten Ebene ist nicht sichtbar." -#: src/Module/Special/DisplayNotFound.php:36 +#: src/Module/Special/DisplayNotFound.php:22 msgid "The top-level post was deleted." msgstr "Der Beitrag auf der obersten Ebene wurde gelöscht." -#: src/Module/Special/DisplayNotFound.php:37 +#: src/Module/Special/DisplayNotFound.php:23 msgid "" "This node has blocked the top-level author or the author of the shared post." msgstr "Diese Instanz hat den Top-Level-Autor oder den Autor des freigegebenen Beitrags gesperrt." -#: src/Module/Special/DisplayNotFound.php:38 +#: src/Module/Special/DisplayNotFound.php:24 msgid "" "You have ignored or blocked the top-level author or the author of the shared" " post." msgstr "Du hast den Autor der obersten Ebene oder den Autor des freigegebenen Beitrags ignoriert oder blockiert." -#: src/Module/Special/DisplayNotFound.php:39 +#: src/Module/Special/DisplayNotFound.php:25 msgid "" "You have ignored the top-level author's server or the shared post author's " "server." msgstr "Du hast die Instanz des übergeordneten Autors oder die Instanz des Autors des freigegebenen Beitrags ignoriert." -#: src/Module/Special/DisplayNotFound.php:45 +#: src/Module/Special/DisplayNotFound.php:31 msgid "Conversation Not Found" msgstr "Konversation nicht gefunden" -#: src/Module/Special/DisplayNotFound.php:46 +#: src/Module/Special/DisplayNotFound.php:32 msgid "Unfortunately, the requested conversation isn't available to you." msgstr "Leider ist die gewünschte Konversation für dich nicht verfügbar." -#: src/Module/Special/DisplayNotFound.php:47 +#: src/Module/Special/DisplayNotFound.php:33 msgid "Possible reasons include:" msgstr "Mögliche Gründe sind:" -#: src/Module/Special/HTTPException.php:78 +#: src/Module/Special/HTTPException.php:64 msgid "Stack trace:" msgstr "Stack trace:" -#: src/Module/Special/HTTPException.php:83 +#: src/Module/Special/HTTPException.php:69 #, php-format msgid "Exception thrown in %s:%d" msgstr "Exception thrown in %s:%d" -#: src/Module/Tos.php:58 src/Module/Tos.php:107 +#: src/Module/Tos.php:44 src/Module/Tos.php:93 msgid "" "At the time of registration, and for providing communications between the " "user account and their contacts, the user has to provide a display name (pen" @@ -11585,14 +11555,14 @@ msgid "" "settings, it is not necessary for communication." msgstr "Zum Zwecke der Registrierung und um die Kommunikation zwischen dem Nutzer und seinen Kontakten zu gewährleisten, muß der Nutzer einen Namen (auch Pseudonym) und einen Nutzernamen (Spitzname) sowie eine funktionierende E-Mail-Adresse angeben. Der Name ist auf der Profilseite für alle Nutzer sichtbar, auch wenn die Profildetails nicht angezeigt werden.\nDie E-Mail-Adresse wird nur zur Benachrichtigung des Nutzers verwendet, sie wird nirgends angezeigt. Die Anzeige des Nutzerkontos im Server-Verzeichnis bzw. dem weltweiten Verzeichnis erfolgt gemäß den Einstellungen des Nutzers, sie ist zur Kommunikation nicht zwingend notwendig." -#: src/Module/Tos.php:59 src/Module/Tos.php:108 +#: src/Module/Tos.php:45 src/Module/Tos.php:94 msgid "" "This data is required for communication and is passed on to the nodes of the" " communication partners and is stored there. Users can enter additional " "private data that may be transmitted to the communication partners accounts." msgstr "Diese Daten sind für die Kommunikation notwendig und werden an die Knoten der Kommunikationspartner übermittelt und dort gespeichert. Nutzer können weitere, private Angaben machen, die ebenfalls an die verwendeten Server der Kommunikationspartner übermittelt werden können." -#: src/Module/Tos.php:60 src/Module/Tos.php:109 +#: src/Module/Tos.php:46 src/Module/Tos.php:95 #, php-format msgid "" "At any point in time a logged in user can export their account data from the" @@ -11603,121 +11573,121 @@ msgid "" "from the nodes of the communication partners." msgstr "Angemeldete Nutzer können ihre Nutzerdaten jederzeit von den Kontoeinstellungen aus exportieren. Wenn ein Nutzer wünscht das Nutzerkonto zu löschen, so ist dies jederzeit unter %1$s/settings/removeme möglich. Die Löschung des Nutzerkontos ist permanent. Die Löschung der Daten wird auch von den Knoten der Kommunikationspartner angefordert." -#: src/Module/Tos.php:63 src/Module/Tos.php:106 +#: src/Module/Tos.php:49 src/Module/Tos.php:92 msgid "Privacy Statement" msgstr "Datenschutzerklärung" -#: src/Module/Tos.php:103 +#: src/Module/Tos.php:89 msgid "Rules" msgstr "Regeln" -#: src/Module/Update/Display.php:45 +#: src/Module/Update/Display.php:31 msgid "Parameter uri_id is missing." msgstr "Der Parameter uri_id fehlt." -#: src/Module/Update/Display.php:55 +#: src/Module/Update/Display.php:41 msgid "The requested item doesn't exist or has been deleted." msgstr "Der angeforderte Beitrag existiert nicht oder wurde gelöscht." -#: src/Module/User/Delegation.php:146 +#: src/Module/User/Delegation.php:132 #, php-format msgid "You are now logged in as %s" msgstr "Du bist jetzt als %s angemeldet" -#: src/Module/User/Delegation.php:185 +#: src/Module/User/Delegation.php:171 msgid "Switch between your accounts" msgstr "Wechsle deine Konten" -#: src/Module/User/Delegation.php:186 +#: src/Module/User/Delegation.php:172 msgid "Manage your accounts" msgstr "Verwalte deine Konten" -#: src/Module/User/Delegation.php:187 +#: src/Module/User/Delegation.php:173 msgid "" "Toggle between different identities or community/group pages which share " "your account details or which you have been granted \"manage\" permissions" msgstr "Zwischen verschiedenen Identitäten oder Gemeinschafts-/Gruppenseiten wechseln, die deine Kontoinformationen teilen oder zu denen du „Verwalten“-Befugnisse bekommen hast." -#: src/Module/User/Delegation.php:188 +#: src/Module/User/Delegation.php:174 msgid "Select an identity to manage: " msgstr "Wähle eine Identität zum Verwalten aus: " -#: src/Module/User/Import.php:104 +#: src/Module/User/Import.php:90 msgid "User imports on closed servers can only be done by an administrator." msgstr "Auf geschlossenen Servern können ausschließlich die Administratoren Benutzerkonten importieren." -#: src/Module/User/Import.php:120 +#: src/Module/User/Import.php:106 msgid "Move account" msgstr "Account umziehen" -#: src/Module/User/Import.php:121 +#: src/Module/User/Import.php:107 msgid "You can import an account from another Friendica server." msgstr "Du kannst einen Account von einem anderen Friendica Server importieren." -#: src/Module/User/Import.php:122 +#: src/Module/User/Import.php:108 msgid "" "You need to export your account from the old server and upload it here. We " "will recreate your old account here with all your contacts. We will try also" " to inform your friends that you moved here." msgstr "Du musst deinen Account vom alten Server exportieren und hier hochladen. Wir stellen deinen alten Account mit all deinen Kontakten wieder her. Wir werden auch versuchen, deine Kontakte darüber zu informieren, dass du hierher umgezogen bist." -#: src/Module/User/Import.php:123 +#: src/Module/User/Import.php:109 msgid "" "This feature is experimental. We can't import contacts from the OStatus " "network (GNU Social/Statusnet) or from Diaspora" msgstr "Dieses Feature ist experimentell. Wir können keine Kontakte vom OStatus-Netzwerk (GNU Social/Statusnet) oder von Diaspora importieren" -#: src/Module/User/Import.php:124 +#: src/Module/User/Import.php:110 msgid "Account file" msgstr "Account-Datei" -#: src/Module/User/Import.php:124 +#: src/Module/User/Import.php:110 msgid "" "To export your account, go to \"Settings->Export your personal data\" and " "select \"Export account\"" msgstr "Um Deinen Account zu exportieren, rufe \"Einstellungen -> Persönliche Daten exportieren\" auf und wähle \"Account exportieren\"" -#: src/Module/User/Import.php:218 +#: src/Module/User/Import.php:204 msgid "Error decoding account file" msgstr "Fehler beim Verarbeiten der Account-Datei" -#: src/Module/User/Import.php:223 +#: src/Module/User/Import.php:209 msgid "Error! No version data in file! This is not a Friendica account file?" msgstr "Fehler! Keine Versionsdaten in der Datei! Ist das wirklich eine Friendica-Account-Datei?" -#: src/Module/User/Import.php:231 +#: src/Module/User/Import.php:217 #, php-format msgid "User '%s' already exists on this server!" msgstr "Nutzer '%s' existiert bereits auf diesem Server!" -#: src/Module/User/Import.php:268 +#: src/Module/User/Import.php:254 msgid "User creation error" msgstr "Fehler beim Anlegen des Nutzer-Accounts aufgetreten" -#: src/Module/User/Import.php:317 +#: src/Module/User/Import.php:303 #, php-format msgid "%d contact not imported" msgid_plural "%d contacts not imported" msgstr[0] "%d Kontakt nicht importiert" msgstr[1] "%d Kontakte nicht importiert" -#: src/Module/User/Import.php:366 +#: src/Module/User/Import.php:352 msgid "User profile creation error" msgstr "Fehler beim Anlegen des Nutzer-Profils" -#: src/Module/User/Import.php:417 +#: src/Module/User/Import.php:403 msgid "Done. You can now login with your username and password" msgstr "Erledigt. Du kannst dich jetzt mit deinem Nutzernamen und Passwort anmelden" -#: src/Module/Welcome.php:44 +#: src/Module/Welcome.php:30 msgid "Welcome to Friendica" msgstr "Willkommen bei Friendica" -#: src/Module/Welcome.php:45 +#: src/Module/Welcome.php:31 msgid "New Member Checklist" msgstr "Checkliste für neue Mitglieder" -#: src/Module/Welcome.php:46 +#: src/Module/Welcome.php:32 msgid "" "We would like to offer some tips and links to help make your experience " "enjoyable. Click any item to visit the relevant page. A link to this page " @@ -11725,33 +11695,33 @@ msgid "" "registration and then will quietly disappear." msgstr "Wir möchten dir einige Tipps und Links anbieten, die dir helfen könnten, den Einstieg angenehmer zu machen. Klicke auf ein Element, um die entsprechende Seite zu besuchen. Ein Link zu dieser Seite hier bleibt für dich an deiner Pinnwand für zwei Wochen nach dem Registrierungsdatum sichtbar und wird dann verschwinden." -#: src/Module/Welcome.php:48 +#: src/Module/Welcome.php:34 msgid "Getting Started" msgstr "Einstieg" -#: src/Module/Welcome.php:49 +#: src/Module/Welcome.php:35 msgid "Friendica Walk-Through" msgstr "Friendica Rundgang" -#: src/Module/Welcome.php:50 +#: src/Module/Welcome.php:36 msgid "" "On your Quick Start page - find a brief introduction to your " "profile and network tabs, make some new connections, and find some groups to" " join." msgstr "Auf der Quick Start-Seite findest du eine kurze Einleitung in die einzelnen Funktionen deines Profils und die Netzwerk-Reiter, wo du interessante Foren findest und neue Kontakte knüpfst." -#: src/Module/Welcome.php:53 +#: src/Module/Welcome.php:39 msgid "Go to Your Settings" msgstr "Gehe zu deinen Einstellungen" -#: src/Module/Welcome.php:54 +#: src/Module/Welcome.php:40 msgid "" "On your Settings page - change your initial password. Also make a " "note of your Identity Address. This looks just like an email address - and " "will be useful in making friends on the free social web." msgstr "Ändere bitte unter Einstellungen dein Passwort. Außerdem merke dir deine Identifikationsadresse. Diese sieht aus wie eine E-Mail-Adresse und wird benötigt, um Kontakte mit anderen im Friendica Netzwerk zu knüpfen.." -#: src/Module/Welcome.php:55 +#: src/Module/Welcome.php:41 msgid "" "Review the other settings, particularly the privacy settings. An unpublished" " directory listing is like having an unlisted phone number. In general, you " @@ -11759,77 +11729,77 @@ msgid "" "potential friends know exactly how to find you." msgstr "Überprüfe die restlichen Einstellungen, insbesondere die Einstellungen zur Privatsphäre. Wenn du dein Profil nicht veröffentlichst, ist das, als wenn du deine Telefonnummer nicht ins Telefonbuch einträgst. Im Allgemeinen solltest du es veröffentlichen - außer all deine Kontakte und potentiellen Kontakte wissen genau, wie sie dich finden können." -#: src/Module/Welcome.php:59 +#: src/Module/Welcome.php:45 msgid "" "Upload a profile photo if you have not done so already. Studies have shown " "that people with real photos of themselves are ten times more likely to make" " friends than people who do not." msgstr "Lade ein Profilbild hoch, falls du es noch nicht getan hast. Studien haben gezeigt, dass es zehnmal wahrscheinlicher ist, neue Kontakte zu finden, wenn du ein Bild von dir selbst verwendest, als wenn du dies nicht tust." -#: src/Module/Welcome.php:60 +#: src/Module/Welcome.php:46 msgid "Edit Your Profile" msgstr "Editiere dein Profil" -#: src/Module/Welcome.php:61 +#: src/Module/Welcome.php:47 msgid "" "Edit your default profile to your liking. Review the " "settings for hiding your list of friends and hiding the profile from unknown" " visitors." msgstr "Editiere dein Standard-Profil nach deinen Vorlieben. Überprüfe die Einstellungen zum Verbergen deiner Kontaktliste vor unbekannten Betrachtern des Profils." -#: src/Module/Welcome.php:62 +#: src/Module/Welcome.php:48 msgid "Profile Keywords" msgstr "Profil-Schlüsselbegriffe" -#: src/Module/Welcome.php:63 +#: src/Module/Welcome.php:49 msgid "" "Set some public keywords for your profile which describe your interests. We " "may be able to find other people with similar interests and suggest " "friendships." msgstr "Trage ein paar öffentliche Stichwörter in dein Profil ein, die deine Interessen beschreiben. Eventuell sind wir in der Lage Leute zu finden, die deine Interessen teilen und können dir dann Kontakte vorschlagen." -#: src/Module/Welcome.php:65 +#: src/Module/Welcome.php:51 msgid "Connecting" msgstr "Verbindungen knüpfen" -#: src/Module/Welcome.php:67 +#: src/Module/Welcome.php:53 msgid "Importing Emails" msgstr "Emails Importieren" -#: src/Module/Welcome.php:68 +#: src/Module/Welcome.php:54 msgid "" "Enter your email access information on your Connector Settings page if you " "wish to import and interact with friends or mailing lists from your email " "INBOX" msgstr "Gib deine E-Mail-Zugangsinformationen auf der Connector-Einstellungsseite ein, falls du E-Mails aus Deinem Posteingang importieren und mit Kontakten und Mailinglisten interagieren willst." -#: src/Module/Welcome.php:69 +#: src/Module/Welcome.php:55 msgid "Go to Your Contacts Page" msgstr "Gehe zu deiner Kontakt-Seite" -#: src/Module/Welcome.php:70 +#: src/Module/Welcome.php:56 msgid "" "Your Contacts page is your gateway to managing friendships and connecting " "with friends on other networks. Typically you enter their address or site " "URL in the Add New Contact dialog." msgstr "Die Kontakte-Seite ist die Einstiegsseite, von der aus du Kontakte verwalten und dich mit Personen in anderen Netzwerken verbinden kannst. Normalerweise gibst du dazu einfach ihre Adresse oder die URL der Seite im Kasten Neuen Kontakt hinzufügen ein." -#: src/Module/Welcome.php:71 +#: src/Module/Welcome.php:57 msgid "Go to Your Site's Directory" msgstr "Gehe zum Verzeichnis Deiner Friendica-Instanz" -#: src/Module/Welcome.php:72 +#: src/Module/Welcome.php:58 msgid "" "The Directory page lets you find other people in this network or other " "federated sites. Look for a Connect or Follow link on " "their profile page. Provide your own Identity Address if requested." msgstr "Über die Verzeichnisseite kannst du andere Personen auf diesem Server oder anderen, verknüpften Seiten finden. Halte nach einem Verbinden- oder Folgen-Link auf deren Profilseiten Ausschau und gib deine eigene Profiladresse an, falls du danach gefragt wirst." -#: src/Module/Welcome.php:73 +#: src/Module/Welcome.php:59 msgid "Finding New People" msgstr "Neue Leute kennenlernen" -#: src/Module/Welcome.php:74 +#: src/Module/Welcome.php:60 msgid "" "On the side panel of the Contacts page are several tools to find new " "friends. We can match people by interest, look up people by name or " @@ -11838,412 +11808,408 @@ msgid "" "hours." msgstr "Im seitlichen Bedienfeld der Kontakteseite gibt es diverse Werkzeuge, um neue Personen zu finden. Wir können Menschen mit den gleichen Interessen finden, anhand von Namen oder Interessen suchen oder aber aufgrund vorhandener Kontakte neue Leute vorschlagen.\nAuf einer brandneuen - soeben erstellten - Seite starten die Kontaktvorschläge innerhalb von 24 Stunden." -#: src/Module/Welcome.php:77 +#: src/Module/Welcome.php:63 msgid "Add Your Contacts To Circle" msgstr "Kontakte zum Circle hinzufügen" -#: src/Module/Welcome.php:78 +#: src/Module/Welcome.php:64 msgid "" "Once you have made some friends, organize them into private conversation " "circles from the sidebar of your Contacts page and then you can interact " "with each circle privately on your Network page." msgstr "Sobald du einige Freunde gefunden hast, kannst du diese in der Seitenleiste deiner Kontaktseite in private Circles einteilen und dann mit jedem Circle auf deiner Netzwerkseite privat interagieren." -#: src/Module/Welcome.php:80 +#: src/Module/Welcome.php:66 msgid "Why Aren't My Posts Public?" msgstr "Warum sind meine Beiträge nicht öffentlich?" -#: src/Module/Welcome.php:81 +#: src/Module/Welcome.php:67 msgid "" "Friendica respects your privacy. By default, your posts will only show up to" " people you've added as friends. For more information, see the help section " "from the link above." msgstr "Friendica respektiert Deine Privatsphäre. Mit der Grundeinstellung werden Deine Beiträge ausschließlich Deinen Kontakten angezeigt. Für weitere Informationen diesbezüglich lies dir bitte den entsprechenden Abschnitt in der Hilfe unter dem obigen Link durch." -#: src/Module/Welcome.php:83 +#: src/Module/Welcome.php:69 msgid "Getting Help" msgstr "Hilfe bekommen" -#: src/Module/Welcome.php:84 +#: src/Module/Welcome.php:70 msgid "Go to the Help Section" msgstr "Zum Hilfe Abschnitt gehen" -#: src/Module/Welcome.php:85 +#: src/Module/Welcome.php:71 msgid "" "Our help pages may be consulted for detail on other program" " features and resources." msgstr "Unsere Hilfe-Seiten können herangezogen werden, um weitere Einzelheiten zu anderen Programm-Features zu erhalten." -#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:161 +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:147 msgid "{0} wants to follow you" msgstr "{0} möchte dir folgen" -#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:163 +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:149 msgid "{0} has started following you" msgstr "{0} folgt dir jetzt" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:96 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:82 #, php-format msgid "%s liked %s's post" msgstr "%s mag %ss Beitrag" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:108 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:94 #, php-format msgid "%s disliked %s's post" msgstr "%s mag %ss Beitrag nicht" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:120 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:106 #, php-format msgid "%s is attending %s's event" msgstr "%s nimmt an %s's Event teil" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:132 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:118 #, php-format msgid "%s is not attending %s's event" msgstr "%s nimmt nicht an %s's Event teil" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:144 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:130 #, php-format msgid "%s may attending %s's event" msgstr "%s nimmt eventuell an %s's Veranstaltung teil" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:174 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:160 #, php-format msgid "%s is now friends with %s" msgstr "%s ist jetzt mit %s befreundet" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:341 -#: src/Navigation/Notifications/Factory/FormattedNotify.php:379 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:327 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:365 #, php-format msgid "%s commented on %s's post" msgstr "%s hat %ss Beitrag kommentiert" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:378 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:364 #, php-format msgid "%s created a new post" msgstr "%s hat einen neuen Beitrag erstellt" -#: src/Navigation/Notifications/Factory/Introduction.php:132 +#: src/Navigation/Notifications/Factory/Introduction.php:118 msgid "Friend Suggestion" msgstr "Kontaktvorschlag" -#: src/Navigation/Notifications/Factory/Introduction.php:158 +#: src/Navigation/Notifications/Factory/Introduction.php:144 msgid "Friend/Connect Request" msgstr "Kontakt-/Freundschaftsanfrage" -#: src/Navigation/Notifications/Factory/Introduction.php:158 -msgid "New Follower" -msgstr "Neuer Bewunderer" - -#: src/Navigation/Notifications/Factory/Notification.php:134 +#: src/Navigation/Notifications/Factory/Notification.php:120 #, php-format msgid "%1$s wants to follow you" msgstr "%1$s möchte dir folgen" -#: src/Navigation/Notifications/Factory/Notification.php:136 +#: src/Navigation/Notifications/Factory/Notification.php:122 #, php-format msgid "%1$s has started following you" msgstr "%1$s hat angefangen dir zu folgen" -#: src/Navigation/Notifications/Factory/Notification.php:208 +#: src/Navigation/Notifications/Factory/Notification.php:194 #, php-format msgid "%1$s liked your comment on %2$s" msgstr "%1$s mag deinen Kommentar %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:211 +#: src/Navigation/Notifications/Factory/Notification.php:197 #, php-format msgid "%1$s liked your post %2$s" msgstr "%1$s mag deinen Beitrag %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:218 +#: src/Navigation/Notifications/Factory/Notification.php:204 #, php-format msgid "%1$s disliked your comment on %2$s" msgstr "%1$s mag deinen Kommentar %2$s nicht" -#: src/Navigation/Notifications/Factory/Notification.php:221 +#: src/Navigation/Notifications/Factory/Notification.php:207 #, php-format msgid "%1$s disliked your post %2$s" msgstr "%1$s mag deinen Beitrag %2$s nicht" -#: src/Navigation/Notifications/Factory/Notification.php:228 +#: src/Navigation/Notifications/Factory/Notification.php:214 #, php-format msgid "%1$s shared your comment %2$s" msgstr "%1$s hat deinen Kommentar %2$s geteilt" -#: src/Navigation/Notifications/Factory/Notification.php:231 -#: src/Navigation/Notifications/Factory/Notification.php:316 +#: src/Navigation/Notifications/Factory/Notification.php:217 +#: src/Navigation/Notifications/Factory/Notification.php:302 #, php-format msgid "%1$s shared your post %2$s" msgstr "%1$s hat deinen Beitrag %2$s geteilt" -#: src/Navigation/Notifications/Factory/Notification.php:235 -#: src/Navigation/Notifications/Factory/Notification.php:305 +#: src/Navigation/Notifications/Factory/Notification.php:221 +#: src/Navigation/Notifications/Factory/Notification.php:291 #, php-format msgid "%1$s shared the post %2$s from %3$s" msgstr "%1$s hat den Beitrag %2$s von %3$s geteilt" -#: src/Navigation/Notifications/Factory/Notification.php:237 -#: src/Navigation/Notifications/Factory/Notification.php:307 +#: src/Navigation/Notifications/Factory/Notification.php:223 +#: src/Navigation/Notifications/Factory/Notification.php:293 #, php-format msgid "%1$s shared a post from %3$s" msgstr "%1$s hat einen Beitrag von %3$s geteilt" -#: src/Navigation/Notifications/Factory/Notification.php:239 -#: src/Navigation/Notifications/Factory/Notification.php:309 +#: src/Navigation/Notifications/Factory/Notification.php:225 +#: src/Navigation/Notifications/Factory/Notification.php:295 #, php-format msgid "%1$s shared the post %2$s" msgstr "%1$s hat den Beitrag %2$s geteilt" -#: src/Navigation/Notifications/Factory/Notification.php:241 -#: src/Navigation/Notifications/Factory/Notification.php:311 +#: src/Navigation/Notifications/Factory/Notification.php:227 +#: src/Navigation/Notifications/Factory/Notification.php:297 #, php-format msgid "%1$s shared a post" msgstr "%1$s hat einen Beitrag geteilt" -#: src/Navigation/Notifications/Factory/Notification.php:249 +#: src/Navigation/Notifications/Factory/Notification.php:235 #, php-format msgid "%1$s wants to attend your event %2$s" msgstr "%1$s möchte an deiner Veranstaltung %2$s teilnehmen" -#: src/Navigation/Notifications/Factory/Notification.php:256 +#: src/Navigation/Notifications/Factory/Notification.php:242 #, php-format msgid "%1$s does not want to attend your event %2$s" msgstr "%1$s möchte nicht an deiner Veranstaltung %2$s teilnehmen" -#: src/Navigation/Notifications/Factory/Notification.php:263 +#: src/Navigation/Notifications/Factory/Notification.php:249 #, php-format msgid "%1$s maybe wants to attend your event %2$s" msgstr "%1$s nimmt eventuell an deiner Veranstaltung %2$s teil" -#: src/Navigation/Notifications/Factory/Notification.php:270 +#: src/Navigation/Notifications/Factory/Notification.php:256 #, php-format msgid "%1$s tagged you on %2$s" msgstr "%1$s erwähnte dich auf %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:274 +#: src/Navigation/Notifications/Factory/Notification.php:260 #, php-format msgid "%1$s replied to you on %2$s" msgstr "%1$s hat dir auf %2$s geantwortet" -#: src/Navigation/Notifications/Factory/Notification.php:278 +#: src/Navigation/Notifications/Factory/Notification.php:264 #, php-format msgid "%1$s commented in your thread %2$s" msgstr "%1$s hat deine Unterhaltung %2$s kommentiert" -#: src/Navigation/Notifications/Factory/Notification.php:282 +#: src/Navigation/Notifications/Factory/Notification.php:268 #, php-format msgid "%1$s commented on your comment %2$s" msgstr "%1$s hat deinen Kommentar %2$s kommentiert" -#: src/Navigation/Notifications/Factory/Notification.php:289 +#: src/Navigation/Notifications/Factory/Notification.php:275 #, php-format msgid "%1$s commented in their thread %2$s" msgstr "%1$s hat in der eigenen Unterhaltung %2$s kommentiert" -#: src/Navigation/Notifications/Factory/Notification.php:291 +#: src/Navigation/Notifications/Factory/Notification.php:277 #, php-format msgid "%1$s commented in their thread" msgstr "%1$s kommentierte in der eigenen Unterhaltung" -#: src/Navigation/Notifications/Factory/Notification.php:293 +#: src/Navigation/Notifications/Factory/Notification.php:279 #, php-format msgid "%1$s commented in the thread %2$s from %3$s" msgstr "%1$s hat in der Unterhaltung %2$s von %3$s kommentiert" -#: src/Navigation/Notifications/Factory/Notification.php:295 +#: src/Navigation/Notifications/Factory/Notification.php:281 #, php-format msgid "%1$s commented in the thread from %3$s" msgstr "%1$s hat in der Unterhaltung von %3$s kommentiert" -#: src/Navigation/Notifications/Factory/Notification.php:300 +#: src/Navigation/Notifications/Factory/Notification.php:286 #, php-format msgid "%1$s commented on your thread %2$s" msgstr "%1$s hat in deiner Unterhaltung %2$s kommentiert" -#: src/Navigation/Notifications/Repository/Notify.php:225 -#: src/Navigation/Notifications/Repository/Notify.php:754 +#: src/Navigation/Notifications/Repository/Notify.php:211 +#: src/Navigation/Notifications/Repository/Notify.php:740 msgid "[Friendica:Notify]" msgstr "[Friendica Meldung]" -#: src/Navigation/Notifications/Repository/Notify.php:293 +#: src/Navigation/Notifications/Repository/Notify.php:279 #, php-format msgid "%s New mail received at %s" msgstr "%sNeue Nachricht auf %s empfangen" -#: src/Navigation/Notifications/Repository/Notify.php:295 +#: src/Navigation/Notifications/Repository/Notify.php:281 #, php-format msgid "%1$s sent you a new private message at %2$s." msgstr "%1$s hat dir eine neue, private Nachricht auf %2$s geschickt." -#: src/Navigation/Notifications/Repository/Notify.php:296 +#: src/Navigation/Notifications/Repository/Notify.php:282 msgid "a private message" msgstr "eine private Nachricht" -#: src/Navigation/Notifications/Repository/Notify.php:296 +#: src/Navigation/Notifications/Repository/Notify.php:282 #, php-format msgid "%1$s sent you %2$s." msgstr "%1$s schickte dir %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:298 +#: src/Navigation/Notifications/Repository/Notify.php:284 #, php-format msgid "Please visit %s to view and/or reply to your private messages." msgstr "Bitte besuche %s, um Deine privaten Nachrichten anzusehen und/oder zu beantworten." -#: src/Navigation/Notifications/Repository/Notify.php:328 +#: src/Navigation/Notifications/Repository/Notify.php:314 #, php-format msgid "%1$s commented on %2$s's %3$s %4$s" msgstr "%1$s kommentierte %2$s's %3$s%4$s" -#: src/Navigation/Notifications/Repository/Notify.php:333 +#: src/Navigation/Notifications/Repository/Notify.php:319 #, php-format msgid "%1$s commented on your %2$s %3$s" msgstr "%1$s kommentierte auf (%2$s) %3$s" -#: src/Navigation/Notifications/Repository/Notify.php:337 +#: src/Navigation/Notifications/Repository/Notify.php:323 #, php-format msgid "%1$s commented on their %2$s %3$s" msgstr "%1$s hat den eigenen %2$s %3$s kommentiert" -#: src/Navigation/Notifications/Repository/Notify.php:341 -#: src/Navigation/Notifications/Repository/Notify.php:788 +#: src/Navigation/Notifications/Repository/Notify.php:327 +#: src/Navigation/Notifications/Repository/Notify.php:774 #, php-format msgid "%1$s Comment to conversation #%2$d by %3$s" msgstr "%1$sKommentar von %3$s auf Unterhaltung %2$d" -#: src/Navigation/Notifications/Repository/Notify.php:343 +#: src/Navigation/Notifications/Repository/Notify.php:329 #, php-format msgid "%s commented on an item/conversation you have been following." msgstr "%s hat einen Beitrag kommentiert, dem du folgst." -#: src/Navigation/Notifications/Repository/Notify.php:347 -#: src/Navigation/Notifications/Repository/Notify.php:362 -#: src/Navigation/Notifications/Repository/Notify.php:814 +#: src/Navigation/Notifications/Repository/Notify.php:333 +#: src/Navigation/Notifications/Repository/Notify.php:348 +#: src/Navigation/Notifications/Repository/Notify.php:800 #, php-format msgid "Please visit %s to view and/or reply to the conversation." msgstr "Bitte besuche %s, um die Konversation anzusehen und/oder zu kommentieren." -#: src/Navigation/Notifications/Repository/Notify.php:354 +#: src/Navigation/Notifications/Repository/Notify.php:340 #, php-format msgid "%s %s posted to your profile wall" msgstr "%s%s hat auf deine Pinnwand gepostet" -#: src/Navigation/Notifications/Repository/Notify.php:356 +#: src/Navigation/Notifications/Repository/Notify.php:342 #, php-format msgid "%1$s posted to your profile wall at %2$s" msgstr "%1$s schrieb um %2$s auf Deine Pinnwand" -#: src/Navigation/Notifications/Repository/Notify.php:357 +#: src/Navigation/Notifications/Repository/Notify.php:343 #, php-format msgid "%1$s posted to [url=%2$s]your wall[/url]" msgstr "%1$s hat etwas auf [url=%2$s]Deiner Pinnwand[/url] gepostet" -#: src/Navigation/Notifications/Repository/Notify.php:370 +#: src/Navigation/Notifications/Repository/Notify.php:356 #, php-format msgid "%s Introduction received" msgstr "%sVorstellung erhalten" -#: src/Navigation/Notifications/Repository/Notify.php:372 +#: src/Navigation/Notifications/Repository/Notify.php:358 #, php-format msgid "You've received an introduction from '%1$s' at %2$s" msgstr "Du hast eine Kontaktanfrage von '%1$s' auf %2$s erhalten" -#: src/Navigation/Notifications/Repository/Notify.php:373 +#: src/Navigation/Notifications/Repository/Notify.php:359 #, php-format msgid "You've received [url=%1$s]an introduction[/url] from %2$s." msgstr "Du hast eine [url=%1$s]Kontaktanfrage[/url] von %2$s erhalten." -#: src/Navigation/Notifications/Repository/Notify.php:378 -#: src/Navigation/Notifications/Repository/Notify.php:424 +#: src/Navigation/Notifications/Repository/Notify.php:364 +#: src/Navigation/Notifications/Repository/Notify.php:410 #, php-format msgid "You may visit their profile at %s" msgstr "Hier kannst du das Profil betrachten: %s" -#: src/Navigation/Notifications/Repository/Notify.php:380 +#: src/Navigation/Notifications/Repository/Notify.php:366 #, php-format msgid "Please visit %s to approve or reject the introduction." msgstr "Bitte besuche %s, um die Kontaktanfrage anzunehmen oder abzulehnen." -#: src/Navigation/Notifications/Repository/Notify.php:387 +#: src/Navigation/Notifications/Repository/Notify.php:373 #, php-format msgid "%s A new person is sharing with you" msgstr "%sEine neue Person teilt nun mit dir" -#: src/Navigation/Notifications/Repository/Notify.php:389 -#: src/Navigation/Notifications/Repository/Notify.php:390 +#: src/Navigation/Notifications/Repository/Notify.php:375 +#: src/Navigation/Notifications/Repository/Notify.php:376 #, php-format msgid "%1$s is sharing with you at %2$s" msgstr "%1$s teilt mit dir auf %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:397 +#: src/Navigation/Notifications/Repository/Notify.php:383 #, php-format msgid "%s You have a new follower" msgstr "%sDu hast einen neuen Kontakt" -#: src/Navigation/Notifications/Repository/Notify.php:399 -#: src/Navigation/Notifications/Repository/Notify.php:400 +#: src/Navigation/Notifications/Repository/Notify.php:385 +#: src/Navigation/Notifications/Repository/Notify.php:386 #, php-format msgid "You have a new follower at %2$s : %1$s" msgstr "Du hast einen neuen Kontakt auf %2$s: %1$s" -#: src/Navigation/Notifications/Repository/Notify.php:413 +#: src/Navigation/Notifications/Repository/Notify.php:399 #, php-format msgid "%s Friend suggestion received" msgstr "%sKontaktvorschlag erhalten" -#: src/Navigation/Notifications/Repository/Notify.php:415 +#: src/Navigation/Notifications/Repository/Notify.php:401 #, php-format msgid "You've received a friend suggestion from '%1$s' at %2$s" msgstr "Du hast einen Kontakt-Vorschlag von '%1$s' auf %2$s erhalten" -#: src/Navigation/Notifications/Repository/Notify.php:416 +#: src/Navigation/Notifications/Repository/Notify.php:402 #, php-format msgid "" "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." msgstr "Du hast einen [url=%1$s]Kontakt-Vorschlag[/url] %2$s von %3$s erhalten." -#: src/Navigation/Notifications/Repository/Notify.php:422 +#: src/Navigation/Notifications/Repository/Notify.php:408 msgid "Name:" msgstr "Name:" -#: src/Navigation/Notifications/Repository/Notify.php:423 +#: src/Navigation/Notifications/Repository/Notify.php:409 msgid "Photo:" msgstr "Foto:" -#: src/Navigation/Notifications/Repository/Notify.php:426 +#: src/Navigation/Notifications/Repository/Notify.php:412 #, php-format msgid "Please visit %s to approve or reject the suggestion." msgstr "Bitte besuche %s, um den Vorschlag zu akzeptieren oder abzulehnen." -#: src/Navigation/Notifications/Repository/Notify.php:434 -#: src/Navigation/Notifications/Repository/Notify.php:449 +#: src/Navigation/Notifications/Repository/Notify.php:420 +#: src/Navigation/Notifications/Repository/Notify.php:435 #, php-format msgid "%s Connection accepted" msgstr "%sKontaktanfrage bestätigt" -#: src/Navigation/Notifications/Repository/Notify.php:436 -#: src/Navigation/Notifications/Repository/Notify.php:451 +#: src/Navigation/Notifications/Repository/Notify.php:422 +#: src/Navigation/Notifications/Repository/Notify.php:437 #, php-format msgid "'%1$s' has accepted your connection request at %2$s" msgstr "'%1$s' hat Deine Kontaktanfrage auf %2$s bestätigt" -#: src/Navigation/Notifications/Repository/Notify.php:437 -#: src/Navigation/Notifications/Repository/Notify.php:452 +#: src/Navigation/Notifications/Repository/Notify.php:423 +#: src/Navigation/Notifications/Repository/Notify.php:438 #, php-format msgid "%2$s has accepted your [url=%1$s]connection request[/url]." msgstr "%2$s hat Deine [url=%1$s]Kontaktanfrage[/url] akzeptiert." -#: src/Navigation/Notifications/Repository/Notify.php:442 +#: src/Navigation/Notifications/Repository/Notify.php:428 msgid "" "You are now mutual friends and may exchange status updates, photos, and " "email without restriction." msgstr "Ihr seid nun beidseitige Kontakte und könnt Statusmitteilungen, Bilder und E-Mails ohne Einschränkungen austauschen." -#: src/Navigation/Notifications/Repository/Notify.php:444 +#: src/Navigation/Notifications/Repository/Notify.php:430 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "Bitte besuche %s, wenn du Änderungen an eurer Beziehung vornehmen willst." -#: src/Navigation/Notifications/Repository/Notify.php:457 +#: src/Navigation/Notifications/Repository/Notify.php:443 #, php-format msgid "" "'%1$s' has chosen to accept you a fan, which restricts some forms of " @@ -12252,34 +12218,34 @@ msgid "" "automatically." msgstr "'%1$s' hat sich entschieden dich als Fan zu akzeptieren, dies schränkt einige Kommunikationswege - wie private Nachrichten und einige Interaktionsmöglichkeiten auf der Profilseite - ein. Wenn dies eine Berühmtheiten- oder Gemeinschaftsseite ist, werden diese Einstellungen automatisch vorgenommen." -#: src/Navigation/Notifications/Repository/Notify.php:459 +#: src/Navigation/Notifications/Repository/Notify.php:445 #, php-format msgid "" "'%1$s' may choose to extend this into a two-way or more permissive " "relationship in the future." msgstr "'%1$s' kann den Kontaktstatus zu einem späteren Zeitpunkt erweitern und diese Einschränkungen aufheben. " -#: src/Navigation/Notifications/Repository/Notify.php:461 +#: src/Navigation/Notifications/Repository/Notify.php:447 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "Bitte besuche %s, wenn du Änderungen an eurer Beziehung vornehmen willst." -#: src/Navigation/Notifications/Repository/Notify.php:471 +#: src/Navigation/Notifications/Repository/Notify.php:457 msgid "registration request" msgstr "Registrierungsanfrage" -#: src/Navigation/Notifications/Repository/Notify.php:473 +#: src/Navigation/Notifications/Repository/Notify.php:459 #, php-format msgid "You've received a registration request from '%1$s' at %2$s" msgstr "Du hast eine Registrierungsanfrage von %2$s auf '%1$s' erhalten" -#: src/Navigation/Notifications/Repository/Notify.php:474 +#: src/Navigation/Notifications/Repository/Notify.php:460 #, php-format msgid "You've received a [url=%1$s]registration request[/url] from %2$s." msgstr "Du hast eine [url=%1$s]Registrierungsanfrage[/url] von %2$s erhalten." -#: src/Navigation/Notifications/Repository/Notify.php:479 -#: src/Navigation/Notifications/Repository/Notify.php:500 +#: src/Navigation/Notifications/Repository/Notify.php:465 +#: src/Navigation/Notifications/Repository/Notify.php:486 #, php-format msgid "" "Display Name:\t%s\n" @@ -12287,773 +12253,755 @@ msgid "" "Login Name:\t%s (%s)" msgstr "Anzeigename: %s\nURL der Seite: %s\nLogin Name: %s(%s)" -#: src/Navigation/Notifications/Repository/Notify.php:485 +#: src/Navigation/Notifications/Repository/Notify.php:471 #, php-format msgid "Please visit %s to approve or reject the request." msgstr "Bitte besuche %s, um die Anfrage zu bearbeiten." -#: src/Navigation/Notifications/Repository/Notify.php:492 +#: src/Navigation/Notifications/Repository/Notify.php:478 msgid "new registration" msgstr "Neue Registrierung" -#: src/Navigation/Notifications/Repository/Notify.php:494 +#: src/Navigation/Notifications/Repository/Notify.php:480 #, php-format msgid "You've received a new registration from '%1$s' at %2$s" msgstr "Du hast eine neue Registrierung von %1$s auf %2$s erhalten." -#: src/Navigation/Notifications/Repository/Notify.php:495 +#: src/Navigation/Notifications/Repository/Notify.php:481 #, php-format msgid "You've received a [url=%1$s]new registration[/url] from %2$s." msgstr "Du hast eine [url=%1$s]neue Registrierung[/url] von %2$s erhalten." -#: src/Navigation/Notifications/Repository/Notify.php:506 +#: src/Navigation/Notifications/Repository/Notify.php:492 #, php-format msgid "Please visit %s to have a look at the new registration." msgstr "Bitte rufe %s auf, um dir die Registrierung zu sichten." -#: src/Navigation/Notifications/Repository/Notify.php:782 +#: src/Navigation/Notifications/Repository/Notify.php:768 #, php-format msgid "%s %s tagged you" msgstr "%s %s hat dich erwähnt" -#: src/Navigation/Notifications/Repository/Notify.php:785 +#: src/Navigation/Notifications/Repository/Notify.php:771 #, php-format msgid "%s %s shared a new post" msgstr "%s%shat einen Beitrag geteilt" -#: src/Navigation/Notifications/Repository/Notify.php:793 +#: src/Navigation/Notifications/Repository/Notify.php:779 #, php-format msgid "%1$s %2$s liked your post #%3$d" msgstr "%1$s%2$s mag deinen Beitrag #%3$d" -#: src/Navigation/Notifications/Repository/Notify.php:796 +#: src/Navigation/Notifications/Repository/Notify.php:782 #, php-format msgid "%1$s %2$s liked your comment on #%3$d" msgstr "%1$s%2$s mag deinen Kommentar zu #%3$d" -#: src/Object/EMail/ItemCCEMail.php:42 +#: src/Object/EMail/ItemCCEMail.php:28 #, php-format msgid "" "This message was sent to you by %s, a member of the Friendica social " "network." msgstr "Diese Nachricht wurde dir von %s geschickt, einem Mitglied des Sozialen Netzwerks Friendica." -#: src/Object/EMail/ItemCCEMail.php:44 +#: src/Object/EMail/ItemCCEMail.php:30 #, php-format msgid "You may visit them online at %s" msgstr "Du kannst sie online unter %s besuchen" -#: src/Object/EMail/ItemCCEMail.php:45 +#: src/Object/EMail/ItemCCEMail.php:31 msgid "" "Please contact the sender by replying to this post if you do not wish to " "receive these messages." msgstr "Falls du diese Beiträge nicht erhalten möchtest, kontaktiere bitte den Autor, indem du auf diese Nachricht antwortest." -#: src/Object/EMail/ItemCCEMail.php:49 +#: src/Object/EMail/ItemCCEMail.php:35 #, php-format msgid "%s posted an update." msgstr "%s hat ein Update veröffentlicht." -#: src/Object/Post.php:138 +#: src/Object/Post.php:124 msgid "Private Message" msgstr "Private Nachricht" -#: src/Object/Post.php:142 +#: src/Object/Post.php:128 msgid "Public Message" msgstr "Öffentlicher Beitrag" -#: src/Object/Post.php:146 +#: src/Object/Post.php:132 msgid "Unlisted Message" msgstr "Nicht gelisteter Beitrag" -#: src/Object/Post.php:182 +#: src/Object/Post.php:168 msgid "This entry was edited" msgstr "Dieser Beitrag wurde bearbeitet." -#: src/Object/Post.php:210 +#: src/Object/Post.php:196 msgid "Connector Message" msgstr "Connector Nachricht" -#: src/Object/Post.php:239 src/Object/Post.php:241 +#: src/Object/Post.php:225 src/Object/Post.php:227 msgid "Edit" msgstr "Bearbeiten" -#: src/Object/Post.php:275 +#: src/Object/Post.php:261 msgid "Delete globally" msgstr "Global löschen" -#: src/Object/Post.php:275 +#: src/Object/Post.php:261 msgid "Remove locally" msgstr "Lokal entfernen" -#: src/Object/Post.php:282 +#: src/Object/Post.php:268 #, php-format msgid "Block %s" msgstr "Blockiere %s" -#: src/Object/Post.php:287 +#: src/Object/Post.php:273 #, php-format msgid "Ignore %s" msgstr "Ignoriere %s" -#: src/Object/Post.php:292 +#: src/Object/Post.php:278 #, php-format msgid "Collapse %s" msgstr "Verberge %s" -#: src/Object/Post.php:296 +#: src/Object/Post.php:282 msgid "Report post" msgstr "Beitrag melden" -#: src/Object/Post.php:307 +#: src/Object/Post.php:293 msgid "Save to folder" msgstr "In Ordner speichern" -#: src/Object/Post.php:347 +#: src/Object/Post.php:333 msgid "I will attend" msgstr "Ich werde teilnehmen" -#: src/Object/Post.php:347 +#: src/Object/Post.php:333 msgid "I will not attend" msgstr "Ich werde nicht teilnehmen" -#: src/Object/Post.php:347 +#: src/Object/Post.php:333 msgid "I might attend" msgstr "Ich werde eventuell teilnehmen" -#: src/Object/Post.php:394 +#: src/Object/Post.php:380 msgid "Ignore thread" msgstr "Thread ignorieren" -#: src/Object/Post.php:395 +#: src/Object/Post.php:381 msgid "Unignore thread" msgstr "Thread nicht mehr ignorieren" -#: src/Object/Post.php:396 +#: src/Object/Post.php:382 msgid "Toggle ignore status" msgstr "Ignoriert-Status ein-/ausschalten" -#: src/Object/Post.php:406 +#: src/Object/Post.php:392 msgid "Add star" msgstr "Markieren" -#: src/Object/Post.php:407 +#: src/Object/Post.php:393 msgid "Remove star" msgstr "Markierung entfernen" -#: src/Object/Post.php:408 +#: src/Object/Post.php:394 msgid "Toggle star status" msgstr "Markierung umschalten" -#: src/Object/Post.php:419 +#: src/Object/Post.php:405 msgid "Pin" msgstr "Anheften" -#: src/Object/Post.php:420 +#: src/Object/Post.php:406 msgid "Unpin" msgstr "Losmachen" -#: src/Object/Post.php:421 +#: src/Object/Post.php:407 msgid "Toggle pin status" msgstr "Angeheftet Status ändern" -#: src/Object/Post.php:424 +#: src/Object/Post.php:410 msgid "Pinned" msgstr "Angeheftet" -#: src/Object/Post.php:429 +#: src/Object/Post.php:415 msgid "Add tag" msgstr "Tag hinzufügen" -#: src/Object/Post.php:444 +#: src/Object/Post.php:430 msgid "Quote share this" msgstr "Teile und zitiere dies" -#: src/Object/Post.php:444 +#: src/Object/Post.php:430 msgid "Quote Share" msgstr "Zitat teilen" -#: src/Object/Post.php:447 +#: src/Object/Post.php:433 msgid "Reshare this" msgstr "Teile dies" -#: src/Object/Post.php:447 +#: src/Object/Post.php:433 msgid "Reshare" msgstr "Teilen" -#: src/Object/Post.php:448 +#: src/Object/Post.php:434 msgid "Cancel your Reshare" msgstr "Teilen aufheben" -#: src/Object/Post.php:448 +#: src/Object/Post.php:434 msgid "Unshare" msgstr "Nicht mehr teilen" -#: src/Object/Post.php:492 +#: src/Object/Post.php:478 #, php-format msgid "%s (Received %s)" msgstr "%s (Empfangen %s)" -#: src/Object/Post.php:498 +#: src/Object/Post.php:484 msgid "Comment this item on your system" msgstr "Kommentiere diesen Beitrag von deinem System aus" -#: src/Object/Post.php:498 +#: src/Object/Post.php:484 msgid "Remote comment" msgstr "Entfernter Kommentar" -#: src/Object/Post.php:520 +#: src/Object/Post.php:506 msgid "Share via ..." msgstr "Teile mit..." -#: src/Object/Post.php:520 +#: src/Object/Post.php:506 msgid "Share via external services" msgstr "Teile mit einem externen Dienst" -#: src/Object/Post.php:527 +#: src/Object/Post.php:513 msgid "Unknown parent" msgstr "Unbekannter Ursprungsbeitrag" -#: src/Object/Post.php:531 +#: src/Object/Post.php:517 #, php-format msgid "in reply to %s" msgstr "Als Antwort auf %s" -#: src/Object/Post.php:533 +#: src/Object/Post.php:519 msgid "Parent is probably private or not federated." msgstr "Der Urspungsbeitrag ist wahrscheinlich privat oder nicht föderiert." -#: src/Object/Post.php:557 +#: src/Object/Post.php:543 msgid "to" msgstr "zu" -#: src/Object/Post.php:558 +#: src/Object/Post.php:544 msgid "via" msgstr "via" -#: src/Object/Post.php:559 +#: src/Object/Post.php:545 msgid "Wall-to-Wall" msgstr "Wall-to-Wall" -#: src/Object/Post.php:560 +#: src/Object/Post.php:546 msgid "via Wall-To-Wall:" msgstr "via Wall-To-Wall:" -#: src/Object/Post.php:613 +#: src/Object/Post.php:599 #, php-format msgid "Reply to %s" msgstr "Antworte %s" -#: src/Object/Post.php:616 +#: src/Object/Post.php:602 msgid "More" msgstr "Mehr" -#: src/Object/Post.php:635 +#: src/Object/Post.php:621 msgid "Notifier task is pending" msgstr "Die Benachrichtigungsaufgabe ist ausstehend" -#: src/Object/Post.php:636 +#: src/Object/Post.php:622 msgid "Delivery to remote servers is pending" msgstr "Die Auslieferung an Remote-Server steht noch aus" -#: src/Object/Post.php:637 +#: src/Object/Post.php:623 msgid "Delivery to remote servers is underway" msgstr "Die Auslieferung an Remote-Server ist unterwegs" -#: src/Object/Post.php:638 +#: src/Object/Post.php:624 msgid "Delivery to remote servers is mostly done" msgstr "Die Zustellung an Remote-Server ist fast erledigt" -#: src/Object/Post.php:639 +#: src/Object/Post.php:625 msgid "Delivery to remote servers is done" msgstr "Die Zustellung an die Remote-Server ist erledigt" -#: src/Object/Post.php:661 +#: src/Object/Post.php:647 #, php-format msgid "%d comment" msgid_plural "%d comments" msgstr[0] "%d Kommentar" msgstr[1] "%d Kommentare" -#: src/Object/Post.php:662 +#: src/Object/Post.php:648 msgid "Show more" msgstr "Zeige mehr" -#: src/Object/Post.php:663 +#: src/Object/Post.php:649 msgid "Show fewer" msgstr "Zeige weniger" -#: src/Object/Post.php:700 +#: src/Object/Post.php:686 #, php-format msgid "Reshared by: %s" msgstr "Geteilt von: %s" -#: src/Object/Post.php:705 +#: src/Object/Post.php:691 #, php-format msgid "Viewed by: %s" msgstr "Gesehen von: %s" -#: src/Object/Post.php:710 +#: src/Object/Post.php:696 #, php-format msgid "Read by: %s" msgstr "Gelesen von: %s" -#: src/Object/Post.php:715 +#: src/Object/Post.php:701 #, php-format msgid "Liked by: %s" msgstr "Diese Menschen mögen das: %s" -#: src/Object/Post.php:720 +#: src/Object/Post.php:706 #, php-format msgid "Disliked by: %s" msgstr "Unbeliebt bei: %s" -#: src/Object/Post.php:725 +#: src/Object/Post.php:711 #, php-format msgid "Attended by: %s" msgstr "Besucht von: %s" -#: src/Object/Post.php:730 +#: src/Object/Post.php:716 #, php-format msgid "Maybe attended by: %s" msgstr "Vielleicht besucht von: %s" -#: src/Object/Post.php:735 +#: src/Object/Post.php:721 #, php-format msgid "Not attended by: %s" msgstr "Nicht besucht von: %s" -#: src/Object/Post.php:740 +#: src/Object/Post.php:726 #, php-format msgid "Commented by: %s" msgstr "Kommentiert von: %s" -#: src/Object/Post.php:745 +#: src/Object/Post.php:731 #, php-format msgid "Reacted with %s by: %s" msgstr "Reagierte mit %s von: %s" -#: src/Object/Post.php:768 +#: src/Object/Post.php:754 #, php-format msgid "Quote shared by: %s" msgstr "Zitat geteilt von: %s" -#: src/Protocol/ActivityPub/Receiver.php:571 +#: src/Protocol/ActivityPub/Receiver.php:557 msgid "Chat" msgstr "Chat" -#: src/Protocol/Delivery.php:544 +#: src/Protocol/Delivery.php:530 msgid "(no subject)" msgstr "(kein Betreff)" -#: src/Protocol/OStatus.php:1392 -#, php-format -msgid "%s is now following %s." -msgstr "%s folgt nun %s" - -#: src/Protocol/OStatus.php:1393 -msgid "following" -msgstr "folgen" - -#: src/Protocol/OStatus.php:1396 -#, php-format -msgid "%s stopped following %s." -msgstr "%s hat aufgehört %s, zu folgen" - -#: src/Protocol/OStatus.php:1397 -msgid "stopped following" -msgstr "wird nicht mehr gefolgt" - -#: src/Render/FriendicaSmartyEngine.php:56 +#: src/Render/FriendicaSmartyEngine.php:42 #, php-format msgid "The folder %s must be writable by webserver." msgstr "Das Verzeichnis %s muss für den Web-Server beschreibbar sein." -#: src/Security/Authentication.php:214 +#: src/Security/Authentication.php:200 msgid "Login failed." msgstr "Anmeldung fehlgeschlagen." -#: src/Security/Authentication.php:259 +#: src/Security/Authentication.php:245 msgid "Login failed. Please check your credentials." msgstr "Anmeldung fehlgeschlagen. Bitte überprüfe deine Angaben." -#: src/Security/Authentication.php:373 +#: src/Security/Authentication.php:359 #, php-format msgid "Welcome %s" msgstr "Willkommen %s" -#: src/Security/Authentication.php:374 +#: src/Security/Authentication.php:360 msgid "Please upload a profile photo." msgstr "Bitte lade ein Profilbild hoch." -#: src/Security/OpenWebAuth.php:163 +#: src/Security/OpenWebAuth.php:149 #, php-format msgid "OpenWebAuth: %1$s welcomes %2$s" msgstr "OpenWebAuth: %1$s heißt %2$s herzlich willkommen" -#: src/Util/EMailer/MailBuilder.php:260 +#: src/Util/EMailer/MailBuilder.php:246 msgid "Friendica Notification" msgstr "Friendica-Benachrichtigung" -#: src/Util/EMailer/NotifyMailBuilder.php:78 -#: src/Util/EMailer/SystemMailBuilder.php:54 +#: src/Util/EMailer/NotifyMailBuilder.php:64 +#: src/Util/EMailer/SystemMailBuilder.php:40 #, php-format msgid "%1$s, %2$s Administrator" msgstr "%1$s, %2$s Administrator" -#: src/Util/EMailer/NotifyMailBuilder.php:80 -#: src/Util/EMailer/SystemMailBuilder.php:56 +#: src/Util/EMailer/NotifyMailBuilder.php:66 +#: src/Util/EMailer/SystemMailBuilder.php:42 #, php-format msgid "%s Administrator" msgstr "der Administrator von %s" -#: src/Util/EMailer/NotifyMailBuilder.php:193 -#: src/Util/EMailer/NotifyMailBuilder.php:217 -#: src/Util/EMailer/SystemMailBuilder.php:101 -#: src/Util/EMailer/SystemMailBuilder.php:118 +#: src/Util/EMailer/NotifyMailBuilder.php:179 +#: src/Util/EMailer/NotifyMailBuilder.php:203 +#: src/Util/EMailer/SystemMailBuilder.php:87 +#: src/Util/EMailer/SystemMailBuilder.php:104 msgid "thanks" msgstr "danke" -#: src/Util/Temporal.php:172 +#: src/Util/Temporal.php:158 msgid "YYYY-MM-DD or MM-DD" msgstr "YYYY-MM-DD oder MM-DD" -#: src/Util/Temporal.php:280 +#: src/Util/Temporal.php:266 #, php-format msgid "Time zone: %s Change in Settings" msgstr "Zeitzone: %s Änderbar in den Einstellungen" -#: src/Util/Temporal.php:320 src/Util/Temporal.php:329 +#: src/Util/Temporal.php:306 src/Util/Temporal.php:315 msgid "never" msgstr "nie" -#: src/Util/Temporal.php:343 +#: src/Util/Temporal.php:329 msgid "less than a second ago" msgstr "vor weniger als einer Sekunde" -#: src/Util/Temporal.php:352 +#: src/Util/Temporal.php:338 msgid "year" msgstr "Jahr" -#: src/Util/Temporal.php:352 +#: src/Util/Temporal.php:338 msgid "years" msgstr "Jahre" -#: src/Util/Temporal.php:353 +#: src/Util/Temporal.php:339 msgid "months" msgstr "Monate" -#: src/Util/Temporal.php:354 +#: src/Util/Temporal.php:340 msgid "weeks" msgstr "Wochen" -#: src/Util/Temporal.php:355 +#: src/Util/Temporal.php:341 msgid "days" msgstr "Tage" -#: src/Util/Temporal.php:356 +#: src/Util/Temporal.php:342 msgid "hour" msgstr "Stunde" -#: src/Util/Temporal.php:356 +#: src/Util/Temporal.php:342 msgid "hours" msgstr "Stunden" -#: src/Util/Temporal.php:357 +#: src/Util/Temporal.php:343 msgid "minute" msgstr "Minute" -#: src/Util/Temporal.php:357 +#: src/Util/Temporal.php:343 msgid "minutes" msgstr "Minuten" -#: src/Util/Temporal.php:358 +#: src/Util/Temporal.php:344 msgid "second" msgstr "Sekunde" -#: src/Util/Temporal.php:358 +#: src/Util/Temporal.php:344 msgid "seconds" msgstr "Sekunden" -#: src/Util/Temporal.php:367 +#: src/Util/Temporal.php:353 #, php-format msgid "in %1$d %2$s" msgstr "in %1$d %2$s" -#: src/Util/Temporal.php:370 +#: src/Util/Temporal.php:356 #, php-format msgid "%1$d %2$s ago" msgstr "%1$d %2$s her" -#: src/Worker/PushSubscription.php:110 +#: src/Worker/PushSubscription.php:96 msgid "Notification from Friendica" msgstr "Benachrichtigung von Friendica" -#: src/Worker/PushSubscription.php:111 +#: src/Worker/PushSubscription.php:97 msgid "Empty Post" msgstr "Leerer Beitrag" -#: view/theme/duepuntozero/config.php:68 +#: view/theme/duepuntozero/config.php:56 msgid "default" msgstr "Standard" -#: view/theme/duepuntozero/config.php:69 +#: view/theme/duepuntozero/config.php:57 msgid "greenzero" msgstr "greenzero" -#: view/theme/duepuntozero/config.php:70 +#: view/theme/duepuntozero/config.php:58 msgid "purplezero" msgstr "purplezero" -#: view/theme/duepuntozero/config.php:71 +#: view/theme/duepuntozero/config.php:59 msgid "easterbunny" msgstr "easterbunny" -#: view/theme/duepuntozero/config.php:72 +#: view/theme/duepuntozero/config.php:60 msgid "darkzero" msgstr "darkzero" -#: view/theme/duepuntozero/config.php:73 +#: view/theme/duepuntozero/config.php:61 msgid "comix" msgstr "comix" -#: view/theme/duepuntozero/config.php:74 +#: view/theme/duepuntozero/config.php:62 msgid "slackr" msgstr "slackr" -#: view/theme/duepuntozero/config.php:87 +#: view/theme/duepuntozero/config.php:75 msgid "Variations" msgstr "Variationen" -#: view/theme/frio/config.php:146 +#: view/theme/frio/config.php:134 msgid "Note" msgstr "Hinweis" -#: view/theme/frio/config.php:146 +#: view/theme/frio/config.php:134 msgid "Check image permissions if all users are allowed to see the image" msgstr "Überprüfe, dass alle Benutzer die Berechtigung haben dieses Bild anzusehen" -#: view/theme/frio/config.php:152 +#: view/theme/frio/config.php:140 msgid "Appearance" msgstr "Erscheinungsbild" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Accent color" msgstr "Akzentfarbe" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Blue" msgstr "Blau" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Red" msgstr "Rot" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Purple" msgstr "Violett" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Green" msgstr "Grün" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Pink" msgstr "Rosa" -#: view/theme/frio/config.php:154 +#: view/theme/frio/config.php:142 msgid "Copy or paste schemestring" msgstr "Farbschema kopieren oder einfügen" -#: view/theme/frio/config.php:154 +#: view/theme/frio/config.php:142 msgid "" "You can copy this string to share your theme with others. Pasting here " "applies the schemestring" msgstr "Du kannst den String mit den Farbschema Informationen mit anderen Teilen. Wenn du einen neuen Farbschema-String hier einfügst wird er für deine Einstellungen übernommen." -#: view/theme/frio/config.php:155 +#: view/theme/frio/config.php:143 msgid "Navigation bar background color" msgstr "Hintergrundfarbe der Navigationsleiste" -#: view/theme/frio/config.php:156 +#: view/theme/frio/config.php:144 msgid "Navigation bar icon color " msgstr "Icon Farbe in der Navigationsleiste" -#: view/theme/frio/config.php:157 +#: view/theme/frio/config.php:145 msgid "Link color" msgstr "Linkfarbe" -#: view/theme/frio/config.php:158 +#: view/theme/frio/config.php:146 msgid "Set the background color" msgstr "Hintergrundfarbe festlegen" -#: view/theme/frio/config.php:159 +#: view/theme/frio/config.php:147 msgid "Content background opacity" msgstr "Opazität des Hintergrunds von Beiträgen" -#: view/theme/frio/config.php:160 +#: view/theme/frio/config.php:148 msgid "Set the background image" msgstr "Hintergrundbild festlegen" -#: view/theme/frio/config.php:161 +#: view/theme/frio/config.php:149 msgid "Background image style" msgstr "Stil des Hintergrundbildes" -#: view/theme/frio/config.php:164 +#: view/theme/frio/config.php:152 msgid "Always open Compose page" msgstr "Immer die Composer Seite öffnen" -#: view/theme/frio/config.php:164 +#: view/theme/frio/config.php:152 msgid "" "The New Post button always open the Compose page " "instead of the modal form. When this is disabled, the Compose page can be " "accessed with a middle click on the link or from the modal." msgstr "Neue Beiträge werden immer in der Composer Seite anstelle des Dialoges bearbeitet. Ist diese Option deaktiviert, kann die Composer Seite durch einen Klick mit der mittleren Maustaste geöffnet werden." -#: view/theme/frio/config.php:168 +#: view/theme/frio/config.php:156 msgid "Login page background image" msgstr "Hintergrundbild der Login-Seite" -#: view/theme/frio/config.php:172 +#: view/theme/frio/config.php:160 msgid "Login page background color" msgstr "Hintergrundfarbe der Login-Seite" -#: view/theme/frio/config.php:172 +#: view/theme/frio/config.php:160 msgid "Leave background image and color empty for theme defaults" msgstr "Wenn die Theme-Vorgaben verwendet werden sollen, lass bitte die Felder für die Hintergrundfarbe und das Hintergrundbild leer." -#: view/theme/frio/php/Image.php:39 +#: view/theme/frio/php/Image.php:27 msgid "Top Banner" msgstr "Top Banner" -#: view/theme/frio/php/Image.php:39 +#: view/theme/frio/php/Image.php:27 msgid "" "Resize image to the width of the screen and show background color below on " "long pages." msgstr "Skaliere das Hintergrundbild so, dass es die Breite der Seite einnimmt, und fülle den Rest der Seite mit der Hintergrundfarbe bei langen Seiten." -#: view/theme/frio/php/Image.php:40 +#: view/theme/frio/php/Image.php:28 msgid "Full screen" msgstr "Vollbildmodus" -#: view/theme/frio/php/Image.php:40 +#: view/theme/frio/php/Image.php:28 msgid "" "Resize image to fill entire screen, clipping either the right or the bottom." msgstr "Skaliere das Bild so, dass es den gesamten Bildschirm füllt. Hierfür wird entweder die Breite oder die Höhe des Bildes automatisch abgeschnitten." -#: view/theme/frio/php/Image.php:41 +#: view/theme/frio/php/Image.php:29 msgid "Single row mosaic" msgstr "Mosaik in einer Zeile" -#: view/theme/frio/php/Image.php:41 +#: view/theme/frio/php/Image.php:29 msgid "" "Resize image to repeat it on a single row, either vertical or horizontal." msgstr "Skaliere das Bild so, dass es in einer einzelnen Reihe, entweder horizontal oder vertikal, wiederholt wird." -#: view/theme/frio/php/Image.php:42 +#: view/theme/frio/php/Image.php:30 msgid "Mosaic" msgstr "Mosaik" -#: view/theme/frio/php/Image.php:42 +#: view/theme/frio/php/Image.php:30 msgid "Repeat image to fill the screen." msgstr "Wiederhole das Bild, um den Bildschirm zu füllen." -#: view/theme/frio/php/default.php:82 view/theme/frio/php/standard.php:40 +#: view/theme/frio/php/default.php:70 view/theme/frio/php/standard.php:28 msgid "Skip to main content" msgstr "Zum Inhalt der Seite gehen" -#: view/theme/frio/php/default.php:153 view/theme/frio/php/standard.php:75 +#: view/theme/frio/php/default.php:141 view/theme/frio/php/standard.php:63 msgid "Back to top" msgstr "Zurück nach Oben" -#: view/theme/frio/php/scheme.php:105 +#: view/theme/frio/php/scheme.php:93 msgid "Light" msgstr "Hell" -#: view/theme/frio/php/scheme.php:106 +#: view/theme/frio/php/scheme.php:94 msgid "Dark" msgstr "Dunkel" -#: view/theme/frio/php/scheme.php:107 +#: view/theme/frio/php/scheme.php:95 msgid "Black" msgstr "Schwarz" -#: view/theme/frio/php/scheme.php:118 +#: view/theme/frio/php/scheme.php:106 msgid "Custom" msgstr "Benutzerdefiniert" -#: view/theme/frio/theme.php:214 +#: view/theme/frio/theme.php:202 msgid "Guest" msgstr "Gast" -#: view/theme/frio/theme.php:217 +#: view/theme/frio/theme.php:205 msgid "Visitor" msgstr "Besucher" -#: view/theme/quattro/config.php:89 +#: view/theme/quattro/config.php:77 msgid "Alignment" msgstr "Ausrichtung" -#: view/theme/quattro/config.php:89 +#: view/theme/quattro/config.php:77 msgid "Left" msgstr "Links" -#: view/theme/quattro/config.php:89 +#: view/theme/quattro/config.php:77 msgid "Center" msgstr "Mitte" -#: view/theme/quattro/config.php:90 +#: view/theme/quattro/config.php:78 msgid "Color scheme" msgstr "Farbschema" -#: view/theme/quattro/config.php:91 +#: view/theme/quattro/config.php:79 msgid "Posts font size" msgstr "Schriftgröße in Beiträgen" -#: view/theme/quattro/config.php:92 +#: view/theme/quattro/config.php:80 msgid "Textareas font size" msgstr "Schriftgröße in Eingabefeldern" -#: view/theme/vier/config.php:91 +#: view/theme/vier/config.php:79 msgid "Comma separated list of helper groups" msgstr "Komma-separierte Liste der Helfer-Gruppen" -#: view/theme/vier/config.php:131 +#: view/theme/vier/config.php:119 msgid "don't show" msgstr "nicht zeigen" -#: view/theme/vier/config.php:131 +#: view/theme/vier/config.php:119 msgid "show" msgstr "zeigen" -#: view/theme/vier/config.php:137 +#: view/theme/vier/config.php:125 msgid "Set style" msgstr "Stil auswählen" -#: view/theme/vier/config.php:138 +#: view/theme/vier/config.php:126 msgid "Community Pages" msgstr "Gemeinschaftsseiten" -#: view/theme/vier/config.php:139 view/theme/vier/theme.php:148 +#: view/theme/vier/config.php:127 view/theme/vier/theme.php:136 msgid "Community Profiles" msgstr "Gemeinschaftsprofile" -#: view/theme/vier/config.php:140 +#: view/theme/vier/config.php:128 msgid "Help or @NewHere ?" msgstr "Hilfe oder @NewHere" -#: view/theme/vier/config.php:141 view/theme/vier/theme.php:319 +#: view/theme/vier/config.php:129 view/theme/vier/theme.php:307 msgid "Connect Services" msgstr "Verbinde Dienste" -#: view/theme/vier/config.php:142 +#: view/theme/vier/config.php:130 msgid "Find Friends" msgstr "Kontakte finden" -#: view/theme/vier/config.php:143 view/theme/vier/theme.php:175 +#: view/theme/vier/config.php:131 view/theme/vier/theme.php:163 msgid "Last users" msgstr "Letzte Nutzer" -#: view/theme/vier/theme.php:234 +#: view/theme/vier/theme.php:222 msgid "Quick Start" msgstr "Schnell-Start" diff --git a/view/lang/de/strings.php b/view/lang/de/strings.php index ecc129d850..2bfe2d62ef 100644 --- a/view/lang/de/strings.php +++ b/view/lang/de/strings.php @@ -845,7 +845,6 @@ $a->strings['An author or name was not found.'] = 'Es wurde kein Autor oder Name $a->strings['No browser URL could be matched to this address.'] = 'Zu dieser Adresse konnte keine passende Browser-URL gefunden werden.'; $a->strings['Unable to match @-style Identity Address with a known protocol or email contact.'] = 'Konnte die @-Adresse mit keinem der bekannten Protokolle oder Email-Kontakte abgleichen.'; $a->strings['Use mailto: in front of address to force email check.'] = 'Verwende mailto: vor der E-Mail-Adresse, um eine Überprüfung der E-Mail-Adresse zu erzwingen.'; -$a->strings['The profile address specified belongs to a network which has been disabled on this site.'] = 'Die Adresse dieses Profils gehört zu einem Netzwerk, mit dem die Kommunikation auf dieser Seite ausgeschaltet wurde.'; $a->strings['Limited profile. This person will be unable to receive direct/personal notifications from you.'] = 'Eingeschränktes Profil. Diese Person wird keine direkten/privaten Nachrichten von dir erhalten können.'; $a->strings['Unable to retrieve contact information.'] = 'Konnte die Kontaktinformationen nicht empfangen.'; $a->strings['l F d, Y \@ g:i A \G\M\TP (e)'] = 'l F d, Y \@ g:i A \G\M\TP (e)'; @@ -873,7 +872,6 @@ $a->strings['%s\'s birthday'] = '%ss Geburtstag'; $a->strings['Happy Birthday %s'] = 'Herzlichen Glückwunsch, %s'; $a->strings['%s (%s - %s): %s'] = '%s (%s - %s): %s'; $a->strings['%s (%s): %s'] = '%s (%s): %s'; -$a->strings['Detected languages in this post:\n%s'] = 'Erkannte Sprachen in diesem Beitrag:\n%s'; $a->strings['activity'] = 'Aktivität'; $a->strings['comment'] = 'Kommentar'; $a->strings['post'] = 'Beitrag'; @@ -1359,8 +1357,6 @@ $a->strings['The maximum number of posts per server on the global community page $a->strings['Enable Mail support'] = 'E-Mail Unterstützung aktivieren'; $a->strings['Enable built-in mail support to poll IMAP folders and to reply via mail.'] = 'Aktiviert die Unterstützung IMAP Ordner abzurufen und ermöglicht es auch auf E-Mails zu antworten.'; $a->strings['Mail support can\'t be enabled because the PHP IMAP module is not installed.'] = 'E-Mail Unterstützung kann nicht aktiviert werden, da das PHP IMAP Modul nicht installiert ist.'; -$a->strings['Enable OStatus support'] = 'OStatus Unterstützung aktivieren'; -$a->strings['Enable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public.'] = 'Aktiviere die OStatus (StatusNet, GNU Social usw.) Unterstützung. Die Kommunikation über das OStatus Protokoll ist grundsätzlich öffentlich.'; $a->strings['Diaspora support can\'t be enabled because Friendica was installed into a sub directory.'] = 'Diaspora Unterstützung kann nicht aktiviert werden, da Friendica in ein Unterverzeichnis installiert ist.'; $a->strings['Enable Diaspora support'] = 'Diaspora-Unterstützung aktivieren'; $a->strings['Enable built-in Diaspora network compatibility for communicating with diaspora servers.'] = 'Aktiviere die Unterstützung des Diaspora Protokolls zur Kommunikation mit Diaspora Servern.'; @@ -1406,7 +1402,6 @@ $a->strings['When the database cleanup is enabled, this defines the days after w $a->strings['Lifespan of unclaimed items'] = 'Lebensdauer nicht angeforderter Beiträge'; $a->strings['When the database cleanup is enabled, this defines the days after which unclaimed remote items (mostly content from the relay) will be deleted. Default value is 90 days. Defaults to the general lifespan value of remote items if set to 0.'] = 'Wenn das Aufräumen der Datenbank aktiviert ist, definiert dies die Anzahl von Tagen, nach denen nicht angeforderte Beiträge (hauptsächlich solche, die über das Relais eintreffen) gelöscht werden. Der Standardwert beträgt 90 Tage. Wird dieser Wert auf 0 gesetzt, wird die Lebensdauer von Beiträgen anderer Knoten verwendet.'; $a->strings['Lifespan of raw conversation data'] = 'Lebensdauer der Beiträge'; -$a->strings['The conversation data is used for ActivityPub and OStatus, as well as for debug purposes. It should be safe to remove it after 14 days, default is 90 days.'] = 'Die Konversationsdaten werden für ActivityPub und OStatus sowie für Debug-Zwecke verwendet. Sie sollten gefahrlos nach 14 Tagen entfernt werden können, der Standardwert beträgt 90 Tage.'; $a->strings['Maximum numbers of comments per post'] = 'Maximale Anzahl von Kommentaren pro Beitrag'; $a->strings['How much comments should be shown for each post? Default value is 100.'] = 'Wie viele Kommentare sollen pro Beitrag angezeigt werden? Standardwert sind 100.'; $a->strings['Maximum numbers of comments per post on the display page'] = 'Maximale Anzahl von Kommentaren in der Einzelansicht'; @@ -1721,7 +1716,6 @@ $a->strings['Submit Request'] = 'Anfrage abschicken'; $a->strings['You already added this contact.'] = 'Du hast den Kontakt bereits hinzugefügt.'; $a->strings['The network type couldn\'t be detected. Contact can\'t be added.'] = 'Der Netzwerktyp wurde nicht erkannt. Der Kontakt kann nicht hinzugefügt werden.'; $a->strings['Diaspora support isn\'t enabled. Contact can\'t be added.'] = 'Diaspora-Unterstützung ist nicht aktiviert. Der Kontakt kann nicht zugefügt werden.'; -$a->strings['OStatus support is disabled. Contact can\'t be added.'] = 'OStatus-Unterstützung ist nicht aktiviert. Der Kontakt kann nicht zugefügt werden.'; $a->strings['Please answer the following:'] = 'Bitte beantworte folgendes:'; $a->strings['Your Identity Address:'] = 'Adresse Deines Profils:'; $a->strings['Profile URL'] = 'Profil URL'; @@ -2257,10 +2251,6 @@ $a->strings['Incomplete request data'] = 'Daten der Anfrage sind nicht vollstän $a->strings['Please copy the following authentication code into your application and close this window: %s'] = 'Bitte kopiere den folgenden Authentifizierungscode in deine App und schließe dieses Fenster: %s'; $a->strings['Invalid data or unknown client'] = 'Ungültige Daten oder unbekannter Client'; $a->strings['Unsupported or missing grant type'] = 'Der Grant-Typ fehlt oder wird nicht unterstützt'; -$a->strings['Resubscribing to OStatus contacts'] = 'Erneuern der OStatus-Abonements'; -$a->strings['Keep this window open until done.'] = 'Lasse dieses Fenster offen, bis der Vorgang abgeschlossen ist.'; -$a->strings['✔ Done'] = '✔ Erledigt'; -$a->strings['No OStatus contacts to resubscribe to.'] = 'Keine OStatus Kontakte zum Neufolgen vorhanden.'; $a->strings['Subscribing to contacts'] = 'Kontakten folgen'; $a->strings['No contact provided.'] = 'Keine Kontakte gefunden.'; $a->strings['Couldn\'t fetch information for contact.'] = 'Konnte die Kontaktinformationen nicht einholen.'; @@ -2272,6 +2262,7 @@ $a->strings['Done'] = 'Erledigt'; $a->strings['success'] = 'Erfolg'; $a->strings['failed'] = 'Fehlgeschlagen'; $a->strings['ignored'] = 'Ignoriert'; +$a->strings['Keep this window open until done.'] = 'Lasse dieses Fenster offen, bis der Vorgang abgeschlossen ist.'; $a->strings['The Photo is not available.'] = 'Das Foto ist nicht verfügbar.'; $a->strings['The Photo with id %s is not available.'] = 'Das Bild mit ID %s ist nicht verfügbar.'; $a->strings['Invalid external resource with url %s.'] = 'Ungültige externe Ressource mit der URL %s'; @@ -2299,9 +2290,9 @@ $a->strings['Collection (%s)'] = 'Sammlung (%s)'; $a->strings['Followers (%s)'] = 'Folgende (%s)'; $a->strings['%d more'] = '%d weitere'; $a->strings['No contacts.'] = 'Keine Kontakte.'; -$a->strings['%s\'s timeline'] = 'Timeline von %s'; $a->strings['%s\'s posts'] = 'Beiträge von %s'; $a->strings['%s\'s comments'] = 'Kommentare von %s'; +$a->strings['%s\'s timeline'] = 'Timeline von %s'; $a->strings['Image exceeds size limit of %s'] = 'Bildgröße überschreitet das Limit von %s'; $a->strings['Image upload didn\'t complete, please try again'] = 'Der Upload des Bildes war nicht vollständig. Bitte versuche es erneut.'; $a->strings['Image file is missing'] = 'Bilddatei konnte nicht gefunden werden.'; @@ -2580,7 +2571,6 @@ $a->strings['Failed to connect with email account using the settings provided.'] $a->strings['Diaspora (Socialhome, Hubzilla)'] = 'Diaspora (Socialhome, Hubzilla)'; $a->strings['Built-in support for %s connectivity is enabled'] = 'Eingebaute Unterstützung für die Verbindung zu %s ist aktiviert.'; $a->strings['Built-in support for %s connectivity is disabled'] = 'Eingebaute Unterstützung für die Verbindung zu %s ist nicht aktiviert.'; -$a->strings['OStatus (GNU Social)'] = 'OStatus (GNU Social)'; $a->strings['Email access is disabled on this site.'] = 'Zugriff auf E-Mails für diese Seite deaktiviert.'; $a->strings['None'] = 'Keine'; $a->strings['Default (Mastodon will display the title and a link to the post)'] = 'Grundeinstellung (Mastodon zweigt den Titel und einen Link auf den Beitrag)'; @@ -2608,7 +2598,6 @@ $a->strings['Article Mode'] = 'Artikel Modus'; $a->strings['Controls how posts with titles are transmitted. Mastodon and its forks don\'t display the content of these posts if the post is created in the correct (default) way.'] = 'Kontrolliert wie Beiträge mit Titeln übermittel werden. Mastodon und dessen Forks stellen den Inhalt dieser Beiträge nicht dar, wenn sie an sich korrekt in den Grundeinstellungen übertragen werden.'; $a->strings['Your legacy ActivityPub/GNU Social account'] = 'Dein alter ActivityPub/GNU Social-Account'; $a->strings['If you enter your old account name from an ActivityPub based system or your GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done.'] = 'Wenn du deinen alten ActivityPub oder GNU Social/Statusnet-Account-Namen hier angibst (Format name@domain.tld), werden deine Kontakte automatisch hinzugefügt. Dieses Feld wird geleert, wenn die Kontakte hinzugefügt wurden.'; -$a->strings['Repair OStatus subscriptions'] = 'OStatus-Abonnements reparieren'; $a->strings['Email/Mailbox Setup'] = 'E-Mail/Postfach-Einstellungen'; $a->strings['If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox.'] = 'Wenn du mit E-Mail-Kontakten über diesen Service kommunizieren möchtest (optional), gib bitte die Einstellungen für dein Postfach an.'; $a->strings['Last successful email check:'] = 'Letzter erfolgreicher E-Mail-Check'; @@ -2935,7 +2924,6 @@ $a->strings['%s commented on %s\'s post'] = '%s hat %ss Beitrag kommentiert'; $a->strings['%s created a new post'] = '%s hat einen neuen Beitrag erstellt'; $a->strings['Friend Suggestion'] = 'Kontaktvorschlag'; $a->strings['Friend/Connect Request'] = 'Kontakt-/Freundschaftsanfrage'; -$a->strings['New Follower'] = 'Neuer Bewunderer'; $a->strings['%1$s wants to follow you'] = '%1$s möchte dir folgen'; $a->strings['%1$s has started following you'] = '%1$s hat angefangen dir zu folgen'; $a->strings['%1$s liked your comment on %2$s'] = '%1$s mag deinen Kommentar %2$s'; @@ -3090,10 +3078,6 @@ $a->strings['Reacted with %s by: %s'] = 'Reagierte mit %s von: %s'; $a->strings['Quote shared by: %s'] = 'Zitat geteilt von: %s'; $a->strings['Chat'] = 'Chat'; $a->strings['(no subject)'] = '(kein Betreff)'; -$a->strings['%s is now following %s.'] = '%s folgt nun %s'; -$a->strings['following'] = 'folgen'; -$a->strings['%s stopped following %s.'] = '%s hat aufgehört %s, zu folgen'; -$a->strings['stopped following'] = 'wird nicht mehr gefolgt'; $a->strings['The folder %s must be writable by webserver.'] = 'Das Verzeichnis %s muss für den Web-Server beschreibbar sein.'; $a->strings['Login failed.'] = 'Anmeldung fehlgeschlagen.'; $a->strings['Login failed. Please check your credentials.'] = 'Anmeldung fehlgeschlagen. Bitte überprüfe deine Angaben.'; diff --git a/view/lang/eo/messages.po b/view/lang/eo/messages.po index a6cb04b1c6..e8b0742f73 100644 --- a/view/lang/eo/messages.po +++ b/view/lang/eo/messages.po @@ -1,8 +1,7 @@ # FRIENDICA Distributed Social Network -# SPDX-FileCopyrightText: Copyright (C) 2010-2024, the Friendica project -# -# SPDX-License-Identifier: AGPL-3.0-or-later -# +# Copyright (C) 2010-2024, the Friendica project +# This file is distributed under the same license as the Friendica package. +# # Translators: # Diego Souzaupload_max_filesize
is set to %s (%s byte)"
msgstr ""
-#: src/Module/Admin/Site.php:499
+#: src/Module/Admin/Site.php:489
msgid "Maximum image length"
msgstr ""
-#: src/Module/Admin/Site.php:499
+#: src/Module/Admin/Site.php:489
msgid ""
"Maximum length in pixels of the longest side of uploaded images. Default is "
"-1, which means no limits."
msgstr ""
-#: src/Module/Admin/Site.php:500
+#: src/Module/Admin/Site.php:490
msgid "JPEG image quality"
msgstr ""
-#: src/Module/Admin/Site.php:500
+#: src/Module/Admin/Site.php:490
msgid ""
"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
"100, which is full quality."
msgstr ""
-#: src/Module/Admin/Site.php:502
+#: src/Module/Admin/Site.php:491
+msgid "Maximum media file size"
+msgstr ""
+
+#: src/Module/Admin/Site.php:491
+#, php-format
+msgid ""
+"Maximum size in bytes of uploaded media files. Default is 0, which means no limits. You can put k, m, or g behind the desired value for KiB, MiB, GiB, respectively.\n"
+"\t\t\t\t\t\t\t\t\t\t\t\t\tThe value of upload_max_filesize
in your PHP.ini
needs be set to at least the desired limit.\n"
+"\t\t\t\t\t\t\t\t\t\t\t\t\tCurrently upload_max_filesize
is set to %s (%s byte)"
+msgstr ""
+
+#: src/Module/Admin/Site.php:496
msgid "Register policy"
msgstr "Interkonsento pri registrado"
-#: src/Module/Admin/Site.php:503
+#: src/Module/Admin/Site.php:497
msgid "Maximum Users"
msgstr ""
-#: src/Module/Admin/Site.php:503
+#: src/Module/Admin/Site.php:497
msgid ""
"If defined, the register policy is automatically closed when the given "
"number of users is reached and reopens the registry when the number drops "
@@ -4658,167 +4746,167 @@ msgid ""
"not when the policy is set to approval."
msgstr ""
-#: src/Module/Admin/Site.php:504
+#: src/Module/Admin/Site.php:498
msgid "Maximum Daily Registrations"
msgstr ""
-#: src/Module/Admin/Site.php:504
+#: src/Module/Admin/Site.php:498
msgid ""
"If registration is permitted above, this sets the maximum number of new user"
" registrations to accept per day. If register is set to closed, this "
"setting has no effect."
msgstr ""
-#: src/Module/Admin/Site.php:505
+#: src/Module/Admin/Site.php:499
msgid "Register text"
msgstr "Interkonsento teksto"
-#: src/Module/Admin/Site.php:505
+#: src/Module/Admin/Site.php:499
msgid ""
"Will be displayed prominently on the registration page. You can use BBCode "
"here."
msgstr ""
-#: src/Module/Admin/Site.php:506
+#: src/Module/Admin/Site.php:500
msgid "Forbidden Nicknames"
msgstr ""
-#: src/Module/Admin/Site.php:506
+#: src/Module/Admin/Site.php:500
msgid ""
"Comma separated list of nicknames that are forbidden from registration. "
"Preset is a list of role names according RFC 2142."
msgstr ""
-#: src/Module/Admin/Site.php:507
+#: src/Module/Admin/Site.php:501
msgid "Accounts abandoned after x days"
msgstr "Kontoj forlasitaj post x tagoj"
-#: src/Module/Admin/Site.php:507
+#: src/Module/Admin/Site.php:501
msgid ""
"Will not waste system resources polling external sites for abandonded "
"accounts. Enter 0 for no time limit."
msgstr "Mi ne malŝparu energion por enketi aliajn retejojn pri forlasitaj kontoj. Entajpu 0 por ne uzi templimo."
-#: src/Module/Admin/Site.php:508
+#: src/Module/Admin/Site.php:502
msgid "Allowed friend domains"
msgstr "Permesitaj amikaj domainoj"
-#: src/Module/Admin/Site.php:508
+#: src/Module/Admin/Site.php:502
msgid ""
"Comma separated list of domains which are allowed to establish friendships "
"with this site. Wildcards are accepted. Empty to allow any domains"
msgstr "Perkome disigita listo da domajnoj kiuj rajtas konstrui amikecojn kun ĉi tiu retejo. Ĵokeroj eblas. Malplena por rajtigi ĉiujn ajn domajnojn."
-#: src/Module/Admin/Site.php:509
+#: src/Module/Admin/Site.php:503
msgid "Allowed email domains"
msgstr "Permesitaj retpoŝtaj domajnoj"
-#: src/Module/Admin/Site.php:509
+#: src/Module/Admin/Site.php:503
msgid ""
"Comma separated list of domains which are allowed in email addresses for "
"registrations to this site. Wildcards are accepted. Empty to allow any "
"domains"
msgstr "Perkome disigita listo da domajnoj kiuj uzeblas kiel retpoŝtaj adresoj en novaj registradoj. Ĵokeroj eblas. Malplena por rajtigi ĉiujn ajn domajnojn."
-#: src/Module/Admin/Site.php:510
+#: src/Module/Admin/Site.php:504
msgid "Disallowed email domains"
msgstr ""
-#: src/Module/Admin/Site.php:510
+#: src/Module/Admin/Site.php:504
msgid ""
"Comma separated list of domains which are rejected as email addresses for "
"registrations to this site. Wildcards are accepted."
msgstr ""
-#: src/Module/Admin/Site.php:511
+#: src/Module/Admin/Site.php:505
msgid "No OEmbed rich content"
msgstr ""
-#: src/Module/Admin/Site.php:511
+#: src/Module/Admin/Site.php:505
msgid ""
"Don't show the rich content (e.g. embedded PDF), except from the domains "
"listed below."
msgstr ""
-#: src/Module/Admin/Site.php:512
+#: src/Module/Admin/Site.php:506
msgid "Trusted third-party domains"
msgstr ""
-#: src/Module/Admin/Site.php:512
+#: src/Module/Admin/Site.php:506
msgid ""
"Comma separated list of domains from which content is allowed to be embedded"
" in posts like with OEmbed. All sub-domains of the listed domains are "
"allowed as well."
msgstr ""
-#: src/Module/Admin/Site.php:513
+#: src/Module/Admin/Site.php:507
msgid "Block public"
msgstr "Bloki publike"
-#: src/Module/Admin/Site.php:513
+#: src/Module/Admin/Site.php:507
msgid ""
"Check to block public access to all otherwise public personal pages on this "
"site unless you are currently logged in."
msgstr "Elektu por bloki publikan atingon al ĉiuj alie publikajn paĝojn en ĉi tiu retejo kiam vi ne estas ensalutita."
-#: src/Module/Admin/Site.php:514
+#: src/Module/Admin/Site.php:508
msgid "Force publish"
msgstr "Devigi publikigon"
-#: src/Module/Admin/Site.php:514
+#: src/Module/Admin/Site.php:508
msgid ""
"Check to force all profiles on this site to be listed in the site directory."
msgstr "Elektu por devigi la registradon en la loka katalogo al ĉiuj profiloj en ĉi tiu retejo."
-#: src/Module/Admin/Site.php:514
+#: src/Module/Admin/Site.php:508
msgid "Enabling this may violate privacy laws like the GDPR"
msgstr ""
-#: src/Module/Admin/Site.php:515
+#: src/Module/Admin/Site.php:509
msgid "Global directory URL"
msgstr ""
-#: src/Module/Admin/Site.php:515
+#: src/Module/Admin/Site.php:509
msgid ""
"URL to the global directory. If this is not set, the global directory is "
"completely unavailable to the application."
msgstr ""
-#: src/Module/Admin/Site.php:516
+#: src/Module/Admin/Site.php:510
msgid "Private posts by default for new users"
msgstr ""
-#: src/Module/Admin/Site.php:516
+#: src/Module/Admin/Site.php:510
msgid ""
"Set default post permissions for all new members to the default privacy "
"circle rather than public."
msgstr ""
-#: src/Module/Admin/Site.php:517
+#: src/Module/Admin/Site.php:511
msgid "Don't include post content in email notifications"
msgstr ""
-#: src/Module/Admin/Site.php:517
+#: src/Module/Admin/Site.php:511
msgid ""
"Don't include the content of a post/comment/private message/etc. in the "
"email notifications that are sent out from this site, as a privacy measure."
msgstr ""
-#: src/Module/Admin/Site.php:518
+#: src/Module/Admin/Site.php:512
msgid "Disallow public access to addons listed in the apps menu."
msgstr ""
-#: src/Module/Admin/Site.php:518
+#: src/Module/Admin/Site.php:512
msgid ""
"Checking this box will restrict addons listed in the apps menu to members "
"only."
msgstr ""
-#: src/Module/Admin/Site.php:519
+#: src/Module/Admin/Site.php:513
msgid "Don't embed private images in posts"
msgstr ""
-#: src/Module/Admin/Site.php:519
+#: src/Module/Admin/Site.php:513
msgid ""
"Don't replace locally-hosted private photos in posts with an embedded copy "
"of the image. This means that contacts who receive posts containing private "
@@ -4826,11 +4914,11 @@ msgid ""
"while."
msgstr ""
-#: src/Module/Admin/Site.php:520
+#: src/Module/Admin/Site.php:514
msgid "Explicit Content"
msgstr ""
-#: src/Module/Admin/Site.php:520
+#: src/Module/Admin/Site.php:514
msgid ""
"Set this to announce that your node is used mostly for explicit content that"
" might not be suited for minors. This information will be published in the "
@@ -4839,339 +4927,319 @@ msgid ""
"will be shown at the user registration page."
msgstr ""
-#: src/Module/Admin/Site.php:521
-msgid "Proxify external content"
-msgstr ""
-
-#: src/Module/Admin/Site.php:521
-msgid ""
-"Route external content via the proxy functionality. This is used for example"
-" for some OEmbed accesses and in some other rare cases."
-msgstr ""
-
-#: src/Module/Admin/Site.php:522
+#: src/Module/Admin/Site.php:515
msgid "Only local search"
msgstr ""
-#: src/Module/Admin/Site.php:522
+#: src/Module/Admin/Site.php:515
msgid ""
"Blocks search for users who are not logged in to prevent crawlers from "
"blocking your system."
msgstr ""
-#: src/Module/Admin/Site.php:523
+#: src/Module/Admin/Site.php:516
msgid "Blocked tags for trending tags"
msgstr ""
-#: src/Module/Admin/Site.php:523
+#: src/Module/Admin/Site.php:516
msgid ""
"Comma separated list of hashtags that shouldn't be displayed in the trending"
" tags."
msgstr ""
-#: src/Module/Admin/Site.php:524
+#: src/Module/Admin/Site.php:517
msgid "Cache contact avatars"
msgstr ""
-#: src/Module/Admin/Site.php:524
+#: src/Module/Admin/Site.php:517
msgid ""
"Locally store the avatar pictures of the contacts. This uses a lot of "
"storage space but it increases the performance."
msgstr ""
-#: src/Module/Admin/Site.php:525
+#: src/Module/Admin/Site.php:518
msgid "Allow Users to set remote_self"
msgstr ""
-#: src/Module/Admin/Site.php:525
+#: src/Module/Admin/Site.php:518
msgid ""
"With checking this, every user is allowed to mark every contact as a "
"remote_self in the repair contact dialog. Setting this flag on a contact "
"causes mirroring every posting of that contact in the users stream."
msgstr ""
-#: src/Module/Admin/Site.php:526
+#: src/Module/Admin/Site.php:519
msgid "Allow Users to set up relay channels"
msgstr ""
-#: src/Module/Admin/Site.php:526
+#: src/Module/Admin/Site.php:519
msgid ""
"If enabled, it is possible to create relay users that are used to reshare "
"content based on user defined channels."
msgstr ""
-#: src/Module/Admin/Site.php:527
+#: src/Module/Admin/Site.php:520
msgid "Adjust the feed poll frequency"
msgstr ""
-#: src/Module/Admin/Site.php:527
+#: src/Module/Admin/Site.php:520
msgid "Automatically detect and set the best feed poll frequency."
msgstr ""
-#: src/Module/Admin/Site.php:528
+#: src/Module/Admin/Site.php:521
msgid "Minimum poll interval"
msgstr ""
-#: src/Module/Admin/Site.php:528
+#: src/Module/Admin/Site.php:521
msgid ""
"Minimal distance in minutes between two polls for mail and feed contacts. "
"Reasonable values are between 1 and 59."
msgstr ""
-#: src/Module/Admin/Site.php:529
+#: src/Module/Admin/Site.php:522
msgid "Enable multiple registrations"
msgstr ""
-#: src/Module/Admin/Site.php:529
+#: src/Module/Admin/Site.php:522
msgid "Enable users to register additional accounts for use as pages."
msgstr ""
-#: src/Module/Admin/Site.php:530
+#: src/Module/Admin/Site.php:523
msgid "Enable OpenID"
msgstr ""
-#: src/Module/Admin/Site.php:530
+#: src/Module/Admin/Site.php:523
msgid "Enable OpenID support for registration and logins."
msgstr ""
-#: src/Module/Admin/Site.php:531
+#: src/Module/Admin/Site.php:524
msgid "Enable full name check"
msgstr ""
-#: src/Module/Admin/Site.php:531
+#: src/Module/Admin/Site.php:524
msgid ""
"Prevents users from registering with a display name with fewer than two "
"parts separated by spaces."
msgstr ""
-#: src/Module/Admin/Site.php:532
+#: src/Module/Admin/Site.php:525
msgid "Email administrators on new registration"
msgstr ""
-#: src/Module/Admin/Site.php:532
+#: src/Module/Admin/Site.php:525
msgid ""
"If enabled and the system is set to an open registration, an email for each "
"new registration is sent to the administrators."
msgstr ""
-#: src/Module/Admin/Site.php:533
+#: src/Module/Admin/Site.php:526
msgid "Community pages for visitors"
msgstr ""
-#: src/Module/Admin/Site.php:533
+#: src/Module/Admin/Site.php:526
msgid ""
"Which community pages should be available for visitors. Local users always "
"see both pages."
msgstr ""
-#: src/Module/Admin/Site.php:534
+#: src/Module/Admin/Site.php:527
msgid "Posts per user on community page"
msgstr ""
-#: src/Module/Admin/Site.php:534
+#: src/Module/Admin/Site.php:527
msgid ""
"The maximum number of posts per user on the local community page. This is "
"useful, when a single user floods the local community page."
msgstr ""
-#: src/Module/Admin/Site.php:535
+#: src/Module/Admin/Site.php:528
msgid "Posts per server on community page"
msgstr ""
-#: src/Module/Admin/Site.php:535
+#: src/Module/Admin/Site.php:528
msgid ""
"The maximum number of posts per server on the global community page. This is"
" useful, when posts from a single server flood the global community page."
msgstr ""
-#: src/Module/Admin/Site.php:537
+#: src/Module/Admin/Site.php:530
msgid "Enable Mail support"
msgstr ""
-#: src/Module/Admin/Site.php:537
+#: src/Module/Admin/Site.php:530
msgid ""
"Enable built-in mail support to poll IMAP folders and to reply via mail."
msgstr ""
-#: src/Module/Admin/Site.php:538
+#: src/Module/Admin/Site.php:531
msgid ""
"Mail support can't be enabled because the PHP IMAP module is not installed."
msgstr ""
-#: src/Module/Admin/Site.php:539
-msgid "Enable OStatus support"
-msgstr ""
-
-#: src/Module/Admin/Site.php:539
-msgid ""
-"Enable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
-"communications in OStatus are public."
-msgstr ""
-
-#: src/Module/Admin/Site.php:541
+#: src/Module/Admin/Site.php:533
msgid ""
"Diaspora support can't be enabled because Friendica was installed into a sub"
" directory."
msgstr ""
-#: src/Module/Admin/Site.php:542
+#: src/Module/Admin/Site.php:534
msgid "Enable Diaspora support"
msgstr "Ŝalti subtenon por Diaspora"
-#: src/Module/Admin/Site.php:542
+#: src/Module/Admin/Site.php:534
msgid ""
"Enable built-in Diaspora network compatibility for communicating with "
"diaspora servers."
msgstr ""
-#: src/Module/Admin/Site.php:543
+#: src/Module/Admin/Site.php:535
msgid "Verify SSL"
msgstr "Kontroli SSL"
-#: src/Module/Admin/Site.php:543
+#: src/Module/Admin/Site.php:535
msgid ""
"If you wish, you can turn on strict certificate checking. This will mean you"
" cannot connect (at all) to self-signed SSL sites."
msgstr "Se vi deziras, vi povas aktivigi severan kontroladon de SSL atestiloj. Pro tio, vie (tute) ne eblos konekti al SSL retejoj kun memsubskribitaj atestiloj."
-#: src/Module/Admin/Site.php:544
+#: src/Module/Admin/Site.php:536
msgid "Proxy user"
msgstr "Uzantnomo por retperanto"
-#: src/Module/Admin/Site.php:544
+#: src/Module/Admin/Site.php:536
msgid "User name for the proxy server."
msgstr ""
-#: src/Module/Admin/Site.php:545
+#: src/Module/Admin/Site.php:537
msgid "Proxy URL"
msgstr "URL adreso de retperanto"
-#: src/Module/Admin/Site.php:545
+#: src/Module/Admin/Site.php:537
msgid ""
"If you want to use a proxy server that Friendica should use to connect to "
"the network, put the URL of the proxy here."
msgstr ""
-#: src/Module/Admin/Site.php:546
+#: src/Module/Admin/Site.php:538
msgid "Network timeout"
msgstr "Reta tempolimo"
-#: src/Module/Admin/Site.php:546
+#: src/Module/Admin/Site.php:538
msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
msgstr "Valoro en sekundoj. Uzu 0 por mallimitigi (ne rekomendata)."
-#: src/Module/Admin/Site.php:547
+#: src/Module/Admin/Site.php:539
msgid "Maximum Load Average"
msgstr "Maksimuma Meza Sistemŝargo"
-#: src/Module/Admin/Site.php:547
+#: src/Module/Admin/Site.php:539
#, php-format
msgid ""
"Maximum system load before delivery and poll processes are deferred - "
"default %d."
msgstr ""
-#: src/Module/Admin/Site.php:548
+#: src/Module/Admin/Site.php:540
msgid "Minimal Memory"
msgstr ""
-#: src/Module/Admin/Site.php:548
+#: src/Module/Admin/Site.php:540
msgid ""
"Minimal free memory in MB for the worker. Needs access to /proc/meminfo - "
"default 0 (deactivated)."
msgstr ""
-#: src/Module/Admin/Site.php:549
+#: src/Module/Admin/Site.php:541
msgid "Periodically optimize tables"
msgstr ""
-#: src/Module/Admin/Site.php:549
+#: src/Module/Admin/Site.php:541
msgid "Periodically optimize tables like the cache and the workerqueue"
msgstr ""
-#: src/Module/Admin/Site.php:551
+#: src/Module/Admin/Site.php:543
msgid "Discover followers/followings from contacts"
msgstr ""
-#: src/Module/Admin/Site.php:551
+#: src/Module/Admin/Site.php:543
msgid ""
"If enabled, contacts are checked for their followers and following contacts."
msgstr ""
-#: src/Module/Admin/Site.php:552
+#: src/Module/Admin/Site.php:544
msgid "None - deactivated"
msgstr ""
-#: src/Module/Admin/Site.php:553
+#: src/Module/Admin/Site.php:545
msgid ""
"Local contacts - contacts of our local contacts are discovered for their "
"followers/followings."
msgstr ""
-#: src/Module/Admin/Site.php:554
+#: src/Module/Admin/Site.php:546
msgid ""
"Interactors - contacts of our local contacts and contacts who interacted on "
"locally visible postings are discovered for their followers/followings."
msgstr ""
-#: src/Module/Admin/Site.php:556
+#: src/Module/Admin/Site.php:548
msgid "Only update contacts/servers with local data"
msgstr ""
-#: src/Module/Admin/Site.php:556
+#: src/Module/Admin/Site.php:548
msgid ""
"If enabled, the system will only look for changes in contacts and servers "
"that engaged on this system by either being in a contact list of a user or "
"when posts or comments exists from the contact on this system."
msgstr ""
-#: src/Module/Admin/Site.php:557
+#: src/Module/Admin/Site.php:549
msgid "Synchronize the contacts with the directory server"
msgstr ""
-#: src/Module/Admin/Site.php:557
+#: src/Module/Admin/Site.php:549
msgid ""
"if enabled, the system will check periodically for new contacts on the "
"defined directory server."
msgstr ""
-#: src/Module/Admin/Site.php:559
+#: src/Module/Admin/Site.php:551
msgid "Discover contacts from other servers"
msgstr ""
-#: src/Module/Admin/Site.php:559
+#: src/Module/Admin/Site.php:551
msgid ""
"Periodically query other servers for contacts and servers that they know of."
" The system queries Friendica, Mastodon and Hubzilla servers. Keep it "
"deactivated on small machines to decrease the database size and load."
msgstr ""
-#: src/Module/Admin/Site.php:560
+#: src/Module/Admin/Site.php:552
msgid "Days between requery"
msgstr ""
-#: src/Module/Admin/Site.php:560
+#: src/Module/Admin/Site.php:552
msgid ""
"Number of days after which a server is requeried for their contacts and "
"servers it knows of. This is only used when the discovery is activated."
msgstr ""
-#: src/Module/Admin/Site.php:561
+#: src/Module/Admin/Site.php:553
msgid "Search the local directory"
msgstr ""
-#: src/Module/Admin/Site.php:561
+#: src/Module/Admin/Site.php:553
msgid ""
"Search the local directory instead of the global directory. When searching "
"locally, every search will be executed on the global directory in the "
"background. This improves the search results when the search is repeated."
msgstr ""
-#: src/Module/Admin/Site.php:563
+#: src/Module/Admin/Site.php:555
msgid "Publish server information"
msgstr ""
-#: src/Module/Admin/Site.php:563
+#: src/Module/Admin/Site.php:555
msgid ""
"If enabled, general server and usage data will be published. The data "
"contains the name and version of the server, number of users with public "
@@ -5179,50 +5247,50 @@ msgid ""
" href=\"http://the-federation.info/\">the-federation.info for details."
msgstr ""
-#: src/Module/Admin/Site.php:565
+#: src/Module/Admin/Site.php:557
msgid "Check upstream version"
msgstr ""
-#: src/Module/Admin/Site.php:565
+#: src/Module/Admin/Site.php:557
msgid ""
"Enables checking for new Friendica versions at github. If there is a new "
"version, you will be informed in the admin panel overview."
msgstr ""
-#: src/Module/Admin/Site.php:566
+#: src/Module/Admin/Site.php:558
msgid "Suppress Tags"
msgstr ""
-#: src/Module/Admin/Site.php:566
+#: src/Module/Admin/Site.php:558
msgid "Suppress showing a list of hashtags at the end of the posting."
msgstr ""
-#: src/Module/Admin/Site.php:567
+#: src/Module/Admin/Site.php:559
msgid "Clean database"
msgstr ""
-#: src/Module/Admin/Site.php:567
+#: src/Module/Admin/Site.php:559
msgid ""
"Remove old remote items, orphaned database records and old content from some"
" other helper tables."
msgstr ""
-#: src/Module/Admin/Site.php:568
+#: src/Module/Admin/Site.php:560
msgid "Lifespan of remote items"
msgstr ""
-#: src/Module/Admin/Site.php:568
+#: src/Module/Admin/Site.php:560
msgid ""
"When the database cleanup is enabled, this defines the days after which "
"remote items will be deleted. Own items, and marked or filed items are "
"always kept. 0 disables this behaviour."
msgstr ""
-#: src/Module/Admin/Site.php:569
+#: src/Module/Admin/Site.php:561
msgid "Lifespan of unclaimed items"
msgstr ""
-#: src/Module/Admin/Site.php:569
+#: src/Module/Admin/Site.php:561
msgid ""
"When the database cleanup is enabled, this defines the days after which "
"unclaimed remote items (mostly content from the relay) will be deleted. "
@@ -5230,175 +5298,184 @@ msgid ""
"items if set to 0."
msgstr ""
-#: src/Module/Admin/Site.php:570
+#: src/Module/Admin/Site.php:562
msgid "Lifespan of raw conversation data"
msgstr ""
-#: src/Module/Admin/Site.php:570
+#: src/Module/Admin/Site.php:562
msgid ""
-"The conversation data is used for ActivityPub and OStatus, as well as for "
-"debug purposes. It should be safe to remove it after 14 days, default is 90 "
-"days."
+"The conversation data is used for ActivityPub, as well as for debug "
+"purposes. It should be safe to remove it after 14 days, default is 90 days."
msgstr ""
-#: src/Module/Admin/Site.php:571
+#: src/Module/Admin/Site.php:563
msgid "Maximum numbers of comments per post"
msgstr ""
-#: src/Module/Admin/Site.php:571
+#: src/Module/Admin/Site.php:563
msgid "How much comments should be shown for each post? Default value is 100."
msgstr ""
-#: src/Module/Admin/Site.php:572
+#: src/Module/Admin/Site.php:564
msgid "Maximum numbers of comments per post on the display page"
msgstr ""
-#: src/Module/Admin/Site.php:572
+#: src/Module/Admin/Site.php:564
msgid ""
"How many comments should be shown on the single view for each post? Default "
"value is 1000."
msgstr ""
-#: src/Module/Admin/Site.php:573
+#: src/Module/Admin/Site.php:565
msgid "Items per page"
msgstr ""
-#: src/Module/Admin/Site.php:573
+#: src/Module/Admin/Site.php:565
msgid ""
"Number of items per page in stream pages (network, community, "
"profile/contact statuses, search)."
msgstr ""
-#: src/Module/Admin/Site.php:574
+#: src/Module/Admin/Site.php:566
msgid "Items per page for mobile devices"
msgstr ""
-#: src/Module/Admin/Site.php:574
+#: src/Module/Admin/Site.php:566
msgid ""
"Number of items per page in stream pages (network, community, "
"profile/contact statuses, search) for mobile devices."
msgstr ""
-#: src/Module/Admin/Site.php:575
+#: src/Module/Admin/Site.php:567
msgid "Temp path"
msgstr ""
-#: src/Module/Admin/Site.php:575
+#: src/Module/Admin/Site.php:567
msgid ""
"If you have a restricted system where the webserver can't access the system "
"temp path, enter another path here."
msgstr ""
-#: src/Module/Admin/Site.php:576
+#: src/Module/Admin/Site.php:568
msgid "Only search in tags"
msgstr ""
-#: src/Module/Admin/Site.php:576
+#: src/Module/Admin/Site.php:568
msgid "On large systems the text search can slow down the system extremely."
msgstr ""
-#: src/Module/Admin/Site.php:577
+#: src/Module/Admin/Site.php:569
+msgid "Limited search scope"
+msgstr ""
+
+#: src/Module/Admin/Site.php:569
+msgid ""
+"If enabled, searches will only be performed in the data used for the "
+"channels and not in all posts."
+msgstr ""
+
+#: src/Module/Admin/Site.php:570
msgid "Maximum age of items in the search table"
msgstr ""
-#: src/Module/Admin/Site.php:577
+#: src/Module/Admin/Site.php:570
msgid ""
"Maximum age of items in the search table in days. Lower values will increase"
" the performance and reduce disk usage. 0 means no age restriction."
msgstr ""
-#: src/Module/Admin/Site.php:578
+#: src/Module/Admin/Site.php:571
msgid "Generate counts per contact circle when calculating network count"
msgstr ""
-#: src/Module/Admin/Site.php:578
+#: src/Module/Admin/Site.php:571
msgid ""
"On systems with users that heavily use contact circles the query can be very"
" expensive."
msgstr ""
-#: src/Module/Admin/Site.php:579
+#: src/Module/Admin/Site.php:572
msgid "Process \"view\" activities"
msgstr ""
-#: src/Module/Admin/Site.php:579
+#: src/Module/Admin/Site.php:572
msgid ""
"\"view\" activities are mostly geberated by Peertube systems. Per default "
"they are not processed for performance reasons. Only activate this option on"
" performant system."
msgstr ""
-#: src/Module/Admin/Site.php:580
+#: src/Module/Admin/Site.php:573
msgid "Days, after which a contact is archived"
msgstr ""
-#: src/Module/Admin/Site.php:580
+#: src/Module/Admin/Site.php:573
msgid ""
"Number of days that we try to deliver content or to update the contact data "
"before we archive a contact."
msgstr ""
-#: src/Module/Admin/Site.php:582
+#: src/Module/Admin/Site.php:575
msgid "Maximum number of parallel workers"
msgstr ""
-#: src/Module/Admin/Site.php:582
+#: src/Module/Admin/Site.php:575
#, php-format
msgid ""
"On shared hosters set this to %d. On larger systems, values of %d are great."
" Default value is %d."
msgstr ""
-#: src/Module/Admin/Site.php:583
+#: src/Module/Admin/Site.php:576
msgid "Maximum load for workers"
msgstr ""
-#: src/Module/Admin/Site.php:583
+#: src/Module/Admin/Site.php:576
msgid "Maximum load that causes a cooldown before each worker function call."
msgstr ""
-#: src/Module/Admin/Site.php:584
+#: src/Module/Admin/Site.php:577
msgid "Enable fastlane"
msgstr ""
-#: src/Module/Admin/Site.php:584
+#: src/Module/Admin/Site.php:577
msgid ""
"When enabed, the fastlane mechanism starts an additional worker if processes"
" with higher priority are blocked by processes of lower priority."
msgstr ""
-#: src/Module/Admin/Site.php:585
+#: src/Module/Admin/Site.php:578
msgid "Decoupled receiver"
msgstr ""
-#: src/Module/Admin/Site.php:585
+#: src/Module/Admin/Site.php:578
msgid ""
"Decouple incoming ActivityPub posts by processing them in the background via"
" a worker process. Only enable this on fast systems."
msgstr ""
-#: src/Module/Admin/Site.php:586
+#: src/Module/Admin/Site.php:579
msgid "Cron interval"
msgstr ""
-#: src/Module/Admin/Site.php:586
+#: src/Module/Admin/Site.php:579
msgid "Minimal period in minutes between two calls of the \"Cron\" worker job."
msgstr ""
-#: src/Module/Admin/Site.php:587
+#: src/Module/Admin/Site.php:580
msgid "Worker defer limit"
msgstr ""
-#: src/Module/Admin/Site.php:587
+#: src/Module/Admin/Site.php:580
msgid ""
"Per default the systems tries delivering for 15 times before dropping it."
msgstr ""
-#: src/Module/Admin/Site.php:588
+#: src/Module/Admin/Site.php:581
msgid "Worker fetch limit"
msgstr ""
-#: src/Module/Admin/Site.php:588
+#: src/Module/Admin/Site.php:581
msgid ""
"Number of worker tasks that are fetched in a single query. Higher values "
"should increase the performance, too high values will mostly likely decrease"
@@ -5406,214 +5483,214 @@ msgid ""
"system."
msgstr ""
-#: src/Module/Admin/Site.php:590
+#: src/Module/Admin/Site.php:583
msgid "Direct relay transfer"
msgstr ""
-#: src/Module/Admin/Site.php:590
+#: src/Module/Admin/Site.php:583
msgid ""
"Enables the direct transfer to other servers without using the relay servers"
msgstr ""
-#: src/Module/Admin/Site.php:591
+#: src/Module/Admin/Site.php:584
msgid "Relay scope"
msgstr ""
-#: src/Module/Admin/Site.php:591
+#: src/Module/Admin/Site.php:584
msgid ""
"Can be \"all\" or \"tags\". \"all\" means that every public post should be "
"received. \"tags\" means that only posts with selected tags should be "
"received."
msgstr ""
-#: src/Module/Admin/Site.php:591 src/Module/Contact/Profile.php:309
-#: src/Module/Settings/TwoFactor/Index.php:146
+#: src/Module/Admin/Site.php:584 src/Module/Contact/Profile.php:314
+#: src/Module/Settings/TwoFactor/Index.php:132
msgid "Disabled"
msgstr ""
-#: src/Module/Admin/Site.php:591
+#: src/Module/Admin/Site.php:584
msgid "all"
msgstr ""
-#: src/Module/Admin/Site.php:591
+#: src/Module/Admin/Site.php:584
msgid "tags"
msgstr ""
-#: src/Module/Admin/Site.php:592
+#: src/Module/Admin/Site.php:585
msgid "Server tags"
msgstr ""
-#: src/Module/Admin/Site.php:592
+#: src/Module/Admin/Site.php:585
msgid "Comma separated list of tags for the \"tags\" subscription."
msgstr ""
-#: src/Module/Admin/Site.php:593
+#: src/Module/Admin/Site.php:586
msgid "Deny Server tags"
msgstr ""
-#: src/Module/Admin/Site.php:593
+#: src/Module/Admin/Site.php:586
msgid "Comma separated list of tags that are rejected."
msgstr ""
-#: src/Module/Admin/Site.php:594
+#: src/Module/Admin/Site.php:587
msgid "Maximum amount of tags"
msgstr ""
-#: src/Module/Admin/Site.php:594
+#: src/Module/Admin/Site.php:587
msgid ""
"Maximum amount of tags in a post before it is rejected as spam. The post has"
" to contain at least one link. Posts from subscribed accounts will not be "
"rejected."
msgstr ""
-#: src/Module/Admin/Site.php:595
+#: src/Module/Admin/Site.php:588
msgid "Allow user tags"
msgstr ""
-#: src/Module/Admin/Site.php:595
+#: src/Module/Admin/Site.php:588
msgid ""
"If enabled, the tags from the saved searches will used for the \"tags\" "
"subscription in addition to the \"relay_server_tags\"."
msgstr ""
-#: src/Module/Admin/Site.php:596
+#: src/Module/Admin/Site.php:589
msgid "Deny undetected languages"
msgstr ""
-#: src/Module/Admin/Site.php:596
+#: src/Module/Admin/Site.php:589
msgid "If enabled, posts with undetected languages will be rejected."
msgstr ""
-#: src/Module/Admin/Site.php:597
+#: src/Module/Admin/Site.php:590
msgid "Language Quality"
msgstr ""
-#: src/Module/Admin/Site.php:597
+#: src/Module/Admin/Site.php:590
msgid "The minimum language quality that is required to accept the post."
msgstr ""
-#: src/Module/Admin/Site.php:598
+#: src/Module/Admin/Site.php:591
msgid "Number of languages for the language detection"
msgstr ""
-#: src/Module/Admin/Site.php:598
+#: src/Module/Admin/Site.php:591
msgid ""
"The system detects a list of languages per post. Only if the desired "
"languages are in the list, the message will be accepted. The higher the "
"number, the more posts will be falsely detected."
msgstr ""
-#: src/Module/Admin/Site.php:600
+#: src/Module/Admin/Site.php:593
msgid "Maximum age of channel"
msgstr ""
-#: src/Module/Admin/Site.php:600
+#: src/Module/Admin/Site.php:593
msgid ""
"This defines the maximum age in hours of items that should be displayed in "
"channels. This affects the channel performance."
msgstr ""
-#: src/Module/Admin/Site.php:601
+#: src/Module/Admin/Site.php:594
msgid "Maximum number of channel posts"
msgstr ""
-#: src/Module/Admin/Site.php:601
+#: src/Module/Admin/Site.php:594
msgid ""
"For performance reasons, the channels use a dedicated table to store "
"content. The higher the value the slower the channels."
msgstr ""
-#: src/Module/Admin/Site.php:602
+#: src/Module/Admin/Site.php:595
msgid "Interaction score days"
msgstr ""
-#: src/Module/Admin/Site.php:602
+#: src/Module/Admin/Site.php:595
msgid "Number of days that are used to calculate the interaction score."
msgstr ""
-#: src/Module/Admin/Site.php:603
+#: src/Module/Admin/Site.php:596
msgid "Maximum number of posts per author"
msgstr ""
-#: src/Module/Admin/Site.php:603
+#: src/Module/Admin/Site.php:596
msgid ""
"Maximum number of posts per page by author if the contact frequency is set "
"to \"Display only few posts\". If there are more posts, then the post with "
"the most interactions will be displayed."
msgstr ""
-#: src/Module/Admin/Site.php:604
+#: src/Module/Admin/Site.php:597
msgid "Sharer interaction days"
msgstr ""
-#: src/Module/Admin/Site.php:604
+#: src/Module/Admin/Site.php:597
msgid ""
"Number of days of the last interaction that are used to define which sharers"
" are used for the \"sharers of sharers\" channel."
msgstr ""
-#: src/Module/Admin/Site.php:607
+#: src/Module/Admin/Site.php:600
msgid "Start Relocation"
msgstr ""
-#: src/Module/Admin/Storage.php:46
+#: src/Module/Admin/Storage.php:32
#, php-format
msgid "Storage backend, %s is invalid."
msgstr ""
-#: src/Module/Admin/Storage.php:73
+#: src/Module/Admin/Storage.php:59
#, php-format
msgid "Storage backend %s error: %s"
msgstr ""
-#: src/Module/Admin/Storage.php:84 src/Module/Admin/Storage.php:87
+#: src/Module/Admin/Storage.php:70 src/Module/Admin/Storage.php:73
msgid "Invalid storage backend setting value."
msgstr ""
-#: src/Module/Admin/Storage.php:139
+#: src/Module/Admin/Storage.php:125
msgid "Current Storage Backend"
msgstr ""
-#: src/Module/Admin/Storage.php:140
+#: src/Module/Admin/Storage.php:126
msgid "Storage Configuration"
msgstr ""
-#: src/Module/Admin/Storage.php:141 src/Module/BaseAdmin.php:91
+#: src/Module/Admin/Storage.php:127 src/Module/BaseAdmin.php:77
msgid "Storage"
msgstr ""
-#: src/Module/Admin/Storage.php:143
+#: src/Module/Admin/Storage.php:129
msgid "Save & Use storage backend"
msgstr ""
-#: src/Module/Admin/Storage.php:144
+#: src/Module/Admin/Storage.php:130
msgid "Use storage backend"
msgstr ""
-#: src/Module/Admin/Storage.php:145
+#: src/Module/Admin/Storage.php:131
msgid "Save & Reload"
msgstr ""
-#: src/Module/Admin/Storage.php:146
+#: src/Module/Admin/Storage.php:132
msgid "This backend doesn't have custom settings"
msgstr ""
-#: src/Module/Admin/Storage.php:148
+#: src/Module/Admin/Storage.php:134
msgid ""
"Changing the current backend is prohibited because it is set by an "
"environment variable"
msgstr ""
-#: src/Module/Admin/Storage.php:150
+#: src/Module/Admin/Storage.php:136
msgid "Database (legacy)"
msgstr ""
-#: src/Module/Admin/Summary.php:55
+#: src/Module/Admin/Summary.php:41
#, php-format
msgid "Template engine (%s) error: %s"
msgstr ""
-#: src/Module/Admin/Summary.php:59
+#: src/Module/Admin/Summary.php:45
#, php-format
msgid ""
"Your DB still runs with MyISAM tables. You should change the engine type to "
@@ -5624,7 +5701,7 @@ msgid ""
" an automatic conversion.The server domain pattern syntax is case-insensitive shell wildcard, comprising the following special characters:
\n" "This file can be downloaded from the /friendica
path of any "
"Friendica server.
debug.store_source
config key is set in "
"config/local.config.php
for future items to have sources."
msgstr ""
-#: src/Module/Moderation/Item/Source.php:92
+#: src/Module/Moderation/Item/Source.php:84
msgid "Item Guid"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:95
+#: src/Module/Moderation/Report/Create.php:81
msgid "Contact not found or their server is already blocked on this node."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:136
+#: src/Module/Moderation/Report/Create.php:122
msgid "Please login to access this page."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:165
-#: src/Module/Moderation/Report/Create.php:180
-#: src/Module/Moderation/Report/Create.php:208
-#: src/Module/Moderation/Report/Create.php:260
-#: src/Module/Moderation/Report/Create.php:279
+#: src/Module/Moderation/Report/Create.php:151
+#: src/Module/Moderation/Report/Create.php:166
+#: src/Module/Moderation/Report/Create.php:194
+#: src/Module/Moderation/Report/Create.php:246
+#: src/Module/Moderation/Report/Create.php:265
msgid "Create Moderation Report"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:166
+#: src/Module/Moderation/Report/Create.php:152
msgid "Pick Contact"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:167
+#: src/Module/Moderation/Report/Create.php:153
msgid ""
"Please enter below the contact address or profile URL you would like to "
"create a moderation report about."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:171
+#: src/Module/Moderation/Report/Create.php:157
msgid "Contact address/URL"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:181
+#: src/Module/Moderation/Report/Create.php:167
msgid "Pick Category"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:182
+#: src/Module/Moderation/Report/Create.php:168
msgid "Please pick below the category of your report."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:186
-#: src/Module/Moderation/Report/Create.php:311
+#: src/Module/Moderation/Report/Create.php:172
+#: src/Module/Moderation/Report/Create.php:297
msgid "Spam"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:186
+#: src/Module/Moderation/Report/Create.php:172
msgid ""
"This contact is publishing many repeated/overly long posts/replies or "
"advertising their product/websites in otherwise irrelevant conversations."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:187
-#: src/Module/Moderation/Report/Create.php:312
+#: src/Module/Moderation/Report/Create.php:173
+#: src/Module/Moderation/Report/Create.php:298
msgid "Illegal Content"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:187
+#: src/Module/Moderation/Report/Create.php:173
msgid ""
"This contact is publishing content that is considered illegal in this node's"
" hosting juridiction."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:188
-#: src/Module/Moderation/Report/Create.php:313
+#: src/Module/Moderation/Report/Create.php:174
+#: src/Module/Moderation/Report/Create.php:299
msgid "Community Safety"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:188
+#: src/Module/Moderation/Report/Create.php:174
msgid ""
"This contact aggravated you or other people, by being provocative or "
"insensitive, intentionally or not. This includes disclosing people's private"
@@ -8384,12 +8457,12 @@ msgid ""
"replies."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:189
-#: src/Module/Moderation/Report/Create.php:314
+#: src/Module/Moderation/Report/Create.php:175
+#: src/Module/Moderation/Report/Create.php:300
msgid "Unwanted Content/Behavior"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:189
+#: src/Module/Moderation/Report/Create.php:175
msgid ""
"This contact has repeatedly published content irrelevant to the node's theme"
" or is openly criticizing the node's administration/moderation without "
@@ -8397,89 +8470,89 @@ msgid ""
"nitpicking on a sensitive topic."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:190
-#: src/Module/Moderation/Report/Create.php:315
+#: src/Module/Moderation/Report/Create.php:176
+#: src/Module/Moderation/Report/Create.php:301
msgid "Rules Violation"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:190
+#: src/Module/Moderation/Report/Create.php:176
msgid ""
"This contact violated one or more rules of this node. You will be able to "
"pick which one(s) in the next step."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:191
+#: src/Module/Moderation/Report/Create.php:177
msgid ""
"Please elaborate below why you submitted this report. The more details you "
"provide, the better your report can be handled."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:193
+#: src/Module/Moderation/Report/Create.php:179
msgid "Additional Information"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:193
+#: src/Module/Moderation/Report/Create.php:179
msgid ""
"Please provide any additional information relevant to this particular "
"report. You will be able to attach posts by this contact in the next step, "
"but any context is welcome."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:209
+#: src/Module/Moderation/Report/Create.php:195
msgid "Pick Rules"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:210
+#: src/Module/Moderation/Report/Create.php:196
msgid "Please pick below the node rules you believe this contact violated."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:261
+#: src/Module/Moderation/Report/Create.php:247
msgid "Pick Posts"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:262
+#: src/Module/Moderation/Report/Create.php:248
msgid "Please optionally pick posts to attach to your report."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:281
+#: src/Module/Moderation/Report/Create.php:267
msgid "Submit Report"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:282
+#: src/Module/Moderation/Report/Create.php:268
msgid "Further Action"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:283
+#: src/Module/Moderation/Report/Create.php:269
msgid ""
"You can also perform one of the following action on the contact you "
"reported:"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:291
+#: src/Module/Moderation/Report/Create.php:277
msgid "Nothing"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:292
+#: src/Module/Moderation/Report/Create.php:278
msgid "Collapse contact"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:292
+#: src/Module/Moderation/Report/Create.php:278
msgid ""
"Their posts and replies will keep appearing in your Network page but their "
"content will be collapsed by default."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:293
+#: src/Module/Moderation/Report/Create.php:279
msgid ""
"Their posts won't appear in your Network page anymore, but their replies can"
" appear in forum threads. They still can follow you."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:294
+#: src/Module/Moderation/Report/Create.php:280
msgid "Block contact"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:294
+#: src/Module/Moderation/Report/Create.php:280
msgid ""
"Their posts won't appear in your Network page anymore, but their replies can"
" appear in forum threads, with their content collapsed by default. They "
@@ -8487,723 +8560,694 @@ msgid ""
"means."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:297
+#: src/Module/Moderation/Report/Create.php:283
msgid "Forward report"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:297
+#: src/Module/Moderation/Report/Create.php:283
msgid "Would you ike to forward this report to the remote server?"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:330
+#: src/Module/Moderation/Report/Create.php:316
msgid "1. Pick a contact"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:331
+#: src/Module/Moderation/Report/Create.php:317
msgid "2. Pick a category"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:332
+#: src/Module/Moderation/Report/Create.php:318
msgid "2a. Pick rules"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:333
+#: src/Module/Moderation/Report/Create.php:319
msgid "2b. Add comment"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:334
+#: src/Module/Moderation/Report/Create.php:320
msgid "3. Pick posts"
msgstr ""
-#: src/Module/Moderation/Reports.php:90
+#: src/Module/Moderation/Reports.php:97
msgid "List of reports"
msgstr ""
-#: src/Module/Moderation/Reports.php:91
+#: src/Module/Moderation/Reports.php:98
msgid "This page display reports created by our or remote users."
msgstr ""
-#: src/Module/Moderation/Reports.php:92
+#: src/Module/Moderation/Reports.php:99
msgid "No report exists at this node."
msgstr ""
-#: src/Module/Moderation/Reports.php:95
+#: src/Module/Moderation/Reports.php:102
msgid "Category"
msgstr ""
-#: src/Module/Moderation/Reports.php:101
+#: src/Module/Moderation/Reports.php:106
#, php-format
msgid "%s total report"
msgid_plural "%s total reports"
msgstr[0] ""
msgstr[1] ""
-#: src/Module/Moderation/Reports.php:104
+#: src/Module/Moderation/Reports.php:109
msgid "URL of the reported contact."
msgstr ""
-#: src/Module/Moderation/Summary.php:57 src/Module/Settings/Account.php:431
+#: src/Module/Moderation/Summary.php:43 src/Module/Settings/Account.php:422
msgid "Channel Relay"
msgstr ""
-#: src/Module/Moderation/Summary.php:77
+#: src/Module/Moderation/Summary.php:63
msgid "Registered users"
msgstr "Registrataj uzantoj"
-#: src/Module/Moderation/Summary.php:79
+#: src/Module/Moderation/Summary.php:65
msgid "Pending registrations"
msgstr "Okazontaj registradoj"
-#: src/Module/Moderation/Users/Active.php:43
-#: src/Module/Moderation/Users/Index.php:43
+#: src/Module/Moderation/Users/Active.php:29
+#: src/Module/Moderation/Users/Index.php:29
#, php-format
msgid "%s user blocked"
msgid_plural "%s users blocked"
msgstr[0] ""
msgstr[1] ""
-#: src/Module/Moderation/Users/Active.php:51
-#: src/Module/Moderation/Users/Active.php:85
-#: src/Module/Moderation/Users/Blocked.php:51
-#: src/Module/Moderation/Users/Blocked.php:85
-#: src/Module/Moderation/Users/Index.php:58
-#: src/Module/Moderation/Users/Index.php:92
+#: src/Module/Moderation/Users/Active.php:37
+#: src/Module/Moderation/Users/Active.php:71
+#: src/Module/Moderation/Users/Blocked.php:37
+#: src/Module/Moderation/Users/Blocked.php:71
+#: src/Module/Moderation/Users/Index.php:44
+#: src/Module/Moderation/Users/Index.php:78
msgid "You can't remove yourself"
msgstr ""
-#: src/Module/Moderation/Users/Active.php:55
-#: src/Module/Moderation/Users/Blocked.php:55
-#: src/Module/Moderation/Users/Index.php:62
+#: src/Module/Moderation/Users/Active.php:41
+#: src/Module/Moderation/Users/Blocked.php:41
+#: src/Module/Moderation/Users/Index.php:48
#, php-format
msgid "%s user deleted"
msgid_plural "%s users deleted"
msgstr[0] "%s uzanto forviŝita"
msgstr[1] "%s uzanto forviŝitaj"
-#: src/Module/Moderation/Users/Active.php:83
-#: src/Module/Moderation/Users/Blocked.php:83
-#: src/Module/Moderation/Users/Index.php:90
+#: src/Module/Moderation/Users/Active.php:69
+#: src/Module/Moderation/Users/Blocked.php:69
+#: src/Module/Moderation/Users/Index.php:76
#, php-format
msgid "User \"%s\" deleted"
msgstr ""
-#: src/Module/Moderation/Users/Active.php:93
-#: src/Module/Moderation/Users/Index.php:100
+#: src/Module/Moderation/Users/Active.php:79
+#: src/Module/Moderation/Users/Index.php:86
#, php-format
msgid "User \"%s\" blocked"
msgstr ""
-#: src/Module/Moderation/Users/Active.php:126
-#: src/Module/Moderation/Users/Blocked.php:126
-#: src/Module/Moderation/Users/Deleted.php:83
-#: src/Module/Moderation/Users/Index.php:140
-#: src/Module/Moderation/Users/Index.php:160
+#: src/Module/Moderation/Users/Active.php:112
+#: src/Module/Moderation/Users/Blocked.php:112
+#: src/Module/Moderation/Users/Deleted.php:69
+#: src/Module/Moderation/Users/Index.php:126
+#: src/Module/Moderation/Users/Index.php:146
msgid "Register date"
msgstr "Dato de registrado"
-#: src/Module/Moderation/Users/Active.php:126
-#: src/Module/Moderation/Users/Blocked.php:126
-#: src/Module/Moderation/Users/Deleted.php:83
-#: src/Module/Moderation/Users/Index.php:140
-#: src/Module/Moderation/Users/Index.php:160
+#: src/Module/Moderation/Users/Active.php:112
+#: src/Module/Moderation/Users/Blocked.php:112
+#: src/Module/Moderation/Users/Deleted.php:69
+#: src/Module/Moderation/Users/Index.php:126
+#: src/Module/Moderation/Users/Index.php:146
msgid "Last login"
msgstr "Plej ĵusa ensaluto"
-#: src/Module/Moderation/Users/Active.php:126
-#: src/Module/Moderation/Users/Blocked.php:126
-#: src/Module/Moderation/Users/Deleted.php:83
-#: src/Module/Moderation/Users/Index.php:140
-#: src/Module/Moderation/Users/Index.php:160
+#: src/Module/Moderation/Users/Active.php:112
+#: src/Module/Moderation/Users/Blocked.php:112
+#: src/Module/Moderation/Users/Deleted.php:69
+#: src/Module/Moderation/Users/Index.php:126
+#: src/Module/Moderation/Users/Index.php:146
msgid "Last public item"
msgstr ""
-#: src/Module/Moderation/Users/Active.php:134
+#: src/Module/Moderation/Users/Active.php:120
msgid "Active Accounts"
msgstr ""
-#: src/Module/Moderation/Users/Active.php:138
-#: src/Module/Moderation/Users/Blocked.php:137
-#: src/Module/Moderation/Users/Index.php:153
+#: src/Module/Moderation/Users/Active.php:124
+#: src/Module/Moderation/Users/Blocked.php:123
+#: src/Module/Moderation/Users/Index.php:139
msgid "User blocked"
msgstr ""
-#: src/Module/Moderation/Users/Active.php:139
-#: src/Module/Moderation/Users/Blocked.php:139
-#: src/Module/Moderation/Users/Index.php:155
+#: src/Module/Moderation/Users/Active.php:125
+#: src/Module/Moderation/Users/Blocked.php:125
+#: src/Module/Moderation/Users/Index.php:141
msgid "Site admin"
msgstr ""
-#: src/Module/Moderation/Users/Active.php:140
-#: src/Module/Moderation/Users/Blocked.php:140
-#: src/Module/Moderation/Users/Index.php:156
+#: src/Module/Moderation/Users/Active.php:126
+#: src/Module/Moderation/Users/Blocked.php:126
+#: src/Module/Moderation/Users/Index.php:142
msgid "Account expired"
msgstr ""
-#: src/Module/Moderation/Users/Active.php:141
-#: src/Module/Moderation/Users/Index.php:159
+#: src/Module/Moderation/Users/Active.php:127
+#: src/Module/Moderation/Users/Index.php:145
msgid "Create a new user"
msgstr ""
-#: src/Module/Moderation/Users/Active.php:147
-#: src/Module/Moderation/Users/Blocked.php:146
-#: src/Module/Moderation/Users/Index.php:165
+#: src/Module/Moderation/Users/Active.php:133
+#: src/Module/Moderation/Users/Blocked.php:132
+#: src/Module/Moderation/Users/Index.php:151
msgid ""
"Selected users will be deleted!\\n\\nEverything these users had posted on "
"this site will be permanently deleted!\\n\\nAre you sure?"
msgstr "La elektitaj uzantkontoj estas forviŝotaj!\\n\\nĈiuj elementoj kiujn ili afiŝis je la retpaĝo estos permanente forviŝitaj.\\n\\nĈu vi certas?"
-#: src/Module/Moderation/Users/Active.php:148
-#: src/Module/Moderation/Users/Blocked.php:147
-#: src/Module/Moderation/Users/Index.php:166
+#: src/Module/Moderation/Users/Active.php:134
+#: src/Module/Moderation/Users/Blocked.php:133
+#: src/Module/Moderation/Users/Index.php:152
msgid ""
"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
"site will be permanently deleted!\\n\\nAre you sure?"
msgstr "La uzanto {0} estas forviŝota!\\n\\nĈiuj elementoj kiujn li afiŝis je la retpaĝo estos permanente forviŝitaj.\\n\\nĈu vi certas?"
-#: src/Module/Moderation/Users/Blocked.php:43
-#: src/Module/Moderation/Users/Index.php:50
+#: src/Module/Moderation/Users/Blocked.php:29
+#: src/Module/Moderation/Users/Index.php:36
#, php-format
msgid "%s user unblocked"
msgid_plural "%s users unblocked"
msgstr[0] ""
msgstr[1] ""
-#: src/Module/Moderation/Users/Blocked.php:92
-#: src/Module/Moderation/Users/Index.php:106
+#: src/Module/Moderation/Users/Blocked.php:78
+#: src/Module/Moderation/Users/Index.php:92
#, php-format
msgid "User \"%s\" unblocked"
msgstr ""
-#: src/Module/Moderation/Users/Blocked.php:134
+#: src/Module/Moderation/Users/Blocked.php:120
msgid "Blocked Users"
msgstr ""
-#: src/Module/Moderation/Users/Create.php:62
+#: src/Module/Moderation/Users/Create.php:48
msgid "New User"
msgstr ""
-#: src/Module/Moderation/Users/Create.php:63
+#: src/Module/Moderation/Users/Create.php:49
msgid "Add User"
msgstr ""
-#: src/Module/Moderation/Users/Create.php:70
+#: src/Module/Moderation/Users/Create.php:56
msgid "Name of the new user."
msgstr ""
-#: src/Module/Moderation/Users/Create.php:71
+#: src/Module/Moderation/Users/Create.php:57
msgid "Nickname"
msgstr ""
-#: src/Module/Moderation/Users/Create.php:71
+#: src/Module/Moderation/Users/Create.php:57
msgid "Nickname of the new user."
msgstr ""
-#: src/Module/Moderation/Users/Create.php:72
+#: src/Module/Moderation/Users/Create.php:58
msgid "Email address of the new user."
msgstr ""
-#: src/Module/Moderation/Users/Deleted.php:81
+#: src/Module/Moderation/Users/Deleted.php:67
msgid "Users awaiting permanent deletion"
msgstr ""
-#: src/Module/Moderation/Users/Deleted.php:83
-#: src/Module/Moderation/Users/Index.php:160
+#: src/Module/Moderation/Users/Deleted.php:69
+#: src/Module/Moderation/Users/Index.php:146
msgid "Permanent deletion"
msgstr ""
-#: src/Module/Moderation/Users/Index.php:150
+#: src/Module/Moderation/Users/Index.php:136
msgid "User waiting for permanent deletion"
msgstr ""
-#: src/Module/Moderation/Users/Pending.php:44
+#: src/Module/Moderation/Users/Pending.php:30
#, php-format
msgid "%s user approved"
msgid_plural "%s users approved"
msgstr[0] ""
msgstr[1] ""
-#: src/Module/Moderation/Users/Pending.php:51
+#: src/Module/Moderation/Users/Pending.php:37
#, php-format
msgid "%s registration revoked"
msgid_plural "%s registrations revoked"
msgstr[0] ""
msgstr[1] ""
-#: src/Module/Moderation/Users/Pending.php:76
+#: src/Module/Moderation/Users/Pending.php:62
msgid "Account approved."
msgstr "Konto aprobita."
-#: src/Module/Moderation/Users/Pending.php:82
+#: src/Module/Moderation/Users/Pending.php:68
msgid "Registration revoked"
msgstr ""
-#: src/Module/Moderation/Users/Pending.php:97
+#: src/Module/Moderation/Users/Pending.php:83
msgid "User registrations awaiting review"
msgstr ""
-#: src/Module/Moderation/Users/Pending.php:99
+#: src/Module/Moderation/Users/Pending.php:85
msgid "Request date"
msgstr "Dato de peto"
-#: src/Module/Moderation/Users/Pending.php:100
+#: src/Module/Moderation/Users/Pending.php:86
msgid "No registrations."
msgstr "Neniom da registriĝoj."
-#: src/Module/Moderation/Users/Pending.php:101
+#: src/Module/Moderation/Users/Pending.php:87
msgid "Note from the user"
msgstr ""
-#: src/Module/Moderation/Users/Pending.php:103
+#: src/Module/Moderation/Users/Pending.php:89
msgid "Deny"
msgstr "Negi"
-#: src/Module/Notifications/Introductions.php:99
+#: src/Module/Notifications/Introductions.php:91
msgid "Show Ignored Requests"
msgstr "Montri ignoritajn petojn"
-#: src/Module/Notifications/Introductions.php:99
+#: src/Module/Notifications/Introductions.php:91
msgid "Hide Ignored Requests"
msgstr "Kaŝi ignoritajn petojn"
-#: src/Module/Notifications/Introductions.php:115
-#: src/Module/Notifications/Introductions.php:178
+#: src/Module/Notifications/Introductions.php:107
+#: src/Module/Notifications/Introductions.php:170
msgid "Notification type:"
msgstr ""
-#: src/Module/Notifications/Introductions.php:118
+#: src/Module/Notifications/Introductions.php:110
msgid "Suggested by:"
msgstr ""
-#: src/Module/Notifications/Introductions.php:143
+#: src/Module/Notifications/Introductions.php:135
msgid "Claims to be known to you: "
msgstr "Pensas ke vi konas ilin:"
#: src/Module/Notifications/Introductions.php:144
-#: src/Module/OAuth/Acknowledge.php:55 src/Module/Register.php:131
-#: src/Module/Settings/TwoFactor/Trusted.php:129
-msgid "No"
-msgstr "Ne"
-
-#: src/Module/Notifications/Introductions.php:152
msgid "Shall your connection be bidirectional or not?"
msgstr ""
-#: src/Module/Notifications/Introductions.php:153
+#: src/Module/Notifications/Introductions.php:145
#, php-format
msgid ""
"Accepting %s as a friend allows %s to subscribe to your posts, and you will "
"also receive updates from them in your news feed."
msgstr ""
-#: src/Module/Notifications/Introductions.php:154
+#: src/Module/Notifications/Introductions.php:146
#, php-format
msgid ""
"Accepting %s as a subscriber allows them to subscribe to your posts, but you"
" will not receive updates from them in your news feed."
msgstr ""
-#: src/Module/Notifications/Introductions.php:156
+#: src/Module/Notifications/Introductions.php:148
msgid "Friend"
msgstr "Amiko"
-#: src/Module/Notifications/Introductions.php:157
+#: src/Module/Notifications/Introductions.php:149
msgid "Subscriber"
msgstr ""
-#: src/Module/Notifications/Introductions.php:216
+#: src/Module/Notifications/Introductions.php:208
msgid "No introductions."
msgstr "Neniom da prezentoj"
-#: src/Module/Notifications/Introductions.php:217
-#: src/Module/Notifications/Notifications.php:135
+#: src/Module/Notifications/Introductions.php:209
+#: src/Module/Notifications/Notifications.php:127
#, php-format
msgid "No more %s notifications."
msgstr ""
-#: src/Module/Notifications/Notification.php:135
+#: src/Module/Notifications/Notification.php:121
msgid "You must be logged in to show this page."
msgstr ""
-#: src/Module/Notifications/Notifications.php:66
+#: src/Module/Notifications/Notifications.php:52
msgid "Network Notifications"
msgstr "Retaj Atentigoj"
-#: src/Module/Notifications/Notifications.php:72
+#: src/Module/Notifications/Notifications.php:58
msgid "System Notifications"
msgstr "Sistemaj Atentigoj"
-#: src/Module/Notifications/Notifications.php:78
+#: src/Module/Notifications/Notifications.php:64
msgid "Personal Notifications"
msgstr "Personaj Atentigoj"
-#: src/Module/Notifications/Notifications.php:84
+#: src/Module/Notifications/Notifications.php:70
msgid "Home Notifications"
msgstr "Hejmrilataj atentigoj"
-#: src/Module/Notifications/Notifications.php:140
+#: src/Module/Notifications/Notifications.php:132
msgid "Show unread"
msgstr ""
-#: src/Module/Notifications/Ping.php:246
+#: src/Module/Notifications/Ping.php:206
msgid "{0} requested registration"
msgstr "{0} petis registradon"
-#: src/Module/Notifications/Ping.php:255
+#: src/Module/Notifications/Ping.php:215
#, php-format
msgid "{0} and %d others requested registration"
msgstr ""
-#: src/Module/OAuth/Acknowledge.php:51
+#: src/Module/OAuth/Acknowledge.php:37
msgid "Authorize application connection"
msgstr "Rajtigi programkonekton"
-#: src/Module/OAuth/Acknowledge.php:53
+#: src/Module/OAuth/Acknowledge.php:39
msgid ""
"Do you want to authorize this application to access your posts and contacts,"
" and/or create new posts for you?"
msgstr "Ĉu rajtigi ĉi tiun programon por atingi viajn afiŝojn kaj kontaktojn kaj/aŭ krei novajn afiŝojn?"
-#: src/Module/OAuth/Authorize.php:54
+#: src/Module/OAuth/Authorize.php:40
msgid "Unsupported or missing response type"
msgstr ""
-#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:75
+#: src/Module/OAuth/Authorize.php:45 src/Module/OAuth/Token.php:61
msgid "Incomplete request data"
msgstr ""
-#: src/Module/OAuth/Authorize.php:106
+#: src/Module/OAuth/Authorize.php:92
#, php-format
msgid ""
"Please copy the following authentication code into your application and "
"close this window: %s"
msgstr ""
-#: src/Module/OAuth/Token.php:80
+#: src/Module/OAuth/Token.php:66
msgid "Invalid data or unknown client"
msgstr ""
-#: src/Module/OAuth/Token.php:105
+#: src/Module/OAuth/Token.php:91
msgid "Unsupported or missing grant type"
msgstr ""
-#: src/Module/OStatus/Repair.php:83
-msgid "Resubscribing to OStatus contacts"
-msgstr ""
-
-#: src/Module/OStatus/Repair.php:84 src/Module/OStatus/Subscribe.php:158
-msgid "Keep this window open until done."
-msgstr ""
-
-#: src/Module/OStatus/Repair.php:85
-msgid "✔ Done"
-msgstr ""
-
-#: src/Module/OStatus/Repair.php:86
-msgid "No OStatus contacts to resubscribe to."
-msgstr ""
-
-#: src/Module/OStatus/Subscribe.php:70
+#: src/Module/OStatus/Subscribe.php:58
msgid "Subscribing to contacts"
msgstr ""
-#: src/Module/OStatus/Subscribe.php:79
+#: src/Module/OStatus/Subscribe.php:67
msgid "No contact provided."
msgstr ""
-#: src/Module/OStatus/Subscribe.php:85
+#: src/Module/OStatus/Subscribe.php:73
msgid "Couldn't fetch information for contact."
msgstr ""
-#: src/Module/OStatus/Subscribe.php:96
+#: src/Module/OStatus/Subscribe.php:84
msgid "Couldn't fetch friends for contact."
msgstr ""
-#: src/Module/OStatus/Subscribe.php:102 src/Module/OStatus/Subscribe.php:113
+#: src/Module/OStatus/Subscribe.php:90 src/Module/OStatus/Subscribe.php:101
msgid "Couldn't fetch following contacts."
msgstr ""
-#: src/Module/OStatus/Subscribe.php:108
+#: src/Module/OStatus/Subscribe.php:96
msgid "Couldn't fetch remote profile."
msgstr ""
-#: src/Module/OStatus/Subscribe.php:118
+#: src/Module/OStatus/Subscribe.php:106
msgid "Unsupported network"
msgstr ""
-#: src/Module/OStatus/Subscribe.php:134
+#: src/Module/OStatus/Subscribe.php:122
msgid "Done"
msgstr ""
-#: src/Module/OStatus/Subscribe.php:148
+#: src/Module/OStatus/Subscribe.php:136
msgid "success"
msgstr ""
-#: src/Module/OStatus/Subscribe.php:150
+#: src/Module/OStatus/Subscribe.php:138
msgid "failed"
msgstr ""
-#: src/Module/OStatus/Subscribe.php:153
+#: src/Module/OStatus/Subscribe.php:141
msgid "ignored"
msgstr ""
-#: src/Module/PermissionTooltip.php:49
-#, php-format
-msgid "Wrong type \"%s\", expected one of: %s"
+#: src/Module/OStatus/Subscribe.php:146
+msgid "Keep this window open until done."
msgstr ""
-#: src/Module/PermissionTooltip.php:79
-msgid "Model not found"
-msgstr ""
-
-#: src/Module/PermissionTooltip.php:94
-msgid "Unlisted"
-msgstr ""
-
-#: src/Module/PermissionTooltip.php:112
-msgid "Remote privacy information not available."
-msgstr "Informoj pri fora privateca ne estas disponebla."
-
-#: src/Module/PermissionTooltip.php:120
-msgid "Visible to:"
-msgstr "Videbla al:"
-
-#: src/Module/PermissionTooltip.php:214
-#, php-format
-msgid "Collection (%s)"
-msgstr ""
-
-#: src/Module/PermissionTooltip.php:218
-#, php-format
-msgid "Followers (%s)"
-msgstr ""
-
-#: src/Module/PermissionTooltip.php:237
-#, php-format
-msgid "%d more"
-msgstr ""
-
-#: src/Module/PermissionTooltip.php:241
-#, php-format
-msgid "To: %sYou can enter one of your one-time recovery codes in case you lost access" " to your mobile device.
" msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:101 +#: src/Module/Security/TwoFactor/Recovery.php:87 #, php-format msgid "Don’t have your phone? Enter a two-factor recovery code" msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:102 +#: src/Module/Security/TwoFactor/Recovery.php:88 msgid "Please enter a recovery code" msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:103 +#: src/Module/Security/TwoFactor/Recovery.php:89 msgid "Submit recovery code and complete login" msgstr "" -#: src/Module/Security/TwoFactor/SignOut.php:122 +#: src/Module/Security/TwoFactor/SignOut.php:108 msgid "Sign out of this browser?" msgstr "" -#: src/Module/Security/TwoFactor/SignOut.php:123 +#: src/Module/Security/TwoFactor/SignOut.php:109 msgid "" "If you trust this browser, you will not be asked for verification code " "the next time you sign in.
" msgstr "" -#: src/Module/Security/TwoFactor/SignOut.php:124 +#: src/Module/Security/TwoFactor/SignOut.php:110 msgid "Sign out" msgstr "" -#: src/Module/Security/TwoFactor/SignOut.php:126 +#: src/Module/Security/TwoFactor/SignOut.php:112 msgid "Trust and sign out" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:96 +#: src/Module/Security/TwoFactor/Trust.php:82 msgid "Couldn't save browser to Cookie." msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:141 +#: src/Module/Security/TwoFactor/Trust.php:127 msgid "Trust this browser?" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:142 +#: src/Module/Security/TwoFactor/Trust.php:128 msgid "" "If you choose to trust this browser, you will not be asked for a " "verification code the next time you sign in.
" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:143 +#: src/Module/Security/TwoFactor/Trust.php:129 msgid "Not now" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:144 +#: src/Module/Security/TwoFactor/Trust.php:130 msgid "Don't trust" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:145 +#: src/Module/Security/TwoFactor/Trust.php:131 msgid "Trust" msgstr "" -#: src/Module/Security/TwoFactor/Verify.php:97 +#: src/Module/Security/TwoFactor/Verify.php:83 msgid "" "Open the two-factor authentication app on your device to get an " "authentication code and verify your identity.
" msgstr "" -#: src/Module/Security/TwoFactor/Verify.php:100 +#: src/Module/Security/TwoFactor/Verify.php:86 #, php-format msgid "" "If you do not have access to your authentication code you can use a two-factor recovery code." msgstr "" -#: src/Module/Security/TwoFactor/Verify.php:101 -#: src/Module/Settings/TwoFactor/Verify.php:158 +#: src/Module/Security/TwoFactor/Verify.php:87 +#: src/Module/Settings/TwoFactor/Verify.php:144 msgid "Please enter a code from your authentication app" msgstr "" -#: src/Module/Security/TwoFactor/Verify.php:102 +#: src/Module/Security/TwoFactor/Verify.php:88 msgid "Verify code and complete login" msgstr "" -#: src/Module/Settings/Account.php:96 +#: src/Module/Settings/Account.php:82 msgid "Please use a shorter name." msgstr "" -#: src/Module/Settings/Account.php:99 +#: src/Module/Settings/Account.php:85 msgid "Name too short." msgstr "" -#: src/Module/Settings/Account.php:108 +#: src/Module/Settings/Account.php:94 msgid "Wrong Password." msgstr "" -#: src/Module/Settings/Account.php:113 +#: src/Module/Settings/Account.php:99 msgid "Invalid email." msgstr "" -#: src/Module/Settings/Account.php:117 +#: src/Module/Settings/Account.php:103 msgid "Cannot change to that email." msgstr "" -#: src/Module/Settings/Account.php:146 src/Module/Settings/Account.php:195 -#: src/Module/Settings/Account.php:216 src/Module/Settings/Account.php:300 -#: src/Module/Settings/Account.php:329 +#: src/Module/Settings/Account.php:132 src/Module/Settings/Account.php:181 +#: src/Module/Settings/Account.php:202 src/Module/Settings/Account.php:286 +#: src/Module/Settings/Account.php:315 msgid "Settings were not updated." msgstr "" -#: src/Module/Settings/Account.php:342 +#: src/Module/Settings/Account.php:333 msgid "Contact CSV file upload error" msgstr "" -#: src/Module/Settings/Account.php:361 +#: src/Module/Settings/Account.php:352 msgid "Importing Contacts done" msgstr "" -#: src/Module/Settings/Account.php:374 +#: src/Module/Settings/Account.php:365 msgid "Relocate message has been send to your contacts" msgstr "" -#: src/Module/Settings/Account.php:391 +#: src/Module/Settings/Account.php:382 msgid "Unable to find your profile. Please contact your admin." msgstr "" -#: src/Module/Settings/Account.php:433 +#: src/Module/Settings/Account.php:424 msgid "" "Account for a service that automatically shares content based on user " "defined channels." msgstr "" -#: src/Module/Settings/Account.php:443 +#: src/Module/Settings/Account.php:434 msgid "Personal Page Subtypes" msgstr "" -#: src/Module/Settings/Account.php:444 +#: src/Module/Settings/Account.php:435 msgid "Community Group Subtypes" msgstr "" -#: src/Module/Settings/Account.php:455 +#: src/Module/Settings/Account.php:446 msgid "Account for a personal profile." msgstr "" -#: src/Module/Settings/Account.php:462 +#: src/Module/Settings/Account.php:453 msgid "" "Account for an organisation that automatically approves contact requests as " "\"Followers\"." msgstr "" -#: src/Module/Settings/Account.php:469 +#: src/Module/Settings/Account.php:460 msgid "" "Account for a news reflector that automatically approves contact requests as" " \"Followers\"." msgstr "" -#: src/Module/Settings/Account.php:476 +#: src/Module/Settings/Account.php:467 msgid "Account for community discussions." msgstr "" -#: src/Module/Settings/Account.php:484 +#: src/Module/Settings/Account.php:475 msgid "" "Account for a regular personal profile that requires manual approval of " "\"Friends\" and \"Followers\"." msgstr "" -#: src/Module/Settings/Account.php:491 +#: src/Module/Settings/Account.php:482 msgid "" "Account for a public profile that automatically approves contact requests as" " \"Followers\"." msgstr "" -#: src/Module/Settings/Account.php:498 +#: src/Module/Settings/Account.php:489 msgid "Automatically approves all contact requests." msgstr "" -#: src/Module/Settings/Account.php:505 +#: src/Module/Settings/Account.php:496 +msgid "Contact requests have to be manually approved." +msgstr "" + +#: src/Module/Settings/Account.php:503 msgid "" "Account for a popular profile that automatically approves contact requests " "as \"Friends\"." msgstr "" -#: src/Module/Settings/Account.php:510 +#: src/Module/Settings/Account.php:508 msgid "Private Group [Experimental]" msgstr "" -#: src/Module/Settings/Account.php:512 +#: src/Module/Settings/Account.php:510 msgid "Requires manual approval of contact requests." msgstr "" -#: src/Module/Settings/Account.php:521 +#: src/Module/Settings/Account.php:519 msgid "OpenID:" msgstr "OpenID:" -#: src/Module/Settings/Account.php:521 +#: src/Module/Settings/Account.php:519 msgid "(Optional) Allow this OpenID to login to this account." msgstr "(Nedeviga) Permesi atingon al la konton al ĉi tio OpenID." -#: src/Module/Settings/Account.php:529 +#: src/Module/Settings/Account.php:527 msgid "Publish your profile in your local site directory?" msgstr "" -#: src/Module/Settings/Account.php:529 +#: src/Module/Settings/Account.php:527 #, php-format msgid "" "Your profile will be published in this node's local " @@ -9787,94 +9835,94 @@ msgid "" " system settings." msgstr "" -#: src/Module/Settings/Account.php:535 +#: src/Module/Settings/Account.php:533 #, php-format msgid "" "Your profile will also be published in the global friendica directories " "(e.g. %s)." msgstr "" -#: src/Module/Settings/Account.php:548 +#: src/Module/Settings/Account.php:546 msgid "Account Settings" msgstr "Kontoagordoj" -#: src/Module/Settings/Account.php:549 +#: src/Module/Settings/Account.php:547 #, php-format msgid "Your Identity Address is '%s' or '%s'." msgstr "" -#: src/Module/Settings/Account.php:556 +#: src/Module/Settings/Account.php:554 msgid "Password Settings" msgstr "Agordoj pri Pasvorto" -#: src/Module/Settings/Account.php:558 +#: src/Module/Settings/Account.php:556 msgid "Leave password fields blank unless changing" msgstr "Lasu pasvortkampojn malplenaj se vi ne ŝanĝas la pasvorton." -#: src/Module/Settings/Account.php:560 +#: src/Module/Settings/Account.php:558 msgid "Password:" msgstr "" -#: src/Module/Settings/Account.php:560 +#: src/Module/Settings/Account.php:558 msgid "Your current password to confirm the changes of the email address" msgstr "" -#: src/Module/Settings/Account.php:563 +#: src/Module/Settings/Account.php:561 msgid "Delete OpenID URL" msgstr "" -#: src/Module/Settings/Account.php:565 +#: src/Module/Settings/Account.php:563 msgid "Basic Settings" msgstr "Bazaj Agordoj" -#: src/Module/Settings/Account.php:566 -#: src/Module/Settings/Profile/Index.php:283 +#: src/Module/Settings/Account.php:564 +#: src/Module/Settings/Profile/Index.php:274 msgid "Display name:" msgstr "" -#: src/Module/Settings/Account.php:567 +#: src/Module/Settings/Account.php:565 msgid "Email Address:" msgstr "Retpoŝtadreso:" -#: src/Module/Settings/Account.php:568 +#: src/Module/Settings/Account.php:566 msgid "Your Timezone:" msgstr "Via Horzono:" -#: src/Module/Settings/Account.php:569 +#: src/Module/Settings/Account.php:567 msgid "Your Language:" msgstr "" -#: src/Module/Settings/Account.php:569 +#: src/Module/Settings/Account.php:567 msgid "" "Set the language we use to show you friendica interface and to send you " "emails" msgstr "" -#: src/Module/Settings/Account.php:570 +#: src/Module/Settings/Account.php:568 msgid "Default Post Location:" msgstr "Defaŭlta Loko por Afiŝoj:" -#: src/Module/Settings/Account.php:571 +#: src/Module/Settings/Account.php:569 msgid "Use Browser Location:" msgstr "Uzu Lokon laŭ Retesplorilo:" -#: src/Module/Settings/Account.php:573 +#: src/Module/Settings/Account.php:571 msgid "Security and Privacy Settings" msgstr "Agordoj pri Sekureco kaj Privateco" -#: src/Module/Settings/Account.php:575 +#: src/Module/Settings/Account.php:573 msgid "Maximum Friend Requests/Day:" msgstr "Taga maksimumo da kontaktpetoj:" -#: src/Module/Settings/Account.php:575 +#: src/Module/Settings/Account.php:573 msgid "(to prevent spam abuse)" msgstr "(por malhelpi spamaĵojn)" -#: src/Module/Settings/Account.php:577 +#: src/Module/Settings/Account.php:575 msgid "Allow your profile to be searchable globally?" msgstr "" -#: src/Module/Settings/Account.php:577 +#: src/Module/Settings/Account.php:575 msgid "" "Activate this setting if you want others to easily find and follow you. Your" " profile will be searchable on remote systems. This setting also determines " @@ -9882,43 +9930,43 @@ msgid "" "indexed or not." msgstr "" -#: src/Module/Settings/Account.php:578 +#: src/Module/Settings/Account.php:576 msgid "Hide your contact/friend list from viewers of your profile?" msgstr "" -#: src/Module/Settings/Account.php:578 +#: src/Module/Settings/Account.php:576 msgid "" "A list of your contacts is displayed on your profile page. Activate this " "option to disable the display of your contact list." msgstr "" -#: src/Module/Settings/Account.php:579 +#: src/Module/Settings/Account.php:577 msgid "Hide your public content from anonymous viewers" msgstr "" -#: src/Module/Settings/Account.php:579 +#: src/Module/Settings/Account.php:577 msgid "" "Anonymous visitors will only see your basic profile details. Your public " "posts and replies will still be freely accessible on the remote servers of " "your followers and through relays." msgstr "" -#: src/Module/Settings/Account.php:580 +#: src/Module/Settings/Account.php:578 msgid "Make public posts unlisted" msgstr "" -#: src/Module/Settings/Account.php:580 +#: src/Module/Settings/Account.php:578 msgid "" "Your public posts will not appear on the community pages or in search " "results, nor be sent to relay servers. However they can still appear on " "public feeds on remote servers." msgstr "" -#: src/Module/Settings/Account.php:581 +#: src/Module/Settings/Account.php:579 msgid "Make all posted pictures accessible" msgstr "" -#: src/Module/Settings/Account.php:581 +#: src/Module/Settings/Account.php:579 msgid "" "This option makes every posted picture accessible via the direct link. This " "is a workaround for the problem that most other networks can't handle " @@ -9926,352 +9974,352 @@ msgid "" "public on your photo albums though." msgstr "" -#: src/Module/Settings/Account.php:582 +#: src/Module/Settings/Account.php:580 msgid "Allow friends to post to your profile page?" msgstr "Ĉu amikoj povu afiŝi al via profilo?" -#: src/Module/Settings/Account.php:582 +#: src/Module/Settings/Account.php:580 msgid "" "Your contacts may write posts on your profile wall. These posts will be " "distributed to your contacts" msgstr "" -#: src/Module/Settings/Account.php:583 +#: src/Module/Settings/Account.php:581 msgid "Allow friends to tag your posts?" msgstr "Ĉu amikoj povu aldoni markojn al viaj afiŝoj?" -#: src/Module/Settings/Account.php:583 +#: src/Module/Settings/Account.php:581 msgid "Your contacts can add additional tags to your posts." msgstr "" -#: src/Module/Settings/Account.php:584 +#: src/Module/Settings/Account.php:582 msgid "Default privacy circle for new contacts" msgstr "" -#: src/Module/Settings/Account.php:585 +#: src/Module/Settings/Account.php:583 msgid "Default privacy circle for new group contacts" msgstr "" -#: src/Module/Settings/Account.php:586 +#: src/Module/Settings/Account.php:584 msgid "Default Post Permissions" msgstr "Defaŭltaj permesoj por afiŝoj" -#: src/Module/Settings/Account.php:590 +#: src/Module/Settings/Account.php:588 msgid "Expiration settings" msgstr "" -#: src/Module/Settings/Account.php:591 +#: src/Module/Settings/Account.php:589 msgid "Automatically expire posts after this many days:" msgstr "Automatike senvalidigi afiŝojn post tiom da tagoj:" -#: src/Module/Settings/Account.php:591 +#: src/Module/Settings/Account.php:589 msgid "If empty, posts will not expire. Expired posts will be deleted" msgstr "Se malplena, afiŝoj neniam senvalidiĝos. Senvalidigitajn afiŝon estos forviŝata" -#: src/Module/Settings/Account.php:592 +#: src/Module/Settings/Account.php:590 msgid "Expire posts" msgstr "" -#: src/Module/Settings/Account.php:592 +#: src/Module/Settings/Account.php:590 msgid "When activated, posts and comments will be expired." msgstr "" -#: src/Module/Settings/Account.php:593 +#: src/Module/Settings/Account.php:591 msgid "Expire personal notes" msgstr "" -#: src/Module/Settings/Account.php:593 +#: src/Module/Settings/Account.php:591 msgid "" "When activated, the personal notes on your profile page will be expired." msgstr "" -#: src/Module/Settings/Account.php:594 +#: src/Module/Settings/Account.php:592 msgid "Expire starred posts" msgstr "" -#: src/Module/Settings/Account.php:594 +#: src/Module/Settings/Account.php:592 msgid "" "Starring posts keeps them from being expired. That behaviour is overwritten " "by this setting." msgstr "" -#: src/Module/Settings/Account.php:595 +#: src/Module/Settings/Account.php:593 msgid "Only expire posts by others" msgstr "" -#: src/Module/Settings/Account.php:595 +#: src/Module/Settings/Account.php:593 msgid "" "When activated, your own posts never expire. Then the settings above are " "only valid for posts you received." msgstr "" -#: src/Module/Settings/Account.php:598 +#: src/Module/Settings/Account.php:596 msgid "Notification Settings" msgstr "Agordoj pri Atentigoj" -#: src/Module/Settings/Account.php:599 +#: src/Module/Settings/Account.php:597 msgid "Send a notification email when:" msgstr "Sendu atentiga repoŝton se:" -#: src/Module/Settings/Account.php:600 +#: src/Module/Settings/Account.php:598 msgid "You receive an introduction" msgstr "Vi ricevas inviton" -#: src/Module/Settings/Account.php:601 +#: src/Module/Settings/Account.php:599 msgid "Your introductions are confirmed" msgstr "Viaj prezentoj estas konfirmata." -#: src/Module/Settings/Account.php:602 +#: src/Module/Settings/Account.php:600 msgid "Someone writes on your profile wall" msgstr "Iu skribas je via profila muro." -#: src/Module/Settings/Account.php:603 +#: src/Module/Settings/Account.php:601 msgid "Someone writes a followup comment" msgstr "Iu skribas sekvan komenton" -#: src/Module/Settings/Account.php:604 +#: src/Module/Settings/Account.php:602 msgid "You receive a private message" msgstr "Vi ricevas privatan mesaĝon." -#: src/Module/Settings/Account.php:605 +#: src/Module/Settings/Account.php:603 msgid "You receive a friend suggestion" msgstr "Vi ricevas amikosugeston" -#: src/Module/Settings/Account.php:606 +#: src/Module/Settings/Account.php:604 msgid "You are tagged in a post" msgstr "Vi estas markita en afiŝon" -#: src/Module/Settings/Account.php:608 +#: src/Module/Settings/Account.php:606 msgid "Create a desktop notification when:" msgstr "" -#: src/Module/Settings/Account.php:609 +#: src/Module/Settings/Account.php:607 msgid "Someone tagged you" msgstr "" -#: src/Module/Settings/Account.php:610 +#: src/Module/Settings/Account.php:608 msgid "Someone directly commented on your post" msgstr "" -#: src/Module/Settings/Account.php:611 +#: src/Module/Settings/Account.php:609 msgid "Someone liked your content" msgstr "" -#: src/Module/Settings/Account.php:611 src/Module/Settings/Account.php:612 +#: src/Module/Settings/Account.php:609 src/Module/Settings/Account.php:610 msgid "Can only be enabled, when the direct comment notification is enabled." msgstr "" -#: src/Module/Settings/Account.php:612 +#: src/Module/Settings/Account.php:610 msgid "Someone shared your content" msgstr "" -#: src/Module/Settings/Account.php:613 +#: src/Module/Settings/Account.php:611 msgid "Someone commented in your thread" msgstr "" -#: src/Module/Settings/Account.php:614 +#: src/Module/Settings/Account.php:612 msgid "Someone commented in a thread where you commented" msgstr "" -#: src/Module/Settings/Account.php:615 +#: src/Module/Settings/Account.php:613 msgid "Someone commented in a thread where you interacted" msgstr "" -#: src/Module/Settings/Account.php:617 +#: src/Module/Settings/Account.php:615 msgid "Activate desktop notifications" msgstr "" -#: src/Module/Settings/Account.php:617 +#: src/Module/Settings/Account.php:615 msgid "Show desktop popup on new notifications" msgstr "" -#: src/Module/Settings/Account.php:621 +#: src/Module/Settings/Account.php:619 msgid "Text-only notification emails" msgstr "" -#: src/Module/Settings/Account.php:623 +#: src/Module/Settings/Account.php:621 msgid "Send text only notification emails, without the html part" msgstr "" -#: src/Module/Settings/Account.php:627 +#: src/Module/Settings/Account.php:625 msgid "Show detailled notifications" msgstr "" -#: src/Module/Settings/Account.php:629 +#: src/Module/Settings/Account.php:627 msgid "" "Per default, notifications are condensed to a single notification per item. " "When enabled every notification is displayed." msgstr "" -#: src/Module/Settings/Account.php:633 +#: src/Module/Settings/Account.php:631 msgid "Show notifications of ignored contacts" msgstr "" -#: src/Module/Settings/Account.php:635 +#: src/Module/Settings/Account.php:633 msgid "" "You don't see posts from ignored contacts. But you still see their comments." " This setting controls if you want to still receive regular notifications " "that are caused by ignored contacts or not." msgstr "" -#: src/Module/Settings/Account.php:638 +#: src/Module/Settings/Account.php:636 msgid "Advanced Account/Page Type Settings" msgstr "Detalaj Agordoj pri Tipo de Konto/Paĝo." -#: src/Module/Settings/Account.php:639 +#: src/Module/Settings/Account.php:637 msgid "Change the behaviour of this account for special situations" msgstr "Agordi la teniĝon de la konto en specialaj situacioj" -#: src/Module/Settings/Account.php:642 +#: src/Module/Settings/Account.php:640 msgid "Import Contacts" msgstr "" -#: src/Module/Settings/Account.php:643 +#: src/Module/Settings/Account.php:641 msgid "" "Upload a CSV file that contains the handle of your followed accounts in the " "first column you exported from the old account." msgstr "" -#: src/Module/Settings/Account.php:644 +#: src/Module/Settings/Account.php:642 msgid "Upload File" msgstr "" -#: src/Module/Settings/Account.php:647 +#: src/Module/Settings/Account.php:645 msgid "Relocate" msgstr "" -#: src/Module/Settings/Account.php:648 +#: src/Module/Settings/Account.php:646 msgid "" "If you have moved this profile from another server, and some of your " "contacts don't receive your updates, try pushing this button." msgstr "" -#: src/Module/Settings/Account.php:649 +#: src/Module/Settings/Account.php:647 msgid "Resend relocate message to contacts" msgstr "" -#: src/Module/Settings/Addons.php:86 +#: src/Module/Settings/Addons.php:72 msgid "Addon Settings" msgstr "" -#: src/Module/Settings/Addons.php:87 +#: src/Module/Settings/Addons.php:73 msgid "No Addon settings configured" msgstr "" -#: src/Module/Settings/Channels.php:142 +#: src/Module/Settings/Channels.php:134 msgid "" "This page can be used to define the channels that will automatically be " "reshared by your account." msgstr "" -#: src/Module/Settings/Channels.php:147 +#: src/Module/Settings/Channels.php:139 msgid "This page can be used to define your own channels." msgstr "" -#: src/Module/Settings/Channels.php:176 +#: src/Module/Settings/Channels.php:168 msgid "Publish" msgstr "" -#: src/Module/Settings/Channels.php:176 +#: src/Module/Settings/Channels.php:168 msgid "" "When selected, the channel results are reshared. This only works for public " "ActivityPub posts from the public timeline or the user defined circles." msgstr "" -#: src/Module/Settings/Channels.php:184 src/Module/Settings/Channels.php:205 -#: src/Module/Settings/Display.php:342 +#: src/Module/Settings/Channels.php:176 src/Module/Settings/Channels.php:197 +#: src/Module/Settings/Display.php:324 msgid "Label" msgstr "" -#: src/Module/Settings/Channels.php:185 src/Module/Settings/Channels.php:206 -#: src/Module/Settings/Display.php:343 -#: src/Module/Settings/TwoFactor/AppSpecific.php:137 +#: src/Module/Settings/Channels.php:177 src/Module/Settings/Channels.php:198 +#: src/Module/Settings/Display.php:325 +#: src/Module/Settings/TwoFactor/AppSpecific.php:123 msgid "Description" msgstr "" -#: src/Module/Settings/Channels.php:186 src/Module/Settings/Channels.php:207 +#: src/Module/Settings/Channels.php:178 src/Module/Settings/Channels.php:199 msgid "Access Key" msgstr "" -#: src/Module/Settings/Channels.php:187 src/Module/Settings/Channels.php:208 +#: src/Module/Settings/Channels.php:179 src/Module/Settings/Channels.php:200 msgid "Circle/Channel" msgstr "" -#: src/Module/Settings/Channels.php:188 src/Module/Settings/Channels.php:209 +#: src/Module/Settings/Channels.php:180 src/Module/Settings/Channels.php:201 msgid "Include Tags" msgstr "" -#: src/Module/Settings/Channels.php:189 src/Module/Settings/Channels.php:210 +#: src/Module/Settings/Channels.php:181 src/Module/Settings/Channels.php:202 msgid "Exclude Tags" msgstr "" -#: src/Module/Settings/Channels.php:190 src/Module/Settings/Channels.php:211 +#: src/Module/Settings/Channels.php:182 src/Module/Settings/Channels.php:203 msgid "Minimum Size" msgstr "" -#: src/Module/Settings/Channels.php:191 src/Module/Settings/Channels.php:212 +#: src/Module/Settings/Channels.php:183 src/Module/Settings/Channels.php:204 msgid "Maximum Size" msgstr "" -#: src/Module/Settings/Channels.php:192 src/Module/Settings/Channels.php:213 +#: src/Module/Settings/Channels.php:184 src/Module/Settings/Channels.php:205 msgid "Full Text Search" msgstr "" -#: src/Module/Settings/Channels.php:196 src/Module/Settings/Channels.php:217 +#: src/Module/Settings/Channels.php:188 src/Module/Settings/Channels.php:209 msgid "Select all languages that you want to see in this channel." msgstr "" -#: src/Module/Settings/Channels.php:198 +#: src/Module/Settings/Channels.php:190 msgid "Delete channel" msgstr "" -#: src/Module/Settings/Channels.php:198 +#: src/Module/Settings/Channels.php:190 msgid "Check to delete this entry from the channel list" msgstr "" -#: src/Module/Settings/Channels.php:205 +#: src/Module/Settings/Channels.php:197 msgid "Short name for the channel. It is displayed on the channels widget." msgstr "" -#: src/Module/Settings/Channels.php:206 +#: src/Module/Settings/Channels.php:198 msgid "This should describe the content of the channel in a few word." msgstr "" -#: src/Module/Settings/Channels.php:207 +#: src/Module/Settings/Channels.php:199 msgid "" "When you want to access this channel via an access key, you can define it " "here. Pay attention to not use an already used one." msgstr "" -#: src/Module/Settings/Channels.php:208 +#: src/Module/Settings/Channels.php:200 msgid "Select a circle or channel, that your channel should be based on." msgstr "" -#: src/Module/Settings/Channels.php:209 +#: src/Module/Settings/Channels.php:201 msgid "" "Comma separated list of tags. A post will be used when it contains any of " "the listed tags." msgstr "" -#: src/Module/Settings/Channels.php:210 +#: src/Module/Settings/Channels.php:202 msgid "" "Comma separated list of tags. If a post contain any of these tags, then it " "will not be part of nthis channel." msgstr "" -#: src/Module/Settings/Channels.php:211 +#: src/Module/Settings/Channels.php:203 msgid "" "Minimum post size. Leave empty for no minimum size. The size is calculated " "without links, attached posts, mentions or hashtags." msgstr "" -#: src/Module/Settings/Channels.php:212 +#: src/Module/Settings/Channels.php:204 msgid "" "Maximum post size. Leave empty for no maximum size. The size is calculated " "without links, attached posts, mentions or hashtags." msgstr "" -#: src/Module/Settings/Channels.php:213 +#: src/Module/Settings/Channels.php:205 #, php-format msgid "" "Search terms for the body, supports the \"boolean mode\" operators from " @@ -10279,586 +10327,589 @@ msgid "" "keywords: %s" msgstr "" -#: src/Module/Settings/Channels.php:214 +#: src/Module/Settings/Channels.php:206 msgid "Check to display images in the channel." msgstr "" -#: src/Module/Settings/Channels.php:215 +#: src/Module/Settings/Channels.php:207 msgid "Check to display videos in the channel." msgstr "" -#: src/Module/Settings/Channels.php:216 +#: src/Module/Settings/Channels.php:208 msgid "Check to display audio in the channel." msgstr "" -#: src/Module/Settings/Channels.php:221 +#: src/Module/Settings/Channels.php:213 msgid "Add new entry to the channel list" msgstr "" -#: src/Module/Settings/Channels.php:222 +#: src/Module/Settings/Channels.php:214 msgid "Add" msgstr "Aldoni" -#: src/Module/Settings/Channels.php:224 +#: src/Module/Settings/Channels.php:216 msgid "Current Entries in the channel list" msgstr "" -#: src/Module/Settings/Channels.php:227 +#: src/Module/Settings/Channels.php:219 msgid "Delete entry from the channel list" msgstr "" -#: src/Module/Settings/Channels.php:228 +#: src/Module/Settings/Channels.php:220 msgid "Delete entry from the channel list?" msgstr "" -#: src/Module/Settings/Connectors.php:120 +#: src/Module/Settings/Connectors.php:108 msgid "Failed to connect with email account using the settings provided." msgstr "Ne sukcesis konekti al retpoŝtkonto kun la provizitaj agordoj." -#: src/Module/Settings/Connectors.php:166 -#: src/Module/Settings/Connectors.php:167 +#: src/Module/Settings/Connectors.php:155 +#: src/Module/Settings/Connectors.php:156 msgid "Diaspora (Socialhome, Hubzilla)" msgstr "" -#: src/Module/Settings/Connectors.php:166 -#: src/Module/Settings/Connectors.php:170 +#: src/Module/Settings/Connectors.php:155 #, php-format msgid "Built-in support for %s connectivity is enabled" msgstr "" -#: src/Module/Settings/Connectors.php:167 -#: src/Module/Settings/Connectors.php:169 +#: src/Module/Settings/Connectors.php:156 #, php-format msgid "Built-in support for %s connectivity is disabled" msgstr "" -#: src/Module/Settings/Connectors.php:169 -#: src/Module/Settings/Connectors.php:170 -msgid "OStatus (GNU Social)" -msgstr "" - -#: src/Module/Settings/Connectors.php:182 +#: src/Module/Settings/Connectors.php:167 msgid "Email access is disabled on this site." msgstr "Retpoŝta atingo ne disponeblas ĉi tie." -#: src/Module/Settings/Connectors.php:197 -#: src/Module/Settings/Connectors.php:244 +#: src/Module/Settings/Connectors.php:182 +#: src/Module/Settings/Connectors.php:233 msgid "None" msgstr "Nenio" -#: src/Module/Settings/Connectors.php:209 +#: src/Module/Settings/Connectors.php:186 +msgid "Default (Mastodon will display the title and a link to the post)" +msgstr "" + +#: src/Module/Settings/Connectors.php:187 +msgid "" +"Use the summary (Mastodon and some others will treat it as content warning)" +msgstr "" + +#: src/Module/Settings/Connectors.php:188 +msgid "Embed the title in the body" +msgstr "" + +#: src/Module/Settings/Connectors.php:199 msgid "General Social Media Settings" msgstr "" -#: src/Module/Settings/Connectors.php:212 +#: src/Module/Settings/Connectors.php:202 msgid "Followed content scope" msgstr "" -#: src/Module/Settings/Connectors.php:214 +#: src/Module/Settings/Connectors.php:204 msgid "" "By default, conversations in which your follows participated but didn't " "start will be shown in your timeline. You can turn this behavior off, or " "expand it to the conversations in which your follows liked a post." msgstr "" -#: src/Module/Settings/Connectors.php:216 +#: src/Module/Settings/Connectors.php:206 msgid "Only conversations my follows started" msgstr "" -#: src/Module/Settings/Connectors.php:217 +#: src/Module/Settings/Connectors.php:207 msgid "Conversations my follows started or commented on (default)" msgstr "" -#: src/Module/Settings/Connectors.php:218 +#: src/Module/Settings/Connectors.php:208 msgid "Any conversation my follows interacted with, including likes" msgstr "" -#: src/Module/Settings/Connectors.php:221 -msgid "Enable Content Warning" +#: src/Module/Settings/Connectors.php:211 +msgid "Collapse sensitive posts" msgstr "" -#: src/Module/Settings/Connectors.php:221 +#: src/Module/Settings/Connectors.php:211 msgid "" -"Users on networks like Mastodon or Pleroma are able to set a content warning" -" field which collapse their post by default. This enables the automatic " -"collapsing instead of setting the content warning as the post title. Doesn't" -" affect any other content filtering you eventually set up." +"If a post is marked as \"sensitive\", it will be displayed in a collapsed " +"state, if this option is enabled." msgstr "" -#: src/Module/Settings/Connectors.php:222 +#: src/Module/Settings/Connectors.php:212 msgid "Enable intelligent shortening" msgstr "" -#: src/Module/Settings/Connectors.php:222 +#: src/Module/Settings/Connectors.php:212 msgid "" "Normally the system tries to find the best link to add to shortened posts. " "If disabled, every shortened post will always point to the original " "friendica post." msgstr "" -#: src/Module/Settings/Connectors.php:223 +#: src/Module/Settings/Connectors.php:213 msgid "Enable simple text shortening" msgstr "" -#: src/Module/Settings/Connectors.php:223 +#: src/Module/Settings/Connectors.php:213 msgid "" "Normally the system shortens posts at the next line feed. If this option is " "enabled then the system will shorten the text at the maximum character " "limit." msgstr "" -#: src/Module/Settings/Connectors.php:224 +#: src/Module/Settings/Connectors.php:214 msgid "Attach the link title" msgstr "" -#: src/Module/Settings/Connectors.php:224 +#: src/Module/Settings/Connectors.php:214 msgid "" "When activated, the title of the attached link will be added as a title on " "posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that" " share feed content." msgstr "" -#: src/Module/Settings/Connectors.php:225 +#: src/Module/Settings/Connectors.php:215 msgid "API: Use spoiler field as title" msgstr "" -#: src/Module/Settings/Connectors.php:225 +#: src/Module/Settings/Connectors.php:215 msgid "" "When activated, the \"spoiler_text\" field in the API will be used for the " "title on standalone posts. When deactivated it will be used for spoiler " "text. For comments it will always be used for spoiler text." msgstr "" -#: src/Module/Settings/Connectors.php:226 +#: src/Module/Settings/Connectors.php:216 msgid "API: Automatically links at the end of the post as attached posts" msgstr "" -#: src/Module/Settings/Connectors.php:226 +#: src/Module/Settings/Connectors.php:216 msgid "" "When activated, added links at the end of the post react the same way as " "added links in the web interface." msgstr "" -#: src/Module/Settings/Connectors.php:227 +#: src/Module/Settings/Connectors.php:217 +msgid "Article Mode" +msgstr "" + +#: src/Module/Settings/Connectors.php:217 +msgid "" +"Controls how posts with titles are transmitted. Mastodon and its forks don't" +" display the content of these posts if the post is created in the correct " +"(default) way." +msgstr "" + +#: src/Module/Settings/Connectors.php:218 msgid "Your legacy ActivityPub/GNU Social account" msgstr "" -#: src/Module/Settings/Connectors.php:227 +#: src/Module/Settings/Connectors.php:218 msgid "" "If you enter your old account name from an ActivityPub based system or your " "GNU Social/Statusnet account name here (in the format user@domain.tld), your" " contacts will be added automatically. The field will be emptied when done." msgstr "" -#: src/Module/Settings/Connectors.php:229 -msgid "Repair OStatus subscriptions" -msgstr "" - -#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Connectors.php:222 msgid "Email/Mailbox Setup" msgstr "Agordoj pri Retpoŝto" -#: src/Module/Settings/Connectors.php:234 +#: src/Module/Settings/Connectors.php:223 msgid "" "If you wish to communicate with email contacts using this service " "(optional), please specify how to connect to your mailbox." msgstr "Se vi volas uzi ĉi tiun servon por komuniki per retpoŝto (nedeviga), bonvolu specifi kiel konekti al vian retpoŝtkonton." -#: src/Module/Settings/Connectors.php:235 +#: src/Module/Settings/Connectors.php:224 msgid "Last successful email check:" msgstr "Plej ĵusa sukcesa kontrolo de poŝto:" -#: src/Module/Settings/Connectors.php:237 +#: src/Module/Settings/Connectors.php:226 msgid "IMAP server name:" msgstr "Nomo de IMAP servilo:" -#: src/Module/Settings/Connectors.php:238 +#: src/Module/Settings/Connectors.php:227 msgid "IMAP port:" msgstr "Numero de IMAP pordo:" -#: src/Module/Settings/Connectors.php:239 +#: src/Module/Settings/Connectors.php:228 msgid "Security:" msgstr "Sekureco:" -#: src/Module/Settings/Connectors.php:240 +#: src/Module/Settings/Connectors.php:229 msgid "Email login name:" msgstr "Retpoŝta salutnomo:" -#: src/Module/Settings/Connectors.php:241 +#: src/Module/Settings/Connectors.php:230 msgid "Email password:" msgstr "Retpoŝta pasvorto:" -#: src/Module/Settings/Connectors.php:242 +#: src/Module/Settings/Connectors.php:231 msgid "Reply-to address:" msgstr "Responda adreso (Reply-to):" -#: src/Module/Settings/Connectors.php:243 +#: src/Module/Settings/Connectors.php:232 msgid "Send public posts to all email contacts:" msgstr "Sendu publikajn afiŝojn al ĉiuj retpoŝtkontaktoj:" -#: src/Module/Settings/Connectors.php:244 +#: src/Module/Settings/Connectors.php:233 msgid "Action after import:" msgstr "Ago post la importado:" -#: src/Module/Settings/Connectors.php:244 +#: src/Module/Settings/Connectors.php:233 msgid "Move to folder" msgstr "Movi al dosierujo" -#: src/Module/Settings/Connectors.php:245 +#: src/Module/Settings/Connectors.php:234 msgid "Move to folder:" msgstr "Movi al dosierujo:" -#: src/Module/Settings/Delegation.php:73 +#: src/Module/Settings/Delegation.php:59 msgid "Delegation successfully granted." msgstr "" -#: src/Module/Settings/Delegation.php:75 +#: src/Module/Settings/Delegation.php:61 msgid "Parent user not found, unavailable or password doesn't match." msgstr "" -#: src/Module/Settings/Delegation.php:79 +#: src/Module/Settings/Delegation.php:65 msgid "Delegation successfully revoked." msgstr "" -#: src/Module/Settings/Delegation.php:98 -#: src/Module/Settings/Delegation.php:120 +#: src/Module/Settings/Delegation.php:84 +#: src/Module/Settings/Delegation.php:106 msgid "" "Delegated administrators can view but not change delegation permissions." msgstr "" -#: src/Module/Settings/Delegation.php:112 +#: src/Module/Settings/Delegation.php:98 msgid "Delegate user not found." msgstr "" -#: src/Module/Settings/Delegation.php:169 +#: src/Module/Settings/Delegation.php:155 msgid "No parent user" msgstr "" -#: src/Module/Settings/Delegation.php:180 -#: src/Module/Settings/Delegation.php:191 +#: src/Module/Settings/Delegation.php:166 +#: src/Module/Settings/Delegation.php:177 msgid "Parent User" msgstr "" -#: src/Module/Settings/Delegation.php:188 +#: src/Module/Settings/Delegation.php:174 msgid "Additional Accounts" msgstr "" -#: src/Module/Settings/Delegation.php:189 +#: src/Module/Settings/Delegation.php:175 msgid "" "Register additional accounts that are automatically connected to your " "existing account so you can manage them from this account." msgstr "" -#: src/Module/Settings/Delegation.php:190 +#: src/Module/Settings/Delegation.php:176 msgid "Register an additional account" msgstr "" -#: src/Module/Settings/Delegation.php:192 +#: src/Module/Settings/Delegation.php:178 msgid "" "Parent users have total control about this account, including the account " "settings. Please double check whom you give this access." msgstr "" -#: src/Module/Settings/Delegation.php:195 +#: src/Module/Settings/Delegation.php:181 msgid "Delegates" msgstr "" -#: src/Module/Settings/Delegation.php:196 +#: src/Module/Settings/Delegation.php:182 msgid "" "Delegates are able to manage all aspects of this account/page except for " "basic account settings. Please do not delegate your personal account to " "anybody that you do not trust completely." msgstr "Delegitoj povas administri ĉiujn ecojn de la konto/paĝo, escepte bazaj kontoagordoj. Bonvolu ne delegitigi vian personan konton al iu al kiu vi ne plene fidas." -#: src/Module/Settings/Delegation.php:197 +#: src/Module/Settings/Delegation.php:183 msgid "Existing Page Delegates" msgstr "Estantaj Delegitoj de la Paĝo" -#: src/Module/Settings/Delegation.php:198 +#: src/Module/Settings/Delegation.php:184 msgid "Potential Delegates" msgstr "Eblaj Delegitoj" -#: src/Module/Settings/Delegation.php:199 +#: src/Module/Settings/Delegation.php:185 msgid "No entries." msgstr "Neniom da afiŝoj." -#: src/Module/Settings/Display.php:185 +#: src/Module/Settings/Display.php:169 msgid "The theme you chose isn't available." msgstr "" -#: src/Module/Settings/Display.php:225 +#: src/Module/Settings/Display.php:209 #, php-format msgid "%s - (Unsupported)" msgstr "" -#: src/Module/Settings/Display.php:263 +#: src/Module/Settings/Display.php:246 msgid "No preview" msgstr "" -#: src/Module/Settings/Display.php:264 +#: src/Module/Settings/Display.php:247 msgid "No image" msgstr "" -#: src/Module/Settings/Display.php:265 +#: src/Module/Settings/Display.php:248 msgid "Small Image" msgstr "" -#: src/Module/Settings/Display.php:266 +#: src/Module/Settings/Display.php:249 msgid "Large Image" msgstr "" -#: src/Module/Settings/Display.php:311 +#: src/Module/Settings/Display.php:294 msgid "Display Settings" msgstr "Ekranagordoj" -#: src/Module/Settings/Display.php:313 +#: src/Module/Settings/Display.php:296 msgid "General Theme Settings" msgstr "" -#: src/Module/Settings/Display.php:314 +#: src/Module/Settings/Display.php:297 msgid "Custom Theme Settings" msgstr "" -#: src/Module/Settings/Display.php:315 +#: src/Module/Settings/Display.php:298 msgid "Content Settings" msgstr "" -#: src/Module/Settings/Display.php:316 view/theme/duepuntozero/config.php:86 -#: view/theme/frio/config.php:151 view/theme/quattro/config.php:88 -#: view/theme/vier/config.php:136 +#: src/Module/Settings/Display.php:299 view/theme/duepuntozero/config.php:74 +#: view/theme/frio/config.php:139 view/theme/quattro/config.php:76 +#: view/theme/vier/config.php:124 msgid "Theme settings" msgstr "Agordoj pri la etoso" -#: src/Module/Settings/Display.php:317 +#: src/Module/Settings/Display.php:300 msgid "Timelines" msgstr "" -#: src/Module/Settings/Display.php:324 +#: src/Module/Settings/Display.php:307 msgid "Display Theme:" msgstr "Vidiga etoso:" -#: src/Module/Settings/Display.php:325 +#: src/Module/Settings/Display.php:308 msgid "Mobile Theme:" msgstr "" -#: src/Module/Settings/Display.php:328 +#: src/Module/Settings/Display.php:311 msgid "Number of items to display per page:" msgstr "" -#: src/Module/Settings/Display.php:328 src/Module/Settings/Display.php:329 +#: src/Module/Settings/Display.php:311 src/Module/Settings/Display.php:312 msgid "Maximum of 100 items" msgstr "Maksimume 100 eroj" -#: src/Module/Settings/Display.php:329 +#: src/Module/Settings/Display.php:312 msgid "Number of items to display per page when viewed from mobile device:" msgstr "" -#: src/Module/Settings/Display.php:330 +#: src/Module/Settings/Display.php:313 msgid "Update browser every xx seconds" msgstr "Ĝisdatigu retesplorilon ĉiu xxx sekundoj" -#: src/Module/Settings/Display.php:330 +#: src/Module/Settings/Display.php:313 msgid "Minimum of 10 seconds. Enter -1 to disable it." msgstr "" -#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/Display.php:314 msgid "Display emoticons" msgstr "" -#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/Display.php:314 msgid "When enabled, emoticons are replaced with matching symbols." msgstr "" -#: src/Module/Settings/Display.php:332 +#: src/Module/Settings/Display.php:315 msgid "Infinite scroll" msgstr "" -#: src/Module/Settings/Display.php:332 +#: src/Module/Settings/Display.php:315 msgid "Automatic fetch new items when reaching the page end." msgstr "" -#: src/Module/Settings/Display.php:333 +#: src/Module/Settings/Display.php:316 msgid "Enable Smart Threading" msgstr "" -#: src/Module/Settings/Display.php:333 +#: src/Module/Settings/Display.php:316 msgid "Enable the automatic suppression of extraneous thread indentation." msgstr "" -#: src/Module/Settings/Display.php:334 +#: src/Module/Settings/Display.php:317 msgid "Display the Dislike feature" msgstr "" -#: src/Module/Settings/Display.php:334 +#: src/Module/Settings/Display.php:317 msgid "" "Display the Dislike button and dislike reactions on posts and comments." msgstr "" -#: src/Module/Settings/Display.php:335 +#: src/Module/Settings/Display.php:318 msgid "Display the resharer" msgstr "" -#: src/Module/Settings/Display.php:335 +#: src/Module/Settings/Display.php:318 msgid "Display the first resharer as icon and text on a reshared item." msgstr "" -#: src/Module/Settings/Display.php:336 -msgid "Display sensitive content" -msgstr "" - -#: src/Module/Settings/Display.php:336 -msgid "If enabled, pictures in posts marked as \"sensitive\" will not be blurred." -msgstr "" - -#: src/Module/Settings/Display.php:337 +#: src/Module/Settings/Display.php:319 msgid "Stay local" msgstr "" -#: src/Module/Settings/Display.php:337 +#: src/Module/Settings/Display.php:319 msgid "Don't go to a remote system when following a contact link." msgstr "" -#: src/Module/Settings/Display.php:338 +#: src/Module/Settings/Display.php:320 msgid "Show the post deletion checkbox" msgstr "" -#: src/Module/Settings/Display.php:338 +#: src/Module/Settings/Display.php:320 msgid "Display the checkbox for the post deletion on the network page." msgstr "" -#: src/Module/Settings/Display.php:339 +#: src/Module/Settings/Display.php:321 msgid "DIsplay the event list" msgstr "" -#: src/Module/Settings/Display.php:339 +#: src/Module/Settings/Display.php:321 msgid "Display the birthday reminder and event list on the network page." msgstr "" -#: src/Module/Settings/Display.php:340 +#: src/Module/Settings/Display.php:322 msgid "Link preview mode" msgstr "" -#: src/Module/Settings/Display.php:340 +#: src/Module/Settings/Display.php:322 msgid "Appearance of the link preview that is added to each post with a link." msgstr "" -#: src/Module/Settings/Display.php:345 +#: src/Module/Settings/Display.php:327 msgid "Bookmark" msgstr "" -#: src/Module/Settings/Display.php:347 +#: src/Module/Settings/Display.php:329 msgid "" "Enable timelines that you want to see in the channels widget. Bookmark " "timelines that you want to see in the top menu." msgstr "" -#: src/Module/Settings/Display.php:349 +#: src/Module/Settings/Display.php:331 msgid "Channel languages:" msgstr "" -#: src/Module/Settings/Display.php:349 +#: src/Module/Settings/Display.php:331 msgid "Select all languages that you want to see in your channels." msgstr "" -#: src/Module/Settings/Display.php:351 +#: src/Module/Settings/Display.php:333 msgid "Beginning of week:" msgstr "" -#: src/Module/Settings/Display.php:352 +#: src/Module/Settings/Display.php:334 msgid "Default calendar view:" msgstr "" -#: src/Module/Settings/Features.php:74 +#: src/Module/Settings/Features.php:59 msgid "Additional Features" msgstr "" -#: src/Module/Settings/OAuth.php:71 +#: src/Module/Settings/OAuth.php:57 msgid "Connected Apps" msgstr "Konektitaj Programoj" -#: src/Module/Settings/OAuth.php:75 +#: src/Module/Settings/OAuth.php:61 msgid "Remove authorization" msgstr "Forviŝi rajtigon" -#: src/Module/Settings/Profile/Index.php:116 +#: src/Module/Settings/Profile/Index.php:102 msgid "Display Name is required." msgstr "" -#: src/Module/Settings/Profile/Index.php:167 +#: src/Module/Settings/Profile/Index.php:156 msgid "Profile couldn't be updated." msgstr "" -#: src/Module/Settings/Profile/Index.php:205 -#: src/Module/Settings/Profile/Index.php:226 +#: src/Module/Settings/Profile/Index.php:196 +#: src/Module/Settings/Profile/Index.php:217 msgid "Label:" msgstr "" -#: src/Module/Settings/Profile/Index.php:206 -#: src/Module/Settings/Profile/Index.php:227 +#: src/Module/Settings/Profile/Index.php:197 +#: src/Module/Settings/Profile/Index.php:218 msgid "Value:" msgstr "" -#: src/Module/Settings/Profile/Index.php:217 -#: src/Module/Settings/Profile/Index.php:238 +#: src/Module/Settings/Profile/Index.php:208 +#: src/Module/Settings/Profile/Index.php:229 msgid "Field Permissions" msgstr "" -#: src/Module/Settings/Profile/Index.php:218 -#: src/Module/Settings/Profile/Index.php:239 +#: src/Module/Settings/Profile/Index.php:209 +#: src/Module/Settings/Profile/Index.php:230 msgid "(click to open/close)" msgstr "(klaku por malfermi/fermi)" -#: src/Module/Settings/Profile/Index.php:224 +#: src/Module/Settings/Profile/Index.php:215 msgid "Add a new profile field" msgstr "" -#: src/Module/Settings/Profile/Index.php:247 +#: src/Module/Settings/Profile/Index.php:238 msgid "" "The homepage is verified. A rel=\"me\" link back to your Friendica profile " "page was found on the homepage." msgstr "" -#: src/Module/Settings/Profile/Index.php:249 +#: src/Module/Settings/Profile/Index.php:240 #, php-format msgid "" "To verify your homepage, add a rel=\"me\" link to it, pointing to your " "profile URL (%s)." msgstr "" -#: src/Module/Settings/Profile/Index.php:255 +#: src/Module/Settings/Profile/Index.php:246 msgid "Profile Actions" msgstr "" -#: src/Module/Settings/Profile/Index.php:256 +#: src/Module/Settings/Profile/Index.php:247 msgid "Edit Profile Details" msgstr "Redakti Detalojn de Profilo" -#: src/Module/Settings/Profile/Index.php:258 +#: src/Module/Settings/Profile/Index.php:249 msgid "Change Profile Photo" msgstr "" -#: src/Module/Settings/Profile/Index.php:261 +#: src/Module/Settings/Profile/Index.php:252 msgid "Profile picture" msgstr "" -#: src/Module/Settings/Profile/Index.php:262 +#: src/Module/Settings/Profile/Index.php:253 msgid "Location" msgstr "Loko" -#: src/Module/Settings/Profile/Index.php:263 src/Util/Temporal.php:97 -#: src/Util/Temporal.php:99 +#: src/Module/Settings/Profile/Index.php:254 src/Util/Temporal.php:83 +#: src/Util/Temporal.php:85 msgid "Miscellaneous" msgstr "Diversaj" -#: src/Module/Settings/Profile/Index.php:264 +#: src/Module/Settings/Profile/Index.php:255 msgid "Custom Profile Fields" msgstr "" -#: src/Module/Settings/Profile/Index.php:265 src/Module/Welcome.php:58 +#: src/Module/Settings/Profile/Index.php:256 src/Module/Welcome.php:44 msgid "Upload Profile Photo" msgstr "Alŝuti profilbildon" -#: src/Module/Settings/Profile/Index.php:266 +#: src/Module/Settings/Profile/Index.php:257 #, php-format msgid "" "Custom fields appear on your profile page.
\n" @@ -10868,396 +10919,396 @@ msgid "" "\t\t\t\tNon-public fields can only be seen by the selected Friendica contacts or the Friendica contacts in the selected circles.
" msgstr "" -#: src/Module/Settings/Profile/Index.php:286 +#: src/Module/Settings/Profile/Index.php:277 msgid "Street Address:" msgstr "Adreso:" -#: src/Module/Settings/Profile/Index.php:287 +#: src/Module/Settings/Profile/Index.php:278 msgid "Locality/City:" msgstr "Urbo:" -#: src/Module/Settings/Profile/Index.php:288 +#: src/Module/Settings/Profile/Index.php:279 msgid "Region/State:" msgstr "Ŝtato:" -#: src/Module/Settings/Profile/Index.php:289 +#: src/Module/Settings/Profile/Index.php:280 msgid "Postal/Zip Code:" msgstr "Poŝtkodo:" -#: src/Module/Settings/Profile/Index.php:290 +#: src/Module/Settings/Profile/Index.php:281 msgid "Country:" msgstr "Lando:" -#: src/Module/Settings/Profile/Index.php:292 +#: src/Module/Settings/Profile/Index.php:283 msgid "XMPP (Jabber) address:" msgstr "" -#: src/Module/Settings/Profile/Index.php:292 +#: src/Module/Settings/Profile/Index.php:283 msgid "" "The XMPP address will be published so that people can follow you there." msgstr "" -#: src/Module/Settings/Profile/Index.php:293 +#: src/Module/Settings/Profile/Index.php:284 msgid "Matrix (Element) address:" msgstr "" -#: src/Module/Settings/Profile/Index.php:293 +#: src/Module/Settings/Profile/Index.php:284 msgid "" "The Matrix address will be published so that people can follow you there." msgstr "" -#: src/Module/Settings/Profile/Index.php:294 +#: src/Module/Settings/Profile/Index.php:285 msgid "Homepage URL:" msgstr "Adreso de Hejmpaĝo:" -#: src/Module/Settings/Profile/Index.php:295 +#: src/Module/Settings/Profile/Index.php:286 msgid "Public Keywords:" msgstr "Publikaj ŝlosilvortoj:" -#: src/Module/Settings/Profile/Index.php:295 +#: src/Module/Settings/Profile/Index.php:286 msgid "(Used for suggesting potential friends, can be seen by others)" msgstr "(Por sugesti amikoj. Videbla al aliaj.)" -#: src/Module/Settings/Profile/Index.php:296 +#: src/Module/Settings/Profile/Index.php:287 msgid "Private Keywords:" msgstr "Privataj ŝlosilvortoj:" -#: src/Module/Settings/Profile/Index.php:296 +#: src/Module/Settings/Profile/Index.php:287 msgid "(Used for searching profiles, never shown to others)" msgstr "(Por serĉi profilojn. Neniam videbla al aliaj.)" -#: src/Module/Settings/Profile/Photo/Crop.php:107 -#: src/Module/Settings/Profile/Photo/Crop.php:125 -#: src/Module/Settings/Profile/Photo/Crop.php:143 -#: src/Module/Settings/Profile/Photo/Index.php:100 +#: src/Module/Settings/Profile/Photo/Crop.php:93 +#: src/Module/Settings/Profile/Photo/Crop.php:111 +#: src/Module/Settings/Profile/Photo/Crop.php:129 +#: src/Module/Settings/Profile/Photo/Index.php:86 #, php-format msgid "Image size reduction [%s] failed." msgstr "Malsukcesis malpligrandigi [%s] la bildon." -#: src/Module/Settings/Profile/Photo/Crop.php:150 +#: src/Module/Settings/Profile/Photo/Crop.php:136 msgid "" "Shift-reload the page or clear browser cache if the new photo does not " "display immediately." msgstr "Reŝarĝu la paĝon au malplenigu la kaŝmemoro de la retesplorilo se la nova bildo ne tuj aperas." -#: src/Module/Settings/Profile/Photo/Crop.php:155 +#: src/Module/Settings/Profile/Photo/Crop.php:141 msgid "Unable to process image" msgstr "Ne eblas procezi bildon." -#: src/Module/Settings/Profile/Photo/Crop.php:174 +#: src/Module/Settings/Profile/Photo/Crop.php:160 msgid "Photo not found." msgstr "" -#: src/Module/Settings/Profile/Photo/Crop.php:196 +#: src/Module/Settings/Profile/Photo/Crop.php:182 msgid "Profile picture successfully updated." msgstr "" -#: src/Module/Settings/Profile/Photo/Crop.php:222 -#: src/Module/Settings/Profile/Photo/Crop.php:226 +#: src/Module/Settings/Profile/Photo/Crop.php:208 +#: src/Module/Settings/Profile/Photo/Crop.php:212 msgid "Crop Image" msgstr "Stuci Bildon" -#: src/Module/Settings/Profile/Photo/Crop.php:223 +#: src/Module/Settings/Profile/Photo/Crop.php:209 msgid "Please adjust the image cropping for optimum viewing." msgstr "Bonvolu agordi la stuco de la bildo por optimuma aspekto." -#: src/Module/Settings/Profile/Photo/Crop.php:225 +#: src/Module/Settings/Profile/Photo/Crop.php:211 msgid "Use Image As Is" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:46 +#: src/Module/Settings/Profile/Photo/Index.php:32 msgid "Missing uploaded image." msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:123 +#: src/Module/Settings/Profile/Photo/Index.php:109 msgid "Profile Picture Settings" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:124 +#: src/Module/Settings/Profile/Photo/Index.php:110 msgid "Current Profile Picture" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:125 +#: src/Module/Settings/Profile/Photo/Index.php:111 msgid "Upload Profile Picture" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:126 +#: src/Module/Settings/Profile/Photo/Index.php:112 msgid "Upload Picture:" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:131 +#: src/Module/Settings/Profile/Photo/Index.php:117 msgid "or" msgstr "aŭ" -#: src/Module/Settings/Profile/Photo/Index.php:133 +#: src/Module/Settings/Profile/Photo/Index.php:119 msgid "skip this step" msgstr "Preterpasi tian paŝon" -#: src/Module/Settings/Profile/Photo/Index.php:135 +#: src/Module/Settings/Profile/Photo/Index.php:121 msgid "select a photo from your photo albums" msgstr "elekti bildon el viaj albumoj" -#: src/Module/Settings/RemoveMe.php:76 +#: src/Module/Settings/RemoveMe.php:62 msgid "" "There was a validation error, please make sure you're logged in with the " "account you want to remove and try again." msgstr "" -#: src/Module/Settings/RemoveMe.php:76 +#: src/Module/Settings/RemoveMe.php:62 msgid "If this error persists, please contact your administrator." msgstr "" -#: src/Module/Settings/RemoveMe.php:90 -#: src/Navigation/Notifications/Repository/Notify.php:471 -#: src/Navigation/Notifications/Repository/Notify.php:492 +#: src/Module/Settings/RemoveMe.php:76 +#: src/Navigation/Notifications/Repository/Notify.php:457 +#: src/Navigation/Notifications/Repository/Notify.php:478 msgid "[Friendica System Notify]" msgstr "" -#: src/Module/Settings/RemoveMe.php:90 +#: src/Module/Settings/RemoveMe.php:76 msgid "User deleted their account" msgstr "" -#: src/Module/Settings/RemoveMe.php:91 +#: src/Module/Settings/RemoveMe.php:77 msgid "" "On your Friendica node an user deleted their account. Please ensure that " "their data is removed from the backups." msgstr "" -#: src/Module/Settings/RemoveMe.php:92 +#: src/Module/Settings/RemoveMe.php:78 #, php-format msgid "The user id is %d" msgstr "" -#: src/Module/Settings/RemoveMe.php:105 +#: src/Module/Settings/RemoveMe.php:91 msgid "Your account has been successfully removed. Bye bye!" msgstr "" -#: src/Module/Settings/RemoveMe.php:130 +#: src/Module/Settings/RemoveMe.php:116 msgid "Remove My Account" msgstr "Forigi Mian Konton" -#: src/Module/Settings/RemoveMe.php:131 +#: src/Module/Settings/RemoveMe.php:117 msgid "" "This will completely remove your account. Once this has been done it is not " "recoverable." msgstr "Tio tute forigos vian konton. Kiam farita, la konto ne estas restaŭrebla." -#: src/Module/Settings/RemoveMe.php:136 +#: src/Module/Settings/RemoveMe.php:122 msgid "Please enter your password for verification:" msgstr "Bonvolu entajpi vian pasvorton por kontrolado:" -#: src/Module/Settings/Server/Action.php:60 +#: src/Module/Settings/Server/Action.php:46 msgid "Do you want to ignore this server?" msgstr "" -#: src/Module/Settings/Server/Action.php:64 +#: src/Module/Settings/Server/Action.php:50 msgid "Do you want to unignore this server?" msgstr "" -#: src/Module/Settings/Server/Action.php:74 -#: src/Module/Settings/Server/Index.php:104 +#: src/Module/Settings/Server/Action.php:60 +#: src/Module/Settings/Server/Index.php:90 msgid "Remote server settings" msgstr "" -#: src/Module/Settings/Server/Action.php:77 +#: src/Module/Settings/Server/Action.php:63 msgid "Server URL" msgstr "" -#: src/Module/Settings/Server/Index.php:78 +#: src/Module/Settings/Server/Index.php:64 msgid "Settings saved" msgstr "" -#: src/Module/Settings/Server/Index.php:105 +#: src/Module/Settings/Server/Index.php:91 msgid "" "Here you can find all the remote servers you have taken individual " "moderation actions against. For a list of servers your node has blocked, " "please check out the Information page." msgstr "" -#: src/Module/Settings/Server/Index.php:110 +#: src/Module/Settings/Server/Index.php:96 msgid "Delete all your settings for the remote server" msgstr "" -#: src/Module/Settings/Server/Index.php:111 +#: src/Module/Settings/Server/Index.php:97 msgid "Save changes" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:69 -#: src/Module/Settings/TwoFactor/Recovery.php:67 -#: src/Module/Settings/TwoFactor/Trusted.php:70 -#: src/Module/Settings/TwoFactor/Verify.php:72 +#: src/Module/Settings/TwoFactor/AppSpecific.php:55 +#: src/Module/Settings/TwoFactor/Recovery.php:53 +#: src/Module/Settings/TwoFactor/Trusted.php:56 +#: src/Module/Settings/TwoFactor/Verify.php:58 msgid "Please enter your password to access this page." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:87 +#: src/Module/Settings/TwoFactor/AppSpecific.php:73 msgid "App-specific password generation failed: The description is empty." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:90 +#: src/Module/Settings/TwoFactor/AppSpecific.php:76 msgid "" "App-specific password generation failed: This description already exists." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:94 +#: src/Module/Settings/TwoFactor/AppSpecific.php:80 msgid "New app-specific password generated." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:100 +#: src/Module/Settings/TwoFactor/AppSpecific.php:86 msgid "App-specific passwords successfully revoked." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:110 +#: src/Module/Settings/TwoFactor/AppSpecific.php:96 msgid "App-specific password successfully revoked." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:131 +#: src/Module/Settings/TwoFactor/AppSpecific.php:117 msgid "Two-factor app-specific passwords" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:133 +#: src/Module/Settings/TwoFactor/AppSpecific.php:119 msgid "" "App-specific passwords are randomly generated passwords used instead your" " regular password to authenticate your account on third-party applications " "that don't support two-factor authentication.
" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:134 +#: src/Module/Settings/TwoFactor/AppSpecific.php:120 msgid "" "Make sure to copy your new app-specific password now. You won’t be able to " "see it again!" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:138 +#: src/Module/Settings/TwoFactor/AppSpecific.php:124 msgid "Last Used" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:139 +#: src/Module/Settings/TwoFactor/AppSpecific.php:125 msgid "Revoke" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:140 +#: src/Module/Settings/TwoFactor/AppSpecific.php:126 msgid "Revoke All" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:143 +#: src/Module/Settings/TwoFactor/AppSpecific.php:129 msgid "" "When you generate a new app-specific password, you must use it right away, " "it will be shown to you once after you generate it." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:144 +#: src/Module/Settings/TwoFactor/AppSpecific.php:130 msgid "Generate new app-specific password" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:145 +#: src/Module/Settings/TwoFactor/AppSpecific.php:131 msgid "Friendiqa on my Fairphone 2..." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:146 +#: src/Module/Settings/TwoFactor/AppSpecific.php:132 msgid "Generate" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:88 +#: src/Module/Settings/TwoFactor/Index.php:74 msgid "Two-factor authentication successfully disabled." msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:141 +#: src/Module/Settings/TwoFactor/Index.php:127 msgid "" "Use an application on a mobile device to get two-factor authentication " "codes when prompted on login.
" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:145 +#: src/Module/Settings/TwoFactor/Index.php:131 msgid "Authenticator app" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:146 +#: src/Module/Settings/TwoFactor/Index.php:132 msgid "Configured" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:146 +#: src/Module/Settings/TwoFactor/Index.php:132 msgid "Not Configured" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:147 +#: src/Module/Settings/TwoFactor/Index.php:133 msgid "You haven't finished configuring your authenticator app.
" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:148 +#: src/Module/Settings/TwoFactor/Index.php:134 msgid "Your authenticator app is correctly configured.
" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:150 +#: src/Module/Settings/TwoFactor/Index.php:136 msgid "Recovery codes" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:151 +#: src/Module/Settings/TwoFactor/Index.php:137 msgid "Remaining valid codes" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:153 +#: src/Module/Settings/TwoFactor/Index.php:139 msgid "" "These one-use codes can replace an authenticator app code in case you " "have lost access to it.
" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:155 +#: src/Module/Settings/TwoFactor/Index.php:141 msgid "App-specific passwords" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:156 +#: src/Module/Settings/TwoFactor/Index.php:142 msgid "Generated app-specific passwords" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:158 +#: src/Module/Settings/TwoFactor/Index.php:144 msgid "" "These randomly generated passwords allow you to authenticate on apps not " "supporting two-factor authentication.
" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:161 +#: src/Module/Settings/TwoFactor/Index.php:147 msgid "Current password:" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:161 +#: src/Module/Settings/TwoFactor/Index.php:147 msgid "" "You need to provide your current password to change two-factor " "authentication settings." msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:162 +#: src/Module/Settings/TwoFactor/Index.php:148 msgid "Enable two-factor authentication" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:163 +#: src/Module/Settings/TwoFactor/Index.php:149 msgid "Disable two-factor authentication" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:164 +#: src/Module/Settings/TwoFactor/Index.php:150 msgid "Show recovery codes" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:165 +#: src/Module/Settings/TwoFactor/Index.php:151 msgid "Manage app-specific passwords" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:166 +#: src/Module/Settings/TwoFactor/Index.php:152 msgid "Manage trusted browsers" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:167 +#: src/Module/Settings/TwoFactor/Index.php:153 msgid "Finish app configuration" msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:83 +#: src/Module/Settings/TwoFactor/Recovery.php:69 msgid "New recovery codes successfully generated." msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:109 +#: src/Module/Settings/TwoFactor/Recovery.php:95 msgid "Two-factor recovery codes" msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:111 +#: src/Module/Settings/TwoFactor/Recovery.php:97 msgid "" "Recovery codes can be used to access your account in the event you lose " "access to your device and cannot receive two-factor authentication " @@ -11266,68 +11317,68 @@ msgid "" "account.
" msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:113 +#: src/Module/Settings/TwoFactor/Recovery.php:99 msgid "" "When you generate new recovery codes, you must copy the new codes. Your old " "codes won’t work anymore." msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:114 +#: src/Module/Settings/TwoFactor/Recovery.php:100 msgid "Generate new recovery codes" msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:116 +#: src/Module/Settings/TwoFactor/Recovery.php:102 msgid "Next: Verification" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:87 +#: src/Module/Settings/TwoFactor/Trusted.php:73 msgid "Trusted browsers successfully removed." msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:97 +#: src/Module/Settings/TwoFactor/Trusted.php:83 msgid "Trusted browser successfully removed." msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:139 +#: src/Module/Settings/TwoFactor/Trusted.php:125 msgid "Two-factor Trusted Browsers" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:140 +#: src/Module/Settings/TwoFactor/Trusted.php:126 msgid "" "Trusted browsers are individual browsers you chose to skip two-factor " "authentication to access Friendica. Please use this feature sparingly, as it" " can negate the benefit of two-factor authentication." msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:141 +#: src/Module/Settings/TwoFactor/Trusted.php:127 msgid "Device" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:142 +#: src/Module/Settings/TwoFactor/Trusted.php:128 msgid "OS" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:144 +#: src/Module/Settings/TwoFactor/Trusted.php:130 msgid "Trusted" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:145 +#: src/Module/Settings/TwoFactor/Trusted.php:131 msgid "Created At" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:146 +#: src/Module/Settings/TwoFactor/Trusted.php:132 msgid "Last Use" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:148 +#: src/Module/Settings/TwoFactor/Trusted.php:134 msgid "Remove All" msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:94 +#: src/Module/Settings/TwoFactor/Verify.php:80 msgid "Two-factor authentication successfully activated." msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:128 +#: src/Module/Settings/TwoFactor/Verify.php:114 #, php-format msgid "" "Or you can submit the authentication settings manually:
\n" @@ -11347,105 +11398,105 @@ msgid "" "" msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:148 +#: src/Module/Settings/TwoFactor/Verify.php:134 msgid "Two-factor code verification" msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:150 +#: src/Module/Settings/TwoFactor/Verify.php:136 msgid "" "Please scan this QR Code with your authenticator app and submit the " "provided code.
" msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:152 +#: src/Module/Settings/TwoFactor/Verify.php:138 #, php-format msgid "" "Or you can open the following URL in your mobile device:
" msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:159 +#: src/Module/Settings/TwoFactor/Verify.php:145 msgid "Verify code and enable two-factor authentication" msgstr "" -#: src/Module/Settings/UserExport.php:90 +#: src/Module/Settings/UserExport.php:76 msgid "Export account" msgstr "" -#: src/Module/Settings/UserExport.php:90 +#: src/Module/Settings/UserExport.php:76 msgid "" "Export your account info and contacts. Use this to make a backup of your " "account and/or to move it to another server." msgstr "" -#: src/Module/Settings/UserExport.php:91 +#: src/Module/Settings/UserExport.php:77 msgid "Export all" msgstr "" -#: src/Module/Settings/UserExport.php:91 +#: src/Module/Settings/UserExport.php:77 msgid "" "Export your account info, contacts and all your items as json. Could be a " "very big file, and could take a lot of time. Use this to make a full backup " "of your account (photos are not exported)" msgstr "" -#: src/Module/Settings/UserExport.php:92 +#: src/Module/Settings/UserExport.php:78 msgid "Export Contacts to CSV" msgstr "" -#: src/Module/Settings/UserExport.php:92 +#: src/Module/Settings/UserExport.php:78 msgid "" "Export the list of the accounts you are following as CSV file. Compatible to" " e.g. Mastodon." msgstr "" -#: src/Module/Special/DisplayNotFound.php:35 +#: src/Module/Special/DisplayNotFound.php:21 msgid "The top-level post isn't visible." msgstr "" -#: src/Module/Special/DisplayNotFound.php:36 +#: src/Module/Special/DisplayNotFound.php:22 msgid "The top-level post was deleted." msgstr "" -#: src/Module/Special/DisplayNotFound.php:37 +#: src/Module/Special/DisplayNotFound.php:23 msgid "" "This node has blocked the top-level author or the author of the shared post." msgstr "" -#: src/Module/Special/DisplayNotFound.php:38 +#: src/Module/Special/DisplayNotFound.php:24 msgid "" "You have ignored or blocked the top-level author or the author of the shared" " post." msgstr "" -#: src/Module/Special/DisplayNotFound.php:39 +#: src/Module/Special/DisplayNotFound.php:25 msgid "" "You have ignored the top-level author's server or the shared post author's " "server." msgstr "" -#: src/Module/Special/DisplayNotFound.php:45 +#: src/Module/Special/DisplayNotFound.php:31 msgid "Conversation Not Found" msgstr "" -#: src/Module/Special/DisplayNotFound.php:46 +#: src/Module/Special/DisplayNotFound.php:32 msgid "Unfortunately, the requested conversation isn't available to you." msgstr "" -#: src/Module/Special/DisplayNotFound.php:47 +#: src/Module/Special/DisplayNotFound.php:33 msgid "Possible reasons include:" msgstr "" -#: src/Module/Special/HTTPException.php:78 +#: src/Module/Special/HTTPException.php:64 msgid "Stack trace:" msgstr "" -#: src/Module/Special/HTTPException.php:83 +#: src/Module/Special/HTTPException.php:69 #, php-format msgid "Exception thrown in %s:%d" msgstr "" -#: src/Module/Tos.php:58 src/Module/Tos.php:107 +#: src/Module/Tos.php:44 src/Module/Tos.php:93 msgid "" "At the time of registration, and for providing communications between the " "user account and their contacts, the user has to provide a display name (pen" @@ -11458,14 +11509,14 @@ msgid "" "settings, it is not necessary for communication." msgstr "" -#: src/Module/Tos.php:59 src/Module/Tos.php:108 +#: src/Module/Tos.php:45 src/Module/Tos.php:94 msgid "" "This data is required for communication and is passed on to the nodes of the" " communication partners and is stored there. Users can enter additional " "private data that may be transmitted to the communication partners accounts." msgstr "" -#: src/Module/Tos.php:60 src/Module/Tos.php:109 +#: src/Module/Tos.php:46 src/Module/Tos.php:95 #, php-format msgid "" "At any point in time a logged in user can export their account data from the" @@ -11476,121 +11527,121 @@ msgid "" "from the nodes of the communication partners." msgstr "" -#: src/Module/Tos.php:63 src/Module/Tos.php:106 +#: src/Module/Tos.php:49 src/Module/Tos.php:92 msgid "Privacy Statement" msgstr "" -#: src/Module/Tos.php:103 +#: src/Module/Tos.php:89 msgid "Rules" msgstr "" -#: src/Module/Update/Display.php:45 +#: src/Module/Update/Display.php:31 msgid "Parameter uri_id is missing." msgstr "" -#: src/Module/Update/Display.php:55 +#: src/Module/Update/Display.php:41 msgid "The requested item doesn't exist or has been deleted." msgstr "" -#: src/Module/User/Delegation.php:146 +#: src/Module/User/Delegation.php:132 #, php-format msgid "You are now logged in as %s" msgstr "" -#: src/Module/User/Delegation.php:185 +#: src/Module/User/Delegation.php:171 msgid "Switch between your accounts" msgstr "" -#: src/Module/User/Delegation.php:186 +#: src/Module/User/Delegation.php:172 msgid "Manage your accounts" msgstr "" -#: src/Module/User/Delegation.php:187 +#: src/Module/User/Delegation.php:173 msgid "" "Toggle between different identities or community/group pages which share " "your account details or which you have been granted \"manage\" permissions" msgstr "Ŝalti inter aliaj identecojn aj komunumaj/grupaj paĝoj kiuj kunhavas viajn kontajn detalojn au por kiuj vi havas \"administranto\" permesojn." -#: src/Module/User/Delegation.php:188 +#: src/Module/User/Delegation.php:174 msgid "Select an identity to manage: " msgstr "Elektu identencon por administrado:" -#: src/Module/User/Import.php:103 +#: src/Module/User/Import.php:90 msgid "User imports on closed servers can only be done by an administrator." msgstr "" -#: src/Module/User/Import.php:119 +#: src/Module/User/Import.php:106 msgid "Move account" msgstr "" -#: src/Module/User/Import.php:120 +#: src/Module/User/Import.php:107 msgid "You can import an account from another Friendica server." msgstr "" -#: src/Module/User/Import.php:121 +#: src/Module/User/Import.php:108 msgid "" "You need to export your account from the old server and upload it here. We " "will recreate your old account here with all your contacts. We will try also" " to inform your friends that you moved here." msgstr "" -#: src/Module/User/Import.php:122 +#: src/Module/User/Import.php:109 msgid "" "This feature is experimental. We can't import contacts from the OStatus " "network (GNU Social/Statusnet) or from Diaspora" msgstr "" -#: src/Module/User/Import.php:123 +#: src/Module/User/Import.php:110 msgid "Account file" msgstr "" -#: src/Module/User/Import.php:123 +#: src/Module/User/Import.php:110 msgid "" "To export your account, go to \"Settings->Export your personal data\" and " "select \"Export account\"" msgstr "" -#: src/Module/User/Import.php:217 +#: src/Module/User/Import.php:204 msgid "Error decoding account file" msgstr "" -#: src/Module/User/Import.php:222 +#: src/Module/User/Import.php:209 msgid "Error! No version data in file! This is not a Friendica account file?" msgstr "" -#: src/Module/User/Import.php:230 +#: src/Module/User/Import.php:217 #, php-format msgid "User '%s' already exists on this server!" msgstr "" -#: src/Module/User/Import.php:267 +#: src/Module/User/Import.php:254 msgid "User creation error" msgstr "" -#: src/Module/User/Import.php:316 +#: src/Module/User/Import.php:303 #, php-format msgid "%d contact not imported" msgid_plural "%d contacts not imported" msgstr[0] "" msgstr[1] "" -#: src/Module/User/Import.php:365 +#: src/Module/User/Import.php:352 msgid "User profile creation error" msgstr "" -#: src/Module/User/Import.php:416 +#: src/Module/User/Import.php:403 msgid "Done. You can now login with your username and password" msgstr "" -#: src/Module/Welcome.php:44 +#: src/Module/Welcome.php:30 msgid "Welcome to Friendica" msgstr "Bonvenon ĉe Friendica" -#: src/Module/Welcome.php:45 +#: src/Module/Welcome.php:31 msgid "New Member Checklist" msgstr "Kontrololisto por Novaj Membroj" -#: src/Module/Welcome.php:46 +#: src/Module/Welcome.php:32 msgid "" "We would like to offer some tips and links to help make your experience " "enjoyable. Click any item to visit the relevant page. A link to this page " @@ -11598,33 +11649,33 @@ msgid "" "registration and then will quietly disappear." msgstr "Lasu nin oferi al vi kelkajn konsolojn kaj ligilojn por plifaciligi vian komencon. Klaku iun elementon por viziti la rilatan paĝon. Ligilo al ĉi tiu paĝo videblos en via hejmpaĝo dum du semajnojn post via komenca membriĝo. Post du semajnoj, la ligilo silente malaperos. " -#: src/Module/Welcome.php:48 +#: src/Module/Welcome.php:34 msgid "Getting Started" msgstr "" -#: src/Module/Welcome.php:49 +#: src/Module/Welcome.php:35 msgid "Friendica Walk-Through" msgstr "" -#: src/Module/Welcome.php:50 +#: src/Module/Welcome.php:36 msgid "" "On your Quick Start page - find a brief introduction to your " "profile and network tabs, make some new connections, and find some groups to" " join." msgstr "" -#: src/Module/Welcome.php:53 +#: src/Module/Welcome.php:39 msgid "Go to Your Settings" msgstr "" -#: src/Module/Welcome.php:54 +#: src/Module/Welcome.php:40 msgid "" "On your Settings page - change your initial password. Also make a " "note of your Identity Address. This looks just like an email address - and " "will be useful in making friends on the free social web." msgstr "Bonvolu ŝanĝi vian pasvorton ĉe Agordoj. Krome, memorigu vian identadreson. Ĝi aspektas kiel retpoŝtadreso kaj estas bezonata por konekti al novaj amikon en la libera interkona reto." -#: src/Module/Welcome.php:55 +#: src/Module/Welcome.php:41 msgid "" "Review the other settings, particularly the privacy settings. An unpublished" " directory listing is like having an unlisted phone number. In general, you " @@ -11632,77 +11683,77 @@ msgid "" "potential friends know exactly how to find you." msgstr "Kontrolu la aliajn agordojn, precipe la privatecajn agordojn. Nepublikigita profilo similas al havi telefonnumberon ne registrata en iu telefonlibro. Ĝenerale vi eble volas publikigi vian profilon. Alie, viaj amikoj kaj estontaj amikoj bezonas scii kiel rekte trovi vin." -#: src/Module/Welcome.php:59 +#: src/Module/Welcome.php:45 msgid "" "Upload a profile photo if you have not done so already. Studies have shown " "that people with real photos of themselves are ten times more likely to make" " friends than people who do not." msgstr "Enŝuti profilbildon se vi ankoraŭ ne havas ĝin. Laŭ studoj, homoj kun realaj biloj de si mem trovas novajn amikon duope pli probable ol homoj sen reala bildo." -#: src/Module/Welcome.php:60 +#: src/Module/Welcome.php:46 msgid "Edit Your Profile" msgstr "" -#: src/Module/Welcome.php:61 +#: src/Module/Welcome.php:47 msgid "" "Edit your default profile to your liking. Review the " "settings for hiding your list of friends and hiding the profile from unknown" " visitors." msgstr "Redakti viajn defaŭltan profilon kiel vi ŝatas ĝin. Kontrolu la agordojn por kaŝi vian kontaktliston aŭ kaŝi vian profilon al nekonataj vizitantoj." -#: src/Module/Welcome.php:62 +#: src/Module/Welcome.php:48 msgid "Profile Keywords" msgstr "" -#: src/Module/Welcome.php:63 +#: src/Module/Welcome.php:49 msgid "" "Set some public keywords for your profile which describe your interests. We " "may be able to find other people with similar interests and suggest " "friendships." msgstr "" -#: src/Module/Welcome.php:65 +#: src/Module/Welcome.php:51 msgid "Connecting" msgstr "" -#: src/Module/Welcome.php:67 +#: src/Module/Welcome.php:53 msgid "Importing Emails" msgstr "" -#: src/Module/Welcome.php:68 +#: src/Module/Welcome.php:54 msgid "" "Enter your email access information on your Connector Settings page if you " "wish to import and interact with friends or mailing lists from your email " "INBOX" msgstr "Entajpu la akreditaĵojn por via retpoŝtkonto en la konektilagordoj se vi volas importi aŭ interagi kun amikoj aŭ dissendlistoj pere de via retkesto." -#: src/Module/Welcome.php:69 +#: src/Module/Welcome.php:55 msgid "Go to Your Contacts Page" msgstr "" -#: src/Module/Welcome.php:70 +#: src/Module/Welcome.php:56 msgid "" "Your Contacts page is your gateway to managing friendships and connecting " "with friends on other networks. Typically you enter their address or site " "URL in the Add New Contact dialog." msgstr "Via kontaktpaĝo estas via portalo por administri amikojn kaj konekti kun amikoj en aliaj retoj. Vi kutime entajpas iliajn adreson aŭ URL adreso en la Aldonu Novan Kontakton dialogon." -#: src/Module/Welcome.php:71 +#: src/Module/Welcome.php:57 msgid "Go to Your Site's Directory" msgstr "" -#: src/Module/Welcome.php:72 +#: src/Module/Welcome.php:58 msgid "" "The Directory page lets you find other people in this network or other " "federated sites. Look for a Connect or Follow link on " "their profile page. Provide your own Identity Address if requested." msgstr "Ĉe la Katalogo vi povas trovi aliajn homojn en ĉi tiu retejo, au en aliaj federaciaj retejoj. Elrigardi al Konekti aŭ Sekvi ligiloj ĉe iliaj profilo. Donu vian propran Identecan Adreson se la retejo demandas ĝin." -#: src/Module/Welcome.php:73 +#: src/Module/Welcome.php:59 msgid "Finding New People" msgstr "" -#: src/Module/Welcome.php:74 +#: src/Module/Welcome.php:60 msgid "" "On the side panel of the Contacts page are several tools to find new " "friends. We can match people by interest, look up people by name or " @@ -11711,412 +11762,408 @@ msgid "" "hours." msgstr "En la flanka strio de la Kontaktoj paĝo troviĝas kelkajn helpilojn por trovi novajn amikojn. Ni povas automate trovi amikojn per interesoj, serĉu ilin per nomo aŭ intereso kaj faras sugestojn baze de estantaj kontaktoj. Ĉe nova instalita retejo, la unuaj sugestoj kutime aperas post 24 horoj." -#: src/Module/Welcome.php:77 +#: src/Module/Welcome.php:63 msgid "Add Your Contacts To Circle" msgstr "" -#: src/Module/Welcome.php:78 +#: src/Module/Welcome.php:64 msgid "" "Once you have made some friends, organize them into private conversation " "circles from the sidebar of your Contacts page and then you can interact " "with each circle privately on your Network page." msgstr "" -#: src/Module/Welcome.php:80 +#: src/Module/Welcome.php:66 msgid "Why Aren't My Posts Public?" msgstr "" -#: src/Module/Welcome.php:81 +#: src/Module/Welcome.php:67 msgid "" "Friendica respects your privacy. By default, your posts will only show up to" " people you've added as friends. For more information, see the help section " "from the link above." msgstr "" -#: src/Module/Welcome.php:83 +#: src/Module/Welcome.php:69 msgid "Getting Help" msgstr "" -#: src/Module/Welcome.php:84 +#: src/Module/Welcome.php:70 msgid "Go to the Help Section" msgstr "" -#: src/Module/Welcome.php:85 +#: src/Module/Welcome.php:71 msgid "" "Our help pages may be consulted for detail on other program" " features and resources." msgstr "Niaj Helpo paĝoj enhavas pli da detaloj pri aliaj programaj trajtoj." -#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:161 +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:147 msgid "{0} wants to follow you" msgstr "" -#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:163 +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:149 msgid "{0} has started following you" msgstr "" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:96 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:82 #, php-format msgid "%s liked %s's post" msgstr "%s ŝatis la afiŝon de %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:108 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:94 #, php-format msgid "%s disliked %s's post" msgstr "%s malŝatis la afiŝon de %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:120 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:106 #, php-format msgid "%s is attending %s's event" msgstr "%s ĉeestos la eventon de %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:132 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:118 #, php-format msgid "%s is not attending %s's event" msgstr "%s ne ĉeestos la eventon de %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:144 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:130 #, php-format msgid "%s may attending %s's event" msgstr "" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:174 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:160 #, php-format msgid "%s is now friends with %s" msgstr "%s amikiĝis kun %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:341 -#: src/Navigation/Notifications/Factory/FormattedNotify.php:379 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:327 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:365 #, php-format msgid "%s commented on %s's post" msgstr "%s komentis pri la afiŝo de %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:378 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:364 #, php-format msgid "%s created a new post" msgstr "%s kreis novan afiŝon" -#: src/Navigation/Notifications/Factory/Introduction.php:133 +#: src/Navigation/Notifications/Factory/Introduction.php:118 msgid "Friend Suggestion" msgstr "Amikosugestoj" -#: src/Navigation/Notifications/Factory/Introduction.php:159 +#: src/Navigation/Notifications/Factory/Introduction.php:144 msgid "Friend/Connect Request" msgstr "Kontaktpeto" -#: src/Navigation/Notifications/Factory/Introduction.php:159 -msgid "New Follower" -msgstr "Nova abonanto" - -#: src/Navigation/Notifications/Factory/Notification.php:134 +#: src/Navigation/Notifications/Factory/Notification.php:120 #, php-format msgid "%1$s wants to follow you" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:136 +#: src/Navigation/Notifications/Factory/Notification.php:122 #, php-format msgid "%1$s has started following you" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:208 +#: src/Navigation/Notifications/Factory/Notification.php:194 #, php-format msgid "%1$s liked your comment on %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:211 +#: src/Navigation/Notifications/Factory/Notification.php:197 #, php-format msgid "%1$s liked your post %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:218 +#: src/Navigation/Notifications/Factory/Notification.php:204 #, php-format msgid "%1$s disliked your comment on %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:221 +#: src/Navigation/Notifications/Factory/Notification.php:207 #, php-format msgid "%1$s disliked your post %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:228 +#: src/Navigation/Notifications/Factory/Notification.php:214 #, php-format msgid "%1$s shared your comment %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:231 -#: src/Navigation/Notifications/Factory/Notification.php:316 +#: src/Navigation/Notifications/Factory/Notification.php:217 +#: src/Navigation/Notifications/Factory/Notification.php:302 #, php-format msgid "%1$s shared your post %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:235 -#: src/Navigation/Notifications/Factory/Notification.php:305 +#: src/Navigation/Notifications/Factory/Notification.php:221 +#: src/Navigation/Notifications/Factory/Notification.php:291 #, php-format msgid "%1$s shared the post %2$s from %3$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:237 -#: src/Navigation/Notifications/Factory/Notification.php:307 +#: src/Navigation/Notifications/Factory/Notification.php:223 +#: src/Navigation/Notifications/Factory/Notification.php:293 #, php-format msgid "%1$s shared a post from %3$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:239 -#: src/Navigation/Notifications/Factory/Notification.php:309 +#: src/Navigation/Notifications/Factory/Notification.php:225 +#: src/Navigation/Notifications/Factory/Notification.php:295 #, php-format msgid "%1$s shared the post %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:241 -#: src/Navigation/Notifications/Factory/Notification.php:311 +#: src/Navigation/Notifications/Factory/Notification.php:227 +#: src/Navigation/Notifications/Factory/Notification.php:297 #, php-format msgid "%1$s shared a post" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:249 +#: src/Navigation/Notifications/Factory/Notification.php:235 #, php-format msgid "%1$s wants to attend your event %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:256 +#: src/Navigation/Notifications/Factory/Notification.php:242 #, php-format msgid "%1$s does not want to attend your event %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:263 +#: src/Navigation/Notifications/Factory/Notification.php:249 #, php-format msgid "%1$s maybe wants to attend your event %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:270 +#: src/Navigation/Notifications/Factory/Notification.php:256 #, php-format msgid "%1$s tagged you on %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:274 +#: src/Navigation/Notifications/Factory/Notification.php:260 #, php-format msgid "%1$s replied to you on %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:278 +#: src/Navigation/Notifications/Factory/Notification.php:264 #, php-format msgid "%1$s commented in your thread %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:282 +#: src/Navigation/Notifications/Factory/Notification.php:268 #, php-format msgid "%1$s commented on your comment %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:289 +#: src/Navigation/Notifications/Factory/Notification.php:275 #, php-format msgid "%1$s commented in their thread %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:291 +#: src/Navigation/Notifications/Factory/Notification.php:277 #, php-format msgid "%1$s commented in their thread" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:293 +#: src/Navigation/Notifications/Factory/Notification.php:279 #, php-format msgid "%1$s commented in the thread %2$s from %3$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:295 +#: src/Navigation/Notifications/Factory/Notification.php:281 #, php-format msgid "%1$s commented in the thread from %3$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:300 +#: src/Navigation/Notifications/Factory/Notification.php:286 #, php-format msgid "%1$s commented on your thread %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:225 -#: src/Navigation/Notifications/Repository/Notify.php:754 +#: src/Navigation/Notifications/Repository/Notify.php:211 +#: src/Navigation/Notifications/Repository/Notify.php:740 msgid "[Friendica:Notify]" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:293 +#: src/Navigation/Notifications/Repository/Notify.php:279 #, php-format msgid "%s New mail received at %s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:295 +#: src/Navigation/Notifications/Repository/Notify.php:281 #, php-format msgid "%1$s sent you a new private message at %2$s." msgstr "%1$s sendis al vi novan privatan mesaĝon ĉe %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:296 +#: src/Navigation/Notifications/Repository/Notify.php:282 msgid "a private message" msgstr "privatan mesaĝon" -#: src/Navigation/Notifications/Repository/Notify.php:296 +#: src/Navigation/Notifications/Repository/Notify.php:282 #, php-format msgid "%1$s sent you %2$s." msgstr "%1$s sendis al vi %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:298 +#: src/Navigation/Notifications/Repository/Notify.php:284 #, php-format msgid "Please visit %s to view and/or reply to your private messages." msgstr "Bonvolu viziti %s por vidi aŭ respondi viajn privatajn mesaĝojn." -#: src/Navigation/Notifications/Repository/Notify.php:328 +#: src/Navigation/Notifications/Repository/Notify.php:314 #, php-format msgid "%1$s commented on %2$s's %3$s %4$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:333 +#: src/Navigation/Notifications/Repository/Notify.php:319 #, php-format msgid "%1$s commented on your %2$s %3$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:337 +#: src/Navigation/Notifications/Repository/Notify.php:323 #, php-format msgid "%1$s commented on their %2$s %3$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:341 -#: src/Navigation/Notifications/Repository/Notify.php:788 +#: src/Navigation/Notifications/Repository/Notify.php:327 +#: src/Navigation/Notifications/Repository/Notify.php:774 #, php-format msgid "%1$s Comment to conversation #%2$d by %3$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:343 +#: src/Navigation/Notifications/Repository/Notify.php:329 #, php-format msgid "%s commented on an item/conversation you have been following." msgstr "%s komentis pri elemento/konversacio kiun vi sekvas." -#: src/Navigation/Notifications/Repository/Notify.php:347 -#: src/Navigation/Notifications/Repository/Notify.php:362 -#: src/Navigation/Notifications/Repository/Notify.php:814 +#: src/Navigation/Notifications/Repository/Notify.php:333 +#: src/Navigation/Notifications/Repository/Notify.php:348 +#: src/Navigation/Notifications/Repository/Notify.php:800 #, php-format msgid "Please visit %s to view and/or reply to the conversation." msgstr "Bonvolu viziti %s por vidi aŭ respondi la konversacion." -#: src/Navigation/Notifications/Repository/Notify.php:354 +#: src/Navigation/Notifications/Repository/Notify.php:340 #, php-format msgid "%s %s posted to your profile wall" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:356 +#: src/Navigation/Notifications/Repository/Notify.php:342 #, php-format msgid "%1$s posted to your profile wall at %2$s" msgstr "%1$s skribis al via profilmuro ĉe %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:357 +#: src/Navigation/Notifications/Repository/Notify.php:343 #, php-format msgid "%1$s posted to [url=%2$s]your wall[/url]" msgstr "%1$s afiŝis al [url=%2$s]via muro[/url]" -#: src/Navigation/Notifications/Repository/Notify.php:370 +#: src/Navigation/Notifications/Repository/Notify.php:356 #, php-format msgid "%s Introduction received" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:372 +#: src/Navigation/Notifications/Repository/Notify.php:358 #, php-format msgid "You've received an introduction from '%1$s' at %2$s" msgstr "Vi ricevis prezenton de '%1$s' ĉe %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:373 +#: src/Navigation/Notifications/Repository/Notify.php:359 #, php-format msgid "You've received [url=%1$s]an introduction[/url] from %2$s." msgstr "Vi ricevis [url=%1$s]prezenton[/url] de %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:378 -#: src/Navigation/Notifications/Repository/Notify.php:424 +#: src/Navigation/Notifications/Repository/Notify.php:364 +#: src/Navigation/Notifications/Repository/Notify.php:410 #, php-format msgid "You may visit their profile at %s" msgstr "Vi povas vidi la profilon de li aŭ ŝi ĉe %s" -#: src/Navigation/Notifications/Repository/Notify.php:380 +#: src/Navigation/Notifications/Repository/Notify.php:366 #, php-format msgid "Please visit %s to approve or reject the introduction." msgstr "Bonvolu viziti %s por aprobi aŭ malaprobi la prezenton." -#: src/Navigation/Notifications/Repository/Notify.php:387 +#: src/Navigation/Notifications/Repository/Notify.php:373 #, php-format msgid "%s A new person is sharing with you" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:389 -#: src/Navigation/Notifications/Repository/Notify.php:390 +#: src/Navigation/Notifications/Repository/Notify.php:375 +#: src/Navigation/Notifications/Repository/Notify.php:376 #, php-format msgid "%1$s is sharing with you at %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:397 +#: src/Navigation/Notifications/Repository/Notify.php:383 #, php-format msgid "%s You have a new follower" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:399 -#: src/Navigation/Notifications/Repository/Notify.php:400 +#: src/Navigation/Notifications/Repository/Notify.php:385 +#: src/Navigation/Notifications/Repository/Notify.php:386 #, php-format msgid "You have a new follower at %2$s : %1$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:413 +#: src/Navigation/Notifications/Repository/Notify.php:399 #, php-format msgid "%s Friend suggestion received" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:415 +#: src/Navigation/Notifications/Repository/Notify.php:401 #, php-format msgid "You've received a friend suggestion from '%1$s' at %2$s" msgstr "Vi ricevis amikosugeston de '%1$s' ĉe %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:416 +#: src/Navigation/Notifications/Repository/Notify.php:402 #, php-format msgid "" "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." msgstr "Vi ricevis [url=%1$s]amikosugeston[/url] pri %2$s de %3$s." -#: src/Navigation/Notifications/Repository/Notify.php:422 +#: src/Navigation/Notifications/Repository/Notify.php:408 msgid "Name:" msgstr "Nomo:" -#: src/Navigation/Notifications/Repository/Notify.php:423 +#: src/Navigation/Notifications/Repository/Notify.php:409 msgid "Photo:" msgstr "Bildo:" -#: src/Navigation/Notifications/Repository/Notify.php:426 +#: src/Navigation/Notifications/Repository/Notify.php:412 #, php-format msgid "Please visit %s to approve or reject the suggestion." msgstr "Bonvolu viziti %s por aprobi aŭ malaprobi la sugeston." -#: src/Navigation/Notifications/Repository/Notify.php:434 -#: src/Navigation/Notifications/Repository/Notify.php:449 +#: src/Navigation/Notifications/Repository/Notify.php:420 +#: src/Navigation/Notifications/Repository/Notify.php:435 #, php-format msgid "%s Connection accepted" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:436 -#: src/Navigation/Notifications/Repository/Notify.php:451 +#: src/Navigation/Notifications/Repository/Notify.php:422 +#: src/Navigation/Notifications/Repository/Notify.php:437 #, php-format msgid "'%1$s' has accepted your connection request at %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:437 -#: src/Navigation/Notifications/Repository/Notify.php:452 +#: src/Navigation/Notifications/Repository/Notify.php:423 +#: src/Navigation/Notifications/Repository/Notify.php:438 #, php-format msgid "%2$s has accepted your [url=%1$s]connection request[/url]." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:442 +#: src/Navigation/Notifications/Repository/Notify.php:428 msgid "" "You are now mutual friends and may exchange status updates, photos, and " "email without restriction." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:444 +#: src/Navigation/Notifications/Repository/Notify.php:430 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:457 +#: src/Navigation/Notifications/Repository/Notify.php:443 #, php-format msgid "" "'%1$s' has chosen to accept you a fan, which restricts some forms of " @@ -12125,34 +12172,34 @@ msgid "" "automatically." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:459 +#: src/Navigation/Notifications/Repository/Notify.php:445 #, php-format msgid "" "'%1$s' may choose to extend this into a two-way or more permissive " "relationship in the future." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:461 +#: src/Navigation/Notifications/Repository/Notify.php:447 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:471 +#: src/Navigation/Notifications/Repository/Notify.php:457 msgid "registration request" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:473 +#: src/Navigation/Notifications/Repository/Notify.php:459 #, php-format msgid "You've received a registration request from '%1$s' at %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:474 +#: src/Navigation/Notifications/Repository/Notify.php:460 #, php-format msgid "You've received a [url=%1$s]registration request[/url] from %2$s." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:479 -#: src/Navigation/Notifications/Repository/Notify.php:500 +#: src/Navigation/Notifications/Repository/Notify.php:465 +#: src/Navigation/Notifications/Repository/Notify.php:486 #, php-format msgid "" "Display Name:\t%s\n" @@ -12160,768 +12207,755 @@ msgid "" "Login Name:\t%s (%s)" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:485 +#: src/Navigation/Notifications/Repository/Notify.php:471 #, php-format msgid "Please visit %s to approve or reject the request." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:492 +#: src/Navigation/Notifications/Repository/Notify.php:478 msgid "new registration" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:494 +#: src/Navigation/Notifications/Repository/Notify.php:480 #, php-format msgid "You've received a new registration from '%1$s' at %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:495 +#: src/Navigation/Notifications/Repository/Notify.php:481 #, php-format msgid "You've received a [url=%1$s]new registration[/url] from %2$s." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:506 +#: src/Navigation/Notifications/Repository/Notify.php:492 #, php-format msgid "Please visit %s to have a look at the new registration." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:782 +#: src/Navigation/Notifications/Repository/Notify.php:768 #, php-format msgid "%s %s tagged you" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:785 +#: src/Navigation/Notifications/Repository/Notify.php:771 #, php-format msgid "%s %s shared a new post" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:793 +#: src/Navigation/Notifications/Repository/Notify.php:779 #, php-format msgid "%1$s %2$s liked your post #%3$d" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:796 +#: src/Navigation/Notifications/Repository/Notify.php:782 #, php-format msgid "%1$s %2$s liked your comment on #%3$d" msgstr "" -#: src/Object/EMail/ItemCCEMail.php:42 +#: src/Object/EMail/ItemCCEMail.php:28 #, php-format msgid "" "This message was sent to you by %s, a member of the Friendica social " "network." msgstr "Ĉi mesaĝo estas sendita al vi de %s, membro de la Friendica interkona reto." -#: src/Object/EMail/ItemCCEMail.php:44 +#: src/Object/EMail/ItemCCEMail.php:30 #, php-format msgid "You may visit them online at %s" msgstr "Vi povas viziti ilin rete ĉe %s" -#: src/Object/EMail/ItemCCEMail.php:45 +#: src/Object/EMail/ItemCCEMail.php:31 msgid "" "Please contact the sender by replying to this post if you do not wish to " "receive these messages." msgstr "Bonvolu rispondi al ĉi mesaĝo kaj kontaktu la sendinto se vi ne volas ricevi tiujn mesaĝojn." -#: src/Object/EMail/ItemCCEMail.php:49 +#: src/Object/EMail/ItemCCEMail.php:35 #, php-format msgid "%s posted an update." msgstr "%s publikigis afiŝon." -#: src/Object/Post.php:138 +#: src/Object/Post.php:124 msgid "Private Message" msgstr "Privata mesaĝo" -#: src/Object/Post.php:142 +#: src/Object/Post.php:128 msgid "Public Message" msgstr "" -#: src/Object/Post.php:146 +#: src/Object/Post.php:132 msgid "Unlisted Message" msgstr "" -#: src/Object/Post.php:182 +#: src/Object/Post.php:168 msgid "This entry was edited" msgstr "" -#: src/Object/Post.php:210 +#: src/Object/Post.php:196 msgid "Connector Message" msgstr "" -#: src/Object/Post.php:226 src/Object/Post.php:228 +#: src/Object/Post.php:225 src/Object/Post.php:227 msgid "Edit" msgstr "Redakti" -#: src/Object/Post.php:262 +#: src/Object/Post.php:261 msgid "Delete globally" msgstr "" -#: src/Object/Post.php:262 +#: src/Object/Post.php:261 msgid "Remove locally" msgstr "" -#: src/Object/Post.php:269 +#: src/Object/Post.php:268 #, php-format msgid "Block %s" msgstr "" -#: src/Object/Post.php:274 +#: src/Object/Post.php:273 #, php-format msgid "Ignore %s" msgstr "" -#: src/Object/Post.php:279 +#: src/Object/Post.php:278 #, php-format msgid "Collapse %s" msgstr "" -#: src/Object/Post.php:283 +#: src/Object/Post.php:282 msgid "Report post" msgstr "" -#: src/Object/Post.php:294 +#: src/Object/Post.php:293 msgid "Save to folder" msgstr "" -#: src/Object/Post.php:334 +#: src/Object/Post.php:333 msgid "I will attend" msgstr "" -#: src/Object/Post.php:334 +#: src/Object/Post.php:333 msgid "I will not attend" msgstr "" -#: src/Object/Post.php:334 +#: src/Object/Post.php:333 msgid "I might attend" msgstr "" -#: src/Object/Post.php:381 +#: src/Object/Post.php:380 msgid "Ignore thread" msgstr "" -#: src/Object/Post.php:382 +#: src/Object/Post.php:381 msgid "Unignore thread" msgstr "" -#: src/Object/Post.php:383 +#: src/Object/Post.php:382 msgid "Toggle ignore status" msgstr "" -#: src/Object/Post.php:393 +#: src/Object/Post.php:392 msgid "Add star" msgstr "" -#: src/Object/Post.php:394 +#: src/Object/Post.php:393 msgid "Remove star" msgstr "" -#: src/Object/Post.php:395 +#: src/Object/Post.php:394 msgid "Toggle star status" msgstr "" -#: src/Object/Post.php:406 +#: src/Object/Post.php:405 msgid "Pin" msgstr "" -#: src/Object/Post.php:407 +#: src/Object/Post.php:406 msgid "Unpin" msgstr "" -#: src/Object/Post.php:408 +#: src/Object/Post.php:407 msgid "Toggle pin status" msgstr "" -#: src/Object/Post.php:411 +#: src/Object/Post.php:410 msgid "Pinned" msgstr "" -#: src/Object/Post.php:416 +#: src/Object/Post.php:415 msgid "Add tag" msgstr "" -#: src/Object/Post.php:429 +#: src/Object/Post.php:430 msgid "Quote share this" msgstr "" -#: src/Object/Post.php:429 +#: src/Object/Post.php:430 msgid "Quote Share" msgstr "" -#: src/Object/Post.php:432 +#: src/Object/Post.php:433 msgid "Reshare this" msgstr "" -#: src/Object/Post.php:432 +#: src/Object/Post.php:433 msgid "Reshare" msgstr "" -#: src/Object/Post.php:433 +#: src/Object/Post.php:434 msgid "Cancel your Reshare" msgstr "" -#: src/Object/Post.php:433 +#: src/Object/Post.php:434 msgid "Unshare" msgstr "" -#: src/Object/Post.php:485 +#: src/Object/Post.php:478 #, php-format msgid "%s (Received %s)" msgstr "" -#: src/Object/Post.php:491 +#: src/Object/Post.php:484 msgid "Comment this item on your system" msgstr "" -#: src/Object/Post.php:491 +#: src/Object/Post.php:484 msgid "Remote comment" msgstr "" -#: src/Object/Post.php:513 +#: src/Object/Post.php:506 msgid "Share via ..." msgstr "" -#: src/Object/Post.php:513 +#: src/Object/Post.php:506 msgid "Share via external services" msgstr "" -#: src/Object/Post.php:520 +#: src/Object/Post.php:513 msgid "Unknown parent" msgstr "" -#: src/Object/Post.php:524 +#: src/Object/Post.php:517 #, php-format msgid "in reply to %s" msgstr "" -#: src/Object/Post.php:526 +#: src/Object/Post.php:519 msgid "Parent is probably private or not federated." msgstr "" -#: src/Object/Post.php:550 +#: src/Object/Post.php:543 msgid "to" msgstr "al" -#: src/Object/Post.php:551 +#: src/Object/Post.php:544 msgid "via" msgstr "" -#: src/Object/Post.php:552 +#: src/Object/Post.php:545 msgid "Wall-to-Wall" msgstr "Muro-al-Muro" -#: src/Object/Post.php:553 +#: src/Object/Post.php:546 msgid "via Wall-To-Wall:" msgstr "per Muro-al-Muro:" -#: src/Object/Post.php:604 +#: src/Object/Post.php:599 #, php-format msgid "Reply to %s" msgstr "" -#: src/Object/Post.php:607 +#: src/Object/Post.php:602 msgid "More" msgstr "" -#: src/Object/Post.php:626 +#: src/Object/Post.php:621 msgid "Notifier task is pending" msgstr "" -#: src/Object/Post.php:627 +#: src/Object/Post.php:622 msgid "Delivery to remote servers is pending" msgstr "" -#: src/Object/Post.php:628 +#: src/Object/Post.php:623 msgid "Delivery to remote servers is underway" msgstr "" -#: src/Object/Post.php:629 +#: src/Object/Post.php:624 msgid "Delivery to remote servers is mostly done" msgstr "" -#: src/Object/Post.php:630 +#: src/Object/Post.php:625 msgid "Delivery to remote servers is done" msgstr "" -#: src/Object/Post.php:652 +#: src/Object/Post.php:647 #, php-format msgid "%d comment" msgid_plural "%d comments" msgstr[0] "%d komento" msgstr[1] "%d komentoj" -#: src/Object/Post.php:653 +#: src/Object/Post.php:648 msgid "Show more" msgstr "" -#: src/Object/Post.php:654 +#: src/Object/Post.php:649 msgid "Show fewer" msgstr "" -#: src/Object/Post.php:691 +#: src/Object/Post.php:686 #, php-format msgid "Reshared by: %s" msgstr "" -#: src/Object/Post.php:696 +#: src/Object/Post.php:691 #, php-format msgid "Viewed by: %s" msgstr "" -#: src/Object/Post.php:701 +#: src/Object/Post.php:696 #, php-format msgid "Read by: %s" msgstr "" -#: src/Object/Post.php:706 +#: src/Object/Post.php:701 #, php-format msgid "Liked by: %s" msgstr "" -#: src/Object/Post.php:711 +#: src/Object/Post.php:706 #, php-format msgid "Disliked by: %s" msgstr "" -#: src/Object/Post.php:716 +#: src/Object/Post.php:711 #, php-format msgid "Attended by: %s" msgstr "" -#: src/Object/Post.php:721 +#: src/Object/Post.php:716 #, php-format msgid "Maybe attended by: %s" msgstr "" -#: src/Object/Post.php:726 +#: src/Object/Post.php:721 #, php-format msgid "Not attended by: %s" msgstr "" -#: src/Object/Post.php:731 +#: src/Object/Post.php:726 #, php-format msgid "Commented by: %s" msgstr "" -#: src/Object/Post.php:736 +#: src/Object/Post.php:731 #, php-format msgid "Reacted with %s by: %s" msgstr "" -#: src/Object/Post.php:759 +#: src/Object/Post.php:754 #, php-format msgid "Quote shared by: %s" msgstr "" -#: src/Protocol/ActivityPub/Receiver.php:568 +#: src/Protocol/ActivityPub/Receiver.php:557 msgid "Chat" msgstr "" -#: src/Protocol/Delivery.php:547 +#: src/Protocol/Delivery.php:530 msgid "(no subject)" msgstr "" -#: src/Protocol/OStatus.php:1390 -#, php-format -msgid "%s is now following %s." -msgstr "" - -#: src/Protocol/OStatus.php:1391 -msgid "following" -msgstr "sekvanta" - -#: src/Protocol/OStatus.php:1394 -#, php-format -msgid "%s stopped following %s." -msgstr "" - -#: src/Protocol/OStatus.php:1395 -msgid "stopped following" -msgstr "ne plu sekvas" - -#: src/Render/FriendicaSmartyEngine.php:56 +#: src/Render/FriendicaSmartyEngine.php:42 #, php-format msgid "The folder %s must be writable by webserver." msgstr "" -#: src/Security/Authentication.php:227 +#: src/Security/Authentication.php:200 msgid "Login failed." msgstr "Ensalutado malsukcesis." -#: src/Security/Authentication.php:272 +#: src/Security/Authentication.php:245 msgid "Login failed. Please check your credentials." msgstr "" -#: src/Security/Authentication.php:391 +#: src/Security/Authentication.php:359 #, php-format msgid "Welcome %s" msgstr "" -#: src/Security/Authentication.php:392 +#: src/Security/Authentication.php:360 msgid "Please upload a profile photo." msgstr "Bonvolu alŝuti profilbildon." -#: src/Util/EMailer/MailBuilder.php:260 +#: src/Security/OpenWebAuth.php:149 +#, php-format +msgid "OpenWebAuth: %1$s welcomes %2$s" +msgstr "" + +#: src/Util/EMailer/MailBuilder.php:246 msgid "Friendica Notification" msgstr "" -#: src/Util/EMailer/NotifyMailBuilder.php:78 -#: src/Util/EMailer/SystemMailBuilder.php:54 +#: src/Util/EMailer/NotifyMailBuilder.php:64 +#: src/Util/EMailer/SystemMailBuilder.php:40 #, php-format msgid "%1$s, %2$s Administrator" msgstr "" -#: src/Util/EMailer/NotifyMailBuilder.php:80 -#: src/Util/EMailer/SystemMailBuilder.php:56 +#: src/Util/EMailer/NotifyMailBuilder.php:66 +#: src/Util/EMailer/SystemMailBuilder.php:42 #, php-format msgid "%s Administrator" msgstr "" -#: src/Util/EMailer/NotifyMailBuilder.php:193 -#: src/Util/EMailer/NotifyMailBuilder.php:217 -#: src/Util/EMailer/SystemMailBuilder.php:101 -#: src/Util/EMailer/SystemMailBuilder.php:118 +#: src/Util/EMailer/NotifyMailBuilder.php:179 +#: src/Util/EMailer/NotifyMailBuilder.php:203 +#: src/Util/EMailer/SystemMailBuilder.php:87 +#: src/Util/EMailer/SystemMailBuilder.php:104 msgid "thanks" msgstr "" -#: src/Util/Temporal.php:172 +#: src/Util/Temporal.php:158 msgid "YYYY-MM-DD or MM-DD" msgstr "" -#: src/Util/Temporal.php:280 +#: src/Util/Temporal.php:266 #, php-format msgid "Time zone: %s Change in Settings" msgstr "" -#: src/Util/Temporal.php:320 src/Util/Temporal.php:329 +#: src/Util/Temporal.php:306 src/Util/Temporal.php:315 msgid "never" msgstr "" -#: src/Util/Temporal.php:343 +#: src/Util/Temporal.php:329 msgid "less than a second ago" msgstr "" -#: src/Util/Temporal.php:352 +#: src/Util/Temporal.php:338 msgid "year" msgstr "" -#: src/Util/Temporal.php:352 +#: src/Util/Temporal.php:338 msgid "years" msgstr "" -#: src/Util/Temporal.php:353 +#: src/Util/Temporal.php:339 msgid "months" msgstr "" -#: src/Util/Temporal.php:354 +#: src/Util/Temporal.php:340 msgid "weeks" msgstr "" -#: src/Util/Temporal.php:355 +#: src/Util/Temporal.php:341 msgid "days" msgstr "" -#: src/Util/Temporal.php:356 +#: src/Util/Temporal.php:342 msgid "hour" msgstr "" -#: src/Util/Temporal.php:356 +#: src/Util/Temporal.php:342 msgid "hours" msgstr "" -#: src/Util/Temporal.php:357 +#: src/Util/Temporal.php:343 msgid "minute" msgstr "" -#: src/Util/Temporal.php:357 +#: src/Util/Temporal.php:343 msgid "minutes" msgstr "" -#: src/Util/Temporal.php:358 +#: src/Util/Temporal.php:344 msgid "second" msgstr "" -#: src/Util/Temporal.php:358 +#: src/Util/Temporal.php:344 msgid "seconds" msgstr "" -#: src/Util/Temporal.php:367 +#: src/Util/Temporal.php:353 #, php-format msgid "in %1$d %2$s" msgstr "" -#: src/Util/Temporal.php:370 +#: src/Util/Temporal.php:356 #, php-format msgid "%1$d %2$s ago" msgstr "" -#: src/Worker/PushSubscription.php:110 +#: src/Worker/PushSubscription.php:96 msgid "Notification from Friendica" msgstr "" -#: src/Worker/PushSubscription.php:111 +#: src/Worker/PushSubscription.php:97 msgid "Empty Post" msgstr "" -#: view/theme/duepuntozero/config.php:68 +#: view/theme/duepuntozero/config.php:56 msgid "default" msgstr "" -#: view/theme/duepuntozero/config.php:69 +#: view/theme/duepuntozero/config.php:57 msgid "greenzero" msgstr "" -#: view/theme/duepuntozero/config.php:70 +#: view/theme/duepuntozero/config.php:58 msgid "purplezero" msgstr "" -#: view/theme/duepuntozero/config.php:71 +#: view/theme/duepuntozero/config.php:59 msgid "easterbunny" msgstr "" -#: view/theme/duepuntozero/config.php:72 +#: view/theme/duepuntozero/config.php:60 msgid "darkzero" msgstr "" -#: view/theme/duepuntozero/config.php:73 +#: view/theme/duepuntozero/config.php:61 msgid "comix" msgstr "" -#: view/theme/duepuntozero/config.php:74 +#: view/theme/duepuntozero/config.php:62 msgid "slackr" msgstr "" -#: view/theme/duepuntozero/config.php:87 +#: view/theme/duepuntozero/config.php:75 msgid "Variations" msgstr "" -#: view/theme/frio/config.php:146 +#: view/theme/frio/config.php:134 msgid "Note" msgstr "" -#: view/theme/frio/config.php:146 +#: view/theme/frio/config.php:134 msgid "Check image permissions if all users are allowed to see the image" msgstr "" -#: view/theme/frio/config.php:152 +#: view/theme/frio/config.php:140 msgid "Appearance" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Accent color" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Blue" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Red" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Purple" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Green" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Pink" msgstr "" -#: view/theme/frio/config.php:154 +#: view/theme/frio/config.php:142 msgid "Copy or paste schemestring" msgstr "" -#: view/theme/frio/config.php:154 +#: view/theme/frio/config.php:142 msgid "" "You can copy this string to share your theme with others. Pasting here " "applies the schemestring" msgstr "" -#: view/theme/frio/config.php:155 +#: view/theme/frio/config.php:143 msgid "Navigation bar background color" msgstr "" -#: view/theme/frio/config.php:156 +#: view/theme/frio/config.php:144 msgid "Navigation bar icon color " msgstr "" -#: view/theme/frio/config.php:157 +#: view/theme/frio/config.php:145 msgid "Link color" msgstr "" -#: view/theme/frio/config.php:158 +#: view/theme/frio/config.php:146 msgid "Set the background color" msgstr "" -#: view/theme/frio/config.php:159 +#: view/theme/frio/config.php:147 msgid "Content background opacity" msgstr "" -#: view/theme/frio/config.php:160 +#: view/theme/frio/config.php:148 msgid "Set the background image" msgstr "" -#: view/theme/frio/config.php:161 +#: view/theme/frio/config.php:149 msgid "Background image style" msgstr "" -#: view/theme/frio/config.php:164 +#: view/theme/frio/config.php:152 msgid "Always open Compose page" msgstr "" -#: view/theme/frio/config.php:164 +#: view/theme/frio/config.php:152 msgid "" "The New Post button always open the Compose page " "instead of the modal form. When this is disabled, the Compose page can be " "accessed with a middle click on the link or from the modal." msgstr "" -#: view/theme/frio/config.php:168 +#: view/theme/frio/config.php:156 msgid "Login page background image" msgstr "" -#: view/theme/frio/config.php:172 +#: view/theme/frio/config.php:160 msgid "Login page background color" msgstr "" -#: view/theme/frio/config.php:172 +#: view/theme/frio/config.php:160 msgid "Leave background image and color empty for theme defaults" msgstr "" -#: view/theme/frio/php/Image.php:39 +#: view/theme/frio/php/Image.php:27 msgid "Top Banner" msgstr "" -#: view/theme/frio/php/Image.php:39 +#: view/theme/frio/php/Image.php:27 msgid "" "Resize image to the width of the screen and show background color below on " "long pages." msgstr "" -#: view/theme/frio/php/Image.php:40 +#: view/theme/frio/php/Image.php:28 msgid "Full screen" msgstr "" -#: view/theme/frio/php/Image.php:40 +#: view/theme/frio/php/Image.php:28 msgid "" "Resize image to fill entire screen, clipping either the right or the bottom." msgstr "" -#: view/theme/frio/php/Image.php:41 +#: view/theme/frio/php/Image.php:29 msgid "Single row mosaic" msgstr "" -#: view/theme/frio/php/Image.php:41 +#: view/theme/frio/php/Image.php:29 msgid "" "Resize image to repeat it on a single row, either vertical or horizontal." msgstr "" -#: view/theme/frio/php/Image.php:42 +#: view/theme/frio/php/Image.php:30 msgid "Mosaic" msgstr "" -#: view/theme/frio/php/Image.php:42 +#: view/theme/frio/php/Image.php:30 msgid "Repeat image to fill the screen." msgstr "" -#: view/theme/frio/php/default.php:82 view/theme/frio/php/standard.php:40 +#: view/theme/frio/php/default.php:70 view/theme/frio/php/standard.php:28 msgid "Skip to main content" msgstr "" -#: view/theme/frio/php/default.php:153 view/theme/frio/php/standard.php:75 +#: view/theme/frio/php/default.php:141 view/theme/frio/php/standard.php:63 msgid "Back to top" msgstr "" -#: view/theme/frio/php/scheme.php:105 +#: view/theme/frio/php/scheme.php:93 msgid "Light" msgstr "" -#: view/theme/frio/php/scheme.php:106 +#: view/theme/frio/php/scheme.php:94 msgid "Dark" msgstr "" -#: view/theme/frio/php/scheme.php:107 +#: view/theme/frio/php/scheme.php:95 msgid "Black" msgstr "" -#: view/theme/frio/php/scheme.php:118 +#: view/theme/frio/php/scheme.php:106 msgid "Custom" msgstr "" -#: view/theme/frio/theme.php:214 +#: view/theme/frio/theme.php:202 msgid "Guest" msgstr "" -#: view/theme/frio/theme.php:217 +#: view/theme/frio/theme.php:205 msgid "Visitor" msgstr "" -#: view/theme/quattro/config.php:89 +#: view/theme/quattro/config.php:77 msgid "Alignment" msgstr "" -#: view/theme/quattro/config.php:89 +#: view/theme/quattro/config.php:77 msgid "Left" msgstr "" -#: view/theme/quattro/config.php:89 +#: view/theme/quattro/config.php:77 msgid "Center" msgstr "" -#: view/theme/quattro/config.php:90 +#: view/theme/quattro/config.php:78 msgid "Color scheme" msgstr "" -#: view/theme/quattro/config.php:91 +#: view/theme/quattro/config.php:79 msgid "Posts font size" msgstr "" -#: view/theme/quattro/config.php:92 +#: view/theme/quattro/config.php:80 msgid "Textareas font size" msgstr "" -#: view/theme/vier/config.php:91 +#: view/theme/vier/config.php:79 msgid "Comma separated list of helper groups" msgstr "" -#: view/theme/vier/config.php:131 +#: view/theme/vier/config.php:119 msgid "don't show" msgstr "" -#: view/theme/vier/config.php:131 +#: view/theme/vier/config.php:119 msgid "show" msgstr "" -#: view/theme/vier/config.php:137 +#: view/theme/vier/config.php:125 msgid "Set style" msgstr "" -#: view/theme/vier/config.php:138 +#: view/theme/vier/config.php:126 msgid "Community Pages" msgstr "" -#: view/theme/vier/config.php:139 view/theme/vier/theme.php:148 +#: view/theme/vier/config.php:127 view/theme/vier/theme.php:136 msgid "Community Profiles" msgstr "" -#: view/theme/vier/config.php:140 +#: view/theme/vier/config.php:128 msgid "Help or @NewHere ?" msgstr "" -#: view/theme/vier/config.php:141 view/theme/vier/theme.php:319 +#: view/theme/vier/config.php:129 view/theme/vier/theme.php:307 msgid "Connect Services" msgstr "" -#: view/theme/vier/config.php:142 +#: view/theme/vier/config.php:130 msgid "Find Friends" msgstr "" -#: view/theme/vier/config.php:143 view/theme/vier/theme.php:175 +#: view/theme/vier/config.php:131 view/theme/vier/theme.php:163 msgid "Last users" msgstr "" -#: view/theme/vier/theme.php:234 +#: view/theme/vier/theme.php:222 msgid "Quick Start" msgstr "" diff --git a/view/lang/eo/strings.php b/view/lang/eo/strings.php index a433c78eb1..069db185b3 100644 --- a/view/lang/eo/strings.php +++ b/view/lang/eo/strings.php @@ -135,6 +135,9 @@ $a->strings['Personal'] = 'Propra'; $a->strings['Posts that mention or involve you'] = 'Afiŝoj menciantaj vin aŭ pri vi'; $a->strings['Starred'] = 'Steligita'; $a->strings['Favourite Posts'] = 'Favorigitaj Afiŝoj'; +$a->strings['Archives'] = 'Arkivoj'; +$a->strings['Saved Searches'] = 'Konservitaj Serĉadoj'; +$a->strings['Saved Folders'] = 'Konservitaj Dosierujoj'; $a->strings['show more'] = 'montri pli'; $a->strings['event'] = 'okazo'; $a->strings['status'] = 'staton'; @@ -222,14 +225,12 @@ $a->strings['Invite Friends'] = 'Inviti amikojn'; $a->strings['Global Directory'] = 'Tutmonda Katalogo'; $a->strings['Local Directory'] = 'Loka Katalogo'; $a->strings['All Contacts'] = 'Ĉiuj Kontaktoj'; -$a->strings['Saved Folders'] = 'Konservitaj Dosierujoj'; $a->strings['Everything'] = 'Ĉio'; $a->strings['Categories'] = 'Kategorioj'; $a->strings['%d contact in common'] = [ 0 => '%d komuna kontakto', 1 => '%d komunaj kontaktoj', ]; -$a->strings['Archives'] = 'Arkivoj'; $a->strings['No contacts'] = 'Neniu kontaktoj'; $a->strings['%d Contact'] = [ 0 => '%d Kontakto', @@ -237,7 +238,6 @@ $a->strings['%d Contact'] = [ ]; $a->strings['View Contacts'] = 'Vidi Kontaktojn'; $a->strings['Remove term'] = 'Forviŝu terminon'; -$a->strings['Saved Searches'] = 'Konservitaj Serĉadoj'; $a->strings['Location:'] = 'Loko:'; $a->strings['Post to Email'] = 'Sendi per retpoŝto'; $a->strings['CC: email addresses'] = 'CC: retpoŝtadresojn'; @@ -298,7 +298,6 @@ $a->strings['An author or name was not found.'] = 'Ne trovis aŭtoron aŭ nomon. $a->strings['No browser URL could be matched to this address.'] = 'Neniu retuma URL adreso kongruas al la adreso.'; $a->strings['Unable to match @-style Identity Address with a known protocol or email contact.'] = 'Ne eblas kongrui @-stilan identecon adreson al iu konata protokolo au retpoŝtadreso.'; $a->strings['Use mailto: in front of address to force email check.'] = 'Uzu mailto: antaŭ la adreso por devigi la testadon per retpoŝto.'; -$a->strings['The profile address specified belongs to a network which has been disabled on this site.'] = 'Tiu profila adreso apartenas al retejo kiu estas maŝaltita je ĉi tiu retejo.'; $a->strings['Limited profile. This person will be unable to receive direct/personal notifications from you.'] = 'Profilo limigata. Ĉi persono ne eblos ricevi rektajn/personajn atentigojn de vi. '; $a->strings['Unable to retrieve contact information.'] = 'Ne eblas ricevi kontaktinformojn.'; $a->strings['Starts:'] = 'Ekas:'; @@ -377,6 +376,8 @@ $a->strings['Failed Updates'] = 'Malsukcesaj Ĝisdatigoj'; $a->strings['This does not include updates prior to 1139, which did not return a status.'] = 'Ne inkluzivas ĝisdatigojn antaŭ 1139, kiuj ne liveris elirstaton.'; $a->strings['Mark success (if update was manually applied)'] = 'Marki sukcesa (se la ĝisdatigo estas instalita mane)'; $a->strings['Attempt to execute this update step automatically'] = 'Provi automate plenumi ĉi tian paŝon de la ĝisdatigo.'; +$a->strings['No'] = 'Ne'; +$a->strings['Yes'] = 'Jes'; $a->strings['Other'] = 'Alia'; $a->strings['Logs'] = 'Protokoloj'; $a->strings['Clear'] = 'Forviŝi'; @@ -513,7 +514,6 @@ $a->strings['Replies/likes to your public posts may still be vi $a->strings['Status'] = 'Stato'; $a->strings['Toggle Blocked status'] = 'Ŝalti/malŝalti Blokitan staton'; $a->strings['Toggle Ignored status'] = 'Ŝalti/malŝalti Ignoritan staton'; -$a->strings['Yes'] = 'Jes'; $a->strings['No suggestions available. If this is a new site, please try again in 24 hours.'] = 'Neniu sugestoj disponeblas. Se ĉi tiu estas nova retejo, bonvolu reprovi post 24 horoj.'; $a->strings['No results.'] = 'Nenion trovita.'; $a->strings['Not available.'] = 'Ne disponebla.'; @@ -595,7 +595,6 @@ $a->strings['Deny'] = 'Negi'; $a->strings['Show Ignored Requests'] = 'Montri ignoritajn petojn'; $a->strings['Hide Ignored Requests'] = 'Kaŝi ignoritajn petojn'; $a->strings['Claims to be known to you: '] = 'Pensas ke vi konas ilin:'; -$a->strings['No'] = 'Ne'; $a->strings['Friend'] = 'Amiko'; $a->strings['No introductions.'] = 'Neniom da prezentoj'; $a->strings['Network Notifications'] = 'Retaj Atentigoj'; @@ -605,8 +604,6 @@ $a->strings['Home Notifications'] = 'Hejmrilataj atentigoj'; $a->strings['{0} requested registration'] = '{0} petis registradon'; $a->strings['Authorize application connection'] = 'Rajtigi programkonekton'; $a->strings['Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?'] = 'Ĉu rajtigi ĉi tiun programon por atingi viajn afiŝojn kaj kontaktojn kaj/aŭ krei novajn afiŝojn?'; -$a->strings['Remote privacy information not available.'] = 'Informoj pri fora privateca ne estas disponebla.'; -$a->strings['Visible to:'] = 'Videbla al:'; $a->strings['Edit post'] = 'Redakti afiŝon'; $a->strings['web link'] = 'TTT ligilo'; $a->strings['Insert video link'] = 'Alglui ligilon de video'; @@ -616,6 +613,8 @@ $a->strings['audio link'] = 'sono ligilo'; $a->strings['Remove Item Tag'] = 'Forviŝi markon'; $a->strings['Select a tag to remove: '] = 'Elektu forviŝontan markon:'; $a->strings['Remove'] = 'Forviŝi'; +$a->strings['Remote privacy information not available.'] = 'Informoj pri fora privateca ne estas disponebla.'; +$a->strings['Visible to:'] = 'Videbla al:'; $a->strings['No contacts.'] = 'Neniu kontaktojn.'; $a->strings['Image file is empty.'] = 'Bilddosiero estas malplena.'; $a->strings['View Album'] = 'Vidi albumon'; @@ -751,7 +750,6 @@ $a->strings['%s commented on %s\'s post'] = '%s komentis pri la afiŝo de %s'; $a->strings['%s created a new post'] = '%s kreis novan afiŝon'; $a->strings['Friend Suggestion'] = 'Amikosugestoj'; $a->strings['Friend/Connect Request'] = 'Kontaktpeto'; -$a->strings['New Follower'] = 'Nova abonanto'; $a->strings['%1$s sent you a new private message at %2$s.'] = '%1$s sendis al vi novan privatan mesaĝon ĉe %2$s.'; $a->strings['a private message'] = 'privatan mesaĝon'; $a->strings['%1$s sent you %2$s.'] = '%1$s sendis al vi %2$s.'; @@ -782,7 +780,5 @@ $a->strings['%d comment'] = [ 0 => '%d komento', 1 => '%d komentoj', ]; -$a->strings['following'] = 'sekvanta'; -$a->strings['stopped following'] = 'ne plu sekvas'; $a->strings['Login failed.'] = 'Ensalutado malsukcesis.'; $a->strings['Please upload a profile photo.'] = 'Bonvolu alŝuti profilbildon.'; diff --git a/view/lang/es/messages.po b/view/lang/es/messages.po index 9076ded622..43bc0f8c66 100644 --- a/view/lang/es/messages.po +++ b/view/lang/es/messages.po @@ -1,8 +1,7 @@ # FRIENDICA Distributed Social Network -# SPDX-FileCopyrightText: Copyright (C) 2010-2024, the Friendica project -# -# SPDX-License-Identifier: AGPL-3.0-or-later -# +# Copyright (C) 2010-2024, the Friendica project +# This file is distributed under the same license as the Friendica package. +# # Translators: # 20fb8626d04159f4c3248015e64bc077, 2011 # a4e12f943b784a073d5fd49662354257_daaba5cupload_max_filesize
is set to %s (%s byte)"
msgstr ""
-#: src/Module/Admin/Site.php:497
+#: src/Module/Admin/Site.php:489
msgid "Maximum image length"
msgstr "Largo máximo de imagen"
-#: src/Module/Admin/Site.php:497
+#: src/Module/Admin/Site.php:489
msgid ""
"Maximum length in pixels of the longest side of uploaded images. Default is "
"-1, which means no limits."
msgstr "Longitud máxima en píxeles del lado más largo de las imágenes subidas. Por defecto es -1, que significa que no hay límites."
-#: src/Module/Admin/Site.php:498
+#: src/Module/Admin/Site.php:490
msgid "JPEG image quality"
msgstr "Calidad de imagen JPEG"
-#: src/Module/Admin/Site.php:498
+#: src/Module/Admin/Site.php:490
msgid ""
"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
"100, which is full quality."
msgstr "Los archivos JPEG subidos se guardarán con este ajuste de calidad [0-100]. Por defecto es 100, que es calidad máxima."
-#: src/Module/Admin/Site.php:500
+#: src/Module/Admin/Site.php:491
+msgid "Maximum media file size"
+msgstr ""
+
+#: src/Module/Admin/Site.php:491
+#, php-format
+msgid ""
+"Maximum size in bytes of uploaded media files. Default is 0, which means no limits. You can put k, m, or g behind the desired value for KiB, MiB, GiB, respectively.\n"
+"\t\t\t\t\t\t\t\t\t\t\t\t\tThe value of upload_max_filesize
in your PHP.ini
needs be set to at least the desired limit.\n"
+"\t\t\t\t\t\t\t\t\t\t\t\t\tCurrently upload_max_filesize
is set to %s (%s byte)"
+msgstr ""
+
+#: src/Module/Admin/Site.php:496
msgid "Register policy"
msgstr "Política de registros"
-#: src/Module/Admin/Site.php:501
+#: src/Module/Admin/Site.php:497
msgid "Maximum Users"
msgstr ""
-#: src/Module/Admin/Site.php:501
+#: src/Module/Admin/Site.php:497
msgid ""
"If defined, the register policy is automatically closed when the given "
"number of users is reached and reopens the registry when the number drops "
@@ -4804,167 +4821,167 @@ msgid ""
"not when the policy is set to approval."
msgstr ""
-#: src/Module/Admin/Site.php:502
+#: src/Module/Admin/Site.php:498
msgid "Maximum Daily Registrations"
msgstr "Registros Máximos Diarios"
-#: src/Module/Admin/Site.php:502
+#: src/Module/Admin/Site.php:498
msgid ""
"If registration is permitted above, this sets the maximum number of new user"
" registrations to accept per day. If register is set to closed, this "
"setting has no effect."
msgstr "Si anteriormente se ha permitido el registro, esto establece el número máximo de registro de nuevos usuarios aceptados por día. Si el registro se establece como cerrado, esta opción no tiene efecto."
-#: src/Module/Admin/Site.php:503
+#: src/Module/Admin/Site.php:499
msgid "Register text"
msgstr "Términos"
-#: src/Module/Admin/Site.php:503
+#: src/Module/Admin/Site.php:499
msgid ""
"Will be displayed prominently on the registration page. You can use BBCode "
"here."
msgstr "Se mostrará de forma destacada en la página de registro. Puede utilizar BBCode aquí."
-#: src/Module/Admin/Site.php:504
+#: src/Module/Admin/Site.php:500
msgid "Forbidden Nicknames"
msgstr "Apodos Prohibidos"
-#: src/Module/Admin/Site.php:504
+#: src/Module/Admin/Site.php:500
msgid ""
"Comma separated list of nicknames that are forbidden from registration. "
"Preset is a list of role names according RFC 2142."
msgstr "Lista separada por comas de apodos cuyo registro está prohibido. Lo Preestablecido es una lista de nombres de roles según RFC 2142."
-#: src/Module/Admin/Site.php:505
+#: src/Module/Admin/Site.php:501
msgid "Accounts abandoned after x days"
msgstr "Cuentas abandonadas después de x días"
-#: src/Module/Admin/Site.php:505
+#: src/Module/Admin/Site.php:501
msgid ""
"Will not waste system resources polling external sites for abandonded "
"accounts. Enter 0 for no time limit."
msgstr "No gastará recursos del sistema creando sondeos a sitios externos para cuentas abandonadas. Introduce 0 para ningún límite temporal."
-#: src/Module/Admin/Site.php:506
+#: src/Module/Admin/Site.php:502
msgid "Allowed friend domains"
msgstr "Dominios amigos permitidos"
-#: src/Module/Admin/Site.php:506
+#: src/Module/Admin/Site.php:502
msgid ""
"Comma separated list of domains which are allowed to establish friendships "
"with this site. Wildcards are accepted. Empty to allow any domains"
msgstr "Lista separada por comas de los dominios que están autorizados para establecer conexiones con este sitio. Se aceptan comodines. Dejar en blanco para permitir cualquier dominio"
-#: src/Module/Admin/Site.php:507
+#: src/Module/Admin/Site.php:503
msgid "Allowed email domains"
msgstr "Dominios de correo permitidos"
-#: src/Module/Admin/Site.php:507
+#: src/Module/Admin/Site.php:503
msgid ""
"Comma separated list of domains which are allowed in email addresses for "
"registrations to this site. Wildcards are accepted. Empty to allow any "
"domains"
msgstr "Lista separada por comas de los dominios que están autorizados en las direcciones de correo para registrarse en este sitio. Se aceptan comodines. Dejar en blanco para permitir cualquier dominio"
-#: src/Module/Admin/Site.php:508
+#: src/Module/Admin/Site.php:504
msgid "Disallowed email domains"
msgstr ""
-#: src/Module/Admin/Site.php:508
+#: src/Module/Admin/Site.php:504
msgid ""
"Comma separated list of domains which are rejected as email addresses for "
"registrations to this site. Wildcards are accepted."
msgstr ""
-#: src/Module/Admin/Site.php:509
+#: src/Module/Admin/Site.php:505
msgid "No OEmbed rich content"
msgstr "No hay contenido enriquecido OEmbed"
-#: src/Module/Admin/Site.php:509
+#: src/Module/Admin/Site.php:505
msgid ""
"Don't show the rich content (e.g. embedded PDF), except from the domains "
"listed below."
msgstr "No muestre el contenido enriquecido (por ejemplo, PDF incrustado), excepto de los dominios que se enumeran a continuación."
-#: src/Module/Admin/Site.php:510
+#: src/Module/Admin/Site.php:506
msgid "Trusted third-party domains"
msgstr "Dominios terceros de confianza"
-#: src/Module/Admin/Site.php:510
+#: src/Module/Admin/Site.php:506
msgid ""
"Comma separated list of domains from which content is allowed to be embedded"
" in posts like with OEmbed. All sub-domains of the listed domains are "
"allowed as well."
msgstr "Lista separada por comas de dominios de los que se permite incrustar contenido en publicaciones como con OEmbed. También se permiten todos los subdominios de los dominios enumerados."
-#: src/Module/Admin/Site.php:511
+#: src/Module/Admin/Site.php:507
msgid "Block public"
msgstr "Bloqueo público"
-#: src/Module/Admin/Site.php:511
+#: src/Module/Admin/Site.php:507
msgid ""
"Check to block public access to all otherwise public personal pages on this "
"site unless you are currently logged in."
msgstr "Marca para bloquear el acceso público a todas las páginas personales, aún siendo públicas, hasta que no hayas iniciado tu sesión."
-#: src/Module/Admin/Site.php:512
+#: src/Module/Admin/Site.php:508
msgid "Force publish"
msgstr "Forzar publicación"
-#: src/Module/Admin/Site.php:512
+#: src/Module/Admin/Site.php:508
msgid ""
"Check to force all profiles on this site to be listed in the site directory."
msgstr "Marca para forzar que todos los perfiles de este sitio sean listados en el directorio del sitio."
-#: src/Module/Admin/Site.php:512
+#: src/Module/Admin/Site.php:508
msgid "Enabling this may violate privacy laws like the GDPR"
msgstr "Habilitar esto puede violar leyes de privacidad como GDPR"
-#: src/Module/Admin/Site.php:513
+#: src/Module/Admin/Site.php:509
msgid "Global directory URL"
msgstr "URL del directorio global."
-#: src/Module/Admin/Site.php:513
+#: src/Module/Admin/Site.php:509
msgid ""
"URL to the global directory. If this is not set, the global directory is "
"completely unavailable to the application."
msgstr "URL del directorio global. Si se deja este campo vacío, el directorio global sera completamente inaccesible para la instancia."
-#: src/Module/Admin/Site.php:514
+#: src/Module/Admin/Site.php:510
msgid "Private posts by default for new users"
msgstr "Publicaciones privadas por defecto para usuarios nuevos"
-#: src/Module/Admin/Site.php:514
+#: src/Module/Admin/Site.php:510
msgid ""
"Set default post permissions for all new members to the default privacy "
"circle rather than public."
msgstr ""
-#: src/Module/Admin/Site.php:515
+#: src/Module/Admin/Site.php:511
msgid "Don't include post content in email notifications"
msgstr "No incluir el contenido del post en las notificaciones de correo electrónico"
-#: src/Module/Admin/Site.php:515
+#: src/Module/Admin/Site.php:511
msgid ""
"Don't include the content of a post/comment/private message/etc. in the "
"email notifications that are sent out from this site, as a privacy measure."
msgstr "No incluye el contenido de un mensaje/comentario/mensaje privado/etc. en las notificaciones de correo electrónico que se envían desde este sitio, como una medida de privacidad."
-#: src/Module/Admin/Site.php:516
+#: src/Module/Admin/Site.php:512
msgid "Disallow public access to addons listed in the apps menu."
msgstr "Deshabilitar acceso a addons listados en el menú de aplicaciones."
-#: src/Module/Admin/Site.php:516
+#: src/Module/Admin/Site.php:512
msgid ""
"Checking this box will restrict addons listed in the apps menu to members "
"only."
msgstr "Habilitando esta opción restringe el acceso a addons en el menú de aplicaciones a usuarios identificados."
-#: src/Module/Admin/Site.php:517
+#: src/Module/Admin/Site.php:513
msgid "Don't embed private images in posts"
msgstr "No agregar imágenes privados en las publicaciones"
-#: src/Module/Admin/Site.php:517
+#: src/Module/Admin/Site.php:513
msgid ""
"Don't replace locally-hosted private photos in posts with an embedded copy "
"of the image. This means that contacts who receive posts containing private "
@@ -4972,11 +4989,11 @@ msgid ""
"while."
msgstr "No reemplazar imágenes privadas guardadas localmente en el servidor con imágenes integrados en los envíos. Esto significa que contactos que reciben publicaciones tendrán que autenticarse y cargar cada imagen, lo que puede demorar."
-#: src/Module/Admin/Site.php:518
+#: src/Module/Admin/Site.php:514
msgid "Explicit Content"
msgstr "Contenido Explicito"
-#: src/Module/Admin/Site.php:518
+#: src/Module/Admin/Site.php:514
msgid ""
"Set this to announce that your node is used mostly for explicit content that"
" might not be suited for minors. This information will be published in the "
@@ -4985,329 +5002,319 @@ msgid ""
"will be shown at the user registration page."
msgstr "Configure esto para anunciar si su nodo se usa principalmente para contenido explícito que podría no ser adecuado para menores. Esta información se publicaría en la información del nodo y podría ser utilizada, por ejemplo, por el Directorio Global, para filtrar su nodo de las listas de nodos. Para unirse. Además, se mostrará una nota sobre esto en la página de registro del usuario."
-#: src/Module/Admin/Site.php:519
+#: src/Module/Admin/Site.php:515
msgid "Only local search"
msgstr ""
-#: src/Module/Admin/Site.php:519
+#: src/Module/Admin/Site.php:515
msgid ""
"Blocks search for users who are not logged in to prevent crawlers from "
"blocking your system."
msgstr ""
-#: src/Module/Admin/Site.php:520
+#: src/Module/Admin/Site.php:516
msgid "Blocked tags for trending tags"
msgstr ""
-#: src/Module/Admin/Site.php:520
+#: src/Module/Admin/Site.php:516
msgid ""
"Comma separated list of hashtags that shouldn't be displayed in the trending"
" tags."
msgstr ""
-#: src/Module/Admin/Site.php:521
+#: src/Module/Admin/Site.php:517
msgid "Cache contact avatars"
msgstr ""
-#: src/Module/Admin/Site.php:521
+#: src/Module/Admin/Site.php:517
msgid ""
"Locally store the avatar pictures of the contacts. This uses a lot of "
"storage space but it increases the performance."
msgstr ""
-#: src/Module/Admin/Site.php:522
+#: src/Module/Admin/Site.php:518
msgid "Allow Users to set remote_self"
msgstr "Permitir a los usuarios de definir remote_self (yo-remoto)"
-#: src/Module/Admin/Site.php:522
+#: src/Module/Admin/Site.php:518
msgid ""
"With checking this, every user is allowed to mark every contact as a "
"remote_self in the repair contact dialog. Setting this flag on a contact "
"causes mirroring every posting of that contact in the users stream."
msgstr "Al habilitar esta opción, cada perfil tiene el permiso de marcar cualquiera de sus contactos como un perfil_remoto. Habilitar la opción perfil_remoto para un contacto genera que todas las publicaciones de este contacto seran re-publicado en el muro del perfil."
-#: src/Module/Admin/Site.php:523
+#: src/Module/Admin/Site.php:519
msgid "Allow Users to set up relay channels"
msgstr ""
-#: src/Module/Admin/Site.php:523
+#: src/Module/Admin/Site.php:519
msgid ""
"If enabled, it is possible to create relay users that are used to reshare "
"content based on user defined channels."
msgstr ""
-#: src/Module/Admin/Site.php:524
+#: src/Module/Admin/Site.php:520
msgid "Adjust the feed poll frequency"
msgstr ""
-#: src/Module/Admin/Site.php:524
+#: src/Module/Admin/Site.php:520
msgid "Automatically detect and set the best feed poll frequency."
msgstr ""
-#: src/Module/Admin/Site.php:525
+#: src/Module/Admin/Site.php:521
msgid "Minimum poll interval"
msgstr ""
-#: src/Module/Admin/Site.php:525
+#: src/Module/Admin/Site.php:521
msgid ""
"Minimal distance in minutes between two polls for mail and feed contacts. "
"Reasonable values are between 1 and 59."
msgstr ""
-#: src/Module/Admin/Site.php:526
+#: src/Module/Admin/Site.php:522
msgid "Enable multiple registrations"
msgstr ""
-#: src/Module/Admin/Site.php:526
+#: src/Module/Admin/Site.php:522
msgid "Enable users to register additional accounts for use as pages."
msgstr ""
-#: src/Module/Admin/Site.php:527
+#: src/Module/Admin/Site.php:523
msgid "Enable OpenID"
msgstr ""
-#: src/Module/Admin/Site.php:527
+#: src/Module/Admin/Site.php:523
msgid "Enable OpenID support for registration and logins."
msgstr ""
-#: src/Module/Admin/Site.php:528
+#: src/Module/Admin/Site.php:524
msgid "Enable full name check"
msgstr ""
-#: src/Module/Admin/Site.php:528
+#: src/Module/Admin/Site.php:524
msgid ""
"Prevents users from registering with a display name with fewer than two "
"parts separated by spaces."
msgstr ""
-#: src/Module/Admin/Site.php:529
+#: src/Module/Admin/Site.php:525
msgid "Email administrators on new registration"
msgstr ""
-#: src/Module/Admin/Site.php:529
+#: src/Module/Admin/Site.php:525
msgid ""
"If enabled and the system is set to an open registration, an email for each "
"new registration is sent to the administrators."
msgstr ""
-#: src/Module/Admin/Site.php:530
+#: src/Module/Admin/Site.php:526
msgid "Community pages for visitors"
msgstr "Paginas de Comunidad para Visitantes"
-#: src/Module/Admin/Site.php:530
+#: src/Module/Admin/Site.php:526
msgid ""
"Which community pages should be available for visitors. Local users always "
"see both pages."
msgstr "Que comunidades deben estar disponibles para visitantes. Usuarios locales siempre ven ambas páginas."
-#: src/Module/Admin/Site.php:531
+#: src/Module/Admin/Site.php:527
msgid "Posts per user on community page"
msgstr "Publicaciones por usuario en la pagina de comunidad"
-#: src/Module/Admin/Site.php:531
+#: src/Module/Admin/Site.php:527
msgid ""
"The maximum number of posts per user on the local community page. This is "
"useful, when a single user floods the local community page."
msgstr ""
-#: src/Module/Admin/Site.php:532
+#: src/Module/Admin/Site.php:528
msgid "Posts per server on community page"
msgstr ""
-#: src/Module/Admin/Site.php:532
+#: src/Module/Admin/Site.php:528
msgid ""
"The maximum number of posts per server on the global community page. This is"
" useful, when posts from a single server flood the global community page."
msgstr ""
-#: src/Module/Admin/Site.php:534
+#: src/Module/Admin/Site.php:530
msgid "Enable Mail support"
msgstr ""
-#: src/Module/Admin/Site.php:534
+#: src/Module/Admin/Site.php:530
msgid ""
"Enable built-in mail support to poll IMAP folders and to reply via mail."
msgstr ""
-#: src/Module/Admin/Site.php:535
+#: src/Module/Admin/Site.php:531
msgid ""
"Mail support can't be enabled because the PHP IMAP module is not installed."
msgstr ""
-#: src/Module/Admin/Site.php:536
-msgid "Enable OStatus support"
-msgstr ""
-
-#: src/Module/Admin/Site.php:536
-msgid ""
-"Enable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
-"communications in OStatus are public."
-msgstr ""
-
-#: src/Module/Admin/Site.php:538
+#: src/Module/Admin/Site.php:533
msgid ""
"Diaspora support can't be enabled because Friendica was installed into a sub"
" directory."
msgstr "El soporte para Diaspora* no se puede habilitar porque friendica se instalo en un directorio subalterno (sub directory)."
-#: src/Module/Admin/Site.php:539
+#: src/Module/Admin/Site.php:534
msgid "Enable Diaspora support"
msgstr "Habilitar el soporte para Diaspora*"
-#: src/Module/Admin/Site.php:539
+#: src/Module/Admin/Site.php:534
msgid ""
"Enable built-in Diaspora network compatibility for communicating with "
"diaspora servers."
msgstr ""
-#: src/Module/Admin/Site.php:540
+#: src/Module/Admin/Site.php:535
msgid "Verify SSL"
msgstr "Verificar SSL"
-#: src/Module/Admin/Site.php:540
+#: src/Module/Admin/Site.php:535
msgid ""
"If you wish, you can turn on strict certificate checking. This will mean you"
" cannot connect (at all) to self-signed SSL sites."
msgstr "Si quieres puedes activar la comprobación estricta de certificados. Esto significa que serás incapaz de conectar con ningún sitio que use certificados SSL autofirmados."
-#: src/Module/Admin/Site.php:541
+#: src/Module/Admin/Site.php:536
msgid "Proxy user"
msgstr "Usuario proxy"
-#: src/Module/Admin/Site.php:541
+#: src/Module/Admin/Site.php:536
msgid "User name for the proxy server."
msgstr ""
-#: src/Module/Admin/Site.php:542
+#: src/Module/Admin/Site.php:537
msgid "Proxy URL"
msgstr "Dirección proxy"
-#: src/Module/Admin/Site.php:542
+#: src/Module/Admin/Site.php:537
msgid ""
"If you want to use a proxy server that Friendica should use to connect to "
"the network, put the URL of the proxy here."
msgstr ""
-#: src/Module/Admin/Site.php:543
+#: src/Module/Admin/Site.php:538
msgid "Network timeout"
msgstr "Tiempo de espera de red"
-#: src/Module/Admin/Site.php:543
+#: src/Module/Admin/Site.php:538
msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
msgstr "Valor en segundos. Usar 0 para dejarlo sin límites (no se recomienda)."
-#: src/Module/Admin/Site.php:544
+#: src/Module/Admin/Site.php:539
msgid "Maximum Load Average"
msgstr "Promedio de carga máxima"
-#: src/Module/Admin/Site.php:544
+#: src/Module/Admin/Site.php:539
#, php-format
msgid ""
"Maximum system load before delivery and poll processes are deferred - "
"default %d."
msgstr "Carga máxima del sistema antes de entrega y envío son retrasados - default %d."
-#: src/Module/Admin/Site.php:545
+#: src/Module/Admin/Site.php:540
msgid "Minimal Memory"
msgstr "Memoria Mínima"
-#: src/Module/Admin/Site.php:545
+#: src/Module/Admin/Site.php:540
msgid ""
"Minimal free memory in MB for the worker. Needs access to /proc/meminfo - "
"default 0 (deactivated)."
msgstr "Memoria mínima en MB del worker. Necesita acceso a /proc/meminfo - default 0 (desactivado)."
-#: src/Module/Admin/Site.php:546
+#: src/Module/Admin/Site.php:541
msgid "Periodically optimize tables"
msgstr "Periodicamente optimizar tablas"
-#: src/Module/Admin/Site.php:546
+#: src/Module/Admin/Site.php:541
msgid "Periodically optimize tables like the cache and the workerqueue"
msgstr "Periódicamente optimizar tablas como Cache y cola de worker"
-#: src/Module/Admin/Site.php:548
+#: src/Module/Admin/Site.php:543
msgid "Discover followers/followings from contacts"
msgstr "Descubrir seguidores/seguimientos de contactos"
-#: src/Module/Admin/Site.php:548
+#: src/Module/Admin/Site.php:543
msgid ""
"If enabled, contacts are checked for their followers and following contacts."
msgstr "Si lo habilita, se checan contactos por sus seguidores y sus contactos."
-#: src/Module/Admin/Site.php:549
+#: src/Module/Admin/Site.php:544
msgid "None - deactivated"
msgstr "Ninguno - desactivado"
-#: src/Module/Admin/Site.php:550
+#: src/Module/Admin/Site.php:545
msgid ""
"Local contacts - contacts of our local contacts are discovered for their "
"followers/followings."
msgstr "Contactos locales - contactos de nuestros contactos locales buscados por seguidores/seguimientos."
-#: src/Module/Admin/Site.php:551
+#: src/Module/Admin/Site.php:546
msgid ""
"Interactors - contacts of our local contacts and contacts who interacted on "
"locally visible postings are discovered for their followers/followings."
msgstr "Interactores - contactos de contactos locales y contactos que interactuan en artículos locales son buscados por sus seguidores/seguimientos."
-#: src/Module/Admin/Site.php:553
+#: src/Module/Admin/Site.php:548
msgid "Only update contacts/servers with local data"
msgstr ""
-#: src/Module/Admin/Site.php:553
+#: src/Module/Admin/Site.php:548
msgid ""
"If enabled, the system will only look for changes in contacts and servers "
"that engaged on this system by either being in a contact list of a user or "
"when posts or comments exists from the contact on this system."
msgstr ""
-#: src/Module/Admin/Site.php:554
+#: src/Module/Admin/Site.php:549
msgid "Synchronize the contacts with the directory server"
msgstr "Sincronizar los contactos con el servidor de directorio"
-#: src/Module/Admin/Site.php:554
+#: src/Module/Admin/Site.php:549
msgid ""
"if enabled, the system will check periodically for new contacts on the "
"defined directory server."
msgstr "Si habilta, el sistema checará periodicamente por nuevos contactos en el servidor de directorio definido."
-#: src/Module/Admin/Site.php:556
+#: src/Module/Admin/Site.php:551
msgid "Discover contacts from other servers"
msgstr "Descubrir contactos de otros servidores"
-#: src/Module/Admin/Site.php:556
+#: src/Module/Admin/Site.php:551
msgid ""
"Periodically query other servers for contacts and servers that they know of."
" The system queries Friendica, Mastodon and Hubzilla servers. Keep it "
"deactivated on small machines to decrease the database size and load."
msgstr ""
-#: src/Module/Admin/Site.php:557
+#: src/Module/Admin/Site.php:552
msgid "Days between requery"
msgstr "Días entre búsquedas"
-#: src/Module/Admin/Site.php:557
+#: src/Module/Admin/Site.php:552
msgid ""
"Number of days after which a server is requeried for their contacts and "
"servers it knows of. This is only used when the discovery is activated."
msgstr ""
-#: src/Module/Admin/Site.php:558
+#: src/Module/Admin/Site.php:553
msgid "Search the local directory"
msgstr "Buscar el directorio local"
-#: src/Module/Admin/Site.php:558
+#: src/Module/Admin/Site.php:553
msgid ""
"Search the local directory instead of the global directory. When searching "
"locally, every search will be executed on the global directory in the "
"background. This improves the search results when the search is repeated."
msgstr "Buscar en el directorio local en vez del directorio global. Cuando se busca localmente, cada búsqueda sera efectuada en el directorio global en el background. Esto mejora los resultados de la búsqueda cuando la misma es repetida."
-#: src/Module/Admin/Site.php:560
+#: src/Module/Admin/Site.php:555
msgid "Publish server information"
msgstr "Publicar información del servidor"
-#: src/Module/Admin/Site.php:560
+#: src/Module/Admin/Site.php:555
msgid ""
"If enabled, general server and usage data will be published. The data "
"contains the name and version of the server, number of users with public "
@@ -5315,50 +5322,50 @@ msgid ""
" href=\"http://the-federation.info/\">the-federation.info for details."
msgstr "Si se habilita, se publicarán datos de uso y servidor. Contiene nombre y versión del servidor, usuarios con perfiles públicos, no. de artículos, protocolos activos y conectores. Ver the-federation.info para mas detalles."
-#: src/Module/Admin/Site.php:562
+#: src/Module/Admin/Site.php:557
msgid "Check upstream version"
msgstr "Verifique la versión ascendente"
-#: src/Module/Admin/Site.php:562
+#: src/Module/Admin/Site.php:557
msgid ""
"Enables checking for new Friendica versions at github. If there is a new "
"version, you will be informed in the admin panel overview."
msgstr "Permite verificar nuevas versiones de Friendica en Github. Si hay una nueva versión, se le informará en el panel de administración."
-#: src/Module/Admin/Site.php:563
+#: src/Module/Admin/Site.php:558
msgid "Suppress Tags"
msgstr "Suprimir etiquetas"
-#: src/Module/Admin/Site.php:563
+#: src/Module/Admin/Site.php:558
msgid "Suppress showing a list of hashtags at the end of the posting."
msgstr "Suprimir la lista de tags al final de una publicación."
-#: src/Module/Admin/Site.php:564
+#: src/Module/Admin/Site.php:559
msgid "Clean database"
msgstr "Limpiar Base de Datos"
-#: src/Module/Admin/Site.php:564
+#: src/Module/Admin/Site.php:559
msgid ""
"Remove old remote items, orphaned database records and old content from some"
" other helper tables."
msgstr "Borrar artículos viejos remotos, registros de BD huerfanos y algunos viejos de tablas auxiliares."
-#: src/Module/Admin/Site.php:565
+#: src/Module/Admin/Site.php:560
msgid "Lifespan of remote items"
msgstr "Tiempo de vida de artículos remotos"
-#: src/Module/Admin/Site.php:565
+#: src/Module/Admin/Site.php:560
msgid ""
"When the database cleanup is enabled, this defines the days after which "
"remote items will be deleted. Own items, and marked or filed items are "
"always kept. 0 disables this behaviour."
msgstr "Cuando habilita limpieza de BD, define los días en que artículos remotos serán borrados. Propios, marcados o archivados son siempre conservados. 0 deshabilita este comportamiento."
-#: src/Module/Admin/Site.php:566
+#: src/Module/Admin/Site.php:561
msgid "Lifespan of unclaimed items"
msgstr "Tiempo de vida de artículos no reclamados"
-#: src/Module/Admin/Site.php:566
+#: src/Module/Admin/Site.php:561
msgid ""
"When the database cleanup is enabled, this defines the days after which "
"unclaimed remote items (mostly content from the relay) will be deleted. "
@@ -5366,175 +5373,184 @@ msgid ""
"items if set to 0."
msgstr "Cuando se habilita limpieza de BD, esto define los dias en que los articulos ignorados remotos (mas que nada contenido del Relay) serán borrados. Valor Default es 90 días. Es default del tiempo de vida general de artículos remotos se setea en 0."
-#: src/Module/Admin/Site.php:567
+#: src/Module/Admin/Site.php:562
msgid "Lifespan of raw conversation data"
msgstr "Tiempo de vida de datos de conversación "
-#: src/Module/Admin/Site.php:567
+#: src/Module/Admin/Site.php:562
msgid ""
-"The conversation data is used for ActivityPub and OStatus, as well as for "
-"debug purposes. It should be safe to remove it after 14 days, default is 90 "
-"days."
-msgstr "Los datos de conversación son usados por ActivityPub y OStatus, también por propósito de Debugg. Debe ser seguro borrarlos después de 14 dias, default es 90 días."
+"The conversation data is used for ActivityPub, as well as for debug "
+"purposes. It should be safe to remove it after 14 days, default is 90 days."
+msgstr ""
-#: src/Module/Admin/Site.php:568
+#: src/Module/Admin/Site.php:563
msgid "Maximum numbers of comments per post"
msgstr "Numero máximo de respuestas por tema"
-#: src/Module/Admin/Site.php:568
+#: src/Module/Admin/Site.php:563
msgid "How much comments should be shown for each post? Default value is 100."
msgstr "¿Cuantos comentarios deberían ser mostrados por tema? Valor por defecto es 100."
-#: src/Module/Admin/Site.php:569
+#: src/Module/Admin/Site.php:564
msgid "Maximum numbers of comments per post on the display page"
msgstr "Maximo numero de comentarios por artículo de página de despliegue"
-#: src/Module/Admin/Site.php:569
+#: src/Module/Admin/Site.php:564
msgid ""
"How many comments should be shown on the single view for each post? Default "
"value is 1000."
msgstr "Cuantos comentarios deben ser mostrados en una sola vista por cada uno? Valor default es 1000."
-#: src/Module/Admin/Site.php:570
+#: src/Module/Admin/Site.php:565
msgid "Items per page"
msgstr ""
-#: src/Module/Admin/Site.php:570
+#: src/Module/Admin/Site.php:565
msgid ""
"Number of items per page in stream pages (network, community, "
"profile/contact statuses, search)."
msgstr ""
-#: src/Module/Admin/Site.php:571
+#: src/Module/Admin/Site.php:566
msgid "Items per page for mobile devices"
msgstr ""
-#: src/Module/Admin/Site.php:571
+#: src/Module/Admin/Site.php:566
msgid ""
"Number of items per page in stream pages (network, community, "
"profile/contact statuses, search) for mobile devices."
msgstr ""
-#: src/Module/Admin/Site.php:572
+#: src/Module/Admin/Site.php:567
msgid "Temp path"
msgstr "Ruta a los temporales"
-#: src/Module/Admin/Site.php:572
+#: src/Module/Admin/Site.php:567
msgid ""
"If you have a restricted system where the webserver can't access the system "
"temp path, enter another path here."
msgstr "Si tiene un sistema restringido en donde el servidor web no puede acceder la dirección del sistema temp, ingrese una dirección alternativa aquí. "
-#: src/Module/Admin/Site.php:573
+#: src/Module/Admin/Site.php:568
msgid "Only search in tags"
msgstr "Solo buscar en tags"
-#: src/Module/Admin/Site.php:573
+#: src/Module/Admin/Site.php:568
msgid "On large systems the text search can slow down the system extremely."
msgstr "En sistemas grandes, la búsqueda de texto puede enlentecer el sistema gravemente."
-#: src/Module/Admin/Site.php:574
+#: src/Module/Admin/Site.php:569
+msgid "Limited search scope"
+msgstr ""
+
+#: src/Module/Admin/Site.php:569
+msgid ""
+"If enabled, searches will only be performed in the data used for the "
+"channels and not in all posts."
+msgstr ""
+
+#: src/Module/Admin/Site.php:570
msgid "Maximum age of items in the search table"
msgstr ""
-#: src/Module/Admin/Site.php:574
+#: src/Module/Admin/Site.php:570
msgid ""
"Maximum age of items in the search table in days. Lower values will increase"
" the performance and reduce disk usage. 0 means no age restriction."
msgstr ""
-#: src/Module/Admin/Site.php:575
+#: src/Module/Admin/Site.php:571
msgid "Generate counts per contact circle when calculating network count"
msgstr ""
-#: src/Module/Admin/Site.php:575
+#: src/Module/Admin/Site.php:571
msgid ""
"On systems with users that heavily use contact circles the query can be very"
" expensive."
msgstr ""
-#: src/Module/Admin/Site.php:576
+#: src/Module/Admin/Site.php:572
msgid "Process \"view\" activities"
msgstr ""
-#: src/Module/Admin/Site.php:576
+#: src/Module/Admin/Site.php:572
msgid ""
"\"view\" activities are mostly geberated by Peertube systems. Per default "
"they are not processed for performance reasons. Only activate this option on"
" performant system."
msgstr ""
-#: src/Module/Admin/Site.php:577
+#: src/Module/Admin/Site.php:573
msgid "Days, after which a contact is archived"
msgstr ""
-#: src/Module/Admin/Site.php:577
+#: src/Module/Admin/Site.php:573
msgid ""
"Number of days that we try to deliver content or to update the contact data "
"before we archive a contact."
msgstr ""
-#: src/Module/Admin/Site.php:579
+#: src/Module/Admin/Site.php:575
msgid "Maximum number of parallel workers"
msgstr "Numero máximo de trabajos paralelos de fondo."
-#: src/Module/Admin/Site.php:579
+#: src/Module/Admin/Site.php:575
#, php-format
msgid ""
"On shared hosters set this to %d. On larger systems, values of %d are great."
" Default value is %d."
msgstr "En hosts compartidos ponga a %d. En sistemas grandes, valores de %d estan bien. Valor Default es %d."
-#: src/Module/Admin/Site.php:580
+#: src/Module/Admin/Site.php:576
msgid "Maximum load for workers"
msgstr ""
-#: src/Module/Admin/Site.php:580
+#: src/Module/Admin/Site.php:576
msgid "Maximum load that causes a cooldown before each worker function call."
msgstr ""
-#: src/Module/Admin/Site.php:581
+#: src/Module/Admin/Site.php:577
msgid "Enable fastlane"
msgstr "Habilitar ascenso rápido"
-#: src/Module/Admin/Site.php:581
+#: src/Module/Admin/Site.php:577
msgid ""
"When enabed, the fastlane mechanism starts an additional worker if processes"
" with higher priority are blocked by processes of lower priority."
msgstr "Cuando está habilitado, el mecanismo ascenso rápido inicia un trabajador adicional si los procesos de mayor prioridad son bloqueados por prcesos de menor prioridad."
-#: src/Module/Admin/Site.php:582
+#: src/Module/Admin/Site.php:578
msgid "Decoupled receiver"
msgstr ""
-#: src/Module/Admin/Site.php:582
+#: src/Module/Admin/Site.php:578
msgid ""
"Decouple incoming ActivityPub posts by processing them in the background via"
" a worker process. Only enable this on fast systems."
msgstr ""
-#: src/Module/Admin/Site.php:583
+#: src/Module/Admin/Site.php:579
msgid "Cron interval"
msgstr ""
-#: src/Module/Admin/Site.php:583
+#: src/Module/Admin/Site.php:579
msgid "Minimal period in minutes between two calls of the \"Cron\" worker job."
msgstr ""
-#: src/Module/Admin/Site.php:584
+#: src/Module/Admin/Site.php:580
msgid "Worker defer limit"
msgstr ""
-#: src/Module/Admin/Site.php:584
+#: src/Module/Admin/Site.php:580
msgid ""
"Per default the systems tries delivering for 15 times before dropping it."
msgstr ""
-#: src/Module/Admin/Site.php:585
+#: src/Module/Admin/Site.php:581
msgid "Worker fetch limit"
msgstr ""
-#: src/Module/Admin/Site.php:585
+#: src/Module/Admin/Site.php:581
msgid ""
"Number of worker tasks that are fetched in a single query. Higher values "
"should increase the performance, too high values will mostly likely decrease"
@@ -5542,214 +5558,214 @@ msgid ""
"system."
msgstr ""
-#: src/Module/Admin/Site.php:587
+#: src/Module/Admin/Site.php:583
msgid "Direct relay transfer"
msgstr "Transferencia directa del Reenvío"
-#: src/Module/Admin/Site.php:587
+#: src/Module/Admin/Site.php:583
msgid ""
"Enables the direct transfer to other servers without using the relay servers"
msgstr "Habilita transferencia directa a otros servidores sin usar servidores de reenvío"
-#: src/Module/Admin/Site.php:588
+#: src/Module/Admin/Site.php:584
msgid "Relay scope"
msgstr "Enfoque del Reenvío"
-#: src/Module/Admin/Site.php:588
+#: src/Module/Admin/Site.php:584
msgid ""
"Can be \"all\" or \"tags\". \"all\" means that every public post should be "
"received. \"tags\" means that only posts with selected tags should be "
"received."
msgstr "Puede ser \"all\" o \"tags\". \"all\" significa que cada artículo público será recibido. \"tags\" sólo artículos de esas etiquetas deben ser recibidos."
-#: src/Module/Admin/Site.php:588 src/Module/Contact/Profile.php:314
-#: src/Module/Settings/TwoFactor/Index.php:146
+#: src/Module/Admin/Site.php:584 src/Module/Contact/Profile.php:314
+#: src/Module/Settings/TwoFactor/Index.php:132
msgid "Disabled"
msgstr "Deshabilitado"
-#: src/Module/Admin/Site.php:588
+#: src/Module/Admin/Site.php:584
msgid "all"
msgstr "todas"
-#: src/Module/Admin/Site.php:588
+#: src/Module/Admin/Site.php:584
msgid "tags"
msgstr "etiquetas"
-#: src/Module/Admin/Site.php:589
+#: src/Module/Admin/Site.php:585
msgid "Server tags"
msgstr "Etiquetas del Servidor"
-#: src/Module/Admin/Site.php:589
+#: src/Module/Admin/Site.php:585
msgid "Comma separated list of tags for the \"tags\" subscription."
msgstr "Lista separada por comas de etiquetas de suscripción \"tags\"."
-#: src/Module/Admin/Site.php:590
+#: src/Module/Admin/Site.php:586
msgid "Deny Server tags"
msgstr "Denegar etiquetas de Servidor"
-#: src/Module/Admin/Site.php:590
+#: src/Module/Admin/Site.php:586
msgid "Comma separated list of tags that are rejected."
msgstr "Lista separada por comas de etiquetas denegadas."
-#: src/Module/Admin/Site.php:591
+#: src/Module/Admin/Site.php:587
msgid "Maximum amount of tags"
msgstr ""
-#: src/Module/Admin/Site.php:591
+#: src/Module/Admin/Site.php:587
msgid ""
"Maximum amount of tags in a post before it is rejected as spam. The post has"
" to contain at least one link. Posts from subscribed accounts will not be "
"rejected."
msgstr ""
-#: src/Module/Admin/Site.php:592
+#: src/Module/Admin/Site.php:588
msgid "Allow user tags"
msgstr "Permitir etiquetas de Usuario"
-#: src/Module/Admin/Site.php:592
+#: src/Module/Admin/Site.php:588
msgid ""
"If enabled, the tags from the saved searches will used for the \"tags\" "
"subscription in addition to the \"relay_server_tags\"."
msgstr "Si se habilita, etiquetas de las búsquedas grabadas serán usadas para suscripción de \"tags\" además de \"relay_server_tags\"."
-#: src/Module/Admin/Site.php:593
+#: src/Module/Admin/Site.php:589
msgid "Deny undetected languages"
msgstr ""
-#: src/Module/Admin/Site.php:593
+#: src/Module/Admin/Site.php:589
msgid "If enabled, posts with undetected languages will be rejected."
msgstr ""
-#: src/Module/Admin/Site.php:594
+#: src/Module/Admin/Site.php:590
msgid "Language Quality"
msgstr ""
-#: src/Module/Admin/Site.php:594
+#: src/Module/Admin/Site.php:590
msgid "The minimum language quality that is required to accept the post."
msgstr ""
-#: src/Module/Admin/Site.php:595
+#: src/Module/Admin/Site.php:591
msgid "Number of languages for the language detection"
msgstr ""
-#: src/Module/Admin/Site.php:595
+#: src/Module/Admin/Site.php:591
msgid ""
"The system detects a list of languages per post. Only if the desired "
"languages are in the list, the message will be accepted. The higher the "
"number, the more posts will be falsely detected."
msgstr ""
-#: src/Module/Admin/Site.php:597
+#: src/Module/Admin/Site.php:593
msgid "Maximum age of channel"
msgstr ""
-#: src/Module/Admin/Site.php:597
+#: src/Module/Admin/Site.php:593
msgid ""
"This defines the maximum age in hours of items that should be displayed in "
"channels. This affects the channel performance."
msgstr ""
-#: src/Module/Admin/Site.php:598
+#: src/Module/Admin/Site.php:594
msgid "Maximum number of channel posts"
msgstr ""
-#: src/Module/Admin/Site.php:598
+#: src/Module/Admin/Site.php:594
msgid ""
"For performance reasons, the channels use a dedicated table to store "
"content. The higher the value the slower the channels."
msgstr ""
-#: src/Module/Admin/Site.php:599
+#: src/Module/Admin/Site.php:595
msgid "Interaction score days"
msgstr ""
-#: src/Module/Admin/Site.php:599
+#: src/Module/Admin/Site.php:595
msgid "Number of days that are used to calculate the interaction score."
msgstr ""
-#: src/Module/Admin/Site.php:600
+#: src/Module/Admin/Site.php:596
msgid "Maximum number of posts per author"
msgstr ""
-#: src/Module/Admin/Site.php:600
+#: src/Module/Admin/Site.php:596
msgid ""
"Maximum number of posts per page by author if the contact frequency is set "
"to \"Display only few posts\". If there are more posts, then the post with "
"the most interactions will be displayed."
msgstr ""
-#: src/Module/Admin/Site.php:601
+#: src/Module/Admin/Site.php:597
msgid "Sharer interaction days"
msgstr ""
-#: src/Module/Admin/Site.php:601
+#: src/Module/Admin/Site.php:597
msgid ""
"Number of days of the last interaction that are used to define which sharers"
" are used for the \"sharers of sharers\" channel."
msgstr ""
-#: src/Module/Admin/Site.php:604
+#: src/Module/Admin/Site.php:600
msgid "Start Relocation"
msgstr "Iniciar Relocación"
-#: src/Module/Admin/Storage.php:46
+#: src/Module/Admin/Storage.php:32
#, php-format
msgid "Storage backend, %s is invalid."
msgstr ""
-#: src/Module/Admin/Storage.php:73
+#: src/Module/Admin/Storage.php:59
#, php-format
msgid "Storage backend %s error: %s"
msgstr ""
-#: src/Module/Admin/Storage.php:84 src/Module/Admin/Storage.php:87
+#: src/Module/Admin/Storage.php:70 src/Module/Admin/Storage.php:73
msgid "Invalid storage backend setting value."
msgstr "Valor de configuración de backend de almacenamiento no válido."
-#: src/Module/Admin/Storage.php:139
+#: src/Module/Admin/Storage.php:125
msgid "Current Storage Backend"
msgstr ""
-#: src/Module/Admin/Storage.php:140
+#: src/Module/Admin/Storage.php:126
msgid "Storage Configuration"
msgstr ""
-#: src/Module/Admin/Storage.php:141 src/Module/BaseAdmin.php:91
+#: src/Module/Admin/Storage.php:127 src/Module/BaseAdmin.php:77
msgid "Storage"
msgstr ""
-#: src/Module/Admin/Storage.php:143
+#: src/Module/Admin/Storage.php:129
msgid "Save & Use storage backend"
msgstr ""
-#: src/Module/Admin/Storage.php:144
+#: src/Module/Admin/Storage.php:130
msgid "Use storage backend"
msgstr ""
-#: src/Module/Admin/Storage.php:145
+#: src/Module/Admin/Storage.php:131
msgid "Save & Reload"
msgstr ""
-#: src/Module/Admin/Storage.php:146
+#: src/Module/Admin/Storage.php:132
msgid "This backend doesn't have custom settings"
msgstr ""
-#: src/Module/Admin/Storage.php:148
+#: src/Module/Admin/Storage.php:134
msgid ""
"Changing the current backend is prohibited because it is set by an "
"environment variable"
msgstr ""
-#: src/Module/Admin/Storage.php:150
+#: src/Module/Admin/Storage.php:136
msgid "Database (legacy)"
msgstr "Base de Datos (legada)"
-#: src/Module/Admin/Summary.php:55
+#: src/Module/Admin/Summary.php:41
#, php-format
msgid "Template engine (%s) error: %s"
msgstr "Error (%s) en Motor de plantilla: %s"
-#: src/Module/Admin/Summary.php:59
+#: src/Module/Admin/Summary.php:45
#, php-format
msgid ""
"Your DB still runs with MyISAM tables. You should change the engine type to "
@@ -5760,7 +5776,7 @@ msgid ""
" an automatic conversion..htconfig.php
. Ver página de ayuda como ayuda en la transición."
-#: src/Module/Admin/Summary.php:118
+#: src/Module/Admin/Summary.php:104
#, php-format
msgid ""
"Friendica's configuration now is stored in config/local.config.php, please "
@@ -5836,7 +5852,7 @@ msgid ""
"page for help with the transition."
msgstr "Configuración Friendica ahora se almacena en config/local.config.php, copie config/local-sample.config.php y mueva su configuración de config/local.ini.php
. Ver página de ayuda como ayuda en la transición."
-#: src/Module/Admin/Summary.php:124
+#: src/Module/Admin/Summary.php:110
#, php-format
msgid ""
"%s is not reachable on your system. This is a severe "
@@ -5844,107 +5860,107 @@ msgid ""
"href=\"%s\">the installation page for help."
msgstr "%s no se alcanza en tu sistema. Es un error grave en la configuración que evita la comunicación de servidor a servidor. Ver la página de instalación como ayuda."
-#: src/Module/Admin/Summary.php:148
+#: src/Module/Admin/Summary.php:134
#, php-format
msgid ""
"Friendica's system.basepath was updated from '%s' to '%s'. Please remove the"
" system.basepath from your db to avoid differences."
msgstr "La ruta Friendica system.basepath se actualizó de '%s' a '%s'. Quite la system.basepath de tu BD para evitar diferencias."
-#: src/Module/Admin/Summary.php:156
+#: src/Module/Admin/Summary.php:142
#, php-format
msgid ""
"Friendica's current system.basepath '%s' is wrong and the config file '%s' "
"isn't used."
msgstr "Ruta actual Friendica system.basepath '%s' es errónea y el archivo de configuración '%s' no se usa."
-#: src/Module/Admin/Summary.php:164
+#: src/Module/Admin/Summary.php:150
#, php-format
msgid ""
"Friendica's current system.basepath '%s' is not equal to the config file "
"'%s'. Please fix your configuration."
msgstr "Ruta actual de Friendica system.basepath '%s' no es igual al archivo config '%s'. Corrija su configuración."
-#: src/Module/Admin/Summary.php:175
+#: src/Module/Admin/Summary.php:161
msgid "Message queues"
msgstr "Cola de mensajes"
-#: src/Module/Admin/Summary.php:181
+#: src/Module/Admin/Summary.php:167
msgid "Server Settings"
msgstr "Ajustes del Servidor"
-#: src/Module/Admin/Summary.php:199
+#: src/Module/Admin/Summary.php:185
msgid "Version"
msgstr "Versión"
-#: src/Module/Admin/Summary.php:203
+#: src/Module/Admin/Summary.php:189
msgid "Active addons"
msgstr "Añadidos Activos"
-#: src/Module/Admin/Themes/Details.php:57 src/Module/Admin/Themes/Index.php:65
+#: src/Module/Admin/Themes/Details.php:49 src/Module/Admin/Themes/Index.php:57
#, php-format
msgid "Theme %s disabled."
msgstr "Tema %s desactivado"
-#: src/Module/Admin/Themes/Details.php:59 src/Module/Admin/Themes/Index.php:67
+#: src/Module/Admin/Themes/Details.php:51 src/Module/Admin/Themes/Index.php:59
#, php-format
msgid "Theme %s successfully enabled."
msgstr "Tema %s activado con éxito."
-#: src/Module/Admin/Themes/Details.php:61 src/Module/Admin/Themes/Index.php:69
+#: src/Module/Admin/Themes/Details.php:53 src/Module/Admin/Themes/Index.php:61
#, php-format
msgid "Theme %s failed to install."
msgstr "El Tema %s no se pudo instalar."
-#: src/Module/Admin/Themes/Details.php:83
+#: src/Module/Admin/Themes/Details.php:75
msgid "Screenshot"
msgstr "Captura de pantalla"
-#: src/Module/Admin/Themes/Details.php:91
-#: src/Module/Admin/Themes/Index.php:112 src/Module/BaseAdmin.php:93
+#: src/Module/Admin/Themes/Details.php:83
+#: src/Module/Admin/Themes/Index.php:104 src/Module/BaseAdmin.php:79
msgid "Themes"
msgstr "Temas"
-#: src/Module/Admin/Themes/Embed.php:80
+#: src/Module/Admin/Themes/Embed.php:66
msgid "Unknown theme."
msgstr "Tema desconocido."
-#: src/Module/Admin/Themes/Index.php:51
+#: src/Module/Admin/Themes/Index.php:43
msgid "Themes reloaded"
msgstr "Temas reacargados"
-#: src/Module/Admin/Themes/Index.php:114
+#: src/Module/Admin/Themes/Index.php:106
msgid "Reload active themes"
msgstr "Recargar Temas activos"
-#: src/Module/Admin/Themes/Index.php:118
+#: src/Module/Admin/Themes/Index.php:110
#, php-format
msgid "No themes found on the system. They should be placed in %1$s"
msgstr "No hay Temas en el Sistema, Deben situarse en %1$s"
-#: src/Module/Admin/Themes/Index.php:119
+#: src/Module/Admin/Themes/Index.php:111
msgid "[Experimental]"
msgstr "[Experimental]"
-#: src/Module/Admin/Themes/Index.php:120
+#: src/Module/Admin/Themes/Index.php:112
msgid "[Unsupported]"
msgstr "[No soportado]"
-#: src/Module/Admin/Tos.php:79
+#: src/Module/Admin/Tos.php:65
msgid "Display Terms of Service"
msgstr "Mostrar los Términos de Servicio"
-#: src/Module/Admin/Tos.php:79
+#: src/Module/Admin/Tos.php:65
msgid ""
"Enable the Terms of Service page. If this is enabled a link to the terms "
"will be added to the registration form and the general information page."
msgstr "Habilitar la página de los Términos de Servicio. Si esto está activo un enlace a los términos será adicionado al formulario de registro y en la página de información general."
-#: src/Module/Admin/Tos.php:80
+#: src/Module/Admin/Tos.php:66
msgid "Display Privacy Statement"
msgstr "Mostrar las Directivas de Privacidad"
-#: src/Module/Admin/Tos.php:80
+#: src/Module/Admin/Tos.php:66
#, php-format
msgid ""
"Show some informations regarding the needed information to operate the node "
@@ -5952,160 +5968,160 @@ msgid ""
"noreferrer\">EU-GDPR."
msgstr "Muestre información en cuanto a información requerida para operar el nodo de acuerdo ej. para EU-GDPR."
-#: src/Module/Admin/Tos.php:81
+#: src/Module/Admin/Tos.php:67
msgid "Privacy Statement Preview"
msgstr "Vista previa de Política de Privacidad"
-#: src/Module/Admin/Tos.php:83
+#: src/Module/Admin/Tos.php:69
msgid "The Terms of Service"
msgstr "Los Términos de Servicio"
-#: src/Module/Admin/Tos.php:83
+#: src/Module/Admin/Tos.php:69
msgid ""
"Enter the Terms of Service for your node here. You can use BBCode. Headers "
"of sections should be [h2] and below."
msgstr "Introduzca los Términos de Servicio para tu nodo aquí. Puedes usar BBCode. Cabeceras de sección deberían ser [2] e inferior."
-#: src/Module/Admin/Tos.php:84
+#: src/Module/Admin/Tos.php:70
msgid "The rules"
msgstr ""
-#: src/Module/Admin/Tos.php:84
+#: src/Module/Admin/Tos.php:70
msgid "Enter your system rules here. Each line represents one rule."
msgstr ""
-#: src/Module/Api/ApiResponse.php:293
+#: src/Module/Api/ApiResponse.php:279
#, php-format
msgid "API endpoint %s %s is not implemented but might be in the future."
msgstr ""
-#: src/Module/Api/Mastodon/Apps.php:73
+#: src/Module/Api/Mastodon/Apps.php:59
msgid "Missing parameters"
msgstr ""
-#: src/Module/Api/Mastodon/Statuses/Bookmark.php:50
+#: src/Module/Api/Mastodon/Statuses/Bookmark.php:36
msgid "Only starting posts can be bookmarked"
msgstr ""
-#: src/Module/Api/Mastodon/Statuses/Mute.php:51
+#: src/Module/Api/Mastodon/Statuses/Mute.php:37
msgid "Only starting posts can be muted"
msgstr ""
-#: src/Module/Api/Mastodon/Statuses/Reblog.php:58
+#: src/Module/Api/Mastodon/Statuses/Reblog.php:44
#, php-format
msgid "Posts from %s can't be shared"
msgstr ""
-#: src/Module/Api/Mastodon/Statuses/Unbookmark.php:51
+#: src/Module/Api/Mastodon/Statuses/Unbookmark.php:37
msgid "Only starting posts can be unbookmarked"
msgstr ""
-#: src/Module/Api/Mastodon/Statuses/Unmute.php:51
+#: src/Module/Api/Mastodon/Statuses/Unmute.php:37
msgid "Only starting posts can be unmuted"
msgstr ""
-#: src/Module/Api/Mastodon/Statuses/Unreblog.php:64
+#: src/Module/Api/Mastodon/Statuses/Unreblog.php:50
#, php-format
msgid "Posts from %s can't be unshared"
msgstr ""
-#: src/Module/Api/Twitter/ContactEndpoint.php:66
+#: src/Module/Api/Twitter/ContactEndpoint.php:52
msgid "Contact not found"
msgstr "Contacto no Encontrado"
-#: src/Module/Apps.php:62
+#: src/Module/Apps.php:48
msgid "No installed applications."
msgstr "Sin aplicaciones instaladas"
-#: src/Module/Apps.php:67
+#: src/Module/Apps.php:53
msgid "Applications"
msgstr "Aplicaciones"
-#: src/Module/Attach.php:49 src/Module/Attach.php:61
+#: src/Module/Attach.php:35 src/Module/Attach.php:47
msgid "Item was not found."
msgstr "Elemento no encontrado."
-#: src/Module/BaseAdmin.php:54 src/Module/BaseAdmin.php:58
-#: src/Module/BaseModeration.php:77 src/Module/BaseModeration.php:81
+#: src/Module/BaseAdmin.php:40 src/Module/BaseAdmin.php:44
+#: src/Module/BaseModeration.php:63 src/Module/BaseModeration.php:67
msgid "Please login to continue."
msgstr "Inicia sesión para continuar."
-#: src/Module/BaseAdmin.php:63
+#: src/Module/BaseAdmin.php:49
msgid "You don't have access to administration pages."
msgstr "No tienes acceso a las páginas de administración."
-#: src/Module/BaseAdmin.php:67
+#: src/Module/BaseAdmin.php:53
msgid ""
"Submanaged account can't access the administration pages. Please log back in"
" as the main account."
msgstr "La cuenta subadministrada no puede acceder a las páginas de administración. Vuelva a iniciar sesión como cuenta principal."
-#: src/Module/BaseAdmin.php:86 src/Module/BaseModeration.php:109
+#: src/Module/BaseAdmin.php:72 src/Module/BaseModeration.php:95
msgid "Overview"
msgstr "Resumen"
-#: src/Module/BaseAdmin.php:89 src/Module/BaseModeration.php:112
+#: src/Module/BaseAdmin.php:75 src/Module/BaseModeration.php:98
msgid "Configuration"
msgstr "Configuración"
-#: src/Module/BaseAdmin.php:94 src/Module/BaseSettings.php:110
+#: src/Module/BaseAdmin.php:80 src/Module/BaseSettings.php:96
msgid "Additional features"
msgstr "Características adicionales"
-#: src/Module/BaseAdmin.php:97
+#: src/Module/BaseAdmin.php:83
msgid "Database"
msgstr "Base de Datos"
-#: src/Module/BaseAdmin.php:98
+#: src/Module/BaseAdmin.php:84
msgid "DB updates"
msgstr "Actualizaciones de la Base de Datos"
-#: src/Module/BaseAdmin.php:99
+#: src/Module/BaseAdmin.php:85
msgid "Inspect Deferred Workers"
msgstr "Workers diferidos Inspeccionados"
-#: src/Module/BaseAdmin.php:100
+#: src/Module/BaseAdmin.php:86
msgid "Inspect worker Queue"
msgstr "Inspeccionar Cola de Workers"
-#: src/Module/BaseAdmin.php:106 src/Module/BaseModeration.php:120
+#: src/Module/BaseAdmin.php:92 src/Module/BaseModeration.php:106
msgid "Diagnostics"
msgstr "Diagnósticos"
-#: src/Module/BaseAdmin.php:107
+#: src/Module/BaseAdmin.php:93
msgid "PHP Info"
msgstr "Información PHP"
-#: src/Module/BaseAdmin.php:108
+#: src/Module/BaseAdmin.php:94
msgid "probe address"
msgstr "probar direccion"
-#: src/Module/BaseAdmin.php:109
+#: src/Module/BaseAdmin.php:95
msgid "check webfinger"
msgstr "Verificar webfinger"
-#: src/Module/BaseAdmin.php:110
+#: src/Module/BaseAdmin.php:96
msgid "Babel"
msgstr "Babel"
-#: src/Module/BaseAdmin.php:111 src/Module/Debug/ActivityPubConversion.php:137
+#: src/Module/BaseAdmin.php:97 src/Module/Debug/ActivityPubConversion.php:129
msgid "ActivityPub Conversion"
msgstr "Conversión a ActivityPub"
-#: src/Module/BaseAdmin.php:120
+#: src/Module/BaseAdmin.php:106
msgid "Addon Features"
msgstr "Funciones de los Añadidos"
-#: src/Module/BaseAdmin.php:121 src/Module/BaseModeration.php:129
+#: src/Module/BaseAdmin.php:107 src/Module/BaseModeration.php:115
msgid "User registrations waiting for confirmation"
msgstr "Registro de usuarios esperando la confirmación"
-#: src/Module/BaseApi.php:455 src/Module/BaseApi.php:471
-#: src/Module/BaseApi.php:487
+#: src/Module/BaseApi.php:441 src/Module/BaseApi.php:457
+#: src/Module/BaseApi.php:473
msgid "Too Many Requests"
msgstr ""
-#: src/Module/BaseApi.php:456
+#: src/Module/BaseApi.php:442
#, php-format
msgid "Daily posting limit of %d post reached. The post was rejected."
msgid_plural "Daily posting limit of %d posts reached. The post was rejected."
@@ -6113,7 +6129,7 @@ msgstr[0] "Limite diario de %d publicación alcanzado. La publicación fue recha
msgstr[1] "Limite diario de %d publicaciones alcanzado. La publicación fue rechazada."
msgstr[2] "Limite diario de %d publicaciones alcanzado. La publicación fue rechazada."
-#: src/Module/BaseApi.php:472
+#: src/Module/BaseApi.php:458
#, php-format
msgid "Weekly posting limit of %d post reached. The post was rejected."
msgid_plural ""
@@ -6122,7 +6138,7 @@ msgstr[0] "Limite semanal de %d publicación alcanzado. La publicación fue rech
msgstr[1] "Limite semanal de %d publicaciones alcanzado. La publicación fue rechazada."
msgstr[2] "Limite semanal de %d publicaciones alcanzado. La publicación fue rechazada."
-#: src/Module/BaseApi.php:488
+#: src/Module/BaseApi.php:474
#, php-format
msgid "Monthly posting limit of %d post reached. The post was rejected."
msgid_plural ""
@@ -6131,84 +6147,84 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: src/Module/BaseModeration.php:86
+#: src/Module/BaseModeration.php:72
msgid "You don't have access to moderation pages."
msgstr ""
-#: src/Module/BaseModeration.php:90
+#: src/Module/BaseModeration.php:76
msgid ""
"Submanaged account can't access the moderation pages. Please log back in as "
"the main account."
msgstr ""
-#: src/Module/BaseModeration.php:110 src/Module/Moderation/Reports.php:109
+#: src/Module/BaseModeration.php:96 src/Module/Moderation/Reports.php:101
msgid "Reports"
msgstr ""
-#: src/Module/BaseModeration.php:113 src/Module/Moderation/Users/Index.php:148
-#: src/Module/Moderation/Users/Index.php:158
+#: src/Module/BaseModeration.php:99 src/Module/Moderation/Users/Index.php:134
+#: src/Module/Moderation/Users/Index.php:144
msgid "Users"
msgstr "Usuarios"
-#: src/Module/BaseModeration.php:115
+#: src/Module/BaseModeration.php:101
msgid "Tools"
msgstr "Herramientas"
-#: src/Module/BaseModeration.php:116
+#: src/Module/BaseModeration.php:102
msgid "Contact Blocklist"
msgstr "Lista de Contactos Bloqueados"
-#: src/Module/BaseModeration.php:117
+#: src/Module/BaseModeration.php:103
msgid "Server Blocklist"
msgstr "Lista de Bloqueo del Servidor"
-#: src/Module/BaseModeration.php:118 src/Module/Moderation/Item/Delete.php:62
+#: src/Module/BaseModeration.php:104 src/Module/Moderation/Item/Delete.php:48
msgid "Delete Item"
msgstr "Eliminar Artículo"
-#: src/Module/BaseModeration.php:121 src/Module/Moderation/Item/Source.php:76
+#: src/Module/BaseModeration.php:107 src/Module/Moderation/Item/Source.php:68
msgid "Item Source"
msgstr "Artículo fuente"
-#: src/Module/BaseProfile.php:52 src/Module/Contact.php:506
+#: src/Module/BaseProfile.php:38 src/Module/Contact.php:488
msgid "Profile Details"
msgstr "Detalles del Perfil"
-#: src/Module/BaseProfile.php:60
+#: src/Module/BaseProfile.php:46
msgid "Conversations started"
msgstr ""
-#: src/Module/BaseProfile.php:111
+#: src/Module/BaseProfile.php:97
msgid "Only You Can See This"
msgstr "Únicamente tú puedes ver esto"
-#: src/Module/BaseProfile.php:116 src/Module/Profile/Schedule.php:81
+#: src/Module/BaseProfile.php:102 src/Module/Profile/Schedule.php:67
msgid "Scheduled Posts"
msgstr ""
-#: src/Module/BaseProfile.php:119
+#: src/Module/BaseProfile.php:105
msgid "Posts that are scheduled for publishing"
msgstr ""
-#: src/Module/BaseProfile.php:138 src/Module/BaseProfile.php:141
+#: src/Module/BaseProfile.php:124 src/Module/BaseProfile.php:127
msgid "Tips for New Members"
msgstr "Consejos para nuevos miembros"
-#: src/Module/BaseSearch.php:71
+#: src/Module/BaseSearch.php:57
#, php-format
msgid "People Search - %s"
msgstr "Buscar personas - %s"
-#: src/Module/BaseSearch.php:75
+#: src/Module/BaseSearch.php:61
#, php-format
msgid "Group Search - %s"
msgstr ""
-#: src/Module/BaseSearch.php:121 src/Module/Contact/MatchInterests.php:140
+#: src/Module/BaseSearch.php:107 src/Module/Contact/MatchInterests.php:136
msgid "No matches"
msgstr "Sin resultados"
-#: src/Module/BaseSearch.php:147
+#: src/Module/BaseSearch.php:133
#, php-format
msgid ""
"%d result was filtered out because your node blocks the domain it is "
@@ -6222,267 +6238,267 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: src/Module/BaseSettings.php:78
+#: src/Module/BaseSettings.php:64
msgid "Account"
msgstr "Cuenta"
-#: src/Module/BaseSettings.php:85 src/Module/Security/TwoFactor/Verify.php:96
-#: src/Module/Settings/TwoFactor/Index.php:138
+#: src/Module/BaseSettings.php:71 src/Module/Security/TwoFactor/Verify.php:82
+#: src/Module/Settings/TwoFactor/Index.php:124
msgid "Two-factor authentication"
msgstr "Ingreso de 2 factores"
-#: src/Module/BaseSettings.php:118
+#: src/Module/BaseSettings.php:104
msgid "Display"
msgstr "Interfaz del usuario"
-#: src/Module/BaseSettings.php:132 src/Module/Settings/Connectors.php:204
+#: src/Module/BaseSettings.php:118 src/Module/Settings/Connectors.php:195
msgid "Social Networks"
msgstr "Redes sociales"
-#: src/Module/BaseSettings.php:146 src/Module/Settings/Delegation.php:194
+#: src/Module/BaseSettings.php:132 src/Module/Settings/Delegation.php:180
msgid "Manage Accounts"
msgstr "Gestionar cuentas"
-#: src/Module/BaseSettings.php:153
+#: src/Module/BaseSettings.php:139
msgid "Connected apps"
msgstr "Aplicaciones conectadas"
-#: src/Module/BaseSettings.php:160
+#: src/Module/BaseSettings.php:146
msgid "Remote servers"
msgstr ""
-#: src/Module/BaseSettings.php:167 src/Module/Settings/UserExport.php:98
+#: src/Module/BaseSettings.php:153 src/Module/Settings/UserExport.php:84
msgid "Export personal data"
msgstr "Exportación de datos personales"
-#: src/Module/BaseSettings.php:174
+#: src/Module/BaseSettings.php:160
msgid "Remove account"
msgstr "Eliminar cuenta"
-#: src/Module/Bookmarklet.php:54
+#: src/Module/Bookmarklet.php:40
msgid "This page is missing a url parameter."
msgstr "A la página le falta URL."
-#: src/Module/Bookmarklet.php:66
+#: src/Module/Bookmarklet.php:52
msgid "The post was created"
msgstr "El Artículo fue creada"
-#: src/Module/Calendar/Event/API.php:100 src/Module/Calendar/Event/API.php:135
-#: src/Module/Calendar/Event/Form.php:80
+#: src/Module/Calendar/Event/API.php:86 src/Module/Calendar/Event/API.php:121
+#: src/Module/Calendar/Event/Form.php:66
msgid "Invalid Request"
msgstr ""
-#: src/Module/Calendar/Event/API.php:109
+#: src/Module/Calendar/Event/API.php:95
msgid "Event id is missing."
msgstr ""
-#: src/Module/Calendar/Event/API.php:131
+#: src/Module/Calendar/Event/API.php:117
msgid "Failed to remove event"
msgstr "Error al eliminar el evento"
-#: src/Module/Calendar/Event/API.php:187 src/Module/Calendar/Event/API.php:189
+#: src/Module/Calendar/Event/API.php:173 src/Module/Calendar/Event/API.php:175
msgid "Event can not end before it has started."
msgstr "Un evento no puede terminar antes de su inicio."
-#: src/Module/Calendar/Event/API.php:196 src/Module/Calendar/Event/API.php:198
+#: src/Module/Calendar/Event/API.php:182 src/Module/Calendar/Event/API.php:184
msgid "Event title and start time are required."
msgstr "Título del evento y hora de inicio requeridas."
-#: src/Module/Calendar/Event/Form.php:208
+#: src/Module/Calendar/Event/Form.php:194
msgid "Starting date and Title are required."
msgstr "Se requiere fecha de comienzo y titulo"
-#: src/Module/Calendar/Event/Form.php:209
-#: src/Module/Calendar/Event/Form.php:214
+#: src/Module/Calendar/Event/Form.php:195
+#: src/Module/Calendar/Event/Form.php:200
msgid "Event Starts:"
msgstr "Inicio del evento:"
-#: src/Module/Calendar/Event/Form.php:209
-#: src/Module/Calendar/Event/Form.php:237 src/Module/Debug/Probe.php:59
-#: src/Module/Install.php:201 src/Module/Install.php:227
-#: src/Module/Install.php:232 src/Module/Install.php:246
-#: src/Module/Install.php:255 src/Module/Install.php:260
-#: src/Module/Install.php:266 src/Module/Install.php:271
-#: src/Module/Install.php:285 src/Module/Install.php:298
-#: src/Module/Install.php:325
-#: src/Module/Moderation/Blocklist/Server/Add.php:136
-#: src/Module/Moderation/Blocklist/Server/Add.php:138
-#: src/Module/Moderation/Blocklist/Server/Import.php:129
-#: src/Module/Moderation/Blocklist/Server/Index.php:86
-#: src/Module/Moderation/Blocklist/Server/Index.php:87
-#: src/Module/Moderation/Blocklist/Server/Index.php:115
-#: src/Module/Moderation/Blocklist/Server/Index.php:116
-#: src/Module/Moderation/Item/Delete.php:67 src/Module/Register.php:149
-#: src/Module/Security/TwoFactor/Verify.php:101
-#: src/Module/Settings/Channels.php:190 src/Module/Settings/Channels.php:211
-#: src/Module/Settings/TwoFactor/Index.php:161
-#: src/Module/Settings/TwoFactor/Verify.php:158
+#: src/Module/Calendar/Event/Form.php:195
+#: src/Module/Calendar/Event/Form.php:223 src/Module/Debug/Probe.php:45
+#: src/Module/Install.php:187 src/Module/Install.php:213
+#: src/Module/Install.php:218 src/Module/Install.php:232
+#: src/Module/Install.php:241 src/Module/Install.php:246
+#: src/Module/Install.php:252 src/Module/Install.php:257
+#: src/Module/Install.php:271 src/Module/Install.php:284
+#: src/Module/Install.php:311
+#: src/Module/Moderation/Blocklist/Server/Add.php:122
+#: src/Module/Moderation/Blocklist/Server/Add.php:124
+#: src/Module/Moderation/Blocklist/Server/Import.php:113
+#: src/Module/Moderation/Blocklist/Server/Index.php:72
+#: src/Module/Moderation/Blocklist/Server/Index.php:73
+#: src/Module/Moderation/Blocklist/Server/Index.php:101
+#: src/Module/Moderation/Blocklist/Server/Index.php:102
+#: src/Module/Moderation/Item/Delete.php:53 src/Module/Register.php:141
+#: src/Module/Security/TwoFactor/Verify.php:87
+#: src/Module/Settings/Channels.php:176 src/Module/Settings/Channels.php:197
+#: src/Module/Settings/TwoFactor/Index.php:147
+#: src/Module/Settings/TwoFactor/Verify.php:144
msgid "Required"
msgstr "Obligatorio"
-#: src/Module/Calendar/Event/Form.php:223
-#: src/Module/Calendar/Event/Form.php:247
+#: src/Module/Calendar/Event/Form.php:209
+#: src/Module/Calendar/Event/Form.php:233
msgid "Finish date/time is not known or not relevant"
msgstr "La fecha/hora de finalización no es conocida o es irrelevante."
-#: src/Module/Calendar/Event/Form.php:225
-#: src/Module/Calendar/Event/Form.php:230
+#: src/Module/Calendar/Event/Form.php:211
+#: src/Module/Calendar/Event/Form.php:216
msgid "Event Finishes:"
msgstr "Finalización del evento:"
-#: src/Module/Calendar/Event/Form.php:237
-#: src/Module/Calendar/Event/Form.php:243
+#: src/Module/Calendar/Event/Form.php:223
+#: src/Module/Calendar/Event/Form.php:229
msgid "Title (BBCode not allowed)"
msgstr ""
-#: src/Module/Calendar/Event/Form.php:239
+#: src/Module/Calendar/Event/Form.php:225
msgid "Description (BBCode allowed)"
msgstr ""
-#: src/Module/Calendar/Event/Form.php:241
+#: src/Module/Calendar/Event/Form.php:227
msgid "Location (BBCode not allowed)"
msgstr ""
-#: src/Module/Calendar/Event/Form.php:244
-#: src/Module/Calendar/Event/Form.php:245
+#: src/Module/Calendar/Event/Form.php:230
+#: src/Module/Calendar/Event/Form.php:231
msgid "Share this event"
msgstr "Comparte este evento"
-#: src/Module/Calendar/Event/Form.php:251 src/Module/Profile/Profile.php:275
+#: src/Module/Calendar/Event/Form.php:237 src/Module/Profile/Profile.php:263
msgid "Basic"
msgstr "Basic"
-#: src/Module/Calendar/Export.php:94
+#: src/Module/Calendar/Export.php:80
msgid "This calendar format is not supported"
msgstr "Este formato de calendario no se soporta"
-#: src/Module/Calendar/Export.php:96
+#: src/Module/Calendar/Export.php:82
msgid "No exportable data found"
msgstr "No hay información exportable"
-#: src/Module/Calendar/Export.php:113
+#: src/Module/Calendar/Export.php:99
msgid "calendar"
msgstr "calendario"
-#: src/Module/Calendar/Show.php:124
+#: src/Module/Calendar/Show.php:110
msgid "Events"
msgstr "Eventos"
-#: src/Module/Calendar/Show.php:125
+#: src/Module/Calendar/Show.php:111
msgid "View"
msgstr "Vista"
-#: src/Module/Calendar/Show.php:126
+#: src/Module/Calendar/Show.php:112
msgid "Create New Event"
msgstr "Crea un evento nuevo"
-#: src/Module/Calendar/Show.php:132 src/Module/Settings/Display.php:297
+#: src/Module/Calendar/Show.php:118 src/Module/Settings/Display.php:283
msgid "list"
msgstr "lista"
-#: src/Module/Circle.php:57
+#: src/Module/Circle.php:43
msgid "Could not create circle."
msgstr ""
-#: src/Module/Circle.php:68 src/Module/Circle.php:216
-#: src/Module/Circle.php:240
+#: src/Module/Circle.php:54 src/Module/Circle.php:202
+#: src/Module/Circle.php:226
msgid "Circle not found."
msgstr ""
-#: src/Module/Circle.php:74
+#: src/Module/Circle.php:60
msgid "Circle name was not changed."
msgstr ""
-#: src/Module/Circle.php:92
+#: src/Module/Circle.php:78
msgid "Unknown circle."
msgstr ""
-#: src/Module/Circle.php:98 src/Module/Circle.php:107
-#: src/Module/Contact/Advanced.php:70 src/Module/Contact/Advanced.php:109
-#: src/Module/Contact/Contacts.php:71 src/Module/Contact/Conversations.php:86
-#: src/Module/Contact/Conversations.php:91
-#: src/Module/Contact/Conversations.php:96 src/Module/Contact/Media.php:61
-#: src/Module/Contact/Posts.php:78 src/Module/Contact/Posts.php:83
-#: src/Module/Contact/Posts.php:88 src/Module/Contact/Profile.php:159
-#: src/Module/Contact/Profile.php:164 src/Module/Contact/Profile.php:169
-#: src/Module/Contact/Redir.php:95 src/Module/Contact/Redir.php:141
-#: src/Module/FriendSuggest.php:71 src/Module/FriendSuggest.php:109
+#: src/Module/Circle.php:84 src/Module/Circle.php:93
+#: src/Module/Contact/Advanced.php:56 src/Module/Contact/Advanced.php:95
+#: src/Module/Contact/Contacts.php:57 src/Module/Contact/Conversations.php:72
+#: src/Module/Contact/Conversations.php:77
+#: src/Module/Contact/Conversations.php:82 src/Module/Contact/Media.php:47
+#: src/Module/Contact/Posts.php:64 src/Module/Contact/Posts.php:69
+#: src/Module/Contact/Posts.php:74 src/Module/Contact/Profile.php:145
+#: src/Module/Contact/Profile.php:150 src/Module/Contact/Profile.php:169
+#: src/Module/Contact/Redir.php:77 src/Module/Contact/Redir.php:131
+#: src/Module/FriendSuggest.php:57 src/Module/FriendSuggest.php:95
msgid "Contact not found."
msgstr "Contacto no encontrado."
-#: src/Module/Circle.php:102 src/Module/Contact/Contacts.php:66
+#: src/Module/Circle.php:88 src/Module/Contact/Contacts.php:52
msgid "Invalid contact."
msgstr "Contacto erróneo."
-#: src/Module/Circle.php:111 src/Module/Contact/Revoke.php:73
+#: src/Module/Circle.php:97 src/Module/Contact/Revoke.php:56
msgid "Contact is deleted."
msgstr "El contacto se borra."
-#: src/Module/Circle.php:117
+#: src/Module/Circle.php:103
msgid "Unable to add the contact to the circle."
msgstr ""
-#: src/Module/Circle.php:120
+#: src/Module/Circle.php:106
msgid "Contact successfully added to circle."
msgstr ""
-#: src/Module/Circle.php:124
+#: src/Module/Circle.php:110
msgid "Unable to remove the contact from the circle."
msgstr ""
-#: src/Module/Circle.php:127
+#: src/Module/Circle.php:113
msgid "Contact successfully removed from circle."
msgstr ""
-#: src/Module/Circle.php:131
+#: src/Module/Circle.php:117
msgid "Bad request."
msgstr "Petición no reconocida"
-#: src/Module/Circle.php:172
+#: src/Module/Circle.php:158
msgid "Save Circle"
msgstr ""
-#: src/Module/Circle.php:173
+#: src/Module/Circle.php:159
msgid "Filter"
msgstr "Filtro"
-#: src/Module/Circle.php:179
+#: src/Module/Circle.php:165
msgid "Create a circle of contacts/friends."
msgstr ""
-#: src/Module/Circle.php:221
+#: src/Module/Circle.php:207
msgid "Unable to remove circle."
msgstr ""
-#: src/Module/Circle.php:272
+#: src/Module/Circle.php:258
msgid "Delete Circle"
msgstr ""
-#: src/Module/Circle.php:282
+#: src/Module/Circle.php:268
msgid "Edit Circle Name"
msgstr ""
-#: src/Module/Circle.php:292
+#: src/Module/Circle.php:278
msgid "Members"
msgstr "Miembros"
-#: src/Module/Circle.php:295
+#: src/Module/Circle.php:281
msgid "Circle is empty"
msgstr ""
-#: src/Module/Circle.php:311
+#: src/Module/Circle.php:297
msgid "Remove contact from circle"
msgstr ""
-#: src/Module/Circle.php:334
+#: src/Module/Circle.php:320
msgid "Click on a contact to add or remove."
msgstr "Pulsa en un contacto para añadirlo o eliminarlo."
-#: src/Module/Circle.php:351
+#: src/Module/Circle.php:337
msgid "Add contact to circle"
msgstr ""
-#: src/Module/Contact.php:96
+#: src/Module/Contact.php:88
#, php-format
msgid "%d contact edited."
msgid_plural "%d contacts edited."
@@ -6490,192 +6506,192 @@ msgstr[0] "%d contacto editado."
msgstr[1] "%d contactos editados."
msgstr[2] "%d contactos editados."
-#: src/Module/Contact.php:347
+#: src/Module/Contact.php:328
msgid "Show all contacts"
msgstr "Mostrar todos los contactos"
-#: src/Module/Contact.php:352 src/Module/Contact.php:431
-#: src/Module/Moderation/BaseUsers.php:85
+#: src/Module/Contact.php:333 src/Module/Contact.php:412
+#: src/Module/Moderation/BaseUsers.php:72
msgid "Pending"
msgstr "Pendiente"
-#: src/Module/Contact.php:355
+#: src/Module/Contact.php:336
msgid "Only show pending contacts"
msgstr "Solo mostrar contactos pendientes"
-#: src/Module/Contact.php:360 src/Module/Contact.php:434
-#: src/Module/Moderation/BaseUsers.php:93
+#: src/Module/Contact.php:341 src/Module/Contact.php:415
+#: src/Module/Moderation/BaseUsers.php:80
msgid "Blocked"
msgstr "Bloqueados"
-#: src/Module/Contact.php:363
+#: src/Module/Contact.php:344
msgid "Only show blocked contacts"
msgstr "Mostrar solo contactos bloqueados"
-#: src/Module/Contact.php:368 src/Module/Contact.php:440
-#: src/Module/Settings/Server/Index.php:107 src/Object/Post.php:399
+#: src/Module/Contact.php:349 src/Module/Contact.php:421
+#: src/Module/Settings/Server/Index.php:93 src/Object/Post.php:385
msgid "Ignored"
msgstr "Ignorados"
-#: src/Module/Contact.php:371
+#: src/Module/Contact.php:352
msgid "Only show ignored contacts"
msgstr "Mostrar solo contactos ignorados"
-#: src/Module/Contact.php:376 src/Module/Contact.php:443
+#: src/Module/Contact.php:357 src/Module/Contact.php:424
msgid "Collapsed"
msgstr ""
-#: src/Module/Contact.php:379
+#: src/Module/Contact.php:360
msgid "Only show collapsed contacts"
msgstr ""
-#: src/Module/Contact.php:384 src/Module/Contact.php:446
+#: src/Module/Contact.php:365 src/Module/Contact.php:427
msgid "Archived"
msgstr "Archivados"
-#: src/Module/Contact.php:387
+#: src/Module/Contact.php:368
msgid "Only show archived contacts"
msgstr "Mostrar solo contactos archivados"
-#: src/Module/Contact.php:392 src/Module/Contact.php:437
+#: src/Module/Contact.php:373 src/Module/Contact.php:418
msgid "Hidden"
msgstr "Ocultos"
-#: src/Module/Contact.php:395
+#: src/Module/Contact.php:376
msgid "Only show hidden contacts"
msgstr "Mostrar solo contactos ocultos"
-#: src/Module/Contact.php:403
+#: src/Module/Contact.php:384
msgid "Organize your contact circles"
msgstr ""
-#: src/Module/Contact.php:458
+#: src/Module/Contact.php:439
msgid "Search your contacts"
msgstr "Buscar en tus contactos"
-#: src/Module/Contact.php:459 src/Module/Search/Index.php:207
+#: src/Module/Contact.php:440 src/Module/Search/Index.php:193
#, php-format
msgid "Results for: %s"
msgstr "Resultados para: %s"
-#: src/Module/Contact.php:466
+#: src/Module/Contact.php:448
msgid "Update"
msgstr "Actualizar"
-#: src/Module/Contact.php:467 src/Module/Contact/Profile.php:518
-#: src/Module/Moderation/Blocklist/Contact.php:117
-#: src/Module/Moderation/Users/Blocked.php:138
-#: src/Module/Moderation/Users/Index.php:154
+#: src/Module/Contact.php:449 src/Module/Contact/Profile.php:518
+#: src/Module/Moderation/Blocklist/Contact.php:103
+#: src/Module/Moderation/Users/Blocked.php:124
+#: src/Module/Moderation/Users/Index.php:140
msgid "Unblock"
msgstr "Desbloquear"
-#: src/Module/Contact.php:468 src/Module/Contact/Profile.php:526
+#: src/Module/Contact.php:450 src/Module/Contact/Profile.php:526
msgid "Unignore"
msgstr "Quitar de Ignorados"
-#: src/Module/Contact.php:469 src/Module/Contact/Profile.php:534
+#: src/Module/Contact.php:451 src/Module/Contact/Profile.php:534
msgid "Uncollapse"
msgstr ""
-#: src/Module/Contact.php:471
+#: src/Module/Contact.php:453
msgid "Batch Actions"
msgstr "Acciones en lote"
-#: src/Module/Contact.php:514
+#: src/Module/Contact.php:496
msgid "Conversations started by this contact"
msgstr "Se iniciaron conversaciones con el contacto"
-#: src/Module/Contact.php:519
+#: src/Module/Contact.php:501
msgid "Posts and Comments"
msgstr "Artículos y Comentarios"
-#: src/Module/Contact.php:522
+#: src/Module/Contact.php:504
msgid "Individual Posts and Replies"
msgstr ""
-#: src/Module/Contact.php:530
+#: src/Module/Contact.php:512
msgid "Posts containing media objects"
msgstr ""
-#: src/Module/Contact.php:538
+#: src/Module/Contact.php:520
msgid "View all known contacts"
msgstr "Ver contactos conocidos"
-#: src/Module/Contact.php:549
+#: src/Module/Contact.php:531
msgid "Advanced Contact Settings"
msgstr "Configuración avanzada"
-#: src/Module/Contact.php:585
+#: src/Module/Contact.php:567
msgid "Mutual Friendship"
msgstr "Amistad común"
-#: src/Module/Contact.php:589
+#: src/Module/Contact.php:571
msgid "is a fan of yours"
msgstr "es tu seguidor"
-#: src/Module/Contact.php:593
+#: src/Module/Contact.php:575
msgid "you are a fan of"
msgstr "eres seguidor de"
-#: src/Module/Contact.php:611
+#: src/Module/Contact.php:593
msgid "Pending outgoing contact request"
msgstr "Solicitud de Contacto pendiente"
-#: src/Module/Contact.php:613
+#: src/Module/Contact.php:595
msgid "Pending incoming contact request"
msgstr "Solicitud de Contacto pendiente"
-#: src/Module/Contact.php:626 src/Module/Contact/Profile.php:377
+#: src/Module/Contact.php:608 src/Module/Contact/Profile.php:377
#, php-format
msgid "Visit %s's profile [%s]"
msgstr "Ver el perfil de %s [%s]"
-#: src/Module/Contact/Advanced.php:99
+#: src/Module/Contact/Advanced.php:85
msgid "Contact update failed."
msgstr "Error al actualizar el Contacto."
-#: src/Module/Contact/Advanced.php:130
+#: src/Module/Contact/Advanced.php:116
msgid "Return to contact editor"
msgstr "Volver al editor de contactos"
-#: src/Module/Contact/Advanced.php:134
-#: src/Module/Moderation/Blocklist/Contact.php:122
-#: src/Module/Moderation/Reports.php:110
-#: src/Module/Moderation/Users/Active.php:126
-#: src/Module/Moderation/Users/Blocked.php:126
-#: src/Module/Moderation/Users/Create.php:70
-#: src/Module/Moderation/Users/Deleted.php:83
-#: src/Module/Moderation/Users/Index.php:140
-#: src/Module/Moderation/Users/Index.php:160
-#: src/Module/Moderation/Users/Pending.php:99 src/Module/Settings/OAuth.php:72
+#: src/Module/Contact/Advanced.php:120
+#: src/Module/Moderation/Blocklist/Contact.php:108
+#: src/Module/Moderation/Reports.php:102
+#: src/Module/Moderation/Users/Active.php:112
+#: src/Module/Moderation/Users/Blocked.php:112
+#: src/Module/Moderation/Users/Create.php:56
+#: src/Module/Moderation/Users/Deleted.php:69
+#: src/Module/Moderation/Users/Index.php:126
+#: src/Module/Moderation/Users/Index.php:146
+#: src/Module/Moderation/Users/Pending.php:85 src/Module/Settings/OAuth.php:58
msgid "Name"
msgstr "Nombre"
-#: src/Module/Contact/Advanced.php:135
+#: src/Module/Contact/Advanced.php:121
msgid "Account Nickname"
msgstr "Apodo de cuenta"
-#: src/Module/Contact/Advanced.php:136
+#: src/Module/Contact/Advanced.php:122
msgid "Account URL"
msgstr "Dirección de cuenta"
-#: src/Module/Contact/Advanced.php:137
+#: src/Module/Contact/Advanced.php:123
msgid "Poll/Feed URL"
msgstr "Dirección de Sondeo/Fuente"
-#: src/Module/Contact/Advanced.php:138
+#: src/Module/Contact/Advanced.php:124
msgid "New photo from this URL"
msgstr "Nueva foto de esta URL"
-#: src/Module/Contact/Contacts.php:89
+#: src/Module/Contact/Contacts.php:75
msgid "No known contacts."
msgstr "No hay contactos conocidos."
-#: src/Module/Contact/Contacts.php:103 src/Module/Profile/Common.php:128
+#: src/Module/Contact/Contacts.php:89 src/Module/Profile/Common.php:114
msgid "No common contacts."
msgstr "Sin contactos comunes."
-#: src/Module/Contact/Contacts.php:115 src/Module/Profile/Contacts.php:135
+#: src/Module/Contact/Contacts.php:101 src/Module/Profile/Contacts.php:121
#, php-format
msgid "Follower (%s)"
msgid_plural "Followers (%s)"
@@ -6683,7 +6699,7 @@ msgstr[0] "Seguidor (%s)"
msgstr[1] "Seguidores (%s)"
msgstr[2] "Seguidores (%s)"
-#: src/Module/Contact/Contacts.php:119 src/Module/Profile/Contacts.php:138
+#: src/Module/Contact/Contacts.php:105 src/Module/Profile/Contacts.php:124
#, php-format
msgid "Following (%s)"
msgid_plural "Following (%s)"
@@ -6691,7 +6707,7 @@ msgstr[0] "Siguiendo (%s)"
msgstr[1] "Siguiendo (%s)"
msgstr[2] "Siguiendo (%s)"
-#: src/Module/Contact/Contacts.php:123 src/Module/Profile/Contacts.php:141
+#: src/Module/Contact/Contacts.php:109 src/Module/Profile/Contacts.php:127
#, php-format
msgid "Mutual friend (%s)"
msgid_plural "Mutual friends (%s)"
@@ -6699,12 +6715,12 @@ msgstr[0] "Amigo mutuo (%s)"
msgstr[1] "Amigos mutuos (%s)"
msgstr[2] "Amigos mutuos (%s)"
-#: src/Module/Contact/Contacts.php:125 src/Module/Profile/Contacts.php:143
+#: src/Module/Contact/Contacts.php:111 src/Module/Profile/Contacts.php:129
#, php-format
msgid "These contacts both follow and are followed by %s."
msgstr "Estos contactos siguen y son seguidos por %s."
-#: src/Module/Contact/Contacts.php:131 src/Module/Profile/Common.php:116
+#: src/Module/Contact/Contacts.php:117 src/Module/Profile/Common.php:102
#, php-format
msgid "Common contact (%s)"
msgid_plural "Common contacts (%s)"
@@ -6712,14 +6728,14 @@ msgstr[0] "Common contact (%s)"
msgstr[1] "Common contacts (%s)"
msgstr[2] "Common contacts (%s)"
-#: src/Module/Contact/Contacts.php:133 src/Module/Profile/Common.php:118
+#: src/Module/Contact/Contacts.php:119 src/Module/Profile/Common.php:104
#, php-format
msgid ""
"Both %s and yourself have publicly interacted with these "
"contacts (follow, comment or likes on public posts)."
msgstr "Tanto %s como usted han interactuado públicamente con estos contactos (seguir, comentar o dar me gusta en publicaciones públicas)."
-#: src/Module/Contact/Contacts.php:139 src/Module/Profile/Contacts.php:149
+#: src/Module/Contact/Contacts.php:125 src/Module/Profile/Contacts.php:135
#, php-format
msgid "Contact (%s)"
msgid_plural "Contacts (%s)"
@@ -6727,95 +6743,91 @@ msgstr[0] "Contacto (%s)"
msgstr[1] "Contactos (%s)"
msgstr[2] "Contactos (%s)"
-#: src/Module/Contact/Follow.php:70 src/Module/Contact/Redir.php:63
-#: src/Module/Contact/Redir.php:223 src/Module/Conversation/Community.php:166
-#: src/Module/Debug/ItemBody.php:38 src/Module/Diaspora/Receive.php:57
-#: src/Module/Item/Display.php:96 src/Module/Item/Feed.php:59
-#: src/Module/Item/Follow.php:41 src/Module/Item/Ignore.php:41
-#: src/Module/Item/Language.php:53 src/Module/Item/Pin.php:41
-#: src/Module/Item/Pin.php:56 src/Module/Item/Searchtext.php:53
-#: src/Module/Item/Star.php:42 src/Module/Update/Display.php:37
+#: src/Module/Contact/Follow.php:56 src/Module/Contact/Redir.php:45
+#: src/Module/Contact/Redir.php:206 src/Module/Conversation/Community.php:154
+#: src/Module/Debug/ItemBody.php:24 src/Module/Diaspora/Receive.php:45
+#: src/Module/Item/Display.php:82 src/Module/Item/Feed.php:45
+#: src/Module/Item/Follow.php:27 src/Module/Item/Ignore.php:27
+#: src/Module/Item/Language.php:39 src/Module/Item/Pin.php:27
+#: src/Module/Item/Pin.php:42 src/Module/Item/Searchtext.php:39
+#: src/Module/Item/Star.php:28 src/Module/Update/Display.php:23
msgid "Access denied."
msgstr "Acceso denegado."
-#: src/Module/Contact/Follow.php:105 src/Module/Contact/Unfollow.php:125
-#: src/Module/Profile/RemoteFollow.php:133
+#: src/Module/Contact/Follow.php:91 src/Module/Contact/Unfollow.php:111
+#: src/Module/Profile/RemoteFollow.php:119
msgid "Submit Request"
msgstr "Enviar Solicitud"
-#: src/Module/Contact/Follow.php:115
+#: src/Module/Contact/Follow.php:101
msgid "You already added this contact."
msgstr "Ya has añadido este contacto."
-#: src/Module/Contact/Follow.php:130
+#: src/Module/Contact/Follow.php:116
msgid "The network type couldn't be detected. Contact can't be added."
msgstr "No se pudo detectar el tipo de red. Contacto no puede ser agregado."
-#: src/Module/Contact/Follow.php:138
+#: src/Module/Contact/Follow.php:124
msgid "Diaspora support isn't enabled. Contact can't be added."
msgstr "El soporte de Diaspora* no esta habilitado, el contacto no puede ser agregado."
-#: src/Module/Contact/Follow.php:143
-msgid "OStatus support is disabled. Contact can't be added."
-msgstr "El soporte de OStatus no esta habilitado, el contacto no puede ser agregado."
-
-#: src/Module/Contact/Follow.php:168 src/Module/Profile/RemoteFollow.php:132
+#: src/Module/Contact/Follow.php:149 src/Module/Profile/RemoteFollow.php:118
msgid "Please answer the following:"
msgstr "Por favor responde lo siguiente:"
-#: src/Module/Contact/Follow.php:169 src/Module/Contact/Unfollow.php:123
+#: src/Module/Contact/Follow.php:150 src/Module/Contact/Unfollow.php:109
msgid "Your Identity Address:"
msgstr "Dirección de tu Identidad:"
-#: src/Module/Contact/Follow.php:170 src/Module/Contact/Profile.php:408
-#: src/Module/Contact/Unfollow.php:129
-#: src/Module/Moderation/Blocklist/Contact.php:131
-#: src/Module/Moderation/Reports.php:117
-#: src/Module/Notifications/Introductions.php:129
-#: src/Module/Notifications/Introductions.php:198
+#: src/Module/Contact/Follow.php:151 src/Module/Contact/Profile.php:408
+#: src/Module/Contact/Unfollow.php:115
+#: src/Module/Moderation/Blocklist/Contact.php:117
+#: src/Module/Moderation/Reports.php:109
+#: src/Module/Notifications/Introductions.php:121
+#: src/Module/Notifications/Introductions.php:190
msgid "Profile URL"
msgstr "URL del Perfil"
-#: src/Module/Contact/Follow.php:171 src/Module/Contact/Profile.php:420
-#: src/Module/Notifications/Introductions.php:191
-#: src/Module/Profile/Profile.php:234
+#: src/Module/Contact/Follow.php:152 src/Module/Contact/Profile.php:420
+#: src/Module/Notifications/Introductions.php:183
+#: src/Module/Profile/Profile.php:222
msgid "Tags:"
msgstr "Etiquetas:"
-#: src/Module/Contact/Follow.php:182
+#: src/Module/Contact/Follow.php:163
#, php-format
msgid "%s knows you"
msgstr "%s te conoce"
-#: src/Module/Contact/Follow.php:183
+#: src/Module/Contact/Follow.php:164
msgid "Add a personal note:"
msgstr "Añade una nota personal:"
-#: src/Module/Contact/Follow.php:192 src/Module/Contact/Unfollow.php:138
+#: src/Module/Contact/Follow.php:173 src/Module/Contact/Unfollow.php:124
msgid "Posts and Replies"
msgstr ""
-#: src/Module/Contact/Follow.php:221
+#: src/Module/Contact/Follow.php:202
msgid "The contact could not be added."
msgstr "El contacto no puede añadirse."
-#: src/Module/Contact/MatchInterests.php:95
-#: src/Module/Media/Attachment/Upload.php:77
-#: src/Module/Media/Attachment/Upload.php:82
-#: src/Module/Media/Photo/Upload.php:81 src/Module/Media/Photo/Upload.php:86
-#: src/Module/Media/Photo/Upload.php:135
+#: src/Module/Contact/MatchInterests.php:81
+#: src/Module/Media/Attachment/Upload.php:63
+#: src/Module/Media/Attachment/Upload.php:68
+#: src/Module/Media/Photo/Upload.php:67 src/Module/Media/Photo/Upload.php:72
+#: src/Module/Media/Photo/Upload.php:121
msgid "Invalid request."
msgstr "Consulta invalida"
-#: src/Module/Contact/MatchInterests.php:102
+#: src/Module/Contact/MatchInterests.php:88
msgid "No keywords to match. Please add keywords to your profile."
msgstr "No hay etiquetas, añade etiquetas a tu perfil."
-#: src/Module/Contact/MatchInterests.php:145
+#: src/Module/Contact/MatchInterests.php:141
msgid "Profile Match"
msgstr "Coincidencia de Perfil"
-#: src/Module/Contact/Profile.php:145
+#: src/Module/Contact/Profile.php:131
msgid "Failed to update contact record."
msgstr "Error al actualizar el contacto."
@@ -6953,7 +6965,7 @@ msgid "Block/Unblock contact"
msgstr "Boquear/Desbloquear contacto"
#: src/Module/Contact/Profile.php:379
-#: src/Module/Moderation/Report/Create.php:293
+#: src/Module/Moderation/Report/Create.php:279
msgid "Ignore contact"
msgstr "Ignorar contacto"
@@ -6998,7 +7010,7 @@ msgid "Manage remote servers"
msgstr ""
#: src/Module/Contact/Profile.php:400
-#: src/Module/Notifications/Introductions.php:192
+#: src/Module/Notifications/Introductions.php:184
msgid "Hide this contact from others"
msgstr "Ocultar el contacto a los demás."
@@ -7026,12 +7038,12 @@ msgid ""
msgstr "Lista separada por comas de palabras claves que no deberían ser convertidas en #etiquetas cuando \"Recaudar información y palabras claves\" es seleccionado"
#: src/Module/Contact/Profile.php:421
-#: src/Module/Settings/TwoFactor/Index.php:160
+#: src/Module/Settings/TwoFactor/Index.php:146
msgid "Actions"
msgstr "Acciones"
#: src/Module/Contact/Profile.php:423
-#: src/Module/Settings/TwoFactor/Index.php:140 view/theme/frio/theme.php:232
+#: src/Module/Settings/TwoFactor/Index.php:126 view/theme/frio/theme.php:220
msgid "Status"
msgstr "Estado"
@@ -7106,8 +7118,8 @@ msgstr ""
#: src/Module/Contact/Profile.php:441
msgid ""
-"If enabled, posts from this contact will only appear in channels, but not in"
-" the network stream."
+"If enabled, posts from this contact will only appear in channels and network"
+" streams in circles, but not in the general network stream."
msgstr ""
#: src/Module/Contact/Profile.php:509
@@ -7126,7 +7138,7 @@ msgstr "Cambiar ignorados"
msgid "Toggle Collapsed status"
msgstr ""
-#: src/Module/Contact/Profile.php:543 src/Module/Contact/Revoke.php:106
+#: src/Module/Contact/Profile.php:543 src/Module/Contact/Revoke.php:89
msgid "Revoke Follow"
msgstr ""
@@ -7134,640 +7146,636 @@ msgstr ""
msgid "Revoke the follow from this contact"
msgstr ""
-#: src/Module/Contact/Redir.php:135 src/Module/Contact/Redir.php:187
+#: src/Module/Contact/Redir.php:125
msgid "Bad Request."
msgstr "Petición errónea"
-#: src/Module/Contact/Revoke.php:63
-msgid "Unknown contact."
-msgstr ""
-
-#: src/Module/Contact/Revoke.php:77
+#: src/Module/Contact/Revoke.php:60
msgid "Contact is being deleted."
msgstr ""
-#: src/Module/Contact/Revoke.php:91
+#: src/Module/Contact/Revoke.php:74
msgid "Follow was successfully revoked."
msgstr ""
-#: src/Module/Contact/Revoke.php:107
+#: src/Module/Contact/Revoke.php:90
msgid ""
"Do you really want to revoke this contact's follow? This cannot be undone "
"and they will have to manually follow you back again."
msgstr ""
-#: src/Module/Contact/Suggestions.php:62
+#: src/Module/Contact/Suggestions.php:48
msgid ""
"No suggestions available. If this is a new site, please try again in 24 "
"hours."
msgstr "No hay sugerencias disponibles. Si el sitio web es nuevo inténtalo de nuevo en 24 horas."
-#: src/Module/Contact/Unfollow.php:98 src/Module/Contact/Unfollow.php:167
+#: src/Module/Contact/Unfollow.php:84 src/Module/Contact/Unfollow.php:153
msgid "You aren't following this contact."
msgstr "No sigues a este contacto."
-#: src/Module/Contact/Unfollow.php:103
+#: src/Module/Contact/Unfollow.php:89
msgid "Unfollowing is currently not supported by your network."
msgstr "Dejar de Seguir no es compatible con tu red."
-#: src/Module/Contact/Unfollow.php:121
+#: src/Module/Contact/Unfollow.php:107
msgid "Disconnect/Unfollow"
msgstr "Desconectar/Dejar de seguir"
-#: src/Module/Contact/Unfollow.php:175
+#: src/Module/Contact/Unfollow.php:161
msgid "Contact was successfully unfollowed"
msgstr ""
-#: src/Module/Contact/Unfollow.php:178
+#: src/Module/Contact/Unfollow.php:164
msgid "Unable to unfollow this contact, please contact your administrator"
msgstr ""
-#: src/Module/Conversation/Channel.php:139
-#: src/Module/Conversation/Community.php:126 src/Module/Search/Index.php:152
-#: src/Module/Search/Index.php:194
+#: src/Module/Conversation/Channel.php:125
+#: src/Module/Conversation/Community.php:114 src/Module/Search/Index.php:138
+#: src/Module/Search/Index.php:180
msgid "No results."
msgstr "Sin resultados."
-#: src/Module/Conversation/Channel.php:177
+#: src/Module/Conversation/Channel.php:163
msgid "Channel not available."
msgstr ""
-#: src/Module/Conversation/Community.php:92
+#: src/Module/Conversation/Community.php:80
msgid ""
"This community stream shows all public posts received by this node. They may"
" not reflect the opinions of this node’s users."
msgstr "Este hilo de la comunidad muestra todas las publicaciones públicas recibidas por este nodo. Puede no reflejar las opiniones de los usuarios de este nodo."
-#: src/Module/Conversation/Community.php:180
+#: src/Module/Conversation/Community.php:168
msgid "Community option not available."
msgstr "Fediverso no disponible"
-#: src/Module/Conversation/Community.php:196
+#: src/Module/Conversation/Community.php:184
msgid "Not available."
msgstr "No disponible"
-#: src/Module/Conversation/Network.php:214
+#: src/Module/Conversation/Network.php:202
msgid "No such circle"
msgstr ""
-#: src/Module/Conversation/Network.php:218
+#: src/Module/Conversation/Network.php:206
#, php-format
msgid "Circle: %s"
msgstr ""
-#: src/Module/Conversation/Network.php:237
+#: src/Module/Conversation/Network.php:226
#, php-format
msgid "Error %d (%s) while fetching the timeline."
msgstr ""
-#: src/Module/Conversation/Network.php:314
+#: src/Module/Conversation/Network.php:304
msgid "Network feed not available."
msgstr ""
-#: src/Module/Conversation/Timeline.php:203
+#: src/Module/Conversation/Timeline.php:190
msgid "Include"
msgstr "Incluir"
-#: src/Module/Conversation/Timeline.php:204
+#: src/Module/Conversation/Timeline.php:191
msgid "Hide"
msgstr "Ocultar"
-#: src/Module/Credits.php:44
+#: src/Module/Credits.php:30
msgid "Credits"
msgstr "Créditos"
-#: src/Module/Credits.php:45
+#: src/Module/Credits.php:31
msgid ""
"Friendica is a community project, that would not be possible without the "
"help of many people. Here is a list of those who have contributed to the "
"code or the translation of Friendica. Thank you all!"
msgstr "Friendica es un proyecto comunitario, que no seria posible sin la ayuda de mucha gente. Aquí una lista de de aquellos que aportaron al código o la traducción de friendica.\nGracias a todos! "
-#: src/Module/Debug/ActivityPubConversion.php:53
+#: src/Module/Debug/ActivityPubConversion.php:45
msgid "Formatted"
msgstr "Formateado"
-#: src/Module/Debug/ActivityPubConversion.php:65
+#: src/Module/Debug/ActivityPubConversion.php:57
msgid "Activity"
msgstr "Actividad"
-#: src/Module/Debug/ActivityPubConversion.php:117
+#: src/Module/Debug/ActivityPubConversion.php:109
msgid "Object data"
msgstr "Dato de Objeto"
-#: src/Module/Debug/ActivityPubConversion.php:124
+#: src/Module/Debug/ActivityPubConversion.php:116
msgid "Result Item"
msgstr "Artículo resultado"
-#: src/Module/Debug/ActivityPubConversion.php:129
-#: src/Module/Debug/Babel.php:294 src/Module/Moderation/Item/Source.php:87
-#: src/Module/Security/TwoFactor/Verify.php:98
+#: src/Module/Debug/ActivityPubConversion.php:121
+#: src/Module/Debug/Babel.php:286 src/Module/Moderation/Item/Source.php:79
+#: src/Module/Security/TwoFactor/Verify.php:84
msgid "Error"
msgid_plural "Errors"
msgstr[0] "Error"
msgstr[1] "Errores"
msgstr[2] "Errores"
-#: src/Module/Debug/ActivityPubConversion.php:138
+#: src/Module/Debug/ActivityPubConversion.php:130
msgid "Source activity"
msgstr "Actividad fuente"
-#: src/Module/Debug/Babel.php:52
+#: src/Module/Debug/Babel.php:44
msgid "Source input"
msgstr "Entrada fuente"
-#: src/Module/Debug/Babel.php:58
+#: src/Module/Debug/Babel.php:50
msgid "BBCode::toPlaintext"
msgstr "BBCode::toPlaintext"
-#: src/Module/Debug/Babel.php:64
+#: src/Module/Debug/Babel.php:56
msgid "BBCode::convert (raw HTML)"
msgstr "BBCode::convert (raw HTML)"
-#: src/Module/Debug/Babel.php:69
+#: src/Module/Debug/Babel.php:61
msgid "BBCode::convert (hex)"
msgstr "BBCode::convert (hex)"
-#: src/Module/Debug/Babel.php:74
+#: src/Module/Debug/Babel.php:66
msgid "BBCode::convert"
msgstr "BBCode::convert"
-#: src/Module/Debug/Babel.php:80
+#: src/Module/Debug/Babel.php:72
msgid "BBCode::convert => HTML::toBBCode"
msgstr "BBCode::convert => HTML::toBBCode"
-#: src/Module/Debug/Babel.php:86
+#: src/Module/Debug/Babel.php:78
msgid "BBCode::toMarkdown"
msgstr "BBCode::toMarkdown"
-#: src/Module/Debug/Babel.php:92
+#: src/Module/Debug/Babel.php:84
msgid "BBCode::toMarkdown => Markdown::convert (raw HTML)"
msgstr "BBCode::toMarkdown => Markdown::convert (raw HTML)"
-#: src/Module/Debug/Babel.php:96
+#: src/Module/Debug/Babel.php:88
msgid "BBCode::toMarkdown => Markdown::convert"
msgstr "BBCode::toMarkdown => Markdown::convert"
-#: src/Module/Debug/Babel.php:102
+#: src/Module/Debug/Babel.php:94
msgid "BBCode::toMarkdown => Markdown::toBBCode"
msgstr "BBCode::toMarkdown => Markdown::toBBCode"
-#: src/Module/Debug/Babel.php:108
+#: src/Module/Debug/Babel.php:100
msgid "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode"
msgstr "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode"
-#: src/Module/Debug/Babel.php:116
+#: src/Module/Debug/Babel.php:108
msgid "Item Body"
msgstr "Cuerpo"
-#: src/Module/Debug/Babel.php:120
+#: src/Module/Debug/Babel.php:112
msgid "Item Tags"
msgstr "Etiquetas"
-#: src/Module/Debug/Babel.php:126
+#: src/Module/Debug/Babel.php:118
msgid "PageInfo::appendToBody"
msgstr "PageInfo::appendToBody"
-#: src/Module/Debug/Babel.php:131
+#: src/Module/Debug/Babel.php:123
msgid "PageInfo::appendToBody => BBCode::convert (raw HTML)"
msgstr "PageInfo::appendToBody => BBCode::convert (raw HTML)"
-#: src/Module/Debug/Babel.php:135
+#: src/Module/Debug/Babel.php:127
msgid "PageInfo::appendToBody => BBCode::convert"
msgstr "PageInfo::appendToBody => BBCode::convert"
-#: src/Module/Debug/Babel.php:142
+#: src/Module/Debug/Babel.php:134
msgid "Source input (Diaspora format)"
msgstr "Entrada fuente (Formato Diaspora)"
-#: src/Module/Debug/Babel.php:151
+#: src/Module/Debug/Babel.php:143
msgid "Source input (Markdown)"
msgstr "Entrada fuente (Markdown)"
-#: src/Module/Debug/Babel.php:157
+#: src/Module/Debug/Babel.php:149
msgid "Markdown::convert (raw HTML)"
msgstr "Markdown::convert (raw HTML)"
-#: src/Module/Debug/Babel.php:162
+#: src/Module/Debug/Babel.php:154
msgid "Markdown::convert"
msgstr "Markdown::convert"
-#: src/Module/Debug/Babel.php:168
+#: src/Module/Debug/Babel.php:160
msgid "Markdown::toBBCode"
msgstr "Markdown::toBBCode"
-#: src/Module/Debug/Babel.php:175
+#: src/Module/Debug/Babel.php:167
msgid "Raw HTML input"
msgstr "Entrada RAW HTML"
-#: src/Module/Debug/Babel.php:180
+#: src/Module/Debug/Babel.php:172
msgid "HTML Input"
msgstr "Entrada HTML"
-#: src/Module/Debug/Babel.php:187
+#: src/Module/Debug/Babel.php:179
msgid "HTML Purified (raw)"
msgstr "HTML purificado (raw)"
-#: src/Module/Debug/Babel.php:192
+#: src/Module/Debug/Babel.php:184
msgid "HTML Purified (hex)"
msgstr "HTML purificado (hex)"
-#: src/Module/Debug/Babel.php:197
+#: src/Module/Debug/Babel.php:189
msgid "HTML Purified"
msgstr "HTML purificado"
-#: src/Module/Debug/Babel.php:203
+#: src/Module/Debug/Babel.php:195
msgid "HTML::toBBCode"
msgstr "HTML::toBBCode"
-#: src/Module/Debug/Babel.php:209
+#: src/Module/Debug/Babel.php:201
msgid "HTML::toBBCode => BBCode::convert"
msgstr "HTML::toBBCode => BBCode::convert"
-#: src/Module/Debug/Babel.php:214
+#: src/Module/Debug/Babel.php:206
msgid "HTML::toBBCode => BBCode::convert (raw HTML)"
msgstr "HTML::toBBCode => BBCode::convert (raw HTML)"
-#: src/Module/Debug/Babel.php:220
+#: src/Module/Debug/Babel.php:212
msgid "HTML::toBBCode => BBCode::toPlaintext"
msgstr "HTML::toBBCode => BBCode::toPlaintext"
-#: src/Module/Debug/Babel.php:226
+#: src/Module/Debug/Babel.php:218
msgid "HTML::toMarkdown"
msgstr "HTML::toMarkdown"
-#: src/Module/Debug/Babel.php:232
+#: src/Module/Debug/Babel.php:224
msgid "HTML::toPlaintext"
msgstr "HTML::toPlaintext"
-#: src/Module/Debug/Babel.php:238
+#: src/Module/Debug/Babel.php:230
msgid "HTML::toPlaintext (compact)"
msgstr "HTML::toPlaintext (compact)"
-#: src/Module/Debug/Babel.php:256
+#: src/Module/Debug/Babel.php:248
msgid "Decoded post"
msgstr "Articulo decodificado"
-#: src/Module/Debug/Babel.php:277
+#: src/Module/Debug/Babel.php:269
msgid "Post array before expand entities"
msgstr "Arreglo sin expandir entidades"
-#: src/Module/Debug/Babel.php:284
+#: src/Module/Debug/Babel.php:276
msgid "Post converted"
msgstr "Convertido"
-#: src/Module/Debug/Babel.php:289
+#: src/Module/Debug/Babel.php:281
msgid "Converted body"
msgstr "Cuerpo convertido"
-#: src/Module/Debug/Babel.php:295
+#: src/Module/Debug/Babel.php:287
msgid "Twitter addon is absent from the addon/ folder."
msgstr "El Addon de Twitter no existe en folder addon/ ."
-#: src/Module/Debug/Babel.php:305
+#: src/Module/Debug/Babel.php:297
msgid "Babel Diagnostic"
msgstr "Diagnóstico Babel"
-#: src/Module/Debug/Babel.php:307
+#: src/Module/Debug/Babel.php:299
msgid "Source text"
msgstr "Texto fuente"
-#: src/Module/Debug/Babel.php:308
+#: src/Module/Debug/Babel.php:300
msgid "BBCode"
msgstr "BBCode"
-#: src/Module/Debug/Babel.php:310
+#: src/Module/Debug/Babel.php:302
msgid "Markdown"
msgstr "Markdown"
-#: src/Module/Debug/Babel.php:311
+#: src/Module/Debug/Babel.php:303
msgid "HTML"
msgstr "HTML"
-#: src/Module/Debug/Babel.php:313
+#: src/Module/Debug/Babel.php:305
msgid "Twitter Source / Tweet URL (requires API key)"
msgstr "Fuente Twitter / Tweet URL (requiere API key)"
-#: src/Module/Debug/Feed.php:53 src/Module/Filer/SaveTag.php:47
-#: src/Module/Settings/Profile/Index.php:177
+#: src/Module/Debug/Feed.php:39 src/Module/Filer/SaveTag.php:33
+#: src/Module/Settings/Profile/Index.php:166
msgid "You must be logged in to use this module"
msgstr "Debes ingresar para usar este módulo"
-#: src/Module/Debug/Feed.php:78
+#: src/Module/Debug/Feed.php:64
msgid "Source URL"
msgstr "URL Fuente"
-#: src/Module/Debug/Localtime.php:49
+#: src/Module/Debug/Localtime.php:35
msgid "Time Conversion"
msgstr "Conversión horária"
-#: src/Module/Debug/Localtime.php:50
+#: src/Module/Debug/Localtime.php:36
msgid ""
"Friendica provides this service for sharing events with other networks and "
"friends in unknown timezones."
msgstr "Friendica ofrece este servicio para compartir eventos con otros servidores de Red friendica y amigos en zonas horarias desconocidas."
-#: src/Module/Debug/Localtime.php:51
+#: src/Module/Debug/Localtime.php:37
#, php-format
msgid "UTC time: %s"
msgstr "Tiempo UTC: %s"
-#: src/Module/Debug/Localtime.php:54
+#: src/Module/Debug/Localtime.php:40
#, php-format
msgid "Current timezone: %s"
msgstr "Zona horaria actual: %s"
-#: src/Module/Debug/Localtime.php:58
+#: src/Module/Debug/Localtime.php:44
#, php-format
msgid "Converted localtime: %s"
msgstr "Hora local convertida: %s"
-#: src/Module/Debug/Localtime.php:62
+#: src/Module/Debug/Localtime.php:48
msgid "Please select your timezone:"
msgstr "Selecciona tu zona horaria:"
-#: src/Module/Debug/Probe.php:38 src/Module/Debug/WebFinger.php:37
+#: src/Module/Debug/Probe.php:24 src/Module/Debug/WebFinger.php:23
msgid "Only logged in users are permitted to perform a probing."
msgstr "Sólo usuarios registrados pueden realizar exploración."
-#: src/Module/Debug/Probe.php:52
+#: src/Module/Debug/Probe.php:38
msgid "Probe Diagnostic"
msgstr "Prueba Diagnóstico"
-#: src/Module/Debug/Probe.php:53
+#: src/Module/Debug/Probe.php:39
msgid "Output"
msgstr "Salida"
-#: src/Module/Debug/Probe.php:56
+#: src/Module/Debug/Probe.php:42
msgid "Lookup address"
msgstr "Buscar Dirección"
-#: src/Module/Debug/WebFinger.php:50
+#: src/Module/Debug/WebFinger.php:36
msgid "Webfinger Diagnostic"
msgstr "Diagnóstico Webfinger"
-#: src/Module/Debug/WebFinger.php:52
+#: src/Module/Debug/WebFinger.php:38
msgid "Lookup address:"
msgstr "Buscar Dirección:"
-#: src/Module/Directory.php:74
+#: src/Module/Directory.php:61
msgid "No entries (some entries may be hidden)."
msgstr "Sin entradas (algunas pueden que estén ocultas)."
-#: src/Module/Directory.php:90
+#: src/Module/Directory.php:77
msgid "Find on this site"
msgstr "Buscar en este sitio"
-#: src/Module/Directory.php:92
+#: src/Module/Directory.php:79
msgid "Results for:"
msgstr "Resultados para:"
-#: src/Module/Directory.php:94
+#: src/Module/Directory.php:81
msgid "Site Directory"
msgstr "Directorio del sitio"
-#: src/Module/Filer/RemoveTag.php:105
+#: src/Module/Filer/RemoveTag.php:91
msgid "Item was not deleted"
msgstr "Artículo no fue borrado"
-#: src/Module/Filer/RemoveTag.php:115
+#: src/Module/Filer/RemoveTag.php:101
msgid "Item was not removed"
msgstr "Artículo no fue borrado"
-#: src/Module/Filer/SaveTag.php:73
+#: src/Module/Filer/SaveTag.php:59
msgid "- select -"
msgstr "- seleccionar -"
-#: src/Module/FriendSuggest.php:82
+#: src/Module/FriendSuggest.php:68
msgid "Suggested contact not found."
msgstr "El contacto sugerido no se encontró."
-#: src/Module/FriendSuggest.php:100
+#: src/Module/FriendSuggest.php:86
msgid "Friend suggestion sent."
msgstr "Solicitud de amistad enviada."
-#: src/Module/FriendSuggest.php:137
+#: src/Module/FriendSuggest.php:123
msgid "Suggest Friends"
msgstr "Sugerencias de amistad"
-#: src/Module/FriendSuggest.php:140
+#: src/Module/FriendSuggest.php:126
#, php-format
msgid "Suggest a friend for %s"
msgstr "Recomienda un amigo a %s"
-#: src/Module/Friendica.php:81
+#: src/Module/Friendica.php:67
msgid "Installed addons/apps:"
msgstr "Añadidos/apps Instalados:"
-#: src/Module/Friendica.php:86
+#: src/Module/Friendica.php:72
msgid "No installed addons/apps"
msgstr "Añadidos/apps no instalados"
-#: src/Module/Friendica.php:91
+#: src/Module/Friendica.php:77
#, php-format
msgid "Read about the Terms of Service of this node."
msgstr "Leer acerca de Términos de Servicio del nodo."
-#: src/Module/Friendica.php:98
+#: src/Module/Friendica.php:84
msgid "On this server the following remote servers are blocked."
msgstr "En este servidor los siguientes servidores remotos están bloqueados."
-#: src/Module/Friendica.php:101
-#: src/Module/Moderation/Blocklist/Server/Index.php:87
-#: src/Module/Moderation/Blocklist/Server/Index.php:111
-#: src/Module/Settings/Channels.php:232
+#: src/Module/Friendica.php:87
+#: src/Module/Moderation/Blocklist/Server/Index.php:73
+#: src/Module/Moderation/Blocklist/Server/Index.php:97
+#: src/Module/Settings/Channels.php:218
msgid "Reason for the block"
msgstr "Razón para el bloqueo"
-#: src/Module/Friendica.php:103
+#: src/Module/Friendica.php:89
msgid "Download this list in CSV format"
msgstr ""
-#: src/Module/Friendica.php:117
+#: src/Module/Friendica.php:103
#, php-format
msgid ""
"This is Friendica, version %s that is running at the web location %s. The "
"database version is %s, the post update version is %s."
msgstr "Este es Friendica, version %s ejecutándose en ubicación %s. Versión de la BD es %s, la versión después de actualización es %s."
-#: src/Module/Friendica.php:122
+#: src/Module/Friendica.php:108
msgid ""
"Please visit Friendi.ca to learn more "
"about the Friendica project."
msgstr "Visite Friendi.ca para aprender más sobre el proyecto Friendica, por favor."
-#: src/Module/Friendica.php:123
+#: src/Module/Friendica.php:109
msgid "Bug reports and issues: please visit"
msgstr "Reporte de fallos y problemas: por favor visita"
-#: src/Module/Friendica.php:123
+#: src/Module/Friendica.php:109
msgid "the bugtracker at github"
msgstr "aviso de fallas (bugs) en github"
-#: src/Module/Friendica.php:124
+#: src/Module/Friendica.php:110
msgid "Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca"
msgstr "Sugerencias, agradecimientos, etc. - envie correo \"info\" at \"friendi - dot - ca"
-#: src/Module/HCard.php:45
+#: src/Module/HCard.php:31
msgid "No profile"
msgstr "Ningún perfil"
-#: src/Module/HTTPException/MethodNotAllowed.php:31
+#: src/Module/HTTPException/MethodNotAllowed.php:17
msgid "Method Not Allowed."
msgstr "Método no Permitido"
-#: src/Module/Help.php:60
+#: src/Module/Help.php:46
msgid "Help:"
msgstr "Ayuda:"
-#: src/Module/Home.php:63
+#: src/Module/Home.php:52
#, php-format
msgid "Welcome to %s"
msgstr "Bienvenido a %s"
-#: src/Module/Install.php:189
+#: src/Module/Install.php:175
msgid "Friendica Communications Server - Setup"
msgstr "Servidor de Comunicaciones Friendica - Instalación"
-#: src/Module/Install.php:200
+#: src/Module/Install.php:186
msgid "System check"
msgstr "Verificación del sistema"
-#: src/Module/Install.php:202 src/Module/Install.php:247
-#: src/Module/Install.php:326
+#: src/Module/Install.php:188 src/Module/Install.php:233
+#: src/Module/Install.php:312
msgid "Requirement not satisfied"
msgstr "Requerimiento no satisfactorio"
-#: src/Module/Install.php:203
+#: src/Module/Install.php:189
msgid "Optional requirement not satisfied"
msgstr "Requerimiento Opcional no satisfactorio"
-#: src/Module/Install.php:204
+#: src/Module/Install.php:190
msgid "OK"
msgstr "OK"
-#: src/Module/Install.php:208
+#: src/Module/Install.php:194
msgid "Next"
msgstr "Siguiente"
-#: src/Module/Install.php:209
+#: src/Module/Install.php:195
msgid "Check again"
msgstr "Comprobar Nuevamente"
-#: src/Module/Install.php:222
+#: src/Module/Install.php:208
msgid "Base settings"
msgstr "Configuración Base"
-#: src/Module/Install.php:224
+#: src/Module/Install.php:210
msgid "Base path to installation"
msgstr "Ruta base para la instalación"
-#: src/Module/Install.php:226
+#: src/Module/Install.php:212
msgid ""
"If the system cannot detect the correct path to your installation, enter the"
" correct path here. This setting should only be set if you are using a "
"restricted system and symbolic links to your webroot."
msgstr "Si el sistema no puede detectar el acceso correcto a la instalación, ingrese la dirección correcta aquí. Esta configuración solo debería utilizarse si si usa un sistema restringido y enlaces simbolicos a su webroot."
-#: src/Module/Install.php:229
+#: src/Module/Install.php:215
msgid "The Friendica system URL"
msgstr ""
-#: src/Module/Install.php:231
+#: src/Module/Install.php:217
msgid ""
"Overwrite this field in case the system URL determination isn't right, "
"otherwise leave it as is."
msgstr ""
-#: src/Module/Install.php:242
+#: src/Module/Install.php:228
msgid "Database connection"
msgstr "Conexión con Base de Datos"
-#: src/Module/Install.php:243
+#: src/Module/Install.php:229
msgid ""
"In order to install Friendica we need to know how to connect to your "
"database."
msgstr "Con el fin de poder instalar Friendica, necesitamos saber cómo conectar con tu base de datos."
-#: src/Module/Install.php:244
+#: src/Module/Install.php:230
msgid ""
"Please contact your hosting provider or site administrator if you have "
"questions about these settings."
msgstr "Por favor, contacta con tu proveedor de servicios o con el administrador de la página si tienes alguna pregunta sobre estas configuraciones."
-#: src/Module/Install.php:245
+#: src/Module/Install.php:231
msgid ""
"The database you specify below should already exist. If it does not, please "
"create it before continuing."
msgstr "La base de datos que especifiques a continuación debería existir ya. Si no es el caso, debes crearla antes de continuar."
-#: src/Module/Install.php:252
+#: src/Module/Install.php:238
msgid "Database Server Name"
msgstr "Nombre del servidor de la base de datos"
-#: src/Module/Install.php:257
+#: src/Module/Install.php:243
msgid "Database Login Name"
msgstr "Usuario de la base de datos"
-#: src/Module/Install.php:263
+#: src/Module/Install.php:249
msgid "Database Login Password"
msgstr "Contraseña de la base de datos"
-#: src/Module/Install.php:265
+#: src/Module/Install.php:251
msgid "For security reasons the password must not be empty"
msgstr "Por razones de seguridad la contraseña no debe estar vacía"
-#: src/Module/Install.php:268
+#: src/Module/Install.php:254
msgid "Database Name"
msgstr "Nombre de la base de datos"
-#: src/Module/Install.php:272 src/Module/Install.php:300
+#: src/Module/Install.php:258 src/Module/Install.php:286
msgid "Please select a default timezone for your website"
msgstr "Por favor, selecciona la zona horaria predeterminada para tu web"
-#: src/Module/Install.php:287
+#: src/Module/Install.php:273
msgid "Site settings"
msgstr "Configuración de la página web"
-#: src/Module/Install.php:295
+#: src/Module/Install.php:281
msgid "Site administrator email address"
msgstr "Dirección de correo del administrador de la web"
-#: src/Module/Install.php:297
+#: src/Module/Install.php:283
msgid ""
"Your account email address must match this in order to use the web admin "
"panel."
msgstr "La dirección de correo de tu cuenta debe coincidir con esta para poder usar el panel de administración de la web."
-#: src/Module/Install.php:304
+#: src/Module/Install.php:290
msgid "System Language:"
msgstr "Sistema de idioma:"
-#: src/Module/Install.php:306
+#: src/Module/Install.php:292
msgid ""
"Set the default language for your Friendica installation interface and to "
"send emails."
msgstr "Seleccione el idioma por defecto para su interfaz de instalación de Friendica y para enviar correos."
-#: src/Module/Install.php:318
+#: src/Module/Install.php:304
msgid "Your Friendica site database has been installed."
msgstr "La base de datos de su sitio web de Friendica ha sido instalada."
-#: src/Module/Install.php:328
+#: src/Module/Install.php:314
msgid "Installation finished"
msgstr "Instalación completa"
-#: src/Module/Install.php:348
+#: src/Module/Install.php:334
msgid "The server domain pattern syntax is case-insensitive shell wildcard, comprising the following special characters:
\n" "This file can be downloaded from the /friendica
path of any "
"Friendica server.
debug.store_source
config key is set in "
"config/local.config.php
for future items to have sources."
msgstr ""
-#: src/Module/Moderation/Item/Source.php:92
+#: src/Module/Moderation/Item/Source.php:84
msgid "Item Guid"
msgstr "Clave Guid"
-#: src/Module/Moderation/Report/Create.php:95
+#: src/Module/Moderation/Report/Create.php:81
msgid "Contact not found or their server is already blocked on this node."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:136
+#: src/Module/Moderation/Report/Create.php:122
msgid "Please login to access this page."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:165
-#: src/Module/Moderation/Report/Create.php:180
-#: src/Module/Moderation/Report/Create.php:208
-#: src/Module/Moderation/Report/Create.php:260
-#: src/Module/Moderation/Report/Create.php:279
+#: src/Module/Moderation/Report/Create.php:151
+#: src/Module/Moderation/Report/Create.php:166
+#: src/Module/Moderation/Report/Create.php:194
+#: src/Module/Moderation/Report/Create.php:246
+#: src/Module/Moderation/Report/Create.php:265
msgid "Create Moderation Report"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:166
+#: src/Module/Moderation/Report/Create.php:152
msgid "Pick Contact"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:167
+#: src/Module/Moderation/Report/Create.php:153
msgid ""
"Please enter below the contact address or profile URL you would like to "
"create a moderation report about."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:171
+#: src/Module/Moderation/Report/Create.php:157
msgid "Contact address/URL"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:181
+#: src/Module/Moderation/Report/Create.php:167
msgid "Pick Category"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:182
+#: src/Module/Moderation/Report/Create.php:168
msgid "Please pick below the category of your report."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:186
-#: src/Module/Moderation/Report/Create.php:311
+#: src/Module/Moderation/Report/Create.php:172
+#: src/Module/Moderation/Report/Create.php:297
msgid "Spam"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:186
+#: src/Module/Moderation/Report/Create.php:172
msgid ""
"This contact is publishing many repeated/overly long posts/replies or "
"advertising their product/websites in otherwise irrelevant conversations."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:187
-#: src/Module/Moderation/Report/Create.php:312
+#: src/Module/Moderation/Report/Create.php:173
+#: src/Module/Moderation/Report/Create.php:298
msgid "Illegal Content"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:187
+#: src/Module/Moderation/Report/Create.php:173
msgid ""
"This contact is publishing content that is considered illegal in this node's"
" hosting juridiction."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:188
-#: src/Module/Moderation/Report/Create.php:313
+#: src/Module/Moderation/Report/Create.php:174
+#: src/Module/Moderation/Report/Create.php:299
msgid "Community Safety"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:188
+#: src/Module/Moderation/Report/Create.php:174
msgid ""
"This contact aggravated you or other people, by being provocative or "
"insensitive, intentionally or not. This includes disclosing people's private"
@@ -8543,12 +8551,12 @@ msgid ""
"replies."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:189
-#: src/Module/Moderation/Report/Create.php:314
+#: src/Module/Moderation/Report/Create.php:175
+#: src/Module/Moderation/Report/Create.php:300
msgid "Unwanted Content/Behavior"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:189
+#: src/Module/Moderation/Report/Create.php:175
msgid ""
"This contact has repeatedly published content irrelevant to the node's theme"
" or is openly criticizing the node's administration/moderation without "
@@ -8556,89 +8564,89 @@ msgid ""
"nitpicking on a sensitive topic."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:190
-#: src/Module/Moderation/Report/Create.php:315
+#: src/Module/Moderation/Report/Create.php:176
+#: src/Module/Moderation/Report/Create.php:301
msgid "Rules Violation"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:190
+#: src/Module/Moderation/Report/Create.php:176
msgid ""
"This contact violated one or more rules of this node. You will be able to "
"pick which one(s) in the next step."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:191
+#: src/Module/Moderation/Report/Create.php:177
msgid ""
"Please elaborate below why you submitted this report. The more details you "
"provide, the better your report can be handled."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:193
+#: src/Module/Moderation/Report/Create.php:179
msgid "Additional Information"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:193
+#: src/Module/Moderation/Report/Create.php:179
msgid ""
"Please provide any additional information relevant to this particular "
"report. You will be able to attach posts by this contact in the next step, "
"but any context is welcome."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:209
+#: src/Module/Moderation/Report/Create.php:195
msgid "Pick Rules"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:210
+#: src/Module/Moderation/Report/Create.php:196
msgid "Please pick below the node rules you believe this contact violated."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:261
+#: src/Module/Moderation/Report/Create.php:247
msgid "Pick Posts"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:262
+#: src/Module/Moderation/Report/Create.php:248
msgid "Please optionally pick posts to attach to your report."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:281
+#: src/Module/Moderation/Report/Create.php:267
msgid "Submit Report"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:282
+#: src/Module/Moderation/Report/Create.php:268
msgid "Further Action"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:283
+#: src/Module/Moderation/Report/Create.php:269
msgid ""
"You can also perform one of the following action on the contact you "
"reported:"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:291
+#: src/Module/Moderation/Report/Create.php:277
msgid "Nothing"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:292
+#: src/Module/Moderation/Report/Create.php:278
msgid "Collapse contact"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:292
+#: src/Module/Moderation/Report/Create.php:278
msgid ""
"Their posts and replies will keep appearing in your Network page but their "
"content will be collapsed by default."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:293
+#: src/Module/Moderation/Report/Create.php:279
msgid ""
"Their posts won't appear in your Network page anymore, but their replies can"
" appear in forum threads. They still can follow you."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:294
+#: src/Module/Moderation/Report/Create.php:280
msgid "Block contact"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:294
+#: src/Module/Moderation/Report/Create.php:280
msgid ""
"Their posts won't appear in your Network page anymore, but their replies can"
" appear in forum threads, with their content collapsed by default. They "
@@ -8646,51 +8654,51 @@ msgid ""
"means."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:297
+#: src/Module/Moderation/Report/Create.php:283
msgid "Forward report"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:297
+#: src/Module/Moderation/Report/Create.php:283
msgid "Would you ike to forward this report to the remote server?"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:330
+#: src/Module/Moderation/Report/Create.php:316
msgid "1. Pick a contact"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:331
+#: src/Module/Moderation/Report/Create.php:317
msgid "2. Pick a category"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:332
+#: src/Module/Moderation/Report/Create.php:318
msgid "2a. Pick rules"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:333
+#: src/Module/Moderation/Report/Create.php:319
msgid "2b. Add comment"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:334
+#: src/Module/Moderation/Report/Create.php:320
msgid "3. Pick posts"
msgstr ""
-#: src/Module/Moderation/Reports.php:105
+#: src/Module/Moderation/Reports.php:97
msgid "List of reports"
msgstr ""
-#: src/Module/Moderation/Reports.php:106
+#: src/Module/Moderation/Reports.php:98
msgid "This page display reports created by our or remote users."
msgstr ""
-#: src/Module/Moderation/Reports.php:107
+#: src/Module/Moderation/Reports.php:99
msgid "No report exists at this node."
msgstr ""
-#: src/Module/Moderation/Reports.php:110
+#: src/Module/Moderation/Reports.php:102
msgid "Category"
msgstr ""
-#: src/Module/Moderation/Reports.php:114
+#: src/Module/Moderation/Reports.php:106
#, php-format
msgid "%s total report"
msgid_plural "%s total reports"
@@ -8698,24 +8706,24 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: src/Module/Moderation/Reports.php:117
+#: src/Module/Moderation/Reports.php:109
msgid "URL of the reported contact."
msgstr ""
-#: src/Module/Moderation/Summary.php:57 src/Module/Settings/Account.php:431
+#: src/Module/Moderation/Summary.php:43 src/Module/Settings/Account.php:422
msgid "Channel Relay"
msgstr ""
-#: src/Module/Moderation/Summary.php:77
+#: src/Module/Moderation/Summary.php:63
msgid "Registered users"
msgstr "Usuarios registrados"
-#: src/Module/Moderation/Summary.php:79
+#: src/Module/Moderation/Summary.php:65
msgid "Pending registrations"
msgstr "Pendientes de registro"
-#: src/Module/Moderation/Users/Active.php:43
-#: src/Module/Moderation/Users/Index.php:43
+#: src/Module/Moderation/Users/Active.php:29
+#: src/Module/Moderation/Users/Index.php:29
#, php-format
msgid "%s user blocked"
msgid_plural "%s users blocked"
@@ -8723,18 +8731,18 @@ msgstr[0] "%s usuario bloqueado"
msgstr[1] "%s usuarios bloqueados"
msgstr[2] "%s usuarios bloqueados"
-#: src/Module/Moderation/Users/Active.php:51
-#: src/Module/Moderation/Users/Active.php:85
-#: src/Module/Moderation/Users/Blocked.php:51
-#: src/Module/Moderation/Users/Blocked.php:85
-#: src/Module/Moderation/Users/Index.php:58
-#: src/Module/Moderation/Users/Index.php:92
+#: src/Module/Moderation/Users/Active.php:37
+#: src/Module/Moderation/Users/Active.php:71
+#: src/Module/Moderation/Users/Blocked.php:37
+#: src/Module/Moderation/Users/Blocked.php:71
+#: src/Module/Moderation/Users/Index.php:44
+#: src/Module/Moderation/Users/Index.php:78
msgid "You can't remove yourself"
msgstr "No puedes borrar tu usuario"
-#: src/Module/Moderation/Users/Active.php:55
-#: src/Module/Moderation/Users/Blocked.php:55
-#: src/Module/Moderation/Users/Index.php:62
+#: src/Module/Moderation/Users/Active.php:41
+#: src/Module/Moderation/Users/Blocked.php:41
+#: src/Module/Moderation/Users/Index.php:48
#, php-format
msgid "%s user deleted"
msgid_plural "%s users deleted"
@@ -8742,88 +8750,88 @@ msgstr[0] "%s usuario eliminado"
msgstr[1] "%s usuarios eliminados"
msgstr[2] "%s usuarios eliminados"
-#: src/Module/Moderation/Users/Active.php:83
-#: src/Module/Moderation/Users/Blocked.php:83
-#: src/Module/Moderation/Users/Index.php:90
+#: src/Module/Moderation/Users/Active.php:69
+#: src/Module/Moderation/Users/Blocked.php:69
+#: src/Module/Moderation/Users/Index.php:76
#, php-format
msgid "User \"%s\" deleted"
msgstr "Usuario \"%s\" borrado"
-#: src/Module/Moderation/Users/Active.php:93
-#: src/Module/Moderation/Users/Index.php:100
+#: src/Module/Moderation/Users/Active.php:79
+#: src/Module/Moderation/Users/Index.php:86
#, php-format
msgid "User \"%s\" blocked"
msgstr "Usuario \"%s\" bloqueado"
-#: src/Module/Moderation/Users/Active.php:126
-#: src/Module/Moderation/Users/Blocked.php:126
-#: src/Module/Moderation/Users/Deleted.php:83
-#: src/Module/Moderation/Users/Index.php:140
-#: src/Module/Moderation/Users/Index.php:160
+#: src/Module/Moderation/Users/Active.php:112
+#: src/Module/Moderation/Users/Blocked.php:112
+#: src/Module/Moderation/Users/Deleted.php:69
+#: src/Module/Moderation/Users/Index.php:126
+#: src/Module/Moderation/Users/Index.php:146
msgid "Register date"
msgstr "Fecha de registro"
-#: src/Module/Moderation/Users/Active.php:126
-#: src/Module/Moderation/Users/Blocked.php:126
-#: src/Module/Moderation/Users/Deleted.php:83
-#: src/Module/Moderation/Users/Index.php:140
-#: src/Module/Moderation/Users/Index.php:160
+#: src/Module/Moderation/Users/Active.php:112
+#: src/Module/Moderation/Users/Blocked.php:112
+#: src/Module/Moderation/Users/Deleted.php:69
+#: src/Module/Moderation/Users/Index.php:126
+#: src/Module/Moderation/Users/Index.php:146
msgid "Last login"
msgstr "Último acceso"
-#: src/Module/Moderation/Users/Active.php:126
-#: src/Module/Moderation/Users/Blocked.php:126
-#: src/Module/Moderation/Users/Deleted.php:83
-#: src/Module/Moderation/Users/Index.php:140
-#: src/Module/Moderation/Users/Index.php:160
+#: src/Module/Moderation/Users/Active.php:112
+#: src/Module/Moderation/Users/Blocked.php:112
+#: src/Module/Moderation/Users/Deleted.php:69
+#: src/Module/Moderation/Users/Index.php:126
+#: src/Module/Moderation/Users/Index.php:146
msgid "Last public item"
msgstr "Último artículo público"
-#: src/Module/Moderation/Users/Active.php:134
+#: src/Module/Moderation/Users/Active.php:120
msgid "Active Accounts"
msgstr "Cuentas Activas"
-#: src/Module/Moderation/Users/Active.php:138
-#: src/Module/Moderation/Users/Blocked.php:137
-#: src/Module/Moderation/Users/Index.php:153
+#: src/Module/Moderation/Users/Active.php:124
+#: src/Module/Moderation/Users/Blocked.php:123
+#: src/Module/Moderation/Users/Index.php:139
msgid "User blocked"
msgstr "Usuario bloqueado"
-#: src/Module/Moderation/Users/Active.php:139
-#: src/Module/Moderation/Users/Blocked.php:139
-#: src/Module/Moderation/Users/Index.php:155
+#: src/Module/Moderation/Users/Active.php:125
+#: src/Module/Moderation/Users/Blocked.php:125
+#: src/Module/Moderation/Users/Index.php:141
msgid "Site admin"
msgstr "Administrador del Sitio"
-#: src/Module/Moderation/Users/Active.php:140
-#: src/Module/Moderation/Users/Blocked.php:140
-#: src/Module/Moderation/Users/Index.php:156
+#: src/Module/Moderation/Users/Active.php:126
+#: src/Module/Moderation/Users/Blocked.php:126
+#: src/Module/Moderation/Users/Index.php:142
msgid "Account expired"
msgstr "Cuenta caducada"
-#: src/Module/Moderation/Users/Active.php:141
-#: src/Module/Moderation/Users/Index.php:159
+#: src/Module/Moderation/Users/Active.php:127
+#: src/Module/Moderation/Users/Index.php:145
msgid "Create a new user"
msgstr "Crear nuevo usuario"
-#: src/Module/Moderation/Users/Active.php:147
-#: src/Module/Moderation/Users/Blocked.php:146
-#: src/Module/Moderation/Users/Index.php:165
+#: src/Module/Moderation/Users/Active.php:133
+#: src/Module/Moderation/Users/Blocked.php:132
+#: src/Module/Moderation/Users/Index.php:151
msgid ""
"Selected users will be deleted!\\n\\nEverything these users had posted on "
"this site will be permanently deleted!\\n\\nAre you sure?"
msgstr "¡Los usuarios seleccionados serán eliminados!\\n\\n¡Todo lo que hayan publicado en este sitio se borrará para siempre!\\n\\n¿Estás seguro?"
-#: src/Module/Moderation/Users/Active.php:148
-#: src/Module/Moderation/Users/Blocked.php:147
-#: src/Module/Moderation/Users/Index.php:166
+#: src/Module/Moderation/Users/Active.php:134
+#: src/Module/Moderation/Users/Blocked.php:133
+#: src/Module/Moderation/Users/Index.php:152
msgid ""
"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
"site will be permanently deleted!\\n\\nAre you sure?"
msgstr "¡El usuario {0} será eliminado!\\n\\n¡Todo lo que haya publicado en este sitio se borrará para siempre!\\n\\n¿Estás seguro?"
-#: src/Module/Moderation/Users/Blocked.php:43
-#: src/Module/Moderation/Users/Index.php:50
+#: src/Module/Moderation/Users/Blocked.php:29
+#: src/Module/Moderation/Users/Index.php:36
#, php-format
msgid "%s user unblocked"
msgid_plural "%s users unblocked"
@@ -8831,54 +8839,54 @@ msgstr[0] "%s usuario desbloqueado"
msgstr[1] "%s usuarios desbloqueados"
msgstr[2] "%s usuarios desbloqueados"
-#: src/Module/Moderation/Users/Blocked.php:92
-#: src/Module/Moderation/Users/Index.php:106
+#: src/Module/Moderation/Users/Blocked.php:78
+#: src/Module/Moderation/Users/Index.php:92
#, php-format
msgid "User \"%s\" unblocked"
msgstr "Usuario \"%s\" desbloqueado"
-#: src/Module/Moderation/Users/Blocked.php:134
+#: src/Module/Moderation/Users/Blocked.php:120
msgid "Blocked Users"
msgstr "Usuarios bloqueados"
-#: src/Module/Moderation/Users/Create.php:62
+#: src/Module/Moderation/Users/Create.php:48
msgid "New User"
msgstr "Nuevo usuario"
-#: src/Module/Moderation/Users/Create.php:63
+#: src/Module/Moderation/Users/Create.php:49
msgid "Add User"
msgstr "Agregar usuario"
-#: src/Module/Moderation/Users/Create.php:70
+#: src/Module/Moderation/Users/Create.php:56
msgid "Name of the new user."
msgstr "Nombre del nuevo usuario"
-#: src/Module/Moderation/Users/Create.php:71
+#: src/Module/Moderation/Users/Create.php:57
msgid "Nickname"
msgstr "Apodo"
-#: src/Module/Moderation/Users/Create.php:71
+#: src/Module/Moderation/Users/Create.php:57
msgid "Nickname of the new user."
msgstr "Apodo del nuevo perfil."
-#: src/Module/Moderation/Users/Create.php:72
+#: src/Module/Moderation/Users/Create.php:58
msgid "Email address of the new user."
msgstr "Dirección de correo del nuevo perfil."
-#: src/Module/Moderation/Users/Deleted.php:81
+#: src/Module/Moderation/Users/Deleted.php:67
msgid "Users awaiting permanent deletion"
msgstr "Usuarios en espera de borrado permanente"
-#: src/Module/Moderation/Users/Deleted.php:83
-#: src/Module/Moderation/Users/Index.php:160
+#: src/Module/Moderation/Users/Deleted.php:69
+#: src/Module/Moderation/Users/Index.php:146
msgid "Permanent deletion"
msgstr "Borrado Permanente"
-#: src/Module/Moderation/Users/Index.php:150
+#: src/Module/Moderation/Users/Index.php:136
msgid "User waiting for permanent deletion"
msgstr "Usuario esperando anulación permanente."
-#: src/Module/Moderation/Users/Pending.php:44
+#: src/Module/Moderation/Users/Pending.php:30
#, php-format
msgid "%s user approved"
msgid_plural "%s users approved"
@@ -8886,7 +8894,7 @@ msgstr[0] "%s usuario aprobado"
msgstr[1] "%s usuarios aprobados"
msgstr[2] "%s usuarios aprobados"
-#: src/Module/Moderation/Users/Pending.php:51
+#: src/Module/Moderation/Users/Pending.php:37
#, php-format
msgid "%s registration revoked"
msgid_plural "%s registrations revoked"
@@ -8894,420 +8902,406 @@ msgstr[0] "%s registro revocado"
msgstr[1] "%s registros revocados"
msgstr[2] "%s registros revocados"
-#: src/Module/Moderation/Users/Pending.php:76
+#: src/Module/Moderation/Users/Pending.php:62
msgid "Account approved."
msgstr "Cuenta aprobada."
-#: src/Module/Moderation/Users/Pending.php:82
+#: src/Module/Moderation/Users/Pending.php:68
msgid "Registration revoked"
msgstr "Registro revocado"
-#: src/Module/Moderation/Users/Pending.php:97
+#: src/Module/Moderation/Users/Pending.php:83
msgid "User registrations awaiting review"
msgstr "Registro de usuarios en espera de revisión"
-#: src/Module/Moderation/Users/Pending.php:99
+#: src/Module/Moderation/Users/Pending.php:85
msgid "Request date"
msgstr "Solicitud de fecha"
-#: src/Module/Moderation/Users/Pending.php:100
+#: src/Module/Moderation/Users/Pending.php:86
msgid "No registrations."
msgstr "Sin registros."
-#: src/Module/Moderation/Users/Pending.php:101
+#: src/Module/Moderation/Users/Pending.php:87
msgid "Note from the user"
msgstr "Nota para el usuario"
-#: src/Module/Moderation/Users/Pending.php:103
+#: src/Module/Moderation/Users/Pending.php:89
msgid "Deny"
msgstr "Denegado"
-#: src/Module/Notifications/Introductions.php:99
+#: src/Module/Notifications/Introductions.php:91
msgid "Show Ignored Requests"
msgstr "Mostrar peticiones ignoradas"
-#: src/Module/Notifications/Introductions.php:99
+#: src/Module/Notifications/Introductions.php:91
msgid "Hide Ignored Requests"
msgstr "Ocultar peticiones ignoradas"
-#: src/Module/Notifications/Introductions.php:115
-#: src/Module/Notifications/Introductions.php:178
+#: src/Module/Notifications/Introductions.php:107
+#: src/Module/Notifications/Introductions.php:170
msgid "Notification type:"
msgstr "Tipo de Notificación:"
-#: src/Module/Notifications/Introductions.php:118
+#: src/Module/Notifications/Introductions.php:110
msgid "Suggested by:"
msgstr "Sugerido por:"
-#: src/Module/Notifications/Introductions.php:143
+#: src/Module/Notifications/Introductions.php:135
msgid "Claims to be known to you: "
msgstr "Dice conocerte: "
-#: src/Module/Notifications/Introductions.php:152
+#: src/Module/Notifications/Introductions.php:144
msgid "Shall your connection be bidirectional or not?"
msgstr "¿Debe la conexión ser bidireccional o no?"
-#: src/Module/Notifications/Introductions.php:153
+#: src/Module/Notifications/Introductions.php:145
#, php-format
msgid ""
"Accepting %s as a friend allows %s to subscribe to your posts, and you will "
"also receive updates from them in your news feed."
msgstr "Aceptar a %s como amigo le permite a %s suscribirse a sus publicaciones, y usted también recibirá actualizaciones de ellos en sus noticias."
-#: src/Module/Notifications/Introductions.php:154
+#: src/Module/Notifications/Introductions.php:146
#, php-format
msgid ""
"Accepting %s as a subscriber allows them to subscribe to your posts, but you"
" will not receive updates from them in your news feed."
msgstr "Aceptar a %s como suscriptor les permite suscribirse a sus publicaciones, pero usted no recibirá actualizaciones de ellos en sus noticias."
-#: src/Module/Notifications/Introductions.php:156
+#: src/Module/Notifications/Introductions.php:148
msgid "Friend"
msgstr "Amigo"
-#: src/Module/Notifications/Introductions.php:157
+#: src/Module/Notifications/Introductions.php:149
msgid "Subscriber"
msgstr "Suscriptor"
-#: src/Module/Notifications/Introductions.php:216
+#: src/Module/Notifications/Introductions.php:208
msgid "No introductions."
msgstr "Sin presentaciones."
-#: src/Module/Notifications/Introductions.php:217
-#: src/Module/Notifications/Notifications.php:135
+#: src/Module/Notifications/Introductions.php:209
+#: src/Module/Notifications/Notifications.php:127
#, php-format
msgid "No more %s notifications."
msgstr "No más notificaciones de %s."
-#: src/Module/Notifications/Notification.php:135
+#: src/Module/Notifications/Notification.php:121
msgid "You must be logged in to show this page."
msgstr "Debes ingresar para ver esa pagina."
-#: src/Module/Notifications/Notifications.php:66
+#: src/Module/Notifications/Notifications.php:52
msgid "Network Notifications"
msgstr "Notificaciones de Red"
-#: src/Module/Notifications/Notifications.php:72
+#: src/Module/Notifications/Notifications.php:58
msgid "System Notifications"
msgstr "Notificaciones del sistema"
-#: src/Module/Notifications/Notifications.php:78
+#: src/Module/Notifications/Notifications.php:64
msgid "Personal Notifications"
msgstr "Notificaciones personales"
-#: src/Module/Notifications/Notifications.php:84
+#: src/Module/Notifications/Notifications.php:70
msgid "Home Notifications"
msgstr "Notificaciones de Inicio"
-#: src/Module/Notifications/Notifications.php:140
+#: src/Module/Notifications/Notifications.php:132
msgid "Show unread"
msgstr "Mostrar no leído"
-#: src/Module/Notifications/Ping.php:220
+#: src/Module/Notifications/Ping.php:206
msgid "{0} requested registration"
msgstr "{0} solicita registro"
-#: src/Module/Notifications/Ping.php:229
+#: src/Module/Notifications/Ping.php:215
#, php-format
msgid "{0} and %d others requested registration"
msgstr "{0} y %d otros solicitaron registro"
-#: src/Module/OAuth/Acknowledge.php:51
+#: src/Module/OAuth/Acknowledge.php:37
msgid "Authorize application connection"
msgstr "Autorizar la conexión de la aplicación"
-#: src/Module/OAuth/Acknowledge.php:53
+#: src/Module/OAuth/Acknowledge.php:39
msgid ""
"Do you want to authorize this application to access your posts and contacts,"
" and/or create new posts for you?"
msgstr "¿Quieres autorizar a esta aplicación el acceso a tus mensajes y contactos, y/o crear nuevas publicaciones para ti?"
-#: src/Module/OAuth/Authorize.php:54
+#: src/Module/OAuth/Authorize.php:40
msgid "Unsupported or missing response type"
msgstr ""
-#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:75
+#: src/Module/OAuth/Authorize.php:45 src/Module/OAuth/Token.php:61
msgid "Incomplete request data"
msgstr ""
-#: src/Module/OAuth/Authorize.php:106
+#: src/Module/OAuth/Authorize.php:92
#, php-format
msgid ""
"Please copy the following authentication code into your application and "
"close this window: %s"
msgstr ""
-#: src/Module/OAuth/Token.php:80
+#: src/Module/OAuth/Token.php:66
msgid "Invalid data or unknown client"
msgstr ""
-#: src/Module/OAuth/Token.php:105
+#: src/Module/OAuth/Token.php:91
msgid "Unsupported or missing grant type"
msgstr ""
-#: src/Module/OStatus/Repair.php:83
-msgid "Resubscribing to OStatus contacts"
-msgstr "Resubscribir a contactos de OStatus"
-
-#: src/Module/OStatus/Repair.php:84 src/Module/OStatus/Subscribe.php:160
-msgid "Keep this window open until done."
-msgstr "Manténer la ventana abierta hasta que finalice."
-
-#: src/Module/OStatus/Repair.php:85
-msgid "✔ Done"
-msgstr ""
-
-#: src/Module/OStatus/Repair.php:86
-msgid "No OStatus contacts to resubscribe to."
-msgstr ""
-
-#: src/Module/OStatus/Subscribe.php:72
+#: src/Module/OStatus/Subscribe.php:58
msgid "Subscribing to contacts"
msgstr ""
-#: src/Module/OStatus/Subscribe.php:81
+#: src/Module/OStatus/Subscribe.php:67
msgid "No contact provided."
msgstr "No se suministra contacto."
-#: src/Module/OStatus/Subscribe.php:87
+#: src/Module/OStatus/Subscribe.php:73
msgid "Couldn't fetch information for contact."
msgstr "No se encuentra la información del contacto."
-#: src/Module/OStatus/Subscribe.php:98
+#: src/Module/OStatus/Subscribe.php:84
msgid "Couldn't fetch friends for contact."
msgstr "No se encuentran datos de amigos de contacto."
-#: src/Module/OStatus/Subscribe.php:104 src/Module/OStatus/Subscribe.php:115
+#: src/Module/OStatus/Subscribe.php:90 src/Module/OStatus/Subscribe.php:101
msgid "Couldn't fetch following contacts."
msgstr ""
-#: src/Module/OStatus/Subscribe.php:110
+#: src/Module/OStatus/Subscribe.php:96
msgid "Couldn't fetch remote profile."
msgstr ""
-#: src/Module/OStatus/Subscribe.php:120
+#: src/Module/OStatus/Subscribe.php:106
msgid "Unsupported network"
msgstr ""
-#: src/Module/OStatus/Subscribe.php:136
+#: src/Module/OStatus/Subscribe.php:122
msgid "Done"
msgstr "Hecho"
-#: src/Module/OStatus/Subscribe.php:150
+#: src/Module/OStatus/Subscribe.php:136
msgid "success"
msgstr "éxito!"
-#: src/Module/OStatus/Subscribe.php:152
+#: src/Module/OStatus/Subscribe.php:138
msgid "failed"
msgstr "fallido"
-#: src/Module/OStatus/Subscribe.php:155
+#: src/Module/OStatus/Subscribe.php:141
msgid "ignored"
msgstr "ignorado"
-#: src/Module/Photo.php:124
+#: src/Module/OStatus/Subscribe.php:146
+msgid "Keep this window open until done."
+msgstr "Manténer la ventana abierta hasta que finalice."
+
+#: src/Module/Photo.php:108
msgid "The Photo is not available."
msgstr ""
-#: src/Module/Photo.php:149
+#: src/Module/Photo.php:133
#, php-format
msgid "The Photo with id %s is not available."
msgstr "La foto con id %s no esta disponible."
-#: src/Module/Photo.php:190
+#: src/Module/Photo.php:174
#, php-format
msgid "Invalid external resource with url %s."
msgstr ""
-#: src/Module/Photo.php:192
+#: src/Module/Photo.php:176
#, php-format
msgid "Invalid photo with id %s."
msgstr "Foto no válida de Id %s."
-#: src/Module/Post/Edit.php:82 src/Module/Post/Edit.php:96
+#: src/Module/Post/Edit.php:68 src/Module/Post/Edit.php:82
msgid "Post not found."
msgstr ""
-#: src/Module/Post/Edit.php:102
+#: src/Module/Post/Edit.php:88
msgid "Edit post"
msgstr "Editar publicación"
-#: src/Module/Post/Edit.php:136
+#: src/Module/Post/Edit.php:122
msgid "web link"
msgstr "enlace web"
-#: src/Module/Post/Edit.php:137
+#: src/Module/Post/Edit.php:123
msgid "Insert video link"
msgstr "Insertar enlace del vídeo"
-#: src/Module/Post/Edit.php:138
+#: src/Module/Post/Edit.php:124
msgid "video link"
msgstr "enlace de video"
-#: src/Module/Post/Edit.php:139
+#: src/Module/Post/Edit.php:125
msgid "Insert audio link"
msgstr "Insertar vínculo del audio"
-#: src/Module/Post/Edit.php:140
+#: src/Module/Post/Edit.php:126
msgid "audio link"
msgstr "enlace de audio"
-#: src/Module/Post/Tag/Remove.php:106
+#: src/Module/Post/Tag/Remove.php:92
msgid "Remove Item Tag"
msgstr "Eliminar etiqueta"
-#: src/Module/Post/Tag/Remove.php:107
+#: src/Module/Post/Tag/Remove.php:93
msgid "Select a tag to remove: "
msgstr "Selecciona etiqueta a eliminar: "
-#: src/Module/Post/Tag/Remove.php:108
-#: src/Module/Settings/TwoFactor/Trusted.php:147
+#: src/Module/Post/Tag/Remove.php:94
+#: src/Module/Settings/TwoFactor/Trusted.php:133
msgid "Remove"
msgstr "Eliminar"
-#: src/Module/Privacy/PermissionTooltip.php:71
+#: src/Module/Privacy/PermissionTooltip.php:57
#, php-format
msgid "Wrong type \"%s\", expected one of: %s"
msgstr "Tipo erróneo \"%s\", se esperaba uno: %s"
-#: src/Module/Privacy/PermissionTooltip.php:101
+#: src/Module/Privacy/PermissionTooltip.php:87
msgid "Model not found"
msgstr "Modelo no encontrado"
-#: src/Module/Privacy/PermissionTooltip.php:118
+#: src/Module/Privacy/PermissionTooltip.php:104
msgid "Unlisted"
msgstr ""
-#: src/Module/Privacy/PermissionTooltip.php:124
+#: src/Module/Privacy/PermissionTooltip.php:110
msgid "Remote privacy information not available."
msgstr "Privacidad de la información remota no disponible."
-#: src/Module/Privacy/PermissionTooltip.php:131
+#: src/Module/Privacy/PermissionTooltip.php:117
msgid "Visible to:"
msgstr "Visible para:"
-#: src/Module/Privacy/PermissionTooltip.php:133
+#: src/Module/Privacy/PermissionTooltip.php:119
msgid "CC:"
msgstr ""
-#: src/Module/Privacy/PermissionTooltip.php:134
+#: src/Module/Privacy/PermissionTooltip.php:120
msgid "BCC:"
msgstr ""
-#: src/Module/Privacy/PermissionTooltip.php:135
+#: src/Module/Privacy/PermissionTooltip.php:121
msgid "Audience:"
msgstr ""
-#: src/Module/Privacy/PermissionTooltip.php:136
+#: src/Module/Privacy/PermissionTooltip.php:122
msgid "Attributed To:"
msgstr ""
-#: src/Module/Privacy/PermissionTooltip.php:234
+#: src/Module/Privacy/PermissionTooltip.php:220
#, php-format
msgid "Collection (%s)"
msgstr ""
-#: src/Module/Privacy/PermissionTooltip.php:238
+#: src/Module/Privacy/PermissionTooltip.php:224
#, php-format
msgid "Followers (%s)"
msgstr ""
-#: src/Module/Privacy/PermissionTooltip.php:255
+#: src/Module/Privacy/PermissionTooltip.php:241
#, php-format
msgid "%d more"
msgstr ""
-#: src/Module/Profile/Contacts.php:159
+#: src/Module/Profile/Contacts.php:145
msgid "No contacts."
msgstr "Sin contactos."
-#: src/Module/Profile/Conversations.php:106
-#: src/Module/Profile/Conversations.php:109 src/Module/Profile/Profile.php:351
-#: src/Module/Profile/Profile.php:354 src/Protocol/Feed.php:1095
-#: src/Protocol/OStatus.php:1011
-#, php-format
-msgid "%s's timeline"
-msgstr "Estado de %s"
-
-#: src/Module/Profile/Conversations.php:107 src/Module/Profile/Profile.php:352
-#: src/Protocol/Feed.php:1099 src/Protocol/OStatus.php:1016
+#: src/Module/Profile/Conversations.php:92 src/Module/Profile/Profile.php:339
+#: src/Protocol/Feed.php:1097
#, php-format
msgid "%s's posts"
msgstr "Artículos de %s"
-#: src/Module/Profile/Conversations.php:108 src/Module/Profile/Profile.php:353
-#: src/Protocol/Feed.php:1102 src/Protocol/OStatus.php:1020
+#: src/Module/Profile/Conversations.php:93 src/Module/Profile/Profile.php:340
+#: src/Protocol/Feed.php:1100
#, php-format
msgid "%s's comments"
msgstr "Comentarios de %s"
-#: src/Module/Profile/Photos.php:164 src/Module/Profile/Photos.php:167
-#: src/Module/Profile/Photos.php:192
-#: src/Module/Settings/Profile/Photo/Index.php:58
+#: src/Module/Profile/Conversations.php:94 src/Module/Profile/Profile.php:341
+#: src/Protocol/Feed.php:1093
+#, php-format
+msgid "%s's timeline"
+msgstr "Estado de %s"
+
+#: src/Module/Profile/Photos.php:150 src/Module/Profile/Photos.php:153
+#: src/Module/Profile/Photos.php:178
+#: src/Module/Settings/Profile/Photo/Index.php:44
#, php-format
msgid "Image exceeds size limit of %s"
msgstr "Imagen excede el tamaño de %s"
-#: src/Module/Profile/Photos.php:170
+#: src/Module/Profile/Photos.php:156
msgid "Image upload didn't complete, please try again"
msgstr "Subida de imagen no completa, vuelve a intentar"
-#: src/Module/Profile/Photos.php:173
+#: src/Module/Profile/Photos.php:159
msgid "Image file is missing"
msgstr "Falta el archivo de imagen"
-#: src/Module/Profile/Photos.php:178
+#: src/Module/Profile/Photos.php:164
msgid ""
"Server can't accept new file upload at this time, please contact your "
"administrator"
msgstr "El servidor no puede aceptar la carga de archivos nuevos en este momento, comuníquese con el Administrador"
-#: src/Module/Profile/Photos.php:200
+#: src/Module/Profile/Photos.php:186
msgid "Image file is empty."
msgstr "El archivo de imagen está vacío."
-#: src/Module/Profile/Photos.php:352
+#: src/Module/Profile/Photos.php:338
msgid "View Album"
msgstr "Ver Álbum"
-#: src/Module/Profile/Profile.php:112 src/Module/Profile/Restricted.php:50
+#: src/Module/Profile/Profile.php:100 src/Module/Profile/Restricted.php:36
msgid "Profile not found."
msgstr "Perfil no encontrado."
-#: src/Module/Profile/Profile.php:158
+#: src/Module/Profile/Profile.php:146
#, php-format
msgid ""
"You're currently viewing your profile as %s Cancel"
msgstr "Actualmente estás viendo tu perfil como %s Cancelar"
-#: src/Module/Profile/Profile.php:167
+#: src/Module/Profile/Profile.php:155
msgid "Full Name:"
msgstr "Nombre Completo:"
-#: src/Module/Profile/Profile.php:172
+#: src/Module/Profile/Profile.php:160
msgid "Member since:"
msgstr "Miembro desde:"
-#: src/Module/Profile/Profile.php:178
+#: src/Module/Profile/Profile.php:166
msgid "j F, Y"
msgstr "j F, Y"
-#: src/Module/Profile/Profile.php:179
+#: src/Module/Profile/Profile.php:167
msgid "j F"
msgstr "j F"
-#: src/Module/Profile/Profile.php:187 src/Util/Temporal.php:168
+#: src/Module/Profile/Profile.php:175 src/Util/Temporal.php:154
msgid "Birthday:"
msgstr "Fecha de Nac:"
-#: src/Module/Profile/Profile.php:190
-#: src/Module/Settings/Profile/Index.php:291 src/Util/Temporal.php:170
+#: src/Module/Profile/Profile.php:178
+#: src/Module/Settings/Profile/Index.php:282 src/Util/Temporal.php:156
msgid "Age: "
msgstr "Edad: "
-#: src/Module/Profile/Profile.php:190
-#: src/Module/Settings/Profile/Index.php:291 src/Util/Temporal.php:170
+#: src/Module/Profile/Profile.php:178
+#: src/Module/Settings/Profile/Index.php:282 src/Util/Temporal.php:156
#, php-format
msgid "%d year old"
msgid_plural "%d years old"
@@ -9315,46 +9309,46 @@ msgstr[0] "%d Años"
msgstr[1] "%d Años"
msgstr[2] "%d Años"
-#: src/Module/Profile/Profile.php:195
-#: src/Module/Settings/Profile/Index.php:284
+#: src/Module/Profile/Profile.php:183
+#: src/Module/Settings/Profile/Index.php:275
msgid "Description:"
msgstr "Descripción:"
-#: src/Module/Profile/Profile.php:261
+#: src/Module/Profile/Profile.php:249
msgid "Groups:"
msgstr ""
-#: src/Module/Profile/Profile.php:273
+#: src/Module/Profile/Profile.php:261
msgid "View profile as:"
msgstr "Ver perfil como:"
-#: src/Module/Profile/Profile.php:290
+#: src/Module/Profile/Profile.php:278
msgid "View as"
msgstr "Ver como"
-#: src/Module/Profile/RemoteFollow.php:82
+#: src/Module/Profile/RemoteFollow.php:68
msgid "Profile unavailable."
msgstr "Perfil no disponible."
-#: src/Module/Profile/RemoteFollow.php:88
+#: src/Module/Profile/RemoteFollow.php:74
msgid "Invalid locator"
msgstr "Localizador no válido"
-#: src/Module/Profile/RemoteFollow.php:95
+#: src/Module/Profile/RemoteFollow.php:81
msgid "The provided profile link doesn't seem to be valid"
msgstr "Link del perfil no parece válido."
-#: src/Module/Profile/RemoteFollow.php:100
+#: src/Module/Profile/RemoteFollow.php:86
msgid ""
"Remote subscription can't be done for your network. Please subscribe "
"directly on your system."
msgstr "La subscripción remota no se podrá hacer para tu red. Por favor contacta directamente desde tu sistema."
-#: src/Module/Profile/RemoteFollow.php:128
+#: src/Module/Profile/RemoteFollow.php:114
msgid "Friend/Connection Request"
msgstr "Solicitud de Amistad/Conexión"
-#: src/Module/Profile/RemoteFollow.php:129
+#: src/Module/Profile/RemoteFollow.php:115
#, php-format
msgid ""
"Enter your Webfinger address (user@domain.tld) or profile URL here. If this "
@@ -9362,579 +9356,579 @@ msgid ""
" or %s directly on your system."
msgstr "Digite dirección Webfinger (user@domain.tld) o URL de perfil. Si no fuera aceptado por tu sistema, debes suscribirte a %s o %s directo en tu sistema."
-#: src/Module/Profile/RemoteFollow.php:130
+#: src/Module/Profile/RemoteFollow.php:116
#, php-format
msgid ""
"If you are not yet a member of the free social web, follow "
"this link to find a public Friendica node and join us today."
msgstr "Si aún no eres miembro de la web social gratuita, Sígue este enlace para encontrar un nodo Friendica público y únete hoy."
-#: src/Module/Profile/RemoteFollow.php:131
+#: src/Module/Profile/RemoteFollow.php:117
msgid "Your Webfinger address or profile URL:"
msgstr "Tu dirección Webfinger o URL de Perfil:"
-#: src/Module/Profile/Restricted.php:59
+#: src/Module/Profile/Restricted.php:45
msgid "Restricted profile"
msgstr ""
-#: src/Module/Profile/Restricted.php:60
+#: src/Module/Profile/Restricted.php:46
msgid ""
"This profile has been restricted which prevents access to their public "
"content from anonymous visitors."
msgstr ""
-#: src/Module/Profile/Schedule.php:83
+#: src/Module/Profile/Schedule.php:69
msgid "Scheduled"
msgstr ""
-#: src/Module/Profile/Schedule.php:84
+#: src/Module/Profile/Schedule.php:70
msgid "Content"
msgstr ""
-#: src/Module/Profile/Schedule.php:85
+#: src/Module/Profile/Schedule.php:71
msgid "Remove post"
msgstr ""
-#: src/Module/Register.php:85
+#: src/Module/Register.php:77
msgid "Only parent users can create additional accounts."
msgstr "Solo usuarios superiores pueden crear mas cuentas."
-#: src/Module/Register.php:100 src/Module/User/Import.php:112
+#: src/Module/Register.php:92 src/Module/User/Import.php:98
msgid ""
"This site has exceeded the number of allowed daily account registrations. "
"Please try again tomorrow."
msgstr "Este sitio ha excedido el número de registros diarios permitidos. Inténtalo de nuevo mañana por favor."
-#: src/Module/Register.php:117
+#: src/Module/Register.php:109
msgid ""
"You may (optionally) fill in this form via OpenID by supplying your OpenID "
"and clicking \"Register\"."
msgstr "Puede (opcionalmente) llenar el formulario vía OpenID proporcionando su OpenID y haciendo clic en \"Registrarse\"."
-#: src/Module/Register.php:118
+#: src/Module/Register.php:110
msgid ""
"If you are not familiar with OpenID, please leave that field blank and fill "
"in the rest of the items."
msgstr "Si no estás familiarizado con OpenID, por favor deja ese campo en blanco y rellena el resto de los elementos."
-#: src/Module/Register.php:119
+#: src/Module/Register.php:111
msgid "Your OpenID (optional): "
msgstr "Tu OpenID (opcional): "
-#: src/Module/Register.php:128
+#: src/Module/Register.php:120
msgid "Include your profile in member directory?"
msgstr "¿Incluir tu perfil en el directorio de miembros?"
-#: src/Module/Register.php:149
+#: src/Module/Register.php:141
msgid "Note for the admin"
msgstr "Nota para el administrador"
-#: src/Module/Register.php:149
+#: src/Module/Register.php:141
msgid "Leave a message for the admin, why you want to join this node"
msgstr "Deje un mensaje para el administrador sobre por qué quiere unirse a este nodo"
-#: src/Module/Register.php:150
+#: src/Module/Register.php:142
msgid "Membership on this site is by invitation only."
msgstr "Sitio solo accesible mediante invitación."
-#: src/Module/Register.php:151
+#: src/Module/Register.php:143
msgid "Your invitation code: "
msgstr "Tu código de Invitación: "
-#: src/Module/Register.php:159
+#: src/Module/Register.php:151
msgid "Your Display Name (as you would like it to be displayed on this system"
msgstr ""
-#: src/Module/Register.php:160
+#: src/Module/Register.php:152
msgid ""
"Your Email Address: (Initial information will be send there, so this has to "
"be an existing address.)"
msgstr "Tu Correo electrónico: (Información inicial se enviará allí, por lo que debeser una dirección existente.)"
-#: src/Module/Register.php:161
+#: src/Module/Register.php:153
msgid "Please repeat your e-mail address:"
msgstr "Repite tu correo:"
-#: src/Module/Register.php:163 src/Module/Security/PasswordTooLong.php:100
-#: src/Module/Settings/Account.php:564
+#: src/Module/Register.php:155 src/Module/Security/PasswordTooLong.php:86
+#: src/Module/Settings/Account.php:555
msgid "New Password:"
msgstr "Contraseña Nueva:"
-#: src/Module/Register.php:163
+#: src/Module/Register.php:155
msgid "Leave empty for an auto generated password."
msgstr "Dejar vacío para autogenerar una contraseña"
-#: src/Module/Register.php:164 src/Module/Security/PasswordTooLong.php:101
-#: src/Module/Settings/Account.php:565
+#: src/Module/Register.php:156 src/Module/Security/PasswordTooLong.php:87
+#: src/Module/Settings/Account.php:556
msgid "Confirm:"
msgstr "Confirmar:"
-#: src/Module/Register.php:165
+#: src/Module/Register.php:157
#, php-format
msgid ""
"Choose a profile nickname. This must begin with a text character. Your "
"profile address on this site will then be \"nickname@%s\"."
msgstr "Elija un apodo de perfil. Que comience con un carácter de texto. Tu dirección de perfil en este sitio será \"nickname@%s\"."
-#: src/Module/Register.php:166
+#: src/Module/Register.php:158
msgid "Choose a nickname: "
msgstr "Escoge un apodo: "
-#: src/Module/Register.php:174 src/Module/User/Import.php:118
+#: src/Module/Register.php:166 src/Module/User/Import.php:104
msgid "Import"
msgstr "Importar"
-#: src/Module/Register.php:175
+#: src/Module/Register.php:167
msgid "Import your profile to this friendica instance"
msgstr "Importar tu perfil a esta instancia de friendica"
-#: src/Module/Register.php:182
+#: src/Module/Register.php:174
msgid "Note: This node explicitly contains adult content"
msgstr "Nota: Este nodo contiene material adulto explicito"
-#: src/Module/Register.php:184 src/Module/Settings/Delegation.php:181
+#: src/Module/Register.php:176 src/Module/Settings/Delegation.php:167
msgid "Parent Password:"
msgstr "Contraseña principal:"
-#: src/Module/Register.php:184 src/Module/Settings/Delegation.php:181
+#: src/Module/Register.php:176 src/Module/Settings/Delegation.php:167
msgid ""
"Please enter the password of the parent account to legitimize your request."
msgstr "Ingrese la contraseña de la cuenta principal para conformar la solicitud."
-#: src/Module/Register.php:213
+#: src/Module/Register.php:205
msgid "Password doesn't match."
msgstr "Contraseñas diferentes."
-#: src/Module/Register.php:219
+#: src/Module/Register.php:211
msgid "Please enter your password."
msgstr "Ingresa tu contraseña."
-#: src/Module/Register.php:261
+#: src/Module/Register.php:253
msgid "You have entered too much information."
msgstr "Demasiada información."
-#: src/Module/Register.php:284
+#: src/Module/Register.php:276
msgid "Please enter the identical mail address in the second field."
msgstr "Ingresa la misma cuenta de correo en el segundo campo"
-#: src/Module/Register.php:292
+#: src/Module/Register.php:284
msgid "Nickname cannot start with a digit."
msgstr ""
-#: src/Module/Register.php:294
+#: src/Module/Register.php:286
msgid "Nickname can only contain US-ASCII characters."
msgstr ""
-#: src/Module/Register.php:323
+#: src/Module/Register.php:315
msgid "The additional account was created."
msgstr "La cuenta adicional fue creada."
-#: src/Module/Register.php:348
+#: src/Module/Register.php:340
msgid ""
"Registration successful. Please check your email for further instructions."
msgstr "Te has registrado con éxito. Consulta tu correo para más información."
-#: src/Module/Register.php:355
+#: src/Module/Register.php:347
#, php-format
msgid ""
"Failed to send email message. Here your accout details:You can enter one of your one-time recovery codes in case you lost access" " to your mobile device.
" msgstr "puedes usar uno de tus códigos de recuperación si pierdes el acceso a tu movil.
" -#: src/Module/Security/TwoFactor/Recovery.php:101 +#: src/Module/Security/TwoFactor/Recovery.php:87 #, php-format msgid "Don’t have your phone? Enter a two-factor recovery code" msgstr "No tienes el teléfono? Ingresa código de recuperación" -#: src/Module/Security/TwoFactor/Recovery.php:102 +#: src/Module/Security/TwoFactor/Recovery.php:88 msgid "Please enter a recovery code" msgstr "Ingresa código de recuperación" -#: src/Module/Security/TwoFactor/Recovery.php:103 +#: src/Module/Security/TwoFactor/Recovery.php:89 msgid "Submit recovery code and complete login" msgstr "Enviar código de recuperación e ingresar" -#: src/Module/Security/TwoFactor/SignOut.php:122 +#: src/Module/Security/TwoFactor/SignOut.php:108 msgid "Sign out of this browser?" msgstr "" -#: src/Module/Security/TwoFactor/SignOut.php:123 +#: src/Module/Security/TwoFactor/SignOut.php:109 msgid "" "If you trust this browser, you will not be asked for verification code " "the next time you sign in.
" msgstr "" -#: src/Module/Security/TwoFactor/SignOut.php:124 +#: src/Module/Security/TwoFactor/SignOut.php:110 msgid "Sign out" msgstr "" -#: src/Module/Security/TwoFactor/SignOut.php:126 +#: src/Module/Security/TwoFactor/SignOut.php:112 msgid "Trust and sign out" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:96 +#: src/Module/Security/TwoFactor/Trust.php:82 msgid "Couldn't save browser to Cookie." msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:141 +#: src/Module/Security/TwoFactor/Trust.php:127 msgid "Trust this browser?" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:142 +#: src/Module/Security/TwoFactor/Trust.php:128 msgid "" "If you choose to trust this browser, you will not be asked for a " "verification code the next time you sign in.
" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:143 +#: src/Module/Security/TwoFactor/Trust.php:129 msgid "Not now" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:144 +#: src/Module/Security/TwoFactor/Trust.php:130 msgid "Don't trust" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:145 +#: src/Module/Security/TwoFactor/Trust.php:131 msgid "Trust" msgstr "" -#: src/Module/Security/TwoFactor/Verify.php:97 +#: src/Module/Security/TwoFactor/Verify.php:83 msgid "" "Open the two-factor authentication app on your device to get an " "authentication code and verify your identity.
" msgstr "Abra la app de ingreso de 2 factores en su dispositivo y obtenga un código de ingreso para verificar su identidad.
" -#: src/Module/Security/TwoFactor/Verify.php:100 +#: src/Module/Security/TwoFactor/Verify.php:86 #, php-format msgid "" "If you do not have access to your authentication code you can use a two-factor recovery code." msgstr "" -#: src/Module/Security/TwoFactor/Verify.php:101 -#: src/Module/Settings/TwoFactor/Verify.php:158 +#: src/Module/Security/TwoFactor/Verify.php:87 +#: src/Module/Settings/TwoFactor/Verify.php:144 msgid "Please enter a code from your authentication app" msgstr "Ingresa un código de ingreso desde tu app" -#: src/Module/Security/TwoFactor/Verify.php:102 +#: src/Module/Security/TwoFactor/Verify.php:88 msgid "Verify code and complete login" msgstr "Verificar código y completar ingreso" -#: src/Module/Settings/Account.php:96 +#: src/Module/Settings/Account.php:82 msgid "Please use a shorter name." msgstr "Utiliza un nombre mas corto" -#: src/Module/Settings/Account.php:99 +#: src/Module/Settings/Account.php:85 msgid "Name too short." msgstr "Nombre muy corto" -#: src/Module/Settings/Account.php:108 +#: src/Module/Settings/Account.php:94 msgid "Wrong Password." msgstr "Password erróneo" -#: src/Module/Settings/Account.php:113 +#: src/Module/Settings/Account.php:99 msgid "Invalid email." msgstr "Corréo no válido." -#: src/Module/Settings/Account.php:117 +#: src/Module/Settings/Account.php:103 msgid "Cannot change to that email." msgstr "Imposible cambiar a ese correo." -#: src/Module/Settings/Account.php:146 src/Module/Settings/Account.php:195 -#: src/Module/Settings/Account.php:216 src/Module/Settings/Account.php:300 -#: src/Module/Settings/Account.php:329 +#: src/Module/Settings/Account.php:132 src/Module/Settings/Account.php:181 +#: src/Module/Settings/Account.php:202 src/Module/Settings/Account.php:286 +#: src/Module/Settings/Account.php:315 msgid "Settings were not updated." msgstr "Configuración no actualizada" -#: src/Module/Settings/Account.php:342 +#: src/Module/Settings/Account.php:333 msgid "Contact CSV file upload error" msgstr "Error al subir archivo CSV" -#: src/Module/Settings/Account.php:361 +#: src/Module/Settings/Account.php:352 msgid "Importing Contacts done" msgstr "Importación del contacto completada" -#: src/Module/Settings/Account.php:374 +#: src/Module/Settings/Account.php:365 msgid "Relocate message has been send to your contacts" msgstr "Mensaje de reubicación enviado a sus contactos." -#: src/Module/Settings/Account.php:391 +#: src/Module/Settings/Account.php:382 msgid "Unable to find your profile. Please contact your admin." msgstr "No se encontró tu perfil. Contacta al Administrador." -#: src/Module/Settings/Account.php:433 +#: src/Module/Settings/Account.php:424 msgid "" "Account for a service that automatically shares content based on user " "defined channels." msgstr "" -#: src/Module/Settings/Account.php:443 +#: src/Module/Settings/Account.php:434 msgid "Personal Page Subtypes" msgstr "Subtipos de Página Personal" -#: src/Module/Settings/Account.php:444 +#: src/Module/Settings/Account.php:435 msgid "Community Group Subtypes" msgstr "" -#: src/Module/Settings/Account.php:455 +#: src/Module/Settings/Account.php:446 msgid "Account for a personal profile." msgstr "Cuenta para un perfil personal." -#: src/Module/Settings/Account.php:462 +#: src/Module/Settings/Account.php:453 msgid "" "Account for an organisation that automatically approves contact requests as " "\"Followers\"." msgstr "Cuenta para una organización que aprueba automáticamente solicitudes de \"Seguidores\"." -#: src/Module/Settings/Account.php:469 +#: src/Module/Settings/Account.php:460 msgid "" "Account for a news reflector that automatically approves contact requests as" " \"Followers\"." msgstr "Cuenta Reflector de noticias que aprueba automáticamente solicitudes de contacto como \"Seguidores\"." -#: src/Module/Settings/Account.php:476 +#: src/Module/Settings/Account.php:467 msgid "Account for community discussions." msgstr "Cuenta para discusiones de la comunidad." -#: src/Module/Settings/Account.php:484 +#: src/Module/Settings/Account.php:475 msgid "" "Account for a regular personal profile that requires manual approval of " "\"Friends\" and \"Followers\"." msgstr "Cuenta para perfil personal regular que requiere aprobación manual de \"Amigos\" and \"Seguidores\"." -#: src/Module/Settings/Account.php:491 +#: src/Module/Settings/Account.php:482 msgid "" "Account for a public profile that automatically approves contact requests as" " \"Followers\"." msgstr "Cuenta para un perfil público que aprueba automáticamente las solicitudes de contacto como «Seguidores»." -#: src/Module/Settings/Account.php:498 +#: src/Module/Settings/Account.php:489 msgid "Automatically approves all contact requests." msgstr "Aprueba automáticamente las solicitudes de contacto." -#: src/Module/Settings/Account.php:505 +#: src/Module/Settings/Account.php:496 msgid "Contact requests have to be manually approved." msgstr "" -#: src/Module/Settings/Account.php:512 +#: src/Module/Settings/Account.php:503 msgid "" "Account for a popular profile that automatically approves contact requests " "as \"Friends\"." msgstr "Cuenta para un perfil popular que aprueba automáticamente solicitudes de contacto como \"Amigos\"." -#: src/Module/Settings/Account.php:517 +#: src/Module/Settings/Account.php:508 msgid "Private Group [Experimental]" msgstr "" -#: src/Module/Settings/Account.php:519 +#: src/Module/Settings/Account.php:510 msgid "Requires manual approval of contact requests." msgstr "Requiere aprobación manual de solicitudes de contacto." -#: src/Module/Settings/Account.php:528 +#: src/Module/Settings/Account.php:519 msgid "OpenID:" msgstr "OpenID:" -#: src/Module/Settings/Account.php:528 +#: src/Module/Settings/Account.php:519 msgid "(Optional) Allow this OpenID to login to this account." msgstr "(Opcional) Permitir a este OpenID acceder a esta cuenta." -#: src/Module/Settings/Account.php:536 +#: src/Module/Settings/Account.php:527 msgid "Publish your profile in your local site directory?" msgstr "Publicar tu perfil en tu Directorio Local?" -#: src/Module/Settings/Account.php:536 +#: src/Module/Settings/Account.php:527 #, php-format msgid "" "Your profile will be published in this node's local " @@ -9942,94 +9936,94 @@ msgid "" " system settings." msgstr "Tu perfil se publicará en el directorio de nodo local . Los detalles de tu perfil pueden ser públicos según los ajustes del sistema." -#: src/Module/Settings/Account.php:542 +#: src/Module/Settings/Account.php:533 #, php-format msgid "" "Your profile will also be published in the global friendica directories " "(e.g. %s)." msgstr "Tu perfil también será publicado en Directorios Globales Friendica (ej. %s)." -#: src/Module/Settings/Account.php:555 +#: src/Module/Settings/Account.php:546 msgid "Account Settings" msgstr "Configuración de Cuenta" -#: src/Module/Settings/Account.php:556 +#: src/Module/Settings/Account.php:547 #, php-format msgid "Your Identity Address is '%s' or '%s'." msgstr "Tu dirección de Identidad es '%s' o '%s'." -#: src/Module/Settings/Account.php:563 +#: src/Module/Settings/Account.php:554 msgid "Password Settings" msgstr "Configuración de Contraseña" -#: src/Module/Settings/Account.php:565 +#: src/Module/Settings/Account.php:556 msgid "Leave password fields blank unless changing" msgstr "Deja la contraseña en blanco si no quieres cambiarla" -#: src/Module/Settings/Account.php:567 +#: src/Module/Settings/Account.php:558 msgid "Password:" msgstr "Contraseña:" -#: src/Module/Settings/Account.php:567 +#: src/Module/Settings/Account.php:558 msgid "Your current password to confirm the changes of the email address" msgstr "Tu contraseña actual para confirmar los cambios de cuenta de corréo." -#: src/Module/Settings/Account.php:570 +#: src/Module/Settings/Account.php:561 msgid "Delete OpenID URL" msgstr "Borrar URL de OpenID" -#: src/Module/Settings/Account.php:572 +#: src/Module/Settings/Account.php:563 msgid "Basic Settings" msgstr "Configuración Básica" -#: src/Module/Settings/Account.php:573 -#: src/Module/Settings/Profile/Index.php:283 +#: src/Module/Settings/Account.php:564 +#: src/Module/Settings/Profile/Index.php:274 msgid "Display name:" msgstr "Nombre desplegable:" -#: src/Module/Settings/Account.php:574 +#: src/Module/Settings/Account.php:565 msgid "Email Address:" msgstr "Dirección de Correo:" -#: src/Module/Settings/Account.php:575 +#: src/Module/Settings/Account.php:566 msgid "Your Timezone:" msgstr "Zona horaria:" -#: src/Module/Settings/Account.php:576 +#: src/Module/Settings/Account.php:567 msgid "Your Language:" msgstr "Tu idioma:" -#: src/Module/Settings/Account.php:576 +#: src/Module/Settings/Account.php:567 msgid "" "Set the language we use to show you friendica interface and to send you " "emails" msgstr "Selecciona el idioma que usará la interfaz Friendica y para enviarte correos." -#: src/Module/Settings/Account.php:577 +#: src/Module/Settings/Account.php:568 msgid "Default Post Location:" msgstr "Ubicación predeterminada:" -#: src/Module/Settings/Account.php:578 +#: src/Module/Settings/Account.php:569 msgid "Use Browser Location:" msgstr "Usar localización del navegador:" -#: src/Module/Settings/Account.php:580 +#: src/Module/Settings/Account.php:571 msgid "Security and Privacy Settings" msgstr "Configuración de Seguridad y Privacidad" -#: src/Module/Settings/Account.php:582 +#: src/Module/Settings/Account.php:573 msgid "Maximum Friend Requests/Day:" msgstr "Número máximo de solicitudes de amistad/día:" -#: src/Module/Settings/Account.php:582 +#: src/Module/Settings/Account.php:573 msgid "(to prevent spam abuse)" msgstr "(para prevenir abuso de basura)" -#: src/Module/Settings/Account.php:584 +#: src/Module/Settings/Account.php:575 msgid "Allow your profile to be searchable globally?" msgstr "¿Permitir tu perfil ser encontrado globalmente?" -#: src/Module/Settings/Account.php:584 +#: src/Module/Settings/Account.php:575 msgid "" "Activate this setting if you want others to easily find and follow you. Your" " profile will be searchable on remote systems. This setting also determines " @@ -10037,43 +10031,43 @@ msgid "" "indexed or not." msgstr "Activa esta configuración si quieres que otros te encuentren y sigan fácilmente. Tu perfil se podrá buscar en sistemas remotos. Esta configuración también determina si Friendica informará a los motores de búsqueda que tu perfil debe ser indexado o no." -#: src/Module/Settings/Account.php:585 +#: src/Module/Settings/Account.php:576 msgid "Hide your contact/friend list from viewers of your profile?" msgstr "Esconde tu lista de contactos/amistades de otros a tu perfil?" -#: src/Module/Settings/Account.php:585 +#: src/Module/Settings/Account.php:576 msgid "" "A list of your contacts is displayed on your profile page. Activate this " "option to disable the display of your contact list." msgstr "Se muestra una lista de tus contactos en tu Perfil. Activar esta opción para deshabilitar la visualización de tu lista de contactos." -#: src/Module/Settings/Account.php:586 +#: src/Module/Settings/Account.php:577 msgid "Hide your public content from anonymous viewers" msgstr "" -#: src/Module/Settings/Account.php:586 +#: src/Module/Settings/Account.php:577 msgid "" "Anonymous visitors will only see your basic profile details. Your public " "posts and replies will still be freely accessible on the remote servers of " "your followers and through relays." msgstr "" -#: src/Module/Settings/Account.php:587 +#: src/Module/Settings/Account.php:578 msgid "Make public posts unlisted" msgstr "No listar mis artículos públicos" -#: src/Module/Settings/Account.php:587 +#: src/Module/Settings/Account.php:578 msgid "" "Your public posts will not appear on the community pages or in search " "results, nor be sent to relay servers. However they can still appear on " "public feeds on remote servers." msgstr "Tus publicaciones públicas no aparecerán en páginas de la comunidad ni en búsquedas, ni se enviaran a servidores de retransmisión. Sin embargo, aparecerán en artículos públicos de servidores remotos." -#: src/Module/Settings/Account.php:588 +#: src/Module/Settings/Account.php:579 msgid "Make all posted pictures accessible" msgstr "Hacer accesibles todas las fotos" -#: src/Module/Settings/Account.php:588 +#: src/Module/Settings/Account.php:579 msgid "" "This option makes every posted picture accessible via the direct link. This " "is a workaround for the problem that most other networks can't handle " @@ -10081,352 +10075,352 @@ msgid "" "public on your photo albums though." msgstr "Esta opción hace accesibles todas las imágenes a través del enlace directo. Este es una solución al problema que la mayoría de las redes no pueden manejar permisos en las imágenes. Las imágenes no públicas aún no serán visibles para elpúblico en tus álbumes de fotos." -#: src/Module/Settings/Account.php:589 +#: src/Module/Settings/Account.php:580 msgid "Allow friends to post to your profile page?" msgstr "¿Permitir que tus amigos publiquen en tu página de perfil?" -#: src/Module/Settings/Account.php:589 +#: src/Module/Settings/Account.php:580 msgid "" "Your contacts may write posts on your profile wall. These posts will be " "distributed to your contacts" msgstr "Tus contactos pueden escribir artículos en tu perfil. Estas publicaciones se distribuirán a tus contactos" -#: src/Module/Settings/Account.php:590 +#: src/Module/Settings/Account.php:581 msgid "Allow friends to tag your posts?" msgstr "¿Permitir a los amigos etiquetar tus publicaciones?" -#: src/Module/Settings/Account.php:590 +#: src/Module/Settings/Account.php:581 msgid "Your contacts can add additional tags to your posts." msgstr "Tus contactos pueden añadir etiquetas adicionales a tus artículos." -#: src/Module/Settings/Account.php:591 +#: src/Module/Settings/Account.php:582 msgid "Default privacy circle for new contacts" msgstr "" -#: src/Module/Settings/Account.php:592 +#: src/Module/Settings/Account.php:583 msgid "Default privacy circle for new group contacts" msgstr "" -#: src/Module/Settings/Account.php:593 +#: src/Module/Settings/Account.php:584 msgid "Default Post Permissions" msgstr "Permisos por defecto para publicaciones" -#: src/Module/Settings/Account.php:597 +#: src/Module/Settings/Account.php:588 msgid "Expiration settings" msgstr "Configuración de Expiración" -#: src/Module/Settings/Account.php:598 +#: src/Module/Settings/Account.php:589 msgid "Automatically expire posts after this many days:" msgstr "Publicaciones caducarán solas después de estos días:" -#: src/Module/Settings/Account.php:598 +#: src/Module/Settings/Account.php:589 msgid "If empty, posts will not expire. Expired posts will be deleted" msgstr "Si dejas vacío no caducarán. Publicaciones caducadas serán borradas" -#: src/Module/Settings/Account.php:599 +#: src/Module/Settings/Account.php:590 msgid "Expire posts" msgstr "Caducar artículos" -#: src/Module/Settings/Account.php:599 +#: src/Module/Settings/Account.php:590 msgid "When activated, posts and comments will be expired." msgstr "Cuando se activa, artículos y comentarios caducarán." -#: src/Module/Settings/Account.php:600 +#: src/Module/Settings/Account.php:591 msgid "Expire personal notes" msgstr "Caducar Anotaciones" -#: src/Module/Settings/Account.php:600 +#: src/Module/Settings/Account.php:591 msgid "" "When activated, the personal notes on your profile page will be expired." msgstr "Si se activa, las Anotaciones en tu Perfil caducarán." -#: src/Module/Settings/Account.php:601 +#: src/Module/Settings/Account.php:592 msgid "Expire starred posts" msgstr "Caducar artículos Destacados" -#: src/Module/Settings/Account.php:601 +#: src/Module/Settings/Account.php:592 msgid "" "Starring posts keeps them from being expired. That behaviour is overwritten " "by this setting." msgstr "Destacar las publicaciones evita que caduquen. Ese comportamiento cambiacon este ajuste." -#: src/Module/Settings/Account.php:602 +#: src/Module/Settings/Account.php:593 msgid "Only expire posts by others" msgstr "Solo caducar artículos de otros" -#: src/Module/Settings/Account.php:602 +#: src/Module/Settings/Account.php:593 msgid "" "When activated, your own posts never expire. Then the settings above are " "only valid for posts you received." msgstr "Cuando se activa, publicaciones propias nunca caducan. Esta configuración solo es válida para las artículos recibidas." -#: src/Module/Settings/Account.php:605 +#: src/Module/Settings/Account.php:596 msgid "Notification Settings" msgstr "Configuración de Notificaciones" -#: src/Module/Settings/Account.php:606 +#: src/Module/Settings/Account.php:597 msgid "Send a notification email when:" msgstr "Enviar notificación por correo cuando:" -#: src/Module/Settings/Account.php:607 +#: src/Module/Settings/Account.php:598 msgid "You receive an introduction" msgstr "Recibas una presentación" -#: src/Module/Settings/Account.php:608 +#: src/Module/Settings/Account.php:599 msgid "Your introductions are confirmed" msgstr "Tu presentación sea confirmada" -#: src/Module/Settings/Account.php:609 +#: src/Module/Settings/Account.php:600 msgid "Someone writes on your profile wall" msgstr "Alguien escriba en tu perfil" -#: src/Module/Settings/Account.php:610 +#: src/Module/Settings/Account.php:601 msgid "Someone writes a followup comment" msgstr "Alguien escriba en un comentario que sigo" -#: src/Module/Settings/Account.php:611 +#: src/Module/Settings/Account.php:602 msgid "You receive a private message" msgstr "Recibas un mensaje privado" -#: src/Module/Settings/Account.php:612 +#: src/Module/Settings/Account.php:603 msgid "You receive a friend suggestion" msgstr "Recibas una sugerencia de amistad" -#: src/Module/Settings/Account.php:613 +#: src/Module/Settings/Account.php:604 msgid "You are tagged in a post" msgstr "Seas etiquetado en un artículo" -#: src/Module/Settings/Account.php:615 +#: src/Module/Settings/Account.php:606 msgid "Create a desktop notification when:" msgstr "" -#: src/Module/Settings/Account.php:616 +#: src/Module/Settings/Account.php:607 msgid "Someone tagged you" msgstr "" -#: src/Module/Settings/Account.php:617 +#: src/Module/Settings/Account.php:608 msgid "Someone directly commented on your post" msgstr "" -#: src/Module/Settings/Account.php:618 +#: src/Module/Settings/Account.php:609 msgid "Someone liked your content" msgstr "" -#: src/Module/Settings/Account.php:618 src/Module/Settings/Account.php:619 +#: src/Module/Settings/Account.php:609 src/Module/Settings/Account.php:610 msgid "Can only be enabled, when the direct comment notification is enabled." msgstr "" -#: src/Module/Settings/Account.php:619 +#: src/Module/Settings/Account.php:610 msgid "Someone shared your content" msgstr "" -#: src/Module/Settings/Account.php:620 +#: src/Module/Settings/Account.php:611 msgid "Someone commented in your thread" msgstr "" -#: src/Module/Settings/Account.php:621 +#: src/Module/Settings/Account.php:612 msgid "Someone commented in a thread where you commented" msgstr "" -#: src/Module/Settings/Account.php:622 +#: src/Module/Settings/Account.php:613 msgid "Someone commented in a thread where you interacted" msgstr "" -#: src/Module/Settings/Account.php:624 +#: src/Module/Settings/Account.php:615 msgid "Activate desktop notifications" msgstr "Activar notificaciones" -#: src/Module/Settings/Account.php:624 +#: src/Module/Settings/Account.php:615 msgid "Show desktop popup on new notifications" msgstr "Mostrar notificaciones emergentes en caso de nuevos eventos." -#: src/Module/Settings/Account.php:628 +#: src/Module/Settings/Account.php:619 msgid "Text-only notification emails" msgstr "Notificaciones de correo solo en texto" -#: src/Module/Settings/Account.php:630 +#: src/Module/Settings/Account.php:621 msgid "Send text only notification emails, without the html part" msgstr "Enviar correo de notificación en formato Solo Texto sin html" -#: src/Module/Settings/Account.php:634 +#: src/Module/Settings/Account.php:625 msgid "Show detailled notifications" msgstr "Mostrar notificaciones detalladas" -#: src/Module/Settings/Account.php:636 +#: src/Module/Settings/Account.php:627 msgid "" "Per default, notifications are condensed to a single notification per item. " "When enabled every notification is displayed." msgstr "Por default, notificaciones se condensan en una sola notificación por artículo. Cuando se habilita se muestran cada notificación." -#: src/Module/Settings/Account.php:640 +#: src/Module/Settings/Account.php:631 msgid "Show notifications of ignored contacts" msgstr "Mostrar notificación de Contactos Ignorados" -#: src/Module/Settings/Account.php:642 +#: src/Module/Settings/Account.php:633 msgid "" "You don't see posts from ignored contacts. But you still see their comments." " This setting controls if you want to still receive regular notifications " "that are caused by ignored contacts or not." msgstr "No ves publicaciones de contactos ignorados. Pero todavía ves sus comentarios. Esta configuración controla si aún desea recibir notificaciones regulares causadas por contactos ignorados o no." -#: src/Module/Settings/Account.php:645 +#: src/Module/Settings/Account.php:636 msgid "Advanced Account/Page Type Settings" msgstr "Configuración avanzada de tipo de Cuenta/Página" -#: src/Module/Settings/Account.php:646 +#: src/Module/Settings/Account.php:637 msgid "Change the behaviour of this account for special situations" msgstr "Cambiar el comportamiento de esta cuenta para situaciones especiales" -#: src/Module/Settings/Account.php:649 +#: src/Module/Settings/Account.php:640 msgid "Import Contacts" msgstr "Importar contactos" -#: src/Module/Settings/Account.php:650 +#: src/Module/Settings/Account.php:641 msgid "" "Upload a CSV file that contains the handle of your followed accounts in the " "first column you exported from the old account." msgstr "Subir archivo CSV que contenga identificador de tus cuentas seguidas en elprimera columna que exportó desde la cuenta anterior." -#: src/Module/Settings/Account.php:651 +#: src/Module/Settings/Account.php:642 msgid "Upload File" msgstr "Subir archivo" -#: src/Module/Settings/Account.php:654 +#: src/Module/Settings/Account.php:645 msgid "Relocate" msgstr "Relocalizar" -#: src/Module/Settings/Account.php:655 +#: src/Module/Settings/Account.php:646 msgid "" "If you have moved this profile from another server, and some of your " "contacts don't receive your updates, try pushing this button." msgstr "Si migró este perfil desde otro servidor y algunos contactos no reciben sus publicaciones intente oprimiendo esta opción." -#: src/Module/Settings/Account.php:656 +#: src/Module/Settings/Account.php:647 msgid "Resend relocate message to contacts" msgstr "Reenviar mensaje de relocalización a contactos" -#: src/Module/Settings/Addons.php:86 +#: src/Module/Settings/Addons.php:72 msgid "Addon Settings" msgstr "Configuración de Añadidos" -#: src/Module/Settings/Addons.php:87 +#: src/Module/Settings/Addons.php:73 msgid "No Addon settings configured" msgstr "Ningún Añadido configurado" -#: src/Module/Settings/Channels.php:148 +#: src/Module/Settings/Channels.php:134 msgid "" "This page can be used to define the channels that will automatically be " "reshared by your account." msgstr "" -#: src/Module/Settings/Channels.php:153 +#: src/Module/Settings/Channels.php:139 msgid "This page can be used to define your own channels." msgstr "" -#: src/Module/Settings/Channels.php:182 +#: src/Module/Settings/Channels.php:168 msgid "Publish" msgstr "" -#: src/Module/Settings/Channels.php:182 +#: src/Module/Settings/Channels.php:168 msgid "" "When selected, the channel results are reshared. This only works for public " "ActivityPub posts from the public timeline or the user defined circles." msgstr "" -#: src/Module/Settings/Channels.php:190 src/Module/Settings/Channels.php:211 -#: src/Module/Settings/Display.php:338 +#: src/Module/Settings/Channels.php:176 src/Module/Settings/Channels.php:197 +#: src/Module/Settings/Display.php:324 msgid "Label" msgstr "" -#: src/Module/Settings/Channels.php:191 src/Module/Settings/Channels.php:212 -#: src/Module/Settings/Display.php:339 -#: src/Module/Settings/TwoFactor/AppSpecific.php:137 +#: src/Module/Settings/Channels.php:177 src/Module/Settings/Channels.php:198 +#: src/Module/Settings/Display.php:325 +#: src/Module/Settings/TwoFactor/AppSpecific.php:123 msgid "Description" msgstr "Descripción" -#: src/Module/Settings/Channels.php:192 src/Module/Settings/Channels.php:213 +#: src/Module/Settings/Channels.php:178 src/Module/Settings/Channels.php:199 msgid "Access Key" msgstr "" -#: src/Module/Settings/Channels.php:193 src/Module/Settings/Channels.php:214 +#: src/Module/Settings/Channels.php:179 src/Module/Settings/Channels.php:200 msgid "Circle/Channel" msgstr "" -#: src/Module/Settings/Channels.php:194 src/Module/Settings/Channels.php:215 +#: src/Module/Settings/Channels.php:180 src/Module/Settings/Channels.php:201 msgid "Include Tags" msgstr "" -#: src/Module/Settings/Channels.php:195 src/Module/Settings/Channels.php:216 +#: src/Module/Settings/Channels.php:181 src/Module/Settings/Channels.php:202 msgid "Exclude Tags" msgstr "" -#: src/Module/Settings/Channels.php:196 src/Module/Settings/Channels.php:217 +#: src/Module/Settings/Channels.php:182 src/Module/Settings/Channels.php:203 msgid "Minimum Size" msgstr "" -#: src/Module/Settings/Channels.php:197 src/Module/Settings/Channels.php:218 +#: src/Module/Settings/Channels.php:183 src/Module/Settings/Channels.php:204 msgid "Maximum Size" msgstr "" -#: src/Module/Settings/Channels.php:198 src/Module/Settings/Channels.php:219 +#: src/Module/Settings/Channels.php:184 src/Module/Settings/Channels.php:205 msgid "Full Text Search" msgstr "" -#: src/Module/Settings/Channels.php:202 src/Module/Settings/Channels.php:223 +#: src/Module/Settings/Channels.php:188 src/Module/Settings/Channels.php:209 msgid "Select all languages that you want to see in this channel." msgstr "" -#: src/Module/Settings/Channels.php:204 +#: src/Module/Settings/Channels.php:190 msgid "Delete channel" msgstr "" -#: src/Module/Settings/Channels.php:204 +#: src/Module/Settings/Channels.php:190 msgid "Check to delete this entry from the channel list" msgstr "" -#: src/Module/Settings/Channels.php:211 +#: src/Module/Settings/Channels.php:197 msgid "Short name for the channel. It is displayed on the channels widget." msgstr "" -#: src/Module/Settings/Channels.php:212 +#: src/Module/Settings/Channels.php:198 msgid "This should describe the content of the channel in a few word." msgstr "" -#: src/Module/Settings/Channels.php:213 +#: src/Module/Settings/Channels.php:199 msgid "" "When you want to access this channel via an access key, you can define it " "here. Pay attention to not use an already used one." msgstr "" -#: src/Module/Settings/Channels.php:214 +#: src/Module/Settings/Channels.php:200 msgid "Select a circle or channel, that your channel should be based on." msgstr "" -#: src/Module/Settings/Channels.php:215 +#: src/Module/Settings/Channels.php:201 msgid "" "Comma separated list of tags. A post will be used when it contains any of " "the listed tags." msgstr "" -#: src/Module/Settings/Channels.php:216 +#: src/Module/Settings/Channels.php:202 msgid "" "Comma separated list of tags. If a post contain any of these tags, then it " "will not be part of nthis channel." msgstr "" -#: src/Module/Settings/Channels.php:217 +#: src/Module/Settings/Channels.php:203 msgid "" "Minimum post size. Leave empty for no minimum size. The size is calculated " "without links, attached posts, mentions or hashtags." msgstr "" -#: src/Module/Settings/Channels.php:218 +#: src/Module/Settings/Channels.php:204 msgid "" "Maximum post size. Leave empty for no maximum size. The size is calculated " "without links, attached posts, mentions or hashtags." msgstr "" -#: src/Module/Settings/Channels.php:219 +#: src/Module/Settings/Channels.php:205 #, php-format msgid "" "Search terms for the body, supports the \"boolean mode\" operators from " @@ -10434,576 +10428,589 @@ msgid "" "keywords: %s" msgstr "" -#: src/Module/Settings/Channels.php:220 +#: src/Module/Settings/Channels.php:206 msgid "Check to display images in the channel." msgstr "" -#: src/Module/Settings/Channels.php:221 +#: src/Module/Settings/Channels.php:207 msgid "Check to display videos in the channel." msgstr "" -#: src/Module/Settings/Channels.php:222 +#: src/Module/Settings/Channels.php:208 msgid "Check to display audio in the channel." msgstr "" -#: src/Module/Settings/Channels.php:227 +#: src/Module/Settings/Channels.php:213 msgid "Add new entry to the channel list" msgstr "" -#: src/Module/Settings/Channels.php:228 +#: src/Module/Settings/Channels.php:214 msgid "Add" msgstr "Añadir" -#: src/Module/Settings/Channels.php:230 +#: src/Module/Settings/Channels.php:216 msgid "Current Entries in the channel list" msgstr "" -#: src/Module/Settings/Channels.php:233 +#: src/Module/Settings/Channels.php:219 msgid "Delete entry from the channel list" msgstr "" -#: src/Module/Settings/Channels.php:234 +#: src/Module/Settings/Channels.php:220 msgid "Delete entry from the channel list?" msgstr "" -#: src/Module/Settings/Connectors.php:120 +#: src/Module/Settings/Connectors.php:108 msgid "Failed to connect with email account using the settings provided." msgstr "Error al conectar con el Correo mediante esa configuración." -#: src/Module/Settings/Connectors.php:166 -#: src/Module/Settings/Connectors.php:167 +#: src/Module/Settings/Connectors.php:155 +#: src/Module/Settings/Connectors.php:156 msgid "Diaspora (Socialhome, Hubzilla)" msgstr "Diaspora (Socialhome, Hubzilla)" -#: src/Module/Settings/Connectors.php:166 -#: src/Module/Settings/Connectors.php:170 +#: src/Module/Settings/Connectors.php:155 #, php-format msgid "Built-in support for %s connectivity is enabled" msgstr "" -#: src/Module/Settings/Connectors.php:167 -#: src/Module/Settings/Connectors.php:169 +#: src/Module/Settings/Connectors.php:156 #, php-format msgid "Built-in support for %s connectivity is disabled" msgstr "" -#: src/Module/Settings/Connectors.php:169 -#: src/Module/Settings/Connectors.php:170 -msgid "OStatus (GNU Social)" -msgstr "OStatus (GNU Social)" - -#: src/Module/Settings/Connectors.php:182 +#: src/Module/Settings/Connectors.php:167 msgid "Email access is disabled on this site." msgstr "Acceso por correo deshabilitado en este sitio." -#: src/Module/Settings/Connectors.php:197 -#: src/Module/Settings/Connectors.php:244 +#: src/Module/Settings/Connectors.php:182 +#: src/Module/Settings/Connectors.php:233 msgid "None" msgstr "Ninguno" -#: src/Module/Settings/Connectors.php:209 +#: src/Module/Settings/Connectors.php:186 +msgid "Default (Mastodon will display the title and a link to the post)" +msgstr "" + +#: src/Module/Settings/Connectors.php:187 +msgid "" +"Use the summary (Mastodon and some others will treat it as content warning)" +msgstr "" + +#: src/Module/Settings/Connectors.php:188 +msgid "Embed the title in the body" +msgstr "" + +#: src/Module/Settings/Connectors.php:199 msgid "General Social Media Settings" msgstr "Configuración General de Medios Sociales" -#: src/Module/Settings/Connectors.php:212 +#: src/Module/Settings/Connectors.php:202 msgid "Followed content scope" msgstr "" -#: src/Module/Settings/Connectors.php:214 +#: src/Module/Settings/Connectors.php:204 msgid "" "By default, conversations in which your follows participated but didn't " "start will be shown in your timeline. You can turn this behavior off, or " "expand it to the conversations in which your follows liked a post." msgstr "" -#: src/Module/Settings/Connectors.php:216 +#: src/Module/Settings/Connectors.php:206 msgid "Only conversations my follows started" msgstr "" -#: src/Module/Settings/Connectors.php:217 +#: src/Module/Settings/Connectors.php:207 msgid "Conversations my follows started or commented on (default)" msgstr "" -#: src/Module/Settings/Connectors.php:218 +#: src/Module/Settings/Connectors.php:208 msgid "Any conversation my follows interacted with, including likes" msgstr "" -#: src/Module/Settings/Connectors.php:221 +#: src/Module/Settings/Connectors.php:211 msgid "Collapse sensitive posts" msgstr "" -#: src/Module/Settings/Connectors.php:221 +#: src/Module/Settings/Connectors.php:211 msgid "" "If a post is marked as \"sensitive\", it will be displayed in a collapsed " "state, if this option is enabled." msgstr "" -#: src/Module/Settings/Connectors.php:222 +#: src/Module/Settings/Connectors.php:212 msgid "Enable intelligent shortening" msgstr "" -#: src/Module/Settings/Connectors.php:222 +#: src/Module/Settings/Connectors.php:212 msgid "" "Normally the system tries to find the best link to add to shortened posts. " "If disabled, every shortened post will always point to the original " "friendica post." msgstr "" -#: src/Module/Settings/Connectors.php:223 +#: src/Module/Settings/Connectors.php:213 msgid "Enable simple text shortening" msgstr "" -#: src/Module/Settings/Connectors.php:223 +#: src/Module/Settings/Connectors.php:213 msgid "" "Normally the system shortens posts at the next line feed. If this option is " "enabled then the system will shorten the text at the maximum character " "limit." msgstr "" -#: src/Module/Settings/Connectors.php:224 +#: src/Module/Settings/Connectors.php:214 msgid "Attach the link title" msgstr "Agregar título del link" -#: src/Module/Settings/Connectors.php:224 +#: src/Module/Settings/Connectors.php:214 msgid "" "When activated, the title of the attached link will be added as a title on " "posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that" " share feed content." msgstr "Si se activa, el título del link se añade como titulo en artículos de Diaspora. Esto es bueno con contactos \"remote-self\" que comparten contenido." -#: src/Module/Settings/Connectors.php:225 +#: src/Module/Settings/Connectors.php:215 msgid "API: Use spoiler field as title" msgstr "" -#: src/Module/Settings/Connectors.php:225 +#: src/Module/Settings/Connectors.php:215 msgid "" "When activated, the \"spoiler_text\" field in the API will be used for the " "title on standalone posts. When deactivated it will be used for spoiler " "text. For comments it will always be used for spoiler text." msgstr "" -#: src/Module/Settings/Connectors.php:226 +#: src/Module/Settings/Connectors.php:216 msgid "API: Automatically links at the end of the post as attached posts" msgstr "" -#: src/Module/Settings/Connectors.php:226 +#: src/Module/Settings/Connectors.php:216 msgid "" "When activated, added links at the end of the post react the same way as " "added links in the web interface." msgstr "" -#: src/Module/Settings/Connectors.php:227 +#: src/Module/Settings/Connectors.php:217 +msgid "Article Mode" +msgstr "" + +#: src/Module/Settings/Connectors.php:217 +msgid "" +"Controls how posts with titles are transmitted. Mastodon and its forks don't" +" display the content of these posts if the post is created in the correct " +"(default) way." +msgstr "" + +#: src/Module/Settings/Connectors.php:218 msgid "Your legacy ActivityPub/GNU Social account" msgstr "" -#: src/Module/Settings/Connectors.php:227 +#: src/Module/Settings/Connectors.php:218 msgid "" "If you enter your old account name from an ActivityPub based system or your " "GNU Social/Statusnet account name here (in the format user@domain.tld), your" " contacts will be added automatically. The field will be emptied when done." msgstr "" -#: src/Module/Settings/Connectors.php:229 -msgid "Repair OStatus subscriptions" -msgstr "Reparar subscripciones OStatus" - -#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Connectors.php:222 msgid "Email/Mailbox Setup" msgstr "Configuración de Correo/Buzón" -#: src/Module/Settings/Connectors.php:234 +#: src/Module/Settings/Connectors.php:223 msgid "" "If you wish to communicate with email contacts using this service " "(optional), please specify how to connect to your mailbox." msgstr "Si quieres comunicarte con contactos de correo con este servicio (opcional), especifica cómo conectar con tu buzón." -#: src/Module/Settings/Connectors.php:235 +#: src/Module/Settings/Connectors.php:224 msgid "Last successful email check:" msgstr "Última comprobación de correo éxitosa:" -#: src/Module/Settings/Connectors.php:237 +#: src/Module/Settings/Connectors.php:226 msgid "IMAP server name:" msgstr "Nombre del servidor IMAP:" -#: src/Module/Settings/Connectors.php:238 +#: src/Module/Settings/Connectors.php:227 msgid "IMAP port:" msgstr "Puerto IMAP:" -#: src/Module/Settings/Connectors.php:239 +#: src/Module/Settings/Connectors.php:228 msgid "Security:" msgstr "Seguridad:" -#: src/Module/Settings/Connectors.php:240 +#: src/Module/Settings/Connectors.php:229 msgid "Email login name:" msgstr "Usuario de Correo:" -#: src/Module/Settings/Connectors.php:241 +#: src/Module/Settings/Connectors.php:230 msgid "Email password:" msgstr "Contraseña de Correo:" -#: src/Module/Settings/Connectors.php:242 +#: src/Module/Settings/Connectors.php:231 msgid "Reply-to address:" msgstr "Dirección de respuesta:" -#: src/Module/Settings/Connectors.php:243 +#: src/Module/Settings/Connectors.php:232 msgid "Send public posts to all email contacts:" msgstr "Enviar notificaciones públicas a todos los correos:" -#: src/Module/Settings/Connectors.php:244 +#: src/Module/Settings/Connectors.php:233 msgid "Action after import:" msgstr "Acción al importar:" -#: src/Module/Settings/Connectors.php:244 +#: src/Module/Settings/Connectors.php:233 msgid "Move to folder" msgstr "Mover a un folder" -#: src/Module/Settings/Connectors.php:245 +#: src/Module/Settings/Connectors.php:234 msgid "Move to folder:" msgstr "Mover al folder:" -#: src/Module/Settings/Delegation.php:73 +#: src/Module/Settings/Delegation.php:59 msgid "Delegation successfully granted." msgstr "Se autorizó delegación." -#: src/Module/Settings/Delegation.php:75 +#: src/Module/Settings/Delegation.php:61 msgid "Parent user not found, unavailable or password doesn't match." msgstr "Usuario padre no encontrado, o no coincide contraseña." -#: src/Module/Settings/Delegation.php:79 +#: src/Module/Settings/Delegation.php:65 msgid "Delegation successfully revoked." msgstr "Delegación revocada con éxito." -#: src/Module/Settings/Delegation.php:98 -#: src/Module/Settings/Delegation.php:120 +#: src/Module/Settings/Delegation.php:84 +#: src/Module/Settings/Delegation.php:106 msgid "" "Delegated administrators can view but not change delegation permissions." msgstr "Administradores delegados pueden ver pero no cambiar permisos delegados." -#: src/Module/Settings/Delegation.php:112 +#: src/Module/Settings/Delegation.php:98 msgid "Delegate user not found." msgstr "Usuario delegado no encontrado." -#: src/Module/Settings/Delegation.php:169 +#: src/Module/Settings/Delegation.php:155 msgid "No parent user" msgstr "No hay usuario padre" -#: src/Module/Settings/Delegation.php:180 -#: src/Module/Settings/Delegation.php:191 +#: src/Module/Settings/Delegation.php:166 +#: src/Module/Settings/Delegation.php:177 msgid "Parent User" msgstr "Usuario Padre" -#: src/Module/Settings/Delegation.php:188 +#: src/Module/Settings/Delegation.php:174 msgid "Additional Accounts" msgstr "Cuentas adicionales" -#: src/Module/Settings/Delegation.php:189 +#: src/Module/Settings/Delegation.php:175 msgid "" "Register additional accounts that are automatically connected to your " "existing account so you can manage them from this account." msgstr "Registre cuentas adicionales que son automáticamente conectadas con tu cuenta existente de forma que puedas manejarlas desde aquí." -#: src/Module/Settings/Delegation.php:190 +#: src/Module/Settings/Delegation.php:176 msgid "Register an additional account" msgstr "Registrar cuenta adicional" -#: src/Module/Settings/Delegation.php:192 +#: src/Module/Settings/Delegation.php:178 msgid "" "Parent users have total control about this account, including the account " "settings. Please double check whom you give this access." msgstr "Usuarios padres tendrán control total en esta cuenta, incluyendo ajustes. Cheque doblemente a quien le das acceso." -#: src/Module/Settings/Delegation.php:195 +#: src/Module/Settings/Delegation.php:181 msgid "Delegates" msgstr "Delegados" -#: src/Module/Settings/Delegation.php:196 +#: src/Module/Settings/Delegation.php:182 msgid "" "Delegates are able to manage all aspects of this account/page except for " "basic account settings. Please do not delegate your personal account to " "anybody that you do not trust completely." msgstr "Los delegados tienen la capacidad de gestionar todos los aspectos de esta cuenta/página, excepto los ajustes básicos de la cuenta. Por favor, no delegues tu cuenta personal a nadie en quien no confíes completamente." -#: src/Module/Settings/Delegation.php:197 +#: src/Module/Settings/Delegation.php:183 msgid "Existing Page Delegates" msgstr "Delegados actuales de la página" -#: src/Module/Settings/Delegation.php:198 +#: src/Module/Settings/Delegation.php:184 msgid "Potential Delegates" msgstr "Delegados potenciales" -#: src/Module/Settings/Delegation.php:199 +#: src/Module/Settings/Delegation.php:185 msgid "No entries." msgstr "Sin entradas." -#: src/Module/Settings/Display.php:183 +#: src/Module/Settings/Display.php:169 msgid "The theme you chose isn't available." msgstr "El tema seleccionado no disponible." -#: src/Module/Settings/Display.php:223 +#: src/Module/Settings/Display.php:209 #, php-format msgid "%s - (Unsupported)" msgstr "%s – (No puede usarse)" -#: src/Module/Settings/Display.php:260 +#: src/Module/Settings/Display.php:246 msgid "No preview" msgstr "" -#: src/Module/Settings/Display.php:261 +#: src/Module/Settings/Display.php:247 msgid "No image" msgstr "" -#: src/Module/Settings/Display.php:262 +#: src/Module/Settings/Display.php:248 msgid "Small Image" msgstr "" -#: src/Module/Settings/Display.php:263 +#: src/Module/Settings/Display.php:249 msgid "Large Image" msgstr "" -#: src/Module/Settings/Display.php:308 +#: src/Module/Settings/Display.php:294 msgid "Display Settings" msgstr "Configuración Tema/Visualización" -#: src/Module/Settings/Display.php:310 +#: src/Module/Settings/Display.php:296 msgid "General Theme Settings" msgstr "Ajustes generales de tema" -#: src/Module/Settings/Display.php:311 +#: src/Module/Settings/Display.php:297 msgid "Custom Theme Settings" msgstr "Ajustes personalizados de tema" -#: src/Module/Settings/Display.php:312 +#: src/Module/Settings/Display.php:298 msgid "Content Settings" msgstr "Ajustes de contenido" -#: src/Module/Settings/Display.php:313 view/theme/duepuntozero/config.php:86 -#: view/theme/frio/config.php:151 view/theme/quattro/config.php:88 -#: view/theme/vier/config.php:136 +#: src/Module/Settings/Display.php:299 view/theme/duepuntozero/config.php:74 +#: view/theme/frio/config.php:139 view/theme/quattro/config.php:76 +#: view/theme/vier/config.php:124 msgid "Theme settings" msgstr "Configuración del Tema" -#: src/Module/Settings/Display.php:314 +#: src/Module/Settings/Display.php:300 msgid "Timelines" msgstr "" -#: src/Module/Settings/Display.php:321 +#: src/Module/Settings/Display.php:307 msgid "Display Theme:" msgstr "Utilizar tema:" -#: src/Module/Settings/Display.php:322 +#: src/Module/Settings/Display.php:308 msgid "Mobile Theme:" msgstr "Tema móvil:" -#: src/Module/Settings/Display.php:325 +#: src/Module/Settings/Display.php:311 msgid "Number of items to display per page:" msgstr "Número de elementos a mostrar por página:" -#: src/Module/Settings/Display.php:325 src/Module/Settings/Display.php:326 +#: src/Module/Settings/Display.php:311 src/Module/Settings/Display.php:312 msgid "Maximum of 100 items" msgstr "Máximo 100 elementos" -#: src/Module/Settings/Display.php:326 +#: src/Module/Settings/Display.php:312 msgid "Number of items to display per page when viewed from mobile device:" msgstr "Cantidad de objetos a visualizar cuando se usa un móvil" -#: src/Module/Settings/Display.php:327 +#: src/Module/Settings/Display.php:313 msgid "Update browser every xx seconds" msgstr "Actualizar navegador cada xx segundos" -#: src/Module/Settings/Display.php:327 +#: src/Module/Settings/Display.php:313 msgid "Minimum of 10 seconds. Enter -1 to disable it." msgstr "Minimo 10 segundos. Ingrese -1 para deshabilitar." -#: src/Module/Settings/Display.php:328 +#: src/Module/Settings/Display.php:314 msgid "Display emoticons" msgstr "" -#: src/Module/Settings/Display.php:328 +#: src/Module/Settings/Display.php:314 msgid "When enabled, emoticons are replaced with matching symbols." msgstr "" -#: src/Module/Settings/Display.php:329 +#: src/Module/Settings/Display.php:315 msgid "Infinite scroll" msgstr "Pagina infinita (scroll)" -#: src/Module/Settings/Display.php:329 +#: src/Module/Settings/Display.php:315 msgid "Automatic fetch new items when reaching the page end." msgstr "Obtener nuevos artículos cuando alcance el final de página." -#: src/Module/Settings/Display.php:330 +#: src/Module/Settings/Display.php:316 msgid "Enable Smart Threading" msgstr "" -#: src/Module/Settings/Display.php:330 +#: src/Module/Settings/Display.php:316 msgid "Enable the automatic suppression of extraneous thread indentation." msgstr "" -#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/Display.php:317 msgid "Display the Dislike feature" msgstr "" -#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/Display.php:317 msgid "" "Display the Dislike button and dislike reactions on posts and comments." msgstr "" -#: src/Module/Settings/Display.php:332 +#: src/Module/Settings/Display.php:318 msgid "Display the resharer" msgstr "Desplegar reenviar" -#: src/Module/Settings/Display.php:332 +#: src/Module/Settings/Display.php:318 msgid "Display the first resharer as icon and text on a reshared item." msgstr "Desplegar primer reenvío con un icono y texto en artículo reenviado." -#: src/Module/Settings/Display.php:333 +#: src/Module/Settings/Display.php:319 msgid "Stay local" msgstr "Quedarse Local" -#: src/Module/Settings/Display.php:333 +#: src/Module/Settings/Display.php:319 msgid "Don't go to a remote system when following a contact link." msgstr "No ir a sistema remoto cuando siga a un link de un contacto." -#: src/Module/Settings/Display.php:334 +#: src/Module/Settings/Display.php:320 msgid "Show the post deletion checkbox" msgstr "" -#: src/Module/Settings/Display.php:334 +#: src/Module/Settings/Display.php:320 msgid "Display the checkbox for the post deletion on the network page." msgstr "" -#: src/Module/Settings/Display.php:335 +#: src/Module/Settings/Display.php:321 msgid "DIsplay the event list" msgstr "" -#: src/Module/Settings/Display.php:335 +#: src/Module/Settings/Display.php:321 msgid "Display the birthday reminder and event list on the network page." msgstr "" -#: src/Module/Settings/Display.php:336 +#: src/Module/Settings/Display.php:322 msgid "Link preview mode" msgstr "" -#: src/Module/Settings/Display.php:336 +#: src/Module/Settings/Display.php:322 msgid "Appearance of the link preview that is added to each post with a link." msgstr "" -#: src/Module/Settings/Display.php:341 +#: src/Module/Settings/Display.php:327 msgid "Bookmark" msgstr "" -#: src/Module/Settings/Display.php:343 +#: src/Module/Settings/Display.php:329 msgid "" "Enable timelines that you want to see in the channels widget. Bookmark " "timelines that you want to see in the top menu." msgstr "" -#: src/Module/Settings/Display.php:345 +#: src/Module/Settings/Display.php:331 msgid "Channel languages:" msgstr "" -#: src/Module/Settings/Display.php:345 +#: src/Module/Settings/Display.php:331 msgid "Select all languages that you want to see in your channels." msgstr "" -#: src/Module/Settings/Display.php:347 +#: src/Module/Settings/Display.php:333 msgid "Beginning of week:" msgstr "Principio de la semana:" -#: src/Module/Settings/Display.php:348 +#: src/Module/Settings/Display.php:334 msgid "Default calendar view:" msgstr "" -#: src/Module/Settings/Features.php:73 +#: src/Module/Settings/Features.php:59 msgid "Additional Features" msgstr "Opciones Adicionales" -#: src/Module/Settings/OAuth.php:71 +#: src/Module/Settings/OAuth.php:57 msgid "Connected Apps" msgstr "Aplicaciones conectadas" -#: src/Module/Settings/OAuth.php:75 +#: src/Module/Settings/OAuth.php:61 msgid "Remove authorization" msgstr "Quitar autorización" -#: src/Module/Settings/Profile/Index.php:116 +#: src/Module/Settings/Profile/Index.php:102 msgid "Display Name is required." msgstr "" -#: src/Module/Settings/Profile/Index.php:167 +#: src/Module/Settings/Profile/Index.php:156 msgid "Profile couldn't be updated." msgstr "No puede actualizarse perfil." -#: src/Module/Settings/Profile/Index.php:205 -#: src/Module/Settings/Profile/Index.php:226 +#: src/Module/Settings/Profile/Index.php:196 +#: src/Module/Settings/Profile/Index.php:217 msgid "Label:" msgstr "Etiqueta:" -#: src/Module/Settings/Profile/Index.php:206 -#: src/Module/Settings/Profile/Index.php:227 +#: src/Module/Settings/Profile/Index.php:197 +#: src/Module/Settings/Profile/Index.php:218 msgid "Value:" msgstr "Valor:" -#: src/Module/Settings/Profile/Index.php:217 -#: src/Module/Settings/Profile/Index.php:238 +#: src/Module/Settings/Profile/Index.php:208 +#: src/Module/Settings/Profile/Index.php:229 msgid "Field Permissions" msgstr "Permisos del campo" -#: src/Module/Settings/Profile/Index.php:218 -#: src/Module/Settings/Profile/Index.php:239 +#: src/Module/Settings/Profile/Index.php:209 +#: src/Module/Settings/Profile/Index.php:230 msgid "(click to open/close)" msgstr "(pulsa para abrir/cerrar)" -#: src/Module/Settings/Profile/Index.php:224 +#: src/Module/Settings/Profile/Index.php:215 msgid "Add a new profile field" msgstr "Añadir campo de perfil" -#: src/Module/Settings/Profile/Index.php:247 +#: src/Module/Settings/Profile/Index.php:238 msgid "" "The homepage is verified. A rel=\"me\" link back to your Friendica profile " "page was found on the homepage." msgstr "" -#: src/Module/Settings/Profile/Index.php:249 +#: src/Module/Settings/Profile/Index.php:240 #, php-format msgid "" "To verify your homepage, add a rel=\"me\" link to it, pointing to your " "profile URL (%s)." msgstr "" -#: src/Module/Settings/Profile/Index.php:255 +#: src/Module/Settings/Profile/Index.php:246 msgid "Profile Actions" msgstr "Acciones de perfil" -#: src/Module/Settings/Profile/Index.php:256 +#: src/Module/Settings/Profile/Index.php:247 msgid "Edit Profile Details" msgstr "Editar detalles de tu perfil" -#: src/Module/Settings/Profile/Index.php:258 +#: src/Module/Settings/Profile/Index.php:249 msgid "Change Profile Photo" msgstr "Cambiar imagen del Perfil" -#: src/Module/Settings/Profile/Index.php:261 +#: src/Module/Settings/Profile/Index.php:252 msgid "Profile picture" msgstr "Imagen del perfil" -#: src/Module/Settings/Profile/Index.php:262 +#: src/Module/Settings/Profile/Index.php:253 msgid "Location" msgstr "Ubicación" -#: src/Module/Settings/Profile/Index.php:263 src/Util/Temporal.php:97 -#: src/Util/Temporal.php:99 +#: src/Module/Settings/Profile/Index.php:254 src/Util/Temporal.php:83 +#: src/Util/Temporal.php:85 msgid "Miscellaneous" msgstr "Varios" -#: src/Module/Settings/Profile/Index.php:264 +#: src/Module/Settings/Profile/Index.php:255 msgid "Custom Profile Fields" msgstr "Campos personalizados de perfil" -#: src/Module/Settings/Profile/Index.php:265 src/Module/Welcome.php:58 +#: src/Module/Settings/Profile/Index.php:256 src/Module/Welcome.php:44 msgid "Upload Profile Photo" msgstr "Subir foto del Perfil" -#: src/Module/Settings/Profile/Index.php:266 +#: src/Module/Settings/Profile/Index.php:257 #, php-format msgid "" "Custom fields appear on your profile page.
\n" @@ -11013,396 +11020,396 @@ msgid "" "\t\t\t\tNon-public fields can only be seen by the selected Friendica contacts or the Friendica contacts in the selected circles.
" msgstr "" -#: src/Module/Settings/Profile/Index.php:286 +#: src/Module/Settings/Profile/Index.php:277 msgid "Street Address:" msgstr "Dirección" -#: src/Module/Settings/Profile/Index.php:287 +#: src/Module/Settings/Profile/Index.php:278 msgid "Locality/City:" msgstr "Localidad/Ciudad:" -#: src/Module/Settings/Profile/Index.php:288 +#: src/Module/Settings/Profile/Index.php:279 msgid "Region/State:" msgstr "Región/Estado:" -#: src/Module/Settings/Profile/Index.php:289 +#: src/Module/Settings/Profile/Index.php:280 msgid "Postal/Zip Code:" msgstr "Código/Zona postal:" -#: src/Module/Settings/Profile/Index.php:290 +#: src/Module/Settings/Profile/Index.php:281 msgid "Country:" msgstr "País" -#: src/Module/Settings/Profile/Index.php:292 +#: src/Module/Settings/Profile/Index.php:283 msgid "XMPP (Jabber) address:" msgstr "Dirección XMPP (Jabber):" -#: src/Module/Settings/Profile/Index.php:292 +#: src/Module/Settings/Profile/Index.php:283 msgid "" "The XMPP address will be published so that people can follow you there." msgstr "" -#: src/Module/Settings/Profile/Index.php:293 +#: src/Module/Settings/Profile/Index.php:284 msgid "Matrix (Element) address:" msgstr "" -#: src/Module/Settings/Profile/Index.php:293 +#: src/Module/Settings/Profile/Index.php:284 msgid "" "The Matrix address will be published so that people can follow you there." msgstr "" -#: src/Module/Settings/Profile/Index.php:294 +#: src/Module/Settings/Profile/Index.php:285 msgid "Homepage URL:" msgstr "Dirección de tu página:" -#: src/Module/Settings/Profile/Index.php:295 +#: src/Module/Settings/Profile/Index.php:286 msgid "Public Keywords:" msgstr "Palabras clave públicas:" -#: src/Module/Settings/Profile/Index.php:295 +#: src/Module/Settings/Profile/Index.php:286 msgid "(Used for suggesting potential friends, can be seen by others)" msgstr "(Utilizadas para sugerir amigos potenciales, otros pueden verlo)" -#: src/Module/Settings/Profile/Index.php:296 +#: src/Module/Settings/Profile/Index.php:287 msgid "Private Keywords:" msgstr "Palabras clave privadas:" -#: src/Module/Settings/Profile/Index.php:296 +#: src/Module/Settings/Profile/Index.php:287 msgid "(Used for searching profiles, never shown to others)" msgstr "(Utilizadas para buscar perfiles, nunca se muestra a otros)" -#: src/Module/Settings/Profile/Photo/Crop.php:107 -#: src/Module/Settings/Profile/Photo/Crop.php:125 -#: src/Module/Settings/Profile/Photo/Crop.php:143 -#: src/Module/Settings/Profile/Photo/Index.php:100 +#: src/Module/Settings/Profile/Photo/Crop.php:93 +#: src/Module/Settings/Profile/Photo/Crop.php:111 +#: src/Module/Settings/Profile/Photo/Crop.php:129 +#: src/Module/Settings/Profile/Photo/Index.php:86 #, php-format msgid "Image size reduction [%s] failed." msgstr "Ha fallado la reducción de las dimensiones de la imagen [%s]." -#: src/Module/Settings/Profile/Photo/Crop.php:150 +#: src/Module/Settings/Profile/Photo/Crop.php:136 msgid "" "Shift-reload the page or clear browser cache if the new photo does not " "display immediately." msgstr "Recarga la página o limpia la caché del navegador si la foto nueva no aparece inmediatamente." -#: src/Module/Settings/Profile/Photo/Crop.php:155 +#: src/Module/Settings/Profile/Photo/Crop.php:141 msgid "Unable to process image" msgstr "Imposible procesar la imagen" -#: src/Module/Settings/Profile/Photo/Crop.php:174 +#: src/Module/Settings/Profile/Photo/Crop.php:160 msgid "Photo not found." msgstr "No se encontró foto." -#: src/Module/Settings/Profile/Photo/Crop.php:196 +#: src/Module/Settings/Profile/Photo/Crop.php:182 msgid "Profile picture successfully updated." msgstr "Foto de perfil actualizado." -#: src/Module/Settings/Profile/Photo/Crop.php:222 -#: src/Module/Settings/Profile/Photo/Crop.php:226 +#: src/Module/Settings/Profile/Photo/Crop.php:208 +#: src/Module/Settings/Profile/Photo/Crop.php:212 msgid "Crop Image" msgstr "Recortar imagen" -#: src/Module/Settings/Profile/Photo/Crop.php:223 +#: src/Module/Settings/Profile/Photo/Crop.php:209 msgid "Please adjust the image cropping for optimum viewing." msgstr "Por favor, ajusta el recorte de la imagen para optimizarla." -#: src/Module/Settings/Profile/Photo/Crop.php:225 +#: src/Module/Settings/Profile/Photo/Crop.php:211 msgid "Use Image As Is" msgstr "Usar imagen como esta" -#: src/Module/Settings/Profile/Photo/Index.php:46 +#: src/Module/Settings/Profile/Photo/Index.php:32 msgid "Missing uploaded image." msgstr "Falta la imágen subida" -#: src/Module/Settings/Profile/Photo/Index.php:123 +#: src/Module/Settings/Profile/Photo/Index.php:109 msgid "Profile Picture Settings" msgstr "Ajustes de Foto del Perfil" -#: src/Module/Settings/Profile/Photo/Index.php:124 +#: src/Module/Settings/Profile/Photo/Index.php:110 msgid "Current Profile Picture" msgstr "Foto de Perfil Actual" -#: src/Module/Settings/Profile/Photo/Index.php:125 +#: src/Module/Settings/Profile/Photo/Index.php:111 msgid "Upload Profile Picture" msgstr "Subir foto del Perfil" -#: src/Module/Settings/Profile/Photo/Index.php:126 +#: src/Module/Settings/Profile/Photo/Index.php:112 msgid "Upload Picture:" msgstr "Subir foto:" -#: src/Module/Settings/Profile/Photo/Index.php:131 +#: src/Module/Settings/Profile/Photo/Index.php:117 msgid "or" msgstr "o" -#: src/Module/Settings/Profile/Photo/Index.php:133 +#: src/Module/Settings/Profile/Photo/Index.php:119 msgid "skip this step" msgstr "saltar este paso" -#: src/Module/Settings/Profile/Photo/Index.php:135 +#: src/Module/Settings/Profile/Photo/Index.php:121 msgid "select a photo from your photo albums" msgstr "elige una foto de tus álbumes" -#: src/Module/Settings/RemoveMe.php:76 +#: src/Module/Settings/RemoveMe.php:62 msgid "" "There was a validation error, please make sure you're logged in with the " "account you want to remove and try again." msgstr "" -#: src/Module/Settings/RemoveMe.php:76 +#: src/Module/Settings/RemoveMe.php:62 msgid "If this error persists, please contact your administrator." msgstr "" -#: src/Module/Settings/RemoveMe.php:90 -#: src/Navigation/Notifications/Repository/Notify.php:471 -#: src/Navigation/Notifications/Repository/Notify.php:492 +#: src/Module/Settings/RemoveMe.php:76 +#: src/Navigation/Notifications/Repository/Notify.php:457 +#: src/Navigation/Notifications/Repository/Notify.php:478 msgid "[Friendica System Notify]" msgstr "[Friendica Sistema de Notificaciones]" -#: src/Module/Settings/RemoveMe.php:90 +#: src/Module/Settings/RemoveMe.php:76 msgid "User deleted their account" msgstr "Usuario borró su cienta" -#: src/Module/Settings/RemoveMe.php:91 +#: src/Module/Settings/RemoveMe.php:77 msgid "" "On your Friendica node an user deleted their account. Please ensure that " "their data is removed from the backups." msgstr "En tu nodo de Friendica, un usuario eliminó su cuenta. Asegúrese de quesus datos se eliminan de los respaldos." -#: src/Module/Settings/RemoveMe.php:92 +#: src/Module/Settings/RemoveMe.php:78 #, php-format msgid "The user id is %d" msgstr "El Id de Usuario es %d" -#: src/Module/Settings/RemoveMe.php:105 +#: src/Module/Settings/RemoveMe.php:91 msgid "Your account has been successfully removed. Bye bye!" msgstr "" -#: src/Module/Settings/RemoveMe.php:130 +#: src/Module/Settings/RemoveMe.php:116 msgid "Remove My Account" msgstr "Eliminar mi cuenta" -#: src/Module/Settings/RemoveMe.php:131 +#: src/Module/Settings/RemoveMe.php:117 msgid "" "This will completely remove your account. Once this has been done it is not " "recoverable." msgstr "Esto eliminará por completo tu cuenta. Una vez hecho no puede deshacerse." -#: src/Module/Settings/RemoveMe.php:136 +#: src/Module/Settings/RemoveMe.php:122 msgid "Please enter your password for verification:" msgstr "Introduce tu contraseña para verificación:" -#: src/Module/Settings/Server/Action.php:60 +#: src/Module/Settings/Server/Action.php:46 msgid "Do you want to ignore this server?" msgstr "" -#: src/Module/Settings/Server/Action.php:64 +#: src/Module/Settings/Server/Action.php:50 msgid "Do you want to unignore this server?" msgstr "" -#: src/Module/Settings/Server/Action.php:74 -#: src/Module/Settings/Server/Index.php:104 +#: src/Module/Settings/Server/Action.php:60 +#: src/Module/Settings/Server/Index.php:90 msgid "Remote server settings" msgstr "" -#: src/Module/Settings/Server/Action.php:77 +#: src/Module/Settings/Server/Action.php:63 msgid "Server URL" msgstr "" -#: src/Module/Settings/Server/Index.php:78 +#: src/Module/Settings/Server/Index.php:64 msgid "Settings saved" msgstr "" -#: src/Module/Settings/Server/Index.php:105 +#: src/Module/Settings/Server/Index.php:91 msgid "" "Here you can find all the remote servers you have taken individual " "moderation actions against. For a list of servers your node has blocked, " "please check out the Information page." msgstr "" -#: src/Module/Settings/Server/Index.php:110 +#: src/Module/Settings/Server/Index.php:96 msgid "Delete all your settings for the remote server" msgstr "" -#: src/Module/Settings/Server/Index.php:111 +#: src/Module/Settings/Server/Index.php:97 msgid "Save changes" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:69 -#: src/Module/Settings/TwoFactor/Recovery.php:67 -#: src/Module/Settings/TwoFactor/Trusted.php:70 -#: src/Module/Settings/TwoFactor/Verify.php:72 +#: src/Module/Settings/TwoFactor/AppSpecific.php:55 +#: src/Module/Settings/TwoFactor/Recovery.php:53 +#: src/Module/Settings/TwoFactor/Trusted.php:56 +#: src/Module/Settings/TwoFactor/Verify.php:58 msgid "Please enter your password to access this page." msgstr "Ingresa tu contraseña para acceder a la página." -#: src/Module/Settings/TwoFactor/AppSpecific.php:87 +#: src/Module/Settings/TwoFactor/AppSpecific.php:73 msgid "App-specific password generation failed: The description is empty." msgstr "Generación de Contraseña de la App fallida: Sin explicación" -#: src/Module/Settings/TwoFactor/AppSpecific.php:90 +#: src/Module/Settings/TwoFactor/AppSpecific.php:76 msgid "" "App-specific password generation failed: This description already exists." msgstr "Generación de contraseña de App fallida: Ya existe descripción." -#: src/Module/Settings/TwoFactor/AppSpecific.php:94 +#: src/Module/Settings/TwoFactor/AppSpecific.php:80 msgid "New app-specific password generated." msgstr "Nueva contraseña de la App generada." -#: src/Module/Settings/TwoFactor/AppSpecific.php:100 +#: src/Module/Settings/TwoFactor/AppSpecific.php:86 msgid "App-specific passwords successfully revoked." msgstr "Contraseñas de la App fueron revocadas." -#: src/Module/Settings/TwoFactor/AppSpecific.php:110 +#: src/Module/Settings/TwoFactor/AppSpecific.php:96 msgid "App-specific password successfully revoked." msgstr "Contraseña de la App revocada." -#: src/Module/Settings/TwoFactor/AppSpecific.php:131 +#: src/Module/Settings/TwoFactor/AppSpecific.php:117 msgid "Two-factor app-specific passwords" msgstr "Contraseña de la App de 2 Factores" -#: src/Module/Settings/TwoFactor/AppSpecific.php:133 +#: src/Module/Settings/TwoFactor/AppSpecific.php:119 msgid "" "App-specific passwords are randomly generated passwords used instead your" " regular password to authenticate your account on third-party applications " "that don't support two-factor authentication.
" msgstr "Contraseñas de la App son contraseñas aleatorias que se usan en lugar de la contraseña normal para autenticarte usando Apps de 3ras compañías que no soportan autenticación de 2 factores.
" -#: src/Module/Settings/TwoFactor/AppSpecific.php:134 +#: src/Module/Settings/TwoFactor/AppSpecific.php:120 msgid "" "Make sure to copy your new app-specific password now. You won’t be able to " "see it again!" msgstr "Asegurate de copiar tu contraseña de la App ahora. No podrás verla de nuevo!" -#: src/Module/Settings/TwoFactor/AppSpecific.php:138 +#: src/Module/Settings/TwoFactor/AppSpecific.php:124 msgid "Last Used" msgstr "Usada desde" -#: src/Module/Settings/TwoFactor/AppSpecific.php:139 +#: src/Module/Settings/TwoFactor/AppSpecific.php:125 msgid "Revoke" msgstr "Revocar" -#: src/Module/Settings/TwoFactor/AppSpecific.php:140 +#: src/Module/Settings/TwoFactor/AppSpecific.php:126 msgid "Revoke All" msgstr "Revocar todo" -#: src/Module/Settings/TwoFactor/AppSpecific.php:143 +#: src/Module/Settings/TwoFactor/AppSpecific.php:129 msgid "" "When you generate a new app-specific password, you must use it right away, " "it will be shown to you once after you generate it." msgstr "Cuando generas nueva contraseña de la App, debes verla de inmediato, se te mostrará solo una vez cuando la generes." -#: src/Module/Settings/TwoFactor/AppSpecific.php:144 +#: src/Module/Settings/TwoFactor/AppSpecific.php:130 msgid "Generate new app-specific password" msgstr "Generar nueva contraseña de la App" -#: src/Module/Settings/TwoFactor/AppSpecific.php:145 +#: src/Module/Settings/TwoFactor/AppSpecific.php:131 msgid "Friendiqa on my Fairphone 2..." msgstr "Friendica en mimóvil 2" -#: src/Module/Settings/TwoFactor/AppSpecific.php:146 +#: src/Module/Settings/TwoFactor/AppSpecific.php:132 msgid "Generate" msgstr "Generar" -#: src/Module/Settings/TwoFactor/Index.php:88 +#: src/Module/Settings/TwoFactor/Index.php:74 msgid "Two-factor authentication successfully disabled." msgstr "La autenticación de dos factores se ha desactivado correctamente." -#: src/Module/Settings/TwoFactor/Index.php:141 +#: src/Module/Settings/TwoFactor/Index.php:127 msgid "" "Use an application on a mobile device to get two-factor authentication " "codes when prompted on login.
" msgstr "Usa una aplicación en un móvil para obtener códigos de autentificación de 2 factores cuando ingreses.
" -#: src/Module/Settings/TwoFactor/Index.php:145 +#: src/Module/Settings/TwoFactor/Index.php:131 msgid "Authenticator app" msgstr "Autenticador" -#: src/Module/Settings/TwoFactor/Index.php:146 +#: src/Module/Settings/TwoFactor/Index.php:132 msgid "Configured" msgstr "Configurado" -#: src/Module/Settings/TwoFactor/Index.php:146 +#: src/Module/Settings/TwoFactor/Index.php:132 msgid "Not Configured" msgstr "Sin configurar" -#: src/Module/Settings/TwoFactor/Index.php:147 +#: src/Module/Settings/TwoFactor/Index.php:133 msgid "You haven't finished configuring your authenticator app.
" msgstr "No has concluido de configurar tu app Autentificador.
" -#: src/Module/Settings/TwoFactor/Index.php:148 +#: src/Module/Settings/TwoFactor/Index.php:134 msgid "Your authenticator app is correctly configured.
" msgstr "Tu autenticador está configurado correctamente.
" -#: src/Module/Settings/TwoFactor/Index.php:150 +#: src/Module/Settings/TwoFactor/Index.php:136 msgid "Recovery codes" msgstr "Códigos de recuperación" -#: src/Module/Settings/TwoFactor/Index.php:151 +#: src/Module/Settings/TwoFactor/Index.php:137 msgid "Remaining valid codes" msgstr "Códigos válidos restantes" -#: src/Module/Settings/TwoFactor/Index.php:153 +#: src/Module/Settings/TwoFactor/Index.php:139 msgid "" "These one-use codes can replace an authenticator app code in case you " "have lost access to it.
" msgstr "Estos códigos de una sola vez pueden reemplazar la app Autenticador si perdieras acceso a ella.
" -#: src/Module/Settings/TwoFactor/Index.php:155 +#: src/Module/Settings/TwoFactor/Index.php:141 msgid "App-specific passwords" msgstr "Contraseñas específicas de la App" -#: src/Module/Settings/TwoFactor/Index.php:156 +#: src/Module/Settings/TwoFactor/Index.php:142 msgid "Generated app-specific passwords" msgstr "Generadas contraseñas específicas de App" -#: src/Module/Settings/TwoFactor/Index.php:158 +#: src/Module/Settings/TwoFactor/Index.php:144 msgid "" "These randomly generated passwords allow you to authenticate on apps not " "supporting two-factor authentication.
" msgstr "Estas contraseñas generadas automáticamente te permiten entrar con apps que no permitan Autenticación de 2 factores.
" -#: src/Module/Settings/TwoFactor/Index.php:161 +#: src/Module/Settings/TwoFactor/Index.php:147 msgid "Current password:" msgstr "Contraseña actual" -#: src/Module/Settings/TwoFactor/Index.php:161 +#: src/Module/Settings/TwoFactor/Index.php:147 msgid "" "You need to provide your current password to change two-factor " "authentication settings." msgstr "necesitas tu contraseña actual para cambiar los ajustes de autenticación de 2 factores." -#: src/Module/Settings/TwoFactor/Index.php:162 +#: src/Module/Settings/TwoFactor/Index.php:148 msgid "Enable two-factor authentication" msgstr "Habilitar Autenticación de 2 factores" -#: src/Module/Settings/TwoFactor/Index.php:163 +#: src/Module/Settings/TwoFactor/Index.php:149 msgid "Disable two-factor authentication" msgstr "Deshabilitar Autenticación de 2 factores" -#: src/Module/Settings/TwoFactor/Index.php:164 +#: src/Module/Settings/TwoFactor/Index.php:150 msgid "Show recovery codes" msgstr "Mostrar códigos de recuperación" -#: src/Module/Settings/TwoFactor/Index.php:165 +#: src/Module/Settings/TwoFactor/Index.php:151 msgid "Manage app-specific passwords" msgstr "Administrar contraseñas de la app" -#: src/Module/Settings/TwoFactor/Index.php:166 +#: src/Module/Settings/TwoFactor/Index.php:152 msgid "Manage trusted browsers" msgstr "Administrar navegadores confiables" -#: src/Module/Settings/TwoFactor/Index.php:167 +#: src/Module/Settings/TwoFactor/Index.php:153 msgid "Finish app configuration" msgstr "Completar configuración de la App" -#: src/Module/Settings/TwoFactor/Recovery.php:83 +#: src/Module/Settings/TwoFactor/Recovery.php:69 msgid "New recovery codes successfully generated." msgstr "Nuevos códigos de recuperación generados." -#: src/Module/Settings/TwoFactor/Recovery.php:109 +#: src/Module/Settings/TwoFactor/Recovery.php:95 msgid "Two-factor recovery codes" msgstr "Códigos de recuperación de 2 factores" -#: src/Module/Settings/TwoFactor/Recovery.php:111 +#: src/Module/Settings/TwoFactor/Recovery.php:97 msgid "" "Recovery codes can be used to access your account in the event you lose " "access to your device and cannot receive two-factor authentication " @@ -11411,68 +11418,68 @@ msgid "" "account.
" msgstr "Puedes usar los códigos de recuperación si perdieras acceso al móvil y no pudieras recibir códigos de autenticación de 2 Factores.
Guarda esto de manera segura! Si perdieras tu móvil sin tener los códigos de recuperación perderías el acceso a tu cuenta.
" -#: src/Module/Settings/TwoFactor/Recovery.php:113 +#: src/Module/Settings/TwoFactor/Recovery.php:99 msgid "" "When you generate new recovery codes, you must copy the new codes. Your old " "codes won’t work anymore." msgstr "Cuando generas nuevos códigos de recuperación, debes copiar los nuevos códigos. los anteriores ya no funcionarán." -#: src/Module/Settings/TwoFactor/Recovery.php:114 +#: src/Module/Settings/TwoFactor/Recovery.php:100 msgid "Generate new recovery codes" msgstr "Generar nuevos códigos de recuperación" -#: src/Module/Settings/TwoFactor/Recovery.php:116 +#: src/Module/Settings/TwoFactor/Recovery.php:102 msgid "Next: Verification" msgstr "Siguiente: Verificación" -#: src/Module/Settings/TwoFactor/Trusted.php:87 +#: src/Module/Settings/TwoFactor/Trusted.php:73 msgid "Trusted browsers successfully removed." msgstr "Los navegadores de confianza se eliminaron correctamente." -#: src/Module/Settings/TwoFactor/Trusted.php:97 +#: src/Module/Settings/TwoFactor/Trusted.php:83 msgid "Trusted browser successfully removed." msgstr "Navegador de confianza se eliminó correctamente." -#: src/Module/Settings/TwoFactor/Trusted.php:139 +#: src/Module/Settings/TwoFactor/Trusted.php:125 msgid "Two-factor Trusted Browsers" msgstr "Navegadores de confianza de dos factores" -#: src/Module/Settings/TwoFactor/Trusted.php:140 +#: src/Module/Settings/TwoFactor/Trusted.php:126 msgid "" "Trusted browsers are individual browsers you chose to skip two-factor " "authentication to access Friendica. Please use this feature sparingly, as it" " can negate the benefit of two-factor authentication." msgstr "Los navegadores de confianza son navegadores individuales que eligió para omitir la autenticación de dos factores para acceder a Friendica. Utilice esta función con moderación, ya que puede anular el beneficio de la autenticación de dos factores." -#: src/Module/Settings/TwoFactor/Trusted.php:141 +#: src/Module/Settings/TwoFactor/Trusted.php:127 msgid "Device" msgstr "Dispositivo" -#: src/Module/Settings/TwoFactor/Trusted.php:142 +#: src/Module/Settings/TwoFactor/Trusted.php:128 msgid "OS" msgstr "OS/SO" -#: src/Module/Settings/TwoFactor/Trusted.php:144 +#: src/Module/Settings/TwoFactor/Trusted.php:130 msgid "Trusted" msgstr "Confiable" -#: src/Module/Settings/TwoFactor/Trusted.php:145 +#: src/Module/Settings/TwoFactor/Trusted.php:131 msgid "Created At" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:146 +#: src/Module/Settings/TwoFactor/Trusted.php:132 msgid "Last Use" msgstr "Usada desde" -#: src/Module/Settings/TwoFactor/Trusted.php:148 +#: src/Module/Settings/TwoFactor/Trusted.php:134 msgid "Remove All" msgstr "Borrar todo" -#: src/Module/Settings/TwoFactor/Verify.php:94 +#: src/Module/Settings/TwoFactor/Verify.php:80 msgid "Two-factor authentication successfully activated." msgstr "Se activó autenticación de 2 Factores." -#: src/Module/Settings/TwoFactor/Verify.php:128 +#: src/Module/Settings/TwoFactor/Verify.php:114 #, php-format msgid "" "Or you can submit the authentication settings manually:
\n" @@ -11492,105 +11499,105 @@ msgid "" "" msgstr "O puedes ajustar manualmente la autenticación:
\nPlease scan this QR Code with your authenticator app and submit the " "provided code.
" msgstr "Escanee este código QR con su aplicación de autenticación y envíe el código proporcionado.
" -#: src/Module/Settings/TwoFactor/Verify.php:152 +#: src/Module/Settings/TwoFactor/Verify.php:138 #, php-format msgid "" "Or you can open the following URL in your mobile device:
" msgstr "O puede abrir la siguiente URL en su dispositivo móvil:
" -#: src/Module/Settings/TwoFactor/Verify.php:159 +#: src/Module/Settings/TwoFactor/Verify.php:145 msgid "Verify code and enable two-factor authentication" msgstr "Verifica código y habilita autenticación de 2 Factores" -#: src/Module/Settings/UserExport.php:90 +#: src/Module/Settings/UserExport.php:76 msgid "Export account" msgstr "Exportar cuenta" -#: src/Module/Settings/UserExport.php:90 +#: src/Module/Settings/UserExport.php:76 msgid "" "Export your account info and contacts. Use this to make a backup of your " "account and/or to move it to another server." msgstr "Exporta la información de tu cuenta y tus contactos. Úsalo para guardar una copia de seguridad de tu cuenta y/o moverla a otro servidor." -#: src/Module/Settings/UserExport.php:91 +#: src/Module/Settings/UserExport.php:77 msgid "Export all" msgstr "Exportar todo" -#: src/Module/Settings/UserExport.php:91 +#: src/Module/Settings/UserExport.php:77 msgid "" "Export your account info, contacts and all your items as json. Could be a " "very big file, and could take a lot of time. Use this to make a full backup " "of your account (photos are not exported)" msgstr "Exportar tu info de cuenta, contactos y artículos en formato JSON. Podría ser un archivo grande, y tomar mucho tiempo. Solo usalo para respaldo completo de tu cuenta (fotos no se exportan)" -#: src/Module/Settings/UserExport.php:92 +#: src/Module/Settings/UserExport.php:78 msgid "Export Contacts to CSV" msgstr "Exportar Contactos como archivo CSV" -#: src/Module/Settings/UserExport.php:92 +#: src/Module/Settings/UserExport.php:78 msgid "" "Export the list of the accounts you are following as CSV file. Compatible to" " e.g. Mastodon." msgstr "Exportar la lista de cuentas que sigues como archivo CSV. Compatible con ej. Mastodon." -#: src/Module/Special/DisplayNotFound.php:35 +#: src/Module/Special/DisplayNotFound.php:21 msgid "The top-level post isn't visible." msgstr "" -#: src/Module/Special/DisplayNotFound.php:36 +#: src/Module/Special/DisplayNotFound.php:22 msgid "The top-level post was deleted." msgstr "" -#: src/Module/Special/DisplayNotFound.php:37 +#: src/Module/Special/DisplayNotFound.php:23 msgid "" "This node has blocked the top-level author or the author of the shared post." msgstr "" -#: src/Module/Special/DisplayNotFound.php:38 +#: src/Module/Special/DisplayNotFound.php:24 msgid "" "You have ignored or blocked the top-level author or the author of the shared" " post." msgstr "" -#: src/Module/Special/DisplayNotFound.php:39 +#: src/Module/Special/DisplayNotFound.php:25 msgid "" "You have ignored the top-level author's server or the shared post author's " "server." msgstr "" -#: src/Module/Special/DisplayNotFound.php:45 +#: src/Module/Special/DisplayNotFound.php:31 msgid "Conversation Not Found" msgstr "" -#: src/Module/Special/DisplayNotFound.php:46 +#: src/Module/Special/DisplayNotFound.php:32 msgid "Unfortunately, the requested conversation isn't available to you." msgstr "" -#: src/Module/Special/DisplayNotFound.php:47 +#: src/Module/Special/DisplayNotFound.php:33 msgid "Possible reasons include:" msgstr "" -#: src/Module/Special/HTTPException.php:78 +#: src/Module/Special/HTTPException.php:64 msgid "Stack trace:" msgstr "Seguimiento de pila:" -#: src/Module/Special/HTTPException.php:83 +#: src/Module/Special/HTTPException.php:69 #, php-format msgid "Exception thrown in %s:%d" msgstr "Excepción lanzada en %s:%d" -#: src/Module/Tos.php:58 src/Module/Tos.php:107 +#: src/Module/Tos.php:44 src/Module/Tos.php:93 msgid "" "At the time of registration, and for providing communications between the " "user account and their contacts, the user has to provide a display name (pen" @@ -11603,14 +11610,14 @@ msgid "" "settings, it is not necessary for communication." msgstr "En el momento del registro, y para proporcionar comunicaciones entre la cuenta de usuario y sus contactos, el usuario debe proporcionar un nombre para mostrar (seudónimo), un nombre de usuario (apodo) y una dirección de correo que funcione. Los nombres seran visibles en tu página de perfil de la cuenta por cualquier visitante de la página, incluso si no se muestran otros detalles del perfil. La dirección de correo solo se usará para enviar notificaciones al usuario sobre interacciones, pero no será visible. La lista de una cuenta en el directorio de usuarios del nodo o el directorio de usuarios global es opcional y se puede controlar en los Ajustes de Configuración, no es necesario para la comunicación." -#: src/Module/Tos.php:59 src/Module/Tos.php:108 +#: src/Module/Tos.php:45 src/Module/Tos.php:94 msgid "" "This data is required for communication and is passed on to the nodes of the" " communication partners and is stored there. Users can enter additional " "private data that may be transmitted to the communication partners accounts." msgstr "Estos datos son necesarios para la comunicación y se transmiten a los nodos de los socios de comunicación y se almacena allí. Los usuarios pueden ingresar datos privados que pueden ser transmitidos a las cuentas de los socios de comunicación." -#: src/Module/Tos.php:60 src/Module/Tos.php:109 +#: src/Module/Tos.php:46 src/Module/Tos.php:95 #, php-format msgid "" "At any point in time a logged in user can export their account data from the" @@ -11621,98 +11628,98 @@ msgid "" "from the nodes of the communication partners." msgstr "" -#: src/Module/Tos.php:63 src/Module/Tos.php:106 +#: src/Module/Tos.php:49 src/Module/Tos.php:92 msgid "Privacy Statement" msgstr "Declaración de Privacidad" -#: src/Module/Tos.php:103 +#: src/Module/Tos.php:89 msgid "Rules" msgstr "" -#: src/Module/Update/Display.php:45 +#: src/Module/Update/Display.php:31 msgid "Parameter uri_id is missing." msgstr "" -#: src/Module/Update/Display.php:55 +#: src/Module/Update/Display.php:41 msgid "The requested item doesn't exist or has been deleted." msgstr "El artículo solicitado no existe o fue borrado." -#: src/Module/User/Delegation.php:146 +#: src/Module/User/Delegation.php:132 #, php-format msgid "You are now logged in as %s" msgstr "" -#: src/Module/User/Delegation.php:185 +#: src/Module/User/Delegation.php:171 msgid "Switch between your accounts" msgstr "Cambiar entre tus cuentas" -#: src/Module/User/Delegation.php:186 +#: src/Module/User/Delegation.php:172 msgid "Manage your accounts" msgstr "Administrar tus cuentas" -#: src/Module/User/Delegation.php:187 +#: src/Module/User/Delegation.php:173 msgid "" "Toggle between different identities or community/group pages which share " "your account details or which you have been granted \"manage\" permissions" msgstr "Cambia entre diferentes identidades o páginas de Comunidad/Grupos que comparten los detalles de tu cuenta o sobre los que tienes permisos para administrar" -#: src/Module/User/Delegation.php:188 +#: src/Module/User/Delegation.php:174 msgid "Select an identity to manage: " msgstr "Selecciona una identidad a gestionar:" -#: src/Module/User/Import.php:104 +#: src/Module/User/Import.php:90 msgid "User imports on closed servers can only be done by an administrator." msgstr "Importar usuarios en sitios cerrados solo lo hace el Administrador." -#: src/Module/User/Import.php:120 +#: src/Module/User/Import.php:106 msgid "Move account" msgstr "Mover cuenta" -#: src/Module/User/Import.php:121 +#: src/Module/User/Import.php:107 msgid "You can import an account from another Friendica server." msgstr "Puedes importar una cuenta desde otro servidor de Friendica." -#: src/Module/User/Import.php:122 +#: src/Module/User/Import.php:108 msgid "" "You need to export your account from the old server and upload it here. We " "will recreate your old account here with all your contacts. We will try also" " to inform your friends that you moved here." msgstr "Necesitas exportar tu cuenta del antiguo servidor y subirla aquí. Volveremos a crear tu antigua cuenta con todos tus contactos aquí. También intentaremos de informar a tus amigos de que te has mudado." -#: src/Module/User/Import.php:123 +#: src/Module/User/Import.php:109 msgid "" "This feature is experimental. We can't import contacts from the OStatus " "network (GNU Social/Statusnet) or from Diaspora" msgstr "Característica experimental. No podemos importar contactos desde la red OStatus (statusnet/identi.ca) o desde Diaspora*" -#: src/Module/User/Import.php:124 +#: src/Module/User/Import.php:110 msgid "Account file" msgstr "Archivo de la cuenta" -#: src/Module/User/Import.php:124 +#: src/Module/User/Import.php:110 msgid "" "To export your account, go to \"Settings->Export your personal data\" and " "select \"Export account\"" msgstr "Para exportar el perfil vaya a \"Configuración -> Exportar sus datos personales\" y seleccione \"Exportar cuenta\"" -#: src/Module/User/Import.php:218 +#: src/Module/User/Import.php:204 msgid "Error decoding account file" msgstr "Error decodificando el archivo de cuenta" -#: src/Module/User/Import.php:223 +#: src/Module/User/Import.php:209 msgid "Error! No version data in file! This is not a Friendica account file?" msgstr "Error! No hay datos de versión en el archivo! ¿Es esto de una cuenta friendica? " -#: src/Module/User/Import.php:231 +#: src/Module/User/Import.php:217 #, php-format msgid "User '%s' already exists on this server!" msgstr "La cuenta '%s' ya existe en este servidor!" -#: src/Module/User/Import.php:268 +#: src/Module/User/Import.php:254 msgid "User creation error" msgstr "Error al crear la cuenta" -#: src/Module/User/Import.php:317 +#: src/Module/User/Import.php:303 #, php-format msgid "%d contact not imported" msgid_plural "%d contacts not imported" @@ -11720,23 +11727,23 @@ msgstr[0] "%d contacto no importado" msgstr[1] "%d contactos no importados" msgstr[2] "%d contactos no importados" -#: src/Module/User/Import.php:366 +#: src/Module/User/Import.php:352 msgid "User profile creation error" msgstr "Error al crear Perfil de Usuario" -#: src/Module/User/Import.php:417 +#: src/Module/User/Import.php:403 msgid "Done. You can now login with your username and password" msgstr "Hecho. Ahora podes ingresar con tu usuario y contraseña." -#: src/Module/Welcome.php:44 +#: src/Module/Welcome.php:30 msgid "Welcome to Friendica" msgstr "Bienvenido a Friendica" -#: src/Module/Welcome.php:45 +#: src/Module/Welcome.php:31 msgid "New Member Checklist" msgstr "Nuevos miembros" -#: src/Module/Welcome.php:46 +#: src/Module/Welcome.php:32 msgid "" "We would like to offer some tips and links to help make your experience " "enjoyable. Click any item to visit the relevant page. A link to this page " @@ -11744,33 +11751,33 @@ msgid "" "registration and then will quietly disappear." msgstr "Nos gustaría ofrecerte algunos consejos y enlaces para ayudar a hacer tu experiencia más amena. Pulsa en cualquier elemento para visitar la página correspondiente. Un enlace a esta página será visible desde tu página de inicio durante las dos semanas siguientes a tu inscripción y luego desaparecerá." -#: src/Module/Welcome.php:48 +#: src/Module/Welcome.php:34 msgid "Getting Started" msgstr "Iniciando.." -#: src/Module/Welcome.php:49 +#: src/Module/Welcome.php:35 msgid "Friendica Walk-Through" msgstr "Visita guiada a Friendica" -#: src/Module/Welcome.php:50 +#: src/Module/Welcome.php:36 msgid "" "On your Quick Start page - find a brief introduction to your " "profile and network tabs, make some new connections, and find some groups to" " join." msgstr "En tu página de Inicio Rápido - busca una introducción breve para tus pestañas de perfil y red, haz algunas conexiones nuevas, y busca algunos grupos a los que unirte." -#: src/Module/Welcome.php:53 +#: src/Module/Welcome.php:39 msgid "Go to Your Settings" msgstr "Ir a tus Ajustes" -#: src/Module/Welcome.php:54 +#: src/Module/Welcome.php:40 msgid "" "On your Settings page - change your initial password. Also make a " "note of your Identity Address. This looks just like an email address - and " "will be useful in making friends on the free social web." msgstr "En la página de Configuración puedes cambiar tu contraseña inicial. También aparece tu ID (Identity Address). Es parecida a una dirección de correo y te servirá para conectar con gente de redes sociales libres." -#: src/Module/Welcome.php:55 +#: src/Module/Welcome.php:41 msgid "" "Review the other settings, particularly the privacy settings. An unpublished" " directory listing is like having an unlisted phone number. In general, you " @@ -11778,77 +11785,77 @@ msgid "" "potential friends know exactly how to find you." msgstr "Revisa las otras configuraciones, especialmente la configuración de privacidad. Un listado de directorio sin publicar es como tener un número de teléfono sin publicar. Normalmente querrás publicar tu listado, a menos que tus amigos y amigos potenciales sepan cómo ponerse en contacto contigo." -#: src/Module/Welcome.php:59 +#: src/Module/Welcome.php:45 msgid "" "Upload a profile photo if you have not done so already. Studies have shown " "that people with real photos of themselves are ten times more likely to make" " friends than people who do not." msgstr "Sube una foto para tu perfil si no lo has hecho aún. Los estudios han demostrado que la gente que usa fotos suyas reales tienen diez veces más éxito a la hora de entablar amistad que las que no." -#: src/Module/Welcome.php:60 +#: src/Module/Welcome.php:46 msgid "Edit Your Profile" msgstr "Editar tu perfil" -#: src/Module/Welcome.php:61 +#: src/Module/Welcome.php:47 msgid "" "Edit your default profile to your liking. Review the " "settings for hiding your list of friends and hiding the profile from unknown" " visitors." msgstr "Edita tu perfil predeterminado como quieras. Revisa la configuración para ocultar tu lista de amigos o tu perfil a los visitantes desconocidos." -#: src/Module/Welcome.php:62 +#: src/Module/Welcome.php:48 msgid "Profile Keywords" msgstr "Palabras clave del perfil" -#: src/Module/Welcome.php:63 +#: src/Module/Welcome.php:49 msgid "" "Set some public keywords for your profile which describe your interests. We " "may be able to find other people with similar interests and suggest " "friendships." msgstr "Establece algunas palabras clave públicas para tu perfil que describan tus intereses. Podremos encontrar a otras personas con intereses similares y sugerir amistades." -#: src/Module/Welcome.php:65 +#: src/Module/Welcome.php:51 msgid "Connecting" msgstr "Conectando" -#: src/Module/Welcome.php:67 +#: src/Module/Welcome.php:53 msgid "Importing Emails" msgstr "Importando correos electrónicos" -#: src/Module/Welcome.php:68 +#: src/Module/Welcome.php:54 msgid "" "Enter your email access information on your Connector Settings page if you " "wish to import and interact with friends or mailing lists from your email " "INBOX" msgstr "Introduce la información para acceder a tu correo en la página de Configuración del conector si quieres importar e interactuar con amigos o listas de correos del buzón de entrada de tu correo electrónico." -#: src/Module/Welcome.php:69 +#: src/Module/Welcome.php:55 msgid "Go to Your Contacts Page" msgstr "Ir a tu página de contactos" -#: src/Module/Welcome.php:70 +#: src/Module/Welcome.php:56 msgid "" "Your Contacts page is your gateway to managing friendships and connecting " "with friends on other networks. Typically you enter their address or site " "URL in the Add New Contact dialog." msgstr "Tu página de Contactos es el portal desde donde podrás manejar tus amistades y conectarte con amigos de otras redes. Normalmente introduces su dirección o la dirección de su sitio web en el recuadro \"Añadir contacto nuevo\"." -#: src/Module/Welcome.php:71 +#: src/Module/Welcome.php:57 msgid "Go to Your Site's Directory" msgstr "Ir al directorio de tu sitio" -#: src/Module/Welcome.php:72 +#: src/Module/Welcome.php:58 msgid "" "The Directory page lets you find other people in this network or other " "federated sites. Look for a Connect or Follow link on " "their profile page. Provide your own Identity Address if requested." msgstr "El Directorio te permite encontrar otras personas en esta red o en cualquier otro sitio federado. Busca algún enlace de Conectar o Seguir en su perfil. Proporciona tu direción personal si es necesario." -#: src/Module/Welcome.php:73 +#: src/Module/Welcome.php:59 msgid "Finding New People" msgstr "Encontrando nueva gente" -#: src/Module/Welcome.php:74 +#: src/Module/Welcome.php:60 msgid "" "On the side panel of the Contacts page are several tools to find new " "friends. We can match people by interest, look up people by name or " @@ -11857,412 +11864,408 @@ msgid "" "hours." msgstr "En el panel lateral de la página de Contactos existen varias herramientas para encontrar nuevos amigos. Podemos filtrar personas por sus intereses, buscar personas por nombre o por sus intereses, y ofrecerte sugerencias basadas en sus relaciones de la red. En un sitio nuevo, las sugerencias de amigos por lo general comienzan pasadas las 24 horas." -#: src/Module/Welcome.php:77 +#: src/Module/Welcome.php:63 msgid "Add Your Contacts To Circle" msgstr "" -#: src/Module/Welcome.php:78 +#: src/Module/Welcome.php:64 msgid "" "Once you have made some friends, organize them into private conversation " "circles from the sidebar of your Contacts page and then you can interact " "with each circle privately on your Network page." msgstr "" -#: src/Module/Welcome.php:80 +#: src/Module/Welcome.php:66 msgid "Why Aren't My Posts Public?" msgstr "¿Por qué mis publicaciones no son públicas?" -#: src/Module/Welcome.php:81 +#: src/Module/Welcome.php:67 msgid "" "Friendica respects your privacy. By default, your posts will only show up to" " people you've added as friends. For more information, see the help section " "from the link above." msgstr "Friendica respeta tu privacidad. Por defecto, tus publicaciones solo se mostrarán a personas que hayas añadido como amistades. Para más información, mira la sección de ayuda en el enlace de más arriba." -#: src/Module/Welcome.php:83 +#: src/Module/Welcome.php:69 msgid "Getting Help" msgstr "Consiguiendo ayuda" -#: src/Module/Welcome.php:84 +#: src/Module/Welcome.php:70 msgid "Go to the Help Section" msgstr "Ir a la sección de ayuda" -#: src/Module/Welcome.php:85 +#: src/Module/Welcome.php:71 msgid "" "Our help pages may be consulted for detail on other program" " features and resources." msgstr "Puedes consultar nuestra página de Ayuda para más información y recursos de ayuda." -#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:161 +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:147 msgid "{0} wants to follow you" msgstr "" -#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:163 +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:149 msgid "{0} has started following you" msgstr "" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:96 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:82 #, php-format msgid "%s liked %s's post" msgstr "A %s le gusta el artículo de %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:108 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:94 #, php-format msgid "%s disliked %s's post" msgstr "A %s no le gusta el artículo de %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:120 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:106 #, php-format msgid "%s is attending %s's event" msgstr "%s atenderá el evento de %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:132 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:118 #, php-format msgid "%s is not attending %s's event" msgstr "%s no atenderá el evento %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:144 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:130 #, php-format msgid "%s may attending %s's event" msgstr "%s podría asistir al evento de %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:174 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:160 #, php-format msgid "%s is now friends with %s" msgstr "%s es ahora amigo de %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:341 -#: src/Navigation/Notifications/Factory/FormattedNotify.php:379 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:327 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:365 #, php-format msgid "%s commented on %s's post" msgstr "%s comentó el artículo de %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:378 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:364 #, php-format msgid "%s created a new post" msgstr "%s creó un nuevo artículo" -#: src/Navigation/Notifications/Factory/Introduction.php:132 +#: src/Navigation/Notifications/Factory/Introduction.php:118 msgid "Friend Suggestion" msgstr "Sugerencia de amistad" -#: src/Navigation/Notifications/Factory/Introduction.php:158 +#: src/Navigation/Notifications/Factory/Introduction.php:144 msgid "Friend/Connect Request" msgstr "Solicitud de Amistad/Conexión" -#: src/Navigation/Notifications/Factory/Introduction.php:158 -msgid "New Follower" -msgstr "Nuevo seguidor" - -#: src/Navigation/Notifications/Factory/Notification.php:134 +#: src/Navigation/Notifications/Factory/Notification.php:120 #, php-format msgid "%1$s wants to follow you" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:136 +#: src/Navigation/Notifications/Factory/Notification.php:122 #, php-format msgid "%1$s has started following you" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:208 +#: src/Navigation/Notifications/Factory/Notification.php:194 #, php-format msgid "%1$s liked your comment on %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:211 +#: src/Navigation/Notifications/Factory/Notification.php:197 #, php-format msgid "%1$s liked your post %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:218 +#: src/Navigation/Notifications/Factory/Notification.php:204 #, php-format msgid "%1$s disliked your comment on %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:221 +#: src/Navigation/Notifications/Factory/Notification.php:207 #, php-format msgid "%1$s disliked your post %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:228 +#: src/Navigation/Notifications/Factory/Notification.php:214 #, php-format msgid "%1$s shared your comment %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:231 -#: src/Navigation/Notifications/Factory/Notification.php:316 +#: src/Navigation/Notifications/Factory/Notification.php:217 +#: src/Navigation/Notifications/Factory/Notification.php:302 #, php-format msgid "%1$s shared your post %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:235 -#: src/Navigation/Notifications/Factory/Notification.php:305 +#: src/Navigation/Notifications/Factory/Notification.php:221 +#: src/Navigation/Notifications/Factory/Notification.php:291 #, php-format msgid "%1$s shared the post %2$s from %3$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:237 -#: src/Navigation/Notifications/Factory/Notification.php:307 +#: src/Navigation/Notifications/Factory/Notification.php:223 +#: src/Navigation/Notifications/Factory/Notification.php:293 #, php-format msgid "%1$s shared a post from %3$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:239 -#: src/Navigation/Notifications/Factory/Notification.php:309 +#: src/Navigation/Notifications/Factory/Notification.php:225 +#: src/Navigation/Notifications/Factory/Notification.php:295 #, php-format msgid "%1$s shared the post %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:241 -#: src/Navigation/Notifications/Factory/Notification.php:311 +#: src/Navigation/Notifications/Factory/Notification.php:227 +#: src/Navigation/Notifications/Factory/Notification.php:297 #, php-format msgid "%1$s shared a post" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:249 +#: src/Navigation/Notifications/Factory/Notification.php:235 #, php-format msgid "%1$s wants to attend your event %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:256 +#: src/Navigation/Notifications/Factory/Notification.php:242 #, php-format msgid "%1$s does not want to attend your event %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:263 +#: src/Navigation/Notifications/Factory/Notification.php:249 #, php-format msgid "%1$s maybe wants to attend your event %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:270 +#: src/Navigation/Notifications/Factory/Notification.php:256 #, php-format msgid "%1$s tagged you on %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:274 +#: src/Navigation/Notifications/Factory/Notification.php:260 #, php-format msgid "%1$s replied to you on %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:278 +#: src/Navigation/Notifications/Factory/Notification.php:264 #, php-format msgid "%1$s commented in your thread %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:282 +#: src/Navigation/Notifications/Factory/Notification.php:268 #, php-format msgid "%1$s commented on your comment %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:289 +#: src/Navigation/Notifications/Factory/Notification.php:275 #, php-format msgid "%1$s commented in their thread %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:291 +#: src/Navigation/Notifications/Factory/Notification.php:277 #, php-format msgid "%1$s commented in their thread" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:293 +#: src/Navigation/Notifications/Factory/Notification.php:279 #, php-format msgid "%1$s commented in the thread %2$s from %3$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:295 +#: src/Navigation/Notifications/Factory/Notification.php:281 #, php-format msgid "%1$s commented in the thread from %3$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:300 +#: src/Navigation/Notifications/Factory/Notification.php:286 #, php-format msgid "%1$s commented on your thread %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:225 -#: src/Navigation/Notifications/Repository/Notify.php:754 +#: src/Navigation/Notifications/Repository/Notify.php:211 +#: src/Navigation/Notifications/Repository/Notify.php:740 msgid "[Friendica:Notify]" msgstr "[Friendica:Notificar]" -#: src/Navigation/Notifications/Repository/Notify.php:293 +#: src/Navigation/Notifications/Repository/Notify.php:279 #, php-format msgid "%s New mail received at %s" msgstr "%s Nuevo correo recibido %s" -#: src/Navigation/Notifications/Repository/Notify.php:295 +#: src/Navigation/Notifications/Repository/Notify.php:281 #, php-format msgid "%1$s sent you a new private message at %2$s." msgstr "%1$s te envió mensaje privado a las %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:296 +#: src/Navigation/Notifications/Repository/Notify.php:282 msgid "a private message" msgstr "un mensaje privado" -#: src/Navigation/Notifications/Repository/Notify.php:296 +#: src/Navigation/Notifications/Repository/Notify.php:282 #, php-format msgid "%1$s sent you %2$s." msgstr "%1$s te envió %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:298 +#: src/Navigation/Notifications/Repository/Notify.php:284 #, php-format msgid "Please visit %s to view and/or reply to your private messages." msgstr "Visita %s para ver y/o responder a tus mensajes privados." -#: src/Navigation/Notifications/Repository/Notify.php:328 +#: src/Navigation/Notifications/Repository/Notify.php:314 #, php-format msgid "%1$s commented on %2$s's %3$s %4$s" msgstr "%1$s comentó en %2$s %3$s %4$s" -#: src/Navigation/Notifications/Repository/Notify.php:333 +#: src/Navigation/Notifications/Repository/Notify.php:319 #, php-format msgid "%1$s commented on your %2$s %3$s" msgstr "%1$s comentó en %2$s %3$s" -#: src/Navigation/Notifications/Repository/Notify.php:337 +#: src/Navigation/Notifications/Repository/Notify.php:323 #, php-format msgid "%1$s commented on their %2$s %3$s" msgstr "%1$s comentó en su %2$s %3$s" -#: src/Navigation/Notifications/Repository/Notify.php:341 -#: src/Navigation/Notifications/Repository/Notify.php:788 +#: src/Navigation/Notifications/Repository/Notify.php:327 +#: src/Navigation/Notifications/Repository/Notify.php:774 #, php-format msgid "%1$s Comment to conversation #%2$d by %3$s" msgstr "%1$s Comentó sobre #%2$d by %3$s" -#: src/Navigation/Notifications/Repository/Notify.php:343 +#: src/Navigation/Notifications/Repository/Notify.php:329 #, php-format msgid "%s commented on an item/conversation you have been following." msgstr "%s comentó en una artículo/elemento que sigues." -#: src/Navigation/Notifications/Repository/Notify.php:347 -#: src/Navigation/Notifications/Repository/Notify.php:362 -#: src/Navigation/Notifications/Repository/Notify.php:814 +#: src/Navigation/Notifications/Repository/Notify.php:333 +#: src/Navigation/Notifications/Repository/Notify.php:348 +#: src/Navigation/Notifications/Repository/Notify.php:800 #, php-format msgid "Please visit %s to view and/or reply to the conversation." msgstr "Por favor, visita %s para ver y/o responder a la conversación." -#: src/Navigation/Notifications/Repository/Notify.php:354 +#: src/Navigation/Notifications/Repository/Notify.php:340 #, php-format msgid "%s %s posted to your profile wall" msgstr "%s %s publicó en tu perfil" -#: src/Navigation/Notifications/Repository/Notify.php:356 +#: src/Navigation/Notifications/Repository/Notify.php:342 #, php-format msgid "%1$s posted to your profile wall at %2$s" msgstr "%1$s publicó en tu perfil a las %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:357 +#: src/Navigation/Notifications/Repository/Notify.php:343 #, php-format msgid "%1$s posted to [url=%2$s]your wall[/url]" msgstr "%1$s publicó en [url=%2$s]tu perfil[/url]" -#: src/Navigation/Notifications/Repository/Notify.php:370 +#: src/Navigation/Notifications/Repository/Notify.php:356 #, php-format msgid "%s Introduction received" msgstr "%s presentación recibida" -#: src/Navigation/Notifications/Repository/Notify.php:372 +#: src/Navigation/Notifications/Repository/Notify.php:358 #, php-format msgid "You've received an introduction from '%1$s' at %2$s" msgstr "Recibiste una presentación de '%1$s' en %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:373 +#: src/Navigation/Notifications/Repository/Notify.php:359 #, php-format msgid "You've received [url=%1$s]an introduction[/url] from %2$s." msgstr "Recibiste [url=%1$s]una presentación de [/url] de %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:378 -#: src/Navigation/Notifications/Repository/Notify.php:424 +#: src/Navigation/Notifications/Repository/Notify.php:364 +#: src/Navigation/Notifications/Repository/Notify.php:410 #, php-format msgid "You may visit their profile at %s" msgstr "Puedes visitar su perfil en %s" -#: src/Navigation/Notifications/Repository/Notify.php:380 +#: src/Navigation/Notifications/Repository/Notify.php:366 #, php-format msgid "Please visit %s to approve or reject the introduction." msgstr "Visita %s para aceptar o rechazar la presentación" -#: src/Navigation/Notifications/Repository/Notify.php:387 +#: src/Navigation/Notifications/Repository/Notify.php:373 #, php-format msgid "%s A new person is sharing with you" msgstr "%s Una nueva persona comparte contigo" -#: src/Navigation/Notifications/Repository/Notify.php:389 -#: src/Navigation/Notifications/Repository/Notify.php:390 +#: src/Navigation/Notifications/Repository/Notify.php:375 +#: src/Navigation/Notifications/Repository/Notify.php:376 #, php-format msgid "%1$s is sharing with you at %2$s" msgstr "%1$s comparte contigo en %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:397 +#: src/Navigation/Notifications/Repository/Notify.php:383 #, php-format msgid "%s You have a new follower" msgstr "%s Tienes nuevo seguidor" -#: src/Navigation/Notifications/Repository/Notify.php:399 -#: src/Navigation/Notifications/Repository/Notify.php:400 +#: src/Navigation/Notifications/Repository/Notify.php:385 +#: src/Navigation/Notifications/Repository/Notify.php:386 #, php-format msgid "You have a new follower at %2$s : %1$s" msgstr "Tienes nuevo seguidor en %2$s : %1$s" -#: src/Navigation/Notifications/Repository/Notify.php:413 +#: src/Navigation/Notifications/Repository/Notify.php:399 #, php-format msgid "%s Friend suggestion received" msgstr "%s Sugerencia de amistad recibida" -#: src/Navigation/Notifications/Repository/Notify.php:415 +#: src/Navigation/Notifications/Repository/Notify.php:401 #, php-format msgid "You've received a friend suggestion from '%1$s' at %2$s" msgstr "Recibiste una sugerencia de amistad de '%1$s' en %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:416 +#: src/Navigation/Notifications/Repository/Notify.php:402 #, php-format msgid "" "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." msgstr "Recibiste [url=%1$s]una sugerencia de amistad[/url] en %2$s de %3$s." -#: src/Navigation/Notifications/Repository/Notify.php:422 +#: src/Navigation/Notifications/Repository/Notify.php:408 msgid "Name:" msgstr "Nombre: " -#: src/Navigation/Notifications/Repository/Notify.php:423 +#: src/Navigation/Notifications/Repository/Notify.php:409 msgid "Photo:" msgstr "Foto: " -#: src/Navigation/Notifications/Repository/Notify.php:426 +#: src/Navigation/Notifications/Repository/Notify.php:412 #, php-format msgid "Please visit %s to approve or reject the suggestion." msgstr "Visita %s para aceptar o rechazar la sugerencia." -#: src/Navigation/Notifications/Repository/Notify.php:434 -#: src/Navigation/Notifications/Repository/Notify.php:449 +#: src/Navigation/Notifications/Repository/Notify.php:420 +#: src/Navigation/Notifications/Repository/Notify.php:435 #, php-format msgid "%s Connection accepted" msgstr "%s Conexión aceptada" -#: src/Navigation/Notifications/Repository/Notify.php:436 -#: src/Navigation/Notifications/Repository/Notify.php:451 +#: src/Navigation/Notifications/Repository/Notify.php:422 +#: src/Navigation/Notifications/Repository/Notify.php:437 #, php-format msgid "'%1$s' has accepted your connection request at %2$s" msgstr "'%1$s' aceptó tu solicitud de conexión en %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:437 -#: src/Navigation/Notifications/Repository/Notify.php:452 +#: src/Navigation/Notifications/Repository/Notify.php:423 +#: src/Navigation/Notifications/Repository/Notify.php:438 #, php-format msgid "%2$s has accepted your [url=%1$s]connection request[/url]." msgstr "%2$s aceptó tu [url=%1$s]solicitud de conexión[/url]." -#: src/Navigation/Notifications/Repository/Notify.php:442 +#: src/Navigation/Notifications/Repository/Notify.php:428 msgid "" "You are now mutual friends and may exchange status updates, photos, and " "email without restriction." msgstr "Ahora son amigos mutuos y puede intercambiar actualizaciones, fotos e email sin restricción." -#: src/Navigation/Notifications/Repository/Notify.php:444 +#: src/Navigation/Notifications/Repository/Notify.php:430 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "Por favor visite %s si desea hacer algún cambio a su relación." -#: src/Navigation/Notifications/Repository/Notify.php:457 +#: src/Navigation/Notifications/Repository/Notify.php:443 #, php-format msgid "" "'%1$s' has chosen to accept you a fan, which restricts some forms of " @@ -12271,34 +12274,34 @@ msgid "" "automatically." msgstr "'%1$s' te ha aceptado como fan, eso restringe algunas formas de comunicación - como mensajes privados e interacciones de perfil. Si es un famoso o página comunitaria, esos son ajustes automáticos." -#: src/Navigation/Notifications/Repository/Notify.php:459 +#: src/Navigation/Notifications/Repository/Notify.php:445 #, php-format msgid "" "'%1$s' may choose to extend this into a two-way or more permissive " "relationship in the future." msgstr "'%1$s' puede elegirte para una relación cercana o bidireccional en el futuro." -#: src/Navigation/Notifications/Repository/Notify.php:461 +#: src/Navigation/Notifications/Repository/Notify.php:447 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "Visita %s si deseas hacer algún cambio con este contacto." -#: src/Navigation/Notifications/Repository/Notify.php:471 +#: src/Navigation/Notifications/Repository/Notify.php:457 msgid "registration request" msgstr "petición de registro" -#: src/Navigation/Notifications/Repository/Notify.php:473 +#: src/Navigation/Notifications/Repository/Notify.php:459 #, php-format msgid "You've received a registration request from '%1$s' at %2$s" msgstr "Recibiste una solicitud de registro de '%1$s' en %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:474 +#: src/Navigation/Notifications/Repository/Notify.php:460 #, php-format msgid "You've received a [url=%1$s]registration request[/url] from %2$s." msgstr "Recibiste una [url=%1$s]solicitud de registro[/url] de %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:479 -#: src/Navigation/Notifications/Repository/Notify.php:500 +#: src/Navigation/Notifications/Repository/Notify.php:465 +#: src/Navigation/Notifications/Repository/Notify.php:486 #, php-format msgid "" "Display Name:\t%s\n" @@ -12306,288 +12309,288 @@ msgid "" "Login Name:\t%s (%s)" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:485 +#: src/Navigation/Notifications/Repository/Notify.php:471 #, php-format msgid "Please visit %s to approve or reject the request." msgstr "Visita %s para aprobar o rechazar la solicitud." -#: src/Navigation/Notifications/Repository/Notify.php:492 +#: src/Navigation/Notifications/Repository/Notify.php:478 msgid "new registration" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:494 +#: src/Navigation/Notifications/Repository/Notify.php:480 #, php-format msgid "You've received a new registration from '%1$s' at %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:495 +#: src/Navigation/Notifications/Repository/Notify.php:481 #, php-format msgid "You've received a [url=%1$s]new registration[/url] from %2$s." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:506 +#: src/Navigation/Notifications/Repository/Notify.php:492 #, php-format msgid "Please visit %s to have a look at the new registration." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:782 +#: src/Navigation/Notifications/Repository/Notify.php:768 #, php-format msgid "%s %s tagged you" msgstr "%s %s te etiquetó" -#: src/Navigation/Notifications/Repository/Notify.php:785 +#: src/Navigation/Notifications/Repository/Notify.php:771 #, php-format msgid "%s %s shared a new post" msgstr "%s %s compartió nuevo artículo" -#: src/Navigation/Notifications/Repository/Notify.php:793 +#: src/Navigation/Notifications/Repository/Notify.php:779 #, php-format msgid "%1$s %2$s liked your post #%3$d" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:796 +#: src/Navigation/Notifications/Repository/Notify.php:782 #, php-format msgid "%1$s %2$s liked your comment on #%3$d" msgstr "" -#: src/Object/EMail/ItemCCEMail.php:42 +#: src/Object/EMail/ItemCCEMail.php:28 #, php-format msgid "" "This message was sent to you by %s, a member of the Friendica social " "network." msgstr "El mensaje te lo ha enviado %s, miembro de Friendica Red Social." -#: src/Object/EMail/ItemCCEMail.php:44 +#: src/Object/EMail/ItemCCEMail.php:30 #, php-format msgid "You may visit them online at %s" msgstr "Puedes visitarlos en línea en %s" -#: src/Object/EMail/ItemCCEMail.php:45 +#: src/Object/EMail/ItemCCEMail.php:31 msgid "" "Please contact the sender by replying to this post if you do not wish to " "receive these messages." msgstr "Por favor contacta con el remitente respondiendo a este mensaje si no deseas recibir estos mensajes." -#: src/Object/EMail/ItemCCEMail.php:49 +#: src/Object/EMail/ItemCCEMail.php:35 #, php-format msgid "%s posted an update." msgstr "%s publicó una actualización." -#: src/Object/Post.php:138 +#: src/Object/Post.php:124 msgid "Private Message" msgstr "Mensaje privado" -#: src/Object/Post.php:142 +#: src/Object/Post.php:128 msgid "Public Message" msgstr "" -#: src/Object/Post.php:146 +#: src/Object/Post.php:132 msgid "Unlisted Message" msgstr "" -#: src/Object/Post.php:182 +#: src/Object/Post.php:168 msgid "This entry was edited" msgstr "Esta entrada fue editada" -#: src/Object/Post.php:210 +#: src/Object/Post.php:196 msgid "Connector Message" msgstr "" -#: src/Object/Post.php:239 src/Object/Post.php:241 +#: src/Object/Post.php:225 src/Object/Post.php:227 msgid "Edit" msgstr "Editar" -#: src/Object/Post.php:275 +#: src/Object/Post.php:261 msgid "Delete globally" msgstr "Borrar Globalmente" -#: src/Object/Post.php:275 +#: src/Object/Post.php:261 msgid "Remove locally" msgstr "Borrar localmente" -#: src/Object/Post.php:282 +#: src/Object/Post.php:268 #, php-format msgid "Block %s" msgstr "Bloquear %s" -#: src/Object/Post.php:287 +#: src/Object/Post.php:273 #, php-format msgid "Ignore %s" msgstr "" -#: src/Object/Post.php:292 +#: src/Object/Post.php:278 #, php-format msgid "Collapse %s" msgstr "" -#: src/Object/Post.php:296 +#: src/Object/Post.php:282 msgid "Report post" msgstr "" -#: src/Object/Post.php:307 +#: src/Object/Post.php:293 msgid "Save to folder" msgstr "" -#: src/Object/Post.php:347 +#: src/Object/Post.php:333 msgid "I will attend" msgstr "Asistiré" -#: src/Object/Post.php:347 +#: src/Object/Post.php:333 msgid "I will not attend" msgstr "No asistiré" -#: src/Object/Post.php:347 +#: src/Object/Post.php:333 msgid "I might attend" msgstr "Podría asistir" -#: src/Object/Post.php:394 +#: src/Object/Post.php:380 msgid "Ignore thread" msgstr "" -#: src/Object/Post.php:395 +#: src/Object/Post.php:381 msgid "Unignore thread" msgstr "" -#: src/Object/Post.php:396 +#: src/Object/Post.php:382 msgid "Toggle ignore status" msgstr "" -#: src/Object/Post.php:406 +#: src/Object/Post.php:392 msgid "Add star" msgstr "" -#: src/Object/Post.php:407 +#: src/Object/Post.php:393 msgid "Remove star" msgstr "" -#: src/Object/Post.php:408 +#: src/Object/Post.php:394 msgid "Toggle star status" msgstr "" -#: src/Object/Post.php:419 +#: src/Object/Post.php:405 msgid "Pin" msgstr "" -#: src/Object/Post.php:420 +#: src/Object/Post.php:406 msgid "Unpin" msgstr "" -#: src/Object/Post.php:421 +#: src/Object/Post.php:407 msgid "Toggle pin status" msgstr "" -#: src/Object/Post.php:424 +#: src/Object/Post.php:410 msgid "Pinned" msgstr "" -#: src/Object/Post.php:429 +#: src/Object/Post.php:415 msgid "Add tag" msgstr "" -#: src/Object/Post.php:444 +#: src/Object/Post.php:430 msgid "Quote share this" msgstr "Compartir Comentado esto" -#: src/Object/Post.php:444 +#: src/Object/Post.php:430 msgid "Quote Share" msgstr "Compartir comentado" -#: src/Object/Post.php:447 +#: src/Object/Post.php:433 msgid "Reshare this" msgstr "Compartir esto" -#: src/Object/Post.php:447 +#: src/Object/Post.php:433 msgid "Reshare" msgstr "Compartir" -#: src/Object/Post.php:448 +#: src/Object/Post.php:434 msgid "Cancel your Reshare" msgstr "Cancelar Compartir" -#: src/Object/Post.php:448 +#: src/Object/Post.php:434 msgid "Unshare" msgstr "Dejar de Compartir" -#: src/Object/Post.php:492 +#: src/Object/Post.php:478 #, php-format msgid "%s (Received %s)" msgstr "%s (Recibido %s)" -#: src/Object/Post.php:498 +#: src/Object/Post.php:484 msgid "Comment this item on your system" msgstr "Comentarlo en mi estado" -#: src/Object/Post.php:498 +#: src/Object/Post.php:484 msgid "Remote comment" msgstr "" -#: src/Object/Post.php:520 +#: src/Object/Post.php:506 msgid "Share via ..." msgstr "" -#: src/Object/Post.php:520 +#: src/Object/Post.php:506 msgid "Share via external services" msgstr "" -#: src/Object/Post.php:527 +#: src/Object/Post.php:513 msgid "Unknown parent" msgstr "" -#: src/Object/Post.php:531 +#: src/Object/Post.php:517 #, php-format msgid "in reply to %s" msgstr "" -#: src/Object/Post.php:533 +#: src/Object/Post.php:519 msgid "Parent is probably private or not federated." msgstr "" -#: src/Object/Post.php:557 +#: src/Object/Post.php:543 msgid "to" msgstr "a" -#: src/Object/Post.php:558 +#: src/Object/Post.php:544 msgid "via" msgstr "vía" -#: src/Object/Post.php:559 +#: src/Object/Post.php:545 msgid "Wall-to-Wall" msgstr "Perfil-a-Perfil" -#: src/Object/Post.php:560 +#: src/Object/Post.php:546 msgid "via Wall-To-Wall:" msgstr "via Perfil-a-Perfil:" -#: src/Object/Post.php:613 +#: src/Object/Post.php:599 #, php-format msgid "Reply to %s" msgstr "Responder a %s" -#: src/Object/Post.php:616 +#: src/Object/Post.php:602 msgid "More" msgstr "Mas" -#: src/Object/Post.php:635 +#: src/Object/Post.php:621 msgid "Notifier task is pending" msgstr "Notificador tarea pendiente" -#: src/Object/Post.php:636 +#: src/Object/Post.php:622 msgid "Delivery to remote servers is pending" msgstr "Entrega remota pendiente" -#: src/Object/Post.php:637 +#: src/Object/Post.php:623 msgid "Delivery to remote servers is underway" msgstr "Entrega remota en camino" -#: src/Object/Post.php:638 +#: src/Object/Post.php:624 msgid "Delivery to remote servers is mostly done" msgstr "Entrega remota casi completada" -#: src/Object/Post.php:639 +#: src/Object/Post.php:625 msgid "Delivery to remote servers is done" msgstr "Entrega remota completada" -#: src/Object/Post.php:661 +#: src/Object/Post.php:647 #, php-format msgid "%d comment" msgid_plural "%d comments" @@ -12595,480 +12598,467 @@ msgstr[0] "%d comentario" msgstr[1] "%d comentarios" msgstr[2] "%d comentarios" -#: src/Object/Post.php:662 +#: src/Object/Post.php:648 msgid "Show more" msgstr "Mostrar mas" -#: src/Object/Post.php:663 +#: src/Object/Post.php:649 msgid "Show fewer" msgstr "Mostrar menos" -#: src/Object/Post.php:700 +#: src/Object/Post.php:686 #, php-format msgid "Reshared by: %s" msgstr "" -#: src/Object/Post.php:705 +#: src/Object/Post.php:691 #, php-format msgid "Viewed by: %s" msgstr "" -#: src/Object/Post.php:710 +#: src/Object/Post.php:696 #, php-format msgid "Read by: %s" msgstr "" -#: src/Object/Post.php:715 +#: src/Object/Post.php:701 #, php-format msgid "Liked by: %s" msgstr "" -#: src/Object/Post.php:720 +#: src/Object/Post.php:706 #, php-format msgid "Disliked by: %s" msgstr "" -#: src/Object/Post.php:725 +#: src/Object/Post.php:711 #, php-format msgid "Attended by: %s" msgstr "" -#: src/Object/Post.php:730 +#: src/Object/Post.php:716 #, php-format msgid "Maybe attended by: %s" msgstr "" -#: src/Object/Post.php:735 +#: src/Object/Post.php:721 #, php-format msgid "Not attended by: %s" msgstr "" -#: src/Object/Post.php:740 +#: src/Object/Post.php:726 #, php-format msgid "Commented by: %s" msgstr "" -#: src/Object/Post.php:745 +#: src/Object/Post.php:731 #, php-format msgid "Reacted with %s by: %s" msgstr "" -#: src/Object/Post.php:768 +#: src/Object/Post.php:754 #, php-format msgid "Quote shared by: %s" msgstr "" -#: src/Protocol/ActivityPub/Receiver.php:568 +#: src/Protocol/ActivityPub/Receiver.php:557 msgid "Chat" msgstr "" -#: src/Protocol/Delivery.php:544 +#: src/Protocol/Delivery.php:530 msgid "(no subject)" msgstr "(sin asunto)" -#: src/Protocol/OStatus.php:1392 -#, php-format -msgid "%s is now following %s." -msgstr "%s sigue ahora a %s." - -#: src/Protocol/OStatus.php:1393 -msgid "following" -msgstr "siguiendo" - -#: src/Protocol/OStatus.php:1396 -#, php-format -msgid "%s stopped following %s." -msgstr "%s dejó de seguir a %s." - -#: src/Protocol/OStatus.php:1397 -msgid "stopped following" -msgstr "dejó de seguir" - -#: src/Render/FriendicaSmartyEngine.php:56 +#: src/Render/FriendicaSmartyEngine.php:42 #, php-format msgid "The folder %s must be writable by webserver." msgstr "" -#: src/Security/Authentication.php:216 +#: src/Security/Authentication.php:200 msgid "Login failed." msgstr "Accesso fallido." -#: src/Security/Authentication.php:261 +#: src/Security/Authentication.php:245 msgid "Login failed. Please check your credentials." msgstr "Acceso falló. Checa tus credenciales." -#: src/Security/Authentication.php:375 +#: src/Security/Authentication.php:359 #, php-format msgid "Welcome %s" msgstr "Bienvenido %s" -#: src/Security/Authentication.php:376 +#: src/Security/Authentication.php:360 msgid "Please upload a profile photo." msgstr "Por favor sube una foto para el perfil." -#: src/Util/EMailer/MailBuilder.php:260 +#: src/Security/OpenWebAuth.php:149 +#, php-format +msgid "OpenWebAuth: %1$s welcomes %2$s" +msgstr "OpenWebAuth: %1$s te da la bienvenida %2$s" + +#: src/Util/EMailer/MailBuilder.php:246 msgid "Friendica Notification" msgstr "Notificación de Friendica" -#: src/Util/EMailer/NotifyMailBuilder.php:78 -#: src/Util/EMailer/SystemMailBuilder.php:54 +#: src/Util/EMailer/NotifyMailBuilder.php:64 +#: src/Util/EMailer/SystemMailBuilder.php:40 #, php-format msgid "%1$s, %2$s Administrator" msgstr "%1$s, %2$s Administrador" -#: src/Util/EMailer/NotifyMailBuilder.php:80 -#: src/Util/EMailer/SystemMailBuilder.php:56 +#: src/Util/EMailer/NotifyMailBuilder.php:66 +#: src/Util/EMailer/SystemMailBuilder.php:42 #, php-format msgid "%s Administrator" msgstr "%s Administrador" -#: src/Util/EMailer/NotifyMailBuilder.php:193 -#: src/Util/EMailer/NotifyMailBuilder.php:217 -#: src/Util/EMailer/SystemMailBuilder.php:101 -#: src/Util/EMailer/SystemMailBuilder.php:118 +#: src/Util/EMailer/NotifyMailBuilder.php:179 +#: src/Util/EMailer/NotifyMailBuilder.php:203 +#: src/Util/EMailer/SystemMailBuilder.php:87 +#: src/Util/EMailer/SystemMailBuilder.php:104 msgid "thanks" msgstr "gracias" -#: src/Util/Temporal.php:172 +#: src/Util/Temporal.php:158 msgid "YYYY-MM-DD or MM-DD" msgstr "YYYY-MM-DD o MM-DD" -#: src/Util/Temporal.php:280 +#: src/Util/Temporal.php:266 #, php-format msgid "Time zone: %s Change in Settings" msgstr "" -#: src/Util/Temporal.php:320 src/Util/Temporal.php:329 +#: src/Util/Temporal.php:306 src/Util/Temporal.php:315 msgid "never" msgstr "nunca" -#: src/Util/Temporal.php:343 +#: src/Util/Temporal.php:329 msgid "less than a second ago" msgstr "hace menos de un segundo" -#: src/Util/Temporal.php:352 +#: src/Util/Temporal.php:338 msgid "year" msgstr "año" -#: src/Util/Temporal.php:352 +#: src/Util/Temporal.php:338 msgid "years" msgstr "años" -#: src/Util/Temporal.php:353 +#: src/Util/Temporal.php:339 msgid "months" msgstr "meses" -#: src/Util/Temporal.php:354 +#: src/Util/Temporal.php:340 msgid "weeks" msgstr "semanas" -#: src/Util/Temporal.php:355 +#: src/Util/Temporal.php:341 msgid "days" msgstr "días" -#: src/Util/Temporal.php:356 +#: src/Util/Temporal.php:342 msgid "hour" msgstr "hora" -#: src/Util/Temporal.php:356 +#: src/Util/Temporal.php:342 msgid "hours" msgstr "horas" -#: src/Util/Temporal.php:357 +#: src/Util/Temporal.php:343 msgid "minute" msgstr "minuto" -#: src/Util/Temporal.php:357 +#: src/Util/Temporal.php:343 msgid "minutes" msgstr "minutos" -#: src/Util/Temporal.php:358 +#: src/Util/Temporal.php:344 msgid "second" msgstr "segundo" -#: src/Util/Temporal.php:358 +#: src/Util/Temporal.php:344 msgid "seconds" msgstr "segundos" -#: src/Util/Temporal.php:367 +#: src/Util/Temporal.php:353 #, php-format msgid "in %1$d %2$s" msgstr "en %1$d %2$s" -#: src/Util/Temporal.php:370 +#: src/Util/Temporal.php:356 #, php-format msgid "%1$d %2$s ago" msgstr "hace %1$d %2$s" -#: src/Worker/PushSubscription.php:110 +#: src/Worker/PushSubscription.php:96 msgid "Notification from Friendica" msgstr "" -#: src/Worker/PushSubscription.php:111 +#: src/Worker/PushSubscription.php:97 msgid "Empty Post" msgstr "" -#: view/theme/duepuntozero/config.php:68 +#: view/theme/duepuntozero/config.php:56 msgid "default" msgstr "predeterminado" -#: view/theme/duepuntozero/config.php:69 +#: view/theme/duepuntozero/config.php:57 msgid "greenzero" msgstr "greenzero" -#: view/theme/duepuntozero/config.php:70 +#: view/theme/duepuntozero/config.php:58 msgid "purplezero" msgstr "purplezero" -#: view/theme/duepuntozero/config.php:71 +#: view/theme/duepuntozero/config.php:59 msgid "easterbunny" msgstr "easterbunny" -#: view/theme/duepuntozero/config.php:72 +#: view/theme/duepuntozero/config.php:60 msgid "darkzero" msgstr "darkzero" -#: view/theme/duepuntozero/config.php:73 +#: view/theme/duepuntozero/config.php:61 msgid "comix" msgstr "comix" -#: view/theme/duepuntozero/config.php:74 +#: view/theme/duepuntozero/config.php:62 msgid "slackr" msgstr "slackr" -#: view/theme/duepuntozero/config.php:87 +#: view/theme/duepuntozero/config.php:75 msgid "Variations" msgstr "Variaciones" -#: view/theme/frio/config.php:146 +#: view/theme/frio/config.php:134 msgid "Note" msgstr "Nota" -#: view/theme/frio/config.php:146 +#: view/theme/frio/config.php:134 msgid "Check image permissions if all users are allowed to see the image" msgstr "Checa si todos los usuarios podrían ver esta imágen" -#: view/theme/frio/config.php:152 +#: view/theme/frio/config.php:140 msgid "Appearance" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Accent color" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Blue" msgstr "Azul" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Red" msgstr "Rojo" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Purple" msgstr "Púrpura" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Green" msgstr "Verde" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Pink" msgstr "Rosa" -#: view/theme/frio/config.php:154 +#: view/theme/frio/config.php:142 msgid "Copy or paste schemestring" msgstr "Copiar o pegar esquema" -#: view/theme/frio/config.php:154 +#: view/theme/frio/config.php:142 msgid "" "You can copy this string to share your theme with others. Pasting here " "applies the schemestring" msgstr "Puede copiar esta cadena para compartir su tema con otros. Pegando aquíAplica el Esquema" -#: view/theme/frio/config.php:155 +#: view/theme/frio/config.php:143 msgid "Navigation bar background color" msgstr "Color de fondo de barra de navegación" -#: view/theme/frio/config.php:156 +#: view/theme/frio/config.php:144 msgid "Navigation bar icon color " msgstr "Color de icono de barra de navegación" -#: view/theme/frio/config.php:157 +#: view/theme/frio/config.php:145 msgid "Link color" msgstr "Color de enlace" -#: view/theme/frio/config.php:158 +#: view/theme/frio/config.php:146 msgid "Set the background color" msgstr "Selecciona color de fondo" -#: view/theme/frio/config.php:159 +#: view/theme/frio/config.php:147 msgid "Content background opacity" msgstr "Opacidad del Fondo del Contenido" -#: view/theme/frio/config.php:160 +#: view/theme/frio/config.php:148 msgid "Set the background image" msgstr "Selecciona imagen de fondo" -#: view/theme/frio/config.php:161 +#: view/theme/frio/config.php:149 msgid "Background image style" msgstr "Estilo de imagen de fondo" -#: view/theme/frio/config.php:164 +#: view/theme/frio/config.php:152 msgid "Always open Compose page" msgstr "" -#: view/theme/frio/config.php:164 +#: view/theme/frio/config.php:152 msgid "" "The New Post button always open the Compose page " "instead of the modal form. When this is disabled, the Compose page can be " "accessed with a middle click on the link or from the modal." msgstr "" -#: view/theme/frio/config.php:168 +#: view/theme/frio/config.php:156 msgid "Login page background image" msgstr "Imagen de fondo del Ingreso" -#: view/theme/frio/config.php:172 +#: view/theme/frio/config.php:160 msgid "Login page background color" msgstr "Color de fondo del Ingreso" -#: view/theme/frio/config.php:172 +#: view/theme/frio/config.php:160 msgid "Leave background image and color empty for theme defaults" msgstr "Deja imagen de fondo y color vacíos para el estándar" -#: view/theme/frio/php/Image.php:39 +#: view/theme/frio/php/Image.php:27 msgid "Top Banner" msgstr "Anuncio superior" -#: view/theme/frio/php/Image.php:39 +#: view/theme/frio/php/Image.php:27 msgid "" "Resize image to the width of the screen and show background color below on " "long pages." msgstr "Cambiar tamaño de la imagen al ancho de pantalla y mostrar color de fondodebajo en Páginas largas." -#: view/theme/frio/php/Image.php:40 +#: view/theme/frio/php/Image.php:28 msgid "Full screen" msgstr "Pantalla completa" -#: view/theme/frio/php/Image.php:40 +#: view/theme/frio/php/Image.php:28 msgid "" "Resize image to fill entire screen, clipping either the right or the bottom." msgstr "Ajustar imagen a pantalla completa, recortando a la derecha o debajo.." -#: view/theme/frio/php/Image.php:41 +#: view/theme/frio/php/Image.php:29 msgid "Single row mosaic" msgstr "Mosaico en renglón" -#: view/theme/frio/php/Image.php:41 +#: view/theme/frio/php/Image.php:29 msgid "" "Resize image to repeat it on a single row, either vertical or horizontal." msgstr "Ajustar imagen y repetir en una sola fila, ya sea vertical u horizontal." -#: view/theme/frio/php/Image.php:42 +#: view/theme/frio/php/Image.php:30 msgid "Mosaic" msgstr "Mosaico" -#: view/theme/frio/php/Image.php:42 +#: view/theme/frio/php/Image.php:30 msgid "Repeat image to fill the screen." msgstr "Repetir imagen hasta llenar pantalla." -#: view/theme/frio/php/default.php:82 view/theme/frio/php/standard.php:40 +#: view/theme/frio/php/default.php:70 view/theme/frio/php/standard.php:28 msgid "Skip to main content" msgstr "Saltar a contenido principal" -#: view/theme/frio/php/default.php:153 view/theme/frio/php/standard.php:75 +#: view/theme/frio/php/default.php:141 view/theme/frio/php/standard.php:63 msgid "Back to top" msgstr "Ir al Inicio" -#: view/theme/frio/php/scheme.php:105 +#: view/theme/frio/php/scheme.php:93 msgid "Light" msgstr "" -#: view/theme/frio/php/scheme.php:106 +#: view/theme/frio/php/scheme.php:94 msgid "Dark" msgstr "" -#: view/theme/frio/php/scheme.php:107 +#: view/theme/frio/php/scheme.php:95 msgid "Black" msgstr "" -#: view/theme/frio/php/scheme.php:118 +#: view/theme/frio/php/scheme.php:106 msgid "Custom" msgstr "Personalizado" -#: view/theme/frio/theme.php:214 +#: view/theme/frio/theme.php:202 msgid "Guest" msgstr "Invitado" -#: view/theme/frio/theme.php:217 +#: view/theme/frio/theme.php:205 msgid "Visitor" msgstr "Visitante" -#: view/theme/quattro/config.php:89 +#: view/theme/quattro/config.php:77 msgid "Alignment" msgstr "Alineación" -#: view/theme/quattro/config.php:89 +#: view/theme/quattro/config.php:77 msgid "Left" msgstr "Izquierda" -#: view/theme/quattro/config.php:89 +#: view/theme/quattro/config.php:77 msgid "Center" msgstr "Centrado" -#: view/theme/quattro/config.php:90 +#: view/theme/quattro/config.php:78 msgid "Color scheme" msgstr "Esquema de color" -#: view/theme/quattro/config.php:91 +#: view/theme/quattro/config.php:79 msgid "Posts font size" msgstr "Tamaño de letra de artículos" -#: view/theme/quattro/config.php:92 +#: view/theme/quattro/config.php:80 msgid "Textareas font size" msgstr "Tamaño de letra de áreas de texto" -#: view/theme/vier/config.php:91 +#: view/theme/vier/config.php:79 msgid "Comma separated list of helper groups" msgstr "" -#: view/theme/vier/config.php:131 +#: view/theme/vier/config.php:119 msgid "don't show" msgstr "no mostrar" -#: view/theme/vier/config.php:131 +#: view/theme/vier/config.php:119 msgid "show" msgstr "mostrar" -#: view/theme/vier/config.php:137 +#: view/theme/vier/config.php:125 msgid "Set style" msgstr "Definir estilo" -#: view/theme/vier/config.php:138 +#: view/theme/vier/config.php:126 msgid "Community Pages" msgstr "Páginas de Comunidad" -#: view/theme/vier/config.php:139 view/theme/vier/theme.php:148 +#: view/theme/vier/config.php:127 view/theme/vier/theme.php:136 msgid "Community Profiles" msgstr "Perfiles de la Comunidad" -#: view/theme/vier/config.php:140 +#: view/theme/vier/config.php:128 msgid "Help or @NewHere ?" msgstr "¿Ayuda o @NewHere?" -#: view/theme/vier/config.php:141 view/theme/vier/theme.php:319 +#: view/theme/vier/config.php:129 view/theme/vier/theme.php:307 msgid "Connect Services" msgstr "Conectar Servicios" -#: view/theme/vier/config.php:142 +#: view/theme/vier/config.php:130 msgid "Find Friends" msgstr "Buscar amistades" -#: view/theme/vier/config.php:143 view/theme/vier/theme.php:175 +#: view/theme/vier/config.php:131 view/theme/vier/theme.php:163 msgid "Last users" msgstr "Últimos usuarios" -#: view/theme/vier/theme.php:234 +#: view/theme/vier/theme.php:222 msgid "Quick Start" msgstr "Inicio rápido" diff --git a/view/lang/es/strings.php b/view/lang/es/strings.php index 16dce2b953..0332b40ba8 100644 --- a/view/lang/es/strings.php +++ b/view/lang/es/strings.php @@ -643,7 +643,6 @@ $a->strings['An author or name was not found.'] = 'No se ha encontrado un autor $a->strings['No browser URL could be matched to this address.'] = 'Ninguna dirección concuerda con la suministrada.'; $a->strings['Unable to match @-style Identity Address with a known protocol or email contact.'] = 'Imposible identificar la Identidad @-style con algún protocolo conocido o dirección de contacto.'; $a->strings['Use mailto: in front of address to force email check.'] = 'Escribe mailto: al principio de la dirección para forzar el envío.'; -$a->strings['The profile address specified belongs to a network which has been disabled on this site.'] = 'La dirección del perfil especificada pertenece a una red que ha sido deshabilitada en este sitio.'; $a->strings['Limited profile. This person will be unable to receive direct/personal notifications from you.'] = 'Perfil limitado. Esta persona no podrá recibir notificaciones directas/personales tuyas.'; $a->strings['Unable to retrieve contact information.'] = 'No ha sido posible recibir la información del contacto.'; $a->strings['Starts:'] = 'Inicio:'; @@ -667,7 +666,6 @@ $a->strings['Show map'] = 'Mostrar mapa'; $a->strings['Hide map'] = 'Ocultar mapa'; $a->strings['%s\'s birthday'] = 'Cumpleaños de %s'; $a->strings['Happy Birthday %s'] = 'Feliz cumpleaños %s'; -$a->strings['Detected languages in this post:\n%s'] = 'Lenguajes detectados en artículo:\n%s'; $a->strings['activity'] = 'Actividad'; $a->strings['post'] = 'Publicación'; $a->strings['bytes'] = 'bytes'; @@ -687,7 +685,6 @@ $a->strings['g A l F d'] = 'g A l F d'; $a->strings['[No description]'] = '[Sin descripción]'; $a->strings['Event Reminders'] = 'Recordatorios de eventos'; $a->strings['Upcoming events the next 7 days:'] = 'Eventos de los próximos 7 dias:'; -$a->strings['OpenWebAuth: %1$s welcomes %2$s'] = 'OpenWebAuth: %1$s te da la bienvenida %2$s'; $a->strings['Hometown:'] = 'Ciudad de origen:'; $a->strings['Marital Status:'] = 'Estado civil:'; $a->strings['With:'] = 'Con:'; @@ -964,7 +961,6 @@ $a->strings['When the database cleanup is enabled, this defines the days after w $a->strings['Lifespan of unclaimed items'] = 'Tiempo de vida de artículos no reclamados'; $a->strings['When the database cleanup is enabled, this defines the days after which unclaimed remote items (mostly content from the relay) will be deleted. Default value is 90 days. Defaults to the general lifespan value of remote items if set to 0.'] = 'Cuando se habilita limpieza de BD, esto define los dias en que los articulos ignorados remotos (mas que nada contenido del Relay) serán borrados. Valor Default es 90 días. Es default del tiempo de vida general de artículos remotos se setea en 0.'; $a->strings['Lifespan of raw conversation data'] = 'Tiempo de vida de datos de conversación '; -$a->strings['The conversation data is used for ActivityPub and OStatus, as well as for debug purposes. It should be safe to remove it after 14 days, default is 90 days.'] = 'Los datos de conversación son usados por ActivityPub y OStatus, también por propósito de Debugg. Debe ser seguro borrarlos después de 14 dias, default es 90 días.'; $a->strings['Maximum numbers of comments per post'] = 'Numero máximo de respuestas por tema'; $a->strings['How much comments should be shown for each post? Default value is 100.'] = '¿Cuantos comentarios deberían ser mostrados por tema? Valor por defecto es 100.'; $a->strings['Maximum numbers of comments per post on the display page'] = 'Maximo numero de comentarios por artículo de página de despliegue'; @@ -1180,7 +1176,6 @@ $a->strings['Submit Request'] = 'Enviar Solicitud'; $a->strings['You already added this contact.'] = 'Ya has añadido este contacto.'; $a->strings['The network type couldn\'t be detected. Contact can\'t be added.'] = 'No se pudo detectar el tipo de red. Contacto no puede ser agregado.'; $a->strings['Diaspora support isn\'t enabled. Contact can\'t be added.'] = 'El soporte de Diaspora* no esta habilitado, el contacto no puede ser agregado.'; -$a->strings['OStatus support is disabled. Contact can\'t be added.'] = 'El soporte de OStatus no esta habilitado, el contacto no puede ser agregado.'; $a->strings['Please answer the following:'] = 'Por favor responde lo siguiente:'; $a->strings['Your Identity Address:'] = 'Dirección de tu Identidad:'; $a->strings['Profile URL'] = 'URL del Perfil'; @@ -1564,8 +1559,6 @@ $a->strings['{0} requested registration'] = '{0} solicita registro'; $a->strings['{0} and %d others requested registration'] = '{0} y %d otros solicitaron registro'; $a->strings['Authorize application connection'] = 'Autorizar la conexión de la aplicación'; $a->strings['Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?'] = '¿Quieres autorizar a esta aplicación el acceso a tus mensajes y contactos, y/o crear nuevas publicaciones para ti?'; -$a->strings['Resubscribing to OStatus contacts'] = 'Resubscribir a contactos de OStatus'; -$a->strings['Keep this window open until done.'] = 'Manténer la ventana abierta hasta que finalice.'; $a->strings['No contact provided.'] = 'No se suministra contacto.'; $a->strings['Couldn\'t fetch information for contact.'] = 'No se encuentra la información del contacto.'; $a->strings['Couldn\'t fetch friends for contact.'] = 'No se encuentran datos de amigos de contacto.'; @@ -1573,6 +1566,7 @@ $a->strings['Done'] = 'Hecho'; $a->strings['success'] = 'éxito!'; $a->strings['failed'] = 'fallido'; $a->strings['ignored'] = 'ignorado'; +$a->strings['Keep this window open until done.'] = 'Manténer la ventana abierta hasta que finalice.'; $a->strings['The Photo with id %s is not available.'] = 'La foto con id %s no esta disponible.'; $a->strings['Invalid photo with id %s.'] = 'Foto no válida de Id %s.'; $a->strings['Edit post'] = 'Editar publicación'; @@ -1589,9 +1583,9 @@ $a->strings['Model not found'] = 'Modelo no encontrado'; $a->strings['Remote privacy information not available.'] = 'Privacidad de la información remota no disponible.'; $a->strings['Visible to:'] = 'Visible para:'; $a->strings['No contacts.'] = 'Sin contactos.'; -$a->strings['%s\'s timeline'] = 'Estado de %s'; $a->strings['%s\'s posts'] = 'Artículos de %s'; $a->strings['%s\'s comments'] = 'Comentarios de %s'; +$a->strings['%s\'s timeline'] = 'Estado de %s'; $a->strings['Image exceeds size limit of %s'] = 'Imagen excede el tamaño de %s'; $a->strings['Image upload didn\'t complete, please try again'] = 'Subida de imagen no completa, vuelve a intentar'; $a->strings['Image file is missing'] = 'Falta el archivo de imagen'; @@ -1789,13 +1783,11 @@ $a->strings['Description'] = 'Descripción'; $a->strings['Add'] = 'Añadir'; $a->strings['Failed to connect with email account using the settings provided.'] = 'Error al conectar con el Correo mediante esa configuración.'; $a->strings['Diaspora (Socialhome, Hubzilla)'] = 'Diaspora (Socialhome, Hubzilla)'; -$a->strings['OStatus (GNU Social)'] = 'OStatus (GNU Social)'; $a->strings['Email access is disabled on this site.'] = 'Acceso por correo deshabilitado en este sitio.'; $a->strings['None'] = 'Ninguno'; $a->strings['General Social Media Settings'] = 'Configuración General de Medios Sociales'; $a->strings['Attach the link title'] = 'Agregar título del link'; $a->strings['When activated, the title of the attached link will be added as a title on posts to Diaspora. This is mostly helpful with "remote-self" contacts that share feed content.'] = 'Si se activa, el título del link se añade como titulo en artículos de Diaspora. Esto es bueno con contactos "remote-self" que comparten contenido.'; -$a->strings['Repair OStatus subscriptions'] = 'Reparar subscripciones OStatus'; $a->strings['Email/Mailbox Setup'] = 'Configuración de Correo/Buzón'; $a->strings['If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox.'] = 'Si quieres comunicarte con contactos de correo con este servicio (opcional), especifica cómo conectar con tu buzón.'; $a->strings['Last successful email check:'] = 'Última comprobación de correo éxitosa:'; @@ -2055,7 +2047,6 @@ $a->strings['%s commented on %s\'s post'] = '%s comentó el artículo de %s'; $a->strings['%s created a new post'] = '%s creó un nuevo artículo'; $a->strings['Friend Suggestion'] = 'Sugerencia de amistad'; $a->strings['Friend/Connect Request'] = 'Solicitud de Amistad/Conexión'; -$a->strings['New Follower'] = 'Nuevo seguidor'; $a->strings['[Friendica:Notify]'] = '[Friendica:Notificar]'; $a->strings['%s New mail received at %s'] = '%s Nuevo correo recibido %s'; $a->strings['%1$s sent you a new private message at %2$s.'] = '%1$s te envió mensaje privado a las %2$s.'; @@ -2140,14 +2131,11 @@ $a->strings['%d comment'] = [ $a->strings['Show more'] = 'Mostrar mas'; $a->strings['Show fewer'] = 'Mostrar menos'; $a->strings['(no subject)'] = '(sin asunto)'; -$a->strings['%s is now following %s.'] = '%s sigue ahora a %s.'; -$a->strings['following'] = 'siguiendo'; -$a->strings['%s stopped following %s.'] = '%s dejó de seguir a %s.'; -$a->strings['stopped following'] = 'dejó de seguir'; $a->strings['Login failed.'] = 'Accesso fallido.'; $a->strings['Login failed. Please check your credentials.'] = 'Acceso falló. Checa tus credenciales.'; $a->strings['Welcome %s'] = 'Bienvenido %s'; $a->strings['Please upload a profile photo.'] = 'Por favor sube una foto para el perfil.'; +$a->strings['OpenWebAuth: %1$s welcomes %2$s'] = 'OpenWebAuth: %1$s te da la bienvenida %2$s'; $a->strings['Friendica Notification'] = 'Notificación de Friendica'; $a->strings['%1$s, %2$s Administrator'] = '%1$s, %2$s Administrador'; $a->strings['%s Administrator'] = '%s Administrador'; diff --git a/view/lang/et/messages.po b/view/lang/et/messages.po index 19e22600d8..4703ae34f4 100644 --- a/view/lang/et/messages.po +++ b/view/lang/et/messages.po @@ -1,15 +1,14 @@ # FRIENDICA Distributed Social Network -# SPDX-FileCopyrightText: Copyright (C) 2010-2024, the Friendica project -# -# SPDX-License-Identifier: AGPL-3.0-or-later -# +# Copyright (C) 2010-2024, the Friendica project +# This file is distributed under the same license as the Friendica package. +# # Translators: # Rain Hawk, 2019-2022 msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-02-04 06:55+0000\n" +"POT-Creation-Date: 2024-10-07 20:46+0000\n" "PO-Revision-Date: 2011-05-05 10:19+0000\n" "Last-Translator: Rain Hawk, 2019-2022\n" "Language-Team: Estonian (http://app.transifex.com/Friendica/friendica/language/et/)\n" @@ -19,77 +18,77 @@ msgstr "" "Language: et\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: mod/item.php:100 mod/item.php:103 mod/item.php:170 mod/item.php:173 +#: mod/item.php:89 mod/item.php:92 mod/item.php:159 mod/item.php:162 msgid "Unable to locate original post." msgstr "Ei leia algset postitust." -#: mod/item.php:138 +#: mod/item.php:127 msgid "Post updated." msgstr "" -#: mod/item.php:203 mod/item.php:207 +#: mod/item.php:192 mod/item.php:196 msgid "Item wasn't stored." msgstr "" -#: mod/item.php:217 +#: mod/item.php:206 msgid "Item couldn't be fetched." msgstr "" -#: mod/item.php:259 mod/item.php:263 +#: mod/item.php:250 mod/item.php:254 msgid "Empty post discarded." msgstr "Tühi postitus eiratud." -#: mod/item.php:432 src/Module/Admin/Themes/Details.php:39 -#: src/Module/Admin/Themes/Index.php:59 src/Module/Debug/ItemBody.php:42 -#: src/Module/Debug/ItemBody.php:57 src/Module/Item/Feed.php:80 +#: mod/item.php:425 src/Module/Admin/Themes/Details.php:31 +#: src/Module/Admin/Themes/Index.php:51 src/Module/Debug/ItemBody.php:28 +#: src/Module/Debug/ItemBody.php:43 src/Module/Item/Feed.php:66 msgid "Item not found." msgstr "Elementi ei leitud" -#: mod/item.php:456 mod/message.php:67 mod/message.php:113 mod/notes.php:45 -#: mod/photos.php:152 mod/photos.php:670 src/Model/Event.php:520 -#: src/Module/Attach.php:55 src/Module/BaseApi.php:103 -#: src/Module/BaseNotifications.php:98 src/Module/BaseSettings.php:50 -#: src/Module/Calendar/Event/API.php:88 src/Module/Calendar/Event/Form.php:84 -#: src/Module/Calendar/Export.php:82 src/Module/Calendar/Show.php:82 -#: src/Module/Circle.php:41 src/Module/Circle.php:84 -#: src/Module/Contact/Advanced.php:60 src/Module/Contact/Follow.php:87 -#: src/Module/Contact/Follow.php:160 src/Module/Contact/MatchInterests.php:86 -#: src/Module/Contact/Suggestions.php:54 src/Module/Contact/Unfollow.php:66 -#: src/Module/Contact/Unfollow.php:80 src/Module/Contact/Unfollow.php:112 -#: src/Module/FollowConfirm.php:38 src/Module/FriendSuggest.php:57 -#: src/Module/Invite.php:42 src/Module/Invite.php:131 -#: src/Module/Notifications/Notification.php:76 -#: src/Module/Notifications/Notification.php:107 -#: src/Module/OStatus/Repair.php:60 src/Module/OStatus/Subscribe.php:66 -#: src/Module/Post/Edit.php:76 src/Module/Profile/Common.php:75 -#: src/Module/Profile/Contacts.php:78 src/Module/Profile/Photos.php:92 -#: src/Module/Profile/Schedule.php:39 src/Module/Profile/Schedule.php:56 -#: src/Module/Register.php:77 src/Module/Register.php:90 -#: src/Module/Register.php:206 src/Module/Register.php:245 -#: src/Module/Search/Directory.php:37 src/Module/Settings/Account.php:50 -#: src/Module/Settings/Account.php:386 src/Module/Settings/Channels.php:62 -#: src/Module/Settings/Channels.php:135 src/Module/Settings/Delegation.php:90 -#: src/Module/Settings/Display.php:90 src/Module/Settings/Display.php:197 -#: src/Module/Settings/Profile/Photo/Crop.php:165 -#: src/Module/Settings/Profile/Photo/Index.php:112 -#: src/Module/Settings/RemoveMe.php:119 src/Module/Settings/UserExport.php:80 -#: src/Module/Settings/UserExport.php:114 -#: src/Module/Settings/UserExport.php:215 -#: src/Module/Settings/UserExport.php:235 -#: src/Module/Settings/UserExport.php:300 src/Module/User/Delegation.php:154 -#: src/Module/User/Import.php:84 src/Module/User/Import.php:91 +#: mod/item.php:449 mod/message.php:54 mod/message.php:100 mod/notes.php:33 +#: mod/photos.php:135 mod/photos.php:627 src/Model/Event.php:506 +#: src/Module/Attach.php:41 src/Module/BaseApi.php:89 +#: src/Module/BaseNotifications.php:84 src/Module/BaseSettings.php:36 +#: src/Module/Calendar/Event/API.php:74 src/Module/Calendar/Event/Form.php:70 +#: src/Module/Calendar/Export.php:68 src/Module/Calendar/Show.php:68 +#: src/Module/Circle.php:27 src/Module/Circle.php:70 +#: src/Module/Contact/Advanced.php:46 src/Module/Contact/Follow.php:73 +#: src/Module/Contact/Follow.php:141 src/Module/Contact/MatchInterests.php:73 +#: src/Module/Contact/Suggestions.php:40 src/Module/Contact/Unfollow.php:52 +#: src/Module/Contact/Unfollow.php:66 src/Module/Contact/Unfollow.php:98 +#: src/Module/FollowConfirm.php:24 src/Module/FriendSuggest.php:43 +#: src/Module/Invite.php:28 src/Module/Invite.php:117 +#: src/Module/Notifications/Notification.php:62 +#: src/Module/Notifications/Notification.php:93 +#: src/Module/OStatus/Subscribe.php:54 src/Module/Post/Edit.php:62 +#: src/Module/Profile/Common.php:61 src/Module/Profile/Contacts.php:64 +#: src/Module/Profile/Photos.php:78 src/Module/Profile/Schedule.php:25 +#: src/Module/Profile/Schedule.php:42 src/Module/Register.php:70 +#: src/Module/Register.php:83 src/Module/Register.php:199 +#: src/Module/Register.php:238 src/Module/Search/Directory.php:23 +#: src/Module/Settings/Account.php:36 src/Module/Settings/Account.php:377 +#: src/Module/Settings/Channels.php:52 src/Module/Settings/Channels.php:127 +#: src/Module/Settings/Delegation.php:76 src/Module/Settings/Display.php:76 +#: src/Module/Settings/Display.php:183 +#: src/Module/Settings/Profile/Photo/Crop.php:151 +#: src/Module/Settings/Profile/Photo/Index.php:96 +#: src/Module/Settings/RemoveMe.php:105 src/Module/Settings/UserExport.php:64 +#: src/Module/Settings/UserExport.php:100 +#: src/Module/Settings/UserExport.php:199 +#: src/Module/Settings/UserExport.php:219 +#: src/Module/Settings/UserExport.php:284 src/Module/User/Delegation.php:140 +#: src/Module/User/Import.php:71 src/Module/User/Import.php:78 msgid "Permission denied." msgstr "Õigus puudub." -#: mod/lostpass.php:40 +#: mod/lostpass.php:28 msgid "No valid account found." msgstr "Valiidset kontot ei leitud." -#: mod/lostpass.php:52 +#: mod/lostpass.php:40 msgid "Password reset request issued. Check your email." msgstr "Paroolimuutmise taotlus teostusel. Kontrolli oma e-posti. " -#: mod/lostpass.php:58 +#: mod/lostpass.php:46 #, php-format msgid "" "\n" @@ -105,7 +104,7 @@ msgid "" "\t\tissued this request." msgstr "" -#: mod/lostpass.php:69 +#: mod/lostpass.php:57 #, php-format msgid "" "\n" @@ -122,70 +121,70 @@ msgid "" "\t\tLogin Name:\t%3$s" msgstr "" -#: mod/lostpass.php:84 +#: mod/lostpass.php:72 #, php-format msgid "Password reset requested at %s" msgstr "" -#: mod/lostpass.php:100 +#: mod/lostpass.php:88 msgid "" "Request could not be verified. (You may have previously submitted it.) " "Password reset failed." msgstr "" -#: mod/lostpass.php:113 +#: mod/lostpass.php:101 msgid "Request has expired, please make a new one." msgstr "" -#: mod/lostpass.php:128 +#: mod/lostpass.php:116 msgid "Forgot your Password?" msgstr "Unustasid oma parooli?" -#: mod/lostpass.php:129 +#: mod/lostpass.php:117 msgid "" "Enter your email address and submit to have your password reset. Then check " "your email for further instructions." msgstr "Sisesta oma emaili aadress ja saada, et taaslähtestada oma parool. Siis kontrolli oma meili lisajuhendite saamiseks. " -#: mod/lostpass.php:130 src/Module/Security/Login.php:160 +#: mod/lostpass.php:118 src/Module/Security/Login.php:150 msgid "Nickname or Email: " msgstr "Hüüdnimi või email:" -#: mod/lostpass.php:131 +#: mod/lostpass.php:119 msgid "Reset" msgstr "Lähtesta" -#: mod/lostpass.php:146 src/Module/Security/Login.php:172 +#: mod/lostpass.php:134 src/Module/Security/Login.php:162 msgid "Password Reset" msgstr "Lähtesta parool" -#: mod/lostpass.php:147 +#: mod/lostpass.php:135 msgid "Your password has been reset as requested." msgstr "Teie parool on taaslähtestatud nagu taotletud." -#: mod/lostpass.php:148 +#: mod/lostpass.php:136 msgid "Your new password is" msgstr "Sinu uus parool on" -#: mod/lostpass.php:149 +#: mod/lostpass.php:137 msgid "Save or copy your new password - and then" msgstr "Salvesta või kopeeri oma uus parool - ja siis" -#: mod/lostpass.php:150 +#: mod/lostpass.php:138 msgid "click here to login" msgstr "vajuta siia sisselogimiseks" -#: mod/lostpass.php:151 +#: mod/lostpass.php:139 msgid "" "Your password may be changed from the Settings page after " "successful login." msgstr "Su parool on muudetav Seaded lehel peale edukat sisselogimist." -#: mod/lostpass.php:155 +#: mod/lostpass.php:143 msgid "Your password has been reset." msgstr "" -#: mod/lostpass.php:158 +#: mod/lostpass.php:146 #, php-format msgid "" "\n" @@ -196,7 +195,7 @@ msgid "" "\t\t" msgstr "" -#: mod/lostpass.php:164 +#: mod/lostpass.php:152 #, php-format msgid "" "\n" @@ -210,2361 +209,2415 @@ msgid "" "\t\t" msgstr "" -#: mod/lostpass.php:176 +#: mod/lostpass.php:164 #, php-format msgid "Your password has been changed at %s" msgstr "" -#: mod/message.php:46 mod/message.php:128 src/Content/Nav.php:321 +#: mod/message.php:33 mod/message.php:115 src/Content/Nav.php:307 msgid "New Message" msgstr "Uus sõnum" -#: mod/message.php:82 +#: mod/message.php:69 msgid "No recipient selected." msgstr "Ühtegi saajat pole valitud." -#: mod/message.php:87 +#: mod/message.php:74 msgid "Unable to locate contact information." msgstr "Ei leia kontakti infot." -#: mod/message.php:91 +#: mod/message.php:78 msgid "Message could not be sent." msgstr "Sõnumit ei saanud saata." -#: mod/message.php:95 +#: mod/message.php:82 msgid "Message collection failure." msgstr "Sõnumi vastuvõtmise viga." -#: mod/message.php:122 src/Module/Notifications/Introductions.php:135 -#: src/Module/Notifications/Introductions.php:170 -#: src/Module/Notifications/Notification.php:85 +#: mod/message.php:109 src/Module/Notifications/Introductions.php:127 +#: src/Module/Notifications/Introductions.php:162 +#: src/Module/Notifications/Notification.php:71 msgid "Discard" msgstr "Eira" -#: mod/message.php:135 src/Content/Nav.php:318 view/theme/frio/theme.php:241 +#: mod/message.php:122 src/Content/Nav.php:304 view/theme/frio/theme.php:232 msgid "Messages" msgstr "Sõnumid" -#: mod/message.php:148 +#: mod/message.php:135 msgid "Conversation not found." msgstr "Vestlust ei leitud." -#: mod/message.php:153 +#: mod/message.php:140 msgid "Message was not deleted." msgstr "" -#: mod/message.php:168 +#: mod/message.php:155 msgid "Conversation was not removed." msgstr "" -#: mod/message.php:181 mod/message.php:286 +#: mod/message.php:168 mod/message.php:273 msgid "Please enter a link URL:" msgstr "Palun sisesta lingi URL: " -#: mod/message.php:190 +#: mod/message.php:177 msgid "Send Private Message" msgstr "Saada privaatsõnum" -#: mod/message.php:191 mod/message.php:346 +#: mod/message.php:178 mod/message.php:333 +#: src/Module/Privacy/PermissionTooltip.php:118 msgid "To:" msgstr "" -#: mod/message.php:192 mod/message.php:347 +#: mod/message.php:179 mod/message.php:334 msgid "Subject:" msgstr "Teema:" -#: mod/message.php:196 mod/message.php:350 src/Module/Invite.php:171 +#: mod/message.php:183 mod/message.php:337 src/Module/Invite.php:157 msgid "Your message:" msgstr "Sinu sõnum:" -#: mod/message.php:199 mod/message.php:354 src/Content/Conversation.php:370 -#: src/Module/Post/Edit.php:131 +#: mod/message.php:186 mod/message.php:341 src/Content/Conversation.php:355 +#: src/Module/Post/Edit.php:117 msgid "Upload photo" msgstr "Lae foto üles" -#: mod/message.php:200 mod/message.php:355 src/Module/Post/Edit.php:135 +#: mod/message.php:187 mod/message.php:342 src/Module/Post/Edit.php:121 msgid "Insert web link" msgstr "Lisa hüperlink" -#: mod/message.php:201 mod/message.php:357 mod/photos.php:1301 -#: src/Content/Conversation.php:401 src/Content/Conversation.php:1586 -#: src/Module/Item/Compose.php:206 src/Module/Post/Edit.php:145 -#: src/Object/Post.php:609 +#: mod/message.php:188 mod/message.php:344 mod/photos.php:1255 +#: src/Content/Conversation.php:386 src/Content/Conversation.php:1562 +#: src/Module/Item/Compose.php:199 src/Module/Post/Edit.php:131 +#: src/Object/Post.php:604 msgid "Please wait" msgstr "Palun oota" -#: mod/message.php:202 mod/message.php:356 mod/photos.php:705 -#: mod/photos.php:824 mod/photos.php:1101 mod/photos.php:1142 -#: mod/photos.php:1198 mod/photos.php:1278 -#: src/Module/Calendar/Event/Form.php:250 src/Module/Contact/Advanced.php:132 -#: src/Module/Contact/Profile.php:364 -#: src/Module/Debug/ActivityPubConversion.php:140 -#: src/Module/Debug/Babel.php:313 src/Module/Debug/Localtime.php:64 -#: src/Module/Debug/Probe.php:54 src/Module/Debug/WebFinger.php:51 -#: src/Module/FriendSuggest.php:145 src/Module/Install.php:234 -#: src/Module/Install.php:274 src/Module/Install.php:309 -#: src/Module/Invite.php:178 src/Module/Item/Compose.php:189 -#: src/Module/Moderation/Item/Source.php:79 -#: src/Module/Moderation/Report/Create.php:168 -#: src/Module/Moderation/Report/Create.php:183 -#: src/Module/Moderation/Report/Create.php:211 -#: src/Module/Moderation/Report/Create.php:263 -#: src/Module/Profile/Profile.php:274 -#: src/Module/Settings/Profile/Index.php:257 -#: src/Module/Settings/Server/Action.php:79 src/Module/User/Delegation.php:189 -#: src/Object/Post.php:1154 view/theme/duepuntozero/config.php:85 -#: view/theme/frio/config.php:171 view/theme/quattro/config.php:87 -#: view/theme/vier/config.php:135 +#: mod/message.php:189 mod/message.php:343 mod/photos.php:658 +#: mod/photos.php:778 mod/photos.php:1055 mod/photos.php:1096 +#: mod/photos.php:1152 mod/photos.php:1232 +#: src/Module/Calendar/Event/Form.php:236 src/Module/Contact/Advanced.php:118 +#: src/Module/Contact/Profile.php:370 +#: src/Module/Debug/ActivityPubConversion.php:132 +#: src/Module/Debug/Babel.php:307 src/Module/Debug/Localtime.php:50 +#: src/Module/Debug/Probe.php:40 src/Module/Debug/WebFinger.php:37 +#: src/Module/FriendSuggest.php:131 src/Module/Install.php:220 +#: src/Module/Install.php:260 src/Module/Install.php:295 +#: src/Module/Invite.php:164 src/Module/Item/Compose.php:182 +#: src/Module/Moderation/Item/Source.php:71 +#: src/Module/Moderation/Report/Create.php:154 +#: src/Module/Moderation/Report/Create.php:169 +#: src/Module/Moderation/Report/Create.php:197 +#: src/Module/Moderation/Report/Create.php:249 +#: src/Module/Profile/Profile.php:262 +#: src/Module/Settings/Profile/Index.php:248 +#: src/Module/Settings/Server/Action.php:65 src/Module/User/Delegation.php:175 +#: src/Object/Post.php:1145 view/theme/duepuntozero/config.php:73 +#: view/theme/frio/config.php:138 view/theme/quattro/config.php:75 +#: view/theme/vier/config.php:123 msgid "Submit" msgstr "Saada" -#: mod/message.php:223 +#: mod/message.php:210 msgid "No messages." msgstr "Sõnumeid pole." -#: mod/message.php:279 +#: mod/message.php:266 msgid "Message not available." msgstr "Sõnum pole saadaval. " -#: mod/message.php:323 +#: mod/message.php:310 msgid "Delete message" msgstr "Kustuta sõnum" -#: mod/message.php:325 mod/message.php:456 +#: mod/message.php:312 mod/message.php:441 msgid "D, d M Y - g:i A" msgstr "" -#: mod/message.php:340 mod/message.php:453 +#: mod/message.php:327 mod/message.php:438 msgid "Delete conversation" msgstr "Kustuta vestlus" -#: mod/message.php:342 +#: mod/message.php:329 msgid "" "No secure communications available. You may be able to " "respond from the sender's profile page." msgstr "Turvaline suhtlus pole saadaval. Vastamine võib õnnestuda saatja profiili lehel. " -#: mod/message.php:345 +#: mod/message.php:332 msgid "Send Reply" msgstr "Saada vastus" -#: mod/message.php:427 +#: mod/message.php:412 #, php-format msgid "Unknown sender - %s" msgstr "Tundmatu saatja - %s" -#: mod/message.php:429 +#: mod/message.php:414 #, php-format msgid "You and %s" msgstr "Sina ja %s " -#: mod/message.php:431 +#: mod/message.php:416 #, php-format msgid "%s and You" msgstr "%s ja Sina" -#: mod/message.php:459 +#: mod/message.php:444 #, php-format msgid "%d message" msgid_plural "%d messages" msgstr[0] "%d sõnum" msgstr[1] "%d sõnumid" -#: mod/notes.php:52 src/Module/BaseProfile.php:108 +#: mod/notes.php:40 src/Module/BaseProfile.php:94 msgid "Personal Notes" msgstr "Isiklikud märkmed" -#: mod/notes.php:56 +#: mod/notes.php:44 msgid "Personal notes are visible only by yourself." msgstr "" -#: mod/notes.php:57 src/Content/Text/HTML.php:860 -#: src/Module/Admin/Storage.php:142 src/Module/Filer/SaveTag.php:74 -#: src/Module/Post/Edit.php:129 src/Module/Settings/Channels.php:223 +#: mod/notes.php:45 src/Content/Text/HTML.php:847 +#: src/Module/Admin/Storage.php:128 src/Module/Filer/SaveTag.php:60 +#: src/Module/Post/Edit.php:115 src/Module/Settings/Channels.php:215 msgid "Save" msgstr "Salvesta" -#: mod/photos.php:67 mod/photos.php:132 mod/photos.php:578 -#: src/Model/Event.php:512 src/Model/Profile.php:233 -#: src/Module/Calendar/Export.php:74 src/Module/Calendar/Show.php:74 -#: src/Module/DFRN/Poll.php:43 src/Module/Feed.php:65 src/Module/HCard.php:51 -#: src/Module/Profile/Common.php:62 src/Module/Profile/Common.php:71 -#: src/Module/Profile/Contacts.php:64 src/Module/Profile/Contacts.php:72 -#: src/Module/Profile/Conversations.php:91 src/Module/Profile/Media.php:56 -#: src/Module/Profile/Photos.php:83 src/Module/Profile/RemoteFollow.php:71 -#: src/Module/Register.php:267 +#: mod/photos.php:54 mod/photos.php:117 mod/photos.php:537 +#: src/Model/Event.php:498 src/Model/Profile.php:213 +#: src/Module/Calendar/Export.php:60 src/Module/Calendar/Show.php:60 +#: src/Module/Feed.php:52 src/Module/HCard.php:37 +#: src/Module/Profile/Common.php:48 src/Module/Profile/Common.php:57 +#: src/Module/Profile/Contacts.php:50 src/Module/Profile/Contacts.php:58 +#: src/Module/Profile/Conversations.php:77 src/Module/Profile/Media.php:42 +#: src/Module/Profile/Photos.php:69 src/Module/Profile/RemoteFollow.php:57 +#: src/Module/Register.php:260 msgid "User not found." msgstr "" -#: mod/photos.php:106 src/Module/BaseProfile.php:68 -#: src/Module/Profile/Photos.php:379 +#: mod/photos.php:91 src/Module/BaseProfile.php:54 +#: src/Module/Profile/Photos.php:361 msgid "Photo Albums" msgstr "Foto albumid" -#: mod/photos.php:107 src/Module/Profile/Photos.php:380 -#: src/Module/Profile/Photos.php:400 +#: mod/photos.php:92 src/Module/Profile/Photos.php:362 +#: src/Module/Profile/Photos.php:382 msgid "Recent Photos" msgstr "Hiljutised fotod" -#: mod/photos.php:109 mod/photos.php:872 src/Module/Profile/Photos.php:382 -#: src/Module/Profile/Photos.php:402 +#: mod/photos.php:94 mod/photos.php:826 src/Module/Profile/Photos.php:364 +#: src/Module/Profile/Photos.php:384 msgid "Upload New Photos" msgstr "Lae üles uusi fotosid" -#: mod/photos.php:121 src/Module/BaseSettings.php:72 -#: src/Module/Profile/Photos.php:363 +#: mod/photos.php:106 src/Module/BaseSettings.php:58 +#: src/Module/Profile/Photos.php:345 msgid "everybody" msgstr "igaüks" -#: mod/photos.php:159 +#: mod/photos.php:142 msgid "Contact information unavailable" msgstr "Kontakti infot pole saadaval" -#: mod/photos.php:188 +#: mod/photos.php:171 msgid "Album not found." msgstr "Albumit ei leitud" -#: mod/photos.php:244 +#: mod/photos.php:227 msgid "Album successfully deleted" msgstr "" -#: mod/photos.php:246 +#: mod/photos.php:229 msgid "Album was empty." msgstr "" -#: mod/photos.php:277 +#: mod/photos.php:260 msgid "Failed to delete the photo." msgstr "" -#: mod/photos.php:545 +#: mod/photos.php:504 msgid "a photo" msgstr "see foto" -#: mod/photos.php:545 +#: mod/photos.php:504 #, php-format msgid "%1$s was tagged in %2$s by %3$s" msgstr "%1$s täägiti kohas %2$s %3$s poolt" -#: mod/photos.php:582 src/Module/Conversation/Community.php:160 -#: src/Module/Directory.php:48 src/Module/Profile/Photos.php:295 -#: src/Module/Search/Index.php:65 +#: mod/photos.php:541 src/Module/Conversation/Community.php:148 +#: src/Module/Directory.php:35 src/Module/Profile/Photos.php:279 +#: src/Module/Search/Index.php:51 msgid "Public access denied." msgstr "Avalik ligipääs keelatud." -#: mod/photos.php:587 +#: mod/photos.php:546 msgid "No photos selected" msgstr "Fotosid pole valitud" -#: mod/photos.php:721 +#: mod/photos.php:674 #, php-format msgid "The maximum accepted image size is %s" msgstr "" -#: mod/photos.php:728 +#: mod/photos.php:681 msgid "Upload Photos" msgstr "Lae fotod üles" -#: mod/photos.php:732 mod/photos.php:820 +#: mod/photos.php:685 mod/photos.php:774 msgid "New album name: " msgstr "Uus albuminimi" -#: mod/photos.php:733 +#: mod/photos.php:686 msgid "or select existing album:" msgstr "või vali olemasolev album:" -#: mod/photos.php:734 +#: mod/photos.php:687 msgid "Do not show a status post for this upload" msgstr "Ära näita staatuse postitust selle üleslaadimise kohta" -#: mod/photos.php:736 mod/photos.php:1097 src/Content/Conversation.php:403 -#: src/Module/Calendar/Event/Form.php:253 src/Module/Post/Edit.php:183 +#: mod/photos.php:690 mod/photos.php:1051 src/Content/Conversation.php:388 +#: src/Module/Calendar/Event/Form.php:239 src/Module/Post/Edit.php:169 msgid "Permissions" msgstr "Õigused" -#: mod/photos.php:801 +#: mod/photos.php:755 msgid "Do you really want to delete this photo album and all its photos?" msgstr "Kas soovid tõesti kustutada selle fotoalbumi ja kõik fotod?" -#: mod/photos.php:802 mod/photos.php:825 +#: mod/photos.php:756 mod/photos.php:779 msgid "Delete Album" msgstr "Kustuta album" -#: mod/photos.php:803 mod/photos.php:903 src/Content/Conversation.php:419 -#: src/Module/Contact/Follow.php:173 src/Module/Contact/Revoke.php:109 -#: src/Module/Contact/Unfollow.php:126 -#: src/Module/Media/Attachment/Browser.php:77 -#: src/Module/Media/Photo/Browser.php:88 src/Module/Post/Edit.php:167 -#: src/Module/Post/Tag/Remove.php:109 src/Module/Profile/RemoteFollow.php:134 -#: src/Module/Security/TwoFactor/SignOut.php:125 +#: mod/photos.php:757 mod/photos.php:857 src/Content/Conversation.php:403 +#: src/Module/Contact/Follow.php:154 src/Module/Contact/Revoke.php:92 +#: src/Module/Contact/Unfollow.php:112 +#: src/Module/Media/Attachment/Browser.php:63 +#: src/Module/Media/Photo/Browser.php:74 src/Module/Post/Edit.php:153 +#: src/Module/Post/Tag/Remove.php:95 src/Module/Profile/RemoteFollow.php:120 +#: src/Module/Security/TwoFactor/SignOut.php:111 msgid "Cancel" msgstr "Katkesta" -#: mod/photos.php:829 +#: mod/photos.php:783 msgid "Edit Album" msgstr "Muuda Albumit" -#: mod/photos.php:830 +#: mod/photos.php:784 msgid "Drop Album" msgstr "" -#: mod/photos.php:834 +#: mod/photos.php:788 msgid "Show Newest First" msgstr "Uusimad esmalt" -#: mod/photos.php:836 +#: mod/photos.php:790 msgid "Show Oldest First" msgstr "Vanimad esmalt" -#: mod/photos.php:857 src/Module/Profile/Photos.php:350 +#: mod/photos.php:811 src/Module/Profile/Photos.php:332 msgid "View Photo" msgstr "Kuva foto" -#: mod/photos.php:889 +#: mod/photos.php:843 msgid "Permission denied. Access to this item may be restricted." msgstr "Ebapiisavad õigused. Ligipääs siia võib olla piiratud." -#: mod/photos.php:891 +#: mod/photos.php:845 msgid "Photo not available" msgstr "Foto ei ole saadaval" -#: mod/photos.php:901 +#: mod/photos.php:855 msgid "Do you really want to delete this photo?" msgstr "Kas soovid tõesti selle foto kustutada?" -#: mod/photos.php:902 mod/photos.php:1102 +#: mod/photos.php:856 mod/photos.php:1056 msgid "Delete Photo" msgstr "Kustuta foto" -#: mod/photos.php:1000 +#: mod/photos.php:954 msgid "View photo" msgstr "Kuva foto" -#: mod/photos.php:1002 +#: mod/photos.php:956 msgid "Edit photo" msgstr "Muuda foto" -#: mod/photos.php:1003 +#: mod/photos.php:957 msgid "Delete photo" msgstr "" -#: mod/photos.php:1004 +#: mod/photos.php:958 msgid "Use as profile photo" msgstr "Kasuta profiilipildina" -#: mod/photos.php:1011 +#: mod/photos.php:965 msgid "Private Photo" msgstr "" -#: mod/photos.php:1017 +#: mod/photos.php:971 msgid "View Full Size" msgstr "Kuva täismõõdus" -#: mod/photos.php:1070 +#: mod/photos.php:1024 msgid "Tags: " msgstr "" -#: mod/photos.php:1073 +#: mod/photos.php:1027 msgid "[Select tags to remove]" msgstr "[vali tag` id mida eemaldada]" -#: mod/photos.php:1088 +#: mod/photos.php:1042 msgid "New album name" msgstr "Uus albuminimi" -#: mod/photos.php:1089 +#: mod/photos.php:1043 msgid "Caption" msgstr "" -#: mod/photos.php:1090 +#: mod/photos.php:1044 msgid "Add a Tag" msgstr "Lisa Tag" -#: mod/photos.php:1090 +#: mod/photos.php:1044 msgid "" "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" msgstr "Näide: @mati, @Kati_Murutar, @jim@example.com, #Viljandi, #eestimaa, #matkamine" -#: mod/photos.php:1091 +#: mod/photos.php:1045 msgid "Do not rotate" msgstr "Ära pööra" -#: mod/photos.php:1092 +#: mod/photos.php:1046 msgid "Rotate CW (right)" msgstr "Pööra CW (paremale)" -#: mod/photos.php:1093 +#: mod/photos.php:1047 msgid "Rotate CCW (left)" msgstr "Pööra CCW (vasakule)" -#: mod/photos.php:1139 mod/photos.php:1195 mod/photos.php:1275 -#: src/Module/Contact.php:618 src/Module/Item/Compose.php:188 -#: src/Object/Post.php:1151 +#: mod/photos.php:1093 mod/photos.php:1149 mod/photos.php:1229 +#: src/Module/Contact.php:600 src/Module/Item/Compose.php:181 +#: src/Object/Post.php:1142 msgid "This is you" msgstr "See oled sina" -#: mod/photos.php:1141 mod/photos.php:1197 mod/photos.php:1277 -#: src/Module/Moderation/Reports.php:95 src/Object/Post.php:603 -#: src/Object/Post.php:1153 +#: mod/photos.php:1095 mod/photos.php:1151 mod/photos.php:1231 +#: src/Module/Moderation/Reports.php:102 src/Object/Post.php:598 +#: src/Object/Post.php:1144 msgid "Comment" msgstr "Kommentaar" -#: mod/photos.php:1143 mod/photos.php:1199 mod/photos.php:1279 -#: src/Content/Conversation.php:416 src/Module/Calendar/Event/Form.php:248 -#: src/Module/Item/Compose.php:201 src/Module/Post/Edit.php:165 -#: src/Object/Post.php:1167 +#: mod/photos.php:1097 mod/photos.php:1153 mod/photos.php:1233 +#: src/Content/Conversation.php:400 src/Module/Calendar/Event/Form.php:234 +#: src/Module/Item/Compose.php:194 src/Module/Post/Edit.php:151 +#: src/Object/Post.php:1158 msgid "Preview" msgstr "Eelvaade" -#: mod/photos.php:1144 src/Content/Conversation.php:369 -#: src/Module/Post/Edit.php:130 src/Object/Post.php:1155 +#: mod/photos.php:1098 src/Content/Conversation.php:354 +#: src/Module/Post/Edit.php:116 src/Object/Post.php:1146 msgid "Loading..." msgstr "" -#: mod/photos.php:1236 src/Content/Conversation.php:1501 -#: src/Object/Post.php:261 +#: mod/photos.php:1190 src/Content/Conversation.php:1484 +#: src/Object/Post.php:260 msgid "Select" msgstr "Vali" -#: mod/photos.php:1237 src/Content/Conversation.php:1502 -#: src/Module/Moderation/Users/Active.php:136 -#: src/Module/Moderation/Users/Blocked.php:136 -#: src/Module/Moderation/Users/Index.php:151 -#: src/Module/Settings/Connectors.php:244 -#: src/Module/Settings/Server/Index.php:109 +#: mod/photos.php:1191 src/Content/Conversation.php:1485 +#: src/Module/Moderation/Users/Active.php:122 +#: src/Module/Moderation/Users/Blocked.php:122 +#: src/Module/Moderation/Users/Index.php:137 +#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Server/Index.php:95 msgid "Delete" msgstr "Kustuta" -#: mod/photos.php:1298 src/Object/Post.php:426 +#: mod/photos.php:1252 src/Object/Post.php:426 msgid "Like" msgstr "" -#: mod/photos.php:1299 src/Object/Post.php:426 +#: mod/photos.php:1253 src/Object/Post.php:426 msgid "I like this (toggle)" msgstr "Mulle meeldib see (toggle)" -#: mod/photos.php:1300 src/Object/Post.php:427 +#: mod/photos.php:1254 src/Object/Post.php:427 msgid "Dislike" msgstr "" -#: mod/photos.php:1302 src/Object/Post.php:427 +#: mod/photos.php:1256 src/Object/Post.php:427 msgid "I don't like this (toggle)" msgstr "Mulle ei meeldi see (toggle)" -#: mod/photos.php:1324 +#: mod/photos.php:1278 msgid "Map" msgstr "Kaart" -#: src/App.php:473 +#: src/App.php:432 msgid "No system theme config value set." msgstr "" -#: src/App.php:581 +#: src/App.php:540 msgid "Apologies but the website is unavailable at the moment." msgstr "" -#: src/App/Page.php:249 +#: src/App/Page.php:236 msgid "Delete this item?" msgstr "Kustutada see element?" -#: src/App/Page.php:250 +#: src/App/Page.php:237 msgid "" "Block this author? They won't be able to follow you nor see your public " "posts, and you won't be able to see their posts and their notifications." msgstr "" -#: src/App/Page.php:251 +#: src/App/Page.php:238 msgid "" "Ignore this author? You won't be able to see their posts and their " "notifications." msgstr "" -#: src/App/Page.php:252 +#: src/App/Page.php:239 msgid "Collapse this author's posts?" msgstr "" -#: src/App/Page.php:253 +#: src/App/Page.php:240 msgid "Ignore this author's server?" msgstr "" -#: src/App/Page.php:254 src/Module/Settings/Server/Action.php:61 -#: src/Module/Settings/Server/Index.php:108 +#: src/App/Page.php:241 src/Module/Settings/Server/Action.php:47 +#: src/Module/Settings/Server/Index.php:94 msgid "" "You won't see any content from this server including reshares in your " "Network page, the community pages and individual conversations." msgstr "" -#: src/App/Page.php:256 +#: src/App/Page.php:243 msgid "Like not successful" msgstr "" -#: src/App/Page.php:257 +#: src/App/Page.php:244 msgid "Dislike not successful" msgstr "" -#: src/App/Page.php:258 +#: src/App/Page.php:245 msgid "Sharing not successful" msgstr "" -#: src/App/Page.php:259 +#: src/App/Page.php:246 msgid "Attendance unsuccessful" msgstr "" -#: src/App/Page.php:260 +#: src/App/Page.php:247 msgid "Backend error" msgstr "" -#: src/App/Page.php:261 +#: src/App/Page.php:248 msgid "Network error" msgstr "" -#: src/App/Page.php:264 +#: src/App/Page.php:251 msgid "Drop files here to upload" msgstr "" -#: src/App/Page.php:265 +#: src/App/Page.php:252 msgid "Your browser does not support drag and drop file uploads." msgstr "" -#: src/App/Page.php:266 +#: src/App/Page.php:253 msgid "" "Please use the fallback form below to upload your files like in the olden " "days." msgstr "" -#: src/App/Page.php:267 +#: src/App/Page.php:254 msgid "File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB." msgstr "" -#: src/App/Page.php:268 +#: src/App/Page.php:255 msgid "You can't upload files of this type." msgstr "" -#: src/App/Page.php:269 +#: src/App/Page.php:256 msgid "Server responded with {{statusCode}} code." msgstr "" -#: src/App/Page.php:270 +#: src/App/Page.php:257 msgid "Cancel upload" msgstr "" -#: src/App/Page.php:271 +#: src/App/Page.php:258 msgid "Upload canceled." msgstr "" -#: src/App/Page.php:272 +#: src/App/Page.php:259 msgid "Are you sure you want to cancel this upload?" msgstr "" -#: src/App/Page.php:273 +#: src/App/Page.php:260 msgid "Remove file" msgstr "" -#: src/App/Page.php:274 +#: src/App/Page.php:261 msgid "You can't upload any more files." msgstr "" -#: src/App/Page.php:352 +#: src/App/Page.php:339 msgid "toggle mobile" msgstr "vaheta mobiilseks" -#: src/App/Router.php:309 +#: src/App/Router.php:295 #, php-format msgid "Method not allowed for this module. Allowed method(s): %s" msgstr "" -#: src/App/Router.php:311 src/Module/HTTPException/PageNotFound.php:49 +#: src/App/Router.php:297 src/Module/HTTPException/PageNotFound.php:35 +#: src/Module/Stats.php:49 msgid "Page not found." msgstr "" -#: src/App/Router.php:323 +#: src/App/Router.php:309 msgid "You must be logged in to use addons. " msgstr "Lisade kasutamiseks peate sisse logima" -#: src/BaseModule.php:407 +#: src/BaseModule.php:393 msgid "" "The form security token was not correct. This probably happened because the " "form has been opened for too long (>3 hours) before submitting it." msgstr "" -#: src/BaseModule.php:434 +#: src/BaseModule.php:420 msgid "All contacts" msgstr "" -#: src/BaseModule.php:439 src/Content/Conversation/Factory/Channel.php:46 -#: src/Content/Widget.php:239 src/Core/ACL.php:195 src/Module/Contact.php:414 -#: src/Module/PermissionTooltip.php:141 src/Module/PermissionTooltip.php:163 -#: src/Module/Settings/Channels.php:154 +#: src/BaseModule.php:425 src/Content/Conversation/Factory/Channel.php:32 +#: src/Content/Widget.php:218 src/Core/ACL.php:181 src/Module/Contact.php:395 +#: src/Module/Privacy/PermissionTooltip.php:150 +#: src/Module/Privacy/PermissionTooltip.php:172 +#: src/Module/Settings/Channels.php:146 msgid "Followers" msgstr "Jälgijad" -#: src/BaseModule.php:444 src/Content/Widget.php:240 -#: src/Module/Contact.php:417 src/Module/Settings/Channels.php:153 +#: src/BaseModule.php:430 src/Content/Widget.php:219 +#: src/Module/Contact.php:398 src/Module/Settings/Channels.php:145 msgid "Following" msgstr "" -#: src/BaseModule.php:449 src/Content/Widget.php:241 -#: src/Module/Contact.php:420 +#: src/BaseModule.php:435 src/Content/Widget.php:220 +#: src/Module/Contact.php:401 msgid "Mutual friends" msgstr "" -#: src/BaseModule.php:457 +#: src/BaseModule.php:443 msgid "Common" msgstr "" -#: src/Console/Addon.php:175 src/Console/Addon.php:199 +#: src/Console/Addon.php:161 src/Console/Addon.php:185 msgid "Addon not found" msgstr "" -#: src/Console/Addon.php:179 +#: src/Console/Addon.php:165 msgid "Addon already enabled" msgstr "" -#: src/Console/Addon.php:203 +#: src/Console/Addon.php:189 msgid "Addon already disabled" msgstr "" -#: src/Console/ArchiveContact.php:106 +#: src/Console/ArchiveContact.php:92 #, php-format msgid "Could not find any unarchived contact entry for this URL (%s)" msgstr "" -#: src/Console/ArchiveContact.php:109 +#: src/Console/ArchiveContact.php:95 msgid "The contact entries have been archived" msgstr "Selle kontakti kirjed arhiveeritud" -#: src/Console/GlobalCommunityBlock.php:96 -#: src/Module/Moderation/Blocklist/Contact.php:65 +#: src/Console/ClearAvatarCache.php:73 +msgid "" +"The avatar cache needs to be disabled in local.config.php to use this " +"command." +msgstr "" + +#: src/Console/GlobalCommunityBlock.php:82 +#: src/Module/Moderation/Blocklist/Contact.php:51 #, php-format msgid "Could not find any contact entry for this URL (%s)" msgstr "" -#: src/Console/GlobalCommunityBlock.php:101 -#: src/Module/Moderation/Blocklist/Contact.php:82 +#: src/Console/GlobalCommunityBlock.php:87 +#: src/Module/Moderation/Blocklist/Contact.php:68 msgid "The contact has been blocked from the node" msgstr "" -#: src/Console/MergeContacts.php:75 +#: src/Console/MergeContacts.php:61 #, php-format msgid "%d %s, %d duplicates." msgstr "" -#: src/Console/MergeContacts.php:78 +#: src/Console/MergeContacts.php:64 #, php-format msgid "uri-id is empty for contact %s." msgstr "" -#: src/Console/MergeContacts.php:91 +#: src/Console/MergeContacts.php:77 #, php-format msgid "No valid first contact found for uri-id %d." msgstr "" -#: src/Console/MergeContacts.php:102 +#: src/Console/MergeContacts.php:88 #, php-format msgid "Wrong duplicate found for uri-id %d in %d (url: %s != %s)." msgstr "" -#: src/Console/MergeContacts.php:106 +#: src/Console/MergeContacts.php:92 #, php-format msgid "Wrong duplicate found for uri-id %d in %d (nurl: %s != %s)." msgstr "" -#: src/Console/MergeContacts.php:142 +#: src/Console/MergeContacts.php:128 #, php-format msgid "Deletion of id %d failed" msgstr "" -#: src/Console/MergeContacts.php:144 +#: src/Console/MergeContacts.php:130 #, php-format msgid "Deletion of id %d was successful" msgstr "" -#: src/Console/MergeContacts.php:150 +#: src/Console/MergeContacts.php:136 #, php-format msgid "Updating \"%s\" in \"%s\" from %d to %d" msgstr "" -#: src/Console/MergeContacts.php:152 +#: src/Console/MergeContacts.php:138 msgid " - found" msgstr "" -#: src/Console/MergeContacts.php:159 +#: src/Console/MergeContacts.php:145 msgid " - failed" msgstr "" -#: src/Console/MergeContacts.php:161 +#: src/Console/MergeContacts.php:147 msgid " - success" msgstr "" -#: src/Console/MergeContacts.php:165 +#: src/Console/MergeContacts.php:151 msgid " - deleted" msgstr "" -#: src/Console/MergeContacts.php:168 +#: src/Console/MergeContacts.php:154 msgid " - done" msgstr "" -#: src/Console/MoveToAvatarCache.php:91 +#: src/Console/MoveToAvatarCache.php:77 msgid "The avatar cache needs to be enabled to use this command." msgstr "" -#: src/Console/MoveToAvatarCache.php:109 +#: src/Console/MoveToAvatarCache.php:95 #, php-format msgid "no resource in photo %s" msgstr "" -#: src/Console/MoveToAvatarCache.php:137 +#: src/Console/MoveToAvatarCache.php:123 #, php-format msgid "no photo with id %s" msgstr "" -#: src/Console/MoveToAvatarCache.php:146 +#: src/Console/MoveToAvatarCache.php:132 #, php-format msgid "no image data for photo with id %s" msgstr "" -#: src/Console/MoveToAvatarCache.php:155 +#: src/Console/MoveToAvatarCache.php:141 #, php-format msgid "invalid image for id %s" msgstr "" -#: src/Console/MoveToAvatarCache.php:168 +#: src/Console/MoveToAvatarCache.php:154 #, php-format msgid "Quit on invalid photo %s" msgstr "" -#: src/Console/PostUpdate.php:87 +#: src/Console/PostUpdate.php:73 #, php-format msgid "Post update version number has been set to %s." msgstr "" -#: src/Console/PostUpdate.php:95 +#: src/Console/PostUpdate.php:81 msgid "Check for pending update actions." msgstr "" -#: src/Console/PostUpdate.php:97 +#: src/Console/PostUpdate.php:83 msgid "Done." msgstr "Tehtud." -#: src/Console/PostUpdate.php:99 +#: src/Console/PostUpdate.php:85 msgid "Execute pending post updates." msgstr "" -#: src/Console/PostUpdate.php:105 +#: src/Console/PostUpdate.php:91 msgid "All pending post updates are done." msgstr "" -#: src/Console/User.php:158 src/Console/User.php:246 +#: src/Console/User.php:144 src/Console/User.php:232 msgid "Enter user nickname: " msgstr "" -#: src/Console/User.php:182 src/Model/User.php:819 -#: src/Module/Api/Twitter/ContactEndpoint.php:74 -#: src/Module/Moderation/Users/Active.php:71 -#: src/Module/Moderation/Users/Blocked.php:71 -#: src/Module/Moderation/Users/Index.php:78 -#: src/Module/Moderation/Users/Pending.php:67 +#: src/Console/User.php:168 src/Model/User.php:831 +#: src/Module/Api/Twitter/ContactEndpoint.php:60 +#: src/Module/Moderation/Users/Active.php:57 +#: src/Module/Moderation/Users/Blocked.php:57 +#: src/Module/Moderation/Users/Index.php:64 +#: src/Module/Moderation/Users/Pending.php:53 msgid "User not found" msgstr "Kasutajat ei leitud" -#: src/Console/User.php:202 +#: src/Console/User.php:188 msgid "Enter new password: " msgstr "Sisesta uus parool:" -#: src/Console/User.php:210 src/Module/Security/PasswordTooLong.php:69 -#: src/Module/Settings/Account.php:75 +#: src/Console/User.php:196 src/Module/Security/PasswordTooLong.php:55 +#: src/Module/Settings/Account.php:61 msgid "Password update failed. Please try again." msgstr "Parooli uuendus nurjus. Palun proovi uuesti." -#: src/Console/User.php:213 src/Module/Security/PasswordTooLong.php:72 -#: src/Module/Settings/Account.php:78 +#: src/Console/User.php:199 src/Module/Security/PasswordTooLong.php:58 +#: src/Module/Settings/Account.php:64 msgid "Password changed." msgstr "Parool muudetud." -#: src/Console/User.php:238 +#: src/Console/User.php:224 msgid "Enter user name: " msgstr "" -#: src/Console/User.php:254 +#: src/Console/User.php:240 msgid "Enter user email address: " msgstr "" -#: src/Console/User.php:262 +#: src/Console/User.php:248 msgid "Enter a language (optional): " msgstr "" -#: src/Console/User.php:267 +#: src/Console/User.php:253 msgid "Enter URL of an image to use as avatar (optional): " msgstr "" -#: src/Console/User.php:292 +#: src/Console/User.php:278 msgid "User is not pending." msgstr "" -#: src/Console/User.php:324 +#: src/Console/User.php:310 msgid "User has already been marked for deletion." msgstr "" -#: src/Console/User.php:329 +#: src/Console/User.php:315 #, php-format msgid "Type \"yes\" to delete %s" msgstr "" -#: src/Console/User.php:331 +#: src/Console/User.php:317 msgid "Deletion aborted." msgstr "" -#: src/Console/User.php:456 +#: src/Console/User.php:442 msgid "Enter category: " msgstr "" -#: src/Console/User.php:466 +#: src/Console/User.php:452 msgid "Enter key: " msgstr "" -#: src/Console/User.php:500 +#: src/Console/User.php:486 msgid "Enter value: " msgstr "" -#: src/Content/BoundariesPager.php:116 src/Content/Pager.php:171 +#: src/Content/BoundariesPager.php:102 src/Content/Pager.php:157 msgid "newer" msgstr "ei kunagi" -#: src/Content/BoundariesPager.php:124 src/Content/Pager.php:176 +#: src/Content/BoundariesPager.php:110 src/Content/Pager.php:162 msgid "older" msgstr "vanem" -#: src/Content/ContactSelector.php:51 +#: src/Content/ContactSelector.php:37 msgid "Frequently" msgstr "Sageli" -#: src/Content/ContactSelector.php:52 +#: src/Content/ContactSelector.php:38 msgid "Hourly" msgstr "Tunnis" -#: src/Content/ContactSelector.php:53 +#: src/Content/ContactSelector.php:39 msgid "Twice daily" msgstr "Kakskord päevas" -#: src/Content/ContactSelector.php:54 +#: src/Content/ContactSelector.php:40 msgid "Daily" msgstr "Päevas" -#: src/Content/ContactSelector.php:55 +#: src/Content/ContactSelector.php:41 msgid "Weekly" msgstr "Nädalas" -#: src/Content/ContactSelector.php:56 +#: src/Content/ContactSelector.php:42 msgid "Monthly" msgstr "Kuus" -#: src/Content/ContactSelector.php:126 +#: src/Content/ContactSelector.php:112 msgid "DFRN" msgstr "" -#: src/Content/ContactSelector.php:127 +#: src/Content/ContactSelector.php:113 msgid "OStatus" msgstr "" -#: src/Content/ContactSelector.php:128 +#: src/Content/ContactSelector.php:114 msgid "RSS/Atom" msgstr "" -#: src/Content/ContactSelector.php:129 -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Create.php:72 -#: src/Module/Moderation/Users/Deleted.php:83 -#: src/Module/Moderation/Users/Index.php:140 -#: src/Module/Moderation/Users/Index.php:160 -#: src/Module/Moderation/Users/Pending.php:99 +#: src/Content/ContactSelector.php:115 +#: src/Module/Moderation/Users/Active.php:112 +#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Create.php:58 +#: src/Module/Moderation/Users/Deleted.php:69 +#: src/Module/Moderation/Users/Index.php:126 +#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Pending.php:85 msgid "Email" msgstr "Email" -#: src/Content/ContactSelector.php:130 src/Module/Debug/Babel.php:307 +#: src/Content/ContactSelector.php:116 src/Module/Debug/Babel.php:301 msgid "Diaspora" msgstr "Diaspora" -#: src/Content/ContactSelector.php:131 +#: src/Content/ContactSelector.php:117 msgid "Zot!" msgstr "" -#: src/Content/ContactSelector.php:132 +#: src/Content/ContactSelector.php:118 msgid "LinkedIn" msgstr "" -#: src/Content/ContactSelector.php:133 +#: src/Content/ContactSelector.php:119 msgid "XMPP/IM" msgstr "" -#: src/Content/ContactSelector.php:134 +#: src/Content/ContactSelector.php:120 msgid "MySpace" msgstr "" -#: src/Content/ContactSelector.php:135 +#: src/Content/ContactSelector.php:121 msgid "Google+" msgstr "" -#: src/Content/ContactSelector.php:136 +#: src/Content/ContactSelector.php:122 msgid "pump.io" msgstr "" -#: src/Content/ContactSelector.php:137 +#: src/Content/ContactSelector.php:123 msgid "Twitter" msgstr "" -#: src/Content/ContactSelector.php:138 +#: src/Content/ContactSelector.php:124 msgid "Discourse" msgstr "" -#: src/Content/ContactSelector.php:139 +#: src/Content/ContactSelector.php:125 msgid "Diaspora Connector" msgstr "" -#: src/Content/ContactSelector.php:140 +#: src/Content/ContactSelector.php:126 msgid "GNU Social Connector" msgstr "" -#: src/Content/ContactSelector.php:141 +#: src/Content/ContactSelector.php:127 msgid "ActivityPub" msgstr "" -#: src/Content/ContactSelector.php:142 +#: src/Content/ContactSelector.php:128 msgid "pnut" msgstr "" -#: src/Content/ContactSelector.php:143 +#: src/Content/ContactSelector.php:129 msgid "Tumblr" msgstr "" -#: src/Content/ContactSelector.php:144 +#: src/Content/ContactSelector.php:130 msgid "Bluesky" msgstr "" -#: src/Content/ContactSelector.php:180 +#: src/Content/ContactSelector.php:166 #, php-format msgid "%s (via %s)" msgstr "" -#: src/Content/Conversation.php:226 +#: src/Content/Conversation.php:212 msgid "and" msgstr "ja" -#: src/Content/Conversation.php:229 +#: src/Content/Conversation.php:215 #, php-format msgid "and %d other people" msgstr "" -#: src/Content/Conversation.php:235 +#: src/Content/Conversation.php:221 #, php-format msgid "%2$s likes this." msgid_plural "%2$s like this." msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:237 +#: src/Content/Conversation.php:223 #, php-format msgid "%2$s doesn't like this." msgid_plural "%2$s don't like this." msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:239 +#: src/Content/Conversation.php:225 #, php-format msgid "%2$s attends." msgid_plural "%2$s attend." msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:241 +#: src/Content/Conversation.php:227 #, php-format msgid "%2$s doesn't attend." msgid_plural "%2$s don't attend." msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:243 +#: src/Content/Conversation.php:229 #, php-format msgid "%2$s attends maybe." msgid_plural "%2$s attend maybe." msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:245 +#: src/Content/Conversation.php:231 #, php-format msgid "%2$s reshared this." msgid_plural "%2$s reshared this." msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:276 +#: src/Content/Conversation.php:262 #, php-format msgid " likes this" msgid_plural " like this" msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:279 +#: src/Content/Conversation.php:265 #, php-format msgid " doesn't like this" msgid_plural " don't like this" msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:282 +#: src/Content/Conversation.php:268 #, php-format msgid " attends" msgid_plural " attend" msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:285 +#: src/Content/Conversation.php:271 #, php-format msgid " doesn't attend" msgid_plural " don't attend" msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:288 +#: src/Content/Conversation.php:274 #, php-format msgid " attends maybe" msgid_plural " attend maybe" msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:291 +#: src/Content/Conversation.php:277 #, php-format msgid " reshared this" msgid_plural " reshared this" msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:338 +#: src/Content/Conversation.php:323 msgid "Visible to everybody" msgstr "" -#: src/Content/Conversation.php:339 src/Module/Item/Compose.php:200 -#: src/Object/Post.php:1166 +#: src/Content/Conversation.php:324 src/Module/Item/Compose.php:193 +#: src/Object/Post.php:1157 msgid "Please enter a image/video/audio/webpage URL:" msgstr "Palun sisesta pildi/video/audio/veebilehe URL:" -#: src/Content/Conversation.php:340 +#: src/Content/Conversation.php:325 msgid "Tag term:" msgstr "Tag`i tingimus:" -#: src/Content/Conversation.php:341 src/Module/Filer/SaveTag.php:73 +#: src/Content/Conversation.php:326 src/Module/Filer/SaveTag.php:59 msgid "Save to Folder:" msgstr "Salvesta kausta:" -#: src/Content/Conversation.php:342 +#: src/Content/Conversation.php:327 msgid "Where are you right now?" msgstr "Kus sa hetkel oled?" -#: src/Content/Conversation.php:343 +#: src/Content/Conversation.php:328 msgid "Delete item(s)?" msgstr "Kustutada element(id)?" -#: src/Content/Conversation.php:355 src/Module/Item/Compose.php:175 +#: src/Content/Conversation.php:340 src/Module/Item/Compose.php:168 msgid "Created at" msgstr "" -#: src/Content/Conversation.php:365 +#: src/Content/Conversation.php:350 msgid "New Post" msgstr "Uus postitus" -#: src/Content/Conversation.php:368 +#: src/Content/Conversation.php:353 msgid "Share" msgstr "Jaga" -#: src/Content/Conversation.php:371 src/Module/Post/Edit.php:132 +#: src/Content/Conversation.php:356 src/Module/Post/Edit.php:118 msgid "upload photo" msgstr "lae foto üles" -#: src/Content/Conversation.php:372 src/Module/Post/Edit.php:133 +#: src/Content/Conversation.php:357 src/Module/Post/Edit.php:119 msgid "Attach file" msgstr "Manusta fail" -#: src/Content/Conversation.php:373 src/Module/Post/Edit.php:134 +#: src/Content/Conversation.php:358 src/Module/Post/Edit.php:120 msgid "attach file" msgstr "manusta fail" -#: src/Content/Conversation.php:374 src/Module/Item/Compose.php:190 -#: src/Module/Post/Edit.php:171 src/Object/Post.php:1156 +#: src/Content/Conversation.php:359 src/Module/Item/Compose.php:183 +#: src/Module/Post/Edit.php:157 src/Object/Post.php:1147 msgid "Bold" msgstr "Rasvane" -#: src/Content/Conversation.php:375 src/Module/Item/Compose.php:191 -#: src/Module/Post/Edit.php:172 src/Object/Post.php:1157 +#: src/Content/Conversation.php:360 src/Module/Item/Compose.php:184 +#: src/Module/Post/Edit.php:158 src/Object/Post.php:1148 msgid "Italic" msgstr "" -#: src/Content/Conversation.php:376 src/Module/Item/Compose.php:192 -#: src/Module/Post/Edit.php:173 src/Object/Post.php:1158 +#: src/Content/Conversation.php:361 src/Module/Item/Compose.php:185 +#: src/Module/Post/Edit.php:159 src/Object/Post.php:1149 msgid "Underline" msgstr "Allajoonitud" -#: src/Content/Conversation.php:377 src/Module/Item/Compose.php:193 -#: src/Module/Post/Edit.php:174 src/Object/Post.php:1160 +#: src/Content/Conversation.php:362 src/Module/Item/Compose.php:186 +#: src/Module/Post/Edit.php:160 src/Object/Post.php:1151 msgid "Quote" msgstr "Tsitaat" -#: src/Content/Conversation.php:378 src/Module/Item/Compose.php:194 -#: src/Module/Post/Edit.php:175 src/Object/Post.php:1161 +#: src/Content/Conversation.php:363 src/Module/Item/Compose.php:187 +#: src/Module/Post/Edit.php:161 src/Object/Post.php:1152 msgid "Add emojis" msgstr "" -#: src/Content/Conversation.php:379 src/Module/Item/Compose.php:195 -#: src/Object/Post.php:1159 +#: src/Content/Conversation.php:364 src/Module/Item/Compose.php:188 +#: src/Object/Post.php:1150 msgid "Content Warning" msgstr "" -#: src/Content/Conversation.php:380 src/Module/Item/Compose.php:196 -#: src/Module/Post/Edit.php:176 src/Object/Post.php:1162 +#: src/Content/Conversation.php:365 src/Module/Item/Compose.php:189 +#: src/Module/Post/Edit.php:162 src/Object/Post.php:1153 msgid "Code" msgstr "Kood" -#: src/Content/Conversation.php:381 src/Module/Item/Compose.php:197 -#: src/Object/Post.php:1163 +#: src/Content/Conversation.php:366 src/Module/Item/Compose.php:190 +#: src/Object/Post.php:1154 msgid "Image" msgstr "Pilt" -#: src/Content/Conversation.php:382 src/Module/Item/Compose.php:198 -#: src/Module/Post/Edit.php:177 src/Object/Post.php:1164 +#: src/Content/Conversation.php:367 src/Module/Item/Compose.php:191 +#: src/Module/Post/Edit.php:163 src/Object/Post.php:1155 msgid "Link" msgstr "" -#: src/Content/Conversation.php:383 src/Module/Item/Compose.php:199 -#: src/Module/Post/Edit.php:178 src/Object/Post.php:1165 +#: src/Content/Conversation.php:368 src/Module/Item/Compose.php:192 +#: src/Module/Post/Edit.php:164 src/Object/Post.php:1156 msgid "Link or Media" msgstr "Link või meediafail" -#: src/Content/Conversation.php:384 +#: src/Content/Conversation.php:369 msgid "Video" msgstr "" -#: src/Content/Conversation.php:385 src/Module/Item/Compose.php:202 -#: src/Module/Post/Edit.php:141 +#: src/Content/Conversation.php:370 src/Module/Item/Compose.php:195 +#: src/Module/Post/Edit.php:127 msgid "Set your location" msgstr "Vali oma asukoht" -#: src/Content/Conversation.php:386 src/Module/Post/Edit.php:142 +#: src/Content/Conversation.php:371 src/Module/Post/Edit.php:128 msgid "set location" msgstr "vali asukoht" -#: src/Content/Conversation.php:387 src/Module/Post/Edit.php:143 +#: src/Content/Conversation.php:372 src/Module/Post/Edit.php:129 msgid "Clear browser location" msgstr "Kustuta sirviku asukoht" -#: src/Content/Conversation.php:388 src/Module/Post/Edit.php:144 +#: src/Content/Conversation.php:373 src/Module/Post/Edit.php:130 msgid "clear location" msgstr "kustuta asukoht" -#: src/Content/Conversation.php:390 src/Module/Item/Compose.php:207 -#: src/Module/Post/Edit.php:157 +#: src/Content/Conversation.php:375 src/Module/Item/Compose.php:200 +#: src/Module/Post/Edit.php:143 msgid "Set title" msgstr "Pane pealkiri" -#: src/Content/Conversation.php:392 src/Module/Item/Compose.php:208 -#: src/Module/Post/Edit.php:159 +#: src/Content/Conversation.php:377 src/Module/Item/Compose.php:201 +#: src/Module/Post/Edit.php:145 msgid "Categories (comma-separated list)" msgstr "Kategooriad (komaga-eraldatud nimistu)" -#: src/Content/Conversation.php:397 src/Module/Item/Compose.php:224 +#: src/Content/Conversation.php:382 src/Module/Item/Compose.php:217 msgid "Scheduled at" msgstr "Ajastatud" -#: src/Content/Conversation.php:402 src/Module/Post/Edit.php:146 +#: src/Content/Conversation.php:387 src/Module/Post/Edit.php:132 msgid "Permission settings" msgstr "Õiguste sätted" -#: src/Content/Conversation.php:412 src/Module/Post/Edit.php:155 +#: src/Content/Conversation.php:396 src/Module/Post/Edit.php:141 msgid "Public post" msgstr "Avalik postitus" -#: src/Content/Conversation.php:426 src/Content/Widget/VCard.php:130 -#: src/Model/Profile.php:483 src/Module/Admin/Logs/View.php:92 -#: src/Module/Post/Edit.php:181 +#: src/Content/Conversation.php:410 src/Content/Widget/VCard.php:117 +#: src/Model/Profile.php:462 src/Module/Admin/Logs/View.php:80 +#: src/Module/Post/Edit.php:167 msgid "Message" msgstr "Sõnum" -#: src/Content/Conversation.php:427 src/Module/Post/Edit.php:182 -#: src/Module/Settings/TwoFactor/Trusted.php:143 +#: src/Content/Conversation.php:411 src/Module/Post/Edit.php:168 +#: src/Module/Settings/TwoFactor/Trusted.php:129 msgid "Browser" msgstr "Sirvik" -#: src/Content/Conversation.php:429 src/Module/Post/Edit.php:185 +#: src/Content/Conversation.php:413 src/Module/Post/Edit.php:171 msgid "Open Compose page" msgstr "" -#: src/Content/Conversation.php:597 +#: src/Content/Conversation.php:580 msgid "remove" msgstr "eemalda" -#: src/Content/Conversation.php:601 +#: src/Content/Conversation.php:584 msgid "Delete Selected Items" msgstr "Kustuta valitud elemendid" -#: src/Content/Conversation.php:729 src/Content/Conversation.php:732 -#: src/Content/Conversation.php:735 src/Content/Conversation.php:738 -#: src/Content/Conversation.php:741 +#: src/Content/Conversation.php:712 src/Content/Conversation.php:715 +#: src/Content/Conversation.php:718 src/Content/Conversation.php:721 +#: src/Content/Conversation.php:724 #, php-format msgid "You had been addressed (%s)." msgstr "" -#: src/Content/Conversation.php:744 +#: src/Content/Conversation.php:727 #, php-format msgid "You are following %s." msgstr "" -#: src/Content/Conversation.php:749 +#: src/Content/Conversation.php:732 #, php-format msgid "You subscribed to %s." msgstr "" -#: src/Content/Conversation.php:751 +#: src/Content/Conversation.php:734 msgid "You subscribed to one or more tags in this post." msgstr "" -#: src/Content/Conversation.php:771 +#: src/Content/Conversation.php:754 #, php-format msgid "%s reshared this." msgstr "" -#: src/Content/Conversation.php:773 +#: src/Content/Conversation.php:756 msgid "Reshared" msgstr "Taasjagatud" -#: src/Content/Conversation.php:773 +#: src/Content/Conversation.php:756 #, php-format msgid "Reshared by %s <%s>" msgstr "" -#: src/Content/Conversation.php:776 +#: src/Content/Conversation.php:759 #, php-format msgid "%s is participating in this thread." msgstr "" -#: src/Content/Conversation.php:779 +#: src/Content/Conversation.php:762 msgid "Stored for general reasons" msgstr "" -#: src/Content/Conversation.php:782 +#: src/Content/Conversation.php:765 msgid "Global post" msgstr "" -#: src/Content/Conversation.php:785 +#: src/Content/Conversation.php:768 msgid "Sent via an relay server" msgstr "" -#: src/Content/Conversation.php:785 +#: src/Content/Conversation.php:768 #, php-format msgid "Sent via the relay server %s <%s>" msgstr "" -#: src/Content/Conversation.php:788 +#: src/Content/Conversation.php:771 msgid "Fetched" msgstr "" -#: src/Content/Conversation.php:788 +#: src/Content/Conversation.php:771 #, php-format msgid "Fetched because of %s <%s>" msgstr "" -#: src/Content/Conversation.php:791 +#: src/Content/Conversation.php:774 msgid "Stored because of a child post to complete this thread." msgstr "" -#: src/Content/Conversation.php:794 +#: src/Content/Conversation.php:777 msgid "Local delivery" msgstr "" -#: src/Content/Conversation.php:797 +#: src/Content/Conversation.php:780 msgid "Stored because of your activity (like, comment, star, ...)" msgstr "" -#: src/Content/Conversation.php:800 +#: src/Content/Conversation.php:783 msgid "Distributed" msgstr "" -#: src/Content/Conversation.php:803 +#: src/Content/Conversation.php:786 msgid "Pushed to us" msgstr "" -#: src/Content/Conversation.php:1529 src/Object/Post.php:248 +#: src/Content/Conversation.php:1504 src/Object/Post.php:247 msgid "Pinned item" msgstr "" -#: src/Content/Conversation.php:1546 src/Object/Post.php:548 -#: src/Object/Post.php:549 +#: src/Content/Conversation.php:1521 src/Object/Post.php:541 +#: src/Object/Post.php:542 #, php-format msgid "View %s's profile @ %s" msgstr "" -#: src/Content/Conversation.php:1559 src/Object/Post.php:536 +#: src/Content/Conversation.php:1535 src/Object/Post.php:529 msgid "Categories:" msgstr "Kategooriad:" -#: src/Content/Conversation.php:1560 src/Object/Post.php:537 +#: src/Content/Conversation.php:1536 src/Object/Post.php:530 msgid "Filed under:" msgstr "" -#: src/Content/Conversation.php:1568 src/Object/Post.php:562 +#: src/Content/Conversation.php:1544 src/Object/Post.php:556 #, php-format msgid "%s from %s" msgstr "" -#: src/Content/Conversation.php:1584 +#: src/Content/Conversation.php:1560 msgid "View in context" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:42 +#: src/Content/Conversation/Factory/Channel.php:28 msgid "For you" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:42 +#: src/Content/Conversation/Factory/Channel.php:28 msgid "Posts from contacts you interact with and who interact with you" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:43 +#: src/Content/Conversation/Factory/Channel.php:29 msgid "Discover" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:43 +#: src/Content/Conversation/Factory/Channel.php:29 msgid "Posts from accounts that you don't follow, but that you might like." msgstr "" -#: src/Content/Conversation/Factory/Channel.php:44 +#: src/Content/Conversation/Factory/Channel.php:30 msgid "What's Hot" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:44 +#: src/Content/Conversation/Factory/Channel.php:30 msgid "Posts with a lot of interactions" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:45 +#: src/Content/Conversation/Factory/Channel.php:31 #, php-format msgid "Posts in %s" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:46 +#: src/Content/Conversation/Factory/Channel.php:32 msgid "Posts from your followers that you don't follow" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:47 +#: src/Content/Conversation/Factory/Channel.php:33 msgid "Sharers of sharers" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:47 +#: src/Content/Conversation/Factory/Channel.php:33 msgid "Posts from accounts that are followed by accounts that you follow" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:48 -#: src/Module/Settings/Channels.php:193 src/Module/Settings/Channels.php:214 +#: src/Content/Conversation/Factory/Channel.php:34 +msgid "Quiet sharers" +msgstr "" + +#: src/Content/Conversation/Factory/Channel.php:34 +msgid "Posts from accounts that you follow but who don't post very often" +msgstr "" + +#: src/Content/Conversation/Factory/Channel.php:35 +#: src/Module/Settings/Channels.php:185 src/Module/Settings/Channels.php:206 msgid "Images" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:48 +#: src/Content/Conversation/Factory/Channel.php:35 msgid "Posts with images" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:49 -#: src/Module/Settings/Channels.php:195 src/Module/Settings/Channels.php:216 +#: src/Content/Conversation/Factory/Channel.php:36 +#: src/Module/Settings/Channels.php:187 src/Module/Settings/Channels.php:208 msgid "Audio" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:49 +#: src/Content/Conversation/Factory/Channel.php:36 msgid "Posts with audio" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:50 -#: src/Module/Settings/Channels.php:194 src/Module/Settings/Channels.php:215 +#: src/Content/Conversation/Factory/Channel.php:37 +#: src/Module/Settings/Channels.php:186 src/Module/Settings/Channels.php:207 msgid "Videos" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:50 +#: src/Content/Conversation/Factory/Channel.php:37 msgid "Posts with videos" msgstr "" -#: src/Content/Conversation/Factory/Community.php:43 +#: src/Content/Conversation/Factory/Community.php:29 msgid "Local Community" msgstr "Kohalik kogukond" -#: src/Content/Conversation/Factory/Community.php:43 +#: src/Content/Conversation/Factory/Community.php:29 msgid "Posts from local users on this server" msgstr "Selle kohaliku serveri kasutajate postitused" -#: src/Content/Conversation/Factory/Community.php:47 -#: src/Module/Settings/Channels.php:144 src/Module/Settings/Channels.php:149 +#: src/Content/Conversation/Factory/Community.php:33 +#: src/Module/Settings/Channels.php:136 src/Module/Settings/Channels.php:141 msgid "Global Community" msgstr "Globaalne kogukond" -#: src/Content/Conversation/Factory/Community.php:47 +#: src/Content/Conversation/Factory/Community.php:33 msgid "Posts from users of the whole federated network" msgstr "Terve fõderatsiooni võrgu kasutajate postitused" -#: src/Content/Conversation/Factory/Network.php:38 -#: src/Module/Settings/Channels.php:150 +#: src/Content/Conversation/Factory/Network.php:24 +#: src/Module/Settings/Channels.php:142 msgid "Latest Activity" msgstr "Viimased tegevused" -#: src/Content/Conversation/Factory/Network.php:38 +#: src/Content/Conversation/Factory/Network.php:24 msgid "Sort by latest activity" msgstr "Sorteeri hiljutiste tegevuste järgi" -#: src/Content/Conversation/Factory/Network.php:39 -#: src/Module/Settings/Channels.php:151 +#: src/Content/Conversation/Factory/Network.php:25 +#: src/Module/Settings/Channels.php:143 msgid "Latest Posts" msgstr "Viimased postitused" -#: src/Content/Conversation/Factory/Network.php:39 +#: src/Content/Conversation/Factory/Network.php:25 msgid "Sort by post received date" msgstr "" -#: src/Content/Conversation/Factory/Network.php:40 -#: src/Module/Settings/Channels.php:152 +#: src/Content/Conversation/Factory/Network.php:26 +#: src/Module/Settings/Channels.php:144 msgid "Latest Creation" msgstr "Viimati loodud" -#: src/Content/Conversation/Factory/Network.php:40 +#: src/Content/Conversation/Factory/Network.php:26 msgid "Sort by post creation date" msgstr "" -#: src/Content/Conversation/Factory/Network.php:41 -#: src/Module/Settings/Profile/Index.php:260 +#: src/Content/Conversation/Factory/Network.php:27 +#: src/Module/Settings/Profile/Index.php:251 msgid "Personal" msgstr "Isiklik" -#: src/Content/Conversation/Factory/Network.php:41 +#: src/Content/Conversation/Factory/Network.php:27 msgid "Posts that mention or involve you" msgstr "Postitused, mis mainivad või puudutavad sind" -#: src/Content/Conversation/Factory/Network.php:42 src/Object/Post.php:398 +#: src/Content/Conversation/Factory/Network.php:28 src/Object/Post.php:397 msgid "Starred" msgstr "Tähega märgitud" -#: src/Content/Conversation/Factory/Network.php:42 +#: src/Content/Conversation/Factory/Network.php:28 msgid "Favourite Posts" msgstr "Lemmikpostitused" -#: src/Content/Feature.php:96 +#: src/Content/Feature.php:93 msgid "General Features" msgstr "Üldised funktsioonid" -#: src/Content/Feature.php:98 +#: src/Content/Feature.php:95 msgid "Photo Location" msgstr "Foto asukoht" -#: src/Content/Feature.php:98 +#: src/Content/Feature.php:95 msgid "" "Photo metadata is normally stripped. This extracts the location (if present)" " prior to stripping metadata and links it to a map." msgstr "" -#: src/Content/Feature.php:99 -msgid "Trending Tags" +#: src/Content/Feature.php:96 +msgid "Display the community in the navigation" msgstr "" -#: src/Content/Feature.php:99 +#: src/Content/Feature.php:96 msgid "" -"Show a community page widget with a list of the most popular tags in recent " -"public posts." +"If enabled, the community can be accessed via the navigation menu. " +"Independent from this setting, the community timelines can always be " +"accessed via the channels." msgstr "" -#: src/Content/Feature.php:104 +#: src/Content/Feature.php:101 msgid "Post Composition Features" msgstr "" -#: src/Content/Feature.php:105 -msgid "Auto-mention Groups" -msgstr "" - -#: src/Content/Feature.php:105 -msgid "" -"Add/remove mention when a group page is selected/deselected in ACL window." -msgstr "" - -#: src/Content/Feature.php:106 +#: src/Content/Feature.php:102 msgid "Explicit Mentions" msgstr "" -#: src/Content/Feature.php:106 +#: src/Content/Feature.php:102 msgid "" "Add explicit mentions to comment box for manual control over who gets " "mentioned in replies." msgstr "" -#: src/Content/Feature.php:107 +#: src/Content/Feature.php:103 msgid "Add an abstract from ActivityPub content warnings" msgstr "" -#: src/Content/Feature.php:107 +#: src/Content/Feature.php:103 msgid "" "Add an abstract when commenting on ActivityPub posts with a content warning." " Abstracts are displayed as content warning on systems like Mastodon or " "Pleroma." msgstr "" -#: src/Content/Feature.php:112 +#: src/Content/Feature.php:108 msgid "Post/Comment Tools" msgstr "Postituse/Kommenteerimise tööriistad" -#: src/Content/Feature.php:113 +#: src/Content/Feature.php:109 msgid "Post Categories" msgstr "Postituse kategooriad" -#: src/Content/Feature.php:113 +#: src/Content/Feature.php:109 msgid "Add categories to your posts" msgstr "Lisa kategooriad on postitustele" +#: src/Content/Feature.php:114 +msgid "Network Widgets" +msgstr "" + +#: src/Content/Feature.php:115 src/Content/Widget.php:194 +#: src/Model/Circle.php:587 src/Module/Contact.php:381 +#: src/Module/Welcome.php:62 +msgid "Circles" +msgstr "" + +#: src/Content/Feature.php:115 +msgid "" +"Display posts that have been created by accounts of the selected circle." +msgstr "" + +#: src/Content/Feature.php:116 src/Content/GroupManager.php:133 +#: src/Content/Nav.php:264 src/Content/Text/HTML.php:868 +#: src/Content/Widget.php:516 src/Model/User.php:1390 +msgid "Groups" +msgstr "" + +#: src/Content/Feature.php:116 +msgid "Display posts that have been distributed by the selected group." +msgstr "" + +#: src/Content/Feature.php:117 src/Content/Widget.php:485 +msgid "Archives" +msgstr "Arhiivid" + +#: src/Content/Feature.php:117 +msgid "Display an archive where posts can be selected by month and year." +msgstr "" + +#: src/Content/Feature.php:118 src/Content/Widget.php:267 +msgid "Protocols" +msgstr "Protokollid" + #: src/Content/Feature.php:118 +msgid "Display posts with the selected protocols." +msgstr "" + +#: src/Content/Feature.php:119 src/Content/Widget.php:522 +#: src/Module/Settings/Account.php:433 +msgid "Account Types" +msgstr "Kontode tüübid" + +#: src/Content/Feature.php:119 +msgid "Display posts done by accounts with the selected account type." +msgstr "" + +#: src/Content/Feature.php:120 src/Content/Widget.php:571 +#: src/Module/Admin/Site.php:464 src/Module/BaseSettings.php:111 +#: src/Module/Settings/Channels.php:211 src/Module/Settings/Display.php:301 +msgid "Channels" +msgstr "" + +#: src/Content/Feature.php:120 +msgid "Display posts in the system channels and user defined channels." +msgstr "" + +#: src/Content/Feature.php:121 src/Content/Widget/SavedSearches.php:46 +msgid "Saved Searches" +msgstr "Salvestatud otsingud" + +#: src/Content/Feature.php:121 +msgid "Display posts that contain subscribed hashtags." +msgstr "" + +#: src/Content/Feature.php:122 src/Content/Widget.php:297 +msgid "Saved Folders" +msgstr "Salvestatud kaustad" + +#: src/Content/Feature.php:122 +msgid "Display a list of folders in which posts are stored." +msgstr "" + +#: src/Content/Feature.php:123 src/Module/Conversation/Timeline.php:186 +msgid "Own Contacts" +msgstr "" + +#: src/Content/Feature.php:123 +msgid "" +"Include or exclude posts from subscribed accounts. This widget is not " +"visible on all channels." +msgstr "" + +#: src/Content/Feature.php:124 +msgid "Trending Tags" +msgstr "" + +#: src/Content/Feature.php:124 +msgid "Display a list of the most popular tags in recent public posts." +msgstr "" + +#: src/Content/Feature.php:129 msgid "Advanced Profile Settings" msgstr "Täpsemad profiili sätted" -#: src/Content/Feature.php:119 -msgid "List Groups" -msgstr "" - -#: src/Content/Feature.php:119 -msgid "Show visitors public groups at the Advanced Profile Page" -msgstr "" - -#: src/Content/Feature.php:120 +#: src/Content/Feature.php:130 msgid "Tag Cloud" msgstr "Sildipilv tag cloud" -#: src/Content/Feature.php:120 +#: src/Content/Feature.php:130 msgid "Provide a personal tag cloud on your profile page" msgstr "Näita personaalset sildipilve oma profiili lehel" -#: src/Content/Feature.php:121 +#: src/Content/Feature.php:131 msgid "Display Membership Date" msgstr "Kuva liitumise kuupäev" -#: src/Content/Feature.php:121 +#: src/Content/Feature.php:131 msgid "Display membership date in profile" msgstr "Kuva liitumiskuupäev oma profiilil" -#: src/Content/Feature.php:126 +#: src/Content/Feature.php:136 msgid "Advanced Calendar Settings" msgstr "" -#: src/Content/Feature.php:127 +#: src/Content/Feature.php:137 msgid "Allow anonymous access to your calendar" msgstr "" -#: src/Content/Feature.php:127 +#: src/Content/Feature.php:137 msgid "" "Allows anonymous visitors to consult your calendar and your public events. " "Contact birthday events are private to you." msgstr "" -#: src/Content/GroupManager.php:147 src/Content/Nav.php:278 -#: src/Content/Text/HTML.php:881 src/Content/Widget.php:537 -#: src/Model/User.php:1381 -msgid "Groups" -msgstr "" - -#: src/Content/GroupManager.php:149 +#: src/Content/GroupManager.php:135 msgid "External link to group" msgstr "" -#: src/Content/GroupManager.php:153 src/Content/Widget.php:512 +#: src/Content/GroupManager.php:139 src/Content/Widget.php:491 msgid "show less" msgstr "" -#: src/Content/GroupManager.php:154 src/Content/Widget.php:410 -#: src/Content/Widget.php:513 +#: src/Content/GroupManager.php:140 src/Content/Widget.php:389 +#: src/Content/Widget.php:492 msgid "show more" msgstr "näita veel" -#: src/Content/GroupManager.php:155 +#: src/Content/GroupManager.php:141 msgid "Create new group" msgstr "" -#: src/Content/Item.php:332 src/Model/Item.php:3250 +#: src/Content/Item.php:317 src/Model/Item.php:3272 msgid "event" msgstr "sündmus" -#: src/Content/Item.php:335 src/Content/Item.php:345 +#: src/Content/Item.php:320 src/Content/Item.php:330 msgid "status" msgstr "staatus" -#: src/Content/Item.php:341 src/Model/Item.php:3252 -#: src/Module/Post/Tag/Add.php:123 +#: src/Content/Item.php:326 src/Model/Item.php:3274 +#: src/Module/Post/Tag/Add.php:109 msgid "photo" msgstr "foto" -#: src/Content/Item.php:355 src/Module/Post/Tag/Add.php:141 +#: src/Content/Item.php:340 src/Module/Post/Tag/Add.php:127 #, php-format msgid "%1$s tagged %2$s's %3$s with %4$s" msgstr "" -#: src/Content/Item.php:429 view/theme/frio/theme.php:262 +#: src/Content/Item.php:414 view/theme/frio/theme.php:253 msgid "Follow Thread" msgstr "Jälgi vestlust" -#: src/Content/Item.php:430 src/Model/Contact.php:1250 +#: src/Content/Item.php:415 src/Model/Contact.php:1249 msgid "View Status" msgstr "Vaata staatust" -#: src/Content/Item.php:431 src/Content/Item.php:452 -#: src/Model/Contact.php:1184 src/Model/Contact.php:1241 -#: src/Model/Contact.php:1251 src/Module/Directory.php:157 -#: src/Module/Settings/Profile/Index.php:259 +#: src/Content/Item.php:416 src/Content/Item.php:439 +#: src/Model/Contact.php:1184 src/Model/Contact.php:1240 +#: src/Model/Contact.php:1250 src/Module/Directory.php:144 +#: src/Module/Settings/Profile/Index.php:250 msgid "View Profile" msgstr "Vaata profiili" -#: src/Content/Item.php:432 src/Model/Contact.php:1252 +#: src/Content/Item.php:417 src/Model/Contact.php:1251 msgid "View Photos" msgstr "Vaata fotosid" -#: src/Content/Item.php:433 src/Model/Contact.php:1219 -#: src/Model/Profile.php:468 +#: src/Content/Item.php:418 src/Model/Contact.php:1218 +#: src/Model/Profile.php:447 msgid "Network Posts" msgstr "Võrgupostitused" -#: src/Content/Item.php:434 src/Model/Contact.php:1243 -#: src/Model/Contact.php:1254 +#: src/Content/Item.php:419 src/Model/Contact.php:1242 +#: src/Model/Contact.php:1253 msgid "View Contact" msgstr "Vaata kontakti" -#: src/Content/Item.php:435 src/Model/Contact.php:1255 +#: src/Content/Item.php:420 src/Model/Contact.php:1254 msgid "Send PM" msgstr "Saada privaatsõnum" -#: src/Content/Item.php:436 src/Module/Contact.php:467 -#: src/Module/Contact/Profile.php:511 -#: src/Module/Moderation/Blocklist/Contact.php:116 -#: src/Module/Moderation/Users/Active.php:137 -#: src/Module/Moderation/Users/Index.php:152 +#: src/Content/Item.php:421 src/Module/Contact.php:449 +#: src/Module/Contact/Profile.php:518 +#: src/Module/Moderation/Blocklist/Contact.php:102 +#: src/Module/Moderation/Users/Active.php:123 +#: src/Module/Moderation/Users/Index.php:138 msgid "Block" msgstr "Blokeeri" -#: src/Content/Item.php:437 src/Module/Contact.php:468 -#: src/Module/Contact/Profile.php:519 -#: src/Module/Notifications/Introductions.php:134 -#: src/Module/Notifications/Introductions.php:206 -#: src/Module/Notifications/Notification.php:89 +#: src/Content/Item.php:422 src/Module/Contact.php:450 +#: src/Module/Contact/Profile.php:526 +#: src/Module/Notifications/Introductions.php:126 +#: src/Module/Notifications/Introductions.php:198 +#: src/Module/Notifications/Notification.php:75 msgid "Ignore" msgstr "Ignoreeri" -#: src/Content/Item.php:438 src/Module/Contact.php:469 -#: src/Module/Contact/Profile.php:527 +#: src/Content/Item.php:423 src/Module/Contact.php:451 +#: src/Module/Contact/Profile.php:534 msgid "Collapse" msgstr "" -#: src/Content/Item.php:439 src/Object/Post.php:289 +#: src/Content/Item.php:424 src/Object/Post.php:288 #, php-format msgid "Ignore %s server" msgstr "" -#: src/Content/Item.php:443 src/Module/Settings/Channels.php:196 -#: src/Module/Settings/Channels.php:217 src/Object/Post.php:509 +#: src/Content/Item.php:428 src/Module/Settings/Channels.php:188 +#: src/Module/Settings/Channels.php:209 src/Object/Post.php:502 msgid "Languages" msgstr "" -#: src/Content/Item.php:449 src/Content/Widget.php:80 -#: src/Model/Contact.php:1244 src/Model/Contact.php:1256 -#: src/Module/Contact/Follow.php:167 view/theme/vier/theme.php:195 +#: src/Content/Item.php:431 src/Object/Post.php:582 +msgid "Search Text" +msgstr "" + +#: src/Content/Item.php:436 src/Content/Widget.php:66 +#: src/Model/Contact.php:1243 src/Model/Contact.php:1255 +#: src/Module/Contact/Follow.php:148 view/theme/vier/theme.php:183 msgid "Connect/Follow" msgstr "Ühendu/Järgi" -#: src/Content/Item.php:883 +#: src/Content/Item.php:870 msgid "Unable to fetch user." msgstr "" -#: src/Content/Nav.php:121 +#: src/Content/Nav.php:107 msgid "Nothing new here" msgstr "Ei midagi uut siin" -#: src/Content/Nav.php:125 src/Module/Special/HTTPException.php:77 +#: src/Content/Nav.php:111 src/Module/Special/HTTPException.php:63 msgid "Go back" msgstr "" -#: src/Content/Nav.php:126 +#: src/Content/Nav.php:112 msgid "Clear notifications" msgstr "Puhasta teated" -#: src/Content/Nav.php:127 src/Content/Text/HTML.php:868 +#: src/Content/Nav.php:113 src/Content/Text/HTML.php:855 msgid "@name, !group, #tags, content" msgstr "" -#: src/Content/Nav.php:222 src/Module/Security/Login.php:157 +#: src/Content/Nav.php:208 src/Module/Security/Login.php:147 msgid "Logout" msgstr "Logi välja" -#: src/Content/Nav.php:222 +#: src/Content/Nav.php:208 msgid "End this session" msgstr "Lõpeta see sessioon" -#: src/Content/Nav.php:224 src/Module/Bookmarklet.php:44 -#: src/Module/Security/Login.php:158 +#: src/Content/Nav.php:210 src/Module/Bookmarklet.php:30 +#: src/Module/Security/Login.php:148 msgid "Login" msgstr "" -#: src/Content/Nav.php:224 +#: src/Content/Nav.php:210 msgid "Sign in" msgstr "Logi sisse" -#: src/Content/Nav.php:229 src/Module/BaseProfile.php:57 -#: src/Module/Contact.php:511 +#: src/Content/Nav.php:215 src/Module/BaseProfile.php:43 +#: src/Module/Contact.php:493 msgid "Conversations" msgstr "" -#: src/Content/Nav.php:229 +#: src/Content/Nav.php:215 msgid "Conversations you started" msgstr "" -#: src/Content/Nav.php:230 src/Module/BaseProfile.php:49 -#: src/Module/BaseSettings.php:98 src/Module/Contact.php:503 -#: src/Module/Contact/Profile.php:419 src/Module/Profile/Profile.php:268 -#: src/Module/Welcome.php:57 view/theme/frio/theme.php:230 +#: src/Content/Nav.php:216 src/Module/BaseProfile.php:35 +#: src/Module/BaseSettings.php:84 src/Module/Contact.php:485 +#: src/Module/Contact/Profile.php:425 src/Module/Profile/Profile.php:256 +#: src/Module/Welcome.php:43 view/theme/frio/theme.php:221 msgid "Profile" msgstr "Profiil" -#: src/Content/Nav.php:230 view/theme/frio/theme.php:230 +#: src/Content/Nav.php:216 view/theme/frio/theme.php:221 msgid "Your profile page" msgstr "Sinu profiili leht" -#: src/Content/Nav.php:231 src/Module/BaseProfile.php:65 -#: src/Module/Media/Photo/Browser.php:74 view/theme/frio/theme.php:234 +#: src/Content/Nav.php:217 src/Module/BaseProfile.php:51 +#: src/Module/Media/Photo/Browser.php:60 view/theme/frio/theme.php:225 msgid "Photos" msgstr "Fotod" -#: src/Content/Nav.php:231 view/theme/frio/theme.php:234 +#: src/Content/Nav.php:217 view/theme/frio/theme.php:225 msgid "Your photos" msgstr "Sinu fotod" -#: src/Content/Nav.php:232 src/Module/BaseProfile.php:73 -#: src/Module/BaseProfile.php:76 src/Module/Contact.php:527 -#: view/theme/frio/theme.php:235 +#: src/Content/Nav.php:218 src/Module/BaseProfile.php:59 +#: src/Module/BaseProfile.php:62 src/Module/Contact.php:509 +#: view/theme/frio/theme.php:226 msgid "Media" msgstr "" -#: src/Content/Nav.php:232 view/theme/frio/theme.php:235 +#: src/Content/Nav.php:218 view/theme/frio/theme.php:226 msgid "Your postings with media" msgstr "" -#: src/Content/Nav.php:233 src/Content/Nav.php:293 -#: src/Module/BaseProfile.php:85 src/Module/BaseProfile.php:88 -#: src/Module/BaseProfile.php:96 src/Module/BaseProfile.php:99 -#: src/Module/Settings/Display.php:316 view/theme/frio/theme.php:236 -#: view/theme/frio/theme.php:240 +#: src/Content/Nav.php:219 src/Content/Nav.php:279 +#: src/Module/BaseProfile.php:71 src/Module/BaseProfile.php:74 +#: src/Module/BaseProfile.php:82 src/Module/BaseProfile.php:85 +#: src/Module/Settings/Display.php:302 view/theme/frio/theme.php:227 +#: view/theme/frio/theme.php:231 msgid "Calendar" msgstr "Kalender" -#: src/Content/Nav.php:233 view/theme/frio/theme.php:236 +#: src/Content/Nav.php:219 view/theme/frio/theme.php:227 msgid "Your calendar" msgstr "" -#: src/Content/Nav.php:234 +#: src/Content/Nav.php:220 msgid "Personal notes" msgstr "Personaalsed märkmed" -#: src/Content/Nav.php:234 +#: src/Content/Nav.php:220 msgid "Your personal notes" msgstr "Sinu personaalsed märkmed" -#: src/Content/Nav.php:251 src/Content/Nav.php:308 +#: src/Content/Nav.php:237 src/Content/Nav.php:294 msgid "Home" msgstr "Kodu" -#: src/Content/Nav.php:251 src/Module/Settings/OAuth.php:73 +#: src/Content/Nav.php:237 src/Module/Settings/OAuth.php:59 msgid "Home Page" msgstr "Koduleht" -#: src/Content/Nav.php:255 src/Module/Register.php:168 -#: src/Module/Security/Login.php:124 +#: src/Content/Nav.php:241 src/Module/Register.php:161 +#: src/Module/Security/Login.php:114 msgid "Register" msgstr "Registreeri" -#: src/Content/Nav.php:255 +#: src/Content/Nav.php:241 msgid "Create an account" msgstr "Loo konto" -#: src/Content/Nav.php:261 src/Module/Help.php:67 -#: src/Module/Settings/TwoFactor/AppSpecific.php:132 -#: src/Module/Settings/TwoFactor/Index.php:139 -#: src/Module/Settings/TwoFactor/Recovery.php:110 -#: src/Module/Settings/TwoFactor/Verify.php:149 view/theme/vier/theme.php:240 +#: src/Content/Nav.php:247 src/Module/Help.php:53 +#: src/Module/Settings/TwoFactor/AppSpecific.php:118 +#: src/Module/Settings/TwoFactor/Index.php:125 +#: src/Module/Settings/TwoFactor/Recovery.php:96 +#: src/Module/Settings/TwoFactor/Verify.php:135 view/theme/vier/theme.php:228 msgid "Help" msgstr "Abi" -#: src/Content/Nav.php:261 +#: src/Content/Nav.php:247 msgid "Help and documentation" msgstr "Abi ja dokumentatsioon" -#: src/Content/Nav.php:265 +#: src/Content/Nav.php:251 msgid "Apps" msgstr "Rakendused" -#: src/Content/Nav.php:265 +#: src/Content/Nav.php:251 msgid "Addon applications, utilities, games" msgstr "Lisarakendused, utiliidid, mängud" -#: src/Content/Nav.php:269 src/Content/Text/HTML.php:866 -#: src/Module/Admin/Logs/View.php:86 src/Module/Search/Index.php:112 +#: src/Content/Nav.php:255 src/Content/Text/HTML.php:853 +#: src/Module/Admin/Logs/View.php:74 src/Module/Search/Index.php:98 msgid "Search" msgstr "Otsi" -#: src/Content/Nav.php:269 +#: src/Content/Nav.php:255 msgid "Search site content" msgstr "Otsi lehe sisust" -#: src/Content/Nav.php:272 src/Content/Text/HTML.php:875 +#: src/Content/Nav.php:258 src/Content/Text/HTML.php:862 msgid "Full Text" msgstr "Täistekst" -#: src/Content/Nav.php:273 src/Content/Text/HTML.php:876 -#: src/Content/Widget/TagCloud.php:68 +#: src/Content/Nav.php:259 src/Content/Text/HTML.php:863 +#: src/Content/Widget/TagCloud.php:54 msgid "Tags" msgstr "Sildid" -#: src/Content/Nav.php:274 src/Content/Nav.php:329 -#: src/Content/Text/HTML.php:877 src/Module/BaseProfile.php:127 -#: src/Module/BaseProfile.php:130 src/Module/Contact.php:426 -#: src/Module/Contact.php:535 view/theme/frio/theme.php:243 +#: src/Content/Nav.php:260 src/Content/Nav.php:315 +#: src/Content/Text/HTML.php:864 src/Module/BaseProfile.php:113 +#: src/Module/BaseProfile.php:116 src/Module/Contact.php:407 +#: src/Module/Contact.php:517 view/theme/frio/theme.php:234 msgid "Contacts" msgstr "Kontaktid" -#: src/Content/Nav.php:289 +#: src/Content/Nav.php:275 msgid "Community" msgstr "Kogukond" -#: src/Content/Nav.php:289 +#: src/Content/Nav.php:275 msgid "Conversations on this and other servers" msgstr "Vestlused siin ja muudes serverites" -#: src/Content/Nav.php:296 +#: src/Content/Nav.php:282 msgid "Directory" msgstr "Kataloog" -#: src/Content/Nav.php:296 +#: src/Content/Nav.php:282 msgid "People directory" msgstr "Inimeste kataloog" -#: src/Content/Nav.php:298 src/Module/BaseAdmin.php:85 -#: src/Module/BaseModeration.php:108 +#: src/Content/Nav.php:284 src/Module/BaseAdmin.php:71 +#: src/Module/BaseModeration.php:94 msgid "Information" msgstr "Info" -#: src/Content/Nav.php:298 +#: src/Content/Nav.php:284 msgid "Information about this friendica instance" msgstr "Info selle friendica instantsi kohta" -#: src/Content/Nav.php:301 src/Module/Admin/Tos.php:78 -#: src/Module/BaseAdmin.php:95 src/Module/Register.php:176 -#: src/Module/Tos.php:101 +#: src/Content/Nav.php:287 src/Module/Admin/Tos.php:64 +#: src/Module/BaseAdmin.php:81 src/Module/Register.php:169 +#: src/Module/Tos.php:87 msgid "Terms of Service" msgstr "" -#: src/Content/Nav.php:301 +#: src/Content/Nav.php:287 msgid "Terms of Service of this Friendica instance" msgstr "Selle Friendica instantsi kasutustingimused" -#: src/Content/Nav.php:306 view/theme/frio/theme.php:239 +#: src/Content/Nav.php:292 view/theme/frio/theme.php:230 msgid "Network" msgstr "Võrk" -#: src/Content/Nav.php:306 view/theme/frio/theme.php:239 +#: src/Content/Nav.php:292 view/theme/frio/theme.php:230 msgid "Conversations from your friends" msgstr "Vestlused sinu sõpradelt" -#: src/Content/Nav.php:308 view/theme/frio/theme.php:229 +#: src/Content/Nav.php:294 view/theme/frio/theme.php:220 msgid "Your posts and conversations" msgstr "Sinu postitused ja vestlused" -#: src/Content/Nav.php:312 +#: src/Content/Nav.php:298 msgid "Introductions" msgstr "Tutvustused" -#: src/Content/Nav.php:312 +#: src/Content/Nav.php:298 msgid "Friend Requests" msgstr "Sõbrataotlused" -#: src/Content/Nav.php:313 src/Module/BaseNotifications.php:149 -#: src/Module/Notifications/Introductions.php:75 +#: src/Content/Nav.php:299 src/Module/BaseNotifications.php:135 +#: src/Module/Notifications/Introductions.php:61 msgid "Notifications" msgstr "Teavitused" -#: src/Content/Nav.php:314 +#: src/Content/Nav.php:300 msgid "See all notifications" msgstr "Vaata kõiki teavitusi" -#: src/Content/Nav.php:315 src/Module/Settings/Connectors.php:244 +#: src/Content/Nav.php:301 src/Module/Settings/Connectors.php:233 msgid "Mark as seen" msgstr "Märgi loetuks" -#: src/Content/Nav.php:315 +#: src/Content/Nav.php:301 msgid "Mark all system notifications as seen" msgstr "" -#: src/Content/Nav.php:318 view/theme/frio/theme.php:241 +#: src/Content/Nav.php:304 view/theme/frio/theme.php:232 msgid "Private mail" msgstr "Privaatmeil" -#: src/Content/Nav.php:319 +#: src/Content/Nav.php:305 msgid "Inbox" msgstr "Sisenev" -#: src/Content/Nav.php:320 +#: src/Content/Nav.php:306 msgid "Outbox" msgstr "Väljuv" -#: src/Content/Nav.php:324 +#: src/Content/Nav.php:310 msgid "Accounts" msgstr "" -#: src/Content/Nav.php:324 +#: src/Content/Nav.php:310 msgid "Manage other pages" msgstr "Halda teisi lehti" -#: src/Content/Nav.php:327 src/Module/Admin/Addons/Details.php:114 -#: src/Module/Admin/Themes/Details.php:93 src/Module/BaseSettings.php:182 -#: src/Module/Welcome.php:52 view/theme/frio/theme.php:242 +#: src/Content/Nav.php:313 src/Module/Admin/Addons/Details.php:100 +#: src/Module/Admin/Themes/Details.php:85 src/Module/BaseSettings.php:168 +#: src/Module/Welcome.php:38 view/theme/frio/theme.php:233 msgid "Settings" msgstr "Sätted" -#: src/Content/Nav.php:327 view/theme/frio/theme.php:242 +#: src/Content/Nav.php:313 view/theme/frio/theme.php:233 msgid "Account settings" msgstr "Konto sätted" -#: src/Content/Nav.php:329 view/theme/frio/theme.php:243 +#: src/Content/Nav.php:315 view/theme/frio/theme.php:234 msgid "Manage/edit friends and contacts" msgstr "Halda/muuda sõpru ja kontakte" -#: src/Content/Nav.php:334 src/Module/BaseAdmin.php:119 +#: src/Content/Nav.php:320 src/Module/BaseAdmin.php:105 msgid "Admin" msgstr "" -#: src/Content/Nav.php:334 +#: src/Content/Nav.php:320 msgid "Site setup and configuration" msgstr "Saidi seadmine ja sätted" -#: src/Content/Nav.php:335 src/Module/BaseModeration.php:128 -#: src/Module/Moderation/Blocklist/Contact.php:110 -#: src/Module/Moderation/Blocklist/Server/Add.php:121 -#: src/Module/Moderation/Blocklist/Server/Import.php:118 -#: src/Module/Moderation/Blocklist/Server/Index.php:95 -#: src/Module/Moderation/Item/Delete.php:61 -#: src/Module/Moderation/Reports.php:89 src/Module/Moderation/Summary.php:75 -#: src/Module/Moderation/Users/Active.php:133 -#: src/Module/Moderation/Users/Blocked.php:133 -#: src/Module/Moderation/Users/Deleted.php:80 -#: src/Module/Moderation/Users/Index.php:147 +#: src/Content/Nav.php:321 src/Module/BaseModeration.php:114 +#: src/Module/Moderation/Blocklist/Contact.php:96 +#: src/Module/Moderation/Blocklist/Server/Add.php:107 +#: src/Module/Moderation/Blocklist/Server/Import.php:102 +#: src/Module/Moderation/Blocklist/Server/Index.php:81 +#: src/Module/Moderation/Item/Delete.php:47 +#: src/Module/Moderation/Reports.php:96 src/Module/Moderation/Summary.php:61 +#: src/Module/Moderation/Users/Active.php:119 +#: src/Module/Moderation/Users/Blocked.php:119 +#: src/Module/Moderation/Users/Deleted.php:66 +#: src/Module/Moderation/Users/Index.php:133 msgid "Moderation" msgstr "" -#: src/Content/Nav.php:335 +#: src/Content/Nav.php:321 msgid "Content and user moderation" msgstr "" -#: src/Content/Nav.php:338 +#: src/Content/Nav.php:324 msgid "Navigation" msgstr "Navigatsioon" -#: src/Content/Nav.php:338 +#: src/Content/Nav.php:324 msgid "Site map" msgstr "Lehekaart" -#: src/Content/OEmbed.php:316 -msgid "Embedding disabled" -msgstr "" - -#: src/Content/OEmbed.php:440 -msgid "Embedded content" -msgstr "" - -#: src/Content/Pager.php:216 +#: src/Content/Pager.php:202 msgid "first" msgstr "esimene" -#: src/Content/Pager.php:221 +#: src/Content/Pager.php:207 msgid "prev" msgstr "eelm" -#: src/Content/Pager.php:276 +#: src/Content/Pager.php:262 msgid "next" msgstr "järgmine" -#: src/Content/Pager.php:281 +#: src/Content/Pager.php:267 msgid "last" msgstr "viimane" -#: src/Content/Text/BBCode.php:762 src/Content/Text/BBCode.php:1707 -#: src/Content/Text/BBCode.php:1708 +#: src/Content/Text/BBCode.php:689 src/Content/Text/BBCode.php:1862 +#: src/Content/Text/BBCode.php:1863 msgid "Image/photo" msgstr "pilt/foto" -#: src/Content/Text/BBCode.php:980 +#: src/Content/Text/BBCode.php:907 #, php-format msgid "%2$s %3$s" msgstr "" -#: src/Content/Text/BBCode.php:1005 src/Model/Item.php:3983 -#: src/Model/Item.php:3989 src/Model/Item.php:3990 +#: src/Content/Text/BBCode.php:929 src/Model/Item.php:4028 +#: src/Model/Item.php:4034 src/Model/Item.php:4035 msgid "Link to source" msgstr "" -#: src/Content/Text/BBCode.php:1614 src/Content/Text/HTML.php:905 +#: src/Content/Text/BBCode.php:1743 src/Content/Text/HTML.php:892 msgid "Click to open/close" msgstr "Klõpsa ava/sulge" -#: src/Content/Text/BBCode.php:1647 +#: src/Content/Text/BBCode.php:1798 msgid "$1 wrote:" msgstr "" -#: src/Content/Text/BBCode.php:1712 src/Content/Text/BBCode.php:1713 +#: src/Content/Text/BBCode.php:1872 src/Content/Text/BBCode.php:1873 msgid "Encrypted content" msgstr "Krüptitud sisu" -#: src/Content/Text/BBCode.php:1968 +#: src/Content/Text/BBCode.php:2205 msgid "Invalid source protocol" msgstr "" -#: src/Content/Text/BBCode.php:1987 +#: src/Content/Text/BBCode.php:2224 msgid "Invalid link protocol" msgstr "" -#: src/Content/Text/HTML.php:783 +#: src/Content/Text/HTML.php:770 msgid "Loading more entries..." msgstr "" -#: src/Content/Text/HTML.php:784 +#: src/Content/Text/HTML.php:771 msgid "The end" msgstr "Lõpp" -#: src/Content/Text/HTML.php:860 src/Content/Widget/VCard.php:126 -#: src/Model/Profile.php:477 src/Module/Contact/Profile.php:471 +#: src/Content/Text/HTML.php:847 src/Content/Widget/VCard.php:113 +#: src/Model/Profile.php:456 src/Module/Contact/Profile.php:478 msgid "Follow" msgstr "Jälgi" -#: src/Content/Widget.php:51 +#: src/Content/Widget.php:37 msgid "Add New Contact" msgstr "Lisa uus kontakt" -#: src/Content/Widget.php:52 +#: src/Content/Widget.php:38 msgid "Enter address or web location" msgstr "Sisesta aadress või veebiasukoht" -#: src/Content/Widget.php:53 +#: src/Content/Widget.php:39 msgid "Example: bob@example.com, http://example.com/barbara" msgstr "" -#: src/Content/Widget.php:55 +#: src/Content/Widget.php:41 msgid "Connect" msgstr "Ühendu" -#: src/Content/Widget.php:72 +#: src/Content/Widget.php:58 #, php-format msgid "%d invitation available" msgid_plural "%d invitations available" msgstr[0] "%d kutset saadaval" msgstr[1] "%d kutset saadaval" -#: src/Content/Widget.php:78 view/theme/vier/theme.php:193 +#: src/Content/Widget.php:64 view/theme/vier/theme.php:181 msgid "Find People" msgstr "Leia inimesi" -#: src/Content/Widget.php:79 view/theme/vier/theme.php:194 +#: src/Content/Widget.php:65 view/theme/vier/theme.php:182 msgid "Enter name or interest" msgstr "Sissta nimi või huviala" -#: src/Content/Widget.php:81 view/theme/vier/theme.php:196 +#: src/Content/Widget.php:67 view/theme/vier/theme.php:184 msgid "Examples: Robert Morgenstein, Fishing" msgstr "" -#: src/Content/Widget.php:82 src/Module/Contact.php:460 -#: src/Module/Directory.php:96 view/theme/vier/theme.php:197 +#: src/Content/Widget.php:68 src/Module/Contact.php:441 +#: src/Module/Directory.php:83 view/theme/vier/theme.php:185 msgid "Find" msgstr "Otsi" -#: src/Content/Widget.php:83 src/Module/Contact/Suggestions.php:73 -#: view/theme/vier/theme.php:198 +#: src/Content/Widget.php:69 src/Module/Contact/Suggestions.php:59 +#: view/theme/vier/theme.php:186 msgid "Friend Suggestions" msgstr "Sõbrasoovitused" -#: src/Content/Widget.php:84 view/theme/vier/theme.php:199 +#: src/Content/Widget.php:70 view/theme/vier/theme.php:187 msgid "Similar Interests" msgstr "Sarnased huvid" -#: src/Content/Widget.php:85 view/theme/vier/theme.php:200 +#: src/Content/Widget.php:71 view/theme/vier/theme.php:188 msgid "Random Profile" msgstr "Suvaline profiil" -#: src/Content/Widget.php:86 view/theme/vier/theme.php:201 +#: src/Content/Widget.php:72 view/theme/vier/theme.php:189 msgid "Invite Friends" msgstr "Kutsu sõpru" -#: src/Content/Widget.php:87 src/Module/Directory.php:88 -#: view/theme/vier/theme.php:202 +#: src/Content/Widget.php:73 src/Module/Directory.php:75 +#: view/theme/vier/theme.php:190 msgid "Global Directory" msgstr "Globaalne kataloog" -#: src/Content/Widget.php:89 view/theme/vier/theme.php:204 +#: src/Content/Widget.php:75 view/theme/vier/theme.php:192 msgid "Local Directory" msgstr "Kohalik kataloog" -#: src/Content/Widget.php:215 src/Model/Circle.php:601 -#: src/Module/Contact.php:400 src/Module/Welcome.php:76 -msgid "Circles" -msgstr "" - -#: src/Content/Widget.php:217 +#: src/Content/Widget.php:196 msgid "Everyone" msgstr "" -#: src/Content/Widget.php:242 src/Module/Contact.php:423 +#: src/Content/Widget.php:221 src/Module/Contact.php:404 msgid "No relationship" msgstr "" -#: src/Content/Widget.php:247 +#: src/Content/Widget.php:226 msgid "Relationships" msgstr "Suhted" -#: src/Content/Widget.php:249 src/Module/Circle.php:292 -#: src/Module/Contact.php:344 +#: src/Content/Widget.php:228 src/Module/Circle.php:280 +#: src/Module/Contact.php:325 msgid "All Contacts" msgstr "Kõik kontaktid" -#: src/Content/Widget.php:288 -msgid "Protocols" -msgstr "Protokollid" - -#: src/Content/Widget.php:290 +#: src/Content/Widget.php:269 msgid "All Protocols" msgstr "Kõik protokollid" -#: src/Content/Widget.php:318 -msgid "Saved Folders" -msgstr "Salvestatud kaustad" - -#: src/Content/Widget.php:320 src/Content/Widget.php:351 +#: src/Content/Widget.php:299 src/Content/Widget.php:330 msgid "Everything" msgstr "Kõikvõimalik" -#: src/Content/Widget.php:349 +#: src/Content/Widget.php:328 msgid "Categories" msgstr "Kategooriad" -#: src/Content/Widget.php:406 +#: src/Content/Widget.php:385 #, php-format msgid "%d contact in common" msgid_plural "%d contacts in common" msgstr[0] "%d ühine kontakt" msgstr[1] "%d ühine kontakt" -#: src/Content/Widget.php:506 -msgid "Archives" -msgstr "Arhiivid" - -#: src/Content/Widget.php:514 +#: src/Content/Widget.php:493 msgid "On this date" msgstr "" -#: src/Content/Widget.php:534 +#: src/Content/Widget.php:513 msgid "Persons" msgstr "Isikud" -#: src/Content/Widget.php:535 +#: src/Content/Widget.php:514 msgid "Organisations" msgstr "Organisatsioonid" -#: src/Content/Widget.php:536 src/Model/Contact.php:1746 +#: src/Content/Widget.php:515 src/Model/Contact.php:1747 msgid "News" msgstr "Uudised" -#: src/Content/Widget.php:538 +#: src/Content/Widget.php:517 msgid "Relays" msgstr "" -#: src/Content/Widget.php:543 src/Module/Settings/Account.php:442 -msgid "Account Types" -msgstr "Kontode tüübid" - -#: src/Content/Widget.php:545 src/Module/Moderation/BaseUsers.php:69 +#: src/Content/Widget.php:524 src/Module/Moderation/BaseUsers.php:56 msgid "All" msgstr "" -#: src/Content/Widget.php:592 src/Module/Admin/Site.php:472 -#: src/Module/BaseSettings.php:125 src/Module/Settings/Channels.php:219 -#: src/Module/Settings/Display.php:315 -msgid "Channels" -msgstr "" - -#: src/Content/Widget/CalendarExport.php:56 +#: src/Content/Widget/CalendarExport.php:42 msgid "Export" msgstr "Eksport" -#: src/Content/Widget/CalendarExport.php:57 +#: src/Content/Widget/CalendarExport.php:43 msgid "Export calendar as ical" msgstr "Ekspordi kalender kui ical" -#: src/Content/Widget/CalendarExport.php:58 +#: src/Content/Widget/CalendarExport.php:44 msgid "Export calendar as csv" msgstr "" -#: src/Content/Widget/ContactBlock.php:79 +#: src/Content/Widget/ContactBlock.php:65 msgid "No contacts" msgstr "Kontakte pole" -#: src/Content/Widget/ContactBlock.php:110 +#: src/Content/Widget/ContactBlock.php:96 #, php-format msgid "%d Contact" msgid_plural "%d Contacts" msgstr[0] "%d Kontaktid" msgstr[1] "%d Kontaktid" -#: src/Content/Widget/ContactBlock.php:127 +#: src/Content/Widget/ContactBlock.php:113 msgid "View Contacts" msgstr "Kuva kontaktid" -#: src/Content/Widget/SavedSearches.php:47 +#: src/Content/Widget/SavedSearches.php:33 msgid "Remove term" msgstr "Eemalda tingimus" -#: src/Content/Widget/SavedSearches.php:60 -msgid "Saved Searches" -msgstr "Salvestatud otsingud" - -#: src/Content/Widget/TrendingTags.php:52 +#: src/Content/Widget/TrendingTags.php:39 #, php-format msgid "Trending Tags (last %d hour)" msgid_plural "Trending Tags (last %d hours)" msgstr[0] "" msgstr[1] "" -#: src/Content/Widget/TrendingTags.php:53 +#: src/Content/Widget/TrendingTags.php:40 msgid "More Trending Tags" msgstr "Veel trendikaid silte" -#: src/Content/Widget/VCard.php:104 src/Model/Contact.php:1212 -#: src/Model/Profile.php:461 +#: src/Content/Widget/VCard.php:91 src/Model/Contact.php:1212 +#: src/Model/Profile.php:441 msgid "Post to group" msgstr "" -#: src/Content/Widget/VCard.php:109 src/Model/Contact.php:1217 -#: src/Model/Profile.php:466 src/Module/Moderation/Item/Source.php:85 +#: src/Content/Widget/VCard.php:96 src/Model/Contact.php:1216 +#: src/Model/Profile.php:445 src/Module/Moderation/Item/Source.php:77 msgid "Mention" msgstr "" -#: src/Content/Widget/VCard.php:119 src/Model/Profile.php:380 -#: src/Module/Contact/Profile.php:408 src/Module/Profile/Profile.php:199 +#: src/Content/Widget/VCard.php:106 src/Model/Profile.php:360 +#: src/Module/Contact/Profile.php:414 src/Module/Profile/Profile.php:187 msgid "XMPP:" msgstr "" -#: src/Content/Widget/VCard.php:120 src/Model/Profile.php:381 -#: src/Module/Contact/Profile.php:410 src/Module/Profile/Profile.php:203 +#: src/Content/Widget/VCard.php:107 src/Model/Profile.php:361 +#: src/Module/Contact/Profile.php:416 src/Module/Profile/Profile.php:191 msgid "Matrix:" msgstr "" -#: src/Content/Widget/VCard.php:121 src/Model/Event.php:82 -#: src/Model/Event.php:109 src/Model/Event.php:471 src/Model/Event.php:963 -#: src/Model/Profile.php:375 src/Module/Contact/Profile.php:406 -#: src/Module/Directory.php:147 src/Module/Notifications/Introductions.php:187 -#: src/Module/Profile/Profile.php:221 +#: src/Content/Widget/VCard.php:108 src/Model/Event.php:68 +#: src/Model/Event.php:95 src/Model/Event.php:457 src/Model/Event.php:946 +#: src/Model/Profile.php:355 src/Module/Contact/Profile.php:412 +#: src/Module/Directory.php:134 src/Module/Notifications/Introductions.php:179 +#: src/Module/Profile/Profile.php:209 msgid "Location:" msgstr "Asukoht:" -#: src/Content/Widget/VCard.php:124 src/Model/Profile.php:490 -#: src/Module/Notifications/Introductions.php:201 +#: src/Content/Widget/VCard.php:111 src/Model/Profile.php:469 +#: src/Module/Notifications/Introductions.php:193 msgid "Network:" msgstr "Võrk" -#: src/Content/Widget/VCard.php:128 src/Model/Contact.php:1245 -#: src/Model/Contact.php:1257 src/Model/Profile.php:479 -#: src/Module/Contact/Profile.php:463 +#: src/Content/Widget/VCard.php:115 src/Model/Contact.php:1244 +#: src/Model/Contact.php:1256 src/Model/Profile.php:458 +#: src/Module/Contact/Profile.php:470 msgid "Unfollow" msgstr "" -#: src/Content/Widget/VCard.php:134 src/Model/Contact.php:1214 -#: src/Model/Profile.php:463 +#: src/Content/Widget/VCard.php:121 src/Model/Contact.php:1214 +#: src/Model/Profile.php:443 msgid "View group" msgstr "" -#: src/Core/ACL.php:166 src/Module/Profile/Profile.php:269 +#: src/Core/ACL.php:152 src/Module/Profile/Profile.php:257 msgid "Yourself" msgstr "" -#: src/Core/ACL.php:202 src/Module/PermissionTooltip.php:147 -#: src/Module/PermissionTooltip.php:169 +#: src/Core/ACL.php:188 src/Module/Privacy/PermissionTooltip.php:156 +#: src/Module/Privacy/PermissionTooltip.php:178 msgid "Mutuals" msgstr "" -#: src/Core/ACL.php:294 +#: src/Core/ACL.php:280 msgid "Post to Email" msgstr "Postita meilile" -#: src/Core/ACL.php:321 src/Module/PermissionTooltip.php:90 -#: src/Module/PermissionTooltip.php:211 +#: src/Core/ACL.php:307 src/Module/Privacy/PermissionTooltip.php:103 +#: src/Module/Privacy/PermissionTooltip.php:217 msgid "Public" msgstr "Avalik" -#: src/Core/ACL.php:322 +#: src/Core/ACL.php:308 msgid "" "This content will be shown to all your followers and can be seen in the " "community pages and by anyone with its link." msgstr "" -#: src/Core/ACL.php:323 src/Module/PermissionTooltip.php:98 +#: src/Core/ACL.php:309 src/Module/Privacy/PermissionTooltip.php:105 msgid "Limited/Private" msgstr "Piiratud/Privaatne" -#: src/Core/ACL.php:324 +#: src/Core/ACL.php:310 msgid "" "This content will be shown only to the people in the first box, to the " "exception of the people mentioned in the second box. It won't appear " "anywhere public." msgstr "" -#: src/Core/ACL.php:324 +#: src/Core/ACL.php:310 msgid "" "Start typing the name of a contact or a circle to show a filtered list. You " "can also mention the special circles \"Followers\" and \"Mutuals\"." msgstr "" -#: src/Core/ACL.php:325 +#: src/Core/ACL.php:311 msgid "Show to:" msgstr "" -#: src/Core/ACL.php:326 +#: src/Core/ACL.php:312 msgid "Except to:" msgstr "" -#: src/Core/ACL.php:327 src/Module/Post/Edit.php:154 +#: src/Core/ACL.php:313 src/Module/Post/Edit.php:140 msgid "CC: email addresses" msgstr "CC: emaili addressid" -#: src/Core/ACL.php:328 src/Module/Post/Edit.php:160 +#: src/Core/ACL.php:314 src/Module/Post/Edit.php:146 msgid "Example: bob@example.com, mary@example.com" msgstr "" -#: src/Core/ACL.php:329 +#: src/Core/ACL.php:315 msgid "Connectors" msgstr "" -#: src/Core/Installer.php:180 +#: src/Core/Installer.php:166 msgid "" "The database configuration file \"config/local.config.php\" could not be " "written. Please use the enclosed text to create a configuration file in your" " web server root." msgstr "" -#: src/Core/Installer.php:197 +#: src/Core/Installer.php:183 msgid "" "You may need to import the file \"database.sql\" manually using phpmyadmin " "or mysql." msgstr "" -#: src/Core/Installer.php:198 src/Module/Install.php:207 -#: src/Module/Install.php:350 +#: src/Core/Installer.php:184 src/Module/Install.php:193 +#: src/Module/Install.php:336 msgid "Please see the file \"doc/INSTALL.md\"." msgstr "" -#: src/Core/Installer.php:259 +#: src/Core/Installer.php:245 msgid "Could not find a command line version of PHP in the web server PATH." msgstr "" -#: src/Core/Installer.php:260 +#: src/Core/Installer.php:246 msgid "" "If you don't have a command line version of PHP installed on your server, " "you will not be able to run the background processing. See 'Setup the worker'" msgstr "" -#: src/Core/Installer.php:265 +#: src/Core/Installer.php:251 msgid "PHP executable path" msgstr "" -#: src/Core/Installer.php:265 +#: src/Core/Installer.php:251 msgid "" "Enter full path to php executable. You can leave this blank to continue the " "installation." msgstr "" -#: src/Core/Installer.php:270 +#: src/Core/Installer.php:256 msgid "Command line PHP" msgstr "" -#: src/Core/Installer.php:279 +#: src/Core/Installer.php:265 msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" msgstr "" -#: src/Core/Installer.php:280 +#: src/Core/Installer.php:266 msgid "Found PHP version: " msgstr "" -#: src/Core/Installer.php:282 +#: src/Core/Installer.php:268 msgid "PHP cli binary" msgstr "" -#: src/Core/Installer.php:295 +#: src/Core/Installer.php:281 msgid "" "The command line version of PHP on your system does not have " "\"register_argc_argv\" enabled." msgstr "" -#: src/Core/Installer.php:296 +#: src/Core/Installer.php:282 msgid "This is required for message delivery to work." msgstr "" -#: src/Core/Installer.php:301 +#: src/Core/Installer.php:287 msgid "PHP register_argc_argv" msgstr "" -#: src/Core/Installer.php:333 +#: src/Core/Installer.php:319 msgid "" "Error: the \"openssl_pkey_new\" function on this system is not able to " "generate encryption keys" msgstr "" -#: src/Core/Installer.php:334 +#: src/Core/Installer.php:320 msgid "" "If running under Windows, please see " "\"http://www.php.net/manual/en/openssl.installation.php\"." msgstr "" -#: src/Core/Installer.php:337 +#: src/Core/Installer.php:323 msgid "Generate encryption keys" msgstr "" -#: src/Core/Installer.php:388 +#: src/Core/Installer.php:374 msgid "" "Error: Apache webserver mod-rewrite module is required but not installed." msgstr "" -#: src/Core/Installer.php:392 +#: src/Core/Installer.php:378 msgid "Apache mod_rewrite module" msgstr "" -#: src/Core/Installer.php:398 +#: src/Core/Installer.php:384 msgid "Error: PDO or MySQLi PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:402 +#: src/Core/Installer.php:388 msgid "Error: The MySQL driver for PDO is not installed." msgstr "" -#: src/Core/Installer.php:405 +#: src/Core/Installer.php:391 msgid "PDO or MySQLi PHP module" msgstr "" -#: src/Core/Installer.php:411 +#: src/Core/Installer.php:397 msgid "Error: The IntlChar module is not installed." msgstr "" -#: src/Core/Installer.php:414 +#: src/Core/Installer.php:400 msgid "IntlChar PHP module" msgstr "" -#: src/Core/Installer.php:422 +#: src/Core/Installer.php:408 msgid "Error, XML PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:426 +#: src/Core/Installer.php:412 msgid "XML PHP module" msgstr "" -#: src/Core/Installer.php:429 +#: src/Core/Installer.php:415 msgid "libCurl PHP module" msgstr "" -#: src/Core/Installer.php:430 +#: src/Core/Installer.php:416 msgid "Error: libCURL PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:436 +#: src/Core/Installer.php:422 msgid "GD graphics PHP module" msgstr "" -#: src/Core/Installer.php:437 +#: src/Core/Installer.php:423 msgid "" "Error: GD graphics PHP module with JPEG support required but not installed." msgstr "" -#: src/Core/Installer.php:443 +#: src/Core/Installer.php:429 msgid "OpenSSL PHP module" msgstr "" -#: src/Core/Installer.php:444 +#: src/Core/Installer.php:430 msgid "Error: openssl PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:450 +#: src/Core/Installer.php:436 msgid "mb_string PHP module" msgstr "" -#: src/Core/Installer.php:451 +#: src/Core/Installer.php:437 msgid "Error: mb_string PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:457 +#: src/Core/Installer.php:443 msgid "iconv PHP module" msgstr "" -#: src/Core/Installer.php:458 +#: src/Core/Installer.php:444 msgid "Error: iconv PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:464 +#: src/Core/Installer.php:450 msgid "POSIX PHP module" msgstr "" -#: src/Core/Installer.php:465 +#: src/Core/Installer.php:451 msgid "Error: POSIX PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:471 +#: src/Core/Installer.php:457 msgid "Program execution functions" msgstr "" -#: src/Core/Installer.php:472 +#: src/Core/Installer.php:458 msgid "" "Error: Program execution functions (proc_open) required but not enabled." msgstr "" -#: src/Core/Installer.php:478 +#: src/Core/Installer.php:464 msgid "JSON PHP module" msgstr "" -#: src/Core/Installer.php:479 +#: src/Core/Installer.php:465 msgid "Error: JSON PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:485 +#: src/Core/Installer.php:471 msgid "File Information PHP module" msgstr "" -#: src/Core/Installer.php:486 +#: src/Core/Installer.php:472 msgid "Error: File Information PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:492 +#: src/Core/Installer.php:478 msgid "GNU Multiple Precision PHP module" msgstr "" -#: src/Core/Installer.php:493 +#: src/Core/Installer.php:479 msgid "Error: GNU Multiple Precision PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:516 +#: src/Core/Installer.php:485 +msgid "IDN Functions PHP module" +msgstr "" + +#: src/Core/Installer.php:486 +msgid "Error: IDN Functions PHP module required but not installed." +msgstr "" + +#: src/Core/Installer.php:509 msgid "" "The web installer needs to be able to create a file called " "\"local.config.php\" in the \"config\" folder of your web server and it is " "unable to do so." msgstr "" -#: src/Core/Installer.php:517 +#: src/Core/Installer.php:510 msgid "" "This is most often a permission setting, as the web server may not be able " "to write files in your folder - even if you can." msgstr "" -#: src/Core/Installer.php:518 +#: src/Core/Installer.php:511 msgid "" "At the end of this procedure, we will give you a text to save in a file " "named local.config.php in your Friendica \"config\" folder." msgstr "" -#: src/Core/Installer.php:519 +#: src/Core/Installer.php:512 msgid "" "You can alternatively skip this procedure and perform a manual installation." " Please see the file \"doc/INSTALL.md\" for instructions." msgstr "" -#: src/Core/Installer.php:522 +#: src/Core/Installer.php:515 msgid "config/local.config.php is writable" msgstr "" -#: src/Core/Installer.php:542 +#: src/Core/Installer.php:535 msgid "" "Friendica uses the Smarty3 template engine to render its web views. Smarty3 " "compiles templates to PHP to speed up rendering." msgstr "" -#: src/Core/Installer.php:543 +#: src/Core/Installer.php:536 msgid "" "In order to store these compiled templates, the web server needs to have " "write access to the directory view/smarty3/ under the Friendica top level " "folder." msgstr "" -#: src/Core/Installer.php:544 +#: src/Core/Installer.php:537 msgid "" "Please ensure that the user that your web server runs as (e.g. www-data) has" " write access to this folder." msgstr "" -#: src/Core/Installer.php:545 +#: src/Core/Installer.php:538 msgid "" "Note: as a security measure, you should give the web server write access to " "view/smarty3/ only--not the template files (.tpl) that it contains." msgstr "" -#: src/Core/Installer.php:548 +#: src/Core/Installer.php:541 msgid "view/smarty3 is writable" msgstr "" -#: src/Core/Installer.php:576 +#: src/Core/Installer.php:569 msgid "" "Url rewrite in .htaccess seems not working. Make sure you copied .htaccess-" "dist to .htaccess." msgstr "" -#: src/Core/Installer.php:577 +#: src/Core/Installer.php:570 msgid "" "In some circumstances (like running inside containers), you can skip this " "error." msgstr "" -#: src/Core/Installer.php:579 +#: src/Core/Installer.php:572 msgid "Error message from Curl when fetching" msgstr "" -#: src/Core/Installer.php:585 +#: src/Core/Installer.php:578 msgid "Url rewrite is working" msgstr "" -#: src/Core/Installer.php:614 +#: src/Core/Installer.php:607 msgid "" "The detection of TLS to secure the communication between the browser and the" " new Friendica server failed." msgstr "" -#: src/Core/Installer.php:615 +#: src/Core/Installer.php:608 msgid "" "It is highly encouraged to use Friendica only over a secure connection as " "sensitive information like passwords will be transmitted." msgstr "" -#: src/Core/Installer.php:616 +#: src/Core/Installer.php:609 msgid "Please ensure that the connection to the server is secure." msgstr "" -#: src/Core/Installer.php:617 +#: src/Core/Installer.php:610 msgid "No TLS detected" msgstr "" -#: src/Core/Installer.php:619 +#: src/Core/Installer.php:612 msgid "TLS detected" msgstr "" -#: src/Core/Installer.php:646 +#: src/Core/Installer.php:629 msgid "ImageMagick PHP extension is not installed" msgstr "" -#: src/Core/Installer.php:648 +#: src/Core/Installer.php:631 msgid "ImageMagick PHP extension is installed" msgstr "" -#: src/Core/Installer.php:650 -msgid "ImageMagick supports GIF" -msgstr "" - -#: src/Core/Installer.php:672 +#: src/Core/Installer.php:652 msgid "Database already in use." msgstr "" -#: src/Core/Installer.php:677 +#: src/Core/Installer.php:657 msgid "Could not connect to database." msgstr "" -#: src/Core/L10n.php:444 src/Model/Item.php:2294 +#: src/Core/L10n.php:430 src/Model/Item.php:2315 msgid "Undetermined" msgstr "" -#: src/Core/L10n.php:451 +#: src/Core/L10n.php:437 #, php-format msgid "%s (%s)" msgstr "" -#: src/Core/L10n.php:499 src/Model/Event.php:430 -#: src/Module/Settings/Display.php:284 +#: src/Core/L10n.php:485 src/Model/Event.php:416 +#: src/Module/Settings/Display.php:270 msgid "Monday" msgstr "Esmaspäev" -#: src/Core/L10n.php:499 src/Model/Event.php:431 -#: src/Module/Settings/Display.php:285 +#: src/Core/L10n.php:485 src/Model/Event.php:417 +#: src/Module/Settings/Display.php:271 msgid "Tuesday" msgstr "Teisipäev" -#: src/Core/L10n.php:499 src/Model/Event.php:432 -#: src/Module/Settings/Display.php:286 +#: src/Core/L10n.php:485 src/Model/Event.php:418 +#: src/Module/Settings/Display.php:272 msgid "Wednesday" msgstr "Kolmapäev" -#: src/Core/L10n.php:499 src/Model/Event.php:433 -#: src/Module/Settings/Display.php:287 +#: src/Core/L10n.php:485 src/Model/Event.php:419 +#: src/Module/Settings/Display.php:273 msgid "Thursday" msgstr "Neljapäev" -#: src/Core/L10n.php:499 src/Model/Event.php:434 -#: src/Module/Settings/Display.php:288 +#: src/Core/L10n.php:485 src/Model/Event.php:420 +#: src/Module/Settings/Display.php:274 msgid "Friday" msgstr "Reede" -#: src/Core/L10n.php:499 src/Model/Event.php:435 -#: src/Module/Settings/Display.php:289 +#: src/Core/L10n.php:485 src/Model/Event.php:421 +#: src/Module/Settings/Display.php:275 msgid "Saturday" msgstr "Laupäev" -#: src/Core/L10n.php:499 src/Model/Event.php:429 -#: src/Module/Settings/Display.php:283 +#: src/Core/L10n.php:485 src/Model/Event.php:415 +#: src/Module/Settings/Display.php:269 msgid "Sunday" msgstr "Pühapäev" -#: src/Core/L10n.php:503 src/Model/Event.php:450 +#: src/Core/L10n.php:489 src/Model/Event.php:436 msgid "January" msgstr "Jaanuar" -#: src/Core/L10n.php:503 src/Model/Event.php:451 +#: src/Core/L10n.php:489 src/Model/Event.php:437 msgid "February" msgstr "Veebruar" -#: src/Core/L10n.php:503 src/Model/Event.php:452 +#: src/Core/L10n.php:489 src/Model/Event.php:438 msgid "March" msgstr "Märts" -#: src/Core/L10n.php:503 src/Model/Event.php:453 +#: src/Core/L10n.php:489 src/Model/Event.php:439 msgid "April" msgstr "Aprill" -#: src/Core/L10n.php:503 src/Core/L10n.php:522 src/Model/Event.php:441 +#: src/Core/L10n.php:489 src/Core/L10n.php:508 src/Model/Event.php:427 msgid "May" msgstr "Mai" -#: src/Core/L10n.php:503 src/Model/Event.php:454 +#: src/Core/L10n.php:489 src/Model/Event.php:440 msgid "June" msgstr "Juuni" -#: src/Core/L10n.php:503 src/Model/Event.php:455 +#: src/Core/L10n.php:489 src/Model/Event.php:441 msgid "July" msgstr "Juuli" -#: src/Core/L10n.php:503 src/Model/Event.php:456 +#: src/Core/L10n.php:489 src/Model/Event.php:442 msgid "August" msgstr "August" -#: src/Core/L10n.php:503 src/Model/Event.php:457 +#: src/Core/L10n.php:489 src/Model/Event.php:443 msgid "September" msgstr "" -#: src/Core/L10n.php:503 src/Model/Event.php:458 +#: src/Core/L10n.php:489 src/Model/Event.php:444 msgid "October" msgstr "Oktoober" -#: src/Core/L10n.php:503 src/Model/Event.php:459 +#: src/Core/L10n.php:489 src/Model/Event.php:445 msgid "November" msgstr "" -#: src/Core/L10n.php:503 src/Model/Event.php:460 +#: src/Core/L10n.php:489 src/Model/Event.php:446 msgid "December" msgstr "Detsember" -#: src/Core/L10n.php:518 src/Model/Event.php:422 +#: src/Core/L10n.php:504 src/Model/Event.php:408 msgid "Mon" msgstr "Esm" -#: src/Core/L10n.php:518 src/Model/Event.php:423 +#: src/Core/L10n.php:504 src/Model/Event.php:409 msgid "Tue" msgstr "Tei" -#: src/Core/L10n.php:518 src/Model/Event.php:424 +#: src/Core/L10n.php:504 src/Model/Event.php:410 msgid "Wed" msgstr "Kol" -#: src/Core/L10n.php:518 src/Model/Event.php:425 +#: src/Core/L10n.php:504 src/Model/Event.php:411 msgid "Thu" msgstr "Nel" -#: src/Core/L10n.php:518 src/Model/Event.php:426 +#: src/Core/L10n.php:504 src/Model/Event.php:412 msgid "Fri" msgstr "Ree" -#: src/Core/L10n.php:518 src/Model/Event.php:427 +#: src/Core/L10n.php:504 src/Model/Event.php:413 msgid "Sat" msgstr "Lau" -#: src/Core/L10n.php:518 src/Model/Event.php:421 +#: src/Core/L10n.php:504 src/Model/Event.php:407 msgid "Sun" msgstr "Püh" -#: src/Core/L10n.php:522 src/Model/Event.php:437 +#: src/Core/L10n.php:508 src/Model/Event.php:423 msgid "Jan" msgstr "" -#: src/Core/L10n.php:522 src/Model/Event.php:438 +#: src/Core/L10n.php:508 src/Model/Event.php:424 msgid "Feb" msgstr "" -#: src/Core/L10n.php:522 src/Model/Event.php:439 +#: src/Core/L10n.php:508 src/Model/Event.php:425 msgid "Mar" msgstr "" -#: src/Core/L10n.php:522 src/Model/Event.php:440 +#: src/Core/L10n.php:508 src/Model/Event.php:426 msgid "Apr" msgstr "" -#: src/Core/L10n.php:522 src/Model/Event.php:442 +#: src/Core/L10n.php:508 src/Model/Event.php:428 msgid "Jun" msgstr "" -#: src/Core/L10n.php:522 src/Model/Event.php:443 +#: src/Core/L10n.php:508 src/Model/Event.php:429 msgid "Jul" msgstr "" -#: src/Core/L10n.php:522 src/Model/Event.php:444 +#: src/Core/L10n.php:508 src/Model/Event.php:430 msgid "Aug" msgstr "" -#: src/Core/L10n.php:522 +#: src/Core/L10n.php:508 msgid "Sep" msgstr "" -#: src/Core/L10n.php:522 src/Model/Event.php:446 +#: src/Core/L10n.php:508 src/Model/Event.php:432 msgid "Oct" msgstr "" -#: src/Core/L10n.php:522 src/Model/Event.php:447 +#: src/Core/L10n.php:508 src/Model/Event.php:433 msgid "Nov" msgstr "" -#: src/Core/L10n.php:522 src/Model/Event.php:448 +#: src/Core/L10n.php:508 src/Model/Event.php:434 msgid "Dec" msgstr "" -#: src/Core/Logger/Util/LoggerSettingsCheck.php:60 +#: src/Core/Logger/Util/LoggerSettingsCheck.php:46 #, php-format msgid "The logfile '%s' is not usable. No logging possible (error: '%s')" msgstr "" -#: src/Core/Logger/Util/LoggerSettingsCheck.php:85 +#: src/Core/Logger/Util/LoggerSettingsCheck.php:71 #, php-format msgid "" "The debug logfile '%s' is not usable. No logging possible (error: '%s')" msgstr "" -#: src/Core/Renderer.php:89 src/Core/Renderer.php:118 -#: src/Core/Renderer.php:147 src/Core/Renderer.php:181 -#: src/Render/FriendicaSmartyEngine.php:60 +#: src/Core/Renderer.php:78 src/Core/Renderer.php:107 +#: src/Core/Renderer.php:136 src/Core/Renderer.php:170 +#: src/Render/FriendicaSmartyEngine.php:46 msgid "" "Friendica can't display this page at the moment, please contact the " "administrator." msgstr "" -#: src/Core/Renderer.php:143 +#: src/Core/Renderer.php:132 msgid "template engine cannot be registered without a name." msgstr "" -#: src/Core/Renderer.php:177 +#: src/Core/Renderer.php:166 msgid "template engine is not registered!" msgstr "" -#: src/Core/Storage/Type/FilesystemConfig.php:78 +#: src/Core/Storage/Type/FilesystemConfig.php:64 msgid "Storage base path" msgstr "" -#: src/Core/Storage/Type/FilesystemConfig.php:80 +#: src/Core/Storage/Type/FilesystemConfig.php:66 msgid "" "Folder where uploaded files are saved. For maximum security, This should be " "a path outside web server folder tree" msgstr "" -#: src/Core/Storage/Type/FilesystemConfig.php:93 +#: src/Core/Storage/Type/FilesystemConfig.php:79 msgid "Enter a valid existing folder" msgstr "" -#: src/Core/Update.php:80 +#: src/Core/Update.php:66 #, php-format msgid "" "Updates from version %s are not supported. Please update at least to version" " 2021.01 and wait until the postupdate finished version 1383." msgstr "" -#: src/Core/Update.php:91 +#: src/Core/Update.php:77 #, php-format msgid "" "Updates from postupdate version %s are not supported. Please update at least" " to version 2021.01 and wait until the postupdate finished version 1383." msgstr "" -#: src/Core/Update.php:183 +#: src/Core/Update.php:169 #, php-format msgid "%s: executing pre update %d" msgstr "" -#: src/Core/Update.php:225 +#: src/Core/Update.php:211 #, php-format msgid "%s: executing post update %d" msgstr "" -#: src/Core/Update.php:299 +#: src/Core/Update.php:285 #, php-format msgid "Update %s failed. See error logs." msgstr "" -#: src/Core/Update.php:339 +#: src/Core/Update.php:325 #, php-format msgid "" "\n" @@ -3113,49 +3170,49 @@ msgid "" "\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." msgstr "" -#: src/Core/Update.php:345 +#: src/Core/Update.php:331 #, php-format msgid "The error message is\\n[pre]%s[/pre]" msgstr "" -#: src/Core/Update.php:349 src/Core/Update.php:377 +#: src/Core/Update.php:335 src/Core/Update.php:363 msgid "[Friendica Notify] Database update" msgstr "" -#: src/Core/Update.php:371 +#: src/Core/Update.php:357 #, php-format msgid "" "\n" "\t\t\t\tThe friendica database was successfully updated from %s to %s." msgstr "" -#: src/Database/DBStructure.php:57 +#: src/Database/DBStructure.php:43 #, php-format msgid "The database version had been set to %s." msgstr "" -#: src/Database/DBStructure.php:82 +#: src/Database/DBStructure.php:68 #, php-format msgid "" "The post update is at version %d, it has to be at %d to safely drop the " "tables." msgstr "" -#: src/Database/DBStructure.php:95 +#: src/Database/DBStructure.php:81 msgid "No unused tables found." msgstr "" -#: src/Database/DBStructure.php:100 +#: src/Database/DBStructure.php:86 msgid "" "These tables are not used for friendica and will be deleted when you execute" " \"dbstructure drop -e\":" msgstr "" -#: src/Database/DBStructure.php:137 +#: src/Database/DBStructure.php:123 msgid "There are no tables on MyISAM or InnoDB with the Antelope file format." msgstr "" -#: src/Database/DBStructure.php:161 +#: src/Database/DBStructure.php:147 #, php-format msgid "" "\n" @@ -3163,655 +3220,654 @@ msgid "" "%s\n" msgstr "" -#: src/Database/DBStructure.php:164 +#: src/Database/DBStructure.php:150 msgid "Errors encountered performing database changes: " msgstr "" -#: src/Database/DBStructure.php:232 +#: src/Database/DBStructure.php:218 msgid "Another database update is currently running." msgstr "" -#: src/Database/DBStructure.php:236 +#: src/Database/DBStructure.php:222 #, php-format msgid "%s: Database update" msgstr "" -#: src/Database/DBStructure.php:493 +#: src/Database/DBStructure.php:479 #, php-format msgid "%s: updating %s table." msgstr "" -#: src/Factory/Api/Mastodon/Error.php:42 +#: src/Factory/Api/Mastodon/Error.php:28 msgid "Record not found" msgstr "" -#: src/Factory/Api/Mastodon/Error.php:49 +#: src/Factory/Api/Mastodon/Error.php:35 msgid "Unprocessable Entity" msgstr "" -#: src/Factory/Api/Mastodon/Error.php:56 +#: src/Factory/Api/Mastodon/Error.php:42 msgid "Unauthorized" msgstr "" -#: src/Factory/Api/Mastodon/Error.php:62 +#: src/Factory/Api/Mastodon/Error.php:48 msgid "" "Token is not authorized with a valid user or is missing a required scope" msgstr "" -#: src/Factory/Api/Mastodon/Error.php:69 +#: src/Factory/Api/Mastodon/Error.php:55 msgid "Internal Server Error" msgstr "" -#: src/LegacyModule.php:63 +#: src/LegacyModule.php:49 #, php-format msgid "Legacy module file not found: %s" msgstr "" -#: src/Model/Circle.php:106 +#: src/Model/Circle.php:92 msgid "" "A deleted circle with this name was revived. Existing item permissions " "may apply to this circle and any future members. If this is" " not what you intended, please create another circle with a different name." msgstr "" -#: src/Model/Circle.php:544 +#: src/Model/Circle.php:530 msgid "Everybody" msgstr "Igaüks" -#: src/Model/Circle.php:563 +#: src/Model/Circle.php:549 msgid "edit" msgstr "muuda" -#: src/Model/Circle.php:600 +#: src/Model/Circle.php:586 msgid "add" msgstr "lisa" -#: src/Model/Circle.php:605 +#: src/Model/Circle.php:591 msgid "Edit circle" msgstr "" -#: src/Model/Circle.php:606 src/Module/Circle.php:193 +#: src/Model/Circle.php:592 src/Module/Circle.php:181 msgid "Contacts not in any circle" msgstr "" -#: src/Model/Circle.php:608 +#: src/Model/Circle.php:594 msgid "Create a new circle" msgstr "" -#: src/Model/Circle.php:609 src/Module/Circle.php:178 -#: src/Module/Circle.php:201 src/Module/Circle.php:276 +#: src/Model/Circle.php:595 src/Module/Circle.php:166 +#: src/Module/Circle.php:189 src/Module/Circle.php:264 msgid "Circle Name: " msgstr "" -#: src/Model/Circle.php:610 +#: src/Model/Circle.php:596 msgid "Edit circles" msgstr "" -#: src/Model/Contact.php:1264 src/Module/Moderation/Users/Pending.php:102 -#: src/Module/Notifications/Introductions.php:132 -#: src/Module/Notifications/Introductions.php:204 +#: src/Model/Contact.php:1263 src/Module/Moderation/Users/Pending.php:88 +#: src/Module/Notifications/Introductions.php:124 +#: src/Module/Notifications/Introductions.php:196 msgid "Approve" msgstr "" -#: src/Model/Contact.php:1742 +#: src/Model/Contact.php:1743 msgid "Organisation" msgstr "Organisatsioon" -#: src/Model/Contact.php:1750 +#: src/Model/Contact.php:1751 msgid "Group" msgstr "" -#: src/Model/Contact.php:1754 src/Module/Moderation/BaseUsers.php:130 +#: src/Model/Contact.php:1755 src/Module/Moderation/BaseUsers.php:120 msgid "Relay" msgstr "" -#: src/Model/Contact.php:3057 +#: src/Model/Contact.php:3070 msgid "Disallowed profile URL." msgstr "Mittelubatud profiili URL." -#: src/Model/Contact.php:3062 src/Module/Friendica.php:101 +#: src/Model/Contact.php:3075 src/Module/Friendica.php:86 msgid "Blocked domain" msgstr "" -#: src/Model/Contact.php:3067 +#: src/Model/Contact.php:3080 msgid "Connect URL missing." msgstr "" -#: src/Model/Contact.php:3076 +#: src/Model/Contact.php:3089 msgid "" "The contact could not be added. Please check the relevant network " "credentials in your Settings -> Social Networks page." msgstr "" -#: src/Model/Contact.php:3094 +#: src/Model/Contact.php:3107 #, php-format msgid "Expected network %s does not match actual network %s" msgstr "" -#: src/Model/Contact.php:3111 +#: src/Model/Contact.php:3124 +msgid "This seems to be a relay account. They can't be followed by users." +msgstr "" + +#: src/Model/Contact.php:3131 msgid "The profile address specified does not provide adequate information." msgstr "" -#: src/Model/Contact.php:3113 +#: src/Model/Contact.php:3133 msgid "No compatible communication protocols or feeds were discovered." msgstr "" -#: src/Model/Contact.php:3116 +#: src/Model/Contact.php:3136 msgid "An author or name was not found." msgstr "" -#: src/Model/Contact.php:3119 +#: src/Model/Contact.php:3139 msgid "No browser URL could be matched to this address." msgstr "" -#: src/Model/Contact.php:3122 +#: src/Model/Contact.php:3142 msgid "" "Unable to match @-style Identity Address with a known protocol or email " "contact." msgstr "" -#: src/Model/Contact.php:3123 +#: src/Model/Contact.php:3143 msgid "Use mailto: in front of address to force email check." msgstr "" -#: src/Model/Contact.php:3129 -msgid "" -"The profile address specified belongs to a network which has been disabled " -"on this site." -msgstr "" - -#: src/Model/Contact.php:3134 +#: src/Model/Contact.php:3149 msgid "" "Limited profile. This person will be unable to receive direct/personal " "notifications from you." msgstr "" -#: src/Model/Contact.php:3200 +#: src/Model/Contact.php:3208 msgid "Unable to retrieve contact information." msgstr "" -#: src/Model/Event.php:54 +#: src/Model/Event.php:40 msgid "l F d, Y \\@ g:i A \\G\\M\\TP (e)" msgstr "" -#: src/Model/Event.php:75 src/Model/Event.php:92 src/Model/Event.php:469 -#: src/Model/Event.php:945 +#: src/Model/Event.php:61 src/Model/Event.php:78 src/Model/Event.php:455 +#: src/Model/Event.php:928 msgid "Starts:" msgstr "Algab:" -#: src/Model/Event.php:78 src/Model/Event.php:98 src/Model/Event.php:470 -#: src/Model/Event.php:949 +#: src/Model/Event.php:64 src/Model/Event.php:84 src/Model/Event.php:456 +#: src/Model/Event.php:932 msgid "Finishes:" msgstr "Lõpeb:" -#: src/Model/Event.php:419 +#: src/Model/Event.php:405 msgid "all-day" msgstr "terve päev" -#: src/Model/Event.php:445 +#: src/Model/Event.php:431 msgid "Sept" msgstr "" -#: src/Model/Event.php:462 src/Module/Calendar/Show.php:128 -#: src/Util/Temporal.php:343 +#: src/Model/Event.php:448 src/Module/Calendar/Show.php:114 +#: src/Util/Temporal.php:329 msgid "today" msgstr "täna" -#: src/Model/Event.php:463 src/Module/Calendar/Show.php:129 -#: src/Module/Settings/Display.php:294 src/Util/Temporal.php:353 +#: src/Model/Event.php:449 src/Module/Calendar/Show.php:115 +#: src/Module/Settings/Display.php:280 src/Util/Temporal.php:339 msgid "month" msgstr "kuu" -#: src/Model/Event.php:464 src/Module/Calendar/Show.php:130 -#: src/Module/Settings/Display.php:295 src/Util/Temporal.php:354 +#: src/Model/Event.php:450 src/Module/Calendar/Show.php:116 +#: src/Module/Settings/Display.php:281 src/Util/Temporal.php:340 msgid "week" msgstr "nädal" -#: src/Model/Event.php:465 src/Module/Calendar/Show.php:131 -#: src/Module/Settings/Display.php:296 src/Util/Temporal.php:355 +#: src/Model/Event.php:451 src/Module/Calendar/Show.php:117 +#: src/Module/Settings/Display.php:282 src/Util/Temporal.php:341 msgid "day" msgstr "päev" -#: src/Model/Event.php:467 +#: src/Model/Event.php:453 msgid "No events to display" msgstr "Pole üritusi kuvamiseks" -#: src/Model/Event.php:516 src/Module/DFRN/Poll.php:47 src/Module/Feed.php:69 -#: src/Module/Update/Profile.php:56 +#: src/Model/Event.php:502 src/Module/Feed.php:56 +#: src/Module/Update/Profile.php:42 msgid "Access to this profile has been restricted." msgstr "Ligipääs sellele profiilile on piiratud. " -#: src/Model/Event.php:558 src/Module/Calendar/Event/Show.php:67 +#: src/Model/Event.php:544 src/Module/Calendar/Event/Show.php:53 msgid "Event not found." msgstr "" -#: src/Model/Event.php:637 +#: src/Model/Event.php:623 msgid "l, F j" msgstr "" -#: src/Model/Event.php:664 +#: src/Model/Event.php:650 msgid "Edit event" msgstr "Muuda sündmust" -#: src/Model/Event.php:665 +#: src/Model/Event.php:651 msgid "Duplicate event" msgstr "Dubleeri sündmus" -#: src/Model/Event.php:666 +#: src/Model/Event.php:652 msgid "Delete event" msgstr "Kustuta sündmus" -#: src/Model/Event.php:896 src/Module/Debug/Localtime.php:38 +#: src/Model/Event.php:882 src/Module/Debug/Localtime.php:24 msgid "l F d, Y \\@ g:i A" msgstr "" -#: src/Model/Event.php:897 +#: src/Model/Event.php:883 msgid "D g:i A" msgstr "" -#: src/Model/Event.php:898 +#: src/Model/Event.php:884 msgid "g:i A" msgstr "" -#: src/Model/Event.php:964 src/Model/Event.php:966 +#: src/Model/Event.php:947 src/Model/Event.php:949 msgid "Show map" msgstr "Näita kaarti" -#: src/Model/Event.php:965 +#: src/Model/Event.php:948 msgid "Hide map" msgstr "Peida kaart" -#: src/Model/Event.php:1058 +#: src/Model/Event.php:1041 #, php-format msgid "%s's birthday" msgstr "%s sünnipäev" -#: src/Model/Event.php:1059 +#: src/Model/Event.php:1042 #, php-format msgid "Happy Birthday %s" msgstr "Palju Õnne %s " -#: src/Model/Item.php:2301 +#: src/Model/Item.php:2322 #, php-format msgid "%s (%s - %s): %s" msgstr "" -#: src/Model/Item.php:2303 +#: src/Model/Item.php:2324 #, php-format msgid "%s (%s): %s" msgstr "" -#: src/Model/Item.php:2306 +#: src/Model/Item.php:2327 #, php-format -msgid "Detected languages in this post:\\n%s" +msgid "" +"Detected languages in this post:\n" +"%s" msgstr "" -#: src/Model/Item.php:3254 +#: src/Model/Item.php:3276 msgid "activity" msgstr "tegevused" -#: src/Model/Item.php:3256 +#: src/Model/Item.php:3278 msgid "comment" msgstr "" -#: src/Model/Item.php:3259 src/Module/Post/Tag/Add.php:123 +#: src/Model/Item.php:3281 src/Module/Post/Tag/Add.php:109 msgid "post" msgstr "postitus" -#: src/Model/Item.php:3429 +#: src/Model/Item.php:3451 #, php-format msgid "%s is blocked" msgstr "" -#: src/Model/Item.php:3431 +#: src/Model/Item.php:3453 #, php-format msgid "%s is ignored" msgstr "" -#: src/Model/Item.php:3433 +#: src/Model/Item.php:3455 #, php-format msgid "Content from %s is collapsed" msgstr "" -#: src/Model/Item.php:3437 -#, php-format -msgid "Content warning: %s" +#: src/Model/Item.php:3459 +msgid "Sensitive content" msgstr "" -#: src/Model/Item.php:3890 +#: src/Model/Item.php:3928 msgid "bytes" msgstr "" -#: src/Model/Item.php:3921 +#: src/Model/Item.php:3959 #, php-format msgid "%2$s (%3$d%%, %1$d vote)" msgid_plural "%2$s (%3$d%%, %1$d votes)" msgstr[0] "" msgstr[1] "" -#: src/Model/Item.php:3923 +#: src/Model/Item.php:3961 #, php-format msgid "%2$s (%1$d vote)" msgid_plural "%2$s (%1$d votes)" msgstr[0] "" msgstr[1] "" -#: src/Model/Item.php:3928 +#: src/Model/Item.php:3966 #, php-format msgid "%d voter. Poll end: %s" msgid_plural "%d voters. Poll end: %s" msgstr[0] "" msgstr[1] "" -#: src/Model/Item.php:3930 +#: src/Model/Item.php:3968 #, php-format msgid "%d voter." msgid_plural "%d voters." msgstr[0] "" msgstr[1] "" -#: src/Model/Item.php:3932 +#: src/Model/Item.php:3970 #, php-format msgid "Poll end: %s" msgstr "" -#: src/Model/Item.php:3966 src/Model/Item.php:3967 +#: src/Model/Item.php:4011 src/Model/Item.php:4012 msgid "View on separate page" msgstr "Kuva eraldi lehel" -#: src/Model/Mail.php:135 +#: src/Model/Mail.php:121 msgid "[no subject]" msgstr "[teema puudub] " -#: src/Model/Photo.php:1191 src/Module/Media/Photo/Upload.php:170 +#: src/Model/Photo.php:1194 src/Module/Media/Photo/Upload.php:154 msgid "Wall Photos" msgstr "Seina fotod" -#: src/Model/Profile.php:363 src/Module/Profile/Profile.php:283 -#: src/Module/Profile/Profile.php:285 +#: src/Model/Profile.php:343 src/Module/Profile/Profile.php:271 +#: src/Module/Profile/Profile.php:273 msgid "Edit profile" msgstr "Muuda profiili" -#: src/Model/Profile.php:365 +#: src/Model/Profile.php:345 msgid "Change profile photo" msgstr "Muuda profiilifoto" -#: src/Model/Profile.php:378 src/Module/Directory.php:152 -#: src/Module/Profile/Profile.php:209 +#: src/Model/Profile.php:358 src/Module/Directory.php:139 +#: src/Module/Profile/Profile.php:197 msgid "Homepage:" msgstr "Koduleht:" -#: src/Model/Profile.php:379 src/Module/Contact/Profile.php:412 -#: src/Module/Notifications/Introductions.php:189 +#: src/Model/Profile.php:359 src/Module/Contact/Profile.php:418 +#: src/Module/Notifications/Introductions.php:181 msgid "About:" msgstr "Minust:" -#: src/Model/Profile.php:481 +#: src/Model/Profile.php:460 msgid "Atom feed" msgstr "" -#: src/Model/Profile.php:488 +#: src/Model/Profile.php:467 msgid "This website has been verified to belong to the same person." msgstr "" -#: src/Model/Profile.php:539 +#: src/Model/Profile.php:518 msgid "F d" msgstr "" -#: src/Model/Profile.php:603 src/Model/Profile.php:680 +#: src/Model/Profile.php:582 src/Model/Profile.php:663 msgid "[today]" msgstr "[täna]" -#: src/Model/Profile.php:612 +#: src/Model/Profile.php:591 msgid "Birthday Reminders" msgstr "Sünnipäeva meeldetuletused" -#: src/Model/Profile.php:613 +#: src/Model/Profile.php:592 msgid "Birthdays this week:" msgstr "Sünnipäevad sel nädalal:" -#: src/Model/Profile.php:629 +#: src/Model/Profile.php:608 msgid "g A l F d" msgstr "" -#: src/Model/Profile.php:667 +#: src/Model/Profile.php:650 msgid "[No description]" msgstr "[kirjeldus puudub]" -#: src/Model/Profile.php:693 +#: src/Model/Profile.php:676 msgid "Event Reminders" msgstr "Sündmuste meeldetuletused" -#: src/Model/Profile.php:694 +#: src/Model/Profile.php:677 msgid "Upcoming events the next 7 days:" msgstr "Eelseisvad sündmused järgneval 7 päeval: " -#: src/Model/Profile.php:893 -#, php-format -msgid "OpenWebAuth: %1$s welcomes %2$s" -msgstr "" - -#: src/Model/Profile.php:1033 +#: src/Model/Profile.php:789 msgid "Hometown:" msgstr "Kodulinn:" -#: src/Model/Profile.php:1034 +#: src/Model/Profile.php:790 msgid "Marital Status:" msgstr "" -#: src/Model/Profile.php:1035 +#: src/Model/Profile.php:791 msgid "With:" msgstr "" -#: src/Model/Profile.php:1036 +#: src/Model/Profile.php:792 msgid "Since:" msgstr "" -#: src/Model/Profile.php:1037 +#: src/Model/Profile.php:793 msgid "Sexual Preference:" msgstr "Seksuaalne eelistus:" -#: src/Model/Profile.php:1038 +#: src/Model/Profile.php:794 msgid "Political Views:" msgstr "Poliitilised vaated:" -#: src/Model/Profile.php:1039 +#: src/Model/Profile.php:795 msgid "Religious Views:" msgstr "Usulised vaated:" -#: src/Model/Profile.php:1040 +#: src/Model/Profile.php:796 msgid "Likes:" msgstr "Meeldimised:" -#: src/Model/Profile.php:1041 +#: src/Model/Profile.php:797 msgid "Dislikes:" msgstr "Mittemeeldimised:" -#: src/Model/Profile.php:1042 +#: src/Model/Profile.php:798 msgid "Title/Description:" msgstr "Tiitel/Kirjeldus:" -#: src/Model/Profile.php:1043 src/Module/Admin/Summary.php:197 -#: src/Module/Moderation/Report/Create.php:280 -#: src/Module/Moderation/Summary.php:76 +#: src/Model/Profile.php:799 src/Module/Admin/Summary.php:183 +#: src/Module/Moderation/Report/Create.php:266 +#: src/Module/Moderation/Summary.php:62 msgid "Summary" msgstr "Kokkuvõte" -#: src/Model/Profile.php:1044 +#: src/Model/Profile.php:800 msgid "Musical interests" msgstr "Muusikalised huvid" -#: src/Model/Profile.php:1045 +#: src/Model/Profile.php:801 msgid "Books, literature" msgstr "Raamatud, kirjandus" -#: src/Model/Profile.php:1046 +#: src/Model/Profile.php:802 msgid "Television" msgstr "Televisioon" -#: src/Model/Profile.php:1047 +#: src/Model/Profile.php:803 msgid "Film/dance/culture/entertainment" msgstr "Film/tants/kultuur/meelelehutus" -#: src/Model/Profile.php:1048 +#: src/Model/Profile.php:804 msgid "Hobbies/Interests" msgstr "Hobid/Huvid" -#: src/Model/Profile.php:1049 +#: src/Model/Profile.php:805 msgid "Love/romance" msgstr "Armastus/Romantika" -#: src/Model/Profile.php:1050 +#: src/Model/Profile.php:806 msgid "Work/employment" msgstr "Töö/Ametitegevus" -#: src/Model/Profile.php:1051 +#: src/Model/Profile.php:807 msgid "School/education" msgstr "Kool/Haridus" -#: src/Model/Profile.php:1052 +#: src/Model/Profile.php:808 msgid "Contact information and Social Networks" msgstr "Kontaktinfo ja Sotsiaalvõrgustikud" -#: src/Model/User.php:228 src/Model/User.php:1294 +#: src/Model/Profile.php:856 +#, php-format +msgid "Responsible account: %s" +msgstr "" + +#: src/Model/User.php:217 src/Model/User.php:1310 msgid "SERIOUS ERROR: Generation of security keys failed." msgstr "" -#: src/Model/User.php:728 src/Model/User.php:761 +#: src/Model/User.php:740 src/Model/User.php:773 msgid "Login failed" msgstr "" -#: src/Model/User.php:793 +#: src/Model/User.php:805 msgid "Not enough information to authenticate" msgstr "" -#: src/Model/User.php:914 +#: src/Model/User.php:930 msgid "Password can't be empty" msgstr "Parool ei saa olla tühi " -#: src/Model/User.php:956 +#: src/Model/User.php:972 msgid "Empty passwords are not allowed." msgstr "Tühjad paroolid pole lubatud" -#: src/Model/User.php:960 +#: src/Model/User.php:976 msgid "" "The new password has been exposed in a public data dump, please choose " "another." msgstr "Uus parool on juba kasutuses, palun vali midagi muud. " -#: src/Model/User.php:964 +#: src/Model/User.php:980 msgid "The password length is limited to 72 characters." msgstr "" -#: src/Model/User.php:968 +#: src/Model/User.php:984 msgid "The password can't contain white spaces nor accentuated letters" msgstr "" -#: src/Model/User.php:1177 +#: src/Model/User.php:1193 msgid "Passwords do not match. Password unchanged." msgstr "Paroolid ei kattu" -#: src/Model/User.php:1184 +#: src/Model/User.php:1200 msgid "An invitation is required." msgstr "Kutse on nõutav." -#: src/Model/User.php:1188 +#: src/Model/User.php:1204 msgid "Invitation could not be verified." msgstr "Kutset ei õnnestu kontrollida." -#: src/Model/User.php:1196 +#: src/Model/User.php:1212 msgid "Invalid OpenID url" msgstr "" -#: src/Model/User.php:1209 src/Security/Authentication.php:241 +#: src/Model/User.php:1225 src/Security/Authentication.php:214 msgid "" "We encountered a problem while logging in with the OpenID you provided. " "Please check the correct spelling of the ID." msgstr "" -#: src/Model/User.php:1209 src/Security/Authentication.php:241 +#: src/Model/User.php:1225 src/Security/Authentication.php:214 msgid "The error message was:" msgstr "" -#: src/Model/User.php:1215 +#: src/Model/User.php:1231 msgid "Please enter the required information." msgstr "" -#: src/Model/User.php:1229 +#: src/Model/User.php:1245 #, php-format msgid "" "system.username_min_length (%s) and system.username_max_length (%s) are " "excluding each other, swapping values." msgstr "" -#: src/Model/User.php:1236 +#: src/Model/User.php:1252 #, php-format msgid "Username should be at least %s character." msgid_plural "Username should be at least %s characters." msgstr[0] "" msgstr[1] "" -#: src/Model/User.php:1240 +#: src/Model/User.php:1256 #, php-format msgid "Username should be at most %s character." msgid_plural "Username should be at most %s characters." msgstr[0] "" msgstr[1] "" -#: src/Model/User.php:1248 +#: src/Model/User.php:1264 msgid "That doesn't appear to be your full (First Last) name." msgstr "" -#: src/Model/User.php:1253 +#: src/Model/User.php:1269 msgid "Your email domain is not among those allowed on this site." msgstr "" -#: src/Model/User.php:1257 +#: src/Model/User.php:1273 msgid "Not a valid email address." msgstr "" -#: src/Model/User.php:1260 +#: src/Model/User.php:1276 msgid "The nickname was blocked from registration by the nodes admin." msgstr "" -#: src/Model/User.php:1264 src/Model/User.php:1270 +#: src/Model/User.php:1280 src/Model/User.php:1286 msgid "Cannot use that email." msgstr "" -#: src/Model/User.php:1276 +#: src/Model/User.php:1292 msgid "Your nickname can only contain a-z, 0-9 and _." msgstr "" -#: src/Model/User.php:1284 src/Model/User.php:1341 +#: src/Model/User.php:1300 src/Model/User.php:1350 msgid "Nickname is already registered. Please choose another." msgstr "" -#: src/Model/User.php:1328 src/Model/User.php:1332 +#: src/Model/User.php:1337 src/Model/User.php:1341 msgid "An error occurred during registration. Please try again." msgstr "" -#: src/Model/User.php:1355 +#: src/Model/User.php:1364 msgid "An error occurred creating your default profile. Please try again." msgstr "" -#: src/Model/User.php:1362 +#: src/Model/User.php:1371 msgid "An error occurred creating your self contact. Please try again." msgstr "" -#: src/Model/User.php:1367 +#: src/Model/User.php:1376 msgid "Friends" msgstr "Sõbrad" -#: src/Model/User.php:1371 +#: src/Model/User.php:1380 msgid "" "An error occurred creating your default contact circle. Please try again." msgstr "" -#: src/Model/User.php:1415 +#: src/Model/User.php:1428 msgid "Profile Photos" msgstr "Profiilifotod" -#: src/Model/User.php:1597 +#: src/Model/User.php:1616 #, php-format msgid "" "\n" @@ -3819,7 +3875,7 @@ msgid "" "\t\t\tthe administrator of %2$s has set up an account for you." msgstr "" -#: src/Model/User.php:1600 +#: src/Model/User.php:1619 #, php-format msgid "" "\n" @@ -3850,12 +3906,12 @@ msgid "" "\t\tThank you and welcome to %4$s." msgstr "" -#: src/Model/User.php:1632 src/Model/User.php:1738 +#: src/Model/User.php:1651 src/Model/User.php:1757 #, php-format msgid "Registration details for %s" msgstr "" -#: src/Model/User.php:1652 +#: src/Model/User.php:1671 #, php-format msgid "" "\n" @@ -3870,12 +3926,12 @@ msgid "" "\t\t" msgstr "" -#: src/Model/User.php:1671 +#: src/Model/User.php:1690 #, php-format msgid "Registration at %s" msgstr "" -#: src/Model/User.php:1695 +#: src/Model/User.php:1714 #, php-format msgid "" "\n" @@ -3884,7 +3940,7 @@ msgid "" "\t\t\t" msgstr "" -#: src/Model/User.php:1703 +#: src/Model/User.php:1722 #, php-format msgid "" "\n" @@ -3915,93 +3971,91 @@ msgid "" "\t\t\tThank you and welcome to %2$s." msgstr "" -#: src/Model/User.php:1765 +#: src/Model/User.php:1784 msgid "" "User with delegates can't be removed, please remove delegate users first" msgstr "" -#: src/Module/Admin/Addons/Details.php:65 +#: src/Module/Admin/Addons/Details.php:51 msgid "Addon not found." msgstr "" -#: src/Module/Admin/Addons/Details.php:76 src/Module/Admin/Addons/Index.php:49 +#: src/Module/Admin/Addons/Details.php:62 src/Module/Admin/Addons/Index.php:41 #, php-format msgid "Addon %s disabled." msgstr "" -#: src/Module/Admin/Addons/Details.php:79 src/Module/Admin/Addons/Index.php:51 +#: src/Module/Admin/Addons/Details.php:65 src/Module/Admin/Addons/Index.php:43 #, php-format msgid "Addon %s enabled." msgstr "" -#: src/Module/Admin/Addons/Details.php:88 -#: src/Module/Admin/Themes/Details.php:46 +#: src/Module/Admin/Addons/Details.php:74 +#: src/Module/Admin/Themes/Details.php:38 msgid "Disable" msgstr "" -#: src/Module/Admin/Addons/Details.php:91 -#: src/Module/Admin/Themes/Details.php:49 src/Module/Settings/Display.php:340 +#: src/Module/Admin/Addons/Details.php:77 +#: src/Module/Admin/Themes/Details.php:41 src/Module/Settings/Display.php:326 msgid "Enable" msgstr "" -#: src/Module/Admin/Addons/Details.php:111 -#: src/Module/Admin/Addons/Index.php:67 src/Module/Admin/Federation.php:218 -#: src/Module/Admin/Logs/Settings.php:85 src/Module/Admin/Logs/View.php:83 -#: src/Module/Admin/Queue.php:72 src/Module/Admin/Site.php:455 -#: src/Module/Admin/Storage.php:138 src/Module/Admin/Summary.php:196 -#: src/Module/Admin/Themes/Details.php:90 -#: src/Module/Admin/Themes/Index.php:111 src/Module/Admin/Tos.php:77 -#: src/Module/Moderation/Users/Create.php:61 -#: src/Module/Moderation/Users/Pending.php:96 +#: src/Module/Admin/Addons/Details.php:97 src/Module/Admin/Addons/Index.php:59 +#: src/Module/Admin/Federation.php:206 src/Module/Admin/Logs/Settings.php:74 +#: src/Module/Admin/Logs/View.php:71 src/Module/Admin/Queue.php:59 +#: src/Module/Admin/Site.php:447 src/Module/Admin/Storage.php:124 +#: src/Module/Admin/Summary.php:182 src/Module/Admin/Themes/Details.php:82 +#: src/Module/Admin/Themes/Index.php:103 src/Module/Admin/Tos.php:63 +#: src/Module/Moderation/Users/Create.php:47 +#: src/Module/Moderation/Users/Pending.php:82 msgid "Administration" msgstr "" -#: src/Module/Admin/Addons/Details.php:112 -#: src/Module/Admin/Addons/Index.php:68 src/Module/BaseAdmin.php:92 -#: src/Module/BaseSettings.php:139 +#: src/Module/Admin/Addons/Details.php:98 src/Module/Admin/Addons/Index.php:60 +#: src/Module/BaseAdmin.php:78 src/Module/BaseSettings.php:125 msgid "Addons" msgstr "Lisad" -#: src/Module/Admin/Addons/Details.php:113 -#: src/Module/Admin/Themes/Details.php:92 +#: src/Module/Admin/Addons/Details.php:99 +#: src/Module/Admin/Themes/Details.php:84 msgid "Toggle" msgstr "" -#: src/Module/Admin/Addons/Details.php:120 -#: src/Module/Admin/Themes/Details.php:100 +#: src/Module/Admin/Addons/Details.php:106 +#: src/Module/Admin/Themes/Details.php:92 msgid "Author: " msgstr "" -#: src/Module/Admin/Addons/Details.php:121 -#: src/Module/Admin/Themes/Details.php:101 +#: src/Module/Admin/Addons/Details.php:107 +#: src/Module/Admin/Themes/Details.php:93 msgid "Maintainer: " msgstr "" -#: src/Module/Admin/Addons/Index.php:42 +#: src/Module/Admin/Addons/Index.php:34 msgid "Addons reloaded" msgstr "" -#: src/Module/Admin/Addons/Index.php:53 +#: src/Module/Admin/Addons/Index.php:45 #, php-format msgid "Addon %s failed to install." msgstr "" -#: src/Module/Admin/Addons/Index.php:69 src/Module/Admin/Features.php:86 -#: src/Module/Admin/Logs/Settings.php:87 src/Module/Admin/Site.php:458 -#: src/Module/Admin/Themes/Index.php:113 src/Module/Admin/Tos.php:86 -#: src/Module/Settings/Account.php:551 src/Module/Settings/Addons.php:78 -#: src/Module/Settings/Connectors.php:160 -#: src/Module/Settings/Connectors.php:246 -#: src/Module/Settings/Delegation.php:193 src/Module/Settings/Display.php:309 -#: src/Module/Settings/Features.php:76 +#: src/Module/Admin/Addons/Index.php:61 src/Module/Admin/Features.php:69 +#: src/Module/Admin/Logs/Settings.php:76 src/Module/Admin/Site.php:450 +#: src/Module/Admin/Themes/Index.php:105 src/Module/Admin/Tos.php:72 +#: src/Module/Settings/Account.php:549 src/Module/Settings/Addons.php:64 +#: src/Module/Settings/Connectors.php:149 +#: src/Module/Settings/Connectors.php:235 +#: src/Module/Settings/Delegation.php:179 src/Module/Settings/Display.php:295 +#: src/Module/Settings/Features.php:61 msgid "Save Settings" msgstr "Salvesta Sätted" -#: src/Module/Admin/Addons/Index.php:70 +#: src/Module/Admin/Addons/Index.php:62 msgid "Reload active addons" msgstr "" -#: src/Module/Admin/Addons/Index.php:74 +#: src/Module/Admin/Addons/Index.php:66 #, php-format msgid "" "There are currently no addons available on your node. You can find the " @@ -4009,145 +4063,158 @@ msgid "" " the open addon registry at %2$s" msgstr "" -#: src/Module/Admin/DBSync.php:51 +#: src/Module/Admin/DBSync.php:37 msgid "Update has been marked successful" msgstr "" -#: src/Module/Admin/DBSync.php:59 +#: src/Module/Admin/DBSync.php:45 #, php-format msgid "Database structure update %s was successfully applied." msgstr "" -#: src/Module/Admin/DBSync.php:61 +#: src/Module/Admin/DBSync.php:47 #, php-format msgid "Executing of database structure update %s failed with error: %s" msgstr "" -#: src/Module/Admin/DBSync.php:76 +#: src/Module/Admin/DBSync.php:62 #, php-format msgid "Executing %s failed with error: %s" msgstr "" -#: src/Module/Admin/DBSync.php:78 +#: src/Module/Admin/DBSync.php:64 #, php-format msgid "Update %s was successfully applied." msgstr "" -#: src/Module/Admin/DBSync.php:81 +#: src/Module/Admin/DBSync.php:67 #, php-format msgid "Update %s did not return a status. Unknown if it succeeded." msgstr "" -#: src/Module/Admin/DBSync.php:84 +#: src/Module/Admin/DBSync.php:70 #, php-format msgid "There was no additional update function %s that needed to be called." msgstr "" -#: src/Module/Admin/DBSync.php:105 +#: src/Module/Admin/DBSync.php:91 msgid "No failed updates." msgstr "" -#: src/Module/Admin/DBSync.php:106 +#: src/Module/Admin/DBSync.php:92 msgid "Check database structure" msgstr "" -#: src/Module/Admin/DBSync.php:110 +#: src/Module/Admin/DBSync.php:96 msgid "Failed Updates" msgstr "" -#: src/Module/Admin/DBSync.php:111 +#: src/Module/Admin/DBSync.php:97 msgid "" "This does not include updates prior to 1139, which did not return a status." msgstr "" -#: src/Module/Admin/DBSync.php:112 +#: src/Module/Admin/DBSync.php:98 msgid "Mark success (if update was manually applied)" msgstr "" -#: src/Module/Admin/DBSync.php:113 +#: src/Module/Admin/DBSync.php:99 msgid "Attempt to execute this update step automatically" msgstr "" -#: src/Module/Admin/Features.php:76 -#, php-format -msgid "Lock feature %s" +#: src/Module/Admin/Features.php:53 +#: src/Module/Notifications/Introductions.php:136 +#: src/Module/OAuth/Acknowledge.php:41 src/Module/Register.php:124 +#: src/Module/Settings/TwoFactor/Trusted.php:115 +msgid "No" msgstr "" -#: src/Module/Admin/Features.php:84 +#: src/Module/Admin/Features.php:53 src/Module/Contact/Revoke.php:91 +#: src/Module/Notifications/Introductions.php:136 +#: src/Module/OAuth/Acknowledge.php:40 src/Module/Register.php:123 +#: src/Module/Settings/TwoFactor/Trusted.php:115 +msgid "Yes" +msgstr "Jah" + +#: src/Module/Admin/Features.php:53 +msgid "Locked" +msgstr "" + +#: src/Module/Admin/Features.php:67 msgid "Manage Additional Features" msgstr "Halda lisafunktsioone" -#: src/Module/Admin/Federation.php:80 -#: src/Module/Moderation/Report/Create.php:191 -#: src/Module/Moderation/Report/Create.php:316 +#: src/Module/Admin/Federation.php:68 +#: src/Module/Moderation/Report/Create.php:177 +#: src/Module/Moderation/Report/Create.php:302 msgid "Other" msgstr "" -#: src/Module/Admin/Federation.php:158 src/Module/Admin/Federation.php:407 +#: src/Module/Admin/Federation.php:146 src/Module/Admin/Federation.php:394 msgid "unknown" msgstr "" -#: src/Module/Admin/Federation.php:191 +#: src/Module/Admin/Federation.php:179 #, php-format msgid "%2$s total system" msgid_plural "%2$s total systems" msgstr[0] "" msgstr[1] "" -#: src/Module/Admin/Federation.php:192 +#: src/Module/Admin/Federation.php:180 #, php-format msgid "%2$s active user last month" msgid_plural "%2$s active users last month" msgstr[0] "" msgstr[1] "" -#: src/Module/Admin/Federation.php:193 +#: src/Module/Admin/Federation.php:181 #, php-format msgid "%2$s active user last six months" msgid_plural "%2$s active users last six months" msgstr[0] "" msgstr[1] "" -#: src/Module/Admin/Federation.php:194 +#: src/Module/Admin/Federation.php:182 #, php-format msgid "%2$s registered user" msgid_plural "%2$s registered users" msgstr[0] "" msgstr[1] "" -#: src/Module/Admin/Federation.php:195 +#: src/Module/Admin/Federation.php:183 #, php-format msgid "%2$s locally created post or comment" msgid_plural "%2$s locally created posts and comments" msgstr[0] "" msgstr[1] "" -#: src/Module/Admin/Federation.php:198 +#: src/Module/Admin/Federation.php:186 #, php-format msgid "%2$s post per user" msgid_plural "%2$s posts per user" msgstr[0] "" msgstr[1] "" -#: src/Module/Admin/Federation.php:203 +#: src/Module/Admin/Federation.php:191 #, php-format msgid "%2$s user per system" msgid_plural "%2$s users per system" msgstr[0] "" msgstr[1] "" -#: src/Module/Admin/Federation.php:213 +#: src/Module/Admin/Federation.php:201 msgid "" "This page offers you some numbers to the known part of the federated social " "network your Friendica node is part of. These numbers are not complete but " "only reflect the part of the network your node is aware of." msgstr "" -#: src/Module/Admin/Federation.php:219 src/Module/BaseAdmin.php:87 +#: src/Module/Admin/Federation.php:207 src/Module/BaseAdmin.php:73 msgid "Federation Statistics" msgstr "" -#: src/Module/Admin/Federation.php:223 +#: src/Module/Admin/Federation.php:210 #, php-format msgid "" "Currently this node is aware of %2$s node (%3$s active users last month, " @@ -4160,58 +4227,58 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: src/Module/Admin/Logs/Settings.php:47 +#: src/Module/Admin/Logs/Settings.php:33 #, php-format msgid "The logfile '%s' is not writable. No logging possible" msgstr "" -#: src/Module/Admin/Logs/Settings.php:77 +#: src/Module/Admin/Logs/Settings.php:66 msgid "PHP log currently enabled." msgstr "" -#: src/Module/Admin/Logs/Settings.php:79 +#: src/Module/Admin/Logs/Settings.php:68 msgid "PHP log currently disabled." msgstr "" -#: src/Module/Admin/Logs/Settings.php:86 src/Module/BaseAdmin.php:102 -#: src/Module/BaseAdmin.php:103 +#: src/Module/Admin/Logs/Settings.php:75 src/Module/BaseAdmin.php:88 +#: src/Module/BaseAdmin.php:89 msgid "Logs" msgstr "" -#: src/Module/Admin/Logs/Settings.php:88 +#: src/Module/Admin/Logs/Settings.php:77 msgid "Clear" msgstr "" -#: src/Module/Admin/Logs/Settings.php:91 +#: src/Module/Admin/Logs/Settings.php:80 msgid "Enable Debugging" msgstr "" -#: src/Module/Admin/Logs/Settings.php:91 src/Module/Admin/Logs/Settings.php:92 -#: src/Module/Admin/Logs/Settings.php:93 src/Module/Admin/Site.php:478 -#: src/Module/Admin/Site.php:486 +#: src/Module/Admin/Logs/Settings.php:80 src/Module/Admin/Logs/Settings.php:81 +#: src/Module/Admin/Logs/Settings.php:82 src/Module/Admin/Site.php:470 +#: src/Module/Admin/Site.php:478 msgid "" "Read-only because it is set by an environment variable" msgstr "" -#: src/Module/Admin/Logs/Settings.php:92 +#: src/Module/Admin/Logs/Settings.php:81 msgid "Log file" msgstr "" -#: src/Module/Admin/Logs/Settings.php:92 +#: src/Module/Admin/Logs/Settings.php:81 msgid "" "Must be writable by web server. Relative to your Friendica top-level " "directory." msgstr "" -#: src/Module/Admin/Logs/Settings.php:93 +#: src/Module/Admin/Logs/Settings.php:82 msgid "Log level" msgstr "" -#: src/Module/Admin/Logs/Settings.php:95 +#: src/Module/Admin/Logs/Settings.php:84 msgid "PHP logging" msgstr "" -#: src/Module/Admin/Logs/Settings.php:96 +#: src/Module/Admin/Logs/Settings.php:85 msgid "" "To temporarily enable logging of PHP errors and warnings you can prepend the" " following to the index.php file of your installation. The filename set in " @@ -4220,398 +4287,407 @@ msgid "" "'display_errors' is to enable these options, set to '0' to disable them." msgstr "" -#: src/Module/Admin/Logs/View.php:70 +#: src/Module/Admin/Logs/View.php:58 #, php-format msgid "" "Error trying to open %1$s log file.upload_max_filesize
is set to %s (%s byte)"
msgstr ""
-#: src/Module/Admin/Site.php:497
+#: src/Module/Admin/Site.php:489
msgid "Maximum image length"
msgstr ""
-#: src/Module/Admin/Site.php:497
+#: src/Module/Admin/Site.php:489
msgid ""
"Maximum length in pixels of the longest side of uploaded images. Default is "
"-1, which means no limits."
msgstr ""
-#: src/Module/Admin/Site.php:498
+#: src/Module/Admin/Site.php:490
msgid "JPEG image quality"
msgstr ""
-#: src/Module/Admin/Site.php:498
+#: src/Module/Admin/Site.php:490
msgid ""
"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
"100, which is full quality."
msgstr ""
-#: src/Module/Admin/Site.php:500
+#: src/Module/Admin/Site.php:491
+msgid "Maximum media file size"
+msgstr ""
+
+#: src/Module/Admin/Site.php:491
+#, php-format
+msgid ""
+"Maximum size in bytes of uploaded media files. Default is 0, which means no limits. You can put k, m, or g behind the desired value for KiB, MiB, GiB, respectively.\n"
+"\t\t\t\t\t\t\t\t\t\t\t\t\tThe value of upload_max_filesize
in your PHP.ini
needs be set to at least the desired limit.\n"
+"\t\t\t\t\t\t\t\t\t\t\t\t\tCurrently upload_max_filesize
is set to %s (%s byte)"
+msgstr ""
+
+#: src/Module/Admin/Site.php:496
msgid "Register policy"
msgstr ""
-#: src/Module/Admin/Site.php:501
+#: src/Module/Admin/Site.php:497
msgid "Maximum Users"
msgstr ""
-#: src/Module/Admin/Site.php:501
+#: src/Module/Admin/Site.php:497
msgid ""
"If defined, the register policy is automatically closed when the given "
"number of users is reached and reopens the registry when the number drops "
@@ -4655,157 +4743,167 @@ msgid ""
"not when the policy is set to approval."
msgstr ""
-#: src/Module/Admin/Site.php:502
+#: src/Module/Admin/Site.php:498
msgid "Maximum Daily Registrations"
msgstr ""
-#: src/Module/Admin/Site.php:502
+#: src/Module/Admin/Site.php:498
msgid ""
"If registration is permitted above, this sets the maximum number of new user"
" registrations to accept per day. If register is set to closed, this "
"setting has no effect."
msgstr ""
-#: src/Module/Admin/Site.php:503
+#: src/Module/Admin/Site.php:499
msgid "Register text"
msgstr ""
-#: src/Module/Admin/Site.php:503
+#: src/Module/Admin/Site.php:499
msgid ""
"Will be displayed prominently on the registration page. You can use BBCode "
"here."
msgstr ""
-#: src/Module/Admin/Site.php:504
+#: src/Module/Admin/Site.php:500
msgid "Forbidden Nicknames"
msgstr ""
-#: src/Module/Admin/Site.php:504
+#: src/Module/Admin/Site.php:500
msgid ""
"Comma separated list of nicknames that are forbidden from registration. "
"Preset is a list of role names according RFC 2142."
msgstr ""
-#: src/Module/Admin/Site.php:505
+#: src/Module/Admin/Site.php:501
msgid "Accounts abandoned after x days"
msgstr ""
-#: src/Module/Admin/Site.php:505
+#: src/Module/Admin/Site.php:501
msgid ""
"Will not waste system resources polling external sites for abandonded "
"accounts. Enter 0 for no time limit."
msgstr ""
-#: src/Module/Admin/Site.php:506
+#: src/Module/Admin/Site.php:502
msgid "Allowed friend domains"
msgstr ""
-#: src/Module/Admin/Site.php:506
+#: src/Module/Admin/Site.php:502
msgid ""
"Comma separated list of domains which are allowed to establish friendships "
"with this site. Wildcards are accepted. Empty to allow any domains"
msgstr ""
-#: src/Module/Admin/Site.php:507
+#: src/Module/Admin/Site.php:503
msgid "Allowed email domains"
msgstr ""
-#: src/Module/Admin/Site.php:507
+#: src/Module/Admin/Site.php:503
msgid ""
"Comma separated list of domains which are allowed in email addresses for "
"registrations to this site. Wildcards are accepted. Empty to allow any "
"domains"
msgstr ""
-#: src/Module/Admin/Site.php:508
+#: src/Module/Admin/Site.php:504
+msgid "Disallowed email domains"
+msgstr ""
+
+#: src/Module/Admin/Site.php:504
+msgid ""
+"Comma separated list of domains which are rejected as email addresses for "
+"registrations to this site. Wildcards are accepted."
+msgstr ""
+
+#: src/Module/Admin/Site.php:505
msgid "No OEmbed rich content"
msgstr ""
-#: src/Module/Admin/Site.php:508
+#: src/Module/Admin/Site.php:505
msgid ""
"Don't show the rich content (e.g. embedded PDF), except from the domains "
"listed below."
msgstr ""
-#: src/Module/Admin/Site.php:509
+#: src/Module/Admin/Site.php:506
msgid "Trusted third-party domains"
msgstr ""
-#: src/Module/Admin/Site.php:509
+#: src/Module/Admin/Site.php:506
msgid ""
"Comma separated list of domains from which content is allowed to be embedded"
" in posts like with OEmbed. All sub-domains of the listed domains are "
"allowed as well."
msgstr ""
-#: src/Module/Admin/Site.php:510
+#: src/Module/Admin/Site.php:507
msgid "Block public"
msgstr ""
-#: src/Module/Admin/Site.php:510
+#: src/Module/Admin/Site.php:507
msgid ""
"Check to block public access to all otherwise public personal pages on this "
"site unless you are currently logged in."
msgstr ""
-#: src/Module/Admin/Site.php:511
+#: src/Module/Admin/Site.php:508
msgid "Force publish"
msgstr ""
-#: src/Module/Admin/Site.php:511
+#: src/Module/Admin/Site.php:508
msgid ""
"Check to force all profiles on this site to be listed in the site directory."
msgstr ""
-#: src/Module/Admin/Site.php:511
+#: src/Module/Admin/Site.php:508
msgid "Enabling this may violate privacy laws like the GDPR"
msgstr ""
-#: src/Module/Admin/Site.php:512
+#: src/Module/Admin/Site.php:509
msgid "Global directory URL"
msgstr ""
-#: src/Module/Admin/Site.php:512
+#: src/Module/Admin/Site.php:509
msgid ""
"URL to the global directory. If this is not set, the global directory is "
"completely unavailable to the application."
msgstr ""
-#: src/Module/Admin/Site.php:513
+#: src/Module/Admin/Site.php:510
msgid "Private posts by default for new users"
msgstr ""
-#: src/Module/Admin/Site.php:513
+#: src/Module/Admin/Site.php:510
msgid ""
"Set default post permissions for all new members to the default privacy "
"circle rather than public."
msgstr ""
-#: src/Module/Admin/Site.php:514
+#: src/Module/Admin/Site.php:511
msgid "Don't include post content in email notifications"
msgstr ""
-#: src/Module/Admin/Site.php:514
+#: src/Module/Admin/Site.php:511
msgid ""
"Don't include the content of a post/comment/private message/etc. in the "
"email notifications that are sent out from this site, as a privacy measure."
msgstr ""
-#: src/Module/Admin/Site.php:515
+#: src/Module/Admin/Site.php:512
msgid "Disallow public access to addons listed in the apps menu."
msgstr ""
-#: src/Module/Admin/Site.php:515
+#: src/Module/Admin/Site.php:512
msgid ""
"Checking this box will restrict addons listed in the apps menu to members "
"only."
msgstr ""
-#: src/Module/Admin/Site.php:516
+#: src/Module/Admin/Site.php:513
msgid "Don't embed private images in posts"
msgstr ""
-#: src/Module/Admin/Site.php:516
+#: src/Module/Admin/Site.php:513
msgid ""
"Don't replace locally-hosted private photos in posts with an embedded copy "
"of the image. This means that contacts who receive posts containing private "
@@ -4813,11 +4911,11 @@ msgid ""
"while."
msgstr ""
-#: src/Module/Admin/Site.php:517
+#: src/Module/Admin/Site.php:514
msgid "Explicit Content"
msgstr ""
-#: src/Module/Admin/Site.php:517
+#: src/Module/Admin/Site.php:514
msgid ""
"Set this to announce that your node is used mostly for explicit content that"
" might not be suited for minors. This information will be published in the "
@@ -4826,339 +4924,319 @@ msgid ""
"will be shown at the user registration page."
msgstr ""
-#: src/Module/Admin/Site.php:518
-msgid "Proxify external content"
-msgstr ""
-
-#: src/Module/Admin/Site.php:518
-msgid ""
-"Route external content via the proxy functionality. This is used for example"
-" for some OEmbed accesses and in some other rare cases."
-msgstr ""
-
-#: src/Module/Admin/Site.php:519
+#: src/Module/Admin/Site.php:515
msgid "Only local search"
msgstr ""
-#: src/Module/Admin/Site.php:519
+#: src/Module/Admin/Site.php:515
msgid ""
"Blocks search for users who are not logged in to prevent crawlers from "
"blocking your system."
msgstr ""
-#: src/Module/Admin/Site.php:520
+#: src/Module/Admin/Site.php:516
msgid "Blocked tags for trending tags"
msgstr ""
-#: src/Module/Admin/Site.php:520
+#: src/Module/Admin/Site.php:516
msgid ""
"Comma separated list of hashtags that shouldn't be displayed in the trending"
" tags."
msgstr ""
-#: src/Module/Admin/Site.php:521
+#: src/Module/Admin/Site.php:517
msgid "Cache contact avatars"
msgstr ""
-#: src/Module/Admin/Site.php:521
+#: src/Module/Admin/Site.php:517
msgid ""
"Locally store the avatar pictures of the contacts. This uses a lot of "
"storage space but it increases the performance."
msgstr ""
-#: src/Module/Admin/Site.php:522
+#: src/Module/Admin/Site.php:518
msgid "Allow Users to set remote_self"
msgstr ""
-#: src/Module/Admin/Site.php:522
+#: src/Module/Admin/Site.php:518
msgid ""
"With checking this, every user is allowed to mark every contact as a "
"remote_self in the repair contact dialog. Setting this flag on a contact "
"causes mirroring every posting of that contact in the users stream."
msgstr ""
-#: src/Module/Admin/Site.php:523
+#: src/Module/Admin/Site.php:519
msgid "Allow Users to set up relay channels"
msgstr ""
-#: src/Module/Admin/Site.php:523
+#: src/Module/Admin/Site.php:519
msgid ""
"If enabled, it is possible to create relay users that are used to reshare "
"content based on user defined channels."
msgstr ""
-#: src/Module/Admin/Site.php:524
+#: src/Module/Admin/Site.php:520
msgid "Adjust the feed poll frequency"
msgstr ""
-#: src/Module/Admin/Site.php:524
+#: src/Module/Admin/Site.php:520
msgid "Automatically detect and set the best feed poll frequency."
msgstr ""
-#: src/Module/Admin/Site.php:525
+#: src/Module/Admin/Site.php:521
msgid "Minimum poll interval"
msgstr ""
-#: src/Module/Admin/Site.php:525
+#: src/Module/Admin/Site.php:521
msgid ""
"Minimal distance in minutes between two polls for mail and feed contacts. "
"Reasonable values are between 1 and 59."
msgstr ""
-#: src/Module/Admin/Site.php:526
+#: src/Module/Admin/Site.php:522
msgid "Enable multiple registrations"
msgstr ""
-#: src/Module/Admin/Site.php:526
+#: src/Module/Admin/Site.php:522
msgid "Enable users to register additional accounts for use as pages."
msgstr ""
-#: src/Module/Admin/Site.php:527
+#: src/Module/Admin/Site.php:523
msgid "Enable OpenID"
msgstr ""
-#: src/Module/Admin/Site.php:527
+#: src/Module/Admin/Site.php:523
msgid "Enable OpenID support for registration and logins."
msgstr ""
-#: src/Module/Admin/Site.php:528
+#: src/Module/Admin/Site.php:524
msgid "Enable full name check"
msgstr ""
-#: src/Module/Admin/Site.php:528
+#: src/Module/Admin/Site.php:524
msgid ""
"Prevents users from registering with a display name with fewer than two "
"parts separated by spaces."
msgstr ""
-#: src/Module/Admin/Site.php:529
+#: src/Module/Admin/Site.php:525
msgid "Email administrators on new registration"
msgstr ""
-#: src/Module/Admin/Site.php:529
+#: src/Module/Admin/Site.php:525
msgid ""
"If enabled and the system is set to an open registration, an email for each "
"new registration is sent to the administrators."
msgstr ""
-#: src/Module/Admin/Site.php:530
+#: src/Module/Admin/Site.php:526
msgid "Community pages for visitors"
msgstr ""
-#: src/Module/Admin/Site.php:530
+#: src/Module/Admin/Site.php:526
msgid ""
"Which community pages should be available for visitors. Local users always "
"see both pages."
msgstr ""
-#: src/Module/Admin/Site.php:531
+#: src/Module/Admin/Site.php:527
msgid "Posts per user on community page"
msgstr ""
-#: src/Module/Admin/Site.php:531
+#: src/Module/Admin/Site.php:527
msgid ""
"The maximum number of posts per user on the local community page. This is "
"useful, when a single user floods the local community page."
msgstr ""
-#: src/Module/Admin/Site.php:532
+#: src/Module/Admin/Site.php:528
msgid "Posts per server on community page"
msgstr ""
-#: src/Module/Admin/Site.php:532
+#: src/Module/Admin/Site.php:528
msgid ""
"The maximum number of posts per server on the global community page. This is"
" useful, when posts from a single server flood the global community page."
msgstr ""
-#: src/Module/Admin/Site.php:534
+#: src/Module/Admin/Site.php:530
msgid "Enable Mail support"
msgstr ""
-#: src/Module/Admin/Site.php:534
+#: src/Module/Admin/Site.php:530
msgid ""
"Enable built-in mail support to poll IMAP folders and to reply via mail."
msgstr ""
-#: src/Module/Admin/Site.php:535
+#: src/Module/Admin/Site.php:531
msgid ""
"Mail support can't be enabled because the PHP IMAP module is not installed."
msgstr ""
-#: src/Module/Admin/Site.php:536
-msgid "Enable OStatus support"
-msgstr ""
-
-#: src/Module/Admin/Site.php:536
-msgid ""
-"Enable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
-"communications in OStatus are public."
-msgstr ""
-
-#: src/Module/Admin/Site.php:538
+#: src/Module/Admin/Site.php:533
msgid ""
"Diaspora support can't be enabled because Friendica was installed into a sub"
" directory."
msgstr ""
-#: src/Module/Admin/Site.php:539
+#: src/Module/Admin/Site.php:534
msgid "Enable Diaspora support"
msgstr ""
-#: src/Module/Admin/Site.php:539
+#: src/Module/Admin/Site.php:534
msgid ""
"Enable built-in Diaspora network compatibility for communicating with "
"diaspora servers."
msgstr ""
-#: src/Module/Admin/Site.php:540
+#: src/Module/Admin/Site.php:535
msgid "Verify SSL"
msgstr ""
-#: src/Module/Admin/Site.php:540
+#: src/Module/Admin/Site.php:535
msgid ""
"If you wish, you can turn on strict certificate checking. This will mean you"
" cannot connect (at all) to self-signed SSL sites."
msgstr ""
-#: src/Module/Admin/Site.php:541
+#: src/Module/Admin/Site.php:536
msgid "Proxy user"
msgstr ""
-#: src/Module/Admin/Site.php:541
+#: src/Module/Admin/Site.php:536
msgid "User name for the proxy server."
msgstr ""
-#: src/Module/Admin/Site.php:542
+#: src/Module/Admin/Site.php:537
msgid "Proxy URL"
msgstr ""
-#: src/Module/Admin/Site.php:542
+#: src/Module/Admin/Site.php:537
msgid ""
"If you want to use a proxy server that Friendica should use to connect to "
"the network, put the URL of the proxy here."
msgstr ""
-#: src/Module/Admin/Site.php:543
+#: src/Module/Admin/Site.php:538
msgid "Network timeout"
msgstr ""
-#: src/Module/Admin/Site.php:543
+#: src/Module/Admin/Site.php:538
msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
msgstr ""
-#: src/Module/Admin/Site.php:544
+#: src/Module/Admin/Site.php:539
msgid "Maximum Load Average"
msgstr ""
-#: src/Module/Admin/Site.php:544
+#: src/Module/Admin/Site.php:539
#, php-format
msgid ""
"Maximum system load before delivery and poll processes are deferred - "
"default %d."
msgstr ""
-#: src/Module/Admin/Site.php:545
+#: src/Module/Admin/Site.php:540
msgid "Minimal Memory"
msgstr ""
-#: src/Module/Admin/Site.php:545
+#: src/Module/Admin/Site.php:540
msgid ""
"Minimal free memory in MB for the worker. Needs access to /proc/meminfo - "
"default 0 (deactivated)."
msgstr ""
-#: src/Module/Admin/Site.php:546
+#: src/Module/Admin/Site.php:541
msgid "Periodically optimize tables"
msgstr ""
-#: src/Module/Admin/Site.php:546
+#: src/Module/Admin/Site.php:541
msgid "Periodically optimize tables like the cache and the workerqueue"
msgstr ""
-#: src/Module/Admin/Site.php:548
+#: src/Module/Admin/Site.php:543
msgid "Discover followers/followings from contacts"
msgstr ""
-#: src/Module/Admin/Site.php:548
+#: src/Module/Admin/Site.php:543
msgid ""
"If enabled, contacts are checked for their followers and following contacts."
msgstr ""
-#: src/Module/Admin/Site.php:549
+#: src/Module/Admin/Site.php:544
msgid "None - deactivated"
msgstr ""
-#: src/Module/Admin/Site.php:550
+#: src/Module/Admin/Site.php:545
msgid ""
"Local contacts - contacts of our local contacts are discovered for their "
"followers/followings."
msgstr ""
-#: src/Module/Admin/Site.php:551
+#: src/Module/Admin/Site.php:546
msgid ""
"Interactors - contacts of our local contacts and contacts who interacted on "
"locally visible postings are discovered for their followers/followings."
msgstr ""
-#: src/Module/Admin/Site.php:553
+#: src/Module/Admin/Site.php:548
msgid "Only update contacts/servers with local data"
msgstr ""
-#: src/Module/Admin/Site.php:553
+#: src/Module/Admin/Site.php:548
msgid ""
"If enabled, the system will only look for changes in contacts and servers "
"that engaged on this system by either being in a contact list of a user or "
"when posts or comments exists from the contact on this system."
msgstr ""
-#: src/Module/Admin/Site.php:554
+#: src/Module/Admin/Site.php:549
msgid "Synchronize the contacts with the directory server"
msgstr ""
-#: src/Module/Admin/Site.php:554
+#: src/Module/Admin/Site.php:549
msgid ""
"if enabled, the system will check periodically for new contacts on the "
"defined directory server."
msgstr ""
-#: src/Module/Admin/Site.php:556
+#: src/Module/Admin/Site.php:551
msgid "Discover contacts from other servers"
msgstr ""
-#: src/Module/Admin/Site.php:556
+#: src/Module/Admin/Site.php:551
msgid ""
"Periodically query other servers for contacts and servers that they know of."
" The system queries Friendica, Mastodon and Hubzilla servers. Keep it "
"deactivated on small machines to decrease the database size and load."
msgstr ""
-#: src/Module/Admin/Site.php:557
+#: src/Module/Admin/Site.php:552
msgid "Days between requery"
msgstr ""
-#: src/Module/Admin/Site.php:557
+#: src/Module/Admin/Site.php:552
msgid ""
"Number of days after which a server is requeried for their contacts and "
"servers it knows of. This is only used when the discovery is activated."
msgstr ""
-#: src/Module/Admin/Site.php:558
+#: src/Module/Admin/Site.php:553
msgid "Search the local directory"
msgstr ""
-#: src/Module/Admin/Site.php:558
+#: src/Module/Admin/Site.php:553
msgid ""
"Search the local directory instead of the global directory. When searching "
"locally, every search will be executed on the global directory in the "
"background. This improves the search results when the search is repeated."
msgstr ""
-#: src/Module/Admin/Site.php:560
+#: src/Module/Admin/Site.php:555
msgid "Publish server information"
msgstr ""
-#: src/Module/Admin/Site.php:560
+#: src/Module/Admin/Site.php:555
msgid ""
"If enabled, general server and usage data will be published. The data "
"contains the name and version of the server, number of users with public "
@@ -5166,50 +5244,50 @@ msgid ""
" href=\"http://the-federation.info/\">the-federation.info for details."
msgstr ""
-#: src/Module/Admin/Site.php:562
+#: src/Module/Admin/Site.php:557
msgid "Check upstream version"
msgstr ""
-#: src/Module/Admin/Site.php:562
+#: src/Module/Admin/Site.php:557
msgid ""
"Enables checking for new Friendica versions at github. If there is a new "
"version, you will be informed in the admin panel overview."
msgstr ""
-#: src/Module/Admin/Site.php:563
+#: src/Module/Admin/Site.php:558
msgid "Suppress Tags"
msgstr ""
-#: src/Module/Admin/Site.php:563
+#: src/Module/Admin/Site.php:558
msgid "Suppress showing a list of hashtags at the end of the posting."
msgstr ""
-#: src/Module/Admin/Site.php:564
+#: src/Module/Admin/Site.php:559
msgid "Clean database"
msgstr ""
-#: src/Module/Admin/Site.php:564
+#: src/Module/Admin/Site.php:559
msgid ""
"Remove old remote items, orphaned database records and old content from some"
" other helper tables."
msgstr ""
-#: src/Module/Admin/Site.php:565
+#: src/Module/Admin/Site.php:560
msgid "Lifespan of remote items"
msgstr ""
-#: src/Module/Admin/Site.php:565
+#: src/Module/Admin/Site.php:560
msgid ""
"When the database cleanup is enabled, this defines the days after which "
"remote items will be deleted. Own items, and marked or filed items are "
"always kept. 0 disables this behaviour."
msgstr ""
-#: src/Module/Admin/Site.php:566
+#: src/Module/Admin/Site.php:561
msgid "Lifespan of unclaimed items"
msgstr ""
-#: src/Module/Admin/Site.php:566
+#: src/Module/Admin/Site.php:561
msgid ""
"When the database cleanup is enabled, this defines the days after which "
"unclaimed remote items (mostly content from the relay) will be deleted. "
@@ -5217,175 +5295,184 @@ msgid ""
"items if set to 0."
msgstr ""
-#: src/Module/Admin/Site.php:567
+#: src/Module/Admin/Site.php:562
msgid "Lifespan of raw conversation data"
msgstr ""
-#: src/Module/Admin/Site.php:567
+#: src/Module/Admin/Site.php:562
msgid ""
-"The conversation data is used for ActivityPub and OStatus, as well as for "
-"debug purposes. It should be safe to remove it after 14 days, default is 90 "
-"days."
+"The conversation data is used for ActivityPub, as well as for debug "
+"purposes. It should be safe to remove it after 14 days, default is 90 days."
msgstr ""
-#: src/Module/Admin/Site.php:568
+#: src/Module/Admin/Site.php:563
msgid "Maximum numbers of comments per post"
msgstr ""
-#: src/Module/Admin/Site.php:568
+#: src/Module/Admin/Site.php:563
msgid "How much comments should be shown for each post? Default value is 100."
msgstr ""
-#: src/Module/Admin/Site.php:569
+#: src/Module/Admin/Site.php:564
msgid "Maximum numbers of comments per post on the display page"
msgstr ""
-#: src/Module/Admin/Site.php:569
+#: src/Module/Admin/Site.php:564
msgid ""
"How many comments should be shown on the single view for each post? Default "
"value is 1000."
msgstr ""
-#: src/Module/Admin/Site.php:570
+#: src/Module/Admin/Site.php:565
msgid "Items per page"
msgstr ""
-#: src/Module/Admin/Site.php:570
+#: src/Module/Admin/Site.php:565
msgid ""
"Number of items per page in stream pages (network, community, "
"profile/contact statuses, search)."
msgstr ""
-#: src/Module/Admin/Site.php:571
+#: src/Module/Admin/Site.php:566
msgid "Items per page for mobile devices"
msgstr ""
-#: src/Module/Admin/Site.php:571
+#: src/Module/Admin/Site.php:566
msgid ""
"Number of items per page in stream pages (network, community, "
"profile/contact statuses, search) for mobile devices."
msgstr ""
-#: src/Module/Admin/Site.php:572
+#: src/Module/Admin/Site.php:567
msgid "Temp path"
msgstr ""
-#: src/Module/Admin/Site.php:572
+#: src/Module/Admin/Site.php:567
msgid ""
"If you have a restricted system where the webserver can't access the system "
"temp path, enter another path here."
msgstr ""
-#: src/Module/Admin/Site.php:573
+#: src/Module/Admin/Site.php:568
msgid "Only search in tags"
msgstr ""
-#: src/Module/Admin/Site.php:573
+#: src/Module/Admin/Site.php:568
msgid "On large systems the text search can slow down the system extremely."
msgstr ""
-#: src/Module/Admin/Site.php:574
+#: src/Module/Admin/Site.php:569
+msgid "Limited search scope"
+msgstr ""
+
+#: src/Module/Admin/Site.php:569
+msgid ""
+"If enabled, searches will only be performed in the data used for the "
+"channels and not in all posts."
+msgstr ""
+
+#: src/Module/Admin/Site.php:570
msgid "Maximum age of items in the search table"
msgstr ""
-#: src/Module/Admin/Site.php:574
+#: src/Module/Admin/Site.php:570
msgid ""
"Maximum age of items in the search table in days. Lower values will increase"
" the performance and reduce disk usage. 0 means no age restriction."
msgstr ""
-#: src/Module/Admin/Site.php:575
+#: src/Module/Admin/Site.php:571
msgid "Generate counts per contact circle when calculating network count"
msgstr ""
-#: src/Module/Admin/Site.php:575
+#: src/Module/Admin/Site.php:571
msgid ""
"On systems with users that heavily use contact circles the query can be very"
" expensive."
msgstr ""
-#: src/Module/Admin/Site.php:576
+#: src/Module/Admin/Site.php:572
msgid "Process \"view\" activities"
msgstr ""
-#: src/Module/Admin/Site.php:576
+#: src/Module/Admin/Site.php:572
msgid ""
"\"view\" activities are mostly geberated by Peertube systems. Per default "
"they are not processed for performance reasons. Only activate this option on"
" performant system."
msgstr ""
-#: src/Module/Admin/Site.php:577
+#: src/Module/Admin/Site.php:573
msgid "Days, after which a contact is archived"
msgstr ""
-#: src/Module/Admin/Site.php:577
+#: src/Module/Admin/Site.php:573
msgid ""
"Number of days that we try to deliver content or to update the contact data "
"before we archive a contact."
msgstr ""
-#: src/Module/Admin/Site.php:579
+#: src/Module/Admin/Site.php:575
msgid "Maximum number of parallel workers"
msgstr ""
-#: src/Module/Admin/Site.php:579
+#: src/Module/Admin/Site.php:575
#, php-format
msgid ""
"On shared hosters set this to %d. On larger systems, values of %d are great."
" Default value is %d."
msgstr ""
-#: src/Module/Admin/Site.php:580
+#: src/Module/Admin/Site.php:576
msgid "Maximum load for workers"
msgstr ""
-#: src/Module/Admin/Site.php:580
+#: src/Module/Admin/Site.php:576
msgid "Maximum load that causes a cooldown before each worker function call."
msgstr ""
-#: src/Module/Admin/Site.php:581
+#: src/Module/Admin/Site.php:577
msgid "Enable fastlane"
msgstr ""
-#: src/Module/Admin/Site.php:581
+#: src/Module/Admin/Site.php:577
msgid ""
"When enabed, the fastlane mechanism starts an additional worker if processes"
" with higher priority are blocked by processes of lower priority."
msgstr ""
-#: src/Module/Admin/Site.php:582
+#: src/Module/Admin/Site.php:578
msgid "Decoupled receiver"
msgstr ""
-#: src/Module/Admin/Site.php:582
+#: src/Module/Admin/Site.php:578
msgid ""
"Decouple incoming ActivityPub posts by processing them in the background via"
" a worker process. Only enable this on fast systems."
msgstr ""
-#: src/Module/Admin/Site.php:583
+#: src/Module/Admin/Site.php:579
msgid "Cron interval"
msgstr ""
-#: src/Module/Admin/Site.php:583
+#: src/Module/Admin/Site.php:579
msgid "Minimal period in minutes between two calls of the \"Cron\" worker job."
msgstr ""
-#: src/Module/Admin/Site.php:584
+#: src/Module/Admin/Site.php:580
msgid "Worker defer limit"
msgstr ""
-#: src/Module/Admin/Site.php:584
+#: src/Module/Admin/Site.php:580
msgid ""
"Per default the systems tries delivering for 15 times before dropping it."
msgstr ""
-#: src/Module/Admin/Site.php:585
+#: src/Module/Admin/Site.php:581
msgid "Worker fetch limit"
msgstr ""
-#: src/Module/Admin/Site.php:585
+#: src/Module/Admin/Site.php:581
msgid ""
"Number of worker tasks that are fetched in a single query. Higher values "
"should increase the performance, too high values will mostly likely decrease"
@@ -5393,214 +5480,214 @@ msgid ""
"system."
msgstr ""
-#: src/Module/Admin/Site.php:587
+#: src/Module/Admin/Site.php:583
msgid "Direct relay transfer"
msgstr ""
-#: src/Module/Admin/Site.php:587
+#: src/Module/Admin/Site.php:583
msgid ""
"Enables the direct transfer to other servers without using the relay servers"
msgstr ""
-#: src/Module/Admin/Site.php:588
+#: src/Module/Admin/Site.php:584
msgid "Relay scope"
msgstr ""
-#: src/Module/Admin/Site.php:588
+#: src/Module/Admin/Site.php:584
msgid ""
"Can be \"all\" or \"tags\". \"all\" means that every public post should be "
"received. \"tags\" means that only posts with selected tags should be "
"received."
msgstr ""
-#: src/Module/Admin/Site.php:588 src/Module/Contact/Profile.php:309
-#: src/Module/Settings/TwoFactor/Index.php:146
+#: src/Module/Admin/Site.php:584 src/Module/Contact/Profile.php:314
+#: src/Module/Settings/TwoFactor/Index.php:132
msgid "Disabled"
msgstr ""
-#: src/Module/Admin/Site.php:588
+#: src/Module/Admin/Site.php:584
msgid "all"
msgstr ""
-#: src/Module/Admin/Site.php:588
+#: src/Module/Admin/Site.php:584
msgid "tags"
msgstr ""
-#: src/Module/Admin/Site.php:589
+#: src/Module/Admin/Site.php:585
msgid "Server tags"
msgstr ""
-#: src/Module/Admin/Site.php:589
+#: src/Module/Admin/Site.php:585
msgid "Comma separated list of tags for the \"tags\" subscription."
msgstr ""
-#: src/Module/Admin/Site.php:590
+#: src/Module/Admin/Site.php:586
msgid "Deny Server tags"
msgstr ""
-#: src/Module/Admin/Site.php:590
+#: src/Module/Admin/Site.php:586
msgid "Comma separated list of tags that are rejected."
msgstr ""
-#: src/Module/Admin/Site.php:591
+#: src/Module/Admin/Site.php:587
msgid "Maximum amount of tags"
msgstr ""
-#: src/Module/Admin/Site.php:591
+#: src/Module/Admin/Site.php:587
msgid ""
"Maximum amount of tags in a post before it is rejected as spam. The post has"
" to contain at least one link. Posts from subscribed accounts will not be "
"rejected."
msgstr ""
-#: src/Module/Admin/Site.php:592
+#: src/Module/Admin/Site.php:588
msgid "Allow user tags"
msgstr ""
-#: src/Module/Admin/Site.php:592
+#: src/Module/Admin/Site.php:588
msgid ""
"If enabled, the tags from the saved searches will used for the \"tags\" "
"subscription in addition to the \"relay_server_tags\"."
msgstr ""
-#: src/Module/Admin/Site.php:593
+#: src/Module/Admin/Site.php:589
msgid "Deny undetected languages"
msgstr ""
-#: src/Module/Admin/Site.php:593
+#: src/Module/Admin/Site.php:589
msgid "If enabled, posts with undetected languages will be rejected."
msgstr ""
-#: src/Module/Admin/Site.php:594
+#: src/Module/Admin/Site.php:590
msgid "Language Quality"
msgstr ""
-#: src/Module/Admin/Site.php:594
+#: src/Module/Admin/Site.php:590
msgid "The minimum language quality that is required to accept the post."
msgstr ""
-#: src/Module/Admin/Site.php:595
+#: src/Module/Admin/Site.php:591
msgid "Number of languages for the language detection"
msgstr ""
-#: src/Module/Admin/Site.php:595
+#: src/Module/Admin/Site.php:591
msgid ""
"The system detects a list of languages per post. Only if the desired "
"languages are in the list, the message will be accepted. The higher the "
"number, the more posts will be falsely detected."
msgstr ""
-#: src/Module/Admin/Site.php:597
+#: src/Module/Admin/Site.php:593
msgid "Maximum age of channel"
msgstr ""
-#: src/Module/Admin/Site.php:597
+#: src/Module/Admin/Site.php:593
msgid ""
"This defines the maximum age in hours of items that should be displayed in "
"channels. This affects the channel performance."
msgstr ""
-#: src/Module/Admin/Site.php:598
+#: src/Module/Admin/Site.php:594
msgid "Maximum number of channel posts"
msgstr ""
-#: src/Module/Admin/Site.php:598
+#: src/Module/Admin/Site.php:594
msgid ""
"For performance reasons, the channels use a dedicated table to store "
"content. The higher the value the slower the channels."
msgstr ""
-#: src/Module/Admin/Site.php:599
+#: src/Module/Admin/Site.php:595
msgid "Interaction score days"
msgstr ""
-#: src/Module/Admin/Site.php:599
+#: src/Module/Admin/Site.php:595
msgid "Number of days that are used to calculate the interaction score."
msgstr ""
-#: src/Module/Admin/Site.php:600
+#: src/Module/Admin/Site.php:596
msgid "Maximum number of posts per author"
msgstr ""
-#: src/Module/Admin/Site.php:600
+#: src/Module/Admin/Site.php:596
msgid ""
"Maximum number of posts per page by author if the contact frequency is set "
"to \"Display only few posts\". If there are more posts, then the post with "
"the most interactions will be displayed."
msgstr ""
-#: src/Module/Admin/Site.php:601
+#: src/Module/Admin/Site.php:597
msgid "Sharer interaction days"
msgstr ""
-#: src/Module/Admin/Site.php:601
+#: src/Module/Admin/Site.php:597
msgid ""
"Number of days of the last interaction that are used to define which sharers"
" are used for the \"sharers of sharers\" channel."
msgstr ""
-#: src/Module/Admin/Site.php:604
+#: src/Module/Admin/Site.php:600
msgid "Start Relocation"
msgstr ""
-#: src/Module/Admin/Storage.php:46
+#: src/Module/Admin/Storage.php:32
#, php-format
msgid "Storage backend, %s is invalid."
msgstr ""
-#: src/Module/Admin/Storage.php:73
+#: src/Module/Admin/Storage.php:59
#, php-format
msgid "Storage backend %s error: %s"
msgstr ""
-#: src/Module/Admin/Storage.php:84 src/Module/Admin/Storage.php:87
+#: src/Module/Admin/Storage.php:70 src/Module/Admin/Storage.php:73
msgid "Invalid storage backend setting value."
msgstr ""
-#: src/Module/Admin/Storage.php:139
+#: src/Module/Admin/Storage.php:125
msgid "Current Storage Backend"
msgstr ""
-#: src/Module/Admin/Storage.php:140
+#: src/Module/Admin/Storage.php:126
msgid "Storage Configuration"
msgstr ""
-#: src/Module/Admin/Storage.php:141 src/Module/BaseAdmin.php:91
+#: src/Module/Admin/Storage.php:127 src/Module/BaseAdmin.php:77
msgid "Storage"
msgstr ""
-#: src/Module/Admin/Storage.php:143
+#: src/Module/Admin/Storage.php:129
msgid "Save & Use storage backend"
msgstr ""
-#: src/Module/Admin/Storage.php:144
+#: src/Module/Admin/Storage.php:130
msgid "Use storage backend"
msgstr ""
-#: src/Module/Admin/Storage.php:145
+#: src/Module/Admin/Storage.php:131
msgid "Save & Reload"
msgstr ""
-#: src/Module/Admin/Storage.php:146
+#: src/Module/Admin/Storage.php:132
msgid "This backend doesn't have custom settings"
msgstr ""
-#: src/Module/Admin/Storage.php:148
+#: src/Module/Admin/Storage.php:134
msgid ""
"Changing the current backend is prohibited because it is set by an "
"environment variable"
msgstr ""
-#: src/Module/Admin/Storage.php:150
+#: src/Module/Admin/Storage.php:136
msgid "Database (legacy)"
msgstr ""
-#: src/Module/Admin/Summary.php:55
+#: src/Module/Admin/Summary.php:41
#, php-format
msgid "Template engine (%s) error: %s"
msgstr ""
-#: src/Module/Admin/Summary.php:59
+#: src/Module/Admin/Summary.php:45
#, php-format
msgid ""
"Your DB still runs with MyISAM tables. You should change the engine type to "
@@ -5611,7 +5698,7 @@ msgid ""
" an automatic conversion.The server domain pattern syntax is case-insensitive shell wildcard, comprising the following special characters:
\n" "This file can be downloaded from the /friendica
path of any "
"Friendica server.
debug.store_source
config key is set in "
"config/local.config.php
for future items to have sources."
msgstr ""
-#: src/Module/Moderation/Item/Source.php:92
+#: src/Module/Moderation/Item/Source.php:84
msgid "Item Guid"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:95
+#: src/Module/Moderation/Report/Create.php:81
msgid "Contact not found or their server is already blocked on this node."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:136
+#: src/Module/Moderation/Report/Create.php:122
msgid "Please login to access this page."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:165
-#: src/Module/Moderation/Report/Create.php:180
-#: src/Module/Moderation/Report/Create.php:208
-#: src/Module/Moderation/Report/Create.php:260
-#: src/Module/Moderation/Report/Create.php:279
+#: src/Module/Moderation/Report/Create.php:151
+#: src/Module/Moderation/Report/Create.php:166
+#: src/Module/Moderation/Report/Create.php:194
+#: src/Module/Moderation/Report/Create.php:246
+#: src/Module/Moderation/Report/Create.php:265
msgid "Create Moderation Report"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:166
+#: src/Module/Moderation/Report/Create.php:152
msgid "Pick Contact"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:167
+#: src/Module/Moderation/Report/Create.php:153
msgid ""
"Please enter below the contact address or profile URL you would like to "
"create a moderation report about."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:171
+#: src/Module/Moderation/Report/Create.php:157
msgid "Contact address/URL"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:181
+#: src/Module/Moderation/Report/Create.php:167
msgid "Pick Category"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:182
+#: src/Module/Moderation/Report/Create.php:168
msgid "Please pick below the category of your report."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:186
-#: src/Module/Moderation/Report/Create.php:311
+#: src/Module/Moderation/Report/Create.php:172
+#: src/Module/Moderation/Report/Create.php:297
msgid "Spam"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:186
+#: src/Module/Moderation/Report/Create.php:172
msgid ""
"This contact is publishing many repeated/overly long posts/replies or "
"advertising their product/websites in otherwise irrelevant conversations."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:187
-#: src/Module/Moderation/Report/Create.php:312
+#: src/Module/Moderation/Report/Create.php:173
+#: src/Module/Moderation/Report/Create.php:298
msgid "Illegal Content"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:187
+#: src/Module/Moderation/Report/Create.php:173
msgid ""
"This contact is publishing content that is considered illegal in this node's"
" hosting juridiction."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:188
-#: src/Module/Moderation/Report/Create.php:313
+#: src/Module/Moderation/Report/Create.php:174
+#: src/Module/Moderation/Report/Create.php:299
msgid "Community Safety"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:188
+#: src/Module/Moderation/Report/Create.php:174
msgid ""
"This contact aggravated you or other people, by being provocative or "
"insensitive, intentionally or not. This includes disclosing people's private"
@@ -8371,12 +8454,12 @@ msgid ""
"replies."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:189
-#: src/Module/Moderation/Report/Create.php:314
+#: src/Module/Moderation/Report/Create.php:175
+#: src/Module/Moderation/Report/Create.php:300
msgid "Unwanted Content/Behavior"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:189
+#: src/Module/Moderation/Report/Create.php:175
msgid ""
"This contact has repeatedly published content irrelevant to the node's theme"
" or is openly criticizing the node's administration/moderation without "
@@ -8384,89 +8467,89 @@ msgid ""
"nitpicking on a sensitive topic."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:190
-#: src/Module/Moderation/Report/Create.php:315
+#: src/Module/Moderation/Report/Create.php:176
+#: src/Module/Moderation/Report/Create.php:301
msgid "Rules Violation"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:190
+#: src/Module/Moderation/Report/Create.php:176
msgid ""
"This contact violated one or more rules of this node. You will be able to "
"pick which one(s) in the next step."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:191
+#: src/Module/Moderation/Report/Create.php:177
msgid ""
"Please elaborate below why you submitted this report. The more details you "
"provide, the better your report can be handled."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:193
+#: src/Module/Moderation/Report/Create.php:179
msgid "Additional Information"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:193
+#: src/Module/Moderation/Report/Create.php:179
msgid ""
"Please provide any additional information relevant to this particular "
"report. You will be able to attach posts by this contact in the next step, "
"but any context is welcome."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:209
+#: src/Module/Moderation/Report/Create.php:195
msgid "Pick Rules"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:210
+#: src/Module/Moderation/Report/Create.php:196
msgid "Please pick below the node rules you believe this contact violated."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:261
+#: src/Module/Moderation/Report/Create.php:247
msgid "Pick Posts"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:262
+#: src/Module/Moderation/Report/Create.php:248
msgid "Please optionally pick posts to attach to your report."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:281
+#: src/Module/Moderation/Report/Create.php:267
msgid "Submit Report"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:282
+#: src/Module/Moderation/Report/Create.php:268
msgid "Further Action"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:283
+#: src/Module/Moderation/Report/Create.php:269
msgid ""
"You can also perform one of the following action on the contact you "
"reported:"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:291
+#: src/Module/Moderation/Report/Create.php:277
msgid "Nothing"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:292
+#: src/Module/Moderation/Report/Create.php:278
msgid "Collapse contact"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:292
+#: src/Module/Moderation/Report/Create.php:278
msgid ""
"Their posts and replies will keep appearing in your Network page but their "
"content will be collapsed by default."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:293
+#: src/Module/Moderation/Report/Create.php:279
msgid ""
"Their posts won't appear in your Network page anymore, but their replies can"
" appear in forum threads. They still can follow you."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:294
+#: src/Module/Moderation/Report/Create.php:280
msgid "Block contact"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:294
+#: src/Module/Moderation/Report/Create.php:280
msgid ""
"Their posts won't appear in your Network page anymore, but their replies can"
" appear in forum threads, with their content collapsed by default. They "
@@ -8474,723 +8557,694 @@ msgid ""
"means."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:297
+#: src/Module/Moderation/Report/Create.php:283
msgid "Forward report"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:297
+#: src/Module/Moderation/Report/Create.php:283
msgid "Would you ike to forward this report to the remote server?"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:330
+#: src/Module/Moderation/Report/Create.php:316
msgid "1. Pick a contact"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:331
+#: src/Module/Moderation/Report/Create.php:317
msgid "2. Pick a category"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:332
+#: src/Module/Moderation/Report/Create.php:318
msgid "2a. Pick rules"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:333
+#: src/Module/Moderation/Report/Create.php:319
msgid "2b. Add comment"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:334
+#: src/Module/Moderation/Report/Create.php:320
msgid "3. Pick posts"
msgstr ""
-#: src/Module/Moderation/Reports.php:90
+#: src/Module/Moderation/Reports.php:97
msgid "List of reports"
msgstr ""
-#: src/Module/Moderation/Reports.php:91
+#: src/Module/Moderation/Reports.php:98
msgid "This page display reports created by our or remote users."
msgstr ""
-#: src/Module/Moderation/Reports.php:92
+#: src/Module/Moderation/Reports.php:99
msgid "No report exists at this node."
msgstr ""
-#: src/Module/Moderation/Reports.php:95
+#: src/Module/Moderation/Reports.php:102
msgid "Category"
msgstr ""
-#: src/Module/Moderation/Reports.php:101
+#: src/Module/Moderation/Reports.php:106
#, php-format
msgid "%s total report"
msgid_plural "%s total reports"
msgstr[0] ""
msgstr[1] ""
-#: src/Module/Moderation/Reports.php:104
+#: src/Module/Moderation/Reports.php:109
msgid "URL of the reported contact."
msgstr ""
-#: src/Module/Moderation/Summary.php:57 src/Module/Settings/Account.php:431
+#: src/Module/Moderation/Summary.php:43 src/Module/Settings/Account.php:422
msgid "Channel Relay"
msgstr ""
-#: src/Module/Moderation/Summary.php:77
+#: src/Module/Moderation/Summary.php:63
msgid "Registered users"
msgstr "Registreeritud kasutajad"
-#: src/Module/Moderation/Summary.php:79
+#: src/Module/Moderation/Summary.php:65
msgid "Pending registrations"
msgstr "Ootel registreeringud"
-#: src/Module/Moderation/Users/Active.php:43
-#: src/Module/Moderation/Users/Index.php:43
+#: src/Module/Moderation/Users/Active.php:29
+#: src/Module/Moderation/Users/Index.php:29
#, php-format
msgid "%s user blocked"
msgid_plural "%s users blocked"
msgstr[0] ""
msgstr[1] ""
-#: src/Module/Moderation/Users/Active.php:51
-#: src/Module/Moderation/Users/Active.php:85
-#: src/Module/Moderation/Users/Blocked.php:51
-#: src/Module/Moderation/Users/Blocked.php:85
-#: src/Module/Moderation/Users/Index.php:58
-#: src/Module/Moderation/Users/Index.php:92
+#: src/Module/Moderation/Users/Active.php:37
+#: src/Module/Moderation/Users/Active.php:71
+#: src/Module/Moderation/Users/Blocked.php:37
+#: src/Module/Moderation/Users/Blocked.php:71
+#: src/Module/Moderation/Users/Index.php:44
+#: src/Module/Moderation/Users/Index.php:78
msgid "You can't remove yourself"
msgstr "Iseend eemaldada ei saa"
-#: src/Module/Moderation/Users/Active.php:55
-#: src/Module/Moderation/Users/Blocked.php:55
-#: src/Module/Moderation/Users/Index.php:62
+#: src/Module/Moderation/Users/Active.php:41
+#: src/Module/Moderation/Users/Blocked.php:41
+#: src/Module/Moderation/Users/Index.php:48
#, php-format
msgid "%s user deleted"
msgid_plural "%s users deleted"
msgstr[0] ""
msgstr[1] ""
-#: src/Module/Moderation/Users/Active.php:83
-#: src/Module/Moderation/Users/Blocked.php:83
-#: src/Module/Moderation/Users/Index.php:90
+#: src/Module/Moderation/Users/Active.php:69
+#: src/Module/Moderation/Users/Blocked.php:69
+#: src/Module/Moderation/Users/Index.php:76
#, php-format
msgid "User \"%s\" deleted"
msgstr ""
-#: src/Module/Moderation/Users/Active.php:93
-#: src/Module/Moderation/Users/Index.php:100
+#: src/Module/Moderation/Users/Active.php:79
+#: src/Module/Moderation/Users/Index.php:86
#, php-format
msgid "User \"%s\" blocked"
msgstr ""
-#: src/Module/Moderation/Users/Active.php:126
-#: src/Module/Moderation/Users/Blocked.php:126
-#: src/Module/Moderation/Users/Deleted.php:83
-#: src/Module/Moderation/Users/Index.php:140
-#: src/Module/Moderation/Users/Index.php:160
+#: src/Module/Moderation/Users/Active.php:112
+#: src/Module/Moderation/Users/Blocked.php:112
+#: src/Module/Moderation/Users/Deleted.php:69
+#: src/Module/Moderation/Users/Index.php:126
+#: src/Module/Moderation/Users/Index.php:146
msgid "Register date"
msgstr "Registreerimisaeg"
-#: src/Module/Moderation/Users/Active.php:126
-#: src/Module/Moderation/Users/Blocked.php:126
-#: src/Module/Moderation/Users/Deleted.php:83
-#: src/Module/Moderation/Users/Index.php:140
-#: src/Module/Moderation/Users/Index.php:160
+#: src/Module/Moderation/Users/Active.php:112
+#: src/Module/Moderation/Users/Blocked.php:112
+#: src/Module/Moderation/Users/Deleted.php:69
+#: src/Module/Moderation/Users/Index.php:126
+#: src/Module/Moderation/Users/Index.php:146
msgid "Last login"
msgstr "Viimane login"
-#: src/Module/Moderation/Users/Active.php:126
-#: src/Module/Moderation/Users/Blocked.php:126
-#: src/Module/Moderation/Users/Deleted.php:83
-#: src/Module/Moderation/Users/Index.php:140
-#: src/Module/Moderation/Users/Index.php:160
+#: src/Module/Moderation/Users/Active.php:112
+#: src/Module/Moderation/Users/Blocked.php:112
+#: src/Module/Moderation/Users/Deleted.php:69
+#: src/Module/Moderation/Users/Index.php:126
+#: src/Module/Moderation/Users/Index.php:146
msgid "Last public item"
msgstr ""
-#: src/Module/Moderation/Users/Active.php:134
+#: src/Module/Moderation/Users/Active.php:120
msgid "Active Accounts"
msgstr ""
-#: src/Module/Moderation/Users/Active.php:138
-#: src/Module/Moderation/Users/Blocked.php:137
-#: src/Module/Moderation/Users/Index.php:153
+#: src/Module/Moderation/Users/Active.php:124
+#: src/Module/Moderation/Users/Blocked.php:123
+#: src/Module/Moderation/Users/Index.php:139
msgid "User blocked"
msgstr ""
-#: src/Module/Moderation/Users/Active.php:139
-#: src/Module/Moderation/Users/Blocked.php:139
-#: src/Module/Moderation/Users/Index.php:155
+#: src/Module/Moderation/Users/Active.php:125
+#: src/Module/Moderation/Users/Blocked.php:125
+#: src/Module/Moderation/Users/Index.php:141
msgid "Site admin"
msgstr ""
-#: src/Module/Moderation/Users/Active.php:140
-#: src/Module/Moderation/Users/Blocked.php:140
-#: src/Module/Moderation/Users/Index.php:156
+#: src/Module/Moderation/Users/Active.php:126
+#: src/Module/Moderation/Users/Blocked.php:126
+#: src/Module/Moderation/Users/Index.php:142
msgid "Account expired"
msgstr ""
-#: src/Module/Moderation/Users/Active.php:141
-#: src/Module/Moderation/Users/Index.php:159
+#: src/Module/Moderation/Users/Active.php:127
+#: src/Module/Moderation/Users/Index.php:145
msgid "Create a new user"
msgstr ""
-#: src/Module/Moderation/Users/Active.php:147
-#: src/Module/Moderation/Users/Blocked.php:146
-#: src/Module/Moderation/Users/Index.php:165
+#: src/Module/Moderation/Users/Active.php:133
+#: src/Module/Moderation/Users/Blocked.php:132
+#: src/Module/Moderation/Users/Index.php:151
msgid ""
"Selected users will be deleted!\\n\\nEverything these users had posted on "
"this site will be permanently deleted!\\n\\nAre you sure?"
msgstr ""
-#: src/Module/Moderation/Users/Active.php:148
-#: src/Module/Moderation/Users/Blocked.php:147
-#: src/Module/Moderation/Users/Index.php:166
+#: src/Module/Moderation/Users/Active.php:134
+#: src/Module/Moderation/Users/Blocked.php:133
+#: src/Module/Moderation/Users/Index.php:152
msgid ""
"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
"site will be permanently deleted!\\n\\nAre you sure?"
msgstr ""
-#: src/Module/Moderation/Users/Blocked.php:43
-#: src/Module/Moderation/Users/Index.php:50
+#: src/Module/Moderation/Users/Blocked.php:29
+#: src/Module/Moderation/Users/Index.php:36
#, php-format
msgid "%s user unblocked"
msgid_plural "%s users unblocked"
msgstr[0] ""
msgstr[1] ""
-#: src/Module/Moderation/Users/Blocked.php:92
-#: src/Module/Moderation/Users/Index.php:106
+#: src/Module/Moderation/Users/Blocked.php:78
+#: src/Module/Moderation/Users/Index.php:92
#, php-format
msgid "User \"%s\" unblocked"
msgstr ""
-#: src/Module/Moderation/Users/Blocked.php:134
+#: src/Module/Moderation/Users/Blocked.php:120
msgid "Blocked Users"
msgstr ""
-#: src/Module/Moderation/Users/Create.php:62
+#: src/Module/Moderation/Users/Create.php:48
msgid "New User"
msgstr ""
-#: src/Module/Moderation/Users/Create.php:63
+#: src/Module/Moderation/Users/Create.php:49
msgid "Add User"
msgstr "Lisa kasutaja"
-#: src/Module/Moderation/Users/Create.php:70
+#: src/Module/Moderation/Users/Create.php:56
msgid "Name of the new user."
msgstr ""
-#: src/Module/Moderation/Users/Create.php:71
+#: src/Module/Moderation/Users/Create.php:57
msgid "Nickname"
msgstr ""
-#: src/Module/Moderation/Users/Create.php:71
+#: src/Module/Moderation/Users/Create.php:57
msgid "Nickname of the new user."
msgstr ""
-#: src/Module/Moderation/Users/Create.php:72
+#: src/Module/Moderation/Users/Create.php:58
msgid "Email address of the new user."
msgstr ""
-#: src/Module/Moderation/Users/Deleted.php:81
+#: src/Module/Moderation/Users/Deleted.php:67
msgid "Users awaiting permanent deletion"
msgstr ""
-#: src/Module/Moderation/Users/Deleted.php:83
-#: src/Module/Moderation/Users/Index.php:160
+#: src/Module/Moderation/Users/Deleted.php:69
+#: src/Module/Moderation/Users/Index.php:146
msgid "Permanent deletion"
msgstr ""
-#: src/Module/Moderation/Users/Index.php:150
+#: src/Module/Moderation/Users/Index.php:136
msgid "User waiting for permanent deletion"
msgstr ""
-#: src/Module/Moderation/Users/Pending.php:44
+#: src/Module/Moderation/Users/Pending.php:30
#, php-format
msgid "%s user approved"
msgid_plural "%s users approved"
msgstr[0] ""
msgstr[1] ""
-#: src/Module/Moderation/Users/Pending.php:51
+#: src/Module/Moderation/Users/Pending.php:37
#, php-format
msgid "%s registration revoked"
msgid_plural "%s registrations revoked"
msgstr[0] ""
msgstr[1] ""
-#: src/Module/Moderation/Users/Pending.php:76
+#: src/Module/Moderation/Users/Pending.php:62
msgid "Account approved."
msgstr "Konto heaks kiidetud:"
-#: src/Module/Moderation/Users/Pending.php:82
+#: src/Module/Moderation/Users/Pending.php:68
msgid "Registration revoked"
msgstr ""
-#: src/Module/Moderation/Users/Pending.php:97
+#: src/Module/Moderation/Users/Pending.php:83
msgid "User registrations awaiting review"
msgstr ""
-#: src/Module/Moderation/Users/Pending.php:99
+#: src/Module/Moderation/Users/Pending.php:85
msgid "Request date"
msgstr ""
-#: src/Module/Moderation/Users/Pending.php:100
+#: src/Module/Moderation/Users/Pending.php:86
msgid "No registrations."
msgstr ""
-#: src/Module/Moderation/Users/Pending.php:101
+#: src/Module/Moderation/Users/Pending.php:87
msgid "Note from the user"
msgstr ""
-#: src/Module/Moderation/Users/Pending.php:103
+#: src/Module/Moderation/Users/Pending.php:89
msgid "Deny"
msgstr ""
-#: src/Module/Notifications/Introductions.php:99
+#: src/Module/Notifications/Introductions.php:91
msgid "Show Ignored Requests"
msgstr "Näita ignoreeritud taotlusi"
-#: src/Module/Notifications/Introductions.php:99
+#: src/Module/Notifications/Introductions.php:91
msgid "Hide Ignored Requests"
msgstr "Peida ignoreeritud taotlused"
-#: src/Module/Notifications/Introductions.php:115
-#: src/Module/Notifications/Introductions.php:178
+#: src/Module/Notifications/Introductions.php:107
+#: src/Module/Notifications/Introductions.php:170
msgid "Notification type:"
msgstr "Teavituse tüüp:"
-#: src/Module/Notifications/Introductions.php:118
+#: src/Module/Notifications/Introductions.php:110
msgid "Suggested by:"
msgstr "Soovitas:"
-#: src/Module/Notifications/Introductions.php:143
+#: src/Module/Notifications/Introductions.php:135
msgid "Claims to be known to you: "
msgstr "Väidab, et on sulle tuttav:"
#: src/Module/Notifications/Introductions.php:144
-#: src/Module/OAuth/Acknowledge.php:55 src/Module/Register.php:131
-#: src/Module/Settings/TwoFactor/Trusted.php:129
-msgid "No"
-msgstr ""
-
-#: src/Module/Notifications/Introductions.php:152
msgid "Shall your connection be bidirectional or not?"
msgstr "Kas teie ühendus on kahesuunaline või mitte?"
-#: src/Module/Notifications/Introductions.php:153
+#: src/Module/Notifications/Introductions.php:145
#, php-format
msgid ""
"Accepting %s as a friend allows %s to subscribe to your posts, and you will "
"also receive updates from them in your news feed."
msgstr "Aktsepteerides %s oma sõbrana võimaldab %s tellida sinu postitusi ja saad nende uuendustest oma ajajoonele teavitusi. "
-#: src/Module/Notifications/Introductions.php:154
+#: src/Module/Notifications/Introductions.php:146
#, php-format
msgid ""
"Accepting %s as a subscriber allows them to subscribe to your posts, but you"
" will not receive updates from them in your news feed."
msgstr "Aktsepteerides %s kui järgijat saavad nad tellida endale sinu postitusi, aga sa ei näe nende uuendusi oma ajajoonel. "
-#: src/Module/Notifications/Introductions.php:156
+#: src/Module/Notifications/Introductions.php:148
msgid "Friend"
msgstr "Sõber"
-#: src/Module/Notifications/Introductions.php:157
+#: src/Module/Notifications/Introductions.php:149
msgid "Subscriber"
msgstr "Jälgija"
-#: src/Module/Notifications/Introductions.php:216
+#: src/Module/Notifications/Introductions.php:208
msgid "No introductions."
msgstr ""
-#: src/Module/Notifications/Introductions.php:217
-#: src/Module/Notifications/Notifications.php:135
+#: src/Module/Notifications/Introductions.php:209
+#: src/Module/Notifications/Notifications.php:127
#, php-format
msgid "No more %s notifications."
msgstr "Ei taha enam %s teateid. "
-#: src/Module/Notifications/Notification.php:135
+#: src/Module/Notifications/Notification.php:121
msgid "You must be logged in to show this page."
msgstr ""
-#: src/Module/Notifications/Notifications.php:66
+#: src/Module/Notifications/Notifications.php:52
msgid "Network Notifications"
msgstr "Võrgu teavitused"
-#: src/Module/Notifications/Notifications.php:72
+#: src/Module/Notifications/Notifications.php:58
msgid "System Notifications"
msgstr "Süsteemi teavitused"
-#: src/Module/Notifications/Notifications.php:78
+#: src/Module/Notifications/Notifications.php:64
msgid "Personal Notifications"
msgstr "Isiklikud teavitused"
-#: src/Module/Notifications/Notifications.php:84
+#: src/Module/Notifications/Notifications.php:70
msgid "Home Notifications"
msgstr "Kodu teavitused"
-#: src/Module/Notifications/Notifications.php:140
+#: src/Module/Notifications/Notifications.php:132
msgid "Show unread"
msgstr "Näita lugemata"
-#: src/Module/Notifications/Ping.php:246
+#: src/Module/Notifications/Ping.php:206
msgid "{0} requested registration"
msgstr "{0} taotleb registreerimist"
-#: src/Module/Notifications/Ping.php:255
+#: src/Module/Notifications/Ping.php:215
#, php-format
msgid "{0} and %d others requested registration"
msgstr ""
-#: src/Module/OAuth/Acknowledge.php:51
+#: src/Module/OAuth/Acknowledge.php:37
msgid "Authorize application connection"
msgstr ""
-#: src/Module/OAuth/Acknowledge.php:53
+#: src/Module/OAuth/Acknowledge.php:39
msgid ""
"Do you want to authorize this application to access your posts and contacts,"
" and/or create new posts for you?"
msgstr ""
-#: src/Module/OAuth/Authorize.php:54
+#: src/Module/OAuth/Authorize.php:40
msgid "Unsupported or missing response type"
msgstr ""
-#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:78
+#: src/Module/OAuth/Authorize.php:45 src/Module/OAuth/Token.php:61
msgid "Incomplete request data"
msgstr ""
-#: src/Module/OAuth/Authorize.php:106
+#: src/Module/OAuth/Authorize.php:92
#, php-format
msgid ""
"Please copy the following authentication code into your application and "
"close this window: %s"
msgstr ""
-#: src/Module/OAuth/Token.php:83
+#: src/Module/OAuth/Token.php:66
msgid "Invalid data or unknown client"
msgstr ""
-#: src/Module/OAuth/Token.php:108
+#: src/Module/OAuth/Token.php:91
msgid "Unsupported or missing grant type"
msgstr ""
-#: src/Module/OStatus/Repair.php:83
-msgid "Resubscribing to OStatus contacts"
-msgstr ""
-
-#: src/Module/OStatus/Repair.php:84 src/Module/OStatus/Subscribe.php:158
-msgid "Keep this window open until done."
-msgstr "Hoia see aken lahti kuni kõik tehtud. "
-
-#: src/Module/OStatus/Repair.php:85
-msgid "✔ Done"
-msgstr ""
-
-#: src/Module/OStatus/Repair.php:86
-msgid "No OStatus contacts to resubscribe to."
-msgstr ""
-
-#: src/Module/OStatus/Subscribe.php:70
+#: src/Module/OStatus/Subscribe.php:58
msgid "Subscribing to contacts"
msgstr ""
-#: src/Module/OStatus/Subscribe.php:79
+#: src/Module/OStatus/Subscribe.php:67
msgid "No contact provided."
msgstr "Kontakti ei esitletud. "
-#: src/Module/OStatus/Subscribe.php:85
+#: src/Module/OStatus/Subscribe.php:73
msgid "Couldn't fetch information for contact."
msgstr "Ei saanud infot kontakti tarbeks. "
-#: src/Module/OStatus/Subscribe.php:96
+#: src/Module/OStatus/Subscribe.php:84
msgid "Couldn't fetch friends for contact."
msgstr "Ei saanud sõbrainfot kontakti tarbeks. "
-#: src/Module/OStatus/Subscribe.php:102 src/Module/OStatus/Subscribe.php:113
+#: src/Module/OStatus/Subscribe.php:90 src/Module/OStatus/Subscribe.php:101
msgid "Couldn't fetch following contacts."
msgstr ""
-#: src/Module/OStatus/Subscribe.php:108
+#: src/Module/OStatus/Subscribe.php:96
msgid "Couldn't fetch remote profile."
msgstr ""
-#: src/Module/OStatus/Subscribe.php:118
+#: src/Module/OStatus/Subscribe.php:106
msgid "Unsupported network"
msgstr ""
-#: src/Module/OStatus/Subscribe.php:134
+#: src/Module/OStatus/Subscribe.php:122
msgid "Done"
msgstr "Tehtud"
-#: src/Module/OStatus/Subscribe.php:148
+#: src/Module/OStatus/Subscribe.php:136
msgid "success"
msgstr "edukas"
-#: src/Module/OStatus/Subscribe.php:150
+#: src/Module/OStatus/Subscribe.php:138
msgid "failed"
msgstr "ebaõnnestus"
-#: src/Module/OStatus/Subscribe.php:153
+#: src/Module/OStatus/Subscribe.php:141
msgid "ignored"
msgstr "ignoreeritud"
-#: src/Module/PermissionTooltip.php:49
-#, php-format
-msgid "Wrong type \"%s\", expected one of: %s"
-msgstr ""
+#: src/Module/OStatus/Subscribe.php:146
+msgid "Keep this window open until done."
+msgstr "Hoia see aken lahti kuni kõik tehtud. "
-#: src/Module/PermissionTooltip.php:79
-msgid "Model not found"
-msgstr ""
-
-#: src/Module/PermissionTooltip.php:94
-msgid "Unlisted"
-msgstr ""
-
-#: src/Module/PermissionTooltip.php:112
-msgid "Remote privacy information not available."
-msgstr "Kaugturvainfo pole kättesaadav."
-
-#: src/Module/PermissionTooltip.php:120
-msgid "Visible to:"
-msgstr "Nähtav: "
-
-#: src/Module/PermissionTooltip.php:214
-#, php-format
-msgid "Collection (%s)"
-msgstr ""
-
-#: src/Module/PermissionTooltip.php:218
-#, php-format
-msgid "Followers (%s)"
-msgstr ""
-
-#: src/Module/PermissionTooltip.php:237
-#, php-format
-msgid "%d more"
-msgstr ""
-
-#: src/Module/PermissionTooltip.php:241
-#, php-format
-msgid "To: %sYou can enter one of your one-time recovery codes in case you lost access" " to your mobile device.
" msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:101 +#: src/Module/Security/TwoFactor/Recovery.php:87 #, php-format msgid "Don’t have your phone? Enter a two-factor recovery code" msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:102 +#: src/Module/Security/TwoFactor/Recovery.php:88 msgid "Please enter a recovery code" msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:103 +#: src/Module/Security/TwoFactor/Recovery.php:89 msgid "Submit recovery code and complete login" msgstr "" -#: src/Module/Security/TwoFactor/SignOut.php:122 +#: src/Module/Security/TwoFactor/SignOut.php:108 msgid "Sign out of this browser?" msgstr "" -#: src/Module/Security/TwoFactor/SignOut.php:123 +#: src/Module/Security/TwoFactor/SignOut.php:109 msgid "" "If you trust this browser, you will not be asked for verification code " "the next time you sign in.
" msgstr "" -#: src/Module/Security/TwoFactor/SignOut.php:124 +#: src/Module/Security/TwoFactor/SignOut.php:110 msgid "Sign out" msgstr "" -#: src/Module/Security/TwoFactor/SignOut.php:126 +#: src/Module/Security/TwoFactor/SignOut.php:112 msgid "Trust and sign out" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:96 +#: src/Module/Security/TwoFactor/Trust.php:82 msgid "Couldn't save browser to Cookie." msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:141 +#: src/Module/Security/TwoFactor/Trust.php:127 msgid "Trust this browser?" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:142 +#: src/Module/Security/TwoFactor/Trust.php:128 msgid "" "If you choose to trust this browser, you will not be asked for a " "verification code the next time you sign in.
" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:143 +#: src/Module/Security/TwoFactor/Trust.php:129 msgid "Not now" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:144 +#: src/Module/Security/TwoFactor/Trust.php:130 msgid "Don't trust" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:145 +#: src/Module/Security/TwoFactor/Trust.php:131 msgid "Trust" msgstr "" -#: src/Module/Security/TwoFactor/Verify.php:97 +#: src/Module/Security/TwoFactor/Verify.php:83 msgid "" "Open the two-factor authentication app on your device to get an " "authentication code and verify your identity.
" msgstr "" -#: src/Module/Security/TwoFactor/Verify.php:100 +#: src/Module/Security/TwoFactor/Verify.php:86 #, php-format msgid "" "If you do not have access to your authentication code you can use a two-factor recovery code." msgstr "" -#: src/Module/Security/TwoFactor/Verify.php:101 -#: src/Module/Settings/TwoFactor/Verify.php:158 +#: src/Module/Security/TwoFactor/Verify.php:87 +#: src/Module/Settings/TwoFactor/Verify.php:144 msgid "Please enter a code from your authentication app" msgstr "" -#: src/Module/Security/TwoFactor/Verify.php:102 +#: src/Module/Security/TwoFactor/Verify.php:88 msgid "Verify code and complete login" msgstr "" -#: src/Module/Settings/Account.php:96 +#: src/Module/Settings/Account.php:82 msgid "Please use a shorter name." msgstr "" -#: src/Module/Settings/Account.php:99 +#: src/Module/Settings/Account.php:85 msgid "Name too short." msgstr "" -#: src/Module/Settings/Account.php:108 +#: src/Module/Settings/Account.php:94 msgid "Wrong Password." msgstr "" -#: src/Module/Settings/Account.php:113 +#: src/Module/Settings/Account.php:99 msgid "Invalid email." msgstr "" -#: src/Module/Settings/Account.php:117 +#: src/Module/Settings/Account.php:103 msgid "Cannot change to that email." msgstr "" -#: src/Module/Settings/Account.php:146 src/Module/Settings/Account.php:195 -#: src/Module/Settings/Account.php:216 src/Module/Settings/Account.php:300 -#: src/Module/Settings/Account.php:329 +#: src/Module/Settings/Account.php:132 src/Module/Settings/Account.php:181 +#: src/Module/Settings/Account.php:202 src/Module/Settings/Account.php:286 +#: src/Module/Settings/Account.php:315 msgid "Settings were not updated." msgstr "" -#: src/Module/Settings/Account.php:342 +#: src/Module/Settings/Account.php:333 msgid "Contact CSV file upload error" msgstr "" -#: src/Module/Settings/Account.php:361 +#: src/Module/Settings/Account.php:352 msgid "Importing Contacts done" msgstr "" -#: src/Module/Settings/Account.php:374 +#: src/Module/Settings/Account.php:365 msgid "Relocate message has been send to your contacts" msgstr "" -#: src/Module/Settings/Account.php:391 +#: src/Module/Settings/Account.php:382 msgid "Unable to find your profile. Please contact your admin." msgstr "Ei leia sinu profiili. Palun kontakteeru adminniga. " -#: src/Module/Settings/Account.php:433 +#: src/Module/Settings/Account.php:424 msgid "" "Account for a service that automatically shares content based on user " "defined channels." msgstr "" -#: src/Module/Settings/Account.php:443 +#: src/Module/Settings/Account.php:434 msgid "Personal Page Subtypes" msgstr "Isikliku lehe alltüübid" -#: src/Module/Settings/Account.php:444 +#: src/Module/Settings/Account.php:435 msgid "Community Group Subtypes" msgstr "" -#: src/Module/Settings/Account.php:455 +#: src/Module/Settings/Account.php:446 msgid "Account for a personal profile." msgstr "Personaalse profiili konto." -#: src/Module/Settings/Account.php:462 +#: src/Module/Settings/Account.php:453 msgid "" "Account for an organisation that automatically approves contact requests as " "\"Followers\"." msgstr "Konto organisatsioonile, mis automaatselt kiidab kontaktitaotlused heaks kui \"Jälgijad\". " -#: src/Module/Settings/Account.php:469 +#: src/Module/Settings/Account.php:460 msgid "" "Account for a news reflector that automatically approves contact requests as" " \"Followers\"." msgstr "Uudistelevitaja konto, kes automaatselt kiidab kontaktitaotlused heaks kui \"Jälgijad\". " -#: src/Module/Settings/Account.php:476 +#: src/Module/Settings/Account.php:467 msgid "Account for community discussions." msgstr "Kogukondlike arutluste konto." -#: src/Module/Settings/Account.php:484 +#: src/Module/Settings/Account.php:475 msgid "" "Account for a regular personal profile that requires manual approval of " "\"Friends\" and \"Followers\"." msgstr "Tavalise inimese konto, mis nõuab \"Sõprade\" ja \"Jälgijate\" käsitsi heaks kiitmist. " -#: src/Module/Settings/Account.php:491 +#: src/Module/Settings/Account.php:482 msgid "" "Account for a public profile that automatically approves contact requests as" " \"Followers\"." msgstr "Avaliku profiili konto, mis kiidab automaatselt heaks kontaktitaotlused kui \"Jälgijad\". " -#: src/Module/Settings/Account.php:498 +#: src/Module/Settings/Account.php:489 msgid "Automatically approves all contact requests." msgstr "Kiidab automaatselt kõik kontaktitaotlused heaks. " -#: src/Module/Settings/Account.php:505 +#: src/Module/Settings/Account.php:496 +msgid "Contact requests have to be manually approved." +msgstr "" + +#: src/Module/Settings/Account.php:503 msgid "" "Account for a popular profile that automatically approves contact requests " "as \"Friends\"." msgstr "Kuulsuse profiili konto, mis kiidab automaatselt kontaktitaotlused heaks kui \"Sõbrad\". " -#: src/Module/Settings/Account.php:510 +#: src/Module/Settings/Account.php:508 msgid "Private Group [Experimental]" msgstr "" -#: src/Module/Settings/Account.php:512 +#: src/Module/Settings/Account.php:510 msgid "Requires manual approval of contact requests." msgstr "Nõuab käsitsi kontaktitaotluste heakskiitu. " -#: src/Module/Settings/Account.php:521 +#: src/Module/Settings/Account.php:519 msgid "OpenID:" msgstr "" -#: src/Module/Settings/Account.php:521 +#: src/Module/Settings/Account.php:519 msgid "(Optional) Allow this OpenID to login to this account." msgstr "" -#: src/Module/Settings/Account.php:529 +#: src/Module/Settings/Account.php:527 msgid "Publish your profile in your local site directory?" msgstr "" -#: src/Module/Settings/Account.php:529 +#: src/Module/Settings/Account.php:527 #, php-format msgid "" "Your profile will be published in this node's local " @@ -9774,94 +9832,94 @@ msgid "" " system settings." msgstr "" -#: src/Module/Settings/Account.php:535 +#: src/Module/Settings/Account.php:533 #, php-format msgid "" "Your profile will also be published in the global friendica directories " "(e.g. %s)." msgstr "" -#: src/Module/Settings/Account.php:548 +#: src/Module/Settings/Account.php:546 msgid "Account Settings" msgstr "Konto sätted" -#: src/Module/Settings/Account.php:549 +#: src/Module/Settings/Account.php:547 #, php-format msgid "Your Identity Address is '%s' or '%s'." msgstr "Sinu ID Aadress on '%s' või '%s'. " -#: src/Module/Settings/Account.php:556 +#: src/Module/Settings/Account.php:554 msgid "Password Settings" msgstr "Parooli sätted" -#: src/Module/Settings/Account.php:558 +#: src/Module/Settings/Account.php:556 msgid "Leave password fields blank unless changing" msgstr "Jäta väljad tühjaks kui sa ei muuda" -#: src/Module/Settings/Account.php:560 +#: src/Module/Settings/Account.php:558 msgid "Password:" msgstr "Parool:" -#: src/Module/Settings/Account.php:560 +#: src/Module/Settings/Account.php:558 msgid "Your current password to confirm the changes of the email address" msgstr "" -#: src/Module/Settings/Account.php:563 +#: src/Module/Settings/Account.php:561 msgid "Delete OpenID URL" msgstr "" -#: src/Module/Settings/Account.php:565 +#: src/Module/Settings/Account.php:563 msgid "Basic Settings" msgstr "Peamised sätted" -#: src/Module/Settings/Account.php:566 -#: src/Module/Settings/Profile/Index.php:283 +#: src/Module/Settings/Account.php:564 +#: src/Module/Settings/Profile/Index.php:274 msgid "Display name:" msgstr "" -#: src/Module/Settings/Account.php:567 +#: src/Module/Settings/Account.php:565 msgid "Email Address:" msgstr "E-posti aadress:" -#: src/Module/Settings/Account.php:568 +#: src/Module/Settings/Account.php:566 msgid "Your Timezone:" msgstr "Sinu ajatsoon:" -#: src/Module/Settings/Account.php:569 +#: src/Module/Settings/Account.php:567 msgid "Your Language:" msgstr "Sinu keel:" -#: src/Module/Settings/Account.php:569 +#: src/Module/Settings/Account.php:567 msgid "" "Set the language we use to show you friendica interface and to send you " "emails" msgstr "Vali keel friendica kuvamiseks ja sulle e-posti saatmiseks. " -#: src/Module/Settings/Account.php:570 +#: src/Module/Settings/Account.php:568 msgid "Default Post Location:" msgstr "Postitamise baasasukoht:" -#: src/Module/Settings/Account.php:571 +#: src/Module/Settings/Account.php:569 msgid "Use Browser Location:" msgstr "Kasuta sirviku asukohta:" -#: src/Module/Settings/Account.php:573 +#: src/Module/Settings/Account.php:571 msgid "Security and Privacy Settings" msgstr "Turva ja privaatsuse sätted" -#: src/Module/Settings/Account.php:575 +#: src/Module/Settings/Account.php:573 msgid "Maximum Friend Requests/Day:" msgstr "Maksimum sõbrakutseid/Päevas:" -#: src/Module/Settings/Account.php:575 +#: src/Module/Settings/Account.php:573 msgid "(to prevent spam abuse)" msgstr "(et rämpspost tõrjuda)" -#: src/Module/Settings/Account.php:577 +#: src/Module/Settings/Account.php:575 msgid "Allow your profile to be searchable globally?" msgstr "" -#: src/Module/Settings/Account.php:577 +#: src/Module/Settings/Account.php:575 msgid "" "Activate this setting if you want others to easily find and follow you. Your" " profile will be searchable on remote systems. This setting also determines " @@ -9869,43 +9927,43 @@ msgid "" "indexed or not." msgstr "" -#: src/Module/Settings/Account.php:578 +#: src/Module/Settings/Account.php:576 msgid "Hide your contact/friend list from viewers of your profile?" msgstr "" -#: src/Module/Settings/Account.php:578 +#: src/Module/Settings/Account.php:576 msgid "" "A list of your contacts is displayed on your profile page. Activate this " "option to disable the display of your contact list." msgstr "" -#: src/Module/Settings/Account.php:579 +#: src/Module/Settings/Account.php:577 msgid "Hide your public content from anonymous viewers" msgstr "" -#: src/Module/Settings/Account.php:579 +#: src/Module/Settings/Account.php:577 msgid "" "Anonymous visitors will only see your basic profile details. Your public " "posts and replies will still be freely accessible on the remote servers of " "your followers and through relays." msgstr "" -#: src/Module/Settings/Account.php:580 +#: src/Module/Settings/Account.php:578 msgid "Make public posts unlisted" msgstr "" -#: src/Module/Settings/Account.php:580 +#: src/Module/Settings/Account.php:578 msgid "" "Your public posts will not appear on the community pages or in search " "results, nor be sent to relay servers. However they can still appear on " "public feeds on remote servers." msgstr "" -#: src/Module/Settings/Account.php:581 +#: src/Module/Settings/Account.php:579 msgid "Make all posted pictures accessible" msgstr "" -#: src/Module/Settings/Account.php:581 +#: src/Module/Settings/Account.php:579 msgid "" "This option makes every posted picture accessible via the direct link. This " "is a workaround for the problem that most other networks can't handle " @@ -9913,352 +9971,352 @@ msgid "" "public on your photo albums though." msgstr "" -#: src/Module/Settings/Account.php:582 +#: src/Module/Settings/Account.php:580 msgid "Allow friends to post to your profile page?" msgstr "Kas lubada sõpradel sinu profiililehele postitada?" -#: src/Module/Settings/Account.php:582 +#: src/Module/Settings/Account.php:580 msgid "" "Your contacts may write posts on your profile wall. These posts will be " "distributed to your contacts" msgstr "Sinu kontaktid võivad postitada sinu profiili lehele. Need postitused edastatakse sinu kontaktidele" -#: src/Module/Settings/Account.php:583 +#: src/Module/Settings/Account.php:581 msgid "Allow friends to tag your posts?" msgstr "Kas lubada sõpradel sinu postitusi tag`ida?" -#: src/Module/Settings/Account.php:583 +#: src/Module/Settings/Account.php:581 msgid "Your contacts can add additional tags to your posts." msgstr "Sinu kontaktid saavad lisada täiendavaid silte su postitustele." -#: src/Module/Settings/Account.php:584 +#: src/Module/Settings/Account.php:582 msgid "Default privacy circle for new contacts" msgstr "" -#: src/Module/Settings/Account.php:585 +#: src/Module/Settings/Account.php:583 msgid "Default privacy circle for new group contacts" msgstr "" -#: src/Module/Settings/Account.php:586 +#: src/Module/Settings/Account.php:584 msgid "Default Post Permissions" msgstr "Postituste baasõigused" -#: src/Module/Settings/Account.php:590 +#: src/Module/Settings/Account.php:588 msgid "Expiration settings" msgstr "Aegumise sätted" -#: src/Module/Settings/Account.php:591 +#: src/Module/Settings/Account.php:589 msgid "Automatically expire posts after this many days:" msgstr "Märgi sõnumid automaatselt loetuks selle hulga päevade möödudes: " -#: src/Module/Settings/Account.php:591 +#: src/Module/Settings/Account.php:589 msgid "If empty, posts will not expire. Expired posts will be deleted" msgstr "Kui väli tühi, siis sõnumid ei aegu. Aegunud sõnumid kustutatakse" -#: src/Module/Settings/Account.php:592 +#: src/Module/Settings/Account.php:590 msgid "Expire posts" msgstr "" -#: src/Module/Settings/Account.php:592 +#: src/Module/Settings/Account.php:590 msgid "When activated, posts and comments will be expired." msgstr "" -#: src/Module/Settings/Account.php:593 +#: src/Module/Settings/Account.php:591 msgid "Expire personal notes" msgstr "" -#: src/Module/Settings/Account.php:593 +#: src/Module/Settings/Account.php:591 msgid "" "When activated, the personal notes on your profile page will be expired." msgstr "" -#: src/Module/Settings/Account.php:594 +#: src/Module/Settings/Account.php:592 msgid "Expire starred posts" msgstr "" -#: src/Module/Settings/Account.php:594 +#: src/Module/Settings/Account.php:592 msgid "" "Starring posts keeps them from being expired. That behaviour is overwritten " "by this setting." msgstr "" -#: src/Module/Settings/Account.php:595 +#: src/Module/Settings/Account.php:593 msgid "Only expire posts by others" msgstr "" -#: src/Module/Settings/Account.php:595 +#: src/Module/Settings/Account.php:593 msgid "" "When activated, your own posts never expire. Then the settings above are " "only valid for posts you received." msgstr "" -#: src/Module/Settings/Account.php:598 +#: src/Module/Settings/Account.php:596 msgid "Notification Settings" msgstr "Teadete sätted" -#: src/Module/Settings/Account.php:599 +#: src/Module/Settings/Account.php:597 msgid "Send a notification email when:" msgstr "Saada meiliteavitus kui:" -#: src/Module/Settings/Account.php:600 +#: src/Module/Settings/Account.php:598 msgid "You receive an introduction" msgstr "Sulle saabub tutvustus" -#: src/Module/Settings/Account.php:601 +#: src/Module/Settings/Account.php:599 msgid "Your introductions are confirmed" msgstr "Sinu tutvustused on kinnitatud" -#: src/Module/Settings/Account.php:602 +#: src/Module/Settings/Account.php:600 msgid "Someone writes on your profile wall" msgstr "Keegi kirjutab sinu profiili seinale" -#: src/Module/Settings/Account.php:603 +#: src/Module/Settings/Account.php:601 msgid "Someone writes a followup comment" msgstr "Keegi kirjutab järgneva kommentaari" -#: src/Module/Settings/Account.php:604 +#: src/Module/Settings/Account.php:602 msgid "You receive a private message" msgstr "Saabub privaatsõnum" -#: src/Module/Settings/Account.php:605 +#: src/Module/Settings/Account.php:603 msgid "You receive a friend suggestion" msgstr "Saabub sõbrasoovitus" -#: src/Module/Settings/Account.php:606 +#: src/Module/Settings/Account.php:604 msgid "You are tagged in a post" msgstr "Sind on postituses tag`itud" -#: src/Module/Settings/Account.php:608 +#: src/Module/Settings/Account.php:606 msgid "Create a desktop notification when:" msgstr "" -#: src/Module/Settings/Account.php:609 +#: src/Module/Settings/Account.php:607 msgid "Someone tagged you" msgstr "" -#: src/Module/Settings/Account.php:610 +#: src/Module/Settings/Account.php:608 msgid "Someone directly commented on your post" msgstr "" -#: src/Module/Settings/Account.php:611 +#: src/Module/Settings/Account.php:609 msgid "Someone liked your content" msgstr "" -#: src/Module/Settings/Account.php:611 src/Module/Settings/Account.php:612 +#: src/Module/Settings/Account.php:609 src/Module/Settings/Account.php:610 msgid "Can only be enabled, when the direct comment notification is enabled." msgstr "" -#: src/Module/Settings/Account.php:612 +#: src/Module/Settings/Account.php:610 msgid "Someone shared your content" msgstr "" -#: src/Module/Settings/Account.php:613 +#: src/Module/Settings/Account.php:611 msgid "Someone commented in your thread" msgstr "" -#: src/Module/Settings/Account.php:614 +#: src/Module/Settings/Account.php:612 msgid "Someone commented in a thread where you commented" msgstr "" -#: src/Module/Settings/Account.php:615 +#: src/Module/Settings/Account.php:613 msgid "Someone commented in a thread where you interacted" msgstr "" -#: src/Module/Settings/Account.php:617 +#: src/Module/Settings/Account.php:615 msgid "Activate desktop notifications" msgstr "Aktiveeri töölaua teavitused" -#: src/Module/Settings/Account.php:617 +#: src/Module/Settings/Account.php:615 msgid "Show desktop popup on new notifications" msgstr "Näita hüpikakent uute teadetega" -#: src/Module/Settings/Account.php:621 +#: src/Module/Settings/Account.php:619 msgid "Text-only notification emails" msgstr "Ainult tekstipõhised teavitusmeilid" -#: src/Module/Settings/Account.php:623 +#: src/Module/Settings/Account.php:621 msgid "Send text only notification emails, without the html part" msgstr "Saada ainut tekstimeile ilma html-ita" -#: src/Module/Settings/Account.php:627 +#: src/Module/Settings/Account.php:625 msgid "Show detailled notifications" msgstr "Kuva detailseid teavitusi" -#: src/Module/Settings/Account.php:629 +#: src/Module/Settings/Account.php:627 msgid "" "Per default, notifications are condensed to a single notification per item. " "When enabled every notification is displayed." msgstr "" -#: src/Module/Settings/Account.php:633 +#: src/Module/Settings/Account.php:631 msgid "Show notifications of ignored contacts" msgstr "" -#: src/Module/Settings/Account.php:635 +#: src/Module/Settings/Account.php:633 msgid "" "You don't see posts from ignored contacts. But you still see their comments." " This setting controls if you want to still receive regular notifications " "that are caused by ignored contacts or not." msgstr "" -#: src/Module/Settings/Account.php:638 +#: src/Module/Settings/Account.php:636 msgid "Advanced Account/Page Type Settings" msgstr "Konto/Lehetüübi sätted edasijõudnutele" -#: src/Module/Settings/Account.php:639 +#: src/Module/Settings/Account.php:637 msgid "Change the behaviour of this account for special situations" msgstr "" -#: src/Module/Settings/Account.php:642 +#: src/Module/Settings/Account.php:640 msgid "Import Contacts" msgstr "" -#: src/Module/Settings/Account.php:643 +#: src/Module/Settings/Account.php:641 msgid "" "Upload a CSV file that contains the handle of your followed accounts in the " "first column you exported from the old account." msgstr "" -#: src/Module/Settings/Account.php:644 +#: src/Module/Settings/Account.php:642 msgid "Upload File" msgstr "Lae fail üles" -#: src/Module/Settings/Account.php:647 +#: src/Module/Settings/Account.php:645 msgid "Relocate" msgstr "" -#: src/Module/Settings/Account.php:648 +#: src/Module/Settings/Account.php:646 msgid "" "If you have moved this profile from another server, and some of your " "contacts don't receive your updates, try pushing this button." msgstr "" -#: src/Module/Settings/Account.php:649 +#: src/Module/Settings/Account.php:647 msgid "Resend relocate message to contacts" msgstr "" -#: src/Module/Settings/Addons.php:86 +#: src/Module/Settings/Addons.php:72 msgid "Addon Settings" msgstr "Lisade sätted" -#: src/Module/Settings/Addons.php:87 +#: src/Module/Settings/Addons.php:73 msgid "No Addon settings configured" msgstr "" -#: src/Module/Settings/Channels.php:142 +#: src/Module/Settings/Channels.php:134 msgid "" "This page can be used to define the channels that will automatically be " "reshared by your account." msgstr "" -#: src/Module/Settings/Channels.php:147 +#: src/Module/Settings/Channels.php:139 msgid "This page can be used to define your own channels." msgstr "" -#: src/Module/Settings/Channels.php:176 +#: src/Module/Settings/Channels.php:168 msgid "Publish" msgstr "" -#: src/Module/Settings/Channels.php:176 +#: src/Module/Settings/Channels.php:168 msgid "" "When selected, the channel results are reshared. This only works for public " "ActivityPub posts from the public timeline or the user defined circles." msgstr "" -#: src/Module/Settings/Channels.php:184 src/Module/Settings/Channels.php:205 -#: src/Module/Settings/Display.php:338 +#: src/Module/Settings/Channels.php:176 src/Module/Settings/Channels.php:197 +#: src/Module/Settings/Display.php:324 msgid "Label" msgstr "" -#: src/Module/Settings/Channels.php:185 src/Module/Settings/Channels.php:206 -#: src/Module/Settings/Display.php:339 -#: src/Module/Settings/TwoFactor/AppSpecific.php:137 +#: src/Module/Settings/Channels.php:177 src/Module/Settings/Channels.php:198 +#: src/Module/Settings/Display.php:325 +#: src/Module/Settings/TwoFactor/AppSpecific.php:123 msgid "Description" msgstr "" -#: src/Module/Settings/Channels.php:186 src/Module/Settings/Channels.php:207 +#: src/Module/Settings/Channels.php:178 src/Module/Settings/Channels.php:199 msgid "Access Key" msgstr "" -#: src/Module/Settings/Channels.php:187 src/Module/Settings/Channels.php:208 +#: src/Module/Settings/Channels.php:179 src/Module/Settings/Channels.php:200 msgid "Circle/Channel" msgstr "" -#: src/Module/Settings/Channels.php:188 src/Module/Settings/Channels.php:209 +#: src/Module/Settings/Channels.php:180 src/Module/Settings/Channels.php:201 msgid "Include Tags" msgstr "" -#: src/Module/Settings/Channels.php:189 src/Module/Settings/Channels.php:210 +#: src/Module/Settings/Channels.php:181 src/Module/Settings/Channels.php:202 msgid "Exclude Tags" msgstr "" -#: src/Module/Settings/Channels.php:190 src/Module/Settings/Channels.php:211 +#: src/Module/Settings/Channels.php:182 src/Module/Settings/Channels.php:203 msgid "Minimum Size" msgstr "" -#: src/Module/Settings/Channels.php:191 src/Module/Settings/Channels.php:212 +#: src/Module/Settings/Channels.php:183 src/Module/Settings/Channels.php:204 msgid "Maximum Size" msgstr "" -#: src/Module/Settings/Channels.php:192 src/Module/Settings/Channels.php:213 +#: src/Module/Settings/Channels.php:184 src/Module/Settings/Channels.php:205 msgid "Full Text Search" msgstr "" -#: src/Module/Settings/Channels.php:196 src/Module/Settings/Channels.php:217 +#: src/Module/Settings/Channels.php:188 src/Module/Settings/Channels.php:209 msgid "Select all languages that you want to see in this channel." msgstr "" -#: src/Module/Settings/Channels.php:198 +#: src/Module/Settings/Channels.php:190 msgid "Delete channel" msgstr "" -#: src/Module/Settings/Channels.php:198 +#: src/Module/Settings/Channels.php:190 msgid "Check to delete this entry from the channel list" msgstr "" -#: src/Module/Settings/Channels.php:205 +#: src/Module/Settings/Channels.php:197 msgid "Short name for the channel. It is displayed on the channels widget." msgstr "" -#: src/Module/Settings/Channels.php:206 +#: src/Module/Settings/Channels.php:198 msgid "This should describe the content of the channel in a few word." msgstr "" -#: src/Module/Settings/Channels.php:207 +#: src/Module/Settings/Channels.php:199 msgid "" "When you want to access this channel via an access key, you can define it " "here. Pay attention to not use an already used one." msgstr "" -#: src/Module/Settings/Channels.php:208 +#: src/Module/Settings/Channels.php:200 msgid "Select a circle or channel, that your channel should be based on." msgstr "" -#: src/Module/Settings/Channels.php:209 +#: src/Module/Settings/Channels.php:201 msgid "" "Comma separated list of tags. A post will be used when it contains any of " "the listed tags." msgstr "" -#: src/Module/Settings/Channels.php:210 +#: src/Module/Settings/Channels.php:202 msgid "" "Comma separated list of tags. If a post contain any of these tags, then it " "will not be part of nthis channel." msgstr "" -#: src/Module/Settings/Channels.php:211 +#: src/Module/Settings/Channels.php:203 msgid "" "Minimum post size. Leave empty for no minimum size. The size is calculated " "without links, attached posts, mentions or hashtags." msgstr "" -#: src/Module/Settings/Channels.php:212 +#: src/Module/Settings/Channels.php:204 msgid "" "Maximum post size. Leave empty for no maximum size. The size is calculated " "without links, attached posts, mentions or hashtags." msgstr "" -#: src/Module/Settings/Channels.php:213 +#: src/Module/Settings/Channels.php:205 #, php-format msgid "" "Search terms for the body, supports the \"boolean mode\" operators from " @@ -10266,578 +10324,589 @@ msgid "" "keywords: %s" msgstr "" -#: src/Module/Settings/Channels.php:214 +#: src/Module/Settings/Channels.php:206 msgid "Check to display images in the channel." msgstr "" -#: src/Module/Settings/Channels.php:215 +#: src/Module/Settings/Channels.php:207 msgid "Check to display videos in the channel." msgstr "" -#: src/Module/Settings/Channels.php:216 +#: src/Module/Settings/Channels.php:208 msgid "Check to display audio in the channel." msgstr "" -#: src/Module/Settings/Channels.php:221 +#: src/Module/Settings/Channels.php:213 msgid "Add new entry to the channel list" msgstr "" -#: src/Module/Settings/Channels.php:222 +#: src/Module/Settings/Channels.php:214 msgid "Add" msgstr "Lisa" -#: src/Module/Settings/Channels.php:224 +#: src/Module/Settings/Channels.php:216 msgid "Current Entries in the channel list" msgstr "" -#: src/Module/Settings/Channels.php:227 +#: src/Module/Settings/Channels.php:219 msgid "Delete entry from the channel list" msgstr "" -#: src/Module/Settings/Channels.php:228 +#: src/Module/Settings/Channels.php:220 msgid "Delete entry from the channel list?" msgstr "" -#: src/Module/Settings/Connectors.php:120 +#: src/Module/Settings/Connectors.php:108 msgid "Failed to connect with email account using the settings provided." msgstr "E-posti kontoga ei õnnestu antud sätetega ühendust saada." -#: src/Module/Settings/Connectors.php:166 -#: src/Module/Settings/Connectors.php:167 +#: src/Module/Settings/Connectors.php:155 +#: src/Module/Settings/Connectors.php:156 msgid "Diaspora (Socialhome, Hubzilla)" msgstr "" -#: src/Module/Settings/Connectors.php:166 -#: src/Module/Settings/Connectors.php:170 +#: src/Module/Settings/Connectors.php:155 #, php-format msgid "Built-in support for %s connectivity is enabled" msgstr "" -#: src/Module/Settings/Connectors.php:167 -#: src/Module/Settings/Connectors.php:169 +#: src/Module/Settings/Connectors.php:156 #, php-format msgid "Built-in support for %s connectivity is disabled" msgstr "" -#: src/Module/Settings/Connectors.php:169 -#: src/Module/Settings/Connectors.php:170 -msgid "OStatus (GNU Social)" -msgstr "" - -#: src/Module/Settings/Connectors.php:182 +#: src/Module/Settings/Connectors.php:167 msgid "Email access is disabled on this site." msgstr "" -#: src/Module/Settings/Connectors.php:197 -#: src/Module/Settings/Connectors.php:244 +#: src/Module/Settings/Connectors.php:182 +#: src/Module/Settings/Connectors.php:233 msgid "None" msgstr "" -#: src/Module/Settings/Connectors.php:209 +#: src/Module/Settings/Connectors.php:186 +msgid "Default (Mastodon will display the title and a link to the post)" +msgstr "" + +#: src/Module/Settings/Connectors.php:187 +msgid "" +"Use the summary (Mastodon and some others will treat it as content warning)" +msgstr "" + +#: src/Module/Settings/Connectors.php:188 +msgid "Embed the title in the body" +msgstr "" + +#: src/Module/Settings/Connectors.php:199 msgid "General Social Media Settings" msgstr "Üldised sotsiaalmeedia sätted" -#: src/Module/Settings/Connectors.php:212 +#: src/Module/Settings/Connectors.php:202 msgid "Followed content scope" msgstr "" -#: src/Module/Settings/Connectors.php:214 +#: src/Module/Settings/Connectors.php:204 msgid "" "By default, conversations in which your follows participated but didn't " "start will be shown in your timeline. You can turn this behavior off, or " "expand it to the conversations in which your follows liked a post." msgstr "" -#: src/Module/Settings/Connectors.php:216 +#: src/Module/Settings/Connectors.php:206 msgid "Only conversations my follows started" msgstr "" -#: src/Module/Settings/Connectors.php:217 +#: src/Module/Settings/Connectors.php:207 msgid "Conversations my follows started or commented on (default)" msgstr "" -#: src/Module/Settings/Connectors.php:218 +#: src/Module/Settings/Connectors.php:208 msgid "Any conversation my follows interacted with, including likes" msgstr "" -#: src/Module/Settings/Connectors.php:221 -msgid "Enable Content Warning" +#: src/Module/Settings/Connectors.php:211 +msgid "Collapse sensitive posts" msgstr "" -#: src/Module/Settings/Connectors.php:221 +#: src/Module/Settings/Connectors.php:211 msgid "" -"Users on networks like Mastodon or Pleroma are able to set a content warning" -" field which collapse their post by default. This enables the automatic " -"collapsing instead of setting the content warning as the post title. Doesn't" -" affect any other content filtering you eventually set up." +"If a post is marked as \"sensitive\", it will be displayed in a collapsed " +"state, if this option is enabled." msgstr "" -#: src/Module/Settings/Connectors.php:222 +#: src/Module/Settings/Connectors.php:212 msgid "Enable intelligent shortening" msgstr "" -#: src/Module/Settings/Connectors.php:222 +#: src/Module/Settings/Connectors.php:212 msgid "" "Normally the system tries to find the best link to add to shortened posts. " "If disabled, every shortened post will always point to the original " "friendica post." msgstr "" -#: src/Module/Settings/Connectors.php:223 +#: src/Module/Settings/Connectors.php:213 msgid "Enable simple text shortening" msgstr "" -#: src/Module/Settings/Connectors.php:223 +#: src/Module/Settings/Connectors.php:213 msgid "" "Normally the system shortens posts at the next line feed. If this option is " "enabled then the system will shorten the text at the maximum character " "limit." msgstr "" -#: src/Module/Settings/Connectors.php:224 +#: src/Module/Settings/Connectors.php:214 msgid "Attach the link title" msgstr "" -#: src/Module/Settings/Connectors.php:224 +#: src/Module/Settings/Connectors.php:214 msgid "" "When activated, the title of the attached link will be added as a title on " "posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that" " share feed content." msgstr "" -#: src/Module/Settings/Connectors.php:225 +#: src/Module/Settings/Connectors.php:215 msgid "API: Use spoiler field as title" msgstr "" -#: src/Module/Settings/Connectors.php:225 +#: src/Module/Settings/Connectors.php:215 msgid "" "When activated, the \"spoiler_text\" field in the API will be used for the " "title on standalone posts. When deactivated it will be used for spoiler " "text. For comments it will always be used for spoiler text." msgstr "" -#: src/Module/Settings/Connectors.php:226 +#: src/Module/Settings/Connectors.php:216 msgid "API: Automatically links at the end of the post as attached posts" msgstr "" -#: src/Module/Settings/Connectors.php:226 +#: src/Module/Settings/Connectors.php:216 msgid "" "When activated, added links at the end of the post react the same way as " "added links in the web interface." msgstr "" -#: src/Module/Settings/Connectors.php:227 +#: src/Module/Settings/Connectors.php:217 +msgid "Article Mode" +msgstr "" + +#: src/Module/Settings/Connectors.php:217 +msgid "" +"Controls how posts with titles are transmitted. Mastodon and its forks don't" +" display the content of these posts if the post is created in the correct " +"(default) way." +msgstr "" + +#: src/Module/Settings/Connectors.php:218 msgid "Your legacy ActivityPub/GNU Social account" msgstr "" -#: src/Module/Settings/Connectors.php:227 +#: src/Module/Settings/Connectors.php:218 msgid "" "If you enter your old account name from an ActivityPub based system or your " "GNU Social/Statusnet account name here (in the format user@domain.tld), your" " contacts will be added automatically. The field will be emptied when done." msgstr "" -#: src/Module/Settings/Connectors.php:229 -msgid "Repair OStatus subscriptions" -msgstr "" - -#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Connectors.php:222 msgid "Email/Mailbox Setup" msgstr "Emaili/Postkasti seadistamine" -#: src/Module/Settings/Connectors.php:234 +#: src/Module/Settings/Connectors.php:223 msgid "" "If you wish to communicate with email contacts using this service " "(optional), please specify how to connect to your mailbox." msgstr "Kui ühenduda kontaktidega meilitsi kasutades seda teenust (valikuline), siis palun täpsustage kuidas postkastiga ühenduda. " -#: src/Module/Settings/Connectors.php:235 +#: src/Module/Settings/Connectors.php:224 msgid "Last successful email check:" msgstr "Viimane õnnestunud meilikontroll: " -#: src/Module/Settings/Connectors.php:237 +#: src/Module/Settings/Connectors.php:226 msgid "IMAP server name:" msgstr "" -#: src/Module/Settings/Connectors.php:238 +#: src/Module/Settings/Connectors.php:227 msgid "IMAP port:" msgstr "" -#: src/Module/Settings/Connectors.php:239 +#: src/Module/Settings/Connectors.php:228 msgid "Security:" msgstr "" -#: src/Module/Settings/Connectors.php:240 +#: src/Module/Settings/Connectors.php:229 msgid "Email login name:" msgstr "" -#: src/Module/Settings/Connectors.php:241 +#: src/Module/Settings/Connectors.php:230 msgid "Email password:" msgstr "" -#: src/Module/Settings/Connectors.php:242 +#: src/Module/Settings/Connectors.php:231 msgid "Reply-to address:" msgstr "" -#: src/Module/Settings/Connectors.php:243 +#: src/Module/Settings/Connectors.php:232 msgid "Send public posts to all email contacts:" msgstr "" -#: src/Module/Settings/Connectors.php:244 +#: src/Module/Settings/Connectors.php:233 msgid "Action after import:" msgstr "Tegevus peale inporti:" -#: src/Module/Settings/Connectors.php:244 +#: src/Module/Settings/Connectors.php:233 msgid "Move to folder" msgstr "Liiguta kausta" -#: src/Module/Settings/Connectors.php:245 +#: src/Module/Settings/Connectors.php:234 msgid "Move to folder:" msgstr "Liiguta kausta:" -#: src/Module/Settings/Delegation.php:73 +#: src/Module/Settings/Delegation.php:59 msgid "Delegation successfully granted." msgstr "" -#: src/Module/Settings/Delegation.php:75 +#: src/Module/Settings/Delegation.php:61 msgid "Parent user not found, unavailable or password doesn't match." msgstr "" -#: src/Module/Settings/Delegation.php:79 +#: src/Module/Settings/Delegation.php:65 msgid "Delegation successfully revoked." msgstr "" -#: src/Module/Settings/Delegation.php:98 -#: src/Module/Settings/Delegation.php:120 +#: src/Module/Settings/Delegation.php:84 +#: src/Module/Settings/Delegation.php:106 msgid "" "Delegated administrators can view but not change delegation permissions." msgstr "" -#: src/Module/Settings/Delegation.php:112 +#: src/Module/Settings/Delegation.php:98 msgid "Delegate user not found." msgstr "" -#: src/Module/Settings/Delegation.php:169 +#: src/Module/Settings/Delegation.php:155 msgid "No parent user" msgstr "Vanemkasutajad ei ole" -#: src/Module/Settings/Delegation.php:180 -#: src/Module/Settings/Delegation.php:191 +#: src/Module/Settings/Delegation.php:166 +#: src/Module/Settings/Delegation.php:177 msgid "Parent User" msgstr "Vanemkasutaja" -#: src/Module/Settings/Delegation.php:188 +#: src/Module/Settings/Delegation.php:174 msgid "Additional Accounts" msgstr "Lisakontod" -#: src/Module/Settings/Delegation.php:189 +#: src/Module/Settings/Delegation.php:175 msgid "" "Register additional accounts that are automatically connected to your " "existing account so you can manage them from this account." msgstr "" -#: src/Module/Settings/Delegation.php:190 +#: src/Module/Settings/Delegation.php:176 msgid "Register an additional account" msgstr "" -#: src/Module/Settings/Delegation.php:192 +#: src/Module/Settings/Delegation.php:178 msgid "" "Parent users have total control about this account, including the account " "settings. Please double check whom you give this access." msgstr "Vanematel on täielik kontroll selle konto üle, kaasa arvatud konto sätted. Palun mõelge kaks korda enne, kui annate ligipääsu. " -#: src/Module/Settings/Delegation.php:195 +#: src/Module/Settings/Delegation.php:181 msgid "Delegates" msgstr "Delegaadid" -#: src/Module/Settings/Delegation.php:196 +#: src/Module/Settings/Delegation.php:182 msgid "" "Delegates are able to manage all aspects of this account/page except for " "basic account settings. Please do not delegate your personal account to " "anybody that you do not trust completely." msgstr "Delegaadid saavad manageerida kõiki selle konto/lehe aspekte v.a. konto baassätteid. Palun ärge delegeerige oma personaalset kontot mitte kellelegi, keda te täielikult ei usalda. " -#: src/Module/Settings/Delegation.php:197 +#: src/Module/Settings/Delegation.php:183 msgid "Existing Page Delegates" msgstr "Olemasolevad lehe Delegaadid" -#: src/Module/Settings/Delegation.php:198 +#: src/Module/Settings/Delegation.php:184 msgid "Potential Delegates" msgstr "Potsentsiaalsed lehe Delegaadid" -#: src/Module/Settings/Delegation.php:199 +#: src/Module/Settings/Delegation.php:185 msgid "No entries." msgstr "Kirjeid pole." -#: src/Module/Settings/Display.php:183 +#: src/Module/Settings/Display.php:169 msgid "The theme you chose isn't available." msgstr "" -#: src/Module/Settings/Display.php:223 +#: src/Module/Settings/Display.php:209 #, php-format msgid "%s - (Unsupported)" msgstr "%s - (Pole toetatud)" -#: src/Module/Settings/Display.php:260 +#: src/Module/Settings/Display.php:246 msgid "No preview" msgstr "" -#: src/Module/Settings/Display.php:261 +#: src/Module/Settings/Display.php:247 msgid "No image" msgstr "" -#: src/Module/Settings/Display.php:262 +#: src/Module/Settings/Display.php:248 msgid "Small Image" msgstr "" -#: src/Module/Settings/Display.php:263 +#: src/Module/Settings/Display.php:249 msgid "Large Image" msgstr "" -#: src/Module/Settings/Display.php:308 +#: src/Module/Settings/Display.php:294 msgid "Display Settings" msgstr "Kuvasätted" -#: src/Module/Settings/Display.php:310 +#: src/Module/Settings/Display.php:296 msgid "General Theme Settings" msgstr "Üldised teemasätted" -#: src/Module/Settings/Display.php:311 +#: src/Module/Settings/Display.php:297 msgid "Custom Theme Settings" msgstr "Kohandatud teema sätted" -#: src/Module/Settings/Display.php:312 +#: src/Module/Settings/Display.php:298 msgid "Content Settings" msgstr "Sisu sätted" -#: src/Module/Settings/Display.php:313 view/theme/duepuntozero/config.php:86 -#: view/theme/frio/config.php:172 view/theme/quattro/config.php:88 -#: view/theme/vier/config.php:136 +#: src/Module/Settings/Display.php:299 view/theme/duepuntozero/config.php:74 +#: view/theme/frio/config.php:139 view/theme/quattro/config.php:76 +#: view/theme/vier/config.php:124 msgid "Theme settings" msgstr "Teema sätted" -#: src/Module/Settings/Display.php:314 +#: src/Module/Settings/Display.php:300 msgid "Timelines" msgstr "" -#: src/Module/Settings/Display.php:321 +#: src/Module/Settings/Display.php:307 msgid "Display Theme:" msgstr "Kuvatateema:" -#: src/Module/Settings/Display.php:322 +#: src/Module/Settings/Display.php:308 msgid "Mobile Theme:" msgstr "Mobiilne teema:" -#: src/Module/Settings/Display.php:325 +#: src/Module/Settings/Display.php:311 msgid "Number of items to display per page:" msgstr "Elementide arv, mida lehel kuvatakse:" -#: src/Module/Settings/Display.php:325 src/Module/Settings/Display.php:326 +#: src/Module/Settings/Display.php:311 src/Module/Settings/Display.php:312 msgid "Maximum of 100 items" msgstr "Maksimaalselt 100 elementi" -#: src/Module/Settings/Display.php:326 +#: src/Module/Settings/Display.php:312 msgid "Number of items to display per page when viewed from mobile device:" msgstr "Mobiilse seadme puhul lehel kuvatav elementide arv:" -#: src/Module/Settings/Display.php:327 +#: src/Module/Settings/Display.php:313 msgid "Update browser every xx seconds" msgstr "Värskenda sirviku sisu iga xx sekundi tagant" -#: src/Module/Settings/Display.php:327 +#: src/Module/Settings/Display.php:313 msgid "Minimum of 10 seconds. Enter -1 to disable it." msgstr "Miinimum on 10 sekundit. Sisesta -1 väljalülitamiseks. " -#: src/Module/Settings/Display.php:328 +#: src/Module/Settings/Display.php:314 msgid "Display emoticons" msgstr "" -#: src/Module/Settings/Display.php:328 +#: src/Module/Settings/Display.php:314 msgid "When enabled, emoticons are replaced with matching symbols." msgstr "" -#: src/Module/Settings/Display.php:329 +#: src/Module/Settings/Display.php:315 msgid "Infinite scroll" msgstr "" -#: src/Module/Settings/Display.php:329 +#: src/Module/Settings/Display.php:315 msgid "Automatic fetch new items when reaching the page end." msgstr "" -#: src/Module/Settings/Display.php:330 +#: src/Module/Settings/Display.php:316 msgid "Enable Smart Threading" msgstr "" -#: src/Module/Settings/Display.php:330 +#: src/Module/Settings/Display.php:316 msgid "Enable the automatic suppression of extraneous thread indentation." msgstr "" -#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/Display.php:317 msgid "Display the Dislike feature" msgstr "" -#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/Display.php:317 msgid "" "Display the Dislike button and dislike reactions on posts and comments." msgstr "" -#: src/Module/Settings/Display.php:332 +#: src/Module/Settings/Display.php:318 msgid "Display the resharer" msgstr "Kuva taasjagaja" -#: src/Module/Settings/Display.php:332 +#: src/Module/Settings/Display.php:318 msgid "Display the first resharer as icon and text on a reshared item." msgstr "" -#: src/Module/Settings/Display.php:333 +#: src/Module/Settings/Display.php:319 msgid "Stay local" msgstr "" -#: src/Module/Settings/Display.php:333 +#: src/Module/Settings/Display.php:319 msgid "Don't go to a remote system when following a contact link." msgstr "" -#: src/Module/Settings/Display.php:334 +#: src/Module/Settings/Display.php:320 msgid "Show the post deletion checkbox" msgstr "" -#: src/Module/Settings/Display.php:334 +#: src/Module/Settings/Display.php:320 msgid "Display the checkbox for the post deletion on the network page." msgstr "" -#: src/Module/Settings/Display.php:335 +#: src/Module/Settings/Display.php:321 msgid "DIsplay the event list" msgstr "" -#: src/Module/Settings/Display.php:335 +#: src/Module/Settings/Display.php:321 msgid "Display the birthday reminder and event list on the network page." msgstr "" -#: src/Module/Settings/Display.php:336 +#: src/Module/Settings/Display.php:322 msgid "Link preview mode" msgstr "" -#: src/Module/Settings/Display.php:336 +#: src/Module/Settings/Display.php:322 msgid "Appearance of the link preview that is added to each post with a link." msgstr "" -#: src/Module/Settings/Display.php:341 +#: src/Module/Settings/Display.php:327 msgid "Bookmark" msgstr "" -#: src/Module/Settings/Display.php:343 +#: src/Module/Settings/Display.php:329 msgid "" "Enable timelines that you want to see in the channels widget. Bookmark " "timelines that you want to see in the top menu." msgstr "" -#: src/Module/Settings/Display.php:345 +#: src/Module/Settings/Display.php:331 msgid "Channel languages:" msgstr "" -#: src/Module/Settings/Display.php:345 +#: src/Module/Settings/Display.php:331 msgid "Select all languages that you want to see in your channels." msgstr "" -#: src/Module/Settings/Display.php:347 +#: src/Module/Settings/Display.php:333 msgid "Beginning of week:" msgstr "Nädala algus:" -#: src/Module/Settings/Display.php:348 +#: src/Module/Settings/Display.php:334 msgid "Default calendar view:" msgstr "" -#: src/Module/Settings/Features.php:74 +#: src/Module/Settings/Features.php:59 msgid "Additional Features" msgstr "Lisafunktsioonid" -#: src/Module/Settings/OAuth.php:71 +#: src/Module/Settings/OAuth.php:57 msgid "Connected Apps" msgstr "Ühendatud rakendused" -#: src/Module/Settings/OAuth.php:75 +#: src/Module/Settings/OAuth.php:61 msgid "Remove authorization" msgstr "" -#: src/Module/Settings/Profile/Index.php:116 +#: src/Module/Settings/Profile/Index.php:102 msgid "Display Name is required." msgstr "" -#: src/Module/Settings/Profile/Index.php:167 +#: src/Module/Settings/Profile/Index.php:156 msgid "Profile couldn't be updated." msgstr "" -#: src/Module/Settings/Profile/Index.php:205 -#: src/Module/Settings/Profile/Index.php:226 +#: src/Module/Settings/Profile/Index.php:196 +#: src/Module/Settings/Profile/Index.php:217 msgid "Label:" msgstr "" -#: src/Module/Settings/Profile/Index.php:206 -#: src/Module/Settings/Profile/Index.php:227 +#: src/Module/Settings/Profile/Index.php:197 +#: src/Module/Settings/Profile/Index.php:218 msgid "Value:" msgstr "" -#: src/Module/Settings/Profile/Index.php:217 -#: src/Module/Settings/Profile/Index.php:238 +#: src/Module/Settings/Profile/Index.php:208 +#: src/Module/Settings/Profile/Index.php:229 msgid "Field Permissions" msgstr "" -#: src/Module/Settings/Profile/Index.php:218 -#: src/Module/Settings/Profile/Index.php:239 +#: src/Module/Settings/Profile/Index.php:209 +#: src/Module/Settings/Profile/Index.php:230 msgid "(click to open/close)" msgstr "(klõpsa ava/sulge)" -#: src/Module/Settings/Profile/Index.php:224 +#: src/Module/Settings/Profile/Index.php:215 msgid "Add a new profile field" msgstr "" -#: src/Module/Settings/Profile/Index.php:247 +#: src/Module/Settings/Profile/Index.php:238 msgid "" "The homepage is verified. A rel=\"me\" link back to your Friendica profile " "page was found on the homepage." msgstr "" -#: src/Module/Settings/Profile/Index.php:249 +#: src/Module/Settings/Profile/Index.php:240 #, php-format msgid "" "To verify your homepage, add a rel=\"me\" link to it, pointing to your " "profile URL (%s)." msgstr "" -#: src/Module/Settings/Profile/Index.php:255 +#: src/Module/Settings/Profile/Index.php:246 msgid "Profile Actions" msgstr "Profiili tegevused" -#: src/Module/Settings/Profile/Index.php:256 +#: src/Module/Settings/Profile/Index.php:247 msgid "Edit Profile Details" msgstr "Muuda profiili detaile" -#: src/Module/Settings/Profile/Index.php:258 +#: src/Module/Settings/Profile/Index.php:249 msgid "Change Profile Photo" msgstr "Muud profiili foto" -#: src/Module/Settings/Profile/Index.php:261 +#: src/Module/Settings/Profile/Index.php:252 msgid "Profile picture" msgstr "Profiilipilt" -#: src/Module/Settings/Profile/Index.php:262 +#: src/Module/Settings/Profile/Index.php:253 msgid "Location" msgstr "Asukoht" -#: src/Module/Settings/Profile/Index.php:263 src/Util/Temporal.php:97 -#: src/Util/Temporal.php:99 +#: src/Module/Settings/Profile/Index.php:254 src/Util/Temporal.php:83 +#: src/Util/Temporal.php:85 msgid "Miscellaneous" msgstr "" -#: src/Module/Settings/Profile/Index.php:264 +#: src/Module/Settings/Profile/Index.php:255 msgid "Custom Profile Fields" msgstr "" -#: src/Module/Settings/Profile/Index.php:265 src/Module/Welcome.php:58 +#: src/Module/Settings/Profile/Index.php:256 src/Module/Welcome.php:44 msgid "Upload Profile Photo" msgstr "Lae üles profiilifoto" -#: src/Module/Settings/Profile/Index.php:266 +#: src/Module/Settings/Profile/Index.php:257 #, php-format msgid "" "Custom fields appear on your profile page.
\n" @@ -10847,396 +10916,396 @@ msgid "" "\t\t\t\tNon-public fields can only be seen by the selected Friendica contacts or the Friendica contacts in the selected circles.
" msgstr "" -#: src/Module/Settings/Profile/Index.php:286 +#: src/Module/Settings/Profile/Index.php:277 msgid "Street Address:" msgstr "Tänava aadress:" -#: src/Module/Settings/Profile/Index.php:287 +#: src/Module/Settings/Profile/Index.php:278 msgid "Locality/City:" msgstr "Asupaik/Linn:" -#: src/Module/Settings/Profile/Index.php:288 +#: src/Module/Settings/Profile/Index.php:279 msgid "Region/State:" msgstr "Regioon/Maakond:" -#: src/Module/Settings/Profile/Index.php:289 +#: src/Module/Settings/Profile/Index.php:280 msgid "Postal/Zip Code:" msgstr "Postiindeks:" -#: src/Module/Settings/Profile/Index.php:290 +#: src/Module/Settings/Profile/Index.php:281 msgid "Country:" msgstr "Riik:" -#: src/Module/Settings/Profile/Index.php:292 +#: src/Module/Settings/Profile/Index.php:283 msgid "XMPP (Jabber) address:" msgstr "" -#: src/Module/Settings/Profile/Index.php:292 +#: src/Module/Settings/Profile/Index.php:283 msgid "" "The XMPP address will be published so that people can follow you there." msgstr "" -#: src/Module/Settings/Profile/Index.php:293 +#: src/Module/Settings/Profile/Index.php:284 msgid "Matrix (Element) address:" msgstr "" -#: src/Module/Settings/Profile/Index.php:293 +#: src/Module/Settings/Profile/Index.php:284 msgid "" "The Matrix address will be published so that people can follow you there." msgstr "" -#: src/Module/Settings/Profile/Index.php:294 +#: src/Module/Settings/Profile/Index.php:285 msgid "Homepage URL:" msgstr "Kodulehe URL: " -#: src/Module/Settings/Profile/Index.php:295 +#: src/Module/Settings/Profile/Index.php:286 msgid "Public Keywords:" msgstr "Avalikud märksõnad:" -#: src/Module/Settings/Profile/Index.php:295 +#: src/Module/Settings/Profile/Index.php:286 msgid "(Used for suggesting potential friends, can be seen by others)" msgstr "(kasutatakse soovitamaks potentsiaalseid sõpru ja on teistele nähtav)" -#: src/Module/Settings/Profile/Index.php:296 +#: src/Module/Settings/Profile/Index.php:287 msgid "Private Keywords:" msgstr "Privaatsed märksõnad:" -#: src/Module/Settings/Profile/Index.php:296 +#: src/Module/Settings/Profile/Index.php:287 msgid "(Used for searching profiles, never shown to others)" msgstr "(Kasutused profiilide otsingul, ei näidata mitte kunagi teistele)" -#: src/Module/Settings/Profile/Photo/Crop.php:107 -#: src/Module/Settings/Profile/Photo/Crop.php:125 -#: src/Module/Settings/Profile/Photo/Crop.php:143 -#: src/Module/Settings/Profile/Photo/Index.php:102 +#: src/Module/Settings/Profile/Photo/Crop.php:93 +#: src/Module/Settings/Profile/Photo/Crop.php:111 +#: src/Module/Settings/Profile/Photo/Crop.php:129 +#: src/Module/Settings/Profile/Photo/Index.php:86 #, php-format msgid "Image size reduction [%s] failed." msgstr "Pildi suuruse vähendamine [%s] nurjus. " -#: src/Module/Settings/Profile/Photo/Crop.php:150 +#: src/Module/Settings/Profile/Photo/Crop.php:136 msgid "" "Shift-reload the page or clear browser cache if the new photo does not " "display immediately." msgstr "" -#: src/Module/Settings/Profile/Photo/Crop.php:155 +#: src/Module/Settings/Profile/Photo/Crop.php:141 msgid "Unable to process image" msgstr "Ei saa pilti töödelda" -#: src/Module/Settings/Profile/Photo/Crop.php:174 +#: src/Module/Settings/Profile/Photo/Crop.php:160 msgid "Photo not found." msgstr "" -#: src/Module/Settings/Profile/Photo/Crop.php:196 +#: src/Module/Settings/Profile/Photo/Crop.php:182 msgid "Profile picture successfully updated." msgstr "" -#: src/Module/Settings/Profile/Photo/Crop.php:222 -#: src/Module/Settings/Profile/Photo/Crop.php:226 +#: src/Module/Settings/Profile/Photo/Crop.php:208 +#: src/Module/Settings/Profile/Photo/Crop.php:212 msgid "Crop Image" msgstr "Vähenda pilti" -#: src/Module/Settings/Profile/Photo/Crop.php:223 +#: src/Module/Settings/Profile/Photo/Crop.php:209 msgid "Please adjust the image cropping for optimum viewing." msgstr "Palun säti pildi vähendamine optimaalseks kuvamiseks." -#: src/Module/Settings/Profile/Photo/Crop.php:225 +#: src/Module/Settings/Profile/Photo/Crop.php:211 msgid "Use Image As Is" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:46 +#: src/Module/Settings/Profile/Photo/Index.php:32 msgid "Missing uploaded image." msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:125 +#: src/Module/Settings/Profile/Photo/Index.php:109 msgid "Profile Picture Settings" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:126 +#: src/Module/Settings/Profile/Photo/Index.php:110 msgid "Current Profile Picture" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:127 +#: src/Module/Settings/Profile/Photo/Index.php:111 msgid "Upload Profile Picture" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:128 +#: src/Module/Settings/Profile/Photo/Index.php:112 msgid "Upload Picture:" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:133 +#: src/Module/Settings/Profile/Photo/Index.php:117 msgid "or" msgstr "või " -#: src/Module/Settings/Profile/Photo/Index.php:135 +#: src/Module/Settings/Profile/Photo/Index.php:119 msgid "skip this step" msgstr "jäta vahele" -#: src/Module/Settings/Profile/Photo/Index.php:137 +#: src/Module/Settings/Profile/Photo/Index.php:121 msgid "select a photo from your photo albums" msgstr "vali foto oma albumitest" -#: src/Module/Settings/RemoveMe.php:76 +#: src/Module/Settings/RemoveMe.php:62 msgid "" "There was a validation error, please make sure you're logged in with the " "account you want to remove and try again." msgstr "" -#: src/Module/Settings/RemoveMe.php:76 +#: src/Module/Settings/RemoveMe.php:62 msgid "If this error persists, please contact your administrator." msgstr "" -#: src/Module/Settings/RemoveMe.php:90 -#: src/Navigation/Notifications/Repository/Notify.php:471 -#: src/Navigation/Notifications/Repository/Notify.php:492 +#: src/Module/Settings/RemoveMe.php:76 +#: src/Navigation/Notifications/Repository/Notify.php:457 +#: src/Navigation/Notifications/Repository/Notify.php:478 msgid "[Friendica System Notify]" msgstr "[Friendica süsteemiteade]" -#: src/Module/Settings/RemoveMe.php:90 +#: src/Module/Settings/RemoveMe.php:76 msgid "User deleted their account" msgstr "Kasutaja kustutas oma konto" -#: src/Module/Settings/RemoveMe.php:91 +#: src/Module/Settings/RemoveMe.php:77 msgid "" "On your Friendica node an user deleted their account. Please ensure that " "their data is removed from the backups." msgstr "" -#: src/Module/Settings/RemoveMe.php:92 +#: src/Module/Settings/RemoveMe.php:78 #, php-format msgid "The user id is %d" msgstr "Kasutajatunnud on %d " -#: src/Module/Settings/RemoveMe.php:105 +#: src/Module/Settings/RemoveMe.php:91 msgid "Your account has been successfully removed. Bye bye!" msgstr "" -#: src/Module/Settings/RemoveMe.php:130 +#: src/Module/Settings/RemoveMe.php:116 msgid "Remove My Account" msgstr "Eemalda Minu Konto" -#: src/Module/Settings/RemoveMe.php:131 +#: src/Module/Settings/RemoveMe.php:117 msgid "" "This will completely remove your account. Once this has been done it is not " "recoverable." msgstr "See eemaldab sinu konto täielikult. Kui kord tehtud, siis taastada ei saa. " -#: src/Module/Settings/RemoveMe.php:136 +#: src/Module/Settings/RemoveMe.php:122 msgid "Please enter your password for verification:" msgstr "Palun sisesta oma parool kontrollimiseks:" -#: src/Module/Settings/Server/Action.php:60 +#: src/Module/Settings/Server/Action.php:46 msgid "Do you want to ignore this server?" msgstr "" -#: src/Module/Settings/Server/Action.php:64 +#: src/Module/Settings/Server/Action.php:50 msgid "Do you want to unignore this server?" msgstr "" -#: src/Module/Settings/Server/Action.php:74 -#: src/Module/Settings/Server/Index.php:104 +#: src/Module/Settings/Server/Action.php:60 +#: src/Module/Settings/Server/Index.php:90 msgid "Remote server settings" msgstr "" -#: src/Module/Settings/Server/Action.php:77 +#: src/Module/Settings/Server/Action.php:63 msgid "Server URL" msgstr "" -#: src/Module/Settings/Server/Index.php:78 +#: src/Module/Settings/Server/Index.php:64 msgid "Settings saved" msgstr "" -#: src/Module/Settings/Server/Index.php:105 +#: src/Module/Settings/Server/Index.php:91 msgid "" "Here you can find all the remote servers you have taken individual " "moderation actions against. For a list of servers your node has blocked, " "please check out the Information page." msgstr "" -#: src/Module/Settings/Server/Index.php:110 +#: src/Module/Settings/Server/Index.php:96 msgid "Delete all your settings for the remote server" msgstr "" -#: src/Module/Settings/Server/Index.php:111 +#: src/Module/Settings/Server/Index.php:97 msgid "Save changes" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:69 -#: src/Module/Settings/TwoFactor/Recovery.php:67 -#: src/Module/Settings/TwoFactor/Trusted.php:70 -#: src/Module/Settings/TwoFactor/Verify.php:72 +#: src/Module/Settings/TwoFactor/AppSpecific.php:55 +#: src/Module/Settings/TwoFactor/Recovery.php:53 +#: src/Module/Settings/TwoFactor/Trusted.php:56 +#: src/Module/Settings/TwoFactor/Verify.php:58 msgid "Please enter your password to access this page." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:87 +#: src/Module/Settings/TwoFactor/AppSpecific.php:73 msgid "App-specific password generation failed: The description is empty." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:90 +#: src/Module/Settings/TwoFactor/AppSpecific.php:76 msgid "" "App-specific password generation failed: This description already exists." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:94 +#: src/Module/Settings/TwoFactor/AppSpecific.php:80 msgid "New app-specific password generated." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:100 +#: src/Module/Settings/TwoFactor/AppSpecific.php:86 msgid "App-specific passwords successfully revoked." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:110 +#: src/Module/Settings/TwoFactor/AppSpecific.php:96 msgid "App-specific password successfully revoked." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:131 +#: src/Module/Settings/TwoFactor/AppSpecific.php:117 msgid "Two-factor app-specific passwords" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:133 +#: src/Module/Settings/TwoFactor/AppSpecific.php:119 msgid "" "App-specific passwords are randomly generated passwords used instead your" " regular password to authenticate your account on third-party applications " "that don't support two-factor authentication.
" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:134 +#: src/Module/Settings/TwoFactor/AppSpecific.php:120 msgid "" "Make sure to copy your new app-specific password now. You won’t be able to " "see it again!" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:138 +#: src/Module/Settings/TwoFactor/AppSpecific.php:124 msgid "Last Used" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:139 +#: src/Module/Settings/TwoFactor/AppSpecific.php:125 msgid "Revoke" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:140 +#: src/Module/Settings/TwoFactor/AppSpecific.php:126 msgid "Revoke All" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:143 +#: src/Module/Settings/TwoFactor/AppSpecific.php:129 msgid "" "When you generate a new app-specific password, you must use it right away, " "it will be shown to you once after you generate it." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:144 +#: src/Module/Settings/TwoFactor/AppSpecific.php:130 msgid "Generate new app-specific password" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:145 +#: src/Module/Settings/TwoFactor/AppSpecific.php:131 msgid "Friendiqa on my Fairphone 2..." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:146 +#: src/Module/Settings/TwoFactor/AppSpecific.php:132 msgid "Generate" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:88 +#: src/Module/Settings/TwoFactor/Index.php:74 msgid "Two-factor authentication successfully disabled." msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:141 +#: src/Module/Settings/TwoFactor/Index.php:127 msgid "" "Use an application on a mobile device to get two-factor authentication " "codes when prompted on login.
" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:145 +#: src/Module/Settings/TwoFactor/Index.php:131 msgid "Authenticator app" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:146 +#: src/Module/Settings/TwoFactor/Index.php:132 msgid "Configured" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:146 +#: src/Module/Settings/TwoFactor/Index.php:132 msgid "Not Configured" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:147 +#: src/Module/Settings/TwoFactor/Index.php:133 msgid "You haven't finished configuring your authenticator app.
" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:148 +#: src/Module/Settings/TwoFactor/Index.php:134 msgid "Your authenticator app is correctly configured.
" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:150 +#: src/Module/Settings/TwoFactor/Index.php:136 msgid "Recovery codes" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:151 +#: src/Module/Settings/TwoFactor/Index.php:137 msgid "Remaining valid codes" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:153 +#: src/Module/Settings/TwoFactor/Index.php:139 msgid "" "These one-use codes can replace an authenticator app code in case you " "have lost access to it.
" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:155 +#: src/Module/Settings/TwoFactor/Index.php:141 msgid "App-specific passwords" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:156 +#: src/Module/Settings/TwoFactor/Index.php:142 msgid "Generated app-specific passwords" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:158 +#: src/Module/Settings/TwoFactor/Index.php:144 msgid "" "These randomly generated passwords allow you to authenticate on apps not " "supporting two-factor authentication.
" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:161 +#: src/Module/Settings/TwoFactor/Index.php:147 msgid "Current password:" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:161 +#: src/Module/Settings/TwoFactor/Index.php:147 msgid "" "You need to provide your current password to change two-factor " "authentication settings." msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:162 +#: src/Module/Settings/TwoFactor/Index.php:148 msgid "Enable two-factor authentication" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:163 +#: src/Module/Settings/TwoFactor/Index.php:149 msgid "Disable two-factor authentication" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:164 +#: src/Module/Settings/TwoFactor/Index.php:150 msgid "Show recovery codes" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:165 +#: src/Module/Settings/TwoFactor/Index.php:151 msgid "Manage app-specific passwords" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:166 +#: src/Module/Settings/TwoFactor/Index.php:152 msgid "Manage trusted browsers" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:167 +#: src/Module/Settings/TwoFactor/Index.php:153 msgid "Finish app configuration" msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:83 +#: src/Module/Settings/TwoFactor/Recovery.php:69 msgid "New recovery codes successfully generated." msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:109 +#: src/Module/Settings/TwoFactor/Recovery.php:95 msgid "Two-factor recovery codes" msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:111 +#: src/Module/Settings/TwoFactor/Recovery.php:97 msgid "" "Recovery codes can be used to access your account in the event you lose " "access to your device and cannot receive two-factor authentication " @@ -11245,68 +11314,68 @@ msgid "" "account.
" msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:113 +#: src/Module/Settings/TwoFactor/Recovery.php:99 msgid "" "When you generate new recovery codes, you must copy the new codes. Your old " "codes won’t work anymore." msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:114 +#: src/Module/Settings/TwoFactor/Recovery.php:100 msgid "Generate new recovery codes" msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:116 +#: src/Module/Settings/TwoFactor/Recovery.php:102 msgid "Next: Verification" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:87 +#: src/Module/Settings/TwoFactor/Trusted.php:73 msgid "Trusted browsers successfully removed." msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:97 +#: src/Module/Settings/TwoFactor/Trusted.php:83 msgid "Trusted browser successfully removed." msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:139 +#: src/Module/Settings/TwoFactor/Trusted.php:125 msgid "Two-factor Trusted Browsers" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:140 +#: src/Module/Settings/TwoFactor/Trusted.php:126 msgid "" "Trusted browsers are individual browsers you chose to skip two-factor " "authentication to access Friendica. Please use this feature sparingly, as it" " can negate the benefit of two-factor authentication." msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:141 +#: src/Module/Settings/TwoFactor/Trusted.php:127 msgid "Device" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:142 +#: src/Module/Settings/TwoFactor/Trusted.php:128 msgid "OS" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:144 +#: src/Module/Settings/TwoFactor/Trusted.php:130 msgid "Trusted" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:145 +#: src/Module/Settings/TwoFactor/Trusted.php:131 msgid "Created At" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:146 +#: src/Module/Settings/TwoFactor/Trusted.php:132 msgid "Last Use" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:148 +#: src/Module/Settings/TwoFactor/Trusted.php:134 msgid "Remove All" msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:94 +#: src/Module/Settings/TwoFactor/Verify.php:80 msgid "Two-factor authentication successfully activated." msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:128 +#: src/Module/Settings/TwoFactor/Verify.php:114 #, php-format msgid "" "Or you can submit the authentication settings manually:
\n" @@ -11326,105 +11395,105 @@ msgid "" "" msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:148 +#: src/Module/Settings/TwoFactor/Verify.php:134 msgid "Two-factor code verification" msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:150 +#: src/Module/Settings/TwoFactor/Verify.php:136 msgid "" "Please scan this QR Code with your authenticator app and submit the " "provided code.
" msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:152 +#: src/Module/Settings/TwoFactor/Verify.php:138 #, php-format msgid "" "Or you can open the following URL in your mobile device:
" msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:159 +#: src/Module/Settings/TwoFactor/Verify.php:145 msgid "Verify code and enable two-factor authentication" msgstr "" -#: src/Module/Settings/UserExport.php:90 +#: src/Module/Settings/UserExport.php:76 msgid "Export account" msgstr "Ekpordi konto" -#: src/Module/Settings/UserExport.php:90 +#: src/Module/Settings/UserExport.php:76 msgid "" "Export your account info and contacts. Use this to make a backup of your " "account and/or to move it to another server." msgstr "" -#: src/Module/Settings/UserExport.php:91 +#: src/Module/Settings/UserExport.php:77 msgid "Export all" msgstr "Ekspordi kõik" -#: src/Module/Settings/UserExport.php:91 +#: src/Module/Settings/UserExport.php:77 msgid "" "Export your account info, contacts and all your items as json. Could be a " "very big file, and could take a lot of time. Use this to make a full backup " "of your account (photos are not exported)" msgstr "" -#: src/Module/Settings/UserExport.php:92 +#: src/Module/Settings/UserExport.php:78 msgid "Export Contacts to CSV" msgstr "" -#: src/Module/Settings/UserExport.php:92 +#: src/Module/Settings/UserExport.php:78 msgid "" "Export the list of the accounts you are following as CSV file. Compatible to" " e.g. Mastodon." msgstr "" -#: src/Module/Special/DisplayNotFound.php:35 +#: src/Module/Special/DisplayNotFound.php:21 msgid "The top-level post isn't visible." msgstr "" -#: src/Module/Special/DisplayNotFound.php:36 +#: src/Module/Special/DisplayNotFound.php:22 msgid "The top-level post was deleted." msgstr "" -#: src/Module/Special/DisplayNotFound.php:37 +#: src/Module/Special/DisplayNotFound.php:23 msgid "" "This node has blocked the top-level author or the author of the shared post." msgstr "" -#: src/Module/Special/DisplayNotFound.php:38 +#: src/Module/Special/DisplayNotFound.php:24 msgid "" "You have ignored or blocked the top-level author or the author of the shared" " post." msgstr "" -#: src/Module/Special/DisplayNotFound.php:39 +#: src/Module/Special/DisplayNotFound.php:25 msgid "" "You have ignored the top-level author's server or the shared post author's " "server." msgstr "" -#: src/Module/Special/DisplayNotFound.php:45 +#: src/Module/Special/DisplayNotFound.php:31 msgid "Conversation Not Found" msgstr "" -#: src/Module/Special/DisplayNotFound.php:46 +#: src/Module/Special/DisplayNotFound.php:32 msgid "Unfortunately, the requested conversation isn't available to you." msgstr "" -#: src/Module/Special/DisplayNotFound.php:47 +#: src/Module/Special/DisplayNotFound.php:33 msgid "Possible reasons include:" msgstr "" -#: src/Module/Special/HTTPException.php:78 +#: src/Module/Special/HTTPException.php:64 msgid "Stack trace:" msgstr "" -#: src/Module/Special/HTTPException.php:83 +#: src/Module/Special/HTTPException.php:69 #, php-format msgid "Exception thrown in %s:%d" msgstr "" -#: src/Module/Tos.php:58 src/Module/Tos.php:107 +#: src/Module/Tos.php:44 src/Module/Tos.php:93 msgid "" "At the time of registration, and for providing communications between the " "user account and their contacts, the user has to provide a display name (pen" @@ -11437,14 +11506,14 @@ msgid "" "settings, it is not necessary for communication." msgstr "" -#: src/Module/Tos.php:59 src/Module/Tos.php:108 +#: src/Module/Tos.php:45 src/Module/Tos.php:94 msgid "" "This data is required for communication and is passed on to the nodes of the" " communication partners and is stored there. Users can enter additional " "private data that may be transmitted to the communication partners accounts." msgstr "" -#: src/Module/Tos.php:60 src/Module/Tos.php:109 +#: src/Module/Tos.php:46 src/Module/Tos.php:95 #, php-format msgid "" "At any point in time a logged in user can export their account data from the" @@ -11455,121 +11524,121 @@ msgid "" "from the nodes of the communication partners." msgstr "" -#: src/Module/Tos.php:63 src/Module/Tos.php:106 +#: src/Module/Tos.php:49 src/Module/Tos.php:92 msgid "Privacy Statement" msgstr "" -#: src/Module/Tos.php:103 +#: src/Module/Tos.php:89 msgid "Rules" msgstr "" -#: src/Module/Update/Display.php:45 +#: src/Module/Update/Display.php:31 msgid "Parameter uri_id is missing." msgstr "" -#: src/Module/Update/Display.php:55 +#: src/Module/Update/Display.php:41 msgid "The requested item doesn't exist or has been deleted." msgstr "" -#: src/Module/User/Delegation.php:146 +#: src/Module/User/Delegation.php:132 #, php-format msgid "You are now logged in as %s" msgstr "" -#: src/Module/User/Delegation.php:185 +#: src/Module/User/Delegation.php:171 msgid "Switch between your accounts" msgstr "" -#: src/Module/User/Delegation.php:186 +#: src/Module/User/Delegation.php:172 msgid "Manage your accounts" msgstr "Halda oma kontosid" -#: src/Module/User/Delegation.php:187 +#: src/Module/User/Delegation.php:173 msgid "" "Toggle between different identities or community/group pages which share " "your account details or which you have been granted \"manage\" permissions" msgstr "" -#: src/Module/User/Delegation.php:188 +#: src/Module/User/Delegation.php:174 msgid "Select an identity to manage: " msgstr "" -#: src/Module/User/Import.php:103 +#: src/Module/User/Import.php:90 msgid "User imports on closed servers can only be done by an administrator." msgstr "" -#: src/Module/User/Import.php:119 +#: src/Module/User/Import.php:106 msgid "Move account" msgstr "Koli konto" -#: src/Module/User/Import.php:120 +#: src/Module/User/Import.php:107 msgid "You can import an account from another Friendica server." msgstr "" -#: src/Module/User/Import.php:121 +#: src/Module/User/Import.php:108 msgid "" "You need to export your account from the old server and upload it here. We " "will recreate your old account here with all your contacts. We will try also" " to inform your friends that you moved here." msgstr "" -#: src/Module/User/Import.php:122 +#: src/Module/User/Import.php:109 msgid "" "This feature is experimental. We can't import contacts from the OStatus " "network (GNU Social/Statusnet) or from Diaspora" msgstr "" -#: src/Module/User/Import.php:123 +#: src/Module/User/Import.php:110 msgid "Account file" msgstr "Konto fail" -#: src/Module/User/Import.php:123 +#: src/Module/User/Import.php:110 msgid "" "To export your account, go to \"Settings->Export your personal data\" and " "select \"Export account\"" msgstr "" -#: src/Module/User/Import.php:217 +#: src/Module/User/Import.php:204 msgid "Error decoding account file" msgstr "" -#: src/Module/User/Import.php:222 +#: src/Module/User/Import.php:209 msgid "Error! No version data in file! This is not a Friendica account file?" msgstr "" -#: src/Module/User/Import.php:230 +#: src/Module/User/Import.php:217 #, php-format msgid "User '%s' already exists on this server!" msgstr "" -#: src/Module/User/Import.php:267 +#: src/Module/User/Import.php:254 msgid "User creation error" msgstr "" -#: src/Module/User/Import.php:316 +#: src/Module/User/Import.php:303 #, php-format msgid "%d contact not imported" msgid_plural "%d contacts not imported" msgstr[0] "" msgstr[1] "" -#: src/Module/User/Import.php:365 +#: src/Module/User/Import.php:352 msgid "User profile creation error" msgstr "" -#: src/Module/User/Import.php:416 +#: src/Module/User/Import.php:403 msgid "Done. You can now login with your username and password" msgstr "" -#: src/Module/Welcome.php:44 +#: src/Module/Welcome.php:30 msgid "Welcome to Friendica" msgstr "Tere tulemast Friendicasse" -#: src/Module/Welcome.php:45 +#: src/Module/Welcome.php:31 msgid "New Member Checklist" msgstr "" -#: src/Module/Welcome.php:46 +#: src/Module/Welcome.php:32 msgid "" "We would like to offer some tips and links to help make your experience " "enjoyable. Click any item to visit the relevant page. A link to this page " @@ -11577,33 +11646,33 @@ msgid "" "registration and then will quietly disappear." msgstr "" -#: src/Module/Welcome.php:48 +#: src/Module/Welcome.php:34 msgid "Getting Started" msgstr "" -#: src/Module/Welcome.php:49 +#: src/Module/Welcome.php:35 msgid "Friendica Walk-Through" msgstr "Friendica lühiabi" -#: src/Module/Welcome.php:50 +#: src/Module/Welcome.php:36 msgid "" "On your Quick Start page - find a brief introduction to your " "profile and network tabs, make some new connections, and find some groups to" " join." msgstr "Oma Quick Start lehel - leiad kiirtutvustuse oma profiili ja võrgu sakkide (tab) kohta. Loo paar uut ühendust ja leia mõni grupp, millega liituda. " -#: src/Module/Welcome.php:53 +#: src/Module/Welcome.php:39 msgid "Go to Your Settings" msgstr "Mine on Sätetesse" -#: src/Module/Welcome.php:54 +#: src/Module/Welcome.php:40 msgid "" "On your Settings page - change your initial password. Also make a " "note of your Identity Address. This looks just like an email address - and " "will be useful in making friends on the free social web." msgstr "Oma Sätted lehel muuda kõigepealt ära algne parool. Samuti pane tallele oma ID Aadress. Ta sarnaneb emaili aadressile - ja on kasulik, et leida sõpru sotsiaalvõrgustikes. " -#: src/Module/Welcome.php:55 +#: src/Module/Welcome.php:41 msgid "" "Review the other settings, particularly the privacy settings. An unpublished" " directory listing is like having an unlisted phone number. In general, you " @@ -11611,77 +11680,77 @@ msgid "" "potential friends know exactly how to find you." msgstr "Vaata üle ka teised sätted, eriti privaatsussätted. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you." -#: src/Module/Welcome.php:59 +#: src/Module/Welcome.php:45 msgid "" "Upload a profile photo if you have not done so already. Studies have shown " "that people with real photos of themselves are ten times more likely to make" " friends than people who do not." msgstr "Lae üles profiilifoto, kui sa seda veel teinud ei ole. uuringud näitavad, et inimesed reaalse fotoga neist leiavad kümme korda rohkem sõpru kui kui ilma fotota inimesed. " -#: src/Module/Welcome.php:60 +#: src/Module/Welcome.php:46 msgid "Edit Your Profile" msgstr "Muuda on Profiili" -#: src/Module/Welcome.php:61 +#: src/Module/Welcome.php:47 msgid "" "Edit your default profile to your liking. Review the " "settings for hiding your list of friends and hiding the profile from unknown" " visitors." msgstr "Muuda oma peamist profiili vastavalt oma soovile. Otsusta, kas soovid näidata oma sõprade nimistut ja nende profiile teistele külastajatele või mitte. " -#: src/Module/Welcome.php:62 +#: src/Module/Welcome.php:48 msgid "Profile Keywords" msgstr "Profiili märksõnad" -#: src/Module/Welcome.php:63 +#: src/Module/Welcome.php:49 msgid "" "Set some public keywords for your profile which describe your interests. We " "may be able to find other people with similar interests and suggest " "friendships." msgstr "" -#: src/Module/Welcome.php:65 +#: src/Module/Welcome.php:51 msgid "Connecting" msgstr "Ühendumine" -#: src/Module/Welcome.php:67 +#: src/Module/Welcome.php:53 msgid "Importing Emails" msgstr "Emailide importimine" -#: src/Module/Welcome.php:68 +#: src/Module/Welcome.php:54 msgid "" "Enter your email access information on your Connector Settings page if you " "wish to import and interact with friends or mailing lists from your email " "INBOX" msgstr "" -#: src/Module/Welcome.php:69 +#: src/Module/Welcome.php:55 msgid "Go to Your Contacts Page" msgstr "Mine oma kontaktide lehele" -#: src/Module/Welcome.php:70 +#: src/Module/Welcome.php:56 msgid "" "Your Contacts page is your gateway to managing friendships and connecting " "with friends on other networks. Typically you enter their address or site " "URL in the Add New Contact dialog." msgstr "Su Kontaktide leht on sinu värav sõpradega ühendumiseks ja suhtlemiseks ka teistes sots võrkudes. Tavaliselt tuleb sisestada nende aadress või lehe URL Lisa uus kontakt dialoogi. " -#: src/Module/Welcome.php:71 +#: src/Module/Welcome.php:57 msgid "Go to Your Site's Directory" msgstr "Mine oma Lehe Kataloogi" -#: src/Module/Welcome.php:72 +#: src/Module/Welcome.php:58 msgid "" "The Directory page lets you find other people in this network or other " "federated sites. Look for a Connect or Follow link on " "their profile page. Provide your own Identity Address if requested." msgstr "Kataloogi leht aitab leida teisi selles võrgus ja teistes seotud võrkudes. Otsi Ühendu või Jälgi linki nende profiili lehel. Anna sinna oma ID aadress kui küsitud. " -#: src/Module/Welcome.php:73 +#: src/Module/Welcome.php:59 msgid "Finding New People" msgstr "Uute inimeste leidmine" -#: src/Module/Welcome.php:74 +#: src/Module/Welcome.php:60 msgid "" "On the side panel of the Contacts page are several tools to find new " "friends. We can match people by interest, look up people by name or " @@ -11690,412 +11759,408 @@ msgid "" "hours." msgstr "Kontaktide lehe küljepaneelil on mitmeid tööriistu uute sõprade leidmiseks. Me saame sidustada inimesi huvide, huvide ja nime järgi või saame soovitada vastavalt võrgusuhtlusele. Päris uuel lehel tulevad soovitused 24 tunni möödudes. " -#: src/Module/Welcome.php:77 +#: src/Module/Welcome.php:63 msgid "Add Your Contacts To Circle" msgstr "" -#: src/Module/Welcome.php:78 +#: src/Module/Welcome.php:64 msgid "" "Once you have made some friends, organize them into private conversation " "circles from the sidebar of your Contacts page and then you can interact " "with each circle privately on your Network page." msgstr "" -#: src/Module/Welcome.php:80 +#: src/Module/Welcome.php:66 msgid "Why Aren't My Posts Public?" msgstr "Miks mu postitused avalikud ei ole?" -#: src/Module/Welcome.php:81 +#: src/Module/Welcome.php:67 msgid "" "Friendica respects your privacy. By default, your posts will only show up to" " people you've added as friends. For more information, see the help section " "from the link above." msgstr "Friendica austab sinu privaatsust. Algseadena näevad sinu postitusi inimesed, kelle oled sõbrana lisanud. Lisainfot saad abiinfost lingilt ülalpool. " -#: src/Module/Welcome.php:83 +#: src/Module/Welcome.php:69 msgid "Getting Help" msgstr "Kuidas saada abi" -#: src/Module/Welcome.php:84 +#: src/Module/Welcome.php:70 msgid "Go to the Help Section" msgstr "Mine Abi sektsiooni" -#: src/Module/Welcome.php:85 +#: src/Module/Welcome.php:71 msgid "" "Our help pages may be consulted for detail on other program" " features and resources." msgstr "Meie abi lehed sisaldavad detailset infot programmi võimaluste ja ressursside kohta. " -#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:161 +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:147 msgid "{0} wants to follow you" msgstr "" -#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:163 +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:149 msgid "{0} has started following you" msgstr "" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:96 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:82 #, php-format msgid "%s liked %s's post" msgstr "%s meeldib %s postitus" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:108 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:94 #, php-format msgid "%s disliked %s's post" msgstr "%s ei meeldi %s postitus" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:120 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:106 #, php-format msgid "%s is attending %s's event" msgstr "%s osaleb %s sündmusel" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:132 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:118 #, php-format msgid "%s is not attending %s's event" msgstr "%s ei osale %s sündmusel" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:144 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:130 #, php-format msgid "%s may attending %s's event" msgstr "" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:174 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:160 #, php-format msgid "%s is now friends with %s" msgstr "%s on nüüd sõber %s ga " -#: src/Navigation/Notifications/Factory/FormattedNotify.php:341 -#: src/Navigation/Notifications/Factory/FormattedNotify.php:379 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:327 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:365 #, php-format msgid "%s commented on %s's post" msgstr "%s kommenteeris %s postitust " -#: src/Navigation/Notifications/Factory/FormattedNotify.php:378 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:364 #, php-format msgid "%s created a new post" msgstr "%s tegi uue postituse" -#: src/Navigation/Notifications/Factory/Introduction.php:133 +#: src/Navigation/Notifications/Factory/Introduction.php:118 msgid "Friend Suggestion" msgstr "Sõbrasoovitus" -#: src/Navigation/Notifications/Factory/Introduction.php:159 +#: src/Navigation/Notifications/Factory/Introduction.php:144 msgid "Friend/Connect Request" msgstr "Sõbra/Ühenduse taotlus" -#: src/Navigation/Notifications/Factory/Introduction.php:159 -msgid "New Follower" -msgstr "Uus jälgija" - -#: src/Navigation/Notifications/Factory/Notification.php:134 +#: src/Navigation/Notifications/Factory/Notification.php:120 #, php-format msgid "%1$s wants to follow you" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:136 +#: src/Navigation/Notifications/Factory/Notification.php:122 #, php-format msgid "%1$s has started following you" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:208 +#: src/Navigation/Notifications/Factory/Notification.php:194 #, php-format msgid "%1$s liked your comment on %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:211 +#: src/Navigation/Notifications/Factory/Notification.php:197 #, php-format msgid "%1$s liked your post %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:218 +#: src/Navigation/Notifications/Factory/Notification.php:204 #, php-format msgid "%1$s disliked your comment on %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:221 +#: src/Navigation/Notifications/Factory/Notification.php:207 #, php-format msgid "%1$s disliked your post %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:228 +#: src/Navigation/Notifications/Factory/Notification.php:214 #, php-format msgid "%1$s shared your comment %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:231 -#: src/Navigation/Notifications/Factory/Notification.php:316 +#: src/Navigation/Notifications/Factory/Notification.php:217 +#: src/Navigation/Notifications/Factory/Notification.php:302 #, php-format msgid "%1$s shared your post %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:235 -#: src/Navigation/Notifications/Factory/Notification.php:305 +#: src/Navigation/Notifications/Factory/Notification.php:221 +#: src/Navigation/Notifications/Factory/Notification.php:291 #, php-format msgid "%1$s shared the post %2$s from %3$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:237 -#: src/Navigation/Notifications/Factory/Notification.php:307 +#: src/Navigation/Notifications/Factory/Notification.php:223 +#: src/Navigation/Notifications/Factory/Notification.php:293 #, php-format msgid "%1$s shared a post from %3$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:239 -#: src/Navigation/Notifications/Factory/Notification.php:309 +#: src/Navigation/Notifications/Factory/Notification.php:225 +#: src/Navigation/Notifications/Factory/Notification.php:295 #, php-format msgid "%1$s shared the post %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:241 -#: src/Navigation/Notifications/Factory/Notification.php:311 +#: src/Navigation/Notifications/Factory/Notification.php:227 +#: src/Navigation/Notifications/Factory/Notification.php:297 #, php-format msgid "%1$s shared a post" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:249 +#: src/Navigation/Notifications/Factory/Notification.php:235 #, php-format msgid "%1$s wants to attend your event %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:256 +#: src/Navigation/Notifications/Factory/Notification.php:242 #, php-format msgid "%1$s does not want to attend your event %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:263 +#: src/Navigation/Notifications/Factory/Notification.php:249 #, php-format msgid "%1$s maybe wants to attend your event %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:270 +#: src/Navigation/Notifications/Factory/Notification.php:256 #, php-format msgid "%1$s tagged you on %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:274 +#: src/Navigation/Notifications/Factory/Notification.php:260 #, php-format msgid "%1$s replied to you on %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:278 +#: src/Navigation/Notifications/Factory/Notification.php:264 #, php-format msgid "%1$s commented in your thread %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:282 +#: src/Navigation/Notifications/Factory/Notification.php:268 #, php-format msgid "%1$s commented on your comment %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:289 +#: src/Navigation/Notifications/Factory/Notification.php:275 #, php-format msgid "%1$s commented in their thread %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:291 +#: src/Navigation/Notifications/Factory/Notification.php:277 #, php-format msgid "%1$s commented in their thread" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:293 +#: src/Navigation/Notifications/Factory/Notification.php:279 #, php-format msgid "%1$s commented in the thread %2$s from %3$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:295 +#: src/Navigation/Notifications/Factory/Notification.php:281 #, php-format msgid "%1$s commented in the thread from %3$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:300 +#: src/Navigation/Notifications/Factory/Notification.php:286 #, php-format msgid "%1$s commented on your thread %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:225 -#: src/Navigation/Notifications/Repository/Notify.php:754 +#: src/Navigation/Notifications/Repository/Notify.php:211 +#: src/Navigation/Notifications/Repository/Notify.php:740 msgid "[Friendica:Notify]" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:293 +#: src/Navigation/Notifications/Repository/Notify.php:279 #, php-format msgid "%s New mail received at %s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:295 +#: src/Navigation/Notifications/Repository/Notify.php:281 #, php-format msgid "%1$s sent you a new private message at %2$s." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:296 +#: src/Navigation/Notifications/Repository/Notify.php:282 msgid "a private message" msgstr "privaatsõnum" -#: src/Navigation/Notifications/Repository/Notify.php:296 +#: src/Navigation/Notifications/Repository/Notify.php:282 #, php-format msgid "%1$s sent you %2$s." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:298 +#: src/Navigation/Notifications/Repository/Notify.php:284 #, php-format msgid "Please visit %s to view and/or reply to your private messages." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:328 +#: src/Navigation/Notifications/Repository/Notify.php:314 #, php-format msgid "%1$s commented on %2$s's %3$s %4$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:333 +#: src/Navigation/Notifications/Repository/Notify.php:319 #, php-format msgid "%1$s commented on your %2$s %3$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:337 +#: src/Navigation/Notifications/Repository/Notify.php:323 #, php-format msgid "%1$s commented on their %2$s %3$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:341 -#: src/Navigation/Notifications/Repository/Notify.php:788 +#: src/Navigation/Notifications/Repository/Notify.php:327 +#: src/Navigation/Notifications/Repository/Notify.php:774 #, php-format msgid "%1$s Comment to conversation #%2$d by %3$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:343 +#: src/Navigation/Notifications/Repository/Notify.php:329 #, php-format msgid "%s commented on an item/conversation you have been following." msgstr "%s kommenteeris elementi/vestlust mida jälgid." -#: src/Navigation/Notifications/Repository/Notify.php:347 -#: src/Navigation/Notifications/Repository/Notify.php:362 -#: src/Navigation/Notifications/Repository/Notify.php:814 +#: src/Navigation/Notifications/Repository/Notify.php:333 +#: src/Navigation/Notifications/Repository/Notify.php:348 +#: src/Navigation/Notifications/Repository/Notify.php:800 #, php-format msgid "Please visit %s to view and/or reply to the conversation." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:354 +#: src/Navigation/Notifications/Repository/Notify.php:340 #, php-format msgid "%s %s posted to your profile wall" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:356 +#: src/Navigation/Notifications/Repository/Notify.php:342 #, php-format msgid "%1$s posted to your profile wall at %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:357 +#: src/Navigation/Notifications/Repository/Notify.php:343 #, php-format msgid "%1$s posted to [url=%2$s]your wall[/url]" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:370 +#: src/Navigation/Notifications/Repository/Notify.php:356 #, php-format msgid "%s Introduction received" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:372 +#: src/Navigation/Notifications/Repository/Notify.php:358 #, php-format msgid "You've received an introduction from '%1$s' at %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:373 +#: src/Navigation/Notifications/Repository/Notify.php:359 #, php-format msgid "You've received [url=%1$s]an introduction[/url] from %2$s." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:378 -#: src/Navigation/Notifications/Repository/Notify.php:424 +#: src/Navigation/Notifications/Repository/Notify.php:364 +#: src/Navigation/Notifications/Repository/Notify.php:410 #, php-format msgid "You may visit their profile at %s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:380 +#: src/Navigation/Notifications/Repository/Notify.php:366 #, php-format msgid "Please visit %s to approve or reject the introduction." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:387 +#: src/Navigation/Notifications/Repository/Notify.php:373 #, php-format msgid "%s A new person is sharing with you" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:389 -#: src/Navigation/Notifications/Repository/Notify.php:390 +#: src/Navigation/Notifications/Repository/Notify.php:375 +#: src/Navigation/Notifications/Repository/Notify.php:376 #, php-format msgid "%1$s is sharing with you at %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:397 +#: src/Navigation/Notifications/Repository/Notify.php:383 #, php-format msgid "%s You have a new follower" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:399 -#: src/Navigation/Notifications/Repository/Notify.php:400 +#: src/Navigation/Notifications/Repository/Notify.php:385 +#: src/Navigation/Notifications/Repository/Notify.php:386 #, php-format msgid "You have a new follower at %2$s : %1$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:413 +#: src/Navigation/Notifications/Repository/Notify.php:399 #, php-format msgid "%s Friend suggestion received" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:415 +#: src/Navigation/Notifications/Repository/Notify.php:401 #, php-format msgid "You've received a friend suggestion from '%1$s' at %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:416 +#: src/Navigation/Notifications/Repository/Notify.php:402 #, php-format msgid "" "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:422 +#: src/Navigation/Notifications/Repository/Notify.php:408 msgid "Name:" msgstr "Nimi:" -#: src/Navigation/Notifications/Repository/Notify.php:423 +#: src/Navigation/Notifications/Repository/Notify.php:409 msgid "Photo:" msgstr "Foto:" -#: src/Navigation/Notifications/Repository/Notify.php:426 +#: src/Navigation/Notifications/Repository/Notify.php:412 #, php-format msgid "Please visit %s to approve or reject the suggestion." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:434 -#: src/Navigation/Notifications/Repository/Notify.php:449 +#: src/Navigation/Notifications/Repository/Notify.php:420 +#: src/Navigation/Notifications/Repository/Notify.php:435 #, php-format msgid "%s Connection accepted" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:436 -#: src/Navigation/Notifications/Repository/Notify.php:451 +#: src/Navigation/Notifications/Repository/Notify.php:422 +#: src/Navigation/Notifications/Repository/Notify.php:437 #, php-format msgid "'%1$s' has accepted your connection request at %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:437 -#: src/Navigation/Notifications/Repository/Notify.php:452 +#: src/Navigation/Notifications/Repository/Notify.php:423 +#: src/Navigation/Notifications/Repository/Notify.php:438 #, php-format msgid "%2$s has accepted your [url=%1$s]connection request[/url]." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:442 +#: src/Navigation/Notifications/Repository/Notify.php:428 msgid "" "You are now mutual friends and may exchange status updates, photos, and " "email without restriction." msgstr "Olete nüüd sõbrad ja saate vahetada staatuseuuendusi, fotosid ja emaile ilma piiranguteta. " -#: src/Navigation/Notifications/Repository/Notify.php:444 +#: src/Navigation/Notifications/Repository/Notify.php:430 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:457 +#: src/Navigation/Notifications/Repository/Notify.php:443 #, php-format msgid "" "'%1$s' has chosen to accept you a fan, which restricts some forms of " @@ -12104,34 +12169,34 @@ msgid "" "automatically." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:459 +#: src/Navigation/Notifications/Repository/Notify.php:445 #, php-format msgid "" "'%1$s' may choose to extend this into a two-way or more permissive " "relationship in the future." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:461 +#: src/Navigation/Notifications/Repository/Notify.php:447 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:471 +#: src/Navigation/Notifications/Repository/Notify.php:457 msgid "registration request" msgstr "registreerimise taotlus" -#: src/Navigation/Notifications/Repository/Notify.php:473 +#: src/Navigation/Notifications/Repository/Notify.php:459 #, php-format msgid "You've received a registration request from '%1$s' at %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:474 +#: src/Navigation/Notifications/Repository/Notify.php:460 #, php-format msgid "You've received a [url=%1$s]registration request[/url] from %2$s." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:479 -#: src/Navigation/Notifications/Repository/Notify.php:500 +#: src/Navigation/Notifications/Repository/Notify.php:465 +#: src/Navigation/Notifications/Repository/Notify.php:486 #, php-format msgid "" "Display Name:\t%s\n" @@ -12139,776 +12204,755 @@ msgid "" "Login Name:\t%s (%s)" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:485 +#: src/Navigation/Notifications/Repository/Notify.php:471 #, php-format msgid "Please visit %s to approve or reject the request." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:492 +#: src/Navigation/Notifications/Repository/Notify.php:478 msgid "new registration" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:494 +#: src/Navigation/Notifications/Repository/Notify.php:480 #, php-format msgid "You've received a new registration from '%1$s' at %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:495 +#: src/Navigation/Notifications/Repository/Notify.php:481 #, php-format msgid "You've received a [url=%1$s]new registration[/url] from %2$s." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:506 +#: src/Navigation/Notifications/Repository/Notify.php:492 #, php-format msgid "Please visit %s to have a look at the new registration." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:782 +#: src/Navigation/Notifications/Repository/Notify.php:768 #, php-format msgid "%s %s tagged you" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:785 +#: src/Navigation/Notifications/Repository/Notify.php:771 #, php-format msgid "%s %s shared a new post" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:793 +#: src/Navigation/Notifications/Repository/Notify.php:779 #, php-format msgid "%1$s %2$s liked your post #%3$d" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:796 +#: src/Navigation/Notifications/Repository/Notify.php:782 #, php-format msgid "%1$s %2$s liked your comment on #%3$d" msgstr "" -#: src/Object/EMail/ItemCCEMail.php:42 +#: src/Object/EMail/ItemCCEMail.php:28 #, php-format msgid "" "This message was sent to you by %s, a member of the Friendica social " "network." msgstr "Selle sõnumi saatis sulle %s , Friendica sotsiaalvõrgu liige. " -#: src/Object/EMail/ItemCCEMail.php:44 +#: src/Object/EMail/ItemCCEMail.php:30 #, php-format msgid "You may visit them online at %s" msgstr "Võite kohtuda nendega online %s " -#: src/Object/EMail/ItemCCEMail.php:45 +#: src/Object/EMail/ItemCCEMail.php:31 msgid "" "Please contact the sender by replying to this post if you do not wish to " "receive these messages." msgstr "Palun kontakteeruge saatjaga vastates sellele postitusele, kui ei soovi neid sõnumeid saada. " -#: src/Object/EMail/ItemCCEMail.php:49 +#: src/Object/EMail/ItemCCEMail.php:35 #, php-format msgid "%s posted an update." msgstr "%s postitas uuenduse." -#: src/Object/Post.php:138 +#: src/Object/Post.php:124 msgid "Private Message" msgstr "Pirvaatsõnum" -#: src/Object/Post.php:142 +#: src/Object/Post.php:128 msgid "Public Message" msgstr "" -#: src/Object/Post.php:146 +#: src/Object/Post.php:132 msgid "Unlisted Message" msgstr "" -#: src/Object/Post.php:182 +#: src/Object/Post.php:168 msgid "This entry was edited" msgstr "See kanne on muudetud" -#: src/Object/Post.php:210 +#: src/Object/Post.php:196 msgid "Connector Message" msgstr "" -#: src/Object/Post.php:226 src/Object/Post.php:228 +#: src/Object/Post.php:225 src/Object/Post.php:227 msgid "Edit" msgstr "Muuda" -#: src/Object/Post.php:262 +#: src/Object/Post.php:261 msgid "Delete globally" msgstr "Kustuta globaalselt" -#: src/Object/Post.php:262 +#: src/Object/Post.php:261 msgid "Remove locally" msgstr "Eemalda lokaalselt" -#: src/Object/Post.php:269 +#: src/Object/Post.php:268 #, php-format msgid "Block %s" msgstr "" -#: src/Object/Post.php:274 +#: src/Object/Post.php:273 #, php-format msgid "Ignore %s" msgstr "" -#: src/Object/Post.php:279 +#: src/Object/Post.php:278 #, php-format msgid "Collapse %s" msgstr "" -#: src/Object/Post.php:283 +#: src/Object/Post.php:282 msgid "Report post" msgstr "" -#: src/Object/Post.php:294 +#: src/Object/Post.php:293 msgid "Save to folder" msgstr "" -#: src/Object/Post.php:334 +#: src/Object/Post.php:333 msgid "I will attend" msgstr "Ma osalen" -#: src/Object/Post.php:334 +#: src/Object/Post.php:333 msgid "I will not attend" msgstr "Ma ei osale" -#: src/Object/Post.php:334 +#: src/Object/Post.php:333 msgid "I might attend" msgstr "Ma ehk osalen" -#: src/Object/Post.php:381 +#: src/Object/Post.php:380 msgid "Ignore thread" msgstr "" -#: src/Object/Post.php:382 +#: src/Object/Post.php:381 msgid "Unignore thread" msgstr "" -#: src/Object/Post.php:383 +#: src/Object/Post.php:382 msgid "Toggle ignore status" msgstr "" -#: src/Object/Post.php:393 +#: src/Object/Post.php:392 msgid "Add star" msgstr "" -#: src/Object/Post.php:394 +#: src/Object/Post.php:393 msgid "Remove star" msgstr "" -#: src/Object/Post.php:395 +#: src/Object/Post.php:394 msgid "Toggle star status" msgstr "" -#: src/Object/Post.php:406 +#: src/Object/Post.php:405 msgid "Pin" msgstr "" -#: src/Object/Post.php:407 +#: src/Object/Post.php:406 msgid "Unpin" msgstr "" -#: src/Object/Post.php:408 +#: src/Object/Post.php:407 msgid "Toggle pin status" msgstr "" -#: src/Object/Post.php:411 +#: src/Object/Post.php:410 msgid "Pinned" msgstr "" -#: src/Object/Post.php:416 +#: src/Object/Post.php:415 msgid "Add tag" msgstr "" -#: src/Object/Post.php:429 +#: src/Object/Post.php:430 msgid "Quote share this" msgstr "" -#: src/Object/Post.php:429 +#: src/Object/Post.php:430 msgid "Quote Share" msgstr "Tsitaadiga jagamine" -#: src/Object/Post.php:432 +#: src/Object/Post.php:433 msgid "Reshare this" msgstr "" -#: src/Object/Post.php:432 +#: src/Object/Post.php:433 msgid "Reshare" msgstr "Taasjaga" -#: src/Object/Post.php:433 +#: src/Object/Post.php:434 msgid "Cancel your Reshare" msgstr "" -#: src/Object/Post.php:433 +#: src/Object/Post.php:434 msgid "Unshare" msgstr "" -#: src/Object/Post.php:485 +#: src/Object/Post.php:478 #, php-format msgid "%s (Received %s)" msgstr "" -#: src/Object/Post.php:491 +#: src/Object/Post.php:484 msgid "Comment this item on your system" msgstr "" -#: src/Object/Post.php:491 +#: src/Object/Post.php:484 msgid "Remote comment" msgstr "" -#: src/Object/Post.php:513 +#: src/Object/Post.php:506 msgid "Share via ..." msgstr "" -#: src/Object/Post.php:513 +#: src/Object/Post.php:506 msgid "Share via external services" msgstr "" -#: src/Object/Post.php:520 +#: src/Object/Post.php:513 msgid "Unknown parent" msgstr "" -#: src/Object/Post.php:524 +#: src/Object/Post.php:517 #, php-format msgid "in reply to %s" msgstr "" -#: src/Object/Post.php:526 +#: src/Object/Post.php:519 msgid "Parent is probably private or not federated." msgstr "" -#: src/Object/Post.php:550 +#: src/Object/Post.php:543 msgid "to" msgstr "" -#: src/Object/Post.php:551 +#: src/Object/Post.php:544 msgid "via" msgstr "" -#: src/Object/Post.php:552 +#: src/Object/Post.php:545 msgid "Wall-to-Wall" msgstr "Seinalt Seinale" -#: src/Object/Post.php:553 +#: src/Object/Post.php:546 msgid "via Wall-To-Wall:" msgstr "läbi Seinalt Seinale:" -#: src/Object/Post.php:604 +#: src/Object/Post.php:599 #, php-format msgid "Reply to %s" msgstr "Vasta %s le" -#: src/Object/Post.php:607 +#: src/Object/Post.php:602 msgid "More" msgstr "Rohkem" -#: src/Object/Post.php:626 +#: src/Object/Post.php:621 msgid "Notifier task is pending" msgstr "" -#: src/Object/Post.php:627 +#: src/Object/Post.php:622 msgid "Delivery to remote servers is pending" msgstr "" -#: src/Object/Post.php:628 +#: src/Object/Post.php:623 msgid "Delivery to remote servers is underway" msgstr "" -#: src/Object/Post.php:629 +#: src/Object/Post.php:624 msgid "Delivery to remote servers is mostly done" msgstr "" -#: src/Object/Post.php:630 +#: src/Object/Post.php:625 msgid "Delivery to remote servers is done" msgstr "" -#: src/Object/Post.php:652 +#: src/Object/Post.php:647 #, php-format msgid "%d comment" msgid_plural "%d comments" msgstr[0] "" msgstr[1] "" -#: src/Object/Post.php:653 +#: src/Object/Post.php:648 msgid "Show more" msgstr "Näita rohkem " -#: src/Object/Post.php:654 +#: src/Object/Post.php:649 msgid "Show fewer" msgstr "Näita vähem" -#: src/Object/Post.php:691 +#: src/Object/Post.php:686 #, php-format msgid "Reshared by: %s" msgstr "" -#: src/Object/Post.php:696 +#: src/Object/Post.php:691 #, php-format msgid "Viewed by: %s" msgstr "" -#: src/Object/Post.php:701 +#: src/Object/Post.php:696 #, php-format msgid "Read by: %s" msgstr "" -#: src/Object/Post.php:706 +#: src/Object/Post.php:701 #, php-format msgid "Liked by: %s" msgstr "" -#: src/Object/Post.php:711 +#: src/Object/Post.php:706 #, php-format msgid "Disliked by: %s" msgstr "" -#: src/Object/Post.php:716 +#: src/Object/Post.php:711 #, php-format msgid "Attended by: %s" msgstr "" -#: src/Object/Post.php:721 +#: src/Object/Post.php:716 #, php-format msgid "Maybe attended by: %s" msgstr "" -#: src/Object/Post.php:726 +#: src/Object/Post.php:721 #, php-format msgid "Not attended by: %s" msgstr "" -#: src/Object/Post.php:731 +#: src/Object/Post.php:726 #, php-format msgid "Commented by: %s" msgstr "" -#: src/Object/Post.php:736 +#: src/Object/Post.php:731 #, php-format msgid "Reacted with %s by: %s" msgstr "" -#: src/Object/Post.php:759 +#: src/Object/Post.php:754 #, php-format msgid "Quote shared by: %s" msgstr "" -#: src/Protocol/ActivityPub/Receiver.php:568 +#: src/Protocol/ActivityPub/Receiver.php:557 msgid "Chat" msgstr "" -#: src/Protocol/Delivery.php:547 +#: src/Protocol/Delivery.php:530 msgid "(no subject)" msgstr "" -#: src/Protocol/OStatus.php:1390 -#, php-format -msgid "%s is now following %s." -msgstr "%s jälgib nüüd %s ." - -#: src/Protocol/OStatus.php:1391 -msgid "following" -msgstr "jälgib" - -#: src/Protocol/OStatus.php:1394 -#, php-format -msgid "%s stopped following %s." -msgstr "%slõpetas %s jälgimise" - -#: src/Protocol/OStatus.php:1395 -msgid "stopped following" -msgstr "lõpetas jälgimise" - -#: src/Render/FriendicaSmartyEngine.php:56 +#: src/Render/FriendicaSmartyEngine.php:42 #, php-format msgid "The folder %s must be writable by webserver." msgstr "" -#: src/Security/Authentication.php:227 +#: src/Security/Authentication.php:200 msgid "Login failed." msgstr "" -#: src/Security/Authentication.php:272 +#: src/Security/Authentication.php:245 msgid "Login failed. Please check your credentials." msgstr "" -#: src/Security/Authentication.php:391 +#: src/Security/Authentication.php:359 #, php-format msgid "Welcome %s" msgstr "" -#: src/Security/Authentication.php:392 +#: src/Security/Authentication.php:360 msgid "Please upload a profile photo." msgstr "Palun lae profiilifoto üles" -#: src/Util/EMailer/MailBuilder.php:260 +#: src/Security/OpenWebAuth.php:149 +#, php-format +msgid "OpenWebAuth: %1$s welcomes %2$s" +msgstr "" + +#: src/Util/EMailer/MailBuilder.php:246 msgid "Friendica Notification" msgstr "" -#: src/Util/EMailer/NotifyMailBuilder.php:78 -#: src/Util/EMailer/SystemMailBuilder.php:54 +#: src/Util/EMailer/NotifyMailBuilder.php:64 +#: src/Util/EMailer/SystemMailBuilder.php:40 #, php-format msgid "%1$s, %2$s Administrator" msgstr "" -#: src/Util/EMailer/NotifyMailBuilder.php:80 -#: src/Util/EMailer/SystemMailBuilder.php:56 +#: src/Util/EMailer/NotifyMailBuilder.php:66 +#: src/Util/EMailer/SystemMailBuilder.php:42 #, php-format msgid "%s Administrator" msgstr "" -#: src/Util/EMailer/NotifyMailBuilder.php:193 -#: src/Util/EMailer/NotifyMailBuilder.php:217 -#: src/Util/EMailer/SystemMailBuilder.php:101 -#: src/Util/EMailer/SystemMailBuilder.php:118 +#: src/Util/EMailer/NotifyMailBuilder.php:179 +#: src/Util/EMailer/NotifyMailBuilder.php:203 +#: src/Util/EMailer/SystemMailBuilder.php:87 +#: src/Util/EMailer/SystemMailBuilder.php:104 msgid "thanks" msgstr "" -#: src/Util/Temporal.php:172 +#: src/Util/Temporal.php:158 msgid "YYYY-MM-DD or MM-DD" msgstr "" -#: src/Util/Temporal.php:280 +#: src/Util/Temporal.php:266 #, php-format msgid "Time zone: %s Change in Settings" msgstr "" -#: src/Util/Temporal.php:320 src/Util/Temporal.php:329 +#: src/Util/Temporal.php:306 src/Util/Temporal.php:315 msgid "never" msgstr "" -#: src/Util/Temporal.php:343 +#: src/Util/Temporal.php:329 msgid "less than a second ago" msgstr "" -#: src/Util/Temporal.php:352 +#: src/Util/Temporal.php:338 msgid "year" msgstr "" -#: src/Util/Temporal.php:352 +#: src/Util/Temporal.php:338 msgid "years" msgstr "" -#: src/Util/Temporal.php:353 +#: src/Util/Temporal.php:339 msgid "months" msgstr "" -#: src/Util/Temporal.php:354 +#: src/Util/Temporal.php:340 msgid "weeks" msgstr "" -#: src/Util/Temporal.php:355 +#: src/Util/Temporal.php:341 msgid "days" msgstr "" -#: src/Util/Temporal.php:356 +#: src/Util/Temporal.php:342 msgid "hour" msgstr "" -#: src/Util/Temporal.php:356 +#: src/Util/Temporal.php:342 msgid "hours" msgstr "" -#: src/Util/Temporal.php:357 +#: src/Util/Temporal.php:343 msgid "minute" msgstr "" -#: src/Util/Temporal.php:357 +#: src/Util/Temporal.php:343 msgid "minutes" msgstr "" -#: src/Util/Temporal.php:358 +#: src/Util/Temporal.php:344 msgid "second" msgstr "" -#: src/Util/Temporal.php:358 +#: src/Util/Temporal.php:344 msgid "seconds" msgstr "" -#: src/Util/Temporal.php:367 +#: src/Util/Temporal.php:353 #, php-format msgid "in %1$d %2$s" msgstr "" -#: src/Util/Temporal.php:370 +#: src/Util/Temporal.php:356 #, php-format msgid "%1$d %2$s ago" msgstr "" -#: src/Worker/PushSubscription.php:110 +#: src/Worker/PushSubscription.php:96 msgid "Notification from Friendica" msgstr "" -#: src/Worker/PushSubscription.php:111 +#: src/Worker/PushSubscription.php:97 msgid "Empty Post" msgstr "" -#: view/theme/duepuntozero/config.php:68 +#: view/theme/duepuntozero/config.php:56 msgid "default" msgstr "" -#: view/theme/duepuntozero/config.php:69 +#: view/theme/duepuntozero/config.php:57 msgid "greenzero" msgstr "" -#: view/theme/duepuntozero/config.php:70 +#: view/theme/duepuntozero/config.php:58 msgid "purplezero" msgstr "" -#: view/theme/duepuntozero/config.php:71 +#: view/theme/duepuntozero/config.php:59 msgid "easterbunny" msgstr "" -#: view/theme/duepuntozero/config.php:72 +#: view/theme/duepuntozero/config.php:60 msgid "darkzero" msgstr "" -#: view/theme/duepuntozero/config.php:73 +#: view/theme/duepuntozero/config.php:61 msgid "comix" msgstr "" -#: view/theme/duepuntozero/config.php:74 +#: view/theme/duepuntozero/config.php:62 msgid "slackr" msgstr "" -#: view/theme/duepuntozero/config.php:87 +#: view/theme/duepuntozero/config.php:75 msgid "Variations" msgstr "" -#: view/theme/frio/config.php:153 -msgid "Light (Accented)" -msgstr "" - -#: view/theme/frio/config.php:154 -msgid "Dark (Accented)" -msgstr "" - -#: view/theme/frio/config.php:155 -msgid "Black (Accented)" -msgstr "" - -#: view/theme/frio/config.php:167 +#: view/theme/frio/config.php:134 msgid "Note" msgstr "" -#: view/theme/frio/config.php:167 +#: view/theme/frio/config.php:134 msgid "Check image permissions if all users are allowed to see the image" msgstr "" -#: view/theme/frio/config.php:173 -msgid "Custom" +#: view/theme/frio/config.php:140 +msgid "Appearance" msgstr "" -#: view/theme/frio/config.php:174 -msgid "Legacy" +#: view/theme/frio/config.php:141 +msgid "Accent color" msgstr "" -#: view/theme/frio/config.php:175 -msgid "Accented" -msgstr "" - -#: view/theme/frio/config.php:176 -msgid "Select color scheme" -msgstr "" - -#: view/theme/frio/config.php:177 -msgid "Select scheme accent" -msgstr "" - -#: view/theme/frio/config.php:177 +#: view/theme/frio/config.php:141 msgid "Blue" msgstr "" -#: view/theme/frio/config.php:177 +#: view/theme/frio/config.php:141 msgid "Red" msgstr "" -#: view/theme/frio/config.php:177 +#: view/theme/frio/config.php:141 msgid "Purple" msgstr "" -#: view/theme/frio/config.php:177 +#: view/theme/frio/config.php:141 msgid "Green" msgstr "" -#: view/theme/frio/config.php:177 +#: view/theme/frio/config.php:141 msgid "Pink" msgstr "" -#: view/theme/frio/config.php:178 +#: view/theme/frio/config.php:142 msgid "Copy or paste schemestring" msgstr "" -#: view/theme/frio/config.php:178 +#: view/theme/frio/config.php:142 msgid "" "You can copy this string to share your theme with others. Pasting here " "applies the schemestring" msgstr "" -#: view/theme/frio/config.php:179 +#: view/theme/frio/config.php:143 msgid "Navigation bar background color" msgstr "" -#: view/theme/frio/config.php:180 +#: view/theme/frio/config.php:144 msgid "Navigation bar icon color " msgstr "" -#: view/theme/frio/config.php:181 +#: view/theme/frio/config.php:145 msgid "Link color" msgstr "" -#: view/theme/frio/config.php:182 +#: view/theme/frio/config.php:146 msgid "Set the background color" msgstr "" -#: view/theme/frio/config.php:183 +#: view/theme/frio/config.php:147 msgid "Content background opacity" msgstr "" -#: view/theme/frio/config.php:184 +#: view/theme/frio/config.php:148 msgid "Set the background image" msgstr "" -#: view/theme/frio/config.php:185 +#: view/theme/frio/config.php:149 msgid "Background image style" msgstr "" -#: view/theme/frio/config.php:188 +#: view/theme/frio/config.php:152 msgid "Always open Compose page" msgstr "" -#: view/theme/frio/config.php:188 +#: view/theme/frio/config.php:152 msgid "" "The New Post button always open the Compose page " "instead of the modal form. When this is disabled, the Compose page can be " "accessed with a middle click on the link or from the modal." msgstr "" -#: view/theme/frio/config.php:192 +#: view/theme/frio/config.php:156 msgid "Login page background image" msgstr "" -#: view/theme/frio/config.php:196 +#: view/theme/frio/config.php:160 msgid "Login page background color" msgstr "" -#: view/theme/frio/config.php:196 +#: view/theme/frio/config.php:160 msgid "Leave background image and color empty for theme defaults" msgstr "" -#: view/theme/frio/php/Image.php:39 +#: view/theme/frio/php/Image.php:27 msgid "Top Banner" msgstr "" -#: view/theme/frio/php/Image.php:39 +#: view/theme/frio/php/Image.php:27 msgid "" "Resize image to the width of the screen and show background color below on " "long pages." msgstr "" -#: view/theme/frio/php/Image.php:40 +#: view/theme/frio/php/Image.php:28 msgid "Full screen" msgstr "" -#: view/theme/frio/php/Image.php:40 +#: view/theme/frio/php/Image.php:28 msgid "" "Resize image to fill entire screen, clipping either the right or the bottom." msgstr "" -#: view/theme/frio/php/Image.php:41 +#: view/theme/frio/php/Image.php:29 msgid "Single row mosaic" msgstr "" -#: view/theme/frio/php/Image.php:41 +#: view/theme/frio/php/Image.php:29 msgid "" "Resize image to repeat it on a single row, either vertical or horizontal." msgstr "" -#: view/theme/frio/php/Image.php:42 +#: view/theme/frio/php/Image.php:30 msgid "Mosaic" msgstr "" -#: view/theme/frio/php/Image.php:42 +#: view/theme/frio/php/Image.php:30 msgid "Repeat image to fill the screen." msgstr "" -#: view/theme/frio/php/default.php:81 view/theme/frio/php/standard.php:40 +#: view/theme/frio/php/default.php:70 view/theme/frio/php/standard.php:28 msgid "Skip to main content" msgstr "" -#: view/theme/frio/php/default.php:152 view/theme/frio/php/standard.php:75 +#: view/theme/frio/php/default.php:141 view/theme/frio/php/standard.php:63 msgid "Back to top" msgstr "" -#: view/theme/frio/theme.php:211 +#: view/theme/frio/php/scheme.php:93 +msgid "Light" +msgstr "" + +#: view/theme/frio/php/scheme.php:94 +msgid "Dark" +msgstr "" + +#: view/theme/frio/php/scheme.php:95 +msgid "Black" +msgstr "" + +#: view/theme/frio/php/scheme.php:106 +msgid "Custom" +msgstr "" + +#: view/theme/frio/theme.php:202 msgid "Guest" msgstr "" -#: view/theme/frio/theme.php:214 +#: view/theme/frio/theme.php:205 msgid "Visitor" msgstr "" -#: view/theme/quattro/config.php:89 +#: view/theme/quattro/config.php:77 msgid "Alignment" msgstr "" -#: view/theme/quattro/config.php:89 +#: view/theme/quattro/config.php:77 msgid "Left" msgstr "" -#: view/theme/quattro/config.php:89 +#: view/theme/quattro/config.php:77 msgid "Center" msgstr "" -#: view/theme/quattro/config.php:90 +#: view/theme/quattro/config.php:78 msgid "Color scheme" msgstr "" -#: view/theme/quattro/config.php:91 +#: view/theme/quattro/config.php:79 msgid "Posts font size" msgstr "" -#: view/theme/quattro/config.php:92 +#: view/theme/quattro/config.php:80 msgid "Textareas font size" msgstr "" -#: view/theme/vier/config.php:91 +#: view/theme/vier/config.php:79 msgid "Comma separated list of helper groups" msgstr "" -#: view/theme/vier/config.php:131 +#: view/theme/vier/config.php:119 msgid "don't show" msgstr "" -#: view/theme/vier/config.php:131 +#: view/theme/vier/config.php:119 msgid "show" msgstr "" -#: view/theme/vier/config.php:137 +#: view/theme/vier/config.php:125 msgid "Set style" msgstr "" -#: view/theme/vier/config.php:138 +#: view/theme/vier/config.php:126 msgid "Community Pages" msgstr "" -#: view/theme/vier/config.php:139 view/theme/vier/theme.php:148 +#: view/theme/vier/config.php:127 view/theme/vier/theme.php:136 msgid "Community Profiles" msgstr "" -#: view/theme/vier/config.php:140 +#: view/theme/vier/config.php:128 msgid "Help or @NewHere ?" msgstr "" -#: view/theme/vier/config.php:141 view/theme/vier/theme.php:319 +#: view/theme/vier/config.php:129 view/theme/vier/theme.php:307 msgid "Connect Services" msgstr "" -#: view/theme/vier/config.php:142 +#: view/theme/vier/config.php:130 msgid "Find Friends" msgstr "" -#: view/theme/vier/config.php:143 view/theme/vier/theme.php:175 +#: view/theme/vier/config.php:131 view/theme/vier/theme.php:163 msgid "Last users" msgstr "" -#: view/theme/vier/theme.php:234 +#: view/theme/vier/theme.php:222 msgid "Quick Start" msgstr "" diff --git a/view/lang/et/strings.php b/view/lang/et/strings.php index c53576cded..34b9314826 100644 --- a/view/lang/et/strings.php +++ b/view/lang/et/strings.php @@ -166,6 +166,11 @@ $a->strings['Photo Location'] = 'Foto asukoht'; $a->strings['Post/Comment Tools'] = 'Postituse/Kommenteerimise tööriistad'; $a->strings['Post Categories'] = 'Postituse kategooriad'; $a->strings['Add categories to your posts'] = 'Lisa kategooriad on postitustele'; +$a->strings['Archives'] = 'Arhiivid'; +$a->strings['Protocols'] = 'Protokollid'; +$a->strings['Account Types'] = 'Kontode tüübid'; +$a->strings['Saved Searches'] = 'Salvestatud otsingud'; +$a->strings['Saved Folders'] = 'Salvestatud kaustad'; $a->strings['Advanced Profile Settings'] = 'Täpsemad profiili sätted'; $a->strings['Tag Cloud'] = 'Sildipilv tag cloud'; $a->strings['Provide a personal tag cloud on your profile page'] = 'Näita personaalset sildipilve oma profiili lehel'; @@ -262,20 +267,16 @@ $a->strings['Global Directory'] = 'Globaalne kataloog'; $a->strings['Local Directory'] = 'Kohalik kataloog'; $a->strings['Relationships'] = 'Suhted'; $a->strings['All Contacts'] = 'Kõik kontaktid'; -$a->strings['Protocols'] = 'Protokollid'; $a->strings['All Protocols'] = 'Kõik protokollid'; -$a->strings['Saved Folders'] = 'Salvestatud kaustad'; $a->strings['Everything'] = 'Kõikvõimalik'; $a->strings['Categories'] = 'Kategooriad'; $a->strings['%d contact in common'] = [ 0 => '%d ühine kontakt', 1 => '%d ühine kontakt', ]; -$a->strings['Archives'] = 'Arhiivid'; $a->strings['Persons'] = 'Isikud'; $a->strings['Organisations'] = 'Organisatsioonid'; $a->strings['News'] = 'Uudised'; -$a->strings['Account Types'] = 'Kontode tüübid'; $a->strings['Export'] = 'Eksport'; $a->strings['Export calendar as ical'] = 'Ekspordi kalender kui ical'; $a->strings['No contacts'] = 'Kontakte pole'; @@ -285,7 +286,6 @@ $a->strings['%d Contact'] = [ ]; $a->strings['View Contacts'] = 'Kuva kontaktid'; $a->strings['Remove term'] = 'Eemalda tingimus'; -$a->strings['Saved Searches'] = 'Salvestatud otsingud'; $a->strings['More Trending Tags'] = 'Veel trendikaid silte'; $a->strings['Location:'] = 'Asukoht:'; $a->strings['Network:'] = 'Võrk'; @@ -380,6 +380,7 @@ $a->strings['Friends'] = 'Sõbrad'; $a->strings['Profile Photos'] = 'Profiilifotod'; $a->strings['Addons'] = 'Lisad'; $a->strings['Save Settings'] = 'Salvesta Sätted'; +$a->strings['Yes'] = 'Jah'; $a->strings['Manage Additional Features'] = 'Halda lisafunktsioone'; $a->strings['Show all'] = 'Näita kõik'; $a->strings['Event details'] = 'Sündmuse detailid'; @@ -483,7 +484,6 @@ $a->strings['Access denied.'] = 'Ligipääs keelatud.'; $a->strings['Submit Request'] = 'Saada taotlus'; $a->strings['You already added this contact.'] = 'Te juba lisasite selle kontakti.'; $a->strings['Diaspora support isn\'t enabled. Contact can\'t be added.'] = 'Diaspora toetus pole võimaldatud. Kontakti ei saa lisada.'; -$a->strings['OStatus support is disabled. Contact can\'t be added.'] = 'OStatus tugi pole võimaldatud. Kontakti ei saa lisada.'; $a->strings['Please answer the following:'] = 'Palun vasta järgnevale:'; $a->strings['Your Identity Address:'] = 'Sinu ID aadress:'; $a->strings['Profile URL'] = 'Profiili URL'; @@ -527,7 +527,6 @@ $a->strings['Actions'] = 'Tegevused'; $a->strings['Status'] = 'Staatus'; $a->strings['Toggle Blocked status'] = 'Vaheta Bloki staatust'; $a->strings['Toggle Ignored status'] = 'Vahea Ignoreeritud staatust'; -$a->strings['Yes'] = 'Jah'; $a->strings['You aren\'t following this contact.'] = 'Sa ei jälgi seda kontakti.'; $a->strings['Unfollowing is currently not supported by your network.'] = 'Mittejälgimine ei ole sinu võrgus hetkel toetatud.'; $a->strings['Disconnect/Unfollow'] = 'Ühenda lahti/Ära jälgi'; @@ -621,7 +620,6 @@ $a->strings['Personal Notifications'] = 'Isiklikud teavitused'; $a->strings['Home Notifications'] = 'Kodu teavitused'; $a->strings['Show unread'] = 'Näita lugemata'; $a->strings['{0} requested registration'] = '{0} taotleb registreerimist'; -$a->strings['Keep this window open until done.'] = 'Hoia see aken lahti kuni kõik tehtud. '; $a->strings['No contact provided.'] = 'Kontakti ei esitletud. '; $a->strings['Couldn\'t fetch information for contact.'] = 'Ei saanud infot kontakti tarbeks. '; $a->strings['Couldn\'t fetch friends for contact.'] = 'Ei saanud sõbrainfot kontakti tarbeks. '; @@ -629,8 +627,7 @@ $a->strings['Done'] = 'Tehtud'; $a->strings['success'] = 'edukas'; $a->strings['failed'] = 'ebaõnnestus'; $a->strings['ignored'] = 'ignoreeritud'; -$a->strings['Remote privacy information not available.'] = 'Kaugturvainfo pole kättesaadav.'; -$a->strings['Visible to:'] = 'Nähtav: '; +$a->strings['Keep this window open until done.'] = 'Hoia see aken lahti kuni kõik tehtud. '; $a->strings['Edit post'] = 'Muuda postitust'; $a->strings['web link'] = 'hüperlink'; $a->strings['Insert video link'] = 'Lisa videolink'; @@ -640,10 +637,12 @@ $a->strings['audio link'] = 'audiolink'; $a->strings['Remove Item Tag'] = 'Eemalda elemendi Silt'; $a->strings['Select a tag to remove: '] = 'Vali tag mida eemaldada: '; $a->strings['Remove'] = 'Eemalda'; +$a->strings['Remote privacy information not available.'] = 'Kaugturvainfo pole kättesaadav.'; +$a->strings['Visible to:'] = 'Nähtav: '; $a->strings['No contacts.'] = 'Kontakte pole.'; -$a->strings['%s\'s timeline'] = '%s ajajoon'; $a->strings['%s\'s posts'] = '%s postitused'; $a->strings['%s\'s comments'] = '%s kommentaarid'; +$a->strings['%s\'s timeline'] = '%s ajajoon'; $a->strings['Image exceeds size limit of %s'] = 'Pilt ületab suuruse limiidi %s '; $a->strings['Image upload didn\'t complete, please try again'] = 'Pildi üleslaadimine ei lõppenud, palun ürita uuesti'; $a->strings['Image file is missing'] = 'Pildifail on puudu'; @@ -835,7 +834,6 @@ $a->strings['%s commented on %s\'s post'] = '%s kommenteeris %s postitust '; $a->strings['%s created a new post'] = '%s tegi uue postituse'; $a->strings['Friend Suggestion'] = 'Sõbrasoovitus'; $a->strings['Friend/Connect Request'] = 'Sõbra/Ühenduse taotlus'; -$a->strings['New Follower'] = 'Uus jälgija'; $a->strings['a private message'] = 'privaatsõnum'; $a->strings['%s commented on an item/conversation you have been following.'] = '%s kommenteeris elementi/vestlust mida jälgid.'; $a->strings['Name:'] = 'Nimi:'; @@ -862,8 +860,4 @@ $a->strings['Reply to %s'] = 'Vasta %s le'; $a->strings['More'] = 'Rohkem'; $a->strings['Show more'] = 'Näita rohkem '; $a->strings['Show fewer'] = 'Näita vähem'; -$a->strings['%s is now following %s.'] = '%s jälgib nüüd %s .'; -$a->strings['following'] = 'jälgib'; -$a->strings['%s stopped following %s.'] = '%slõpetas %s jälgimise'; -$a->strings['stopped following'] = 'lõpetas jälgimise'; $a->strings['Please upload a profile photo.'] = 'Palun lae profiilifoto üles'; diff --git a/view/lang/fr/messages.po b/view/lang/fr/messages.po index cb915bdf22..2c2aebe951 100644 --- a/view/lang/fr/messages.po +++ b/view/lang/fr/messages.po @@ -1,8 +1,7 @@ # FRIENDICA Distributed Social Network -# SPDX-FileCopyrightText: Copyright (C) 2010-2024, the Friendica project -# -# SPDX-License-Identifier: AGPL-3.0-or-later -# +# Copyright (C) 2010-2024, the Friendica project +# This file is distributed under the same license as the Friendica package. +# # Translators: # Anthronautindex.php
dans votre répertoire Friendica. The nom de fichier défini dans la ligne 'error_log'
est relatif au répertoire d'installation de Friendica et le serveur web doit avoir le droit d'écriture sur ce fichier. Les lignes log_errors
et display_errors
prennent les valeurs 0
et 1
respectivement pour les activer ou désactiver."
-#: src/Module/Admin/Logs/View.php:72
+#: src/Module/Admin/Logs/View.php:58
#, php-format
msgid ""
"Error trying to open %1$s log file.upload_max_filesize
is set to %s (%s byte)"
msgstr "Taille maximale en octets des images téléversées. La valeur par défaut est 0, ce qui signifie aucune limite. Vous pouvez indiquer k, m, ou g après la valeur désirée pour Kio, Mio, Gio respectivement.\n\t\t\t\t\t\t\t\t\t\t\t\t\tLa valeur de upload_max_filesize
dans votre PHP.ini
doit être définie au minimum à la valeur désirée.\n\t\t\t\t\t\t\t\t\t\t\t\t\tActuellement upload_max_filesize
est définie à %s (%s octet)"
-#: src/Module/Admin/Site.php:499
+#: src/Module/Admin/Site.php:489
msgid "Maximum image length"
msgstr "Longueur maximale des images"
-#: src/Module/Admin/Site.php:499
+#: src/Module/Admin/Site.php:489
msgid ""
"Maximum length in pixels of the longest side of uploaded images. Default is "
"-1, which means no limits."
msgstr "Longueur maximale en pixels du plus long côté des images téléversées. La valeur par défaut est -1 : absence de limite."
-#: src/Module/Admin/Site.php:500
+#: src/Module/Admin/Site.php:490
msgid "JPEG image quality"
msgstr "Qualité JPEG des images"
-#: src/Module/Admin/Site.php:500
+#: src/Module/Admin/Site.php:490
msgid ""
"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
"100, which is full quality."
msgstr "Les JPEGs téléversés seront sauvegardés avec ce niveau de qualité [0-100]. La valeur par défaut est 100, soit la qualité maximale."
-#: src/Module/Admin/Site.php:502
+#: src/Module/Admin/Site.php:491
+msgid "Maximum media file size"
+msgstr "Taille maximale d'un média"
+
+#: src/Module/Admin/Site.php:491
+#, php-format
+msgid ""
+"Maximum size in bytes of uploaded media files. Default is 0, which means no limits. You can put k, m, or g behind the desired value for KiB, MiB, GiB, respectively.\n"
+"\t\t\t\t\t\t\t\t\t\t\t\t\tThe value of upload_max_filesize
in your PHP.ini
needs be set to at least the desired limit.\n"
+"\t\t\t\t\t\t\t\t\t\t\t\t\tCurrently upload_max_filesize
is set to %s (%s byte)"
+msgstr "Taille maximale en octets des fichiers multimédias envoyés. La valeur par défaut est 0, ce qui signifie aucune limite. Vous pouvez mettre k, m, ou g derrière la valeur souhaitée pour KiB, MiB, GiB, respectivement.\n\t\t\t\t\t\t\t\t\t\t\t\t\tLa valeur de upload_max_filesize
dans votre PHP.ini
doit être au moins égale à la limite souhaitée.\n\t\t\t\t\t\t\t\t\t\t\t\t\tActuellement, upload_max_filesize
est fixé à %s (%s byte)"
+
+#: src/Module/Admin/Site.php:496
msgid "Register policy"
msgstr "Politique d'inscription"
-#: src/Module/Admin/Site.php:503
+#: src/Module/Admin/Site.php:497
msgid "Maximum Users"
msgstr "Utilisateurs maximum"
-#: src/Module/Admin/Site.php:503
+#: src/Module/Admin/Site.php:497
msgid ""
"If defined, the register policy is automatically closed when the given "
"number of users is reached and reopens the registry when the number drops "
@@ -4792,167 +4802,167 @@ msgid ""
"not when the policy is set to approval."
msgstr "Si défini, la politique d'inscription est automatiquement définie à \"Fermé\" quand le nombre d'utilisateurs est atteint et mis à \"Ouvert\" quand le nombre descend en dessous de la limite. Cela fonctionne uniquement si la politique est défini à \"Ouvert\" ou \"Fermé\", mais pas quand celle-ci est définie à \"Demande une approbation\"."
-#: src/Module/Admin/Site.php:504
+#: src/Module/Admin/Site.php:498
msgid "Maximum Daily Registrations"
msgstr "Inscriptions maximum par jour"
-#: src/Module/Admin/Site.php:504
+#: src/Module/Admin/Site.php:498
msgid ""
"If registration is permitted above, this sets the maximum number of new user"
" registrations to accept per day. If register is set to closed, this "
"setting has no effect."
msgstr "Si les inscriptions sont permises ci-dessus, ceci fixe le nombre maximum d'inscriptions de nouveaux utilisateurs acceptées par jour. Si les inscriptions ne sont pas ouvertes, ce paramètre n'a aucun effet."
-#: src/Module/Admin/Site.php:505
+#: src/Module/Admin/Site.php:499
msgid "Register text"
msgstr "Texte d'inscription"
-#: src/Module/Admin/Site.php:505
+#: src/Module/Admin/Site.php:499
msgid ""
"Will be displayed prominently on the registration page. You can use BBCode "
"here."
msgstr "Ce texte est affiché sur la page d'inscription. Les BBCodes sont autorisés."
-#: src/Module/Admin/Site.php:506
+#: src/Module/Admin/Site.php:500
msgid "Forbidden Nicknames"
msgstr "Identifiants réservés"
-#: src/Module/Admin/Site.php:506
+#: src/Module/Admin/Site.php:500
msgid ""
"Comma separated list of nicknames that are forbidden from registration. "
"Preset is a list of role names according RFC 2142."
msgstr "Liste d'identifiants réservés séparés par des virgules. Ces identifiants ne peuvent pas être utilisés pour s'enregistrer. La liste de base provient de la RFC 2142."
-#: src/Module/Admin/Site.php:507
+#: src/Module/Admin/Site.php:501
msgid "Accounts abandoned after x days"
msgstr "Les comptes sont abandonnés après x jours"
-#: src/Module/Admin/Site.php:507
+#: src/Module/Admin/Site.php:501
msgid ""
"Will not waste system resources polling external sites for abandonded "
"accounts. Enter 0 for no time limit."
msgstr "Pour ne pas gaspiller les ressources système, on cesse d'interroger les sites distants pour les comptes abandonnés. Mettre 0 pour désactiver cette fonction."
-#: src/Module/Admin/Site.php:508
+#: src/Module/Admin/Site.php:502
msgid "Allowed friend domains"
msgstr "Domaines autorisés"
-#: src/Module/Admin/Site.php:508
+#: src/Module/Admin/Site.php:502
msgid ""
"Comma separated list of domains which are allowed to establish friendships "
"with this site. Wildcards are accepted. Empty to allow any domains"
msgstr "Une liste de domaines, séparés par des virgules, autorisés à établir des relations avec les utilisateurs de ce site. Les '*' sont acceptés. Laissez vide pour autoriser tous les domaines"
-#: src/Module/Admin/Site.php:509
+#: src/Module/Admin/Site.php:503
msgid "Allowed email domains"
msgstr "Domaines courriel autorisés"
-#: src/Module/Admin/Site.php:509
+#: src/Module/Admin/Site.php:503
msgid ""
"Comma separated list of domains which are allowed in email addresses for "
"registrations to this site. Wildcards are accepted. Empty to allow any "
"domains"
msgstr "Liste de domaines - séparés par des virgules - dont les adresses de courriel sont autorisées à s'inscrire sur ce site. Les '*' sont acceptées. Laissez vide pour autoriser tous les domaines"
-#: src/Module/Admin/Site.php:510
+#: src/Module/Admin/Site.php:504
msgid "Disallowed email domains"
msgstr "Domaines courriel interdits"
-#: src/Module/Admin/Site.php:510
+#: src/Module/Admin/Site.php:504
msgid ""
"Comma separated list of domains which are rejected as email addresses for "
"registrations to this site. Wildcards are accepted."
msgstr "Liste, séparé par des virgules, de domaines d'adresse de courriel qui seront rejetés lors de l'enregistrement. Caractères de remplacement autorisés."
-#: src/Module/Admin/Site.php:511
+#: src/Module/Admin/Site.php:505
msgid "No OEmbed rich content"
msgstr "Désactiver le texte riche avec OEmbed"
-#: src/Module/Admin/Site.php:511
+#: src/Module/Admin/Site.php:505
msgid ""
"Don't show the rich content (e.g. embedded PDF), except from the domains "
"listed below."
msgstr "Evite le contenu riche avec OEmbed (comme un document PDF incrusté), sauf provenant des domaines autorisés listés ci-après."
-#: src/Module/Admin/Site.php:512
+#: src/Module/Admin/Site.php:506
msgid "Trusted third-party domains"
msgstr "Domaines tierce-partie de confiance"
-#: src/Module/Admin/Site.php:512
+#: src/Module/Admin/Site.php:506
msgid ""
"Comma separated list of domains from which content is allowed to be embedded"
" in posts like with OEmbed. All sub-domains of the listed domains are "
"allowed as well."
msgstr "Liste séparée par des virgules de domaines dont le contenu est autorisé à être intégré dans les publications comme avec OEmbed. Tous les sous-domaines des domains mentionnés sont autorisés également."
-#: src/Module/Admin/Site.php:513
+#: src/Module/Admin/Site.php:507
msgid "Block public"
msgstr "Interdire la publication globale"
-#: src/Module/Admin/Site.php:513
+#: src/Module/Admin/Site.php:507
msgid ""
"Check to block public access to all otherwise public personal pages on this "
"site unless you are currently logged in."
msgstr "Cocher pour bloquer les accès anonymes (non-connectés) à tout sauf aux pages personnelles publiques."
-#: src/Module/Admin/Site.php:514
+#: src/Module/Admin/Site.php:508
msgid "Force publish"
msgstr "Forcer la publication globale"
-#: src/Module/Admin/Site.php:514
+#: src/Module/Admin/Site.php:508
msgid ""
"Check to force all profiles on this site to be listed in the site directory."
msgstr "Cocher pour publier obligatoirement tous les profils locaux dans l'annuaire du site."
-#: src/Module/Admin/Site.php:514
+#: src/Module/Admin/Site.php:508
msgid "Enabling this may violate privacy laws like the GDPR"
msgstr "Activer cette option peut potentiellement enfreindre les lois sur la protection de la vie privée comme le RGPD."
-#: src/Module/Admin/Site.php:515
+#: src/Module/Admin/Site.php:509
msgid "Global directory URL"
msgstr "URL de l'annuaire global"
-#: src/Module/Admin/Site.php:515
+#: src/Module/Admin/Site.php:509
msgid ""
"URL to the global directory. If this is not set, the global directory is "
"completely unavailable to the application."
msgstr "URL de l'annuaire global. Si ce champ n'est pas défini, l'annuaire global sera complètement indisponible pour l'application."
-#: src/Module/Admin/Site.php:516
+#: src/Module/Admin/Site.php:510
msgid "Private posts by default for new users"
msgstr "Publications privées par défaut pour les nouveaux utilisateurs"
-#: src/Module/Admin/Site.php:516
+#: src/Module/Admin/Site.php:510
msgid ""
"Set default post permissions for all new members to the default privacy "
"circle rather than public."
msgstr "Rendre les publications de tous les nouveaux utilisateurs accessibles seulement par le cercle de contacts par défaut, et non par tout le monde."
-#: src/Module/Admin/Site.php:517
+#: src/Module/Admin/Site.php:511
msgid "Don't include post content in email notifications"
msgstr "Ne pas inclure le contenu de la publication dans le courriel de notification"
-#: src/Module/Admin/Site.php:517
+#: src/Module/Admin/Site.php:511
msgid ""
"Don't include the content of a post/comment/private message/etc. in the "
"email notifications that are sent out from this site, as a privacy measure."
msgstr "Ne pas inclure le contenu d'un(e) publication/commentaire/message privé/etc dans le courriel de notification qui est envoyé à partir du site, par mesure de confidentialité."
-#: src/Module/Admin/Site.php:518
+#: src/Module/Admin/Site.php:512
msgid "Disallow public access to addons listed in the apps menu."
msgstr "Interdire l’accès public pour les extensions listées dans le menu apps."
-#: src/Module/Admin/Site.php:518
+#: src/Module/Admin/Site.php:512
msgid ""
"Checking this box will restrict addons listed in the apps menu to members "
"only."
msgstr "Cocher cette case restreint la liste des extensions dans le menu des applications seulement aux membres."
-#: src/Module/Admin/Site.php:519
+#: src/Module/Admin/Site.php:513
msgid "Don't embed private images in posts"
msgstr "Ne pas miniaturiser les images privées dans les publications"
-#: src/Module/Admin/Site.php:519
+#: src/Module/Admin/Site.php:513
msgid ""
"Don't replace locally-hosted private photos in posts with an embedded copy "
"of the image. This means that contacts who receive posts containing private "
@@ -4960,11 +4970,11 @@ msgid ""
"while."
msgstr "Ne remplacez pas les images privées hébergées localement dans les publications avec une image attaché en copie, car cela signifie que le contact qui reçoit les publications contenant ces photos privées devra s’authentifier pour charger chaque image, ce qui peut prendre du temps."
-#: src/Module/Admin/Site.php:520
+#: src/Module/Admin/Site.php:514
msgid "Explicit Content"
msgstr "Contenu adulte"
-#: src/Module/Admin/Site.php:520
+#: src/Module/Admin/Site.php:514
msgid ""
"Set this to announce that your node is used mostly for explicit content that"
" might not be suited for minors. This information will be published in the "
@@ -4973,329 +4983,319 @@ msgid ""
"will be shown at the user registration page."
msgstr "Activez cette option si votre site est principalement utilisé pour publier du contenu adulte. Cette information est publique et peut être utilisée pour filtrer votre site dans le répertoire de site global. Elle est également affichée sur la page d'inscription."
-#: src/Module/Admin/Site.php:521
+#: src/Module/Admin/Site.php:515
msgid "Only local search"
msgstr "Recherche locale uniquement"
-#: src/Module/Admin/Site.php:521
+#: src/Module/Admin/Site.php:515
msgid ""
"Blocks search for users who are not logged in to prevent crawlers from "
"blocking your system."
msgstr "Bloque la recherche pour les utilisateurs non connectés afin d'éviter aux robot d'indexation de bloquer votre système."
-#: src/Module/Admin/Site.php:522
+#: src/Module/Admin/Site.php:516
msgid "Blocked tags for trending tags"
msgstr "Étiquettes bloquées pour les tendances"
-#: src/Module/Admin/Site.php:522
+#: src/Module/Admin/Site.php:516
msgid ""
"Comma separated list of hashtags that shouldn't be displayed in the trending"
" tags."
msgstr "Liste d'étiquettes, séparées par des virgules, qui ne seront pas affichées dans les tendances."
-#: src/Module/Admin/Site.php:523
+#: src/Module/Admin/Site.php:517
msgid "Cache contact avatars"
msgstr "Mettre en cache les avatars des contacts"
-#: src/Module/Admin/Site.php:523
+#: src/Module/Admin/Site.php:517
msgid ""
"Locally store the avatar pictures of the contacts. This uses a lot of "
"storage space but it increases the performance."
msgstr "Stocker localement les images d'avatar des contacts. Cela utilise beaucoup d'espace disque mais améliore les performances."
-#: src/Module/Admin/Site.php:524
+#: src/Module/Admin/Site.php:518
msgid "Allow Users to set remote_self"
msgstr "Autoriser les utilisateurs à définir remote_self"
-#: src/Module/Admin/Site.php:524
+#: src/Module/Admin/Site.php:518
msgid ""
"With checking this, every user is allowed to mark every contact as a "
"remote_self in the repair contact dialog. Setting this flag on a contact "
"causes mirroring every posting of that contact in the users stream."
msgstr "Cocher cette case, permet à chaque utilisateur de marquer chaque contact comme un remote_self dans la boîte de dialogue de réparation des contacts. Activer cette fonction à un contact engendre la réplique de toutes les publications d'un contact dans le flux d'activités des utilisateurs."
-#: src/Module/Admin/Site.php:525
+#: src/Module/Admin/Site.php:519
msgid "Allow Users to set up relay channels"
msgstr "Autorise les utilisateurs à créer les chaînes relais"
-#: src/Module/Admin/Site.php:525
+#: src/Module/Admin/Site.php:519
msgid ""
"If enabled, it is possible to create relay users that are used to reshare "
"content based on user defined channels."
msgstr "Si activé, il est possible de créer des utilisateurs relai qui seront utilisés pour repartager du contenu basé sur les chaînes de l'utilisateur."
-#: src/Module/Admin/Site.php:526
+#: src/Module/Admin/Site.php:520
msgid "Adjust the feed poll frequency"
msgstr "Régler la fréquence d'interrogation"
-#: src/Module/Admin/Site.php:526
+#: src/Module/Admin/Site.php:520
msgid "Automatically detect and set the best feed poll frequency."
msgstr "Détecte automatiquement et défini la meilleure fréquence d'interrogation."
-#: src/Module/Admin/Site.php:527
+#: src/Module/Admin/Site.php:521
msgid "Minimum poll interval"
msgstr "Intervalle minimum de requêtage"
-#: src/Module/Admin/Site.php:527
+#: src/Module/Admin/Site.php:521
msgid ""
"Minimal distance in minutes between two polls for mail and feed contacts. "
"Reasonable values are between 1 and 59."
msgstr "Temps minimum entre deux requêtages en minutes pour les courriels et les contacts. Les valeurs raisonnables sont entre 1 et 59."
-#: src/Module/Admin/Site.php:528
+#: src/Module/Admin/Site.php:522
msgid "Enable multiple registrations"
msgstr "Autoriser les comptes multiples"
-#: src/Module/Admin/Site.php:528
+#: src/Module/Admin/Site.php:522
msgid "Enable users to register additional accounts for use as pages."
msgstr "Permet aux utilisateurs d'enregistrer des comptes supplémentaires pour être utilisés comme pages."
-#: src/Module/Admin/Site.php:529
+#: src/Module/Admin/Site.php:523
msgid "Enable OpenID"
msgstr "Activer OpenID"
-#: src/Module/Admin/Site.php:529
+#: src/Module/Admin/Site.php:523
msgid "Enable OpenID support for registration and logins."
msgstr "Permet l'utilisation d'OpenID pour l'enregistrement de compte et l'identification."
-#: src/Module/Admin/Site.php:530
+#: src/Module/Admin/Site.php:524
msgid "Enable full name check"
msgstr "Activer la vérification du nom complet"
-#: src/Module/Admin/Site.php:530
+#: src/Module/Admin/Site.php:524
msgid ""
"Prevents users from registering with a display name with fewer than two "
"parts separated by spaces."
msgstr "Empêche les utilisateurs de s'enregistrer avec un nom d'affichage n'ayant pas au minimum 2 parties séparées par des espaces."
-#: src/Module/Admin/Site.php:531
+#: src/Module/Admin/Site.php:525
msgid "Email administrators on new registration"
msgstr "Envoyer un courriel aux administrateurs lors d'une nouvelle inscription"
-#: src/Module/Admin/Site.php:531
+#: src/Module/Admin/Site.php:525
msgid ""
"If enabled and the system is set to an open registration, an email for each "
"new registration is sent to the administrators."
msgstr "Si activé et que le système est défini à une inscription ouverte, un courriel sera envoyé pour chaque nouvelle inscription aux administrateurs."
-#: src/Module/Admin/Site.php:532
+#: src/Module/Admin/Site.php:526
msgid "Community pages for visitors"
msgstr "Affichage de la page communauté pour les utilisateurs anonymes"
-#: src/Module/Admin/Site.php:532
+#: src/Module/Admin/Site.php:526
msgid ""
"Which community pages should be available for visitors. Local users always "
"see both pages."
msgstr "Quelles pages communauté sont disponibles pour les utilisateurs anonymes."
-#: src/Module/Admin/Site.php:533
+#: src/Module/Admin/Site.php:527
msgid "Posts per user on community page"
msgstr "Nombre de publications par utilisateur sur la page de la communauté"
-#: src/Module/Admin/Site.php:533
+#: src/Module/Admin/Site.php:527
msgid ""
"The maximum number of posts per user on the local community page. This is "
"useful, when a single user floods the local community page."
msgstr "Nombre maximum de publications par utilisateur sur la page de communauté locale. Utile lorsqu'un seul utilisateur inonde la page de communauté locale."
-#: src/Module/Admin/Site.php:534
+#: src/Module/Admin/Site.php:528
msgid "Posts per server on community page"
msgstr "Publications par serveur sur la page Communauté"
-#: src/Module/Admin/Site.php:534
+#: src/Module/Admin/Site.php:528
msgid ""
"The maximum number of posts per server on the global community page. This is"
" useful, when posts from a single server flood the global community page."
msgstr "Nombre maximum de publications par serveur sur la page de communauté globale. Utile lorsque les publications d'un seul serveur inonde la page de communauté globale."
-#: src/Module/Admin/Site.php:536
+#: src/Module/Admin/Site.php:530
msgid "Enable Mail support"
msgstr "Activer la prise en charge courriel"
-#: src/Module/Admin/Site.php:536
+#: src/Module/Admin/Site.php:530
msgid ""
"Enable built-in mail support to poll IMAP folders and to reply via mail."
msgstr "Permet de se connecter à un compte IMAP et de répondre directement aux courriels via Friendica."
-#: src/Module/Admin/Site.php:537
+#: src/Module/Admin/Site.php:531
msgid ""
"Mail support can't be enabled because the PHP IMAP module is not installed."
msgstr "La prise en charge courriel requiert le module PHP IMAP pour être activée."
-#: src/Module/Admin/Site.php:538
-msgid "Enable OStatus support"
-msgstr "Activer la prise en charge d'OStatus"
-
-#: src/Module/Admin/Site.php:538
-msgid ""
-"Enable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
-"communications in OStatus are public."
-msgstr "Permet la communication avec des comptes distants via OStatus (StatusNet, GNU Social, etc...). Toutes les publications OStatus sont publiques."
-
-#: src/Module/Admin/Site.php:540
+#: src/Module/Admin/Site.php:533
msgid ""
"Diaspora support can't be enabled because Friendica was installed into a sub"
" directory."
msgstr "Le support de Diaspora ne peut pas être activé parce que Friendica a été installé dans un sous-répertoire."
-#: src/Module/Admin/Site.php:541
+#: src/Module/Admin/Site.php:534
msgid "Enable Diaspora support"
msgstr "Activer le support de Diaspora"
-#: src/Module/Admin/Site.php:541
+#: src/Module/Admin/Site.php:534
msgid ""
"Enable built-in Diaspora network compatibility for communicating with "
"diaspora servers."
msgstr "Permet la communication avec des comptes distants via Diaspora. Ce protocole est principalement utilisé par la plate-forme Diaspora."
-#: src/Module/Admin/Site.php:542
+#: src/Module/Admin/Site.php:535
msgid "Verify SSL"
msgstr "Vérifier SSL"
-#: src/Module/Admin/Site.php:542
+#: src/Module/Admin/Site.php:535
msgid ""
"If you wish, you can turn on strict certificate checking. This will mean you"
" cannot connect (at all) to self-signed SSL sites."
msgstr "Si vous le souhaitez, vous pouvez activier la vérification stricte des certificats. Cela signifie que vous ne pourrez pas vous connecter (du tout) aux sites SSL munis d'un certificat auto-signé."
-#: src/Module/Admin/Site.php:543
+#: src/Module/Admin/Site.php:536
msgid "Proxy user"
msgstr "Utilisateur du proxy"
-#: src/Module/Admin/Site.php:543
+#: src/Module/Admin/Site.php:536
msgid "User name for the proxy server."
msgstr "Nom d'utilisateur pour le serveur proxy"
-#: src/Module/Admin/Site.php:544
+#: src/Module/Admin/Site.php:537
msgid "Proxy URL"
msgstr "URL du proxy"
-#: src/Module/Admin/Site.php:544
+#: src/Module/Admin/Site.php:537
msgid ""
"If you want to use a proxy server that Friendica should use to connect to "
"the network, put the URL of the proxy here."
msgstr "Si vous souhaitez utiliser un serveur proxy que Friendica devra employer pour se connecter au réseau, indiquez l'adresse du proxy ici."
-#: src/Module/Admin/Site.php:545
+#: src/Module/Admin/Site.php:538
msgid "Network timeout"
msgstr "Dépassement du délai d'attente du réseau"
-#: src/Module/Admin/Site.php:545
+#: src/Module/Admin/Site.php:538
msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
msgstr "Valeur en secondes. Mettre à 0 pour 'illimité' (pas recommandé)."
-#: src/Module/Admin/Site.php:546
+#: src/Module/Admin/Site.php:539
msgid "Maximum Load Average"
msgstr "Plafond de la charge moyenne"
-#: src/Module/Admin/Site.php:546
+#: src/Module/Admin/Site.php:539
#, php-format
msgid ""
"Maximum system load before delivery and poll processes are deferred - "
"default %d."
msgstr "La charge système maximal avant que les processus livraisons et de sondage de profils distants soient reportées. Défaut : %d."
-#: src/Module/Admin/Site.php:547
+#: src/Module/Admin/Site.php:540
msgid "Minimal Memory"
msgstr "Mémoire minimum"
-#: src/Module/Admin/Site.php:547
+#: src/Module/Admin/Site.php:540
msgid ""
"Minimal free memory in MB for the worker. Needs access to /proc/meminfo - "
"default 0 (deactivated)."
msgstr "Mémoire libre minimale pour les tâches de fond (en Mo). Requiert l'accès à /proc/meminfo
. La valeur par défaut est 0 (désactivé)."
-#: src/Module/Admin/Site.php:548
+#: src/Module/Admin/Site.php:541
msgid "Periodically optimize tables"
msgstr "Optimizer les tables régulièrement"
-#: src/Module/Admin/Site.php:548
+#: src/Module/Admin/Site.php:541
msgid "Periodically optimize tables like the cache and the workerqueue"
msgstr "Optimise régulièrement certaines tables de base de données très utilisées comme cache, locks, session, ou workerqueue."
-#: src/Module/Admin/Site.php:550
+#: src/Module/Admin/Site.php:543
msgid "Discover followers/followings from contacts"
msgstr "Découvrir la liste de contacts des contacts"
-#: src/Module/Admin/Site.php:550
+#: src/Module/Admin/Site.php:543
msgid ""
"If enabled, contacts are checked for their followers and following contacts."
msgstr "Si activé, ce serveur collecte la liste d'abonnés et d'abonnements des contacts suivants."
-#: src/Module/Admin/Site.php:551
+#: src/Module/Admin/Site.php:544
msgid "None - deactivated"
msgstr "Aucun - désactivé"
-#: src/Module/Admin/Site.php:552
+#: src/Module/Admin/Site.php:545
msgid ""
"Local contacts - contacts of our local contacts are discovered for their "
"followers/followings."
msgstr "Contacts locaux : Les contacts des utilisateurs de ce serveur"
-#: src/Module/Admin/Site.php:553
+#: src/Module/Admin/Site.php:546
msgid ""
"Interactors - contacts of our local contacts and contacts who interacted on "
"locally visible postings are discovered for their followers/followings."
msgstr "Interagisseurs : Les contacts des utilisateurs de ce serveur et les contacts qui ont intéragit avec les conversations dont ce serveur a connaissance."
-#: src/Module/Admin/Site.php:555
+#: src/Module/Admin/Site.php:548
msgid "Only update contacts/servers with local data"
msgstr "Mettre a jour que les contacts/serveurs ayant des données locales"
-#: src/Module/Admin/Site.php:555
+#: src/Module/Admin/Site.php:548
msgid ""
"If enabled, the system will only look for changes in contacts and servers "
"that engaged on this system by either being in a contact list of a user or "
"when posts or comments exists from the contact on this system."
msgstr "Si activé, le système ne recherchera que les modifications apportées aux contacts et aux serveurs qui se sont engagés dans ce système, soit parce qu'ils figurent dans la liste de contacts d'un utilisateur, soit parce que des messages ou des commentaires ont été publiés par le contact sur ce système."
-#: src/Module/Admin/Site.php:556
+#: src/Module/Admin/Site.php:549
msgid "Synchronize the contacts with the directory server"
msgstr "Synchroniser les contacts avec l'annuaire distant"
-#: src/Module/Admin/Site.php:556
+#: src/Module/Admin/Site.php:549
msgid ""
"if enabled, the system will check periodically for new contacts on the "
"defined directory server."
msgstr "Active l'ajout de nouveaux contacts depuis l'annuaire distant choisi."
-#: src/Module/Admin/Site.php:558
+#: src/Module/Admin/Site.php:551
msgid "Discover contacts from other servers"
msgstr "Découvrir des contacts des autres serveurs"
-#: src/Module/Admin/Site.php:558
+#: src/Module/Admin/Site.php:551
msgid ""
"Periodically query other servers for contacts and servers that they know of."
" The system queries Friendica, Mastodon and Hubzilla servers. Keep it "
"deactivated on small machines to decrease the database size and load."
msgstr "Le système interroge périodiquement d'autres serveurs (Friendica, Mastodon et Hubzilla) pour connaître les contacts et les serveurs qu'ils connaissent. Désactivez-le sur les petites machines pour réduire la taille et la charge de la base de données."
-#: src/Module/Admin/Site.php:559
+#: src/Module/Admin/Site.php:552
msgid "Days between requery"
msgstr "Nombre de jours entre les requêtes"
-#: src/Module/Admin/Site.php:559
+#: src/Module/Admin/Site.php:552
msgid ""
"Number of days after which a server is requeried for their contacts and "
"servers it knows of. This is only used when the discovery is activated."
msgstr "Nombre de jours après lesquels un serveur est interrogé sur ses contacts et les serveurs qu'il connaît. Ce paramètre n'est utilisé que lorsque la découverte est activée."
-#: src/Module/Admin/Site.php:560
+#: src/Module/Admin/Site.php:553
msgid "Search the local directory"
msgstr "Chercher dans le répertoire local"
-#: src/Module/Admin/Site.php:560
+#: src/Module/Admin/Site.php:553
msgid ""
"Search the local directory instead of the global directory. When searching "
"locally, every search will be executed on the global directory in the "
"background. This improves the search results when the search is repeated."
msgstr "Cherche dans le répertoire local au lieu du répertoire local. Quand une recherche locale est effectuée, la même recherche est effectuée dans le répertoire global en tâche de fond. Cela améliore les résultats de la recherche si elle est réitérée."
-#: src/Module/Admin/Site.php:562
+#: src/Module/Admin/Site.php:555
msgid "Publish server information"
msgstr "Publier les informations du serveur"
-#: src/Module/Admin/Site.php:562
+#: src/Module/Admin/Site.php:555
msgid ""
"If enabled, general server and usage data will be published. The data "
"contains the name and version of the server, number of users with public "
@@ -5303,50 +5303,50 @@ msgid ""
" href=\"http://the-federation.info/\">the-federation.info for details."
msgstr "Active la publication de données générales sur ce serveur et son utilisation. Contient entre autres le nom et la version du serveur, le nombre d'utilisateurs avec un profil public, le nombre de publications et la liste des connecteurs activés. Voir the-federation.info pour les détails."
-#: src/Module/Admin/Site.php:564
+#: src/Module/Admin/Site.php:557
msgid "Check upstream version"
msgstr "Mises à jour"
-#: src/Module/Admin/Site.php:564
+#: src/Module/Admin/Site.php:557
msgid ""
"Enables checking for new Friendica versions at github. If there is a new "
"version, you will be informed in the admin panel overview."
msgstr "Permet de vérifier la présence de nouvelles versions de Friendica sur github. Si une nouvelle version est disponible, vous recevrez une notification dans l'interface d'administration."
-#: src/Module/Admin/Site.php:565
+#: src/Module/Admin/Site.php:558
msgid "Suppress Tags"
msgstr "Masquer les étiquettes"
-#: src/Module/Admin/Site.php:565
+#: src/Module/Admin/Site.php:558
msgid "Suppress showing a list of hashtags at the end of the posting."
msgstr "Ne pas afficher la liste des étiquettes à la fin d’un message."
-#: src/Module/Admin/Site.php:566
+#: src/Module/Admin/Site.php:559
msgid "Clean database"
msgstr "Nettoyer la base de données"
-#: src/Module/Admin/Site.php:566
+#: src/Module/Admin/Site.php:559
msgid ""
"Remove old remote items, orphaned database records and old content from some"
" other helper tables."
msgstr "Supprime les conversations distantes anciennes, les enregistrements orphelins et le contenu obsolète de certaines tables de débogage."
-#: src/Module/Admin/Site.php:567
+#: src/Module/Admin/Site.php:560
msgid "Lifespan of remote items"
msgstr "Durée de vie des conversations distantes"
-#: src/Module/Admin/Site.php:567
+#: src/Module/Admin/Site.php:560
msgid ""
"When the database cleanup is enabled, this defines the days after which "
"remote items will be deleted. Own items, and marked or filed items are "
"always kept. 0 disables this behaviour."
msgstr "Si le nettoyage de la base de donnée est actif, cette valeur représente le délai en jours après lequel les conversations distantes sont supprimées. Les conversations démarrées par un utilisateur local, étoilées ou archivées sont toujours conservées. 0 pour désactiver."
-#: src/Module/Admin/Site.php:568
+#: src/Module/Admin/Site.php:561
msgid "Lifespan of unclaimed items"
msgstr "Durée de vie des conversations relayées"
-#: src/Module/Admin/Site.php:568
+#: src/Module/Admin/Site.php:561
msgid ""
"When the database cleanup is enabled, this defines the days after which "
"unclaimed remote items (mostly content from the relay) will be deleted. "
@@ -5354,185 +5354,184 @@ msgid ""
"items if set to 0."
msgstr "Si le nettoyage de la base de donnée est actif, cette valeur représente le délai en jours après lequel les conversations relayées qui n'ont pas reçu d'interactions locales sont supprimées. La valeur par défaut est 90 jours. 0 pour aligner cette valeur sur la durée de vie des conversations distantes."
-#: src/Module/Admin/Site.php:569
+#: src/Module/Admin/Site.php:562
msgid "Lifespan of raw conversation data"
msgstr "Durée de vie des méta-données de conversation"
-#: src/Module/Admin/Site.php:569
+#: src/Module/Admin/Site.php:562
msgid ""
-"The conversation data is used for ActivityPub and OStatus, as well as for "
-"debug purposes. It should be safe to remove it after 14 days, default is 90 "
-"days."
-msgstr "Cette valeur représente le délai en jours après lequel les méta-données de conversations sont supprimées. Ces méta-données sont utilisées par les protocoles ActivityPub et OStatus, et pour le débogage. Il est prudent de conserver ces meta-données pendant au moins 14 jours. La valeur par défaut est 90 jours."
+"The conversation data is used for ActivityPub, as well as for debug "
+"purposes. It should be safe to remove it after 14 days, default is 90 days."
+msgstr "Les données de conversation sont utilisées pour ActivityPub, ainsi qu'à des fins de débogage. Elles peuvent être supprimées en toute sécurité après 14 jours, la durée par défaut étant de 90 jours."
-#: src/Module/Admin/Site.php:570
+#: src/Module/Admin/Site.php:563
msgid "Maximum numbers of comments per post"
msgstr "Nombre maximum de commentaires par publication"
-#: src/Module/Admin/Site.php:570
+#: src/Module/Admin/Site.php:563
msgid "How much comments should be shown for each post? Default value is 100."
msgstr "Nombre de commentaire affiché pour chaque publication. Valeur par défaut : 100."
-#: src/Module/Admin/Site.php:571
+#: src/Module/Admin/Site.php:564
msgid "Maximum numbers of comments per post on the display page"
msgstr "Nombre maximum de commentaires par publication dans leur page dédié (/display)"
-#: src/Module/Admin/Site.php:571
+#: src/Module/Admin/Site.php:564
msgid ""
"How many comments should be shown on the single view for each post? Default "
"value is 1000."
msgstr "Valeur par défaut : 1 000."
-#: src/Module/Admin/Site.php:572
+#: src/Module/Admin/Site.php:565
msgid "Items per page"
msgstr "Éléments par page"
-#: src/Module/Admin/Site.php:572
+#: src/Module/Admin/Site.php:565
msgid ""
"Number of items per page in stream pages (network, community, "
"profile/contact statuses, search)."
msgstr "Nombre d'éléments par page (concerne les pages Réseau, Communauté, Statuts de profil/contact, Recherche)"
-#: src/Module/Admin/Site.php:573
+#: src/Module/Admin/Site.php:566
msgid "Items per page for mobile devices"
msgstr "Éléments par page pour les appareils mobiles"
-#: src/Module/Admin/Site.php:573
+#: src/Module/Admin/Site.php:566
msgid ""
"Number of items per page in stream pages (network, community, "
"profile/contact statuses, search) for mobile devices."
msgstr "Nombre d'éléments par page pour les appareils mobiles (concerne les pages Réseau, Communauté, Statuts de profil/contact, Recherche)"
-#: src/Module/Admin/Site.php:574
+#: src/Module/Admin/Site.php:567
msgid "Temp path"
msgstr "Chemin des fichiers temporaires"
-#: src/Module/Admin/Site.php:574
+#: src/Module/Admin/Site.php:567
msgid ""
"If you have a restricted system where the webserver can't access the system "
"temp path, enter another path here."
msgstr "Si vous n'avez pas la possibilité d'avoir accès au répertoire temp, entrez un autre répertoire ici."
-#: src/Module/Admin/Site.php:575
+#: src/Module/Admin/Site.php:568
msgid "Only search in tags"
msgstr "Rechercher seulement dans les étiquettes"
-#: src/Module/Admin/Site.php:575
+#: src/Module/Admin/Site.php:568
msgid "On large systems the text search can slow down the system extremely."
msgstr "La recherche textuelle peut ralentir considérablement les systèmes de grande taille."
-#: src/Module/Admin/Site.php:576
+#: src/Module/Admin/Site.php:569
msgid "Limited search scope"
msgstr "Champ de recherche limité"
-#: src/Module/Admin/Site.php:576
+#: src/Module/Admin/Site.php:569
msgid ""
"If enabled, searches will only be performed in the data used for the "
"channels and not in all posts."
msgstr "Si activé, les recherches ne seront effectuées que dans les données utilisées pour les chaînes et non dans toutes les publications."
-#: src/Module/Admin/Site.php:577
+#: src/Module/Admin/Site.php:570
msgid "Maximum age of items in the search table"
msgstr "Âge maximum des éléments dans la table de recherche"
-#: src/Module/Admin/Site.php:577
+#: src/Module/Admin/Site.php:570
msgid ""
"Maximum age of items in the search table in days. Lower values will increase"
" the performance and reduce disk usage. 0 means no age restriction."
msgstr "Âge maximum, en jours, des éléments dans la table de recherche. Une valeur plus faible améliorera les performances et réduira l'utilisation du disque. 0 signifie aucune restriction."
-#: src/Module/Admin/Site.php:578
+#: src/Module/Admin/Site.php:571
msgid "Generate counts per contact circle when calculating network count"
msgstr "Générer les comptes par cercle de contacts lors du calcul du nombre de réseaux."
-#: src/Module/Admin/Site.php:578
+#: src/Module/Admin/Site.php:571
msgid ""
"On systems with users that heavily use contact circles the query can be very"
" expensive."
msgstr "Sur les systèmes avec des utilisateurs utilisant fortement les cercles de contact, cette requête peut être très coûteuse."
-#: src/Module/Admin/Site.php:579
+#: src/Module/Admin/Site.php:572
msgid "Process \"view\" activities"
msgstr "Traiter les activités \"view\""
-#: src/Module/Admin/Site.php:579
+#: src/Module/Admin/Site.php:572
msgid ""
"\"view\" activities are mostly geberated by Peertube systems. Per default "
"they are not processed for performance reasons. Only activate this option on"
" performant system."
msgstr "Les activités \"view\" sont principalement gérées par les systèmes Peertube. Par défaut, elles ne sont pas traitées pour des raisons de performance. N'activez cette option que sur un système performant."
-#: src/Module/Admin/Site.php:580
+#: src/Module/Admin/Site.php:573
msgid "Days, after which a contact is archived"
msgstr "Nombre de jours après lesquels un contact est archivé"
-#: src/Module/Admin/Site.php:580
+#: src/Module/Admin/Site.php:573
msgid ""
"Number of days that we try to deliver content or to update the contact data "
"before we archive a contact."
msgstr "Nombre de jours pendant lesquels nous essayons d'envoyer du contenu ou de mettre à jour les données d'un contact avant d'archiver celui-ci."
-#: src/Module/Admin/Site.php:582
+#: src/Module/Admin/Site.php:575
msgid "Maximum number of parallel workers"
msgstr "Nombre maximum de tâche de fond simultanés"
-#: src/Module/Admin/Site.php:582
+#: src/Module/Admin/Site.php:575
#, php-format
msgid ""
"On shared hosters set this to %d. On larger systems, values of %d are great."
" Default value is %d."
msgstr "Sur un hébergement partagé, mettez %d. Sur des serveurs plus puissants, %d est optimal. La valeur par défaut est %d."
-#: src/Module/Admin/Site.php:583
+#: src/Module/Admin/Site.php:576
msgid "Maximum load for workers"
msgstr "Charge maximum pour les tâches de fond"
-#: src/Module/Admin/Site.php:583
+#: src/Module/Admin/Site.php:576
msgid "Maximum load that causes a cooldown before each worker function call."
msgstr "Génère un délai d'attente si une tache de fond atteint la charge maximale. "
-#: src/Module/Admin/Site.php:584
+#: src/Module/Admin/Site.php:577
msgid "Enable fastlane"
msgstr "Activer la file prioritaire"
-#: src/Module/Admin/Site.php:584
+#: src/Module/Admin/Site.php:577
msgid ""
"When enabed, the fastlane mechanism starts an additional worker if processes"
" with higher priority are blocked by processes of lower priority."
msgstr "Lorsqu'il est activé, le mécanisme de file prioritaire démarre une tâche de fond additionnelle quand des tâches de fond de haute priorité sont bloquées par des tâches de moindre priorité."
-#: src/Module/Admin/Site.php:585
+#: src/Module/Admin/Site.php:578
msgid "Decoupled receiver"
msgstr "Récepteur découplé"
-#: src/Module/Admin/Site.php:585
+#: src/Module/Admin/Site.php:578
msgid ""
"Decouple incoming ActivityPub posts by processing them in the background via"
" a worker process. Only enable this on fast systems."
msgstr "Découple les messages ActivityPub entrants en les traitant en arrière-plan par l'intermédiaire d'une tâche de fond. N'activez cette option que sur les systèmes rapides."
-#: src/Module/Admin/Site.php:586
+#: src/Module/Admin/Site.php:579
msgid "Cron interval"
msgstr "Intervalle du cron"
-#: src/Module/Admin/Site.php:586
+#: src/Module/Admin/Site.php:579
msgid "Minimal period in minutes between two calls of the \"Cron\" worker job."
msgstr "Durée minimale entre deux appels de la tâche \"Cron\""
-#: src/Module/Admin/Site.php:587
+#: src/Module/Admin/Site.php:580
msgid "Worker defer limit"
msgstr "Limite de report d'une tâche de fond"
-#: src/Module/Admin/Site.php:587
+#: src/Module/Admin/Site.php:580
msgid ""
"Per default the systems tries delivering for 15 times before dropping it."
msgstr "Par défaut, le système tente d'effectuer un livraison 15 fois avant d'abandonner."
-#: src/Module/Admin/Site.php:588
+#: src/Module/Admin/Site.php:581
msgid "Worker fetch limit"
msgstr "Limite de récupération des tâches"
-#: src/Module/Admin/Site.php:588
+#: src/Module/Admin/Site.php:581
msgid ""
"Number of worker tasks that are fetched in a single query. Higher values "
"should increase the performance, too high values will mostly likely decrease"
@@ -5540,214 +5539,214 @@ msgid ""
"system."
msgstr "Nombre de tâches de fond récupérées en une seule requête. Des valeurs plus élevées devraient augmenter les performances, des valeurs trop élevées les diminueront très probablement. Ne modifiez ces valeurs que lorsque vous savez comment mesurer les performances de votre système."
-#: src/Module/Admin/Site.php:590
+#: src/Module/Admin/Site.php:583
msgid "Direct relay transfer"
msgstr "Relai direct"
-#: src/Module/Admin/Site.php:590
+#: src/Module/Admin/Site.php:583
msgid ""
"Enables the direct transfer to other servers without using the relay servers"
msgstr "Soumet les conversations publiques aux serveurs distants sans passer par le serveur relai."
-#: src/Module/Admin/Site.php:591
+#: src/Module/Admin/Site.php:584
msgid "Relay scope"
msgstr "Filtre du relai"
-#: src/Module/Admin/Site.php:591
+#: src/Module/Admin/Site.php:584
msgid ""
"Can be \"all\" or \"tags\". \"all\" means that every public post should be "
"received. \"tags\" means that only posts with selected tags should be "
"received."
msgstr "\"Tous\" signifie que toutes les conversations publiques en provenance du relai sont acceptées. \"Étiquettes\" signifie que seules les conversations comportant les étiquettes suivantes sont acceptées."
-#: src/Module/Admin/Site.php:591 src/Module/Contact/Profile.php:328
-#: src/Module/Settings/TwoFactor/Index.php:146
+#: src/Module/Admin/Site.php:584 src/Module/Contact/Profile.php:314
+#: src/Module/Settings/TwoFactor/Index.php:132
msgid "Disabled"
msgstr "Désactivé"
-#: src/Module/Admin/Site.php:591
+#: src/Module/Admin/Site.php:584
msgid "all"
msgstr "Tous"
-#: src/Module/Admin/Site.php:591
+#: src/Module/Admin/Site.php:584
msgid "tags"
msgstr "étiquettes"
-#: src/Module/Admin/Site.php:592
+#: src/Module/Admin/Site.php:585
msgid "Server tags"
msgstr "Étiquettes de filtre du relai"
-#: src/Module/Admin/Site.php:592
+#: src/Module/Admin/Site.php:585
msgid "Comma separated list of tags for the \"tags\" subscription."
msgstr "Liste d'étiquettes autorisées, séparées par des virgules, en provenance des relais."
-#: src/Module/Admin/Site.php:593
+#: src/Module/Admin/Site.php:586
msgid "Deny Server tags"
msgstr "Étiquettes refusés"
-#: src/Module/Admin/Site.php:593
+#: src/Module/Admin/Site.php:586
msgid "Comma separated list of tags that are rejected."
msgstr "Liste d'étiquettes refusées, séparées par des virgules, en provenance des relais."
-#: src/Module/Admin/Site.php:594
+#: src/Module/Admin/Site.php:587
msgid "Maximum amount of tags"
msgstr "Quantité maximum d'étiquettes"
-#: src/Module/Admin/Site.php:594
+#: src/Module/Admin/Site.php:587
msgid ""
"Maximum amount of tags in a post before it is rejected as spam. The post has"
" to contain at least one link. Posts from subscribed accounts will not be "
"rejected."
msgstr "Quantité maximum d'étiquettes dans une publication avant que celle-ci soit rejetée comme spam. La publication doit contenir au moins un lien. Les publications des comptes abonnés ne sont pas rejetées."
-#: src/Module/Admin/Site.php:595
+#: src/Module/Admin/Site.php:588
msgid "Allow user tags"
msgstr "Inclure les étiquettes des utilisateurs"
-#: src/Module/Admin/Site.php:595
+#: src/Module/Admin/Site.php:588
msgid ""
"If enabled, the tags from the saved searches will used for the \"tags\" "
"subscription in addition to the \"relay_server_tags\"."
msgstr "Ajoute les étiquettes des recherches enregistrées des utilisateurs aux étiquettes autorisés en provenance des relais."
-#: src/Module/Admin/Site.php:596
+#: src/Module/Admin/Site.php:589
msgid "Deny undetected languages"
msgstr "Refuser les langues non détectées"
-#: src/Module/Admin/Site.php:596
+#: src/Module/Admin/Site.php:589
msgid "If enabled, posts with undetected languages will be rejected."
msgstr "Si actif, les publications avec des langues non détectées seront rejetés."
-#: src/Module/Admin/Site.php:597
+#: src/Module/Admin/Site.php:590
msgid "Language Quality"
msgstr "Qualité de la langue"
-#: src/Module/Admin/Site.php:597
+#: src/Module/Admin/Site.php:590
msgid "The minimum language quality that is required to accept the post."
msgstr "La qualité de la langue minimale requise pour accepter la publication."
-#: src/Module/Admin/Site.php:598
+#: src/Module/Admin/Site.php:591
msgid "Number of languages for the language detection"
msgstr "Nombre de langues pour la détection la de langue"
-#: src/Module/Admin/Site.php:598
+#: src/Module/Admin/Site.php:591
msgid ""
"The system detects a list of languages per post. Only if the desired "
"languages are in the list, the message will be accepted. The higher the "
"number, the more posts will be falsely detected."
msgstr "Le système détecte une liste de langues par publication. La publication n'est acceptée que si les langues souhaitées figurent dans la liste. Plus le nombre est élevé, plus le nombre de publications détectées à tort est important."
-#: src/Module/Admin/Site.php:600
+#: src/Module/Admin/Site.php:593
msgid "Maximum age of channel"
msgstr "Age maximal d'une chaîne"
-#: src/Module/Admin/Site.php:600
+#: src/Module/Admin/Site.php:593
msgid ""
"This defines the maximum age in hours of items that should be displayed in "
"channels. This affects the channel performance."
msgstr "Ceci définit l'âge maximum en heures des éléments qui doivent être affichés dans les chaînes. Cela affecte les performances des chaînes."
-#: src/Module/Admin/Site.php:601
+#: src/Module/Admin/Site.php:594
msgid "Maximum number of channel posts"
msgstr "Nombre maximum de publications sur une chaîne"
-#: src/Module/Admin/Site.php:601
+#: src/Module/Admin/Site.php:594
msgid ""
"For performance reasons, the channels use a dedicated table to store "
"content. The higher the value the slower the channels."
msgstr "Pour des raisons de performance, les chaînes utilisent une table dédiée pour stocker le contenu. Plus la valeur est élevée, plus les chaînes sont lentes."
-#: src/Module/Admin/Site.php:602
+#: src/Module/Admin/Site.php:595
msgid "Interaction score days"
msgstr "Intervalle pour le score d'interaction"
-#: src/Module/Admin/Site.php:602
+#: src/Module/Admin/Site.php:595
msgid "Number of days that are used to calculate the interaction score."
msgstr "Nombre de jours utilisés pour calculer le score d'interaction."
-#: src/Module/Admin/Site.php:603
+#: src/Module/Admin/Site.php:596
msgid "Maximum number of posts per author"
msgstr "Nombre maximum de publications par auteur"
-#: src/Module/Admin/Site.php:603
+#: src/Module/Admin/Site.php:596
msgid ""
"Maximum number of posts per page by author if the contact frequency is set "
"to \"Display only few posts\". If there are more posts, then the post with "
"the most interactions will be displayed."
msgstr "Nombre maximum de publication par page par auteur si la fréquence de contact est réglée sur \"Afficher quelques publications\". S'il y a plus de publications, les publications ayant le plus d'interactions seront affichées."
-#: src/Module/Admin/Site.php:604
+#: src/Module/Admin/Site.php:597
msgid "Sharer interaction days"
msgstr "Intervalle d'interaction de partageurs"
-#: src/Module/Admin/Site.php:604
+#: src/Module/Admin/Site.php:597
msgid ""
"Number of days of the last interaction that are used to define which sharers"
" are used for the \"sharers of sharers\" channel."
msgstr "Nombre de jours depuis la dernière interaction, utilisé pour définir les partageurs utilisés pour la chaîne \"Partageurs de partageurs\"."
-#: src/Module/Admin/Site.php:607
+#: src/Module/Admin/Site.php:600
msgid "Start Relocation"
msgstr "Démarrer le déménagement"
-#: src/Module/Admin/Storage.php:46
+#: src/Module/Admin/Storage.php:32
#, php-format
msgid "Storage backend, %s is invalid."
msgstr "Le moteur de stockage %s est invalide."
-#: src/Module/Admin/Storage.php:73
+#: src/Module/Admin/Storage.php:59
#, php-format
msgid "Storage backend %s error: %s"
msgstr "Moteur de stockage %s erreur : %s"
-#: src/Module/Admin/Storage.php:84 src/Module/Admin/Storage.php:87
+#: src/Module/Admin/Storage.php:70 src/Module/Admin/Storage.php:73
msgid "Invalid storage backend setting value."
msgstr "Valeur de paramètre de moteur de stockage invalide."
-#: src/Module/Admin/Storage.php:139
+#: src/Module/Admin/Storage.php:125
msgid "Current Storage Backend"
msgstr "Moteur de stockage actuel"
-#: src/Module/Admin/Storage.php:140
+#: src/Module/Admin/Storage.php:126
msgid "Storage Configuration"
msgstr "Configuration du stockage"
-#: src/Module/Admin/Storage.php:141 src/Module/BaseAdmin.php:91
+#: src/Module/Admin/Storage.php:127 src/Module/BaseAdmin.php:77
msgid "Storage"
msgstr "Stockage"
-#: src/Module/Admin/Storage.php:143
+#: src/Module/Admin/Storage.php:129
msgid "Save & Use storage backend"
msgstr "Enregistrer et utiliser ce moteur de stockage"
-#: src/Module/Admin/Storage.php:144
+#: src/Module/Admin/Storage.php:130
msgid "Use storage backend"
msgstr "Utiliser ce moteur de stockage"
-#: src/Module/Admin/Storage.php:145
+#: src/Module/Admin/Storage.php:131
msgid "Save & Reload"
msgstr "Enregistrer et recharger"
-#: src/Module/Admin/Storage.php:146
+#: src/Module/Admin/Storage.php:132
msgid "This backend doesn't have custom settings"
msgstr "Ce moteur de stockage n'offre pas de paramètres personnalisés."
-#: src/Module/Admin/Storage.php:148
+#: src/Module/Admin/Storage.php:134
msgid ""
"Changing the current backend is prohibited because it is set by an "
"environment variable"
msgstr "Il n'est pas possible de changer le moteur de stockage car il est configuré avec une variable d'environnement."
-#: src/Module/Admin/Storage.php:150
+#: src/Module/Admin/Storage.php:136
msgid "Database (legacy)"
msgstr "Base de donnée (historique)"
-#: src/Module/Admin/Summary.php:55
+#: src/Module/Admin/Summary.php:41
#, php-format
msgid "Template engine (%s) error: %s"
msgstr "Moteur de template (%s) erreur : %s"
-#: src/Module/Admin/Summary.php:59
+#: src/Module/Admin/Summary.php:45
#, php-format
msgid ""
"Your DB still runs with MyISAM tables. You should change the engine type to "
@@ -5758,7 +5757,7 @@ msgid ""
" an automatic conversion.php bin/console.php dbstructure update
depuis votre répertoire Friendica et noter les erreurs potentielles."
-#: src/Module/Admin/Summary.php:98
+#: src/Module/Admin/Summary.php:84
msgid ""
"The last update failed. Please run \"php bin/console.php dbstructure "
"update\" from the command line and have a look at the errors that might "
"appear. (Some of the errors are possibly inside the logfile.)"
msgstr "La dernière mise à jour a échoué. Merci d'exécuter \"php bin/console.php dbstructure update\" depuis la ligne de commandes et de surveiller les erreurs qui pourraient survenir (Certaines erreurs pourraient être dans le fichier journal)."
-#: src/Module/Admin/Summary.php:102
+#: src/Module/Admin/Summary.php:88
msgid ""
"The system.url entry is missing. This is a low level setting and can lead to"
" unexpected behavior. Please add a valid entry as soon as possible in the "
"config file or per console command!"
msgstr "L'entrée system.url est manquante. Il s'agit d'un paramètre bas niveau qui peut conduire à un comportement non attendu. Merci d'ajouter une entrée valide dès que possible dans le fichier de configuration ou via la console de commandes !"
-#: src/Module/Admin/Summary.php:107
+#: src/Module/Admin/Summary.php:93
msgid "The worker was never executed. Please check your database structure!"
msgstr "La tâche de fond n'a pas encore été exécutée. Vérifiez la structure de votre base de données."
-#: src/Module/Admin/Summary.php:109
+#: src/Module/Admin/Summary.php:95
#, php-format
msgid ""
"The last worker execution was on %s UTC. This is older than one hour. Please"
" check your crontab settings."
msgstr "La dernière exécution de la tâche de fond s'est déroulée à %s, c'est-à-dire il y a plus d'une heure. Vérifiez les réglages de crontab."
-#: src/Module/Admin/Summary.php:114
+#: src/Module/Admin/Summary.php:100
#, php-format
msgid ""
"Friendica's configuration now is stored in config/local.config.php, please "
@@ -5825,7 +5824,7 @@ msgid ""
"help with the transition."
msgstr "La configuration de votre site Friendica est maintenant stockée dans le fichier config/local.config.php
, veuillez copier le fichier config/local-sample.config.php
et transférer votre configuration depuis le fichier .htconfig.php
. Veuillez consulter la page d'aide de configuration (en anglais) pour vous aider dans la transition."
-#: src/Module/Admin/Summary.php:118
+#: src/Module/Admin/Summary.php:104
#, php-format
msgid ""
"Friendica's configuration now is stored in config/local.config.php, please "
@@ -5834,7 +5833,7 @@ msgid ""
"page for help with the transition."
msgstr "La configuration de votre site Friendica est maintenant stockée dans le fichier config/local.config.php
, veuillez copier le fichier config/local-sample.config.php
et transférer votre configuration depuis le fichier config/local.ini.php
. Veuillez consulter la page d'aide de configuration (en anglais) pour vous aider dans la transition."
-#: src/Module/Admin/Summary.php:124
+#: src/Module/Admin/Summary.php:110
#, php-format
msgid ""
"%s is not reachable on your system. This is a severe "
@@ -5842,107 +5841,107 @@ msgid ""
"href=\"%s\">the installation page for help."
msgstr "%s n'est pas accessible sur votre site. C'est un problème de configuration sévère qui empêche toute communication avec les serveurs distants. Veuillez consulter la page d'aide à l'installation (en anglais) pour plus d'information."
-#: src/Module/Admin/Summary.php:148
+#: src/Module/Admin/Summary.php:134
#, php-format
msgid ""
"Friendica's system.basepath was updated from '%s' to '%s'. Please remove the"
" system.basepath from your db to avoid differences."
msgstr "Le system.basepath de Friendica a été mis à jour de '%s' à '%s'. Merci de supprimer le system.basepath de votre base de données pour éviter des différences."
-#: src/Module/Admin/Summary.php:156
+#: src/Module/Admin/Summary.php:142
#, php-format
msgid ""
"Friendica's current system.basepath '%s' is wrong and the config file '%s' "
"isn't used."
msgstr "Le system.basepath actuel de Friendica, '%s' est erroné et le fichier de configuration '%s' n'est pas utilisé."
-#: src/Module/Admin/Summary.php:164
+#: src/Module/Admin/Summary.php:150
#, php-format
msgid ""
"Friendica's current system.basepath '%s' is not equal to the config file "
"'%s'. Please fix your configuration."
msgstr "Le system.basepath '%s' actuel de Friendica n'est pas le même que le fichier de configuration '%s'. Merci de corriger votre configuration."
-#: src/Module/Admin/Summary.php:175
+#: src/Module/Admin/Summary.php:161
msgid "Message queues"
msgstr "Files d'attente des messages"
-#: src/Module/Admin/Summary.php:181
+#: src/Module/Admin/Summary.php:167
msgid "Server Settings"
msgstr "Paramètres du site"
-#: src/Module/Admin/Summary.php:199
+#: src/Module/Admin/Summary.php:185
msgid "Version"
msgstr "Version"
-#: src/Module/Admin/Summary.php:203
+#: src/Module/Admin/Summary.php:189
msgid "Active addons"
msgstr "Extensions actives"
-#: src/Module/Admin/Themes/Details.php:63 src/Module/Admin/Themes/Index.php:71
+#: src/Module/Admin/Themes/Details.php:49 src/Module/Admin/Themes/Index.php:57
#, php-format
msgid "Theme %s disabled."
msgstr "Thème %s désactivé."
-#: src/Module/Admin/Themes/Details.php:65 src/Module/Admin/Themes/Index.php:73
+#: src/Module/Admin/Themes/Details.php:51 src/Module/Admin/Themes/Index.php:59
#, php-format
msgid "Theme %s successfully enabled."
msgstr "Thème %s activé avec succès."
-#: src/Module/Admin/Themes/Details.php:67 src/Module/Admin/Themes/Index.php:75
+#: src/Module/Admin/Themes/Details.php:53 src/Module/Admin/Themes/Index.php:61
#, php-format
msgid "Theme %s failed to install."
msgstr "Le thème %s a échoué à s'installer."
-#: src/Module/Admin/Themes/Details.php:89
+#: src/Module/Admin/Themes/Details.php:75
msgid "Screenshot"
msgstr "Capture d'écran"
-#: src/Module/Admin/Themes/Details.php:97
-#: src/Module/Admin/Themes/Index.php:118 src/Module/BaseAdmin.php:93
+#: src/Module/Admin/Themes/Details.php:83
+#: src/Module/Admin/Themes/Index.php:104 src/Module/BaseAdmin.php:79
msgid "Themes"
msgstr "Thèmes"
-#: src/Module/Admin/Themes/Embed.php:80
+#: src/Module/Admin/Themes/Embed.php:66
msgid "Unknown theme."
msgstr "Thème inconnu."
-#: src/Module/Admin/Themes/Index.php:57
+#: src/Module/Admin/Themes/Index.php:43
msgid "Themes reloaded"
msgstr "Thèmes rechargés"
-#: src/Module/Admin/Themes/Index.php:120
+#: src/Module/Admin/Themes/Index.php:106
msgid "Reload active themes"
msgstr "Recharger les thèmes actifs"
-#: src/Module/Admin/Themes/Index.php:124
+#: src/Module/Admin/Themes/Index.php:110
#, php-format
msgid "No themes found on the system. They should be placed in %1$s"
msgstr "Aucun thème trouvé. Leur emplacement d'installation est%1$s."
-#: src/Module/Admin/Themes/Index.php:125
+#: src/Module/Admin/Themes/Index.php:111
msgid "[Experimental]"
msgstr "[Expérimental]"
-#: src/Module/Admin/Themes/Index.php:126
+#: src/Module/Admin/Themes/Index.php:112
msgid "[Unsupported]"
msgstr "[Non supporté]"
-#: src/Module/Admin/Tos.php:79
+#: src/Module/Admin/Tos.php:65
msgid "Display Terms of Service"
msgstr "Afficher les Conditions d'Utilisation"
-#: src/Module/Admin/Tos.php:79
+#: src/Module/Admin/Tos.php:65
msgid ""
"Enable the Terms of Service page. If this is enabled a link to the terms "
"will be added to the registration form and the general information page."
msgstr "Active la page de Conditions d'Utilisation. Un lien vers cette page est ajouté dans le formulaire d'inscription et la page A Propos."
-#: src/Module/Admin/Tos.php:80
+#: src/Module/Admin/Tos.php:66
msgid "Display Privacy Statement"
msgstr "Afficher la Politique de Confidentialité"
-#: src/Module/Admin/Tos.php:80
+#: src/Module/Admin/Tos.php:66
#, php-format
msgid ""
"Show some informations regarding the needed information to operate the node "
@@ -5950,160 +5949,160 @@ msgid ""
"noreferrer\">EU-GDPR."
msgstr "Afficher quelques informations à propos des données nécessaires pour opérer un nœud conforme par exemple au RGPD Européen."
-#: src/Module/Admin/Tos.php:81
+#: src/Module/Admin/Tos.php:67
msgid "Privacy Statement Preview"
msgstr "Aperçu de la Politique de Confidentialité"
-#: src/Module/Admin/Tos.php:83
+#: src/Module/Admin/Tos.php:69
msgid "The Terms of Service"
msgstr "Conditions d'Utilisation"
-#: src/Module/Admin/Tos.php:83
+#: src/Module/Admin/Tos.php:69
msgid ""
"Enter the Terms of Service for your node here. You can use BBCode. Headers "
"of sections should be [h2] and below."
msgstr "Saisissez les Conditions d'Utilisations de votre site. Les BBCodes sont disponibles, les titres commencent à [h2]."
-#: src/Module/Admin/Tos.php:84
+#: src/Module/Admin/Tos.php:70
msgid "The rules"
msgstr "Les règles"
-#: src/Module/Admin/Tos.php:84
+#: src/Module/Admin/Tos.php:70
msgid "Enter your system rules here. Each line represents one rule."
msgstr "Saisissez les règles de votre système ici. Chaque ligne représente une règle."
-#: src/Module/Api/ApiResponse.php:293
+#: src/Module/Api/ApiResponse.php:279
#, php-format
msgid "API endpoint %s %s is not implemented but might be in the future."
msgstr "Le point de terminaison de l'API %s%s n'est pas implémenté mais pourrait l'être à l'avenir."
-#: src/Module/Api/Mastodon/Apps.php:73
+#: src/Module/Api/Mastodon/Apps.php:59
msgid "Missing parameters"
msgstr "Paramètres manquants"
-#: src/Module/Api/Mastodon/Statuses/Bookmark.php:50
+#: src/Module/Api/Mastodon/Statuses/Bookmark.php:36
msgid "Only starting posts can be bookmarked"
msgstr "Seuls les publications initiales peuvent être ajoutées aux signets"
-#: src/Module/Api/Mastodon/Statuses/Mute.php:51
+#: src/Module/Api/Mastodon/Statuses/Mute.php:37
msgid "Only starting posts can be muted"
msgstr "Les notifications de conversation ne peuvent être ignorées qu'à partir de la publication initiale"
-#: src/Module/Api/Mastodon/Statuses/Reblog.php:58
+#: src/Module/Api/Mastodon/Statuses/Reblog.php:44
#, php-format
msgid "Posts from %s can't be shared"
msgstr "Les publications de %s ne peuvent pas être partagées"
-#: src/Module/Api/Mastodon/Statuses/Unbookmark.php:51
+#: src/Module/Api/Mastodon/Statuses/Unbookmark.php:37
msgid "Only starting posts can be unbookmarked"
msgstr "Seules les publications initiales peuvent être retirées des signets"
-#: src/Module/Api/Mastodon/Statuses/Unmute.php:51
+#: src/Module/Api/Mastodon/Statuses/Unmute.php:37
msgid "Only starting posts can be unmuted"
msgstr "Les notifications de conversation ne peuvent être rétablies qu'à partir de la publication initiale"
-#: src/Module/Api/Mastodon/Statuses/Unreblog.php:64
+#: src/Module/Api/Mastodon/Statuses/Unreblog.php:50
#, php-format
msgid "Posts from %s can't be unshared"
msgstr "Il n'est pas possible d'annuler le partage des publications de %s "
-#: src/Module/Api/Twitter/ContactEndpoint.php:66
+#: src/Module/Api/Twitter/ContactEndpoint.php:52
msgid "Contact not found"
msgstr "Contact non trouvé"
-#: src/Module/Apps.php:62
+#: src/Module/Apps.php:48
msgid "No installed applications."
msgstr "Pas d'application installée."
-#: src/Module/Apps.php:67
+#: src/Module/Apps.php:53
msgid "Applications"
msgstr "Applications"
-#: src/Module/Attach.php:49 src/Module/Attach.php:61
+#: src/Module/Attach.php:35 src/Module/Attach.php:47
msgid "Item was not found."
msgstr "Element introuvable."
-#: src/Module/BaseAdmin.php:54 src/Module/BaseAdmin.php:58
-#: src/Module/BaseModeration.php:77 src/Module/BaseModeration.php:81
+#: src/Module/BaseAdmin.php:40 src/Module/BaseAdmin.php:44
+#: src/Module/BaseModeration.php:63 src/Module/BaseModeration.php:67
msgid "Please login to continue."
msgstr "Merci de vous connecter pour continuer."
-#: src/Module/BaseAdmin.php:63
+#: src/Module/BaseAdmin.php:49
msgid "You don't have access to administration pages."
msgstr "Vous n'avez pas accès aux pages d'administration"
-#: src/Module/BaseAdmin.php:67
+#: src/Module/BaseAdmin.php:53
msgid ""
"Submanaged account can't access the administration pages. Please log back in"
" as the main account."
msgstr "Les comptes sous-gérés ne peuvent accéder aux pages d'administration. Veuillez vous identifier avec votre compte principal à la place."
-#: src/Module/BaseAdmin.php:86 src/Module/BaseModeration.php:109
+#: src/Module/BaseAdmin.php:72 src/Module/BaseModeration.php:95
msgid "Overview"
msgstr "Synthèse"
-#: src/Module/BaseAdmin.php:89 src/Module/BaseModeration.php:112
+#: src/Module/BaseAdmin.php:75 src/Module/BaseModeration.php:98
msgid "Configuration"
msgstr "Configuration"
-#: src/Module/BaseAdmin.php:94 src/Module/BaseSettings.php:110
+#: src/Module/BaseAdmin.php:80 src/Module/BaseSettings.php:96
msgid "Additional features"
msgstr "Fonctions supplémentaires"
-#: src/Module/BaseAdmin.php:97
+#: src/Module/BaseAdmin.php:83
msgid "Database"
msgstr "Base de données"
-#: src/Module/BaseAdmin.php:98
+#: src/Module/BaseAdmin.php:84
msgid "DB updates"
msgstr "Mise à jour de la base"
-#: src/Module/BaseAdmin.php:99
+#: src/Module/BaseAdmin.php:85
msgid "Inspect Deferred Workers"
msgstr "Tâches de fond reportées"
-#: src/Module/BaseAdmin.php:100
+#: src/Module/BaseAdmin.php:86
msgid "Inspect worker Queue"
msgstr "Tâches de fond en attente"
-#: src/Module/BaseAdmin.php:106 src/Module/BaseModeration.php:120
+#: src/Module/BaseAdmin.php:92 src/Module/BaseModeration.php:106
msgid "Diagnostics"
msgstr "Diagnostics"
-#: src/Module/BaseAdmin.php:107
+#: src/Module/BaseAdmin.php:93
msgid "PHP Info"
msgstr "PHP Info"
-#: src/Module/BaseAdmin.php:108
+#: src/Module/BaseAdmin.php:94
msgid "probe address"
msgstr "Tester une adresse"
-#: src/Module/BaseAdmin.php:109
+#: src/Module/BaseAdmin.php:95
msgid "check webfinger"
msgstr "Vérifier le webfinger"
-#: src/Module/BaseAdmin.php:110
+#: src/Module/BaseAdmin.php:96
msgid "Babel"
msgstr "Babel"
-#: src/Module/BaseAdmin.php:111 src/Module/Debug/ActivityPubConversion.php:143
+#: src/Module/BaseAdmin.php:97 src/Module/Debug/ActivityPubConversion.php:129
msgid "ActivityPub Conversion"
msgstr "Conversion ActivityPub"
-#: src/Module/BaseAdmin.php:120
+#: src/Module/BaseAdmin.php:106
msgid "Addon Features"
msgstr "Fonctionnalités des extensions"
-#: src/Module/BaseAdmin.php:121 src/Module/BaseModeration.php:129
+#: src/Module/BaseAdmin.php:107 src/Module/BaseModeration.php:115
msgid "User registrations waiting for confirmation"
msgstr "Inscriptions en attente de confirmation"
-#: src/Module/BaseApi.php:455 src/Module/BaseApi.php:471
-#: src/Module/BaseApi.php:487
+#: src/Module/BaseApi.php:441 src/Module/BaseApi.php:457
+#: src/Module/BaseApi.php:473
msgid "Too Many Requests"
msgstr "Trop de requêtes"
-#: src/Module/BaseApi.php:456
+#: src/Module/BaseApi.php:442
#, php-format
msgid "Daily posting limit of %d post reached. The post was rejected."
msgid_plural "Daily posting limit of %d posts reached. The post was rejected."
@@ -6111,7 +6110,7 @@ msgstr[0] "Limite quotidienne d'%d publication atteinte. La publication a été
msgstr[1] "Limite quotidienne de %d publications atteinte. La publication a été rejetée."
msgstr[2] "Limite quotidienne de %d publications atteinte. La publication a été rejetée."
-#: src/Module/BaseApi.php:472
+#: src/Module/BaseApi.php:458
#, php-format
msgid "Weekly posting limit of %d post reached. The post was rejected."
msgid_plural ""
@@ -6120,7 +6119,7 @@ msgstr[0] "Limite hebdomadaire d'%d unique publication atteinte, votre soumissio
msgstr[1] "Limite hebdomadaire de %d publications atteinte, votre soumission a été rejetée."
msgstr[2] "Limite hebdomadaire de %d publications atteinte, votre soumission a été rejetée."
-#: src/Module/BaseApi.php:488
+#: src/Module/BaseApi.php:474
#, php-format
msgid "Monthly posting limit of %d post reached. The post was rejected."
msgid_plural ""
@@ -6129,84 +6128,84 @@ msgstr[0] "La limite mensuelle de %d publication a été atteinte. La publicatio
msgstr[1] "La limite mensuelle de %d publications a été atteinte. La publication a été refusée."
msgstr[2] "La limite mensuelle de %d publications a été atteinte. La publication a été refusée."
-#: src/Module/BaseModeration.php:86
+#: src/Module/BaseModeration.php:72
msgid "You don't have access to moderation pages."
msgstr "Vous n'avez pas accès aux pages de modération."
-#: src/Module/BaseModeration.php:90
+#: src/Module/BaseModeration.php:76
msgid ""
"Submanaged account can't access the moderation pages. Please log back in as "
"the main account."
msgstr "Les comptes sous-gérés ne peuvent accéder aux pages de modération. Veuillez vous identifier avec votre compte principal à la place."
-#: src/Module/BaseModeration.php:110 src/Module/Moderation/Reports.php:115
+#: src/Module/BaseModeration.php:96 src/Module/Moderation/Reports.php:101
msgid "Reports"
msgstr "Signalements"
-#: src/Module/BaseModeration.php:113 src/Module/Moderation/Users/Index.php:148
-#: src/Module/Moderation/Users/Index.php:158
+#: src/Module/BaseModeration.php:99 src/Module/Moderation/Users/Index.php:134
+#: src/Module/Moderation/Users/Index.php:144
msgid "Users"
msgstr "Utilisateurs"
-#: src/Module/BaseModeration.php:115
+#: src/Module/BaseModeration.php:101
msgid "Tools"
msgstr "Outils"
-#: src/Module/BaseModeration.php:116
+#: src/Module/BaseModeration.php:102
msgid "Contact Blocklist"
msgstr "Liste de contacts bloqués"
-#: src/Module/BaseModeration.php:117
+#: src/Module/BaseModeration.php:103
msgid "Server Blocklist"
msgstr "Serveurs bloqués"
-#: src/Module/BaseModeration.php:118 src/Module/Moderation/Item/Delete.php:62
+#: src/Module/BaseModeration.php:104 src/Module/Moderation/Item/Delete.php:48
msgid "Delete Item"
msgstr "Supprimer un élément"
-#: src/Module/BaseModeration.php:121 src/Module/Moderation/Item/Source.php:82
+#: src/Module/BaseModeration.php:107 src/Module/Moderation/Item/Source.php:68
msgid "Item Source"
msgstr "Source de la publication"
-#: src/Module/BaseProfile.php:52 src/Module/Contact.php:513
+#: src/Module/BaseProfile.php:38 src/Module/Contact.php:488
msgid "Profile Details"
msgstr "Détails du profil"
-#: src/Module/BaseProfile.php:60
+#: src/Module/BaseProfile.php:46
msgid "Conversations started"
msgstr "Discussions commencées"
-#: src/Module/BaseProfile.php:111
+#: src/Module/BaseProfile.php:97
msgid "Only You Can See This"
msgstr "Vous seul pouvez voir ça"
-#: src/Module/BaseProfile.php:116 src/Module/Profile/Schedule.php:81
+#: src/Module/BaseProfile.php:102 src/Module/Profile/Schedule.php:67
msgid "Scheduled Posts"
msgstr "Publications programmées"
-#: src/Module/BaseProfile.php:119
+#: src/Module/BaseProfile.php:105
msgid "Posts that are scheduled for publishing"
msgstr "Publications programmées à l'avance"
-#: src/Module/BaseProfile.php:138 src/Module/BaseProfile.php:141
+#: src/Module/BaseProfile.php:124 src/Module/BaseProfile.php:127
msgid "Tips for New Members"
msgstr "Conseils aux nouveaux venus"
-#: src/Module/BaseSearch.php:71
+#: src/Module/BaseSearch.php:57
#, php-format
msgid "People Search - %s"
msgstr "Recherche de personne - %s"
-#: src/Module/BaseSearch.php:75
+#: src/Module/BaseSearch.php:61
#, php-format
msgid "Group Search - %s"
msgstr "Recherche de groupe - %s"
-#: src/Module/BaseSearch.php:121 src/Module/Contact/MatchInterests.php:140
+#: src/Module/BaseSearch.php:107 src/Module/Contact/MatchInterests.php:136
msgid "No matches"
msgstr "Aucune correspondance"
-#: src/Module/BaseSearch.php:147
+#: src/Module/BaseSearch.php:133
#, php-format
msgid ""
"%d result was filtered out because your node blocks the domain it is "
@@ -6220,267 +6219,267 @@ msgstr[0] "%d résultat a été filtré car votre nœud bloque le domaine sur le
msgstr[1] "%d résultats ont été filtrés car votre nœud bloque le domaine sur lequel ils sont enregistrés. Vous pouvez voir la liste des domaines que votre nœud bloque dans la page A propos."
msgstr[2] "%d résultats ont été filtrés car votre nœud bloque le domaine sur lequel ils sont enregistrés. Vous pouvez voir la liste des domaines que votre nœud bloque dans la page A propos."
-#: src/Module/BaseSettings.php:78
+#: src/Module/BaseSettings.php:64
msgid "Account"
msgstr "Compte"
-#: src/Module/BaseSettings.php:85 src/Module/Security/TwoFactor/Verify.php:96
-#: src/Module/Settings/TwoFactor/Index.php:138
+#: src/Module/BaseSettings.php:71 src/Module/Security/TwoFactor/Verify.php:82
+#: src/Module/Settings/TwoFactor/Index.php:124
msgid "Two-factor authentication"
msgstr "Authentification à deux facteurs"
-#: src/Module/BaseSettings.php:118
+#: src/Module/BaseSettings.php:104
msgid "Display"
msgstr "Affichage"
-#: src/Module/BaseSettings.php:132 src/Module/Settings/Connectors.php:213
+#: src/Module/BaseSettings.php:118 src/Module/Settings/Connectors.php:195
msgid "Social Networks"
msgstr "Réseaux sociaux"
-#: src/Module/BaseSettings.php:146 src/Module/Settings/Delegation.php:194
+#: src/Module/BaseSettings.php:132 src/Module/Settings/Delegation.php:180
msgid "Manage Accounts"
msgstr "Gérer vos comptes"
-#: src/Module/BaseSettings.php:153
+#: src/Module/BaseSettings.php:139
msgid "Connected apps"
msgstr "Applications connectées"
-#: src/Module/BaseSettings.php:160
+#: src/Module/BaseSettings.php:146
msgid "Remote servers"
msgstr "Serveurs distants"
-#: src/Module/BaseSettings.php:167 src/Module/Settings/UserExport.php:98
+#: src/Module/BaseSettings.php:153 src/Module/Settings/UserExport.php:84
msgid "Export personal data"
msgstr "Exporter"
-#: src/Module/BaseSettings.php:174
+#: src/Module/BaseSettings.php:160
msgid "Remove account"
msgstr "Supprimer le compte"
-#: src/Module/Bookmarklet.php:54
+#: src/Module/Bookmarklet.php:40
msgid "This page is missing a url parameter."
msgstr "Il manque un paramètre d'URL à cette adresse."
-#: src/Module/Bookmarklet.php:66
+#: src/Module/Bookmarklet.php:52
msgid "The post was created"
msgstr "La publication a été créée"
-#: src/Module/Calendar/Event/API.php:100 src/Module/Calendar/Event/API.php:135
-#: src/Module/Calendar/Event/Form.php:80
+#: src/Module/Calendar/Event/API.php:86 src/Module/Calendar/Event/API.php:121
+#: src/Module/Calendar/Event/Form.php:66
msgid "Invalid Request"
msgstr "Requête invalide"
-#: src/Module/Calendar/Event/API.php:109
+#: src/Module/Calendar/Event/API.php:95
msgid "Event id is missing."
msgstr "L'identifiant de l'évènement est manquant."
-#: src/Module/Calendar/Event/API.php:131
+#: src/Module/Calendar/Event/API.php:117
msgid "Failed to remove event"
msgstr "La suppression de l'évènement a échoué."
-#: src/Module/Calendar/Event/API.php:187 src/Module/Calendar/Event/API.php:189
+#: src/Module/Calendar/Event/API.php:173 src/Module/Calendar/Event/API.php:175
msgid "Event can not end before it has started."
msgstr "L'évènement ne peut pas se terminer avant d'avoir commencé."
-#: src/Module/Calendar/Event/API.php:196 src/Module/Calendar/Event/API.php:198
+#: src/Module/Calendar/Event/API.php:182 src/Module/Calendar/Event/API.php:184
msgid "Event title and start time are required."
msgstr "Vous devez donner un nom et un horaire de début à l'évènement."
-#: src/Module/Calendar/Event/Form.php:208
+#: src/Module/Calendar/Event/Form.php:194
msgid "Starting date and Title are required."
msgstr "La date de début et le titre sont requis."
-#: src/Module/Calendar/Event/Form.php:209
-#: src/Module/Calendar/Event/Form.php:214
+#: src/Module/Calendar/Event/Form.php:195
+#: src/Module/Calendar/Event/Form.php:200
msgid "Event Starts:"
msgstr "Début de l'évènement :"
-#: src/Module/Calendar/Event/Form.php:209
-#: src/Module/Calendar/Event/Form.php:237 src/Module/Debug/Probe.php:59
-#: src/Module/Install.php:201 src/Module/Install.php:227
-#: src/Module/Install.php:232 src/Module/Install.php:246
-#: src/Module/Install.php:255 src/Module/Install.php:260
-#: src/Module/Install.php:266 src/Module/Install.php:271
-#: src/Module/Install.php:285 src/Module/Install.php:298
-#: src/Module/Install.php:325
-#: src/Module/Moderation/Blocklist/Server/Add.php:136
-#: src/Module/Moderation/Blocklist/Server/Add.php:138
-#: src/Module/Moderation/Blocklist/Server/Import.php:129
-#: src/Module/Moderation/Blocklist/Server/Index.php:86
-#: src/Module/Moderation/Blocklist/Server/Index.php:87
-#: src/Module/Moderation/Blocklist/Server/Index.php:115
-#: src/Module/Moderation/Blocklist/Server/Index.php:116
-#: src/Module/Moderation/Item/Delete.php:67 src/Module/Register.php:155
-#: src/Module/Security/TwoFactor/Verify.php:101
-#: src/Module/Settings/Channels.php:190 src/Module/Settings/Channels.php:211
-#: src/Module/Settings/TwoFactor/Index.php:161
-#: src/Module/Settings/TwoFactor/Verify.php:158
+#: src/Module/Calendar/Event/Form.php:195
+#: src/Module/Calendar/Event/Form.php:223 src/Module/Debug/Probe.php:45
+#: src/Module/Install.php:187 src/Module/Install.php:213
+#: src/Module/Install.php:218 src/Module/Install.php:232
+#: src/Module/Install.php:241 src/Module/Install.php:246
+#: src/Module/Install.php:252 src/Module/Install.php:257
+#: src/Module/Install.php:271 src/Module/Install.php:284
+#: src/Module/Install.php:311
+#: src/Module/Moderation/Blocklist/Server/Add.php:122
+#: src/Module/Moderation/Blocklist/Server/Add.php:124
+#: src/Module/Moderation/Blocklist/Server/Import.php:113
+#: src/Module/Moderation/Blocklist/Server/Index.php:72
+#: src/Module/Moderation/Blocklist/Server/Index.php:73
+#: src/Module/Moderation/Blocklist/Server/Index.php:101
+#: src/Module/Moderation/Blocklist/Server/Index.php:102
+#: src/Module/Moderation/Item/Delete.php:53 src/Module/Register.php:141
+#: src/Module/Security/TwoFactor/Verify.php:87
+#: src/Module/Settings/Channels.php:176 src/Module/Settings/Channels.php:197
+#: src/Module/Settings/TwoFactor/Index.php:147
+#: src/Module/Settings/TwoFactor/Verify.php:144
msgid "Required"
msgstr "Requis"
-#: src/Module/Calendar/Event/Form.php:223
-#: src/Module/Calendar/Event/Form.php:247
+#: src/Module/Calendar/Event/Form.php:209
+#: src/Module/Calendar/Event/Form.php:233
msgid "Finish date/time is not known or not relevant"
msgstr "Date / heure de fin inconnue ou sans objet"
-#: src/Module/Calendar/Event/Form.php:225
-#: src/Module/Calendar/Event/Form.php:230
+#: src/Module/Calendar/Event/Form.php:211
+#: src/Module/Calendar/Event/Form.php:216
msgid "Event Finishes:"
msgstr "Fin de l'évènement :"
-#: src/Module/Calendar/Event/Form.php:237
-#: src/Module/Calendar/Event/Form.php:243
+#: src/Module/Calendar/Event/Form.php:223
+#: src/Module/Calendar/Event/Form.php:229
msgid "Title (BBCode not allowed)"
msgstr "Titre (BBCode non autorisé)"
-#: src/Module/Calendar/Event/Form.php:239
+#: src/Module/Calendar/Event/Form.php:225
msgid "Description (BBCode allowed)"
msgstr "Description (BBCode autorisé)"
-#: src/Module/Calendar/Event/Form.php:241
+#: src/Module/Calendar/Event/Form.php:227
msgid "Location (BBCode not allowed)"
msgstr "Localisation (BBCode non autorisé)"
-#: src/Module/Calendar/Event/Form.php:244
-#: src/Module/Calendar/Event/Form.php:245
+#: src/Module/Calendar/Event/Form.php:230
+#: src/Module/Calendar/Event/Form.php:231
msgid "Share this event"
msgstr "Partager cet évènement"
-#: src/Module/Calendar/Event/Form.php:251 src/Module/Profile/Profile.php:277
+#: src/Module/Calendar/Event/Form.php:237 src/Module/Profile/Profile.php:263
msgid "Basic"
msgstr "Simple"
-#: src/Module/Calendar/Export.php:94
+#: src/Module/Calendar/Export.php:80
msgid "This calendar format is not supported"
msgstr "Format de calendrier inconnu"
-#: src/Module/Calendar/Export.php:96
+#: src/Module/Calendar/Export.php:82
msgid "No exportable data found"
msgstr "Rien à exporter"
-#: src/Module/Calendar/Export.php:113
+#: src/Module/Calendar/Export.php:99
msgid "calendar"
msgstr "calendrier"
-#: src/Module/Calendar/Show.php:124
+#: src/Module/Calendar/Show.php:110
msgid "Events"
msgstr "Évènements"
-#: src/Module/Calendar/Show.php:125
+#: src/Module/Calendar/Show.php:111
msgid "View"
msgstr "Vue"
-#: src/Module/Calendar/Show.php:126
+#: src/Module/Calendar/Show.php:112
msgid "Create New Event"
msgstr "Créer un nouvel évènement"
-#: src/Module/Calendar/Show.php:132 src/Module/Settings/Display.php:297
+#: src/Module/Calendar/Show.php:118 src/Module/Settings/Display.php:283
msgid "list"
msgstr "liste"
-#: src/Module/Circle.php:57
+#: src/Module/Circle.php:43
msgid "Could not create circle."
msgstr "Impossible de créer le cercle."
-#: src/Module/Circle.php:68 src/Module/Circle.php:216
-#: src/Module/Circle.php:240
+#: src/Module/Circle.php:54 src/Module/Circle.php:202
+#: src/Module/Circle.php:226
msgid "Circle not found."
msgstr "Cercle introuvable."
-#: src/Module/Circle.php:74
+#: src/Module/Circle.php:60
msgid "Circle name was not changed."
msgstr "Le nom du cercle n'a pas été modifié."
-#: src/Module/Circle.php:92
+#: src/Module/Circle.php:78
msgid "Unknown circle."
msgstr "Cercle inconnu."
-#: src/Module/Circle.php:98 src/Module/Circle.php:107
-#: src/Module/Contact/Advanced.php:70 src/Module/Contact/Advanced.php:109
-#: src/Module/Contact/Contacts.php:71 src/Module/Contact/Conversations.php:86
-#: src/Module/Contact/Conversations.php:91
-#: src/Module/Contact/Conversations.php:96 src/Module/Contact/Media.php:61
-#: src/Module/Contact/Posts.php:78 src/Module/Contact/Posts.php:83
-#: src/Module/Contact/Posts.php:88 src/Module/Contact/Profile.php:159
-#: src/Module/Contact/Profile.php:164 src/Module/Contact/Profile.php:183
-#: src/Module/Contact/Redir.php:91 src/Module/Contact/Redir.php:145
-#: src/Module/FriendSuggest.php:71 src/Module/FriendSuggest.php:109
+#: src/Module/Circle.php:84 src/Module/Circle.php:93
+#: src/Module/Contact/Advanced.php:56 src/Module/Contact/Advanced.php:95
+#: src/Module/Contact/Contacts.php:57 src/Module/Contact/Conversations.php:72
+#: src/Module/Contact/Conversations.php:77
+#: src/Module/Contact/Conversations.php:82 src/Module/Contact/Media.php:47
+#: src/Module/Contact/Posts.php:64 src/Module/Contact/Posts.php:69
+#: src/Module/Contact/Posts.php:74 src/Module/Contact/Profile.php:145
+#: src/Module/Contact/Profile.php:150 src/Module/Contact/Profile.php:169
+#: src/Module/Contact/Redir.php:77 src/Module/Contact/Redir.php:131
+#: src/Module/FriendSuggest.php:57 src/Module/FriendSuggest.php:95
msgid "Contact not found."
msgstr "Contact introuvable."
-#: src/Module/Circle.php:102 src/Module/Contact/Contacts.php:66
+#: src/Module/Circle.php:88 src/Module/Contact/Contacts.php:52
msgid "Invalid contact."
msgstr "Contact invalide."
-#: src/Module/Circle.php:111 src/Module/Contact/Revoke.php:70
+#: src/Module/Circle.php:97 src/Module/Contact/Revoke.php:56
msgid "Contact is deleted."
msgstr "Le contact a été supprimé."
-#: src/Module/Circle.php:117
+#: src/Module/Circle.php:103
msgid "Unable to add the contact to the circle."
msgstr "Impossible d'ajouter le contact au cercle."
-#: src/Module/Circle.php:120
+#: src/Module/Circle.php:106
msgid "Contact successfully added to circle."
msgstr "Le contact a été ajouté au cercle."
-#: src/Module/Circle.php:124
+#: src/Module/Circle.php:110
msgid "Unable to remove the contact from the circle."
msgstr "Impossible de retirer le contact du cercle."
-#: src/Module/Circle.php:127
+#: src/Module/Circle.php:113
msgid "Contact successfully removed from circle."
msgstr "Le contact a été retiré du cercle."
-#: src/Module/Circle.php:131
+#: src/Module/Circle.php:117
msgid "Bad request."
msgstr "Requête invalide."
-#: src/Module/Circle.php:172
+#: src/Module/Circle.php:158
msgid "Save Circle"
msgstr "Enregistrer le cercle"
-#: src/Module/Circle.php:173
+#: src/Module/Circle.php:159
msgid "Filter"
msgstr "Filtre"
-#: src/Module/Circle.php:179
+#: src/Module/Circle.php:165
msgid "Create a circle of contacts/friends."
msgstr "Créer un cercle de contacts/amis."
-#: src/Module/Circle.php:221
+#: src/Module/Circle.php:207
msgid "Unable to remove circle."
msgstr "Impossible de supprimer le cercle."
-#: src/Module/Circle.php:272
+#: src/Module/Circle.php:258
msgid "Delete Circle"
msgstr "Supprimer le Cercle"
-#: src/Module/Circle.php:282
+#: src/Module/Circle.php:268
msgid "Edit Circle Name"
msgstr "Modifier le Nom du Cercle"
-#: src/Module/Circle.php:292
+#: src/Module/Circle.php:278
msgid "Members"
msgstr "Membres"
-#: src/Module/Circle.php:295
+#: src/Module/Circle.php:281
msgid "Circle is empty"
msgstr "Le cercle est vide"
-#: src/Module/Circle.php:311
+#: src/Module/Circle.php:297
msgid "Remove contact from circle"
msgstr "Retirer ce contact du cercle"
-#: src/Module/Circle.php:334
+#: src/Module/Circle.php:320
msgid "Click on a contact to add or remove."
msgstr "Cliquez sur un contact pour l'ajouter ou le supprimer."
-#: src/Module/Circle.php:351
+#: src/Module/Circle.php:337
msgid "Add contact to circle"
msgstr "Ajouter ce contact au cercle"
-#: src/Module/Contact.php:102
+#: src/Module/Contact.php:88
#, php-format
msgid "%d contact edited."
msgid_plural "%d contacts edited."
@@ -6488,192 +6487,192 @@ msgstr[0] "%d contact mis à jour."
msgstr[1] "%d contacts mis à jour."
msgstr[2] "%d contacts mis à jour."
-#: src/Module/Contact.php:353
+#: src/Module/Contact.php:328
msgid "Show all contacts"
msgstr "Montrer tous les contacts"
-#: src/Module/Contact.php:358 src/Module/Contact.php:437
-#: src/Module/Moderation/BaseUsers.php:85
+#: src/Module/Contact.php:333 src/Module/Contact.php:412
+#: src/Module/Moderation/BaseUsers.php:72
msgid "Pending"
msgstr "En attente"
-#: src/Module/Contact.php:361
+#: src/Module/Contact.php:336
msgid "Only show pending contacts"
msgstr "Ne montrer que les demandes d'abonnement"
-#: src/Module/Contact.php:366 src/Module/Contact.php:440
-#: src/Module/Moderation/BaseUsers.php:93
+#: src/Module/Contact.php:341 src/Module/Contact.php:415
+#: src/Module/Moderation/BaseUsers.php:80
msgid "Blocked"
msgstr "Bloqués"
-#: src/Module/Contact.php:369
+#: src/Module/Contact.php:344
msgid "Only show blocked contacts"
msgstr "Ne montrer que les contacts bloqués"
-#: src/Module/Contact.php:374 src/Module/Contact.php:446
-#: src/Module/Settings/Server/Index.php:107 src/Object/Post.php:399
+#: src/Module/Contact.php:349 src/Module/Contact.php:421
+#: src/Module/Settings/Server/Index.php:93 src/Object/Post.php:385
msgid "Ignored"
msgstr "Ignorés"
-#: src/Module/Contact.php:377
+#: src/Module/Contact.php:352
msgid "Only show ignored contacts"
msgstr "Ne montrer que les contacts ignorés"
-#: src/Module/Contact.php:382 src/Module/Contact.php:449
+#: src/Module/Contact.php:357 src/Module/Contact.php:424
msgid "Collapsed"
msgstr "Réduits"
-#: src/Module/Contact.php:385
+#: src/Module/Contact.php:360
msgid "Only show collapsed contacts"
msgstr "N'afficher que les contacts réduits"
-#: src/Module/Contact.php:390 src/Module/Contact.php:452
+#: src/Module/Contact.php:365 src/Module/Contact.php:427
msgid "Archived"
msgstr "Archivés"
-#: src/Module/Contact.php:393
+#: src/Module/Contact.php:368
msgid "Only show archived contacts"
msgstr "Ne montrer que les contacts archivés"
-#: src/Module/Contact.php:398 src/Module/Contact.php:443
+#: src/Module/Contact.php:373 src/Module/Contact.php:418
msgid "Hidden"
msgstr "Cachés"
-#: src/Module/Contact.php:401
+#: src/Module/Contact.php:376
msgid "Only show hidden contacts"
msgstr "Ne montrer que les contacts masqués"
-#: src/Module/Contact.php:409
+#: src/Module/Contact.php:384
msgid "Organize your contact circles"
msgstr "Organisez vos cercles de contact"
-#: src/Module/Contact.php:464
+#: src/Module/Contact.php:439
msgid "Search your contacts"
msgstr "Rechercher dans vos contacts"
-#: src/Module/Contact.php:465 src/Module/Search/Index.php:207
+#: src/Module/Contact.php:440 src/Module/Search/Index.php:193
#, php-format
msgid "Results for: %s"
msgstr "Résultats pour : %s"
-#: src/Module/Contact.php:473
+#: src/Module/Contact.php:448
msgid "Update"
msgstr "Mises à jour"
-#: src/Module/Contact.php:474 src/Module/Contact/Profile.php:532
-#: src/Module/Moderation/Blocklist/Contact.php:117
-#: src/Module/Moderation/Users/Blocked.php:138
-#: src/Module/Moderation/Users/Index.php:154
+#: src/Module/Contact.php:449 src/Module/Contact/Profile.php:518
+#: src/Module/Moderation/Blocklist/Contact.php:103
+#: src/Module/Moderation/Users/Blocked.php:124
+#: src/Module/Moderation/Users/Index.php:140
msgid "Unblock"
msgstr "Débloquer"
-#: src/Module/Contact.php:475 src/Module/Contact/Profile.php:540
+#: src/Module/Contact.php:450 src/Module/Contact/Profile.php:526
msgid "Unignore"
msgstr "Ne plus ignorer"
-#: src/Module/Contact.php:476 src/Module/Contact/Profile.php:548
+#: src/Module/Contact.php:451 src/Module/Contact/Profile.php:534
msgid "Uncollapse"
msgstr "Ne plus réduire"
-#: src/Module/Contact.php:478
+#: src/Module/Contact.php:453
msgid "Batch Actions"
msgstr "Actions multiples"
-#: src/Module/Contact.php:521
+#: src/Module/Contact.php:496
msgid "Conversations started by this contact"
msgstr "Conversations entamées par ce contact"
-#: src/Module/Contact.php:526
+#: src/Module/Contact.php:501
msgid "Posts and Comments"
msgstr "Publications et commentaires"
-#: src/Module/Contact.php:529
+#: src/Module/Contact.php:504
msgid "Individual Posts and Replies"
msgstr "Publications et réponses individuelles"
-#: src/Module/Contact.php:537
+#: src/Module/Contact.php:512
msgid "Posts containing media objects"
msgstr "Publications contenant des objets média"
-#: src/Module/Contact.php:545
+#: src/Module/Contact.php:520
msgid "View all known contacts"
msgstr "Voir tous les contacts connus"
-#: src/Module/Contact.php:556
+#: src/Module/Contact.php:531
msgid "Advanced Contact Settings"
msgstr "Réglages avancés du contact"
-#: src/Module/Contact.php:592
+#: src/Module/Contact.php:567
msgid "Mutual Friendship"
msgstr "Relation réciproque"
-#: src/Module/Contact.php:596
+#: src/Module/Contact.php:571
msgid "is a fan of yours"
msgstr "Vous suit"
-#: src/Module/Contact.php:600
+#: src/Module/Contact.php:575
msgid "you are a fan of"
msgstr "Vous le/la suivez"
-#: src/Module/Contact.php:618
+#: src/Module/Contact.php:593
msgid "Pending outgoing contact request"
msgstr "Demande d'abonnement distant en attente"
-#: src/Module/Contact.php:620
+#: src/Module/Contact.php:595
msgid "Pending incoming contact request"
msgstr "Demande d'abonnement à votre compte en attente"
-#: src/Module/Contact.php:633 src/Module/Contact/Profile.php:391
+#: src/Module/Contact.php:608 src/Module/Contact/Profile.php:377
#, php-format
msgid "Visit %s's profile [%s]"
msgstr "Visiter le profil de %s [%s]"
-#: src/Module/Contact/Advanced.php:99
+#: src/Module/Contact/Advanced.php:85
msgid "Contact update failed."
msgstr "Impossible d'appliquer les réglages."
-#: src/Module/Contact/Advanced.php:130
+#: src/Module/Contact/Advanced.php:116
msgid "Return to contact editor"
msgstr "Retour à l'éditeur de contact"
-#: src/Module/Contact/Advanced.php:134
-#: src/Module/Moderation/Blocklist/Contact.php:122
-#: src/Module/Moderation/Reports.php:116
-#: src/Module/Moderation/Users/Active.php:126
-#: src/Module/Moderation/Users/Blocked.php:126
-#: src/Module/Moderation/Users/Create.php:70
-#: src/Module/Moderation/Users/Deleted.php:83
-#: src/Module/Moderation/Users/Index.php:140
-#: src/Module/Moderation/Users/Index.php:160
-#: src/Module/Moderation/Users/Pending.php:99 src/Module/Settings/OAuth.php:72
+#: src/Module/Contact/Advanced.php:120
+#: src/Module/Moderation/Blocklist/Contact.php:108
+#: src/Module/Moderation/Reports.php:102
+#: src/Module/Moderation/Users/Active.php:112
+#: src/Module/Moderation/Users/Blocked.php:112
+#: src/Module/Moderation/Users/Create.php:56
+#: src/Module/Moderation/Users/Deleted.php:69
+#: src/Module/Moderation/Users/Index.php:126
+#: src/Module/Moderation/Users/Index.php:146
+#: src/Module/Moderation/Users/Pending.php:85 src/Module/Settings/OAuth.php:58
msgid "Name"
msgstr "Nom"
-#: src/Module/Contact/Advanced.php:135
+#: src/Module/Contact/Advanced.php:121
msgid "Account Nickname"
msgstr "Pseudo du compte"
-#: src/Module/Contact/Advanced.php:136
+#: src/Module/Contact/Advanced.php:122
msgid "Account URL"
msgstr "URL du compte"
-#: src/Module/Contact/Advanced.php:137
+#: src/Module/Contact/Advanced.php:123
msgid "Poll/Feed URL"
msgstr "Téléverser des photos"
-#: src/Module/Contact/Advanced.php:138
+#: src/Module/Contact/Advanced.php:124
msgid "New photo from this URL"
msgstr "Nouvelle photo depuis cette URL"
-#: src/Module/Contact/Contacts.php:89
+#: src/Module/Contact/Contacts.php:75
msgid "No known contacts."
msgstr "Aucun contact connu."
-#: src/Module/Contact/Contacts.php:103 src/Module/Profile/Common.php:128
+#: src/Module/Contact/Contacts.php:89 src/Module/Profile/Common.php:114
msgid "No common contacts."
msgstr "Aucun contact en commun."
-#: src/Module/Contact/Contacts.php:115 src/Module/Profile/Contacts.php:135
+#: src/Module/Contact/Contacts.php:101 src/Module/Profile/Contacts.php:121
#, php-format
msgid "Follower (%s)"
msgid_plural "Followers (%s)"
@@ -6681,7 +6680,7 @@ msgstr[0] "Abonné (%s)"
msgstr[1] "Abonnés (%s)"
msgstr[2] "Abonnés (%s)"
-#: src/Module/Contact/Contacts.php:119 src/Module/Profile/Contacts.php:138
+#: src/Module/Contact/Contacts.php:105 src/Module/Profile/Contacts.php:124
#, php-format
msgid "Following (%s)"
msgid_plural "Following (%s)"
@@ -6689,7 +6688,7 @@ msgstr[0] "Abonnement (%s)"
msgstr[1] "Abonnements (%s)"
msgstr[2] "Abonnements (%s)"
-#: src/Module/Contact/Contacts.php:123 src/Module/Profile/Contacts.php:141
+#: src/Module/Contact/Contacts.php:109 src/Module/Profile/Contacts.php:127
#, php-format
msgid "Mutual friend (%s)"
msgid_plural "Mutual friends (%s)"
@@ -6697,12 +6696,12 @@ msgstr[0] "Contact mutuel (%s)"
msgstr[1] "Contacts mutuels (%s)"
msgstr[2] "Contacts mutuels (%s)"
-#: src/Module/Contact/Contacts.php:125 src/Module/Profile/Contacts.php:143
+#: src/Module/Contact/Contacts.php:111 src/Module/Profile/Contacts.php:129
#, php-format
msgid "These contacts both follow and are followed by %s."
msgstr "Ces contacts sont mutuellement abonnés avec %s."
-#: src/Module/Contact/Contacts.php:131 src/Module/Profile/Common.php:116
+#: src/Module/Contact/Contacts.php:117 src/Module/Profile/Common.php:102
#, php-format
msgid "Common contact (%s)"
msgid_plural "Common contacts (%s)"
@@ -6710,14 +6709,14 @@ msgstr[0] "Contact commun (%s)"
msgstr[1] "Contacts communs (%s)"
msgstr[2] "Contacts communs (%s)"
-#: src/Module/Contact/Contacts.php:133 src/Module/Profile/Common.php:118
+#: src/Module/Contact/Contacts.php:119 src/Module/Profile/Common.php:104
#, php-format
msgid ""
"Both %s and yourself have publicly interacted with these "
"contacts (follow, comment or likes on public posts)."
msgstr "%s et vous-mêmes avez interagi publiquement avec ces contacts (abonnement, commentaires ou \"J'aime\" sur des publications publiques)"
-#: src/Module/Contact/Contacts.php:139 src/Module/Profile/Contacts.php:149
+#: src/Module/Contact/Contacts.php:125 src/Module/Profile/Contacts.php:135
#, php-format
msgid "Contact (%s)"
msgid_plural "Contacts (%s)"
@@ -6725,333 +6724,329 @@ msgstr[0] "Contact (%s)"
msgstr[1] "Contacts (%s)"
msgstr[2] "Contacts (%s)"
-#: src/Module/Contact/Follow.php:70 src/Module/Contact/Redir.php:59
-#: src/Module/Contact/Redir.php:220 src/Module/Conversation/Community.php:166
-#: src/Module/Debug/ItemBody.php:38 src/Module/Diaspora/Receive.php:59
-#: src/Module/Item/Display.php:96 src/Module/Item/Feed.php:59
-#: src/Module/Item/Follow.php:41 src/Module/Item/Ignore.php:41
-#: src/Module/Item/Language.php:53 src/Module/Item/Pin.php:41
-#: src/Module/Item/Pin.php:56 src/Module/Item/Searchtext.php:53
-#: src/Module/Item/Star.php:42 src/Module/Update/Display.php:37
+#: src/Module/Contact/Follow.php:56 src/Module/Contact/Redir.php:45
+#: src/Module/Contact/Redir.php:206 src/Module/Conversation/Community.php:154
+#: src/Module/Debug/ItemBody.php:24 src/Module/Diaspora/Receive.php:45
+#: src/Module/Item/Display.php:82 src/Module/Item/Feed.php:45
+#: src/Module/Item/Follow.php:27 src/Module/Item/Ignore.php:27
+#: src/Module/Item/Language.php:39 src/Module/Item/Pin.php:27
+#: src/Module/Item/Pin.php:42 src/Module/Item/Searchtext.php:39
+#: src/Module/Item/Star.php:28 src/Module/Update/Display.php:23
msgid "Access denied."
msgstr "Accès refusé."
-#: src/Module/Contact/Follow.php:105 src/Module/Contact/Unfollow.php:125
-#: src/Module/Profile/RemoteFollow.php:133
+#: src/Module/Contact/Follow.php:91 src/Module/Contact/Unfollow.php:111
+#: src/Module/Profile/RemoteFollow.php:119
msgid "Submit Request"
msgstr "Envoyer la requête"
-#: src/Module/Contact/Follow.php:115
+#: src/Module/Contact/Follow.php:101
msgid "You already added this contact."
msgstr "Vous avez déjà ajouté ce contact."
-#: src/Module/Contact/Follow.php:130
+#: src/Module/Contact/Follow.php:116
msgid "The network type couldn't be detected. Contact can't be added."
msgstr "Impossible de détecter le type de réseau. Le contact ne peut pas être ajouté."
-#: src/Module/Contact/Follow.php:138
+#: src/Module/Contact/Follow.php:124
msgid "Diaspora support isn't enabled. Contact can't be added."
msgstr "Le support de Diaspora est désactivé. Le contact ne peut pas être ajouté."
-#: src/Module/Contact/Follow.php:143
-msgid "OStatus support is disabled. Contact can't be added."
-msgstr "Le support d'OStatus est désactivé. Le contact ne peut pas être ajouté."
-
-#: src/Module/Contact/Follow.php:168 src/Module/Profile/RemoteFollow.php:132
+#: src/Module/Contact/Follow.php:149 src/Module/Profile/RemoteFollow.php:118
msgid "Please answer the following:"
msgstr "Merci de répondre à ce qui suit :"
-#: src/Module/Contact/Follow.php:169 src/Module/Contact/Unfollow.php:123
+#: src/Module/Contact/Follow.php:150 src/Module/Contact/Unfollow.php:109
msgid "Your Identity Address:"
msgstr "Votre adresse d'identité :"
-#: src/Module/Contact/Follow.php:170 src/Module/Contact/Profile.php:422
-#: src/Module/Contact/Unfollow.php:129
-#: src/Module/Moderation/Blocklist/Contact.php:131
-#: src/Module/Moderation/Reports.php:123
-#: src/Module/Notifications/Introductions.php:135
-#: src/Module/Notifications/Introductions.php:204
+#: src/Module/Contact/Follow.php:151 src/Module/Contact/Profile.php:408
+#: src/Module/Contact/Unfollow.php:115
+#: src/Module/Moderation/Blocklist/Contact.php:117
+#: src/Module/Moderation/Reports.php:109
+#: src/Module/Notifications/Introductions.php:121
+#: src/Module/Notifications/Introductions.php:190
msgid "Profile URL"
msgstr "URL du Profil"
-#: src/Module/Contact/Follow.php:171 src/Module/Contact/Profile.php:434
-#: src/Module/Notifications/Introductions.php:197
-#: src/Module/Profile/Profile.php:236
+#: src/Module/Contact/Follow.php:152 src/Module/Contact/Profile.php:420
+#: src/Module/Notifications/Introductions.php:183
+#: src/Module/Profile/Profile.php:222
msgid "Tags:"
msgstr "Étiquettes :"
-#: src/Module/Contact/Follow.php:182
+#: src/Module/Contact/Follow.php:163
#, php-format
msgid "%s knows you"
msgstr "%s vous connaît"
-#: src/Module/Contact/Follow.php:183
+#: src/Module/Contact/Follow.php:164
msgid "Add a personal note:"
msgstr "Ajouter une note personnelle :"
-#: src/Module/Contact/Follow.php:192 src/Module/Contact/Unfollow.php:138
+#: src/Module/Contact/Follow.php:173 src/Module/Contact/Unfollow.php:124
msgid "Posts and Replies"
msgstr "Publications et réponses"
-#: src/Module/Contact/Follow.php:221
+#: src/Module/Contact/Follow.php:202
msgid "The contact could not be added."
msgstr "Le contact n'a pas pu être ajouté."
-#: src/Module/Contact/MatchInterests.php:95
-#: src/Module/Media/Attachment/Upload.php:77
-#: src/Module/Media/Attachment/Upload.php:82
-#: src/Module/Media/Photo/Upload.php:81 src/Module/Media/Photo/Upload.php:86
-#: src/Module/Media/Photo/Upload.php:135
+#: src/Module/Contact/MatchInterests.php:81
+#: src/Module/Media/Attachment/Upload.php:63
+#: src/Module/Media/Attachment/Upload.php:68
+#: src/Module/Media/Photo/Upload.php:67 src/Module/Media/Photo/Upload.php:72
+#: src/Module/Media/Photo/Upload.php:121
msgid "Invalid request."
msgstr "Requête invalide."
-#: src/Module/Contact/MatchInterests.php:102
+#: src/Module/Contact/MatchInterests.php:88
msgid "No keywords to match. Please add keywords to your profile."
msgstr "Aucun mot-clé ne correspond. Merci d'ajouter des mots-clés à votre profil."
-#: src/Module/Contact/MatchInterests.php:145
+#: src/Module/Contact/MatchInterests.php:141
msgid "Profile Match"
msgstr "Correpondance de profils"
-#: src/Module/Contact/Profile.php:145
+#: src/Module/Contact/Profile.php:131
msgid "Failed to update contact record."
msgstr "Échec de mise à jour du contact."
-#: src/Module/Contact/Profile.php:209
+#: src/Module/Contact/Profile.php:195
msgid "Contact has been unblocked"
msgstr "Le contact n'est plus bloqué"
-#: src/Module/Contact/Profile.php:213
+#: src/Module/Contact/Profile.php:199
msgid "Contact has been blocked"
msgstr "Le contact a été bloqué"
-#: src/Module/Contact/Profile.php:225
+#: src/Module/Contact/Profile.php:211
msgid "Contact has been unignored"
msgstr "Le contact n'est plus ignoré"
-#: src/Module/Contact/Profile.php:229
+#: src/Module/Contact/Profile.php:215
msgid "Contact has been ignored"
msgstr "Le contact a été ignoré"
-#: src/Module/Contact/Profile.php:241
+#: src/Module/Contact/Profile.php:227
msgid "Contact has been uncollapsed"
msgstr "Le contact n'est plus réduit"
-#: src/Module/Contact/Profile.php:245
+#: src/Module/Contact/Profile.php:231
msgid "Contact has been collapsed"
msgstr "Le contact a été réduit"
-#: src/Module/Contact/Profile.php:273
+#: src/Module/Contact/Profile.php:259
#, php-format
msgid "You are mutual friends with %s"
msgstr "Vous êtes ami (et réciproquement) avec %s"
-#: src/Module/Contact/Profile.php:274
+#: src/Module/Contact/Profile.php:260
#, php-format
msgid "You are sharing with %s"
msgstr "Vous partagez avec %s"
-#: src/Module/Contact/Profile.php:275
+#: src/Module/Contact/Profile.php:261
#, php-format
msgid "%s is sharing with you"
msgstr "%s partage avec vous"
-#: src/Module/Contact/Profile.php:291
+#: src/Module/Contact/Profile.php:277
msgid "Private communications are not available for this contact."
msgstr "Les communications privées ne sont pas disponibles pour ce contact."
-#: src/Module/Contact/Profile.php:301
+#: src/Module/Contact/Profile.php:287
msgid "This contact is on a server you ignored."
msgstr "Ce contact est sur un serveur que vous ignorez."
-#: src/Module/Contact/Profile.php:304
+#: src/Module/Contact/Profile.php:290
msgid "Never"
msgstr "Jamais"
-#: src/Module/Contact/Profile.php:307
+#: src/Module/Contact/Profile.php:293
msgid "(Update was not successful)"
msgstr "(Échec de la mise à jour)"
-#: src/Module/Contact/Profile.php:307
+#: src/Module/Contact/Profile.php:293
msgid "(Update was successful)"
msgstr "(Mise à jour effectuée avec succès)"
-#: src/Module/Contact/Profile.php:309 src/Module/Contact/Profile.php:503
+#: src/Module/Contact/Profile.php:295 src/Module/Contact/Profile.php:489
msgid "Suggest friends"
msgstr "Suggérer des abonnements"
-#: src/Module/Contact/Profile.php:313
+#: src/Module/Contact/Profile.php:299
#, php-format
msgid "Network type: %s"
msgstr "Type de réseau %s"
-#: src/Module/Contact/Profile.php:318
+#: src/Module/Contact/Profile.php:304
msgid "Communications lost with this contact!"
msgstr "Communications perdues avec ce contact !"
-#: src/Module/Contact/Profile.php:324
+#: src/Module/Contact/Profile.php:310
msgid "Fetch further information for feeds"
msgstr "Chercher plus d'informations pour les flux"
-#: src/Module/Contact/Profile.php:326
+#: src/Module/Contact/Profile.php:312
msgid ""
"Fetch information like preview pictures, title and teaser from the feed "
"item. You can activate this if the feed doesn't contain much text. Keywords "
"are taken from the meta header in the feed item and are posted as hash tags."
msgstr "Récupère des informations comme les prévisualisations d'images, les titres et les accroches depuis l'élément du flux de discussion. Vous pouvez activer ceci si le flux ne contient pas beaucoup de texte. Les mots clés sont récupérés de la balise meta de l'élément du flux de discussion et sont publiés comme étiquettes."
-#: src/Module/Contact/Profile.php:329
+#: src/Module/Contact/Profile.php:315
msgid "Fetch information"
msgstr "Récupérer informations"
-#: src/Module/Contact/Profile.php:330
+#: src/Module/Contact/Profile.php:316
msgid "Fetch keywords"
msgstr "Récupérer les mots-clés"
-#: src/Module/Contact/Profile.php:331
+#: src/Module/Contact/Profile.php:317
msgid "Fetch information and keywords"
msgstr "Récupérer informations"
-#: src/Module/Contact/Profile.php:341 src/Module/Contact/Profile.php:346
-#: src/Module/Contact/Profile.php:351 src/Module/Contact/Profile.php:357
+#: src/Module/Contact/Profile.php:327 src/Module/Contact/Profile.php:332
+#: src/Module/Contact/Profile.php:337 src/Module/Contact/Profile.php:343
msgid "No mirroring"
msgstr "Pas de miroir"
-#: src/Module/Contact/Profile.php:342 src/Module/Contact/Profile.php:352
-#: src/Module/Contact/Profile.php:358
+#: src/Module/Contact/Profile.php:328 src/Module/Contact/Profile.php:338
+#: src/Module/Contact/Profile.php:344
msgid "Mirror as my own posting"
msgstr "Refléter les publications de ce profil comme les vôtres"
-#: src/Module/Contact/Profile.php:347 src/Module/Contact/Profile.php:353
+#: src/Module/Contact/Profile.php:333 src/Module/Contact/Profile.php:339
msgid "Native reshare"
msgstr "Partage natif"
-#: src/Module/Contact/Profile.php:373
+#: src/Module/Contact/Profile.php:359
msgid "Contact Information / Notes"
msgstr "Informations de contact / Notes"
-#: src/Module/Contact/Profile.php:374
+#: src/Module/Contact/Profile.php:360
msgid "Contact Settings"
msgstr "Paramètres du Contact"
-#: src/Module/Contact/Profile.php:382
+#: src/Module/Contact/Profile.php:368
msgid "Contact"
msgstr "Contact"
-#: src/Module/Contact/Profile.php:386
+#: src/Module/Contact/Profile.php:372
msgid "Their personal note"
msgstr "Leur note personnelle"
-#: src/Module/Contact/Profile.php:388
+#: src/Module/Contact/Profile.php:374
msgid "Edit contact notes"
msgstr "Éditer les notes des contacts"
-#: src/Module/Contact/Profile.php:392
+#: src/Module/Contact/Profile.php:378
msgid "Block/Unblock contact"
msgstr "Bloquer/débloquer ce contact"
-#: src/Module/Contact/Profile.php:393
-#: src/Module/Moderation/Report/Create.php:293
+#: src/Module/Contact/Profile.php:379
+#: src/Module/Moderation/Report/Create.php:279
msgid "Ignore contact"
msgstr "Ignorer ce contact"
-#: src/Module/Contact/Profile.php:394
+#: src/Module/Contact/Profile.php:380
msgid "View conversations"
msgstr "Voir les conversations"
-#: src/Module/Contact/Profile.php:399
+#: src/Module/Contact/Profile.php:385
msgid "Last update:"
msgstr "Dernière mise-à-jour :"
-#: src/Module/Contact/Profile.php:401
+#: src/Module/Contact/Profile.php:387
msgid "Update public posts"
msgstr "Fréquence de mise à jour:"
-#: src/Module/Contact/Profile.php:403 src/Module/Contact/Profile.php:513
+#: src/Module/Contact/Profile.php:389 src/Module/Contact/Profile.php:499
msgid "Update now"
msgstr "Mettre à jour"
-#: src/Module/Contact/Profile.php:405
+#: src/Module/Contact/Profile.php:391
msgid "Awaiting connection acknowledge"
msgstr "En attente de confirmation d'abonnement"
-#: src/Module/Contact/Profile.php:406
+#: src/Module/Contact/Profile.php:392
msgid "Currently blocked"
msgstr "Actuellement bloqué"
-#: src/Module/Contact/Profile.php:407
+#: src/Module/Contact/Profile.php:393
msgid "Currently ignored"
msgstr "Actuellement ignoré"
-#: src/Module/Contact/Profile.php:408
+#: src/Module/Contact/Profile.php:394
msgid "Currently collapsed"
msgstr "Actuellement réduit"
-#: src/Module/Contact/Profile.php:409
+#: src/Module/Contact/Profile.php:395
msgid "Currently archived"
msgstr "Actuellement archivé"
-#: src/Module/Contact/Profile.php:412
+#: src/Module/Contact/Profile.php:398
msgid "Manage remote servers"
msgstr "Gérer les serveurs distants"
-#: src/Module/Contact/Profile.php:414
-#: src/Module/Notifications/Introductions.php:198
+#: src/Module/Contact/Profile.php:400
+#: src/Module/Notifications/Introductions.php:184
msgid "Hide this contact from others"
msgstr "Cacher ce contact aux autres"
-#: src/Module/Contact/Profile.php:414
+#: src/Module/Contact/Profile.php:400
msgid ""
"Replies/likes to your public posts may still be visible"
msgstr "Les réponses et \"j'aime\" à vos publications publiques peuvent être toujours visibles"
-#: src/Module/Contact/Profile.php:415
+#: src/Module/Contact/Profile.php:401
msgid "Notification for new posts"
msgstr "Notification des nouvelles publications"
-#: src/Module/Contact/Profile.php:415
+#: src/Module/Contact/Profile.php:401
msgid "Send a notification of every new post of this contact"
msgstr "Envoyer une notification de chaque nouveau message en provenance de ce contact"
-#: src/Module/Contact/Profile.php:417
+#: src/Module/Contact/Profile.php:403
msgid "Keyword Deny List"
msgstr "Liste de mot-clefs interdits"
-#: src/Module/Contact/Profile.php:417
+#: src/Module/Contact/Profile.php:403
msgid ""
"Comma separated list of keywords that should not be converted to hashtags, "
"when \"Fetch information and keywords\" is selected"
msgstr "Liste de mots-clés, séparés par des virgules, qui ne doivent pas être converti en étiquettes lorsque « Récupérer informations et mots-clés » est sélectionné."
-#: src/Module/Contact/Profile.php:435
-#: src/Module/Settings/TwoFactor/Index.php:160
+#: src/Module/Contact/Profile.php:421
+#: src/Module/Settings/TwoFactor/Index.php:146
msgid "Actions"
msgstr "Actions"
-#: src/Module/Contact/Profile.php:437
-#: src/Module/Settings/TwoFactor/Index.php:140 view/theme/frio/theme.php:232
+#: src/Module/Contact/Profile.php:423
+#: src/Module/Settings/TwoFactor/Index.php:126 view/theme/frio/theme.php:220
msgid "Status"
msgstr "Statut"
-#: src/Module/Contact/Profile.php:443
+#: src/Module/Contact/Profile.php:429
msgid "Mirror postings from this contact"
msgstr "Copier les publications de ce contact"
-#: src/Module/Contact/Profile.php:445
+#: src/Module/Contact/Profile.php:431
msgid ""
"Mark this contact as remote_self, this will cause friendica to repost new "
"entries from this contact."
msgstr "Marquer ce contact comme étant remote_self, friendica republiera alors les nouvelles entrées de ce contact."
-#: src/Module/Contact/Profile.php:448
+#: src/Module/Contact/Profile.php:434
msgid "Channel Settings"
msgstr "Paramètres de Chaîne"
-#: src/Module/Contact/Profile.php:449
+#: src/Module/Contact/Profile.php:435
msgid "Frequency of this contact in relevant channels"
msgstr "Fréquence de ce contact dans les chaînes pertinentes"
-#: src/Module/Contact/Profile.php:450
+#: src/Module/Contact/Profile.php:436
msgid ""
"Depending on the type of the channel not all posts from this contact are "
"displayed. By default, posts need to have a minimum amount of interactions "
@@ -7061,707 +7056,707 @@ msgid ""
"block or hide the contact completely."
msgstr "Selon le type de chaîne, les publications de ce contact ne seront pas toutes affichées. Par défaut, les publications ont besoins d'avoir un minimum d'interaction (commentaires, aimes) pour être visible dans vos chaînes. D'un autre côté, il peut y avoir des contacts qui inondent la chaîne, vous souhaiteriez donc ne voir que certaines de ces publications. Ou vous souhaiteriez ne pas les voir du tout, sans pour autant bloquer ou masquer complètement le contact."
-#: src/Module/Contact/Profile.php:451
+#: src/Module/Contact/Profile.php:437
msgid "Default frequency"
msgstr "Fréquence par défaut"
-#: src/Module/Contact/Profile.php:451
+#: src/Module/Contact/Profile.php:437
msgid ""
"Posts by this contact are displayed in the \"for you\" channel if you "
"interact often with this contact or if a post reached some level of "
"interaction."
msgstr "Les publications de ce contact sont affichées dans la chaîne \"Pour vous\" si vous interagissez souvent avec ce contact ou si une publication atteint un certain niveau d'interaction."
-#: src/Module/Contact/Profile.php:452
+#: src/Module/Contact/Profile.php:438
msgid "Display all posts of this contact"
msgstr "Afficher toutes les publications de ce contact"
-#: src/Module/Contact/Profile.php:452
+#: src/Module/Contact/Profile.php:438
msgid "All posts from this contact will appear on the \"for you\" channel"
msgstr "Toutes les publications de ce contact apparaîtront dans la chaîne \"Pour vous\"."
-#: src/Module/Contact/Profile.php:453
+#: src/Module/Contact/Profile.php:439
msgid "Display only few posts"
msgstr "Afficher quelques publications"
-#: src/Module/Contact/Profile.php:453
+#: src/Module/Contact/Profile.php:439
msgid ""
"When a contact creates a lot of posts in a short period, this setting "
"reduces the number of displayed posts in every channel."
msgstr "Lorsqu'un contact créé beaucoup de publications en peu de temps, ce paramètre réduit le nombre de publications affichées dans chaque chaîne."
-#: src/Module/Contact/Profile.php:454
+#: src/Module/Contact/Profile.php:440
msgid "Never display posts"
msgstr "Afficher aucune publication"
-#: src/Module/Contact/Profile.php:454
+#: src/Module/Contact/Profile.php:440
msgid "Posts from this contact will never be displayed in any channel"
msgstr "Les publications de ce contact n'apparaîtront jamais dans les chaînes"
-#: src/Module/Contact/Profile.php:455
+#: src/Module/Contact/Profile.php:441
msgid "Channel Only"
msgstr "Chaîne uniquement"
-#: src/Module/Contact/Profile.php:455
+#: src/Module/Contact/Profile.php:441
msgid ""
"If enabled, posts from this contact will only appear in channels and network"
" streams in circles, but not in the general network stream."
msgstr "Si activé, les publications de ce contact n'apparaîtront que dans les canaux et les flux réseau des cercles, mais pas dans le flux réseau général."
-#: src/Module/Contact/Profile.php:523
+#: src/Module/Contact/Profile.php:509
msgid "Refetch contact data"
msgstr "Récupérer à nouveau les données de contact"
-#: src/Module/Contact/Profile.php:534
+#: src/Module/Contact/Profile.php:520
msgid "Toggle Blocked status"
msgstr "(dés)activer l'état \"bloqué\""
-#: src/Module/Contact/Profile.php:542
+#: src/Module/Contact/Profile.php:528
msgid "Toggle Ignored status"
msgstr "(dés)activer l'état \"ignoré\""
-#: src/Module/Contact/Profile.php:550
+#: src/Module/Contact/Profile.php:536
msgid "Toggle Collapsed status"
msgstr "Commuter le statut réduit"
-#: src/Module/Contact/Profile.php:557 src/Module/Contact/Revoke.php:103
+#: src/Module/Contact/Profile.php:543 src/Module/Contact/Revoke.php:89
msgid "Revoke Follow"
msgstr "Révoquer le suivi"
-#: src/Module/Contact/Profile.php:559
+#: src/Module/Contact/Profile.php:545
msgid "Revoke the follow from this contact"
msgstr "Empêcher ce contact de vous suivre "
-#: src/Module/Contact/Redir.php:139
+#: src/Module/Contact/Redir.php:125
msgid "Bad Request."
msgstr "Mauvaise requête."
-#: src/Module/Contact/Revoke.php:74
+#: src/Module/Contact/Revoke.php:60
msgid "Contact is being deleted."
msgstr "Le contact est en cours de suppression."
-#: src/Module/Contact/Revoke.php:88
+#: src/Module/Contact/Revoke.php:74
msgid "Follow was successfully revoked."
msgstr "Le suivi a été révoqué avec succès."
-#: src/Module/Contact/Revoke.php:104
+#: src/Module/Contact/Revoke.php:90
msgid ""
"Do you really want to revoke this contact's follow? This cannot be undone "
"and they will have to manually follow you back again."
msgstr "Voulez-vous vraiment révoquer l'abonnement de ce contact ? Cela ne peut être annulé et il devra se réabonner à vous manuellement."
-#: src/Module/Contact/Suggestions.php:62
+#: src/Module/Contact/Suggestions.php:48
msgid ""
"No suggestions available. If this is a new site, please try again in 24 "
"hours."
msgstr "Aucune suggestion. Si ce site est récent, merci de recommencer dans 24h."
-#: src/Module/Contact/Unfollow.php:98 src/Module/Contact/Unfollow.php:167
+#: src/Module/Contact/Unfollow.php:84 src/Module/Contact/Unfollow.php:153
msgid "You aren't following this contact."
msgstr "Vous ne suivez pas ce contact."
-#: src/Module/Contact/Unfollow.php:103
+#: src/Module/Contact/Unfollow.php:89
msgid "Unfollowing is currently not supported by your network."
msgstr "Le désabonnement n'est actuellement pas supporté par votre réseau."
-#: src/Module/Contact/Unfollow.php:121
+#: src/Module/Contact/Unfollow.php:107
msgid "Disconnect/Unfollow"
msgstr "Se déconnecter/Ne plus suivre"
-#: src/Module/Contact/Unfollow.php:175
+#: src/Module/Contact/Unfollow.php:161
msgid "Contact was successfully unfollowed"
msgstr "Le contact n'est maintenant plus suivi"
-#: src/Module/Contact/Unfollow.php:178
+#: src/Module/Contact/Unfollow.php:164
msgid "Unable to unfollow this contact, please contact your administrator"
msgstr "Impossible de ne plus suivre ce contact, merci de contacter votre administrateur"
-#: src/Module/Conversation/Channel.php:139
-#: src/Module/Conversation/Community.php:126 src/Module/Search/Index.php:152
-#: src/Module/Search/Index.php:194
+#: src/Module/Conversation/Channel.php:125
+#: src/Module/Conversation/Community.php:114 src/Module/Search/Index.php:138
+#: src/Module/Search/Index.php:180
msgid "No results."
msgstr "Aucun résultat."
-#: src/Module/Conversation/Channel.php:177
+#: src/Module/Conversation/Channel.php:163
msgid "Channel not available."
msgstr "Chaîne non disponible."
-#: src/Module/Conversation/Community.php:92
+#: src/Module/Conversation/Community.php:80
msgid ""
"This community stream shows all public posts received by this node. They may"
" not reflect the opinions of this node’s users."
msgstr "Ce fil communautaire liste toutes les publications publiques reçues par ce serveur. Elles ne reflètent pas nécessairement les opinions personnelles des utilisateurs locaux."
-#: src/Module/Conversation/Community.php:180
+#: src/Module/Conversation/Community.php:168
msgid "Community option not available."
msgstr "L'option communauté n'est pas disponible"
-#: src/Module/Conversation/Community.php:196
+#: src/Module/Conversation/Community.php:184
msgid "Not available."
msgstr "Indisponible."
-#: src/Module/Conversation/Network.php:216
+#: src/Module/Conversation/Network.php:202
msgid "No such circle"
msgstr "Cercle inexistant"
-#: src/Module/Conversation/Network.php:220
+#: src/Module/Conversation/Network.php:206
#, php-format
msgid "Circle: %s"
msgstr "Cercle : %s"
-#: src/Module/Conversation/Network.php:239
+#: src/Module/Conversation/Network.php:226
#, php-format
msgid "Error %d (%s) while fetching the timeline."
msgstr "Erreur %d (%s) lors de la récupération du flux."
-#: src/Module/Conversation/Network.php:316
+#: src/Module/Conversation/Network.php:304
msgid "Network feed not available."
msgstr "Flux du réseau non disponible."
-#: src/Module/Conversation/Timeline.php:204
+#: src/Module/Conversation/Timeline.php:190
msgid "Include"
msgstr "Inclure"
-#: src/Module/Conversation/Timeline.php:205
+#: src/Module/Conversation/Timeline.php:191
msgid "Hide"
msgstr "Masquer"
-#: src/Module/Credits.php:44
+#: src/Module/Credits.php:30
msgid "Credits"
msgstr "Remerciements"
-#: src/Module/Credits.php:45
+#: src/Module/Credits.php:31
msgid ""
"Friendica is a community project, that would not be possible without the "
"help of many people. Here is a list of those who have contributed to the "
"code or the translation of Friendica. Thank you all!"
msgstr "Friendica est un projet communautaire, qui ne serait pas possible sans l'aide de beaucoup de gens. Voici une liste de ceux qui ont contribué au code ou à la traduction de Friendica. Merci à tous!"
-#: src/Module/Debug/ActivityPubConversion.php:59
+#: src/Module/Debug/ActivityPubConversion.php:45
msgid "Formatted"
msgstr "Mis en page"
-#: src/Module/Debug/ActivityPubConversion.php:71
+#: src/Module/Debug/ActivityPubConversion.php:57
msgid "Activity"
msgstr "Activité"
-#: src/Module/Debug/ActivityPubConversion.php:123
+#: src/Module/Debug/ActivityPubConversion.php:109
msgid "Object data"
msgstr "Données de l'object"
-#: src/Module/Debug/ActivityPubConversion.php:130
+#: src/Module/Debug/ActivityPubConversion.php:116
msgid "Result Item"
msgstr "Résultat"
-#: src/Module/Debug/ActivityPubConversion.php:135
-#: src/Module/Debug/Babel.php:300 src/Module/Moderation/Item/Source.php:93
-#: src/Module/Security/TwoFactor/Verify.php:98
+#: src/Module/Debug/ActivityPubConversion.php:121
+#: src/Module/Debug/Babel.php:286 src/Module/Moderation/Item/Source.php:79
+#: src/Module/Security/TwoFactor/Verify.php:84
msgid "Error"
msgid_plural "Errors"
msgstr[0] "Erreur"
msgstr[1] "Erreurs"
msgstr[2] "Erreurs"
-#: src/Module/Debug/ActivityPubConversion.php:144
+#: src/Module/Debug/ActivityPubConversion.php:130
msgid "Source activity"
msgstr "Activité source"
-#: src/Module/Debug/Babel.php:58
+#: src/Module/Debug/Babel.php:44
msgid "Source input"
msgstr "Saisie source"
-#: src/Module/Debug/Babel.php:64
+#: src/Module/Debug/Babel.php:50
msgid "BBCode::toPlaintext"
msgstr "BBCode::toPlaintext"
-#: src/Module/Debug/Babel.php:70
+#: src/Module/Debug/Babel.php:56
msgid "BBCode::convert (raw HTML)"
msgstr "BBCode::convert (code HTML)"
-#: src/Module/Debug/Babel.php:75
+#: src/Module/Debug/Babel.php:61
msgid "BBCode::convert (hex)"
msgstr "BBCode::convert (hex)"
-#: src/Module/Debug/Babel.php:80
+#: src/Module/Debug/Babel.php:66
msgid "BBCode::convert"
msgstr "BBCode::convert"
-#: src/Module/Debug/Babel.php:86
+#: src/Module/Debug/Babel.php:72
msgid "BBCode::convert => HTML::toBBCode"
msgstr "BBCode::convert => HTML::toBBCode"
-#: src/Module/Debug/Babel.php:92
+#: src/Module/Debug/Babel.php:78
msgid "BBCode::toMarkdown"
msgstr "BBCode::toMarkdown"
-#: src/Module/Debug/Babel.php:98
+#: src/Module/Debug/Babel.php:84
msgid "BBCode::toMarkdown => Markdown::convert (raw HTML)"
msgstr "BBCode::toMarkdown => Markdown::convert (HTML pur)"
-#: src/Module/Debug/Babel.php:102
+#: src/Module/Debug/Babel.php:88
msgid "BBCode::toMarkdown => Markdown::convert"
msgstr "BBCode::toMarkdown => Markdown::convert"
-#: src/Module/Debug/Babel.php:108
+#: src/Module/Debug/Babel.php:94
msgid "BBCode::toMarkdown => Markdown::toBBCode"
msgstr "BBCode::toMarkdown => Markdown::toBBCode"
-#: src/Module/Debug/Babel.php:114
+#: src/Module/Debug/Babel.php:100
msgid "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode"
msgstr "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode"
-#: src/Module/Debug/Babel.php:122
+#: src/Module/Debug/Babel.php:108
msgid "Item Body"
msgstr "Corps du message"
-#: src/Module/Debug/Babel.php:126
+#: src/Module/Debug/Babel.php:112
msgid "Item Tags"
msgstr "Étiquettes du messages"
-#: src/Module/Debug/Babel.php:132
+#: src/Module/Debug/Babel.php:118
msgid "PageInfo::appendToBody"
msgstr "PageInfo::appendToBody"
-#: src/Module/Debug/Babel.php:137
+#: src/Module/Debug/Babel.php:123
msgid "PageInfo::appendToBody => BBCode::convert (raw HTML)"
msgstr "PageInfo::appendToBody => BBCode::convert (code HTML)"
-#: src/Module/Debug/Babel.php:141
+#: src/Module/Debug/Babel.php:127
msgid "PageInfo::appendToBody => BBCode::convert"
msgstr "PageInfo::appendToBody => BBCode::convert"
-#: src/Module/Debug/Babel.php:148
+#: src/Module/Debug/Babel.php:134
msgid "Source input (Diaspora format)"
msgstr "Saisie source (format Diaspora)"
-#: src/Module/Debug/Babel.php:157
+#: src/Module/Debug/Babel.php:143
msgid "Source input (Markdown)"
msgstr "Source (Markdown)"
-#: src/Module/Debug/Babel.php:163
+#: src/Module/Debug/Babel.php:149
msgid "Markdown::convert (raw HTML)"
msgstr "Markdown::convert (code HTML)"
-#: src/Module/Debug/Babel.php:168
+#: src/Module/Debug/Babel.php:154
msgid "Markdown::convert"
msgstr "Markdown::convert"
-#: src/Module/Debug/Babel.php:174
+#: src/Module/Debug/Babel.php:160
msgid "Markdown::toBBCode"
msgstr "Markdown::toBBCode"
-#: src/Module/Debug/Babel.php:181
+#: src/Module/Debug/Babel.php:167
msgid "Raw HTML input"
msgstr "Saisie code HTML"
-#: src/Module/Debug/Babel.php:186
+#: src/Module/Debug/Babel.php:172
msgid "HTML Input"
msgstr "Code HTML"
-#: src/Module/Debug/Babel.php:193
+#: src/Module/Debug/Babel.php:179
msgid "HTML Purified (raw)"
msgstr "HTML purifié (code)"
-#: src/Module/Debug/Babel.php:198
+#: src/Module/Debug/Babel.php:184
msgid "HTML Purified (hex)"
msgstr "HTML purifié (hexadecimal)"
-#: src/Module/Debug/Babel.php:203
+#: src/Module/Debug/Babel.php:189
msgid "HTML Purified"
msgstr "HTML purifié"
-#: src/Module/Debug/Babel.php:209
+#: src/Module/Debug/Babel.php:195
msgid "HTML::toBBCode"
msgstr "HTML::toBBCode"
-#: src/Module/Debug/Babel.php:215
+#: src/Module/Debug/Babel.php:201
msgid "HTML::toBBCode => BBCode::convert"
msgstr "HTML::toBBCode => BBCode::convert"
-#: src/Module/Debug/Babel.php:220
+#: src/Module/Debug/Babel.php:206
msgid "HTML::toBBCode => BBCode::convert (raw HTML)"
msgstr "HTML::toBBCode => BBCode::convert (code HTML)"
-#: src/Module/Debug/Babel.php:226
+#: src/Module/Debug/Babel.php:212
msgid "HTML::toBBCode => BBCode::toPlaintext"
msgstr "HTML::toBBCode => BBCode::toPlaintext"
-#: src/Module/Debug/Babel.php:232
+#: src/Module/Debug/Babel.php:218
msgid "HTML::toMarkdown"
msgstr "HTML::toMarkdown"
-#: src/Module/Debug/Babel.php:238
+#: src/Module/Debug/Babel.php:224
msgid "HTML::toPlaintext"
msgstr "HTML::toPlaintext"
-#: src/Module/Debug/Babel.php:244
+#: src/Module/Debug/Babel.php:230
msgid "HTML::toPlaintext (compact)"
msgstr "HTML::toPlaintext (compact)"
-#: src/Module/Debug/Babel.php:262
+#: src/Module/Debug/Babel.php:248
msgid "Decoded post"
msgstr "Publication décodée"
-#: src/Module/Debug/Babel.php:283
+#: src/Module/Debug/Babel.php:269
msgid "Post array before expand entities"
msgstr "Tableau de la publication avant de résoudre les entités"
-#: src/Module/Debug/Babel.php:290
+#: src/Module/Debug/Babel.php:276
msgid "Post converted"
msgstr "Publication convertie"
-#: src/Module/Debug/Babel.php:295
+#: src/Module/Debug/Babel.php:281
msgid "Converted body"
msgstr "Corps de texte converti"
-#: src/Module/Debug/Babel.php:301
+#: src/Module/Debug/Babel.php:287
msgid "Twitter addon is absent from the addon/ folder."
msgstr "L'extension Twitter est absente du dossier addon/"
-#: src/Module/Debug/Babel.php:311
+#: src/Module/Debug/Babel.php:297
msgid "Babel Diagnostic"
msgstr "Disagnostic Babel"
-#: src/Module/Debug/Babel.php:313
+#: src/Module/Debug/Babel.php:299
msgid "Source text"
msgstr "Texte source"
-#: src/Module/Debug/Babel.php:314
+#: src/Module/Debug/Babel.php:300
msgid "BBCode"
msgstr "BBCode"
-#: src/Module/Debug/Babel.php:316
+#: src/Module/Debug/Babel.php:302
msgid "Markdown"
msgstr "Markdown"
-#: src/Module/Debug/Babel.php:317
+#: src/Module/Debug/Babel.php:303
msgid "HTML"
msgstr "HTML"
-#: src/Module/Debug/Babel.php:319
+#: src/Module/Debug/Babel.php:305
msgid "Twitter Source / Tweet URL (requires API key)"
msgstr "Source Twitter / URL du tweet (requiert une clé d'API)"
-#: src/Module/Debug/Feed.php:53 src/Module/Filer/SaveTag.php:47
-#: src/Module/Settings/Profile/Index.php:180
+#: src/Module/Debug/Feed.php:39 src/Module/Filer/SaveTag.php:33
+#: src/Module/Settings/Profile/Index.php:166
msgid "You must be logged in to use this module"
msgstr "Vous devez être identifié pour accéder à cette fonctionnalité"
-#: src/Module/Debug/Feed.php:78
+#: src/Module/Debug/Feed.php:64
msgid "Source URL"
msgstr "URL Source"
-#: src/Module/Debug/Localtime.php:49
+#: src/Module/Debug/Localtime.php:35
msgid "Time Conversion"
msgstr "Conversion temporelle"
-#: src/Module/Debug/Localtime.php:50
+#: src/Module/Debug/Localtime.php:36
msgid ""
"Friendica provides this service for sharing events with other networks and "
"friends in unknown timezones."
msgstr "Friendica fournit ce service pour partager des évènements avec vos contacts indépendament de leur fuseau horaire."
-#: src/Module/Debug/Localtime.php:51
+#: src/Module/Debug/Localtime.php:37
#, php-format
msgid "UTC time: %s"
msgstr "Temps UTC : %s"
-#: src/Module/Debug/Localtime.php:54
+#: src/Module/Debug/Localtime.php:40
#, php-format
msgid "Current timezone: %s"
msgstr "Zone de temps courante : %s"
-#: src/Module/Debug/Localtime.php:58
+#: src/Module/Debug/Localtime.php:44
#, php-format
msgid "Converted localtime: %s"
msgstr "Temps local converti : %s"
-#: src/Module/Debug/Localtime.php:62
+#: src/Module/Debug/Localtime.php:48
msgid "Please select your timezone:"
msgstr "Sélectionner votre zone :"
-#: src/Module/Debug/Probe.php:38 src/Module/Debug/WebFinger.php:37
+#: src/Module/Debug/Probe.php:24 src/Module/Debug/WebFinger.php:23
msgid "Only logged in users are permitted to perform a probing."
msgstr "Le sondage de profil est réservé aux utilisateurs identifiés."
-#: src/Module/Debug/Probe.php:52
+#: src/Module/Debug/Probe.php:38
msgid "Probe Diagnostic"
msgstr "Diasgnostic Sonde"
-#: src/Module/Debug/Probe.php:53
+#: src/Module/Debug/Probe.php:39
msgid "Output"
msgstr "Sortie"
-#: src/Module/Debug/Probe.php:56
+#: src/Module/Debug/Probe.php:42
msgid "Lookup address"
msgstr "Addresse de sondage"
-#: src/Module/Debug/WebFinger.php:50
+#: src/Module/Debug/WebFinger.php:36
msgid "Webfinger Diagnostic"
msgstr "Diagnostic Webfinger"
-#: src/Module/Debug/WebFinger.php:52
+#: src/Module/Debug/WebFinger.php:38
msgid "Lookup address:"
msgstr "Tester l'adresse:"
-#: src/Module/Directory.php:75
+#: src/Module/Directory.php:61
msgid "No entries (some entries may be hidden)."
msgstr "Aucune entrée (certaines peuvent être cachées)."
-#: src/Module/Directory.php:91
+#: src/Module/Directory.php:77
msgid "Find on this site"
msgstr "Trouver sur ce site"
-#: src/Module/Directory.php:93
+#: src/Module/Directory.php:79
msgid "Results for:"
msgstr "Résultats pour :"
-#: src/Module/Directory.php:95
+#: src/Module/Directory.php:81
msgid "Site Directory"
msgstr "Annuaire local"
-#: src/Module/Filer/RemoveTag.php:105
+#: src/Module/Filer/RemoveTag.php:91
msgid "Item was not deleted"
msgstr "L'élément n'a pas été supprimé"
-#: src/Module/Filer/RemoveTag.php:115
+#: src/Module/Filer/RemoveTag.php:101
msgid "Item was not removed"
msgstr "L'élément n'a pas été retiré"
-#: src/Module/Filer/SaveTag.php:73
+#: src/Module/Filer/SaveTag.php:59
msgid "- select -"
msgstr "- choisir -"
-#: src/Module/FriendSuggest.php:82
+#: src/Module/FriendSuggest.php:68
msgid "Suggested contact not found."
msgstr "Contact suggéré non trouvé"
-#: src/Module/FriendSuggest.php:100
+#: src/Module/FriendSuggest.php:86
msgid "Friend suggestion sent."
msgstr "Suggestion d'abonnement envoyée."
-#: src/Module/FriendSuggest.php:137
+#: src/Module/FriendSuggest.php:123
msgid "Suggest Friends"
msgstr "Suggérer des amis/contacts"
-#: src/Module/FriendSuggest.php:140
+#: src/Module/FriendSuggest.php:126
#, php-format
msgid "Suggest a friend for %s"
msgstr "Suggérer un ami/contact pour %s"
-#: src/Module/Friendica.php:81
+#: src/Module/Friendica.php:67
msgid "Installed addons/apps:"
msgstr "Extensions/Applications installées :"
-#: src/Module/Friendica.php:86
+#: src/Module/Friendica.php:72
msgid "No installed addons/apps"
msgstr "Aucune extension/application n'est installée"
-#: src/Module/Friendica.php:91
+#: src/Module/Friendica.php:77
#, php-format
msgid "Read about the Terms of Service of this node."
msgstr "Lire les Conditions d'utilisation de ce nœud."
-#: src/Module/Friendica.php:98
+#: src/Module/Friendica.php:84
msgid "On this server the following remote servers are blocked."
msgstr "Sur ce serveur, les serveurs suivants sont sur liste noire."
-#: src/Module/Friendica.php:101
-#: src/Module/Moderation/Blocklist/Server/Index.php:87
-#: src/Module/Moderation/Blocklist/Server/Index.php:111
-#: src/Module/Settings/Channels.php:232
+#: src/Module/Friendica.php:87
+#: src/Module/Moderation/Blocklist/Server/Index.php:73
+#: src/Module/Moderation/Blocklist/Server/Index.php:97
+#: src/Module/Settings/Channels.php:218
msgid "Reason for the block"
msgstr "Raison du blocage"
-#: src/Module/Friendica.php:103
+#: src/Module/Friendica.php:89
msgid "Download this list in CSV format"
msgstr "Télécharger cette liste au format CSV"
-#: src/Module/Friendica.php:117
+#: src/Module/Friendica.php:103
#, php-format
msgid ""
"This is Friendica, version %s that is running at the web location %s. The "
"database version is %s, the post update version is %s."
msgstr "Vous êtes sur Friendica, version %s qui fonctionne à l'emplacement web %s. La version de la base de données est %s, la version de mise à jour des publications est %s."
-#: src/Module/Friendica.php:122
+#: src/Module/Friendica.php:108
msgid ""
"Please visit Friendi.ca to learn more "
"about the Friendica project."
msgstr "Rendez-vous sur Friendi.ca pour en savoir plus sur le projet Friendica."
-#: src/Module/Friendica.php:123
+#: src/Module/Friendica.php:109
msgid "Bug reports and issues: please visit"
msgstr "Pour les rapports de bugs : rendez vous sur"
-#: src/Module/Friendica.php:123
+#: src/Module/Friendica.php:109
msgid "the bugtracker at github"
msgstr "le bugtracker sur GitHub"
-#: src/Module/Friendica.php:124
+#: src/Module/Friendica.php:110
msgid "Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca"
msgstr "Suggestions, souhaits, etc. - merci d'écrire à \"info\" at \"friendi - dot - ca"
-#: src/Module/HCard.php:45
+#: src/Module/HCard.php:31
msgid "No profile"
msgstr "Aucun profil"
-#: src/Module/HTTPException/MethodNotAllowed.php:31
+#: src/Module/HTTPException/MethodNotAllowed.php:17
msgid "Method Not Allowed."
msgstr "Méthode non autorisée."
-#: src/Module/Help.php:60
+#: src/Module/Help.php:46
msgid "Help:"
msgstr "Aide :"
-#: src/Module/Home.php:66
+#: src/Module/Home.php:52
#, php-format
msgid "Welcome to %s"
msgstr "Bienvenue sur %s"
-#: src/Module/Install.php:189
+#: src/Module/Install.php:175
msgid "Friendica Communications Server - Setup"
msgstr "Serveur de média social Friendica - Installation"
-#: src/Module/Install.php:200
+#: src/Module/Install.php:186
msgid "System check"
msgstr "Vérifications système"
-#: src/Module/Install.php:202 src/Module/Install.php:247
-#: src/Module/Install.php:326
+#: src/Module/Install.php:188 src/Module/Install.php:233
+#: src/Module/Install.php:312
msgid "Requirement not satisfied"
msgstr "Exigence non remplie"
-#: src/Module/Install.php:203
+#: src/Module/Install.php:189
msgid "Optional requirement not satisfied"
msgstr "Exigence facultative non remplie"
-#: src/Module/Install.php:204
+#: src/Module/Install.php:190
msgid "OK"
msgstr "OK"
-#: src/Module/Install.php:208
+#: src/Module/Install.php:194
msgid "Next"
msgstr "Suivant"
-#: src/Module/Install.php:209
+#: src/Module/Install.php:195
msgid "Check again"
msgstr "Vérifier à nouveau"
-#: src/Module/Install.php:222
+#: src/Module/Install.php:208
msgid "Base settings"
msgstr "Paramètres de base"
-#: src/Module/Install.php:224
+#: src/Module/Install.php:210
msgid "Base path to installation"
msgstr "Chemin de base de l'installation"
-#: src/Module/Install.php:226
+#: src/Module/Install.php:212
msgid ""
"If the system cannot detect the correct path to your installation, enter the"
" correct path here. This setting should only be set if you are using a "
"restricted system and symbolic links to your webroot."
msgstr "Si le système ne peut pas détecter le chemin de l'installation, entrez le bon chemin ici. Ce paramètre doit être utilisé uniquement si vous avez des accès restreints à votre système et que vous n'avez qu'un lien symbolique vers le répertoire web."
-#: src/Module/Install.php:229
+#: src/Module/Install.php:215
msgid "The Friendica system URL"
msgstr "L'URL du système Friendica"
-#: src/Module/Install.php:231
+#: src/Module/Install.php:217
msgid ""
"Overwrite this field in case the system URL determination isn't right, "
"otherwise leave it as is."
msgstr "Modifiez ce champ au cas où l'URL du système n'est pas la bonne, sinon laissez le tel quel."
-#: src/Module/Install.php:242
+#: src/Module/Install.php:228
msgid "Database connection"
msgstr "Connexion à la base de données"
-#: src/Module/Install.php:243
+#: src/Module/Install.php:229
msgid ""
"In order to install Friendica we need to know how to connect to your "
"database."
msgstr "Pour installer Friendica, nous avons besoin de savoir comment contacter votre base de données."
-#: src/Module/Install.php:244
+#: src/Module/Install.php:230
msgid ""
"Please contact your hosting provider or site administrator if you have "
"questions about these settings."
msgstr "Merci de vous tourner vers votre hébergeur et/ou administrateur pour toute question concernant ces réglages."
-#: src/Module/Install.php:245
+#: src/Module/Install.php:231
msgid ""
"The database you specify below should already exist. If it does not, please "
"create it before continuing."
msgstr "La base de données que vous spécifierez doit exister. Si ce n'est pas encore le cas, merci de la créer avant de continuer."
-#: src/Module/Install.php:252
+#: src/Module/Install.php:238
msgid "Database Server Name"
msgstr "Serveur de base de données"
-#: src/Module/Install.php:257
+#: src/Module/Install.php:243
msgid "Database Login Name"
msgstr "Nom d'utilisateur de la base"
-#: src/Module/Install.php:263
+#: src/Module/Install.php:249
msgid "Database Login Password"
msgstr "Mot de passe de la base"
-#: src/Module/Install.php:265
+#: src/Module/Install.php:251
msgid "For security reasons the password must not be empty"
msgstr "Pour des raisons de sécurité, le mot de passe ne peut pas être vide."
-#: src/Module/Install.php:268
+#: src/Module/Install.php:254
msgid "Database Name"
msgstr "Nom de la base"
-#: src/Module/Install.php:272 src/Module/Install.php:300
+#: src/Module/Install.php:258 src/Module/Install.php:286
msgid "Please select a default timezone for your website"
msgstr "Sélectionner un fuseau horaire par défaut pour votre site"
-#: src/Module/Install.php:287
+#: src/Module/Install.php:273
msgid "Site settings"
msgstr "Réglages du site"
-#: src/Module/Install.php:295
+#: src/Module/Install.php:281
msgid "Site administrator email address"
msgstr "Adresse de courriel de l'administrateur du site"
-#: src/Module/Install.php:297
+#: src/Module/Install.php:283
msgid ""
"Your account email address must match this in order to use the web admin "
"panel."
msgstr "Votre adresse de courriel doit correspondre à celle-ci pour pouvoir utiliser l'interface d'administration."
-#: src/Module/Install.php:304
+#: src/Module/Install.php:290
msgid "System Language:"
msgstr "Langue système :"
-#: src/Module/Install.php:306
+#: src/Module/Install.php:292
msgid ""
"Set the default language for your Friendica installation interface and to "
"send emails."
msgstr "Définit la langue par défaut pour l'interface de votre instance Friendica et les courriels envoyés."
-#: src/Module/Install.php:318
+#: src/Module/Install.php:304
msgid "Your Friendica site database has been installed."
msgstr "La base de données de votre site Friendica a bien été installée."
-#: src/Module/Install.php:328
+#: src/Module/Install.php:314
msgid "Installation finished"
msgstr "Installation terminée"
-#: src/Module/Install.php:348
+#: src/Module/Install.php:334
msgid "The server domain pattern syntax is case-insensitive shell wildcard, comprising the following special characters:
\n" "La syntaxe du modèle de domaine du serveur est du shell insensible à la casse avec wildcards, comprenant les caractères spéciaux suivants :
\n*
N'importe quel nombre de caractères?
N'importe quel caractère uniqueThis file can be downloaded from the /friendica
path of any "
"Friendica server.
Ce fichier peut être téléchargé depuis le chemin /friendica
de n'importe quel serveur Friendica.
debug.store_source
config key is set in "
"config/local.config.php
for future items to have sources."
msgstr "Merci de vérifier que la clé de configuration debug.store_source
est définie dans config/local.config.php
pour que les items futurs puissent avoir des sources."
-#: src/Module/Moderation/Item/Source.php:98
+#: src/Module/Moderation/Item/Source.php:84
msgid "Item Guid"
msgstr "GUID du contenu"
-#: src/Module/Moderation/Report/Create.php:95
+#: src/Module/Moderation/Report/Create.php:81
msgid "Contact not found or their server is already blocked on this node."
msgstr "Contact non trouvé ou son serveur est déjà bloqué sur ce nœud."
-#: src/Module/Moderation/Report/Create.php:136
+#: src/Module/Moderation/Report/Create.php:122
msgid "Please login to access this page."
msgstr "Connectez-vous pour accéder à cette page."
-#: src/Module/Moderation/Report/Create.php:165
-#: src/Module/Moderation/Report/Create.php:180
-#: src/Module/Moderation/Report/Create.php:208
-#: src/Module/Moderation/Report/Create.php:260
-#: src/Module/Moderation/Report/Create.php:279
+#: src/Module/Moderation/Report/Create.php:151
+#: src/Module/Moderation/Report/Create.php:166
+#: src/Module/Moderation/Report/Create.php:194
+#: src/Module/Moderation/Report/Create.php:246
+#: src/Module/Moderation/Report/Create.php:265
msgid "Create Moderation Report"
msgstr "Créer un rapport de modération"
-#: src/Module/Moderation/Report/Create.php:166
+#: src/Module/Moderation/Report/Create.php:152
msgid "Pick Contact"
msgstr "Sélectionner le contact"
-#: src/Module/Moderation/Report/Create.php:167
+#: src/Module/Moderation/Report/Create.php:153
msgid ""
"Please enter below the contact address or profile URL you would like to "
"create a moderation report about."
msgstr "Veuillez saisir ci-dessous l'adresse ou l'URL de profil du contact dont vous souhaitez faire un signalement."
-#: src/Module/Moderation/Report/Create.php:171
+#: src/Module/Moderation/Report/Create.php:157
msgid "Contact address/URL"
msgstr "Adresse/URL du contact"
-#: src/Module/Moderation/Report/Create.php:181
+#: src/Module/Moderation/Report/Create.php:167
msgid "Pick Category"
msgstr "Sélectionner la catégorie"
-#: src/Module/Moderation/Report/Create.php:182
+#: src/Module/Moderation/Report/Create.php:168
msgid "Please pick below the category of your report."
msgstr "Veuillez sélectionner la catégorie de votre signalement."
-#: src/Module/Moderation/Report/Create.php:186
-#: src/Module/Moderation/Report/Create.php:311
+#: src/Module/Moderation/Report/Create.php:172
+#: src/Module/Moderation/Report/Create.php:297
msgid "Spam"
msgstr "Spam"
-#: src/Module/Moderation/Report/Create.php:186
+#: src/Module/Moderation/Report/Create.php:172
msgid ""
"This contact is publishing many repeated/overly long posts/replies or "
"advertising their product/websites in otherwise irrelevant conversations."
msgstr "Ce contact publie beaucoup de publications/réponses répétées/très longs ou fait la promotion de ses produits/sites web sur des conversations non pertinentes."
-#: src/Module/Moderation/Report/Create.php:187
-#: src/Module/Moderation/Report/Create.php:312
+#: src/Module/Moderation/Report/Create.php:173
+#: src/Module/Moderation/Report/Create.php:298
msgid "Illegal Content"
msgstr "Contenu illégal"
-#: src/Module/Moderation/Report/Create.php:187
+#: src/Module/Moderation/Report/Create.php:173
msgid ""
"This contact is publishing content that is considered illegal in this node's"
" hosting juridiction."
msgstr "Ce contact publie du contenu qui est considéré illégal dans la juridiction où est hébergé ce nœud."
-#: src/Module/Moderation/Report/Create.php:188
-#: src/Module/Moderation/Report/Create.php:313
+#: src/Module/Moderation/Report/Create.php:174
+#: src/Module/Moderation/Report/Create.php:299
msgid "Community Safety"
msgstr "Sécurité de la communauté"
-#: src/Module/Moderation/Report/Create.php:188
+#: src/Module/Moderation/Report/Create.php:174
msgid ""
"This contact aggravated you or other people, by being provocative or "
"insensitive, intentionally or not. This includes disclosing people's private"
@@ -8537,12 +8532,12 @@ msgid ""
"replies."
msgstr "Ce contact vous a irrité ou a irrité d'autres personnes en se montrant provocateur ou insensible, intentionnellement ou non. Cela inclut la divulgation d'informations privées (doxxing), la publication de menaces ou d'images offensantes dans des publications ou des réponses."
-#: src/Module/Moderation/Report/Create.php:189
-#: src/Module/Moderation/Report/Create.php:314
+#: src/Module/Moderation/Report/Create.php:175
+#: src/Module/Moderation/Report/Create.php:300
msgid "Unwanted Content/Behavior"
msgstr "Contenu/Comportement indésirable"
-#: src/Module/Moderation/Report/Create.php:189
+#: src/Module/Moderation/Report/Create.php:175
msgid ""
"This contact has repeatedly published content irrelevant to the node's theme"
" or is openly criticizing the node's administration/moderation without "
@@ -8550,89 +8545,89 @@ msgid ""
"nitpicking on a sensitive topic."
msgstr "Ce contact a publié de manière répétée un contenu sans rapport avec le thème du nœud ou critique ouvertement l'administration/la modération du nœud sans discuter directement avec les personnes concernées, par exemple ou en pinaillant de manière répétée sur un sujet sensible."
-#: src/Module/Moderation/Report/Create.php:190
-#: src/Module/Moderation/Report/Create.php:315
+#: src/Module/Moderation/Report/Create.php:176
+#: src/Module/Moderation/Report/Create.php:301
msgid "Rules Violation"
msgstr "Violation de règles"
-#: src/Module/Moderation/Report/Create.php:190
+#: src/Module/Moderation/Report/Create.php:176
msgid ""
"This contact violated one or more rules of this node. You will be able to "
"pick which one(s) in the next step."
msgstr "Ce contact à violé une ou plusieurs règles de ce nœud. Vous pourrez sélectionner la ou les règles dans l'étape suivante."
-#: src/Module/Moderation/Report/Create.php:191
+#: src/Module/Moderation/Report/Create.php:177
msgid ""
"Please elaborate below why you submitted this report. The more details you "
"provide, the better your report can be handled."
msgstr "Veuillez indiquer si-dessous les raisons de ce signalement. Plus vous donnez de détails, mieux le signalement sera pris en compte."
-#: src/Module/Moderation/Report/Create.php:193
+#: src/Module/Moderation/Report/Create.php:179
msgid "Additional Information"
msgstr "Information supplémentaire"
-#: src/Module/Moderation/Report/Create.php:193
+#: src/Module/Moderation/Report/Create.php:179
msgid ""
"Please provide any additional information relevant to this particular "
"report. You will be able to attach posts by this contact in the next step, "
"but any context is welcome."
msgstr "Veuillez fournir n'importe quelle information supplémentaire utile pour ce signalement. Vous pourrez joindre des publications de ce contact dans la prochaine étape, mais n'importe quel contenu est accepté."
-#: src/Module/Moderation/Report/Create.php:209
+#: src/Module/Moderation/Report/Create.php:195
msgid "Pick Rules"
msgstr "Sélectionner les règles"
-#: src/Module/Moderation/Report/Create.php:210
+#: src/Module/Moderation/Report/Create.php:196
msgid "Please pick below the node rules you believe this contact violated."
msgstr "Veuillez sélectionner les règles que vous estimez avoir été violées par ce contact."
-#: src/Module/Moderation/Report/Create.php:261
+#: src/Module/Moderation/Report/Create.php:247
msgid "Pick Posts"
msgstr "Sélectionner les publications"
-#: src/Module/Moderation/Report/Create.php:262
+#: src/Module/Moderation/Report/Create.php:248
msgid "Please optionally pick posts to attach to your report."
msgstr "Veuillez sélectionner, si vous le souhaitez, les publications à joindre à votre signalement."
-#: src/Module/Moderation/Report/Create.php:281
+#: src/Module/Moderation/Report/Create.php:267
msgid "Submit Report"
msgstr "Envoyer le signalement"
-#: src/Module/Moderation/Report/Create.php:282
+#: src/Module/Moderation/Report/Create.php:268
msgid "Further Action"
msgstr "Action supplémentaire"
-#: src/Module/Moderation/Report/Create.php:283
+#: src/Module/Moderation/Report/Create.php:269
msgid ""
"You can also perform one of the following action on the contact you "
"reported:"
msgstr "Vous pouvez également effectuer une des actions suivantes sur le contact que vous signalez :"
-#: src/Module/Moderation/Report/Create.php:291
+#: src/Module/Moderation/Report/Create.php:277
msgid "Nothing"
msgstr "Ne rien faire"
-#: src/Module/Moderation/Report/Create.php:292
+#: src/Module/Moderation/Report/Create.php:278
msgid "Collapse contact"
msgstr "Réduire le contact"
-#: src/Module/Moderation/Report/Create.php:292
+#: src/Module/Moderation/Report/Create.php:278
msgid ""
"Their posts and replies will keep appearing in your Network page but their "
"content will be collapsed by default."
msgstr "Leurs publications et réponses continueront d'apparaître sur votre page Réseau mais le contenu sera réduit par défaut."
-#: src/Module/Moderation/Report/Create.php:293
+#: src/Module/Moderation/Report/Create.php:279
msgid ""
"Their posts won't appear in your Network page anymore, but their replies can"
" appear in forum threads. They still can follow you."
msgstr "Leurs publications n'apparaîtront plus sur votre page Réseau, mais leurs réponses peuvent apparaître dans des fils de discussion. Ils peuvent toujours vous suivre."
-#: src/Module/Moderation/Report/Create.php:294
+#: src/Module/Moderation/Report/Create.php:280
msgid "Block contact"
msgstr "Bloquer le contact"
-#: src/Module/Moderation/Report/Create.php:294
+#: src/Module/Moderation/Report/Create.php:280
msgid ""
"Their posts won't appear in your Network page anymore, but their replies can"
" appear in forum threads, with their content collapsed by default. They "
@@ -8640,51 +8635,51 @@ msgid ""
"means."
msgstr "Leurs publications n'apparaîtront plus sur votre page Réseau mais leurs réponses peuvent apparaître dans des fils de discussion, avec le contenu réduit par défaut. Ils ne peuvent pas vous suivre mais peuvent accéder à vos publications publiques par d'autres moyens."
-#: src/Module/Moderation/Report/Create.php:297
+#: src/Module/Moderation/Report/Create.php:283
msgid "Forward report"
msgstr "Transmettre le signalement"
-#: src/Module/Moderation/Report/Create.php:297
+#: src/Module/Moderation/Report/Create.php:283
msgid "Would you ike to forward this report to the remote server?"
msgstr "Voulez-vous transmettre le signalement au serveur distant ?"
-#: src/Module/Moderation/Report/Create.php:330
+#: src/Module/Moderation/Report/Create.php:316
msgid "1. Pick a contact"
msgstr "1. Sélectionner le contact"
-#: src/Module/Moderation/Report/Create.php:331
+#: src/Module/Moderation/Report/Create.php:317
msgid "2. Pick a category"
msgstr "2. Sélectionner la catégorie"
-#: src/Module/Moderation/Report/Create.php:332
+#: src/Module/Moderation/Report/Create.php:318
msgid "2a. Pick rules"
msgstr "2a. Sélectionner les règles"
-#: src/Module/Moderation/Report/Create.php:333
+#: src/Module/Moderation/Report/Create.php:319
msgid "2b. Add comment"
msgstr "2b. Ajouter un commentaire"
-#: src/Module/Moderation/Report/Create.php:334
+#: src/Module/Moderation/Report/Create.php:320
msgid "3. Pick posts"
msgstr "3. Sélectionner les publications"
-#: src/Module/Moderation/Reports.php:111
+#: src/Module/Moderation/Reports.php:97
msgid "List of reports"
msgstr "Liste des signalements"
-#: src/Module/Moderation/Reports.php:112
+#: src/Module/Moderation/Reports.php:98
msgid "This page display reports created by our or remote users."
msgstr "Cette page affiche les signalements créés par les utilisateurs locaux ou distants."
-#: src/Module/Moderation/Reports.php:113
+#: src/Module/Moderation/Reports.php:99
msgid "No report exists at this node."
msgstr "Aucun signalement sur ce nœud."
-#: src/Module/Moderation/Reports.php:116
+#: src/Module/Moderation/Reports.php:102
msgid "Category"
msgstr "Catégorie"
-#: src/Module/Moderation/Reports.php:120
+#: src/Module/Moderation/Reports.php:106
#, php-format
msgid "%s total report"
msgid_plural "%s total reports"
@@ -8692,24 +8687,24 @@ msgstr[0] "%s signalement au total"
msgstr[1] "%s signalements au total"
msgstr[2] "%s signalements au total"
-#: src/Module/Moderation/Reports.php:123
+#: src/Module/Moderation/Reports.php:109
msgid "URL of the reported contact."
msgstr "URL du contact signalé."
-#: src/Module/Moderation/Summary.php:57 src/Module/Settings/Account.php:436
+#: src/Module/Moderation/Summary.php:43 src/Module/Settings/Account.php:422
msgid "Channel Relay"
msgstr "Relai de chaîne"
-#: src/Module/Moderation/Summary.php:77
+#: src/Module/Moderation/Summary.php:63
msgid "Registered users"
msgstr "Utilisateurs inscrits"
-#: src/Module/Moderation/Summary.php:79
+#: src/Module/Moderation/Summary.php:65
msgid "Pending registrations"
msgstr "Inscriptions en attente"
-#: src/Module/Moderation/Users/Active.php:43
-#: src/Module/Moderation/Users/Index.php:43
+#: src/Module/Moderation/Users/Active.php:29
+#: src/Module/Moderation/Users/Index.php:29
#, php-format
msgid "%s user blocked"
msgid_plural "%s users blocked"
@@ -8717,18 +8712,18 @@ msgstr[0] "%s utilisateur bloqué"
msgstr[1] "%s utilisateurs bloqués"
msgstr[2] "%s utilisateurs bloqués"
-#: src/Module/Moderation/Users/Active.php:51
-#: src/Module/Moderation/Users/Active.php:85
-#: src/Module/Moderation/Users/Blocked.php:51
-#: src/Module/Moderation/Users/Blocked.php:85
-#: src/Module/Moderation/Users/Index.php:58
-#: src/Module/Moderation/Users/Index.php:92
+#: src/Module/Moderation/Users/Active.php:37
+#: src/Module/Moderation/Users/Active.php:71
+#: src/Module/Moderation/Users/Blocked.php:37
+#: src/Module/Moderation/Users/Blocked.php:71
+#: src/Module/Moderation/Users/Index.php:44
+#: src/Module/Moderation/Users/Index.php:78
msgid "You can't remove yourself"
msgstr "Vous ne pouvez pas supprimer votre propre compte"
-#: src/Module/Moderation/Users/Active.php:55
-#: src/Module/Moderation/Users/Blocked.php:55
-#: src/Module/Moderation/Users/Index.php:62
+#: src/Module/Moderation/Users/Active.php:41
+#: src/Module/Moderation/Users/Blocked.php:41
+#: src/Module/Moderation/Users/Index.php:48
#, php-format
msgid "%s user deleted"
msgid_plural "%s users deleted"
@@ -8736,88 +8731,88 @@ msgstr[0] "%s utilisateur supprimé"
msgstr[1] "%s utilisateurs supprimés"
msgstr[2] "%s utilisateurs supprimés"
-#: src/Module/Moderation/Users/Active.php:83
-#: src/Module/Moderation/Users/Blocked.php:83
-#: src/Module/Moderation/Users/Index.php:90
+#: src/Module/Moderation/Users/Active.php:69
+#: src/Module/Moderation/Users/Blocked.php:69
+#: src/Module/Moderation/Users/Index.php:76
#, php-format
msgid "User \"%s\" deleted"
msgstr "Utilisateur \"%s\" supprimé"
-#: src/Module/Moderation/Users/Active.php:93
-#: src/Module/Moderation/Users/Index.php:100
+#: src/Module/Moderation/Users/Active.php:79
+#: src/Module/Moderation/Users/Index.php:86
#, php-format
msgid "User \"%s\" blocked"
msgstr "Utilisateur \"%s\" bloqué"
-#: src/Module/Moderation/Users/Active.php:126
-#: src/Module/Moderation/Users/Blocked.php:126
-#: src/Module/Moderation/Users/Deleted.php:83
-#: src/Module/Moderation/Users/Index.php:140
-#: src/Module/Moderation/Users/Index.php:160
+#: src/Module/Moderation/Users/Active.php:112
+#: src/Module/Moderation/Users/Blocked.php:112
+#: src/Module/Moderation/Users/Deleted.php:69
+#: src/Module/Moderation/Users/Index.php:126
+#: src/Module/Moderation/Users/Index.php:146
msgid "Register date"
msgstr "Date d'inscription"
-#: src/Module/Moderation/Users/Active.php:126
-#: src/Module/Moderation/Users/Blocked.php:126
-#: src/Module/Moderation/Users/Deleted.php:83
-#: src/Module/Moderation/Users/Index.php:140
-#: src/Module/Moderation/Users/Index.php:160
+#: src/Module/Moderation/Users/Active.php:112
+#: src/Module/Moderation/Users/Blocked.php:112
+#: src/Module/Moderation/Users/Deleted.php:69
+#: src/Module/Moderation/Users/Index.php:126
+#: src/Module/Moderation/Users/Index.php:146
msgid "Last login"
msgstr "Dernière connexion"
-#: src/Module/Moderation/Users/Active.php:126
-#: src/Module/Moderation/Users/Blocked.php:126
-#: src/Module/Moderation/Users/Deleted.php:83
-#: src/Module/Moderation/Users/Index.php:140
-#: src/Module/Moderation/Users/Index.php:160
+#: src/Module/Moderation/Users/Active.php:112
+#: src/Module/Moderation/Users/Blocked.php:112
+#: src/Module/Moderation/Users/Deleted.php:69
+#: src/Module/Moderation/Users/Index.php:126
+#: src/Module/Moderation/Users/Index.php:146
msgid "Last public item"
msgstr "Dernière publication publique"
-#: src/Module/Moderation/Users/Active.php:134
+#: src/Module/Moderation/Users/Active.php:120
msgid "Active Accounts"
msgstr "Comptes actifs"
-#: src/Module/Moderation/Users/Active.php:138
-#: src/Module/Moderation/Users/Blocked.php:137
-#: src/Module/Moderation/Users/Index.php:153
+#: src/Module/Moderation/Users/Active.php:124
+#: src/Module/Moderation/Users/Blocked.php:123
+#: src/Module/Moderation/Users/Index.php:139
msgid "User blocked"
msgstr "Utilisateur bloqué"
-#: src/Module/Moderation/Users/Active.php:139
-#: src/Module/Moderation/Users/Blocked.php:139
-#: src/Module/Moderation/Users/Index.php:155
+#: src/Module/Moderation/Users/Active.php:125
+#: src/Module/Moderation/Users/Blocked.php:125
+#: src/Module/Moderation/Users/Index.php:141
msgid "Site admin"
msgstr "Administration du Site"
-#: src/Module/Moderation/Users/Active.php:140
-#: src/Module/Moderation/Users/Blocked.php:140
-#: src/Module/Moderation/Users/Index.php:156
+#: src/Module/Moderation/Users/Active.php:126
+#: src/Module/Moderation/Users/Blocked.php:126
+#: src/Module/Moderation/Users/Index.php:142
msgid "Account expired"
msgstr "Compte expiré"
-#: src/Module/Moderation/Users/Active.php:141
-#: src/Module/Moderation/Users/Index.php:159
+#: src/Module/Moderation/Users/Active.php:127
+#: src/Module/Moderation/Users/Index.php:145
msgid "Create a new user"
msgstr "Créer un nouvel utilisateur"
-#: src/Module/Moderation/Users/Active.php:147
-#: src/Module/Moderation/Users/Blocked.php:146
-#: src/Module/Moderation/Users/Index.php:165
+#: src/Module/Moderation/Users/Active.php:133
+#: src/Module/Moderation/Users/Blocked.php:132
+#: src/Module/Moderation/Users/Index.php:151
msgid ""
"Selected users will be deleted!\\n\\nEverything these users had posted on "
"this site will be permanently deleted!\\n\\nAre you sure?"
msgstr "Les utilisateurs sélectionnés vont être supprimés!\\n\\nTout ce qu'ils ont posté sur ce site sera définitivement effacé!\\n\\nÊtes-vous certain?"
-#: src/Module/Moderation/Users/Active.php:148
-#: src/Module/Moderation/Users/Blocked.php:147
-#: src/Module/Moderation/Users/Index.php:166
+#: src/Module/Moderation/Users/Active.php:134
+#: src/Module/Moderation/Users/Blocked.php:133
+#: src/Module/Moderation/Users/Index.php:152
msgid ""
"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
"site will be permanently deleted!\\n\\nAre you sure?"
msgstr "L'utilisateur {0} va être supprimé!\\n\\nTout ce qu'il a posté sur ce site sera définitivement perdu!\\n\\nÊtes-vous certain?"
-#: src/Module/Moderation/Users/Blocked.php:43
-#: src/Module/Moderation/Users/Index.php:50
+#: src/Module/Moderation/Users/Blocked.php:29
+#: src/Module/Moderation/Users/Index.php:36
#, php-format
msgid "%s user unblocked"
msgid_plural "%s users unblocked"
@@ -8825,54 +8820,54 @@ msgstr[0] "%s utilisateur débloqué"
msgstr[1] "%s utilisateurs débloqués"
msgstr[2] "%s utilisateurs débloqués"
-#: src/Module/Moderation/Users/Blocked.php:92
-#: src/Module/Moderation/Users/Index.php:106
+#: src/Module/Moderation/Users/Blocked.php:78
+#: src/Module/Moderation/Users/Index.php:92
#, php-format
msgid "User \"%s\" unblocked"
msgstr "Utilisateur \"%s\" débloqué"
-#: src/Module/Moderation/Users/Blocked.php:134
+#: src/Module/Moderation/Users/Blocked.php:120
msgid "Blocked Users"
msgstr "Utilisateurs bloqués"
-#: src/Module/Moderation/Users/Create.php:62
+#: src/Module/Moderation/Users/Create.php:48
msgid "New User"
msgstr "Nouvel utilisateur"
-#: src/Module/Moderation/Users/Create.php:63
+#: src/Module/Moderation/Users/Create.php:49
msgid "Add User"
msgstr "Ajouter l'utilisateur"
-#: src/Module/Moderation/Users/Create.php:70
+#: src/Module/Moderation/Users/Create.php:56
msgid "Name of the new user."
msgstr "Nom du nouvel utilisateur."
-#: src/Module/Moderation/Users/Create.php:71
+#: src/Module/Moderation/Users/Create.php:57
msgid "Nickname"
msgstr "Pseudo"
-#: src/Module/Moderation/Users/Create.php:71
+#: src/Module/Moderation/Users/Create.php:57
msgid "Nickname of the new user."
msgstr "Pseudo du nouvel utilisateur."
-#: src/Module/Moderation/Users/Create.php:72
+#: src/Module/Moderation/Users/Create.php:58
msgid "Email address of the new user."
msgstr "Adresse de courriel du nouvel utilisateur."
-#: src/Module/Moderation/Users/Deleted.php:81
+#: src/Module/Moderation/Users/Deleted.php:67
msgid "Users awaiting permanent deletion"
msgstr "Utilisateurs en attente de suppression définitive"
-#: src/Module/Moderation/Users/Deleted.php:83
-#: src/Module/Moderation/Users/Index.php:160
+#: src/Module/Moderation/Users/Deleted.php:69
+#: src/Module/Moderation/Users/Index.php:146
msgid "Permanent deletion"
msgstr "Suppression définitive"
-#: src/Module/Moderation/Users/Index.php:150
+#: src/Module/Moderation/Users/Index.php:136
msgid "User waiting for permanent deletion"
msgstr "Utilisateur en attente de suppression définitive"
-#: src/Module/Moderation/Users/Pending.php:44
+#: src/Module/Moderation/Users/Pending.php:30
#, php-format
msgid "%s user approved"
msgid_plural "%s users approved"
@@ -8880,7 +8875,7 @@ msgstr[0] "%s utilisateur approuvé"
msgstr[1] "%s utilisateurs approuvés"
msgstr[2] "%s utilisateurs approuvés"
-#: src/Module/Moderation/Users/Pending.php:51
+#: src/Module/Moderation/Users/Pending.php:37
#, php-format
msgid "%s registration revoked"
msgid_plural "%s registrations revoked"
@@ -8888,420 +8883,406 @@ msgstr[0] "%s inscription refusée"
msgstr[1] "%s inscriptions refusées"
msgstr[2] "%s inscriptions refusées"
-#: src/Module/Moderation/Users/Pending.php:76
+#: src/Module/Moderation/Users/Pending.php:62
msgid "Account approved."
msgstr "Inscription validée."
-#: src/Module/Moderation/Users/Pending.php:82
+#: src/Module/Moderation/Users/Pending.php:68
msgid "Registration revoked"
msgstr "Inscription refusée"
-#: src/Module/Moderation/Users/Pending.php:97
+#: src/Module/Moderation/Users/Pending.php:83
msgid "User registrations awaiting review"
msgstr "Inscriptions en attente de confirmation"
-#: src/Module/Moderation/Users/Pending.php:99
+#: src/Module/Moderation/Users/Pending.php:85
msgid "Request date"
msgstr "Date de la demande"
-#: src/Module/Moderation/Users/Pending.php:100
+#: src/Module/Moderation/Users/Pending.php:86
msgid "No registrations."
msgstr "Pas d'inscriptions."
-#: src/Module/Moderation/Users/Pending.php:101
+#: src/Module/Moderation/Users/Pending.php:87
msgid "Note from the user"
msgstr "Message personnel"
-#: src/Module/Moderation/Users/Pending.php:103
+#: src/Module/Moderation/Users/Pending.php:89
msgid "Deny"
msgstr "Refuser"
-#: src/Module/Notifications/Introductions.php:105
+#: src/Module/Notifications/Introductions.php:91
msgid "Show Ignored Requests"
msgstr "Voir les demandes ignorées"
-#: src/Module/Notifications/Introductions.php:105
+#: src/Module/Notifications/Introductions.php:91
msgid "Hide Ignored Requests"
msgstr "Cacher les demandes ignorées"
-#: src/Module/Notifications/Introductions.php:121
-#: src/Module/Notifications/Introductions.php:184
+#: src/Module/Notifications/Introductions.php:107
+#: src/Module/Notifications/Introductions.php:170
msgid "Notification type:"
msgstr "Type de notification :"
-#: src/Module/Notifications/Introductions.php:124
+#: src/Module/Notifications/Introductions.php:110
msgid "Suggested by:"
msgstr "Suggéré par :"
-#: src/Module/Notifications/Introductions.php:149
+#: src/Module/Notifications/Introductions.php:135
msgid "Claims to be known to you: "
msgstr "Prétend que vous le connaissez : "
-#: src/Module/Notifications/Introductions.php:158
+#: src/Module/Notifications/Introductions.php:144
msgid "Shall your connection be bidirectional or not?"
msgstr "Souhaitez vous que votre connexion soit bi-directionnelle ?"
-#: src/Module/Notifications/Introductions.php:159
+#: src/Module/Notifications/Introductions.php:145
#, php-format
msgid ""
"Accepting %s as a friend allows %s to subscribe to your posts, and you will "
"also receive updates from them in your news feed."
msgstr "Accepter %s comme ami autorise %s à s'abonner à vos publications, et vous recevrez également des nouvelles d'eux dans votre fil d'actualités."
-#: src/Module/Notifications/Introductions.php:160
+#: src/Module/Notifications/Introductions.php:146
#, php-format
msgid ""
"Accepting %s as a subscriber allows them to subscribe to your posts, but you"
" will not receive updates from them in your news feed."
msgstr "Accepter %s comme ami les autorise à s'abonner à vos publications, mais vous ne recevrez pas de nouvelles d'eux dans votre fil d'actualités."
-#: src/Module/Notifications/Introductions.php:162
+#: src/Module/Notifications/Introductions.php:148
msgid "Friend"
msgstr "Ami"
-#: src/Module/Notifications/Introductions.php:163
+#: src/Module/Notifications/Introductions.php:149
msgid "Subscriber"
msgstr "Abonné∙e"
-#: src/Module/Notifications/Introductions.php:222
+#: src/Module/Notifications/Introductions.php:208
msgid "No introductions."
msgstr "Aucune demande d'introduction."
-#: src/Module/Notifications/Introductions.php:223
-#: src/Module/Notifications/Notifications.php:141
+#: src/Module/Notifications/Introductions.php:209
+#: src/Module/Notifications/Notifications.php:127
#, php-format
msgid "No more %s notifications."
msgstr "Aucune notification de %s"
-#: src/Module/Notifications/Notification.php:135
+#: src/Module/Notifications/Notification.php:121
msgid "You must be logged in to show this page."
msgstr "Vous devez être identifié pour afficher cette page."
-#: src/Module/Notifications/Notifications.php:66
+#: src/Module/Notifications/Notifications.php:52
msgid "Network Notifications"
msgstr "Notifications du réseau"
-#: src/Module/Notifications/Notifications.php:72
+#: src/Module/Notifications/Notifications.php:58
msgid "System Notifications"
msgstr "Notifications du système"
-#: src/Module/Notifications/Notifications.php:78
+#: src/Module/Notifications/Notifications.php:64
msgid "Personal Notifications"
msgstr "Notifications personnelles"
-#: src/Module/Notifications/Notifications.php:84
+#: src/Module/Notifications/Notifications.php:70
msgid "Home Notifications"
msgstr "Notifications de page d'accueil"
-#: src/Module/Notifications/Notifications.php:146
+#: src/Module/Notifications/Notifications.php:132
msgid "Show unread"
msgstr "Afficher non-lus"
-#: src/Module/Notifications/Ping.php:220
+#: src/Module/Notifications/Ping.php:206
msgid "{0} requested registration"
msgstr "{0} a demandé à s'inscrire"
-#: src/Module/Notifications/Ping.php:229
+#: src/Module/Notifications/Ping.php:215
#, php-format
msgid "{0} and %d others requested registration"
msgstr "{0} et %d autres attendent la confirmation de leur inscription."
-#: src/Module/OAuth/Acknowledge.php:51
+#: src/Module/OAuth/Acknowledge.php:37
msgid "Authorize application connection"
msgstr "Autoriser l'application à se connecter"
-#: src/Module/OAuth/Acknowledge.php:53
+#: src/Module/OAuth/Acknowledge.php:39
msgid ""
"Do you want to authorize this application to access your posts and contacts,"
" and/or create new posts for you?"
msgstr "Voulez-vous autoriser cette application à accéder à vos publications et contacts, et/ou à créer des billets à votre place?"
-#: src/Module/OAuth/Authorize.php:54
+#: src/Module/OAuth/Authorize.php:40
msgid "Unsupported or missing response type"
msgstr "Type de réponse manquant ou non pris en charge"
-#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:75
+#: src/Module/OAuth/Authorize.php:45 src/Module/OAuth/Token.php:61
msgid "Incomplete request data"
msgstr "Requête incomplète"
-#: src/Module/OAuth/Authorize.php:106
+#: src/Module/OAuth/Authorize.php:92
#, php-format
msgid ""
"Please copy the following authentication code into your application and "
"close this window: %s"
msgstr "Veuillez copier le code d'identification suivant dans votre application et ensuite fermer cette fenêtre: %s"
-#: src/Module/OAuth/Token.php:80
+#: src/Module/OAuth/Token.php:66
msgid "Invalid data or unknown client"
msgstr "Données invalides ou client inconnu"
-#: src/Module/OAuth/Token.php:105
+#: src/Module/OAuth/Token.php:91
msgid "Unsupported or missing grant type"
msgstr "Type de \"grant\" manquant ou non pris en charge"
-#: src/Module/OStatus/Repair.php:83
-msgid "Resubscribing to OStatus contacts"
-msgstr "Réinscription aux contacts OStatus"
-
-#: src/Module/OStatus/Repair.php:84 src/Module/OStatus/Subscribe.php:160
-msgid "Keep this window open until done."
-msgstr "Veuillez garder cette fenêtre ouverte jusqu'à la fin."
-
-#: src/Module/OStatus/Repair.php:85
-msgid "✔ Done"
-msgstr "✔ Fait"
-
-#: src/Module/OStatus/Repair.php:86
-msgid "No OStatus contacts to resubscribe to."
-msgstr "Aucun contact OStatus à se réabonner."
-
-#: src/Module/OStatus/Subscribe.php:72
+#: src/Module/OStatus/Subscribe.php:58
msgid "Subscribing to contacts"
msgstr "Abonnement aux contacts"
-#: src/Module/OStatus/Subscribe.php:81
+#: src/Module/OStatus/Subscribe.php:67
msgid "No contact provided."
msgstr "Pas de contact fourni."
-#: src/Module/OStatus/Subscribe.php:87
+#: src/Module/OStatus/Subscribe.php:73
msgid "Couldn't fetch information for contact."
msgstr "Impossible de récupérer les informations pour ce contact."
-#: src/Module/OStatus/Subscribe.php:98
+#: src/Module/OStatus/Subscribe.php:84
msgid "Couldn't fetch friends for contact."
msgstr "Impossible d'obtenir les abonnements de ce contact."
-#: src/Module/OStatus/Subscribe.php:104 src/Module/OStatus/Subscribe.php:115
+#: src/Module/OStatus/Subscribe.php:90 src/Module/OStatus/Subscribe.php:101
msgid "Couldn't fetch following contacts."
msgstr "Impossible de récupérer les contacts suivants."
-#: src/Module/OStatus/Subscribe.php:110
+#: src/Module/OStatus/Subscribe.php:96
msgid "Couldn't fetch remote profile."
msgstr "Impossible de récupérer le profil distant."
-#: src/Module/OStatus/Subscribe.php:120
+#: src/Module/OStatus/Subscribe.php:106
msgid "Unsupported network"
msgstr "Réseau incompatible"
-#: src/Module/OStatus/Subscribe.php:136
+#: src/Module/OStatus/Subscribe.php:122
msgid "Done"
msgstr "Terminé"
-#: src/Module/OStatus/Subscribe.php:150
+#: src/Module/OStatus/Subscribe.php:136
msgid "success"
msgstr "réussite"
-#: src/Module/OStatus/Subscribe.php:152
+#: src/Module/OStatus/Subscribe.php:138
msgid "failed"
msgstr "échec"
-#: src/Module/OStatus/Subscribe.php:155
+#: src/Module/OStatus/Subscribe.php:141
msgid "ignored"
msgstr "ignoré"
-#: src/Module/Photo.php:122
+#: src/Module/OStatus/Subscribe.php:146
+msgid "Keep this window open until done."
+msgstr "Veuillez garder cette fenêtre ouverte jusqu'à la fin."
+
+#: src/Module/Photo.php:108
msgid "The Photo is not available."
msgstr "La photo n'est pas disponible."
-#: src/Module/Photo.php:147
+#: src/Module/Photo.php:133
#, php-format
msgid "The Photo with id %s is not available."
msgstr "La photo avec l'identifiant %s n'est pas disponible."
-#: src/Module/Photo.php:188
+#: src/Module/Photo.php:174
#, php-format
msgid "Invalid external resource with url %s."
msgstr "La ressource externe avec l'URL %s est invalide."
-#: src/Module/Photo.php:190
+#: src/Module/Photo.php:176
#, php-format
msgid "Invalid photo with id %s."
msgstr "La photo avec l'identifiant %s est invalide."
-#: src/Module/Post/Edit.php:82 src/Module/Post/Edit.php:96
+#: src/Module/Post/Edit.php:68 src/Module/Post/Edit.php:82
msgid "Post not found."
msgstr "Publication non trouvée."
-#: src/Module/Post/Edit.php:102
+#: src/Module/Post/Edit.php:88
msgid "Edit post"
msgstr "Éditer la publication"
-#: src/Module/Post/Edit.php:136
+#: src/Module/Post/Edit.php:122
msgid "web link"
msgstr "lien web"
-#: src/Module/Post/Edit.php:137
+#: src/Module/Post/Edit.php:123
msgid "Insert video link"
msgstr "Insérer un lien video"
-#: src/Module/Post/Edit.php:138
+#: src/Module/Post/Edit.php:124
msgid "video link"
msgstr "lien vidéo"
-#: src/Module/Post/Edit.php:139
+#: src/Module/Post/Edit.php:125
msgid "Insert audio link"
msgstr "Insérer un lien audio"
-#: src/Module/Post/Edit.php:140
+#: src/Module/Post/Edit.php:126
msgid "audio link"
msgstr "lien audio"
-#: src/Module/Post/Tag/Remove.php:106
+#: src/Module/Post/Tag/Remove.php:92
msgid "Remove Item Tag"
msgstr "Enlever le tag de l'élément"
-#: src/Module/Post/Tag/Remove.php:107
+#: src/Module/Post/Tag/Remove.php:93
msgid "Select a tag to remove: "
msgstr "Sélectionner un tag à supprimer :"
-#: src/Module/Post/Tag/Remove.php:108
-#: src/Module/Settings/TwoFactor/Trusted.php:147
+#: src/Module/Post/Tag/Remove.php:94
+#: src/Module/Settings/TwoFactor/Trusted.php:133
msgid "Remove"
msgstr "Utiliser comme photo de profil"
-#: src/Module/Privacy/PermissionTooltip.php:71
+#: src/Module/Privacy/PermissionTooltip.php:57
#, php-format
msgid "Wrong type \"%s\", expected one of: %s"
msgstr "Type inattendu \"%s\", valeurs attendues : %s"
-#: src/Module/Privacy/PermissionTooltip.php:101
+#: src/Module/Privacy/PermissionTooltip.php:87
msgid "Model not found"
msgstr "Objet introuvable"
-#: src/Module/Privacy/PermissionTooltip.php:118
+#: src/Module/Privacy/PermissionTooltip.php:104
msgid "Unlisted"
msgstr "Non listé"
-#: src/Module/Privacy/PermissionTooltip.php:124
+#: src/Module/Privacy/PermissionTooltip.php:110
msgid "Remote privacy information not available."
msgstr "Informations de confidentialité indisponibles."
-#: src/Module/Privacy/PermissionTooltip.php:131
+#: src/Module/Privacy/PermissionTooltip.php:117
msgid "Visible to:"
msgstr "Visible par :"
-#: src/Module/Privacy/PermissionTooltip.php:133
+#: src/Module/Privacy/PermissionTooltip.php:119
msgid "CC:"
msgstr "CC:"
-#: src/Module/Privacy/PermissionTooltip.php:134
+#: src/Module/Privacy/PermissionTooltip.php:120
msgid "BCC:"
msgstr "CCI:"
-#: src/Module/Privacy/PermissionTooltip.php:135
+#: src/Module/Privacy/PermissionTooltip.php:121
msgid "Audience:"
msgstr "Audience :"
-#: src/Module/Privacy/PermissionTooltip.php:136
+#: src/Module/Privacy/PermissionTooltip.php:122
msgid "Attributed To:"
msgstr "Attribué à :"
-#: src/Module/Privacy/PermissionTooltip.php:234
+#: src/Module/Privacy/PermissionTooltip.php:220
#, php-format
msgid "Collection (%s)"
msgstr "Collection (%s)"
-#: src/Module/Privacy/PermissionTooltip.php:238
+#: src/Module/Privacy/PermissionTooltip.php:224
#, php-format
msgid "Followers (%s)"
msgstr "Abonnés (%s)"
-#: src/Module/Privacy/PermissionTooltip.php:255
+#: src/Module/Privacy/PermissionTooltip.php:241
#, php-format
msgid "%d more"
msgstr "%d supplémentaire"
-#: src/Module/Profile/Contacts.php:159
+#: src/Module/Profile/Contacts.php:145
msgid "No contacts."
msgstr "Aucun contact."
-#: src/Module/Profile/Conversations.php:106
-#: src/Module/Profile/Conversations.php:109 src/Module/Profile/Profile.php:353
-#: src/Module/Profile/Profile.php:356 src/Protocol/Feed.php:1114
-#: src/Protocol/OStatus.php:1011
-#, php-format
-msgid "%s's timeline"
-msgstr "Le flux de %s"
-
-#: src/Module/Profile/Conversations.php:107 src/Module/Profile/Profile.php:354
-#: src/Protocol/Feed.php:1118 src/Protocol/OStatus.php:1016
+#: src/Module/Profile/Conversations.php:92 src/Module/Profile/Profile.php:339
+#: src/Protocol/Feed.php:1097
#, php-format
msgid "%s's posts"
msgstr "Les publications originales de %s"
-#: src/Module/Profile/Conversations.php:108 src/Module/Profile/Profile.php:355
-#: src/Protocol/Feed.php:1121 src/Protocol/OStatus.php:1020
+#: src/Module/Profile/Conversations.php:93 src/Module/Profile/Profile.php:340
+#: src/Protocol/Feed.php:1100
#, php-format
msgid "%s's comments"
msgstr "Les commentaires de %s"
-#: src/Module/Profile/Photos.php:164 src/Module/Profile/Photos.php:167
-#: src/Module/Profile/Photos.php:192
-#: src/Module/Settings/Profile/Photo/Index.php:58
+#: src/Module/Profile/Conversations.php:94 src/Module/Profile/Profile.php:341
+#: src/Protocol/Feed.php:1093
+#, php-format
+msgid "%s's timeline"
+msgstr "Le flux de %s"
+
+#: src/Module/Profile/Photos.php:150 src/Module/Profile/Photos.php:153
+#: src/Module/Profile/Photos.php:178
+#: src/Module/Settings/Profile/Photo/Index.php:44
#, php-format
msgid "Image exceeds size limit of %s"
msgstr "L'image dépasse la taille limite de %s"
-#: src/Module/Profile/Photos.php:170
+#: src/Module/Profile/Photos.php:156
msgid "Image upload didn't complete, please try again"
msgstr "La mise en ligne de l'image ne s'est pas terminée, veuillez réessayer"
-#: src/Module/Profile/Photos.php:173
+#: src/Module/Profile/Photos.php:159
msgid "Image file is missing"
msgstr "Fichier image manquant"
-#: src/Module/Profile/Photos.php:178
+#: src/Module/Profile/Photos.php:164
msgid ""
"Server can't accept new file upload at this time, please contact your "
"administrator"
msgstr "Le serveur ne peut pas accepter la mise en ligne d'un nouveau fichier en ce moment, veuillez contacter un administrateur"
-#: src/Module/Profile/Photos.php:200
+#: src/Module/Profile/Photos.php:186
msgid "Image file is empty."
msgstr "Fichier image vide."
-#: src/Module/Profile/Photos.php:352
+#: src/Module/Profile/Photos.php:338
msgid "View Album"
msgstr "Voir l'album"
-#: src/Module/Profile/Profile.php:114 src/Module/Profile/Restricted.php:50
+#: src/Module/Profile/Profile.php:100 src/Module/Profile/Restricted.php:36
msgid "Profile not found."
msgstr "Profil introuvable."
-#: src/Module/Profile/Profile.php:160
+#: src/Module/Profile/Profile.php:146
#, php-format
msgid ""
"You're currently viewing your profile as %s Cancel"
msgstr "Vous êtes en train de consulter votre profil en tant que %s Annuler"
-#: src/Module/Profile/Profile.php:169
+#: src/Module/Profile/Profile.php:155
msgid "Full Name:"
msgstr "Nom complet :"
-#: src/Module/Profile/Profile.php:174
+#: src/Module/Profile/Profile.php:160
msgid "Member since:"
msgstr "Membre depuis :"
-#: src/Module/Profile/Profile.php:180
+#: src/Module/Profile/Profile.php:166
msgid "j F, Y"
msgstr "j F, Y"
-#: src/Module/Profile/Profile.php:181
+#: src/Module/Profile/Profile.php:167
msgid "j F"
msgstr "j F"
-#: src/Module/Profile/Profile.php:189 src/Util/Temporal.php:168
+#: src/Module/Profile/Profile.php:175 src/Util/Temporal.php:154
msgid "Birthday:"
msgstr "Anniversaire :"
-#: src/Module/Profile/Profile.php:192
-#: src/Module/Settings/Profile/Index.php:296 src/Util/Temporal.php:170
+#: src/Module/Profile/Profile.php:178
+#: src/Module/Settings/Profile/Index.php:282 src/Util/Temporal.php:156
msgid "Age: "
msgstr "Age : "
-#: src/Module/Profile/Profile.php:192
-#: src/Module/Settings/Profile/Index.php:296 src/Util/Temporal.php:170
+#: src/Module/Profile/Profile.php:178
+#: src/Module/Settings/Profile/Index.php:282 src/Util/Temporal.php:156
#, php-format
msgid "%d year old"
msgid_plural "%d years old"
@@ -9309,46 +9290,46 @@ msgstr[0] "%d an"
msgstr[1] "%d ans"
msgstr[2] "%d ans"
-#: src/Module/Profile/Profile.php:197
-#: src/Module/Settings/Profile/Index.php:289
+#: src/Module/Profile/Profile.php:183
+#: src/Module/Settings/Profile/Index.php:275
msgid "Description:"
msgstr "Description :"
-#: src/Module/Profile/Profile.php:263
+#: src/Module/Profile/Profile.php:249
msgid "Groups:"
msgstr "Groupes :"
-#: src/Module/Profile/Profile.php:275
+#: src/Module/Profile/Profile.php:261
msgid "View profile as:"
msgstr "Consulter le profil en tant que :"
-#: src/Module/Profile/Profile.php:292
+#: src/Module/Profile/Profile.php:278
msgid "View as"
msgstr "Voir en tant que"
-#: src/Module/Profile/RemoteFollow.php:82
+#: src/Module/Profile/RemoteFollow.php:68
msgid "Profile unavailable."
msgstr "Profil indisponible."
-#: src/Module/Profile/RemoteFollow.php:88
+#: src/Module/Profile/RemoteFollow.php:74
msgid "Invalid locator"
msgstr "Localisateur invalide"
-#: src/Module/Profile/RemoteFollow.php:95
+#: src/Module/Profile/RemoteFollow.php:81
msgid "The provided profile link doesn't seem to be valid"
msgstr "Le lien de profil fourni ne semble pas valide."
-#: src/Module/Profile/RemoteFollow.php:100
+#: src/Module/Profile/RemoteFollow.php:86
msgid ""
"Remote subscription can't be done for your network. Please subscribe "
"directly on your system."
msgstr "L'abonnement à distance ne peut pas être fait pour votre réseau. Merci de vous abonner directement sur votre système."
-#: src/Module/Profile/RemoteFollow.php:128
+#: src/Module/Profile/RemoteFollow.php:114
msgid "Friend/Connection Request"
msgstr "Demande de mise en contact"
-#: src/Module/Profile/RemoteFollow.php:129
+#: src/Module/Profile/RemoteFollow.php:115
#, php-format
msgid ""
"Enter your Webfinger address (user@domain.tld) or profile URL here. If this "
@@ -9356,579 +9337,579 @@ msgid ""
" or %s directly on your system."
msgstr "Saisissez votre adresse WebFinger (utilisateur@domaine.tld) ou l'adresse URL de votre profil ici. Si ce n'est pas supporté par votre site, vous devrez vous abonner à %s ou %s directement depuis votre système."
-#: src/Module/Profile/RemoteFollow.php:130
+#: src/Module/Profile/RemoteFollow.php:116
#, php-format
msgid ""
"If you are not yet a member of the free social web, follow "
"this link to find a public Friendica node and join us today."
msgstr "Si vous n'avez pas de compte sur un site compatible, cliquez ici pour trouver un site Friendica public et vous inscrire dès aujourd'hui."
-#: src/Module/Profile/RemoteFollow.php:131
+#: src/Module/Profile/RemoteFollow.php:117
msgid "Your Webfinger address or profile URL:"
msgstr "Votre adresse Webfinger ou URL de profil :"
-#: src/Module/Profile/Restricted.php:59
+#: src/Module/Profile/Restricted.php:45
msgid "Restricted profile"
msgstr "Profil restreint"
-#: src/Module/Profile/Restricted.php:60
+#: src/Module/Profile/Restricted.php:46
msgid ""
"This profile has been restricted which prevents access to their public "
"content from anonymous visitors."
msgstr "Ce profil a été restreint ce qui empêche l'accès des visiteurs anonymes à son contenu public."
-#: src/Module/Profile/Schedule.php:83
+#: src/Module/Profile/Schedule.php:69
msgid "Scheduled"
msgstr "Programmé"
-#: src/Module/Profile/Schedule.php:84
+#: src/Module/Profile/Schedule.php:70
msgid "Content"
msgstr "Contenu"
-#: src/Module/Profile/Schedule.php:85
+#: src/Module/Profile/Schedule.php:71
msgid "Remove post"
msgstr "Supprimer la publication"
-#: src/Module/Register.php:91
+#: src/Module/Register.php:77
msgid "Only parent users can create additional accounts."
msgstr "Seuls les comptes parent peuvent créer des comptes supplémentaires."
-#: src/Module/Register.php:106 src/Module/User/Import.php:112
+#: src/Module/Register.php:92 src/Module/User/Import.php:98
msgid ""
"This site has exceeded the number of allowed daily account registrations. "
"Please try again tomorrow."
msgstr "Le nombre d'inscriptions quotidiennes pour ce site a été dépassé. Merci de réessayer demain."
-#: src/Module/Register.php:123
+#: src/Module/Register.php:109
msgid ""
"You may (optionally) fill in this form via OpenID by supplying your OpenID "
"and clicking \"Register\"."
msgstr "Vous pouvez (si vous le souhaitez) remplir ce formulaire via OpenID en fournissant votre OpenID et en cliquant sur \"S'inscrire\"."
-#: src/Module/Register.php:124
+#: src/Module/Register.php:110
msgid ""
"If you are not familiar with OpenID, please leave that field blank and fill "
"in the rest of the items."
msgstr "Si vous n'êtes pas familier avec OpenID, laissez ce champ vide et remplissez le reste."
-#: src/Module/Register.php:125
+#: src/Module/Register.php:111
msgid "Your OpenID (optional): "
msgstr "Votre OpenID (facultatif): "
-#: src/Module/Register.php:134
+#: src/Module/Register.php:120
msgid "Include your profile in member directory?"
msgstr "Inclure votre profil dans l'annuaire des membres?"
-#: src/Module/Register.php:155
+#: src/Module/Register.php:141
msgid "Note for the admin"
msgstr "Commentaire pour l'administrateur"
-#: src/Module/Register.php:155
+#: src/Module/Register.php:141
msgid "Leave a message for the admin, why you want to join this node"
msgstr "Indiquez à l'administrateur les raisons de votre inscription à cette instance."
-#: src/Module/Register.php:156
+#: src/Module/Register.php:142
msgid "Membership on this site is by invitation only."
msgstr "L'inscription à ce site se fait uniquement sur invitation."
-#: src/Module/Register.php:157
+#: src/Module/Register.php:143
msgid "Your invitation code: "
msgstr "Votre code d'invitation :"
-#: src/Module/Register.php:165
+#: src/Module/Register.php:151
msgid "Your Display Name (as you would like it to be displayed on this system"
msgstr "Votre Nom d'Affichage (tel que vous souhaiteriez l'afficher sur ce système"
-#: src/Module/Register.php:166
+#: src/Module/Register.php:152
msgid ""
"Your Email Address: (Initial information will be send there, so this has to "
"be an existing address.)"
msgstr "Votre courriel : (Des informations de connexion vont être envoyées à cette adresse; elle doit exister)."
-#: src/Module/Register.php:167
+#: src/Module/Register.php:153
msgid "Please repeat your e-mail address:"
msgstr "Veuillez répéter votre adresse courriel :"
-#: src/Module/Register.php:169 src/Module/Security/PasswordTooLong.php:100
-#: src/Module/Settings/Account.php:569
+#: src/Module/Register.php:155 src/Module/Security/PasswordTooLong.php:86
+#: src/Module/Settings/Account.php:555
msgid "New Password:"
msgstr "Nouveau mot de passe :"
-#: src/Module/Register.php:169
+#: src/Module/Register.php:155
msgid "Leave empty for an auto generated password."
msgstr "Laisser ce champ libre pour obtenir un mot de passe généré automatiquement."
-#: src/Module/Register.php:170 src/Module/Security/PasswordTooLong.php:101
-#: src/Module/Settings/Account.php:570
+#: src/Module/Register.php:156 src/Module/Security/PasswordTooLong.php:87
+#: src/Module/Settings/Account.php:556
msgid "Confirm:"
msgstr "Confirmer :"
-#: src/Module/Register.php:171
+#: src/Module/Register.php:157
#, php-format
msgid ""
"Choose a profile nickname. This must begin with a text character. Your "
"profile address on this site will then be \"nickname@%s\"."
msgstr "Choisissez un pseudo. Celui devra commencer par une lettre. L'adresse de votre profil en découlera sous la forme \"pseudo@%s\"."
-#: src/Module/Register.php:172
+#: src/Module/Register.php:158
msgid "Choose a nickname: "
msgstr "Choisir un pseudo : "
-#: src/Module/Register.php:180 src/Module/User/Import.php:118
+#: src/Module/Register.php:166 src/Module/User/Import.php:104
msgid "Import"
msgstr "Importer"
-#: src/Module/Register.php:181
+#: src/Module/Register.php:167
msgid "Import your profile to this friendica instance"
msgstr "Importer votre profile dans cette instance de friendica"
-#: src/Module/Register.php:188
+#: src/Module/Register.php:174
msgid "Note: This node explicitly contains adult content"
msgstr "Note: Ce nœud contient explicitement du contenu destiné aux adultes"
-#: src/Module/Register.php:190 src/Module/Settings/Delegation.php:181
+#: src/Module/Register.php:176 src/Module/Settings/Delegation.php:167
msgid "Parent Password:"
msgstr "Mot de passe du compte parent :"
-#: src/Module/Register.php:190 src/Module/Settings/Delegation.php:181
+#: src/Module/Register.php:176 src/Module/Settings/Delegation.php:167
msgid ""
"Please enter the password of the parent account to legitimize your request."
msgstr "Veuillez saisir le mot de passe du compte parent pour authentifier votre requête."
-#: src/Module/Register.php:219
+#: src/Module/Register.php:205
msgid "Password doesn't match."
msgstr "Le mot de passe ne correspond pas."
-#: src/Module/Register.php:225
+#: src/Module/Register.php:211
msgid "Please enter your password."
msgstr "Veuillez saisir votre mot de passe."
-#: src/Module/Register.php:267
+#: src/Module/Register.php:253
msgid "You have entered too much information."
msgstr "Vous avez entré trop d'informations."
-#: src/Module/Register.php:290
+#: src/Module/Register.php:276
msgid "Please enter the identical mail address in the second field."
msgstr "Veuillez entrer une adresse courriel identique dans le deuxième champ."
-#: src/Module/Register.php:298
+#: src/Module/Register.php:284
msgid "Nickname cannot start with a digit."
msgstr "Le pseudo ne peut pas commencer par un chiffre."
-#: src/Module/Register.php:300
+#: src/Module/Register.php:286
msgid "Nickname can only contain US-ASCII characters."
msgstr "Le pseudo ne peut contenir que des caractères US-ASCII."
-#: src/Module/Register.php:329
+#: src/Module/Register.php:315
msgid "The additional account was created."
msgstr "Le compte additionnel a bien été créé."
-#: src/Module/Register.php:354
+#: src/Module/Register.php:340
msgid ""
"Registration successful. Please check your email for further instructions."
msgstr "Inscription réussie. Vérifiez vos courriels pour la suite des instructions."
-#: src/Module/Register.php:361
+#: src/Module/Register.php:347
#, php-format
msgid ""
"Failed to send email message. Here your accout details:You can enter one of your one-time recovery codes in case you lost access" " to your mobile device.
" msgstr "Vous pouvez saisir l'un de vos codes de récupération à usage unique si vous avez perdu l'accès à votre périphérique mobile.
" -#: src/Module/Security/TwoFactor/Recovery.php:101 +#: src/Module/Security/TwoFactor/Recovery.php:87 #, php-format msgid "Don’t have your phone? Enter a two-factor recovery code" msgstr "Vous n'avez pas votre téléphone ? Saisissez un code de récupération à deux facteurs" -#: src/Module/Security/TwoFactor/Recovery.php:102 +#: src/Module/Security/TwoFactor/Recovery.php:88 msgid "Please enter a recovery code" msgstr "Veuillez saisir un code de récupération" -#: src/Module/Security/TwoFactor/Recovery.php:103 +#: src/Module/Security/TwoFactor/Recovery.php:89 msgid "Submit recovery code and complete login" msgstr "Soumettre le code de récupération et compléter l'identification" -#: src/Module/Security/TwoFactor/SignOut.php:122 +#: src/Module/Security/TwoFactor/SignOut.php:108 msgid "Sign out of this browser?" msgstr "Se déconnecter de ce navigateur ?" -#: src/Module/Security/TwoFactor/SignOut.php:123 +#: src/Module/Security/TwoFactor/SignOut.php:109 msgid "" "If you trust this browser, you will not be asked for verification code " "the next time you sign in.
" msgstr "Si vous faites confiance à ce navigateur, votre code de vérification ne vous sera pas demandé la prochaine fois que vous vous connecterez.
" -#: src/Module/Security/TwoFactor/SignOut.php:124 +#: src/Module/Security/TwoFactor/SignOut.php:110 msgid "Sign out" msgstr "Se déconnecter" -#: src/Module/Security/TwoFactor/SignOut.php:126 +#: src/Module/Security/TwoFactor/SignOut.php:112 msgid "Trust and sign out" msgstr "Faire confiance et se déconnecter" -#: src/Module/Security/TwoFactor/Trust.php:96 +#: src/Module/Security/TwoFactor/Trust.php:82 msgid "Couldn't save browser to Cookie." msgstr "Impossible d'enregistrer ce navigateur dans le cookie." -#: src/Module/Security/TwoFactor/Trust.php:141 +#: src/Module/Security/TwoFactor/Trust.php:127 msgid "Trust this browser?" msgstr "Faire confiance à ce navigateur ?" -#: src/Module/Security/TwoFactor/Trust.php:142 +#: src/Module/Security/TwoFactor/Trust.php:128 msgid "" "If you choose to trust this browser, you will not be asked for a " "verification code the next time you sign in.
" msgstr "Si vous choisissez de faire confiance à ce navigateur, votre code de vérification ne vous sera pas demandé la prochaine fois que vous vous connecterez.
" -#: src/Module/Security/TwoFactor/Trust.php:143 +#: src/Module/Security/TwoFactor/Trust.php:129 msgid "Not now" msgstr "Pas maintenant" -#: src/Module/Security/TwoFactor/Trust.php:144 +#: src/Module/Security/TwoFactor/Trust.php:130 msgid "Don't trust" msgstr "Ne pas faire confiance" -#: src/Module/Security/TwoFactor/Trust.php:145 +#: src/Module/Security/TwoFactor/Trust.php:131 msgid "Trust" msgstr "Faire confiance" -#: src/Module/Security/TwoFactor/Verify.php:97 +#: src/Module/Security/TwoFactor/Verify.php:83 msgid "" "Open the two-factor authentication app on your device to get an " "authentication code and verify your identity.
" msgstr "Ouvrez l'application d'identification à deux facteurs sur votre appareil afin d'avoir un code d'identification et vérifier votre identité.
" -#: src/Module/Security/TwoFactor/Verify.php:100 +#: src/Module/Security/TwoFactor/Verify.php:86 #, php-format msgid "" "If you do not have access to your authentication code you can use a two-factor recovery code." msgstr "Si vous n'avez pas accès à votre code d'identification vous pouvez utiliser un code de récupération à deux facteurs." -#: src/Module/Security/TwoFactor/Verify.php:101 -#: src/Module/Settings/TwoFactor/Verify.php:158 +#: src/Module/Security/TwoFactor/Verify.php:87 +#: src/Module/Settings/TwoFactor/Verify.php:144 msgid "Please enter a code from your authentication app" msgstr "Veuillez saisir le code fourni par votre application mobile d'authentification à deux facteurs" -#: src/Module/Security/TwoFactor/Verify.php:102 +#: src/Module/Security/TwoFactor/Verify.php:88 msgid "Verify code and complete login" msgstr "Vérifier le code de récupération et compléter l'identification" -#: src/Module/Settings/Account.php:96 +#: src/Module/Settings/Account.php:82 msgid "Please use a shorter name." msgstr "Veuillez saisir un nom plus court." -#: src/Module/Settings/Account.php:99 +#: src/Module/Settings/Account.php:85 msgid "Name too short." msgstr "Le nom est trop court." -#: src/Module/Settings/Account.php:108 +#: src/Module/Settings/Account.php:94 msgid "Wrong Password." msgstr "Mot de passe erroné." -#: src/Module/Settings/Account.php:113 +#: src/Module/Settings/Account.php:99 msgid "Invalid email." msgstr "Courriel invalide." -#: src/Module/Settings/Account.php:117 +#: src/Module/Settings/Account.php:103 msgid "Cannot change to that email." msgstr "Ne peut pas changer vers ce courriel." -#: src/Module/Settings/Account.php:146 src/Module/Settings/Account.php:195 -#: src/Module/Settings/Account.php:216 src/Module/Settings/Account.php:300 -#: src/Module/Settings/Account.php:329 +#: src/Module/Settings/Account.php:132 src/Module/Settings/Account.php:181 +#: src/Module/Settings/Account.php:202 src/Module/Settings/Account.php:286 +#: src/Module/Settings/Account.php:315 msgid "Settings were not updated." msgstr "Les paramètres n'ont pas été mis à jour." -#: src/Module/Settings/Account.php:347 +#: src/Module/Settings/Account.php:333 msgid "Contact CSV file upload error" msgstr "Erreur de téléversement du fichier de contact CSV" -#: src/Module/Settings/Account.php:366 +#: src/Module/Settings/Account.php:352 msgid "Importing Contacts done" msgstr "Import des contacts effectué" -#: src/Module/Settings/Account.php:379 +#: src/Module/Settings/Account.php:365 msgid "Relocate message has been send to your contacts" msgstr "Un message de relocalisation a été envoyé à vos contacts." -#: src/Module/Settings/Account.php:396 +#: src/Module/Settings/Account.php:382 msgid "Unable to find your profile. Please contact your admin." msgstr "Impossible de trouver votre profile. Merci de contacter votre administrateur." -#: src/Module/Settings/Account.php:438 +#: src/Module/Settings/Account.php:424 msgid "" "Account for a service that automatically shares content based on user " "defined channels." msgstr "Compte de service qui partage automatiquement du contenu basés les chaînes de l'utilisateur" -#: src/Module/Settings/Account.php:448 +#: src/Module/Settings/Account.php:434 msgid "Personal Page Subtypes" msgstr "Sous-catégories de page personnelle" -#: src/Module/Settings/Account.php:449 +#: src/Module/Settings/Account.php:435 msgid "Community Group Subtypes" msgstr "Sous-catégories de groupe communautaire" -#: src/Module/Settings/Account.php:460 +#: src/Module/Settings/Account.php:446 msgid "Account for a personal profile." msgstr "Compte pour profil personnel." -#: src/Module/Settings/Account.php:467 +#: src/Module/Settings/Account.php:453 msgid "" "Account for an organisation that automatically approves contact requests as " "\"Followers\"." msgstr "Compte pour une organisation qui accepte les demandes comme \"Abonnés\"." -#: src/Module/Settings/Account.php:474 +#: src/Module/Settings/Account.php:460 msgid "" "Account for a news reflector that automatically approves contact requests as" " \"Followers\"." msgstr "Compte pour les miroirs de nouvelles qui accepte automatiquement les de contact comme \"Abonnés\"." -#: src/Module/Settings/Account.php:481 +#: src/Module/Settings/Account.php:467 msgid "Account for community discussions." msgstr "Compte pour des discussions communautaires." -#: src/Module/Settings/Account.php:489 +#: src/Module/Settings/Account.php:475 msgid "" "Account for a regular personal profile that requires manual approval of " "\"Friends\" and \"Followers\"." msgstr "Les demandes d'abonnement doivent être acceptées manuellement." -#: src/Module/Settings/Account.php:496 +#: src/Module/Settings/Account.php:482 msgid "" "Account for a public profile that automatically approves contact requests as" " \"Followers\"." msgstr "Compte pour un profil public qui accepte les demandes de contact comme \"Abonnés\"." -#: src/Module/Settings/Account.php:503 +#: src/Module/Settings/Account.php:489 msgid "Automatically approves all contact requests." msgstr "Les demandes de participation au forum sont automatiquement acceptées." -#: src/Module/Settings/Account.php:510 +#: src/Module/Settings/Account.php:496 msgid "Contact requests have to be manually approved." msgstr "Les demandes de contact doivent être validées manuellement." -#: src/Module/Settings/Account.php:517 +#: src/Module/Settings/Account.php:503 msgid "" "Account for a popular profile that automatically approves contact requests " "as \"Friends\"." msgstr "Les demandes d'abonnement sont automatiquement acceptées." -#: src/Module/Settings/Account.php:522 +#: src/Module/Settings/Account.php:508 msgid "Private Group [Experimental]" msgstr "Groupe Privé [Expérimental]" -#: src/Module/Settings/Account.php:524 +#: src/Module/Settings/Account.php:510 msgid "Requires manual approval of contact requests." msgstr "Les demandes de participation au forum nécessitent une approbation." -#: src/Module/Settings/Account.php:533 +#: src/Module/Settings/Account.php:519 msgid "OpenID:" msgstr "OpenID:" -#: src/Module/Settings/Account.php:533 +#: src/Module/Settings/Account.php:519 msgid "(Optional) Allow this OpenID to login to this account." msgstr " (Facultatif) Autoriser cet OpenID à se connecter à ce compte." -#: src/Module/Settings/Account.php:541 +#: src/Module/Settings/Account.php:527 msgid "Publish your profile in your local site directory?" msgstr "Publier votre profil dans le répertoire local" -#: src/Module/Settings/Account.php:541 +#: src/Module/Settings/Account.php:527 #, php-format msgid "" "Your profile will be published in this node's local " @@ -9936,94 +9917,94 @@ msgid "" " system settings." msgstr "Votre profil sera public sur l'annuaire local de cette instance. Les détails de votre profil pourront être visible publiquement selon les paramètres de votre système." -#: src/Module/Settings/Account.php:547 +#: src/Module/Settings/Account.php:533 #, php-format msgid "" "Your profile will also be published in the global friendica directories " "(e.g. %s)." msgstr "Votre profil sera aussi publié dans le répertoire Friendica global (%s)." -#: src/Module/Settings/Account.php:560 +#: src/Module/Settings/Account.php:546 msgid "Account Settings" msgstr "Compte" -#: src/Module/Settings/Account.php:561 +#: src/Module/Settings/Account.php:547 #, php-format msgid "Your Identity Address is '%s' or '%s'." msgstr "L’adresse de votre profil est '%s' ou '%s'." -#: src/Module/Settings/Account.php:568 +#: src/Module/Settings/Account.php:554 msgid "Password Settings" msgstr "Réglages de mot de passe" -#: src/Module/Settings/Account.php:570 +#: src/Module/Settings/Account.php:556 msgid "Leave password fields blank unless changing" msgstr "Laissez les champs de mot de passe vierges, sauf si vous désirez les changer" -#: src/Module/Settings/Account.php:572 +#: src/Module/Settings/Account.php:558 msgid "Password:" msgstr "Mot de passe :" -#: src/Module/Settings/Account.php:572 +#: src/Module/Settings/Account.php:558 msgid "Your current password to confirm the changes of the email address" msgstr "Votre mot de passe actuel pour confirmer les modifications de votre adresse de courriel." -#: src/Module/Settings/Account.php:575 +#: src/Module/Settings/Account.php:561 msgid "Delete OpenID URL" msgstr "Supprimer l'URL OpenID" -#: src/Module/Settings/Account.php:577 +#: src/Module/Settings/Account.php:563 msgid "Basic Settings" msgstr "Réglages de base" -#: src/Module/Settings/Account.php:578 -#: src/Module/Settings/Profile/Index.php:288 +#: src/Module/Settings/Account.php:564 +#: src/Module/Settings/Profile/Index.php:274 msgid "Display name:" msgstr "Nom d'affichage :" -#: src/Module/Settings/Account.php:579 +#: src/Module/Settings/Account.php:565 msgid "Email Address:" msgstr "Adresse courriel :" -#: src/Module/Settings/Account.php:580 +#: src/Module/Settings/Account.php:566 msgid "Your Timezone:" msgstr "Votre fuseau horaire :" -#: src/Module/Settings/Account.php:581 +#: src/Module/Settings/Account.php:567 msgid "Your Language:" msgstr "Votre langue :" -#: src/Module/Settings/Account.php:581 +#: src/Module/Settings/Account.php:567 msgid "" "Set the language we use to show you friendica interface and to send you " "emails" msgstr "Détermine la langue que nous utilisons pour afficher votre interface Friendica et pour vous envoyer des courriels" -#: src/Module/Settings/Account.php:582 +#: src/Module/Settings/Account.php:568 msgid "Default Post Location:" msgstr "Emplacement de publication par défaut:" -#: src/Module/Settings/Account.php:583 +#: src/Module/Settings/Account.php:569 msgid "Use Browser Location:" msgstr "Utiliser la localisation géographique du navigateur:" -#: src/Module/Settings/Account.php:585 +#: src/Module/Settings/Account.php:571 msgid "Security and Privacy Settings" msgstr "Réglages de sécurité et vie privée" -#: src/Module/Settings/Account.php:587 +#: src/Module/Settings/Account.php:573 msgid "Maximum Friend Requests/Day:" msgstr "Nombre maximal de demandes d'abonnement par jour :" -#: src/Module/Settings/Account.php:587 +#: src/Module/Settings/Account.php:573 msgid "(to prevent spam abuse)" msgstr "(pour limiter l'impact du spam)" -#: src/Module/Settings/Account.php:589 +#: src/Module/Settings/Account.php:575 msgid "Allow your profile to be searchable globally?" msgstr "Publier votre profil publiquement" -#: src/Module/Settings/Account.php:589 +#: src/Module/Settings/Account.php:575 msgid "" "Activate this setting if you want others to easily find and follow you. Your" " profile will be searchable on remote systems. This setting also determines " @@ -10031,43 +10012,43 @@ msgid "" "indexed or not." msgstr "Permet à quiconque de trouver votre profil via une recherche sur n'importe quel site compatible ou un moteur de recherche." -#: src/Module/Settings/Account.php:590 +#: src/Module/Settings/Account.php:576 msgid "Hide your contact/friend list from viewers of your profile?" msgstr "Cacher votre liste de contacts/amis des visiteurs de votre profil?" -#: src/Module/Settings/Account.php:590 +#: src/Module/Settings/Account.php:576 msgid "" "A list of your contacts is displayed on your profile page. Activate this " "option to disable the display of your contact list." msgstr "La liste de vos contacts est affichée sur votre profil. Activer cette option pour désactiver son affichage." -#: src/Module/Settings/Account.php:591 +#: src/Module/Settings/Account.php:577 msgid "Hide your public content from anonymous viewers" msgstr "Masque votre contenu public aux visiteurs anonymes" -#: src/Module/Settings/Account.php:591 +#: src/Module/Settings/Account.php:577 msgid "" "Anonymous visitors will only see your basic profile details. Your public " "posts and replies will still be freely accessible on the remote servers of " "your followers and through relays." msgstr "Les visiteurs anonymes ne verront que vos détails de base de profil. Vos publications publiques et vos réponses seront toujours librement accessibles sur les serveurs distants de vos contacts et à travers les relais." -#: src/Module/Settings/Account.php:592 +#: src/Module/Settings/Account.php:578 msgid "Make public posts unlisted" msgstr "Délister vos publications publiques" -#: src/Module/Settings/Account.php:592 +#: src/Module/Settings/Account.php:578 msgid "" "Your public posts will not appear on the community pages or in search " "results, nor be sent to relay servers. However they can still appear on " "public feeds on remote servers." msgstr "Vos publications publiques n'apparaîtront pas dans les pages communautaires ni les résultats de recherche de ce site et ne seront pas diffusées via les serveurs de relai. Cependant, elles pourront quand même apparaître dans les fils publics de sites distants." -#: src/Module/Settings/Account.php:593 +#: src/Module/Settings/Account.php:579 msgid "Make all posted pictures accessible" msgstr "Rendre toutes les images envoyées accessibles." -#: src/Module/Settings/Account.php:593 +#: src/Module/Settings/Account.php:579 msgid "" "This option makes every posted picture accessible via the direct link. This " "is a workaround for the problem that most other networks can't handle " @@ -10075,352 +10056,352 @@ msgid "" "public on your photo albums though." msgstr "Cette option rend chaque image envoyée accessible par un lien direct. C'est un contournement pour prendre en compte que la pluplart des autres réseaux ne gèrent pas les droits sur les images. Cependant les images non publiques ne seront pas visibles sur votre album photo." -#: src/Module/Settings/Account.php:594 +#: src/Module/Settings/Account.php:580 msgid "Allow friends to post to your profile page?" msgstr "Autoriser vos contacts à publier sur votre profil ?" -#: src/Module/Settings/Account.php:594 +#: src/Module/Settings/Account.php:580 msgid "" "Your contacts may write posts on your profile wall. These posts will be " "distributed to your contacts" msgstr "Vos contacts peuvent partager des publications sur votre mur. Ces publications seront visibles par vos abonnés." -#: src/Module/Settings/Account.php:595 +#: src/Module/Settings/Account.php:581 msgid "Allow friends to tag your posts?" msgstr "Autoriser vos contacts à ajouter des tags à vos publications ?" -#: src/Module/Settings/Account.php:595 +#: src/Module/Settings/Account.php:581 msgid "Your contacts can add additional tags to your posts." msgstr "Vos contacts peuvent ajouter des étiquettes à vos publications." -#: src/Module/Settings/Account.php:596 +#: src/Module/Settings/Account.php:582 msgid "Default privacy circle for new contacts" msgstr "Cercle de contacts par défaut pour les nouveaux contacts" -#: src/Module/Settings/Account.php:597 +#: src/Module/Settings/Account.php:583 msgid "Default privacy circle for new group contacts" msgstr "Cercle de contacts par défaut pour les nouveaux contacts du groupe" -#: src/Module/Settings/Account.php:598 +#: src/Module/Settings/Account.php:584 msgid "Default Post Permissions" msgstr "Permissions de publication par défaut" -#: src/Module/Settings/Account.php:602 +#: src/Module/Settings/Account.php:588 msgid "Expiration settings" msgstr "Réglages d'expiration" -#: src/Module/Settings/Account.php:603 +#: src/Module/Settings/Account.php:589 msgid "Automatically expire posts after this many days:" msgstr "Les publications expirent automatiquement après (en jours) :" -#: src/Module/Settings/Account.php:603 +#: src/Module/Settings/Account.php:589 msgid "If empty, posts will not expire. Expired posts will be deleted" msgstr "Si ce champ est vide, les publications n'expireront pas. Les publications expirées seront supprimées" -#: src/Module/Settings/Account.php:604 +#: src/Module/Settings/Account.php:590 msgid "Expire posts" msgstr "Faire expirer les publications" -#: src/Module/Settings/Account.php:604 +#: src/Module/Settings/Account.php:590 msgid "When activated, posts and comments will be expired." msgstr "Les publications originales et commentaires expireront." -#: src/Module/Settings/Account.php:605 +#: src/Module/Settings/Account.php:591 msgid "Expire personal notes" msgstr "Faire expirer les notes personnelles" -#: src/Module/Settings/Account.php:605 +#: src/Module/Settings/Account.php:591 msgid "" "When activated, the personal notes on your profile page will be expired." msgstr " " -#: src/Module/Settings/Account.php:606 +#: src/Module/Settings/Account.php:592 msgid "Expire starred posts" msgstr "Faire expirer les publications marquées" -#: src/Module/Settings/Account.php:606 +#: src/Module/Settings/Account.php:592 msgid "" "Starring posts keeps them from being expired. That behaviour is overwritten " "by this setting." msgstr "Ajouter une étoile à une publication empêche son expiration, sauf si vous activez ce paramètre." -#: src/Module/Settings/Account.php:607 +#: src/Module/Settings/Account.php:593 msgid "Only expire posts by others" msgstr "Faire expirer uniquement les contenu reçus" -#: src/Module/Settings/Account.php:607 +#: src/Module/Settings/Account.php:593 msgid "" "When activated, your own posts never expire. Then the settings above are " "only valid for posts you received." msgstr "Empêche vos propres publications d'expirer. S'applique à tous les choix précédents." -#: src/Module/Settings/Account.php:610 +#: src/Module/Settings/Account.php:596 msgid "Notification Settings" msgstr "Réglages de notification" -#: src/Module/Settings/Account.php:611 +#: src/Module/Settings/Account.php:597 msgid "Send a notification email when:" msgstr "Envoyer un courriel de notification quand :" -#: src/Module/Settings/Account.php:612 +#: src/Module/Settings/Account.php:598 msgid "You receive an introduction" msgstr "Vous recevez une introduction" -#: src/Module/Settings/Account.php:613 +#: src/Module/Settings/Account.php:599 msgid "Your introductions are confirmed" msgstr "Vos introductions sont confirmées" -#: src/Module/Settings/Account.php:614 +#: src/Module/Settings/Account.php:600 msgid "Someone writes on your profile wall" msgstr "Quelqu'un écrit sur votre mur" -#: src/Module/Settings/Account.php:615 +#: src/Module/Settings/Account.php:601 msgid "Someone writes a followup comment" msgstr "Quelqu'un vous commente" -#: src/Module/Settings/Account.php:616 +#: src/Module/Settings/Account.php:602 msgid "You receive a private message" msgstr "Vous recevez un message privé" -#: src/Module/Settings/Account.php:617 +#: src/Module/Settings/Account.php:603 msgid "You receive a friend suggestion" msgstr "Vous avez reçu une suggestion d'abonnement" -#: src/Module/Settings/Account.php:618 +#: src/Module/Settings/Account.php:604 msgid "You are tagged in a post" msgstr "Vous avez été mentionné(e) dans une publication" -#: src/Module/Settings/Account.php:620 +#: src/Module/Settings/Account.php:606 msgid "Create a desktop notification when:" msgstr "Créer une notification de bureau quand :" -#: src/Module/Settings/Account.php:621 +#: src/Module/Settings/Account.php:607 msgid "Someone tagged you" msgstr "Quelqu'un vous a mentionné" -#: src/Module/Settings/Account.php:622 +#: src/Module/Settings/Account.php:608 msgid "Someone directly commented on your post" msgstr "Quelqu'un a commenté directement sur votre publication" -#: src/Module/Settings/Account.php:623 +#: src/Module/Settings/Account.php:609 msgid "Someone liked your content" msgstr "Quelqu'un a aimé votre contenu" -#: src/Module/Settings/Account.php:623 src/Module/Settings/Account.php:624 +#: src/Module/Settings/Account.php:609 src/Module/Settings/Account.php:610 msgid "Can only be enabled, when the direct comment notification is enabled." msgstr "Peut uniquement être activé quand la notification des commentaires directs est activée." -#: src/Module/Settings/Account.php:624 +#: src/Module/Settings/Account.php:610 msgid "Someone shared your content" msgstr "Quelqu'un a partagé votre contenu" -#: src/Module/Settings/Account.php:625 +#: src/Module/Settings/Account.php:611 msgid "Someone commented in your thread" msgstr "Quelqu'un a commenté dans votre conversation" -#: src/Module/Settings/Account.php:626 +#: src/Module/Settings/Account.php:612 msgid "Someone commented in a thread where you commented" msgstr "Quelqu'un a commenté dans une conversation où vous avez commenté" -#: src/Module/Settings/Account.php:627 +#: src/Module/Settings/Account.php:613 msgid "Someone commented in a thread where you interacted" msgstr "Quelqu'un a commenté dans une conversation avec laquelle vous avez interagi" -#: src/Module/Settings/Account.php:629 +#: src/Module/Settings/Account.php:615 msgid "Activate desktop notifications" msgstr "Activer les notifications de bureau" -#: src/Module/Settings/Account.php:629 +#: src/Module/Settings/Account.php:615 msgid "Show desktop popup on new notifications" msgstr "Afficher dans des pop-ups les nouvelles notifications" -#: src/Module/Settings/Account.php:633 +#: src/Module/Settings/Account.php:619 msgid "Text-only notification emails" msgstr "Courriels de notification en format texte" -#: src/Module/Settings/Account.php:635 +#: src/Module/Settings/Account.php:621 msgid "Send text only notification emails, without the html part" msgstr "Envoyer le texte des courriels de notification, sans la composante html" -#: src/Module/Settings/Account.php:639 +#: src/Module/Settings/Account.php:625 msgid "Show detailled notifications" msgstr "Notifications détaillées" -#: src/Module/Settings/Account.php:641 +#: src/Module/Settings/Account.php:627 msgid "" "Per default, notifications are condensed to a single notification per item. " "When enabled every notification is displayed." msgstr "Par défaut seule la notification la plus récente par conversation est affichée. Ce réglage affiche toutes les notifications." -#: src/Module/Settings/Account.php:645 +#: src/Module/Settings/Account.php:631 msgid "Show notifications of ignored contacts" msgstr "Montrer les notifications des contacts ignorés" -#: src/Module/Settings/Account.php:647 +#: src/Module/Settings/Account.php:633 msgid "" "You don't see posts from ignored contacts. But you still see their comments." " This setting controls if you want to still receive regular notifications " "that are caused by ignored contacts or not." msgstr "Par défaut les notifications de vos contacts ignorés sont également ignorées." -#: src/Module/Settings/Account.php:650 +#: src/Module/Settings/Account.php:636 msgid "Advanced Account/Page Type Settings" msgstr "Paramètres avancés de compte/page" -#: src/Module/Settings/Account.php:651 +#: src/Module/Settings/Account.php:637 msgid "Change the behaviour of this account for special situations" msgstr "Modifier le comportement de ce compte dans certaines situations" -#: src/Module/Settings/Account.php:654 +#: src/Module/Settings/Account.php:640 msgid "Import Contacts" msgstr "Importer des contacts" -#: src/Module/Settings/Account.php:655 +#: src/Module/Settings/Account.php:641 msgid "" "Upload a CSV file that contains the handle of your followed accounts in the " "first column you exported from the old account." msgstr "Téléversez un fichier CSV contenant des identifiants de contacts dans la première colonne." -#: src/Module/Settings/Account.php:656 +#: src/Module/Settings/Account.php:642 msgid "Upload File" msgstr "Téléverser le fichier" -#: src/Module/Settings/Account.php:659 +#: src/Module/Settings/Account.php:645 msgid "Relocate" msgstr "Relocaliser" -#: src/Module/Settings/Account.php:660 +#: src/Module/Settings/Account.php:646 msgid "" "If you have moved this profile from another server, and some of your " "contacts don't receive your updates, try pushing this button." msgstr "Si vous avez migré ce profil depuis un autre serveur et que vos contacts ne reçoivent plus vos mises à jour, essayez ce bouton." -#: src/Module/Settings/Account.php:661 +#: src/Module/Settings/Account.php:647 msgid "Resend relocate message to contacts" msgstr "Renvoyer un message de relocalisation aux contacts." -#: src/Module/Settings/Addons.php:86 +#: src/Module/Settings/Addons.php:72 msgid "Addon Settings" msgstr "Paramètres d'extension" -#: src/Module/Settings/Addons.php:87 +#: src/Module/Settings/Addons.php:73 msgid "No Addon settings configured" msgstr "Aucuns paramètres d'Extension paramétré." -#: src/Module/Settings/Channels.php:148 +#: src/Module/Settings/Channels.php:134 msgid "" "This page can be used to define the channels that will automatically be " "reshared by your account." msgstr "Cette page peut être utilisée pour définir les chaînes qui seront automatiquement repartagées par votre compte." -#: src/Module/Settings/Channels.php:153 +#: src/Module/Settings/Channels.php:139 msgid "This page can be used to define your own channels." msgstr "Cette page permet de définir votre propres chaînes." -#: src/Module/Settings/Channels.php:182 +#: src/Module/Settings/Channels.php:168 msgid "Publish" msgstr "Publier" -#: src/Module/Settings/Channels.php:182 +#: src/Module/Settings/Channels.php:168 msgid "" "When selected, the channel results are reshared. This only works for public " "ActivityPub posts from the public timeline or the user defined circles." msgstr "Si sélectionné, les résultats de la chaîne sont repartagés. Ceci ne fonctionne que pour les publications ActivityPub publiques ou pour les cercles définis par l'utilisateur." -#: src/Module/Settings/Channels.php:190 src/Module/Settings/Channels.php:211 -#: src/Module/Settings/Display.php:338 +#: src/Module/Settings/Channels.php:176 src/Module/Settings/Channels.php:197 +#: src/Module/Settings/Display.php:324 msgid "Label" msgstr "Titre" -#: src/Module/Settings/Channels.php:191 src/Module/Settings/Channels.php:212 -#: src/Module/Settings/Display.php:339 -#: src/Module/Settings/TwoFactor/AppSpecific.php:137 +#: src/Module/Settings/Channels.php:177 src/Module/Settings/Channels.php:198 +#: src/Module/Settings/Display.php:325 +#: src/Module/Settings/TwoFactor/AppSpecific.php:123 msgid "Description" msgstr "Description" -#: src/Module/Settings/Channels.php:192 src/Module/Settings/Channels.php:213 +#: src/Module/Settings/Channels.php:178 src/Module/Settings/Channels.php:199 msgid "Access Key" msgstr "Clé d'accès" -#: src/Module/Settings/Channels.php:193 src/Module/Settings/Channels.php:214 +#: src/Module/Settings/Channels.php:179 src/Module/Settings/Channels.php:200 msgid "Circle/Channel" msgstr "Cercle/Chaîne" -#: src/Module/Settings/Channels.php:194 src/Module/Settings/Channels.php:215 +#: src/Module/Settings/Channels.php:180 src/Module/Settings/Channels.php:201 msgid "Include Tags" msgstr "Inclure des étiquettes" -#: src/Module/Settings/Channels.php:195 src/Module/Settings/Channels.php:216 +#: src/Module/Settings/Channels.php:181 src/Module/Settings/Channels.php:202 msgid "Exclude Tags" msgstr "Exclure des étiquettes" -#: src/Module/Settings/Channels.php:196 src/Module/Settings/Channels.php:217 +#: src/Module/Settings/Channels.php:182 src/Module/Settings/Channels.php:203 msgid "Minimum Size" msgstr "Taille minimum" -#: src/Module/Settings/Channels.php:197 src/Module/Settings/Channels.php:218 +#: src/Module/Settings/Channels.php:183 src/Module/Settings/Channels.php:204 msgid "Maximum Size" msgstr "Taille maximum" -#: src/Module/Settings/Channels.php:198 src/Module/Settings/Channels.php:219 +#: src/Module/Settings/Channels.php:184 src/Module/Settings/Channels.php:205 msgid "Full Text Search" msgstr "Recherche de texte intégral" -#: src/Module/Settings/Channels.php:202 src/Module/Settings/Channels.php:223 +#: src/Module/Settings/Channels.php:188 src/Module/Settings/Channels.php:209 msgid "Select all languages that you want to see in this channel." msgstr "Sélectionnez les langues que vous souhaitez voir sur cette chaîne." -#: src/Module/Settings/Channels.php:204 +#: src/Module/Settings/Channels.php:190 msgid "Delete channel" msgstr "Supprimer la chaîne" -#: src/Module/Settings/Channels.php:204 +#: src/Module/Settings/Channels.php:190 msgid "Check to delete this entry from the channel list" msgstr "Cochez pour supprimer cette entrée de la liste de chaîne" -#: src/Module/Settings/Channels.php:211 +#: src/Module/Settings/Channels.php:197 msgid "Short name for the channel. It is displayed on the channels widget." msgstr "Nom court de la chaîne. Il est affiché dans le widget des chaînes." -#: src/Module/Settings/Channels.php:212 +#: src/Module/Settings/Channels.php:198 msgid "This should describe the content of the channel in a few word." msgstr "Décrivez le contenu de votre chaîne en quelques mots." -#: src/Module/Settings/Channels.php:213 +#: src/Module/Settings/Channels.php:199 msgid "" "When you want to access this channel via an access key, you can define it " "here. Pay attention to not use an already used one." msgstr "Si vous accédez à cette chaîne via une clé d'accès, saisissez là ici. Attention à ne pas saisir une clé déjà utilisée." -#: src/Module/Settings/Channels.php:214 +#: src/Module/Settings/Channels.php:200 msgid "Select a circle or channel, that your channel should be based on." msgstr "Choisissez un cercle ou une chaîne sur lequel se basera votre chaîne." -#: src/Module/Settings/Channels.php:215 +#: src/Module/Settings/Channels.php:201 msgid "" "Comma separated list of tags. A post will be used when it contains any of " "the listed tags." msgstr "Liste d'étiquettes, séparées par des virgules. Une publication sera affichée si elle contient au moins une de ces étiquettes." -#: src/Module/Settings/Channels.php:216 +#: src/Module/Settings/Channels.php:202 msgid "" "Comma separated list of tags. If a post contain any of these tags, then it " "will not be part of nthis channel." msgstr "Liste d'étiquettes, séparées par des virgules. Si une publication contient une de ces étiquettes, elle ne sera pas affichée sur cette chaîne." -#: src/Module/Settings/Channels.php:217 +#: src/Module/Settings/Channels.php:203 msgid "" "Minimum post size. Leave empty for no minimum size. The size is calculated " "without links, attached posts, mentions or hashtags." msgstr "Taille minimum d'une publication. Laisser vide pour aucune limite. La taille est calculée sans prendre en compte les liens, les publications attachées, les mentions ou les étiquettes." -#: src/Module/Settings/Channels.php:218 +#: src/Module/Settings/Channels.php:204 msgid "" "Maximum post size. Leave empty for no maximum size. The size is calculated " "without links, attached posts, mentions or hashtags." msgstr "Taille maximum d'une publication. Laisser vide pour aucune limite. La taille est calculée sans prendre en compte les liens, les publications attachées, les mentions ou les étiquettes." -#: src/Module/Settings/Channels.php:219 +#: src/Module/Settings/Channels.php:205 #, php-format msgid "" "Search terms for the body, supports the \"boolean mode\" operators from " @@ -10428,600 +10409,589 @@ msgid "" "keywords: %s" msgstr "Recherche les termes dans le corps, supporte les opérateurs \"boolean mode\" de MariaDB. Consultez l'aide pour une liste complète des opérateurs et des mots clés additionnels : %s" -#: src/Module/Settings/Channels.php:220 +#: src/Module/Settings/Channels.php:206 msgid "Check to display images in the channel." msgstr "Cochez pour afficher les images dans la chaîne." -#: src/Module/Settings/Channels.php:221 +#: src/Module/Settings/Channels.php:207 msgid "Check to display videos in the channel." msgstr "Cochez pour afficher la vidéo dans la chaîne." -#: src/Module/Settings/Channels.php:222 +#: src/Module/Settings/Channels.php:208 msgid "Check to display audio in the channel." msgstr "Cochez pour afficher l'audio dans la chaîne." -#: src/Module/Settings/Channels.php:227 +#: src/Module/Settings/Channels.php:213 msgid "Add new entry to the channel list" msgstr "Ajoute une nouvelle entrée dans la liste des chaînes" -#: src/Module/Settings/Channels.php:228 +#: src/Module/Settings/Channels.php:214 msgid "Add" msgstr "Ajouter" -#: src/Module/Settings/Channels.php:230 +#: src/Module/Settings/Channels.php:216 msgid "Current Entries in the channel list" msgstr "Entrées actuelles dans la liste des chaînes" -#: src/Module/Settings/Channels.php:233 +#: src/Module/Settings/Channels.php:219 msgid "Delete entry from the channel list" msgstr "Supprimer l'entrée de la liste des chaînes" -#: src/Module/Settings/Channels.php:234 +#: src/Module/Settings/Channels.php:220 msgid "Delete entry from the channel list?" msgstr "Supprimer l'entrée de la liste des chaînes ?" -#: src/Module/Settings/Connectors.php:122 +#: src/Module/Settings/Connectors.php:108 msgid "Failed to connect with email account using the settings provided." msgstr "Impossible de se connecter au compte courriel configuré." -#: src/Module/Settings/Connectors.php:169 -#: src/Module/Settings/Connectors.php:170 +#: src/Module/Settings/Connectors.php:155 +#: src/Module/Settings/Connectors.php:156 msgid "Diaspora (Socialhome, Hubzilla)" msgstr "Diaspora (Socialhome, Hubzilla)" -#: src/Module/Settings/Connectors.php:169 -#: src/Module/Settings/Connectors.php:173 +#: src/Module/Settings/Connectors.php:155 #, php-format msgid "Built-in support for %s connectivity is enabled" msgstr "Le support intégré pour la connectivité %s est activé" -#: src/Module/Settings/Connectors.php:170 -#: src/Module/Settings/Connectors.php:172 +#: src/Module/Settings/Connectors.php:156 #, php-format msgid "Built-in support for %s connectivity is disabled" msgstr "Le support intégré pour la connectivité %s est désactivé" -#: src/Module/Settings/Connectors.php:172 -#: src/Module/Settings/Connectors.php:173 -msgid "OStatus (GNU Social)" -msgstr "OStatus (GNU Social)" - -#: src/Module/Settings/Connectors.php:185 +#: src/Module/Settings/Connectors.php:167 msgid "Email access is disabled on this site." msgstr "L'accès courriel est désactivé sur ce site." -#: src/Module/Settings/Connectors.php:200 -#: src/Module/Settings/Connectors.php:254 +#: src/Module/Settings/Connectors.php:182 +#: src/Module/Settings/Connectors.php:233 msgid "None" msgstr "Aucun(e)" -#: src/Module/Settings/Connectors.php:204 +#: src/Module/Settings/Connectors.php:186 msgid "Default (Mastodon will display the title and a link to the post)" msgstr "Par défaut (Mastodon affichera le titre et un lien vers la publication)" -#: src/Module/Settings/Connectors.php:205 +#: src/Module/Settings/Connectors.php:187 msgid "" "Use the summary (Mastodon and some others will treat it as content warning)" msgstr "Utiliser le résumé (Mastodon et quelques autres le considèreront comme un avertissement de contenu)" -#: src/Module/Settings/Connectors.php:206 +#: src/Module/Settings/Connectors.php:188 msgid "Embed the title in the body" msgstr "Intégrer le titre dans le corps du texte" -#: src/Module/Settings/Connectors.php:218 +#: src/Module/Settings/Connectors.php:199 msgid "General Social Media Settings" msgstr "Paramètres généraux des réseaux sociaux" -#: src/Module/Settings/Connectors.php:221 +#: src/Module/Settings/Connectors.php:202 msgid "Followed content scope" msgstr "Étendue des contenus suivis" -#: src/Module/Settings/Connectors.php:223 +#: src/Module/Settings/Connectors.php:204 msgid "" "By default, conversations in which your follows participated but didn't " "start will be shown in your timeline. You can turn this behavior off, or " "expand it to the conversations in which your follows liked a post." msgstr "Par défaut, les conversations dans lesquelles vos comptes suivis ont participé mais qu'ils n'ont pas commencées seront affichées dans votre flux. Vous pouvez désactiver ce comportement, ou l'étendre aux conversations dans lesquelles vos comptes suivis ont aimé une publication." -#: src/Module/Settings/Connectors.php:225 +#: src/Module/Settings/Connectors.php:206 msgid "Only conversations my follows started" msgstr "Seulement les conversations démarrées par mes comptes suivis" -#: src/Module/Settings/Connectors.php:226 +#: src/Module/Settings/Connectors.php:207 msgid "Conversations my follows started or commented on (default)" msgstr "Les conversations que mes comptes suivis ont commencé ou commentées (par défaut)" -#: src/Module/Settings/Connectors.php:227 +#: src/Module/Settings/Connectors.php:208 msgid "Any conversation my follows interacted with, including likes" msgstr "Toute conversation avec laquelle mes comptes suivis ont interagi, y compris les \"J'aime\"" -#: src/Module/Settings/Connectors.php:230 +#: src/Module/Settings/Connectors.php:211 msgid "Collapse sensitive posts" msgstr "Réduire les publications sensibles" -#: src/Module/Settings/Connectors.php:230 +#: src/Module/Settings/Connectors.php:211 msgid "" "If a post is marked as \"sensitive\", it will be displayed in a collapsed " "state, if this option is enabled." msgstr "Si actif, les publications marquées comme \"sensible\" seront affichées réduites." -#: src/Module/Settings/Connectors.php:231 +#: src/Module/Settings/Connectors.php:212 msgid "Enable intelligent shortening" msgstr "Activer l'abbréviation intelligente" -#: src/Module/Settings/Connectors.php:231 +#: src/Module/Settings/Connectors.php:212 msgid "" "Normally the system tries to find the best link to add to shortened posts. " "If disabled, every shortened post will always point to the original " "friendica post." msgstr "L'abbréviation intelligente cherche le lien le plus adapté dans les publications abbréviées. Quand elle est désactivée, le lien est toujours celui de la publication Friendica initiale." -#: src/Module/Settings/Connectors.php:232 +#: src/Module/Settings/Connectors.php:213 msgid "Enable simple text shortening" msgstr "Activer l'abbréviation de texte simple" -#: src/Module/Settings/Connectors.php:232 +#: src/Module/Settings/Connectors.php:213 msgid "" "Normally the system shortens posts at the next line feed. If this option is " "enabled then the system will shorten the text at the maximum character " "limit." msgstr "Cette option raccourcit le texte des publications au nombre de caractères exact au lieu d'attendre la fin du paragraphe." -#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Connectors.php:214 msgid "Attach the link title" msgstr "Attacher le titre du lien (Diaspora)" -#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Connectors.php:214 msgid "" "When activated, the title of the attached link will be added as a title on " "posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that" " share feed content." msgstr "Si vos publications contiennent un lien, le titre de la page associée sera attaché à la publication à destination de vos contacts Diaspora. C'est principalement utile avec les contacts \"remote-self\" qui partagent du contenu de flux RSS/Atom." -#: src/Module/Settings/Connectors.php:234 +#: src/Module/Settings/Connectors.php:215 msgid "API: Use spoiler field as title" msgstr "API : Utiliser le champ spoiler (divulgachis) en tant que titre" -#: src/Module/Settings/Connectors.php:234 +#: src/Module/Settings/Connectors.php:215 msgid "" "When activated, the \"spoiler_text\" field in the API will be used for the " "title on standalone posts. When deactivated it will be used for spoiler " "text. For comments it will always be used for spoiler text." msgstr "Quand activé, le champ \"spoiler_text\" dans l'API sera utilisé pour le titre des publications individuelles. Quand désactivé, il sera utilisé pour du texte spoiler (divulgachis). Pour les commentaires, il sera toujours utilisé pour du texte spoiler." -#: src/Module/Settings/Connectors.php:235 +#: src/Module/Settings/Connectors.php:216 msgid "API: Automatically links at the end of the post as attached posts" msgstr "API : Afficher comme publications attachés les liens ajoutés en fin de publication" -#: src/Module/Settings/Connectors.php:235 +#: src/Module/Settings/Connectors.php:216 msgid "" "When activated, added links at the end of the post react the same way as " "added links in the web interface." msgstr "Quand activé, les liens ajoutés à la fin d'une publication fonctionnent de la même manière que les liens ajoutés dans l'interface web." -#: src/Module/Settings/Connectors.php:236 +#: src/Module/Settings/Connectors.php:217 msgid "Article Mode" msgstr "Mode Article" -#: src/Module/Settings/Connectors.php:236 +#: src/Module/Settings/Connectors.php:217 msgid "" "Controls how posts with titles are transmitted. Mastodon and its forks don't" " display the content of these posts if the post is created in the correct " "(default) way." msgstr "Contrôle la façon dont les publications avec des titres sont transmises. Mastodon et ses forks n'affichent pas le contenu de ces publications si la publication est créée de la bonne manière (par défaut)." -#: src/Module/Settings/Connectors.php:237 +#: src/Module/Settings/Connectors.php:218 msgid "Your legacy ActivityPub/GNU Social account" msgstr "Votre ancient compte ActivityPub/GNU Social" -#: src/Module/Settings/Connectors.php:237 +#: src/Module/Settings/Connectors.php:218 msgid "" "If you enter your old account name from an ActivityPub based system or your " "GNU Social/Statusnet account name here (in the format user@domain.tld), your" " contacts will be added automatically. The field will be emptied when done." msgstr "Si vous saisissez votre adresse de compte précédente d'un réseau basé sur ActivityPub ou GNU Social/Statusnet (au format utilisateur@domaine.tld), vos contacts seront ajoutés autoamtiquement. Le champ sera vidé quand l'opération sera terminé." -#: src/Module/Settings/Connectors.php:239 -msgid "Repair OStatus subscriptions" -msgstr "Réparer les abonnements OStatus" - -#: src/Module/Settings/Connectors.php:243 +#: src/Module/Settings/Connectors.php:222 msgid "Email/Mailbox Setup" msgstr "Réglages de courriel/boîte à lettre" -#: src/Module/Settings/Connectors.php:244 +#: src/Module/Settings/Connectors.php:223 msgid "" "If you wish to communicate with email contacts using this service " "(optional), please specify how to connect to your mailbox." msgstr "Si vous souhaitez communiquer avec vos contacts \"courriel\" (facultatif), merci de nous indiquer comment vous connecter à votre boîte." -#: src/Module/Settings/Connectors.php:245 +#: src/Module/Settings/Connectors.php:224 msgid "Last successful email check:" msgstr "Dernière vérification réussie des courriels :" -#: src/Module/Settings/Connectors.php:247 +#: src/Module/Settings/Connectors.php:226 msgid "IMAP server name:" msgstr "Nom du serveur IMAP :" -#: src/Module/Settings/Connectors.php:248 +#: src/Module/Settings/Connectors.php:227 msgid "IMAP port:" msgstr "Port IMAP :" -#: src/Module/Settings/Connectors.php:249 +#: src/Module/Settings/Connectors.php:228 msgid "Security:" msgstr "Sécurité :" -#: src/Module/Settings/Connectors.php:250 +#: src/Module/Settings/Connectors.php:229 msgid "Email login name:" msgstr "Nom de connexion :" -#: src/Module/Settings/Connectors.php:251 +#: src/Module/Settings/Connectors.php:230 msgid "Email password:" msgstr "Mot de passe :" -#: src/Module/Settings/Connectors.php:252 +#: src/Module/Settings/Connectors.php:231 msgid "Reply-to address:" msgstr "Adresse de réponse :" -#: src/Module/Settings/Connectors.php:253 +#: src/Module/Settings/Connectors.php:232 msgid "Send public posts to all email contacts:" msgstr "Envoyer les publications publiques à tous les contacts courriels :" -#: src/Module/Settings/Connectors.php:254 +#: src/Module/Settings/Connectors.php:233 msgid "Action after import:" msgstr "Action après import :" -#: src/Module/Settings/Connectors.php:254 +#: src/Module/Settings/Connectors.php:233 msgid "Move to folder" msgstr "Déplacer vers" -#: src/Module/Settings/Connectors.php:255 +#: src/Module/Settings/Connectors.php:234 msgid "Move to folder:" msgstr "Déplacer vers :" -#: src/Module/Settings/Delegation.php:73 +#: src/Module/Settings/Delegation.php:59 msgid "Delegation successfully granted." msgstr "Délégation accordée avec succès." -#: src/Module/Settings/Delegation.php:75 +#: src/Module/Settings/Delegation.php:61 msgid "Parent user not found, unavailable or password doesn't match." msgstr "Utilisateur parent introuvable, indisponible ou mot de passe incorrect." -#: src/Module/Settings/Delegation.php:79 +#: src/Module/Settings/Delegation.php:65 msgid "Delegation successfully revoked." msgstr "Délégation retirée avec succès." -#: src/Module/Settings/Delegation.php:98 -#: src/Module/Settings/Delegation.php:120 +#: src/Module/Settings/Delegation.php:84 +#: src/Module/Settings/Delegation.php:106 msgid "" "Delegated administrators can view but not change delegation permissions." msgstr "Les administrateurs délégués peuvent uniquement consulter les permissions de délégation." -#: src/Module/Settings/Delegation.php:112 +#: src/Module/Settings/Delegation.php:98 msgid "Delegate user not found." msgstr "Délégué introuvable." -#: src/Module/Settings/Delegation.php:169 +#: src/Module/Settings/Delegation.php:155 msgid "No parent user" msgstr "Pas d'utilisateur parent" -#: src/Module/Settings/Delegation.php:180 -#: src/Module/Settings/Delegation.php:191 +#: src/Module/Settings/Delegation.php:166 +#: src/Module/Settings/Delegation.php:177 msgid "Parent User" msgstr "Compte parent" -#: src/Module/Settings/Delegation.php:188 +#: src/Module/Settings/Delegation.php:174 msgid "Additional Accounts" msgstr "Comptes supplémentaires" -#: src/Module/Settings/Delegation.php:189 +#: src/Module/Settings/Delegation.php:175 msgid "" "Register additional accounts that are automatically connected to your " "existing account so you can manage them from this account." msgstr "Enregistrez des comptes supplémentaires qui seront automatiquement rattachés à votre compte actuel pour vous permettre de les gérer facilement." -#: src/Module/Settings/Delegation.php:190 +#: src/Module/Settings/Delegation.php:176 msgid "Register an additional account" msgstr "Enregistrer un compte supplémentaire" -#: src/Module/Settings/Delegation.php:192 +#: src/Module/Settings/Delegation.php:178 msgid "" "Parent users have total control about this account, including the account " "settings. Please double check whom you give this access." msgstr "Le compte parent a un contrôle total sur ce compte, incluant les paramètres de compte. Veuillez vérifier à qui vous donnez cet accès." -#: src/Module/Settings/Delegation.php:195 +#: src/Module/Settings/Delegation.php:181 msgid "Delegates" msgstr "Délégataires" -#: src/Module/Settings/Delegation.php:196 +#: src/Module/Settings/Delegation.php:182 msgid "" "Delegates are able to manage all aspects of this account/page except for " "basic account settings. Please do not delegate your personal account to " "anybody that you do not trust completely." msgstr "Les délégataires seront capables de gérer tous les aspects de ce compte ou de cette page, à l'exception des réglages de compte. Merci de ne pas déléguer votre compte principal à quelqu'un en qui vous n'avez pas une confiance absolue." -#: src/Module/Settings/Delegation.php:197 +#: src/Module/Settings/Delegation.php:183 msgid "Existing Page Delegates" msgstr "Délégataires existants" -#: src/Module/Settings/Delegation.php:198 +#: src/Module/Settings/Delegation.php:184 msgid "Potential Delegates" msgstr "Délégataires potentiels" -#: src/Module/Settings/Delegation.php:199 +#: src/Module/Settings/Delegation.php:185 msgid "No entries." msgstr "Aucune entrée." -#: src/Module/Settings/Display.php:183 +#: src/Module/Settings/Display.php:169 msgid "The theme you chose isn't available." msgstr "Le thème que vous avez choisi n'est pas disponible." -#: src/Module/Settings/Display.php:223 +#: src/Module/Settings/Display.php:209 #, php-format msgid "%s - (Unsupported)" msgstr "%s- (non supporté)" -#: src/Module/Settings/Display.php:260 +#: src/Module/Settings/Display.php:246 msgid "No preview" msgstr "Pas d'aperçu" -#: src/Module/Settings/Display.php:261 +#: src/Module/Settings/Display.php:247 msgid "No image" msgstr "Pas d'image" -#: src/Module/Settings/Display.php:262 +#: src/Module/Settings/Display.php:248 msgid "Small Image" msgstr "Petite image" -#: src/Module/Settings/Display.php:263 +#: src/Module/Settings/Display.php:249 msgid "Large Image" msgstr "Grande image" -#: src/Module/Settings/Display.php:308 +#: src/Module/Settings/Display.php:294 msgid "Display Settings" msgstr "Affichage" -#: src/Module/Settings/Display.php:310 +#: src/Module/Settings/Display.php:296 msgid "General Theme Settings" msgstr "Paramètres généraux de thème" -#: src/Module/Settings/Display.php:311 +#: src/Module/Settings/Display.php:297 msgid "Custom Theme Settings" msgstr "Paramètres personnalisés de thème" -#: src/Module/Settings/Display.php:312 +#: src/Module/Settings/Display.php:298 msgid "Content Settings" msgstr "Paramètres de contenu" -#: src/Module/Settings/Display.php:313 view/theme/duepuntozero/config.php:86 -#: view/theme/frio/config.php:151 view/theme/quattro/config.php:88 -#: view/theme/vier/config.php:136 +#: src/Module/Settings/Display.php:299 view/theme/duepuntozero/config.php:74 +#: view/theme/frio/config.php:139 view/theme/quattro/config.php:76 +#: view/theme/vier/config.php:124 msgid "Theme settings" msgstr "Réglages du thème graphique" -#: src/Module/Settings/Display.php:314 +#: src/Module/Settings/Display.php:300 msgid "Timelines" msgstr "Flux" -#: src/Module/Settings/Display.php:321 +#: src/Module/Settings/Display.php:307 msgid "Display Theme:" msgstr "Thème d'affichage:" -#: src/Module/Settings/Display.php:322 +#: src/Module/Settings/Display.php:308 msgid "Mobile Theme:" msgstr "Thème mobile:" -#: src/Module/Settings/Display.php:325 +#: src/Module/Settings/Display.php:311 msgid "Number of items to display per page:" msgstr "Nombre d’éléments par page :" -#: src/Module/Settings/Display.php:325 src/Module/Settings/Display.php:326 +#: src/Module/Settings/Display.php:311 src/Module/Settings/Display.php:312 msgid "Maximum of 100 items" msgstr "Maximum de 100 éléments" -#: src/Module/Settings/Display.php:326 +#: src/Module/Settings/Display.php:312 msgid "Number of items to display per page when viewed from mobile device:" msgstr "Nombre d'éléments à afficher par page pour un appareil mobile" -#: src/Module/Settings/Display.php:327 +#: src/Module/Settings/Display.php:313 msgid "Update browser every xx seconds" msgstr "Mettre à jour l'affichage toutes les xx secondes" -#: src/Module/Settings/Display.php:327 +#: src/Module/Settings/Display.php:313 msgid "Minimum of 10 seconds. Enter -1 to disable it." msgstr "Minimum de 10 secondes. Saisir -1 pour désactiver." -#: src/Module/Settings/Display.php:328 +#: src/Module/Settings/Display.php:314 msgid "Display emoticons" msgstr "Afficher les émoticônes" -#: src/Module/Settings/Display.php:328 +#: src/Module/Settings/Display.php:314 msgid "When enabled, emoticons are replaced with matching symbols." msgstr "Quand activé, les émoticônes sont remplacées par les symboles correspondants." -#: src/Module/Settings/Display.php:329 +#: src/Module/Settings/Display.php:315 msgid "Infinite scroll" msgstr "Défilement infini" -#: src/Module/Settings/Display.php:329 +#: src/Module/Settings/Display.php:315 msgid "Automatic fetch new items when reaching the page end." msgstr "Charge automatiquement de nouveaux contenus en bas de la page." -#: src/Module/Settings/Display.php:330 +#: src/Module/Settings/Display.php:316 msgid "Enable Smart Threading" msgstr "Activer le fil de discussion intelligent" -#: src/Module/Settings/Display.php:330 +#: src/Module/Settings/Display.php:316 msgid "Enable the automatic suppression of extraneous thread indentation." msgstr "Activer la suppression automatique de l'indentation excédentaire des fils de discussion." -#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/Display.php:317 msgid "Display the Dislike feature" msgstr "Afficher la fonctionnalité \"Je n'aime pas\"" -#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/Display.php:317 msgid "" "Display the Dislike button and dislike reactions on posts and comments." msgstr "Afficher le bouton \"Je n'aime pas\" et les réactions \"Je n'aime pas\" sur les publications et les commentaires." -#: src/Module/Settings/Display.php:332 +#: src/Module/Settings/Display.php:318 msgid "Display the resharer" msgstr "Afficher le partageur" -#: src/Module/Settings/Display.php:332 +#: src/Module/Settings/Display.php:318 msgid "Display the first resharer as icon and text on a reshared item." msgstr "Afficher le premier partageur en tant qu'icône et texte sur un élément partagé." -#: src/Module/Settings/Display.php:333 +#: src/Module/Settings/Display.php:319 msgid "Stay local" msgstr "Rester local" -#: src/Module/Settings/Display.php:333 +#: src/Module/Settings/Display.php:319 msgid "Don't go to a remote system when following a contact link." msgstr "Ne pas aller sur un système distant lors du suivi du lien d'un contact." -#: src/Module/Settings/Display.php:334 +#: src/Module/Settings/Display.php:320 msgid "Show the post deletion checkbox" msgstr "Afficher la case à cocher de suppression de publication." -#: src/Module/Settings/Display.php:334 +#: src/Module/Settings/Display.php:320 msgid "Display the checkbox for the post deletion on the network page." msgstr "Affiche la case à cocher de suppression de publication sur la page Réseau." -#: src/Module/Settings/Display.php:335 +#: src/Module/Settings/Display.php:321 msgid "DIsplay the event list" msgstr "Afficher la liste des évènements" -#: src/Module/Settings/Display.php:335 +#: src/Module/Settings/Display.php:321 msgid "Display the birthday reminder and event list on the network page." msgstr "Affiche le rappel d’anniversaire et la liste des évènements sur la page Réseau." -#: src/Module/Settings/Display.php:336 +#: src/Module/Settings/Display.php:322 msgid "Link preview mode" msgstr "Mode de prévisualisation des liens" -#: src/Module/Settings/Display.php:336 +#: src/Module/Settings/Display.php:322 msgid "Appearance of the link preview that is added to each post with a link." msgstr "Apparence de la prévisualisation du lien qui est ajoutée à chaque publication comprenant un lien." -#: src/Module/Settings/Display.php:341 +#: src/Module/Settings/Display.php:327 msgid "Bookmark" msgstr "Favoris" -#: src/Module/Settings/Display.php:343 +#: src/Module/Settings/Display.php:329 msgid "" "Enable timelines that you want to see in the channels widget. Bookmark " "timelines that you want to see in the top menu." msgstr "Activez les flux que vous souhaitez voir dans le widget Chaînes. Mettez en favoris les flux que vous souhaitez voir dans le menu supérieur." -#: src/Module/Settings/Display.php:345 +#: src/Module/Settings/Display.php:331 msgid "Channel languages:" msgstr "Langues de la chaîne :" -#: src/Module/Settings/Display.php:345 +#: src/Module/Settings/Display.php:331 msgid "Select all languages that you want to see in your channels." msgstr "Sélectionnez les langues que vous souhaitez voir dans vos chaînes." -#: src/Module/Settings/Display.php:347 +#: src/Module/Settings/Display.php:333 msgid "Beginning of week:" msgstr "Début de la semaine :" -#: src/Module/Settings/Display.php:348 +#: src/Module/Settings/Display.php:334 msgid "Default calendar view:" msgstr "Vue par défaut du calendrier :" -#: src/Module/Settings/Features.php:73 +#: src/Module/Settings/Features.php:59 msgid "Additional Features" msgstr "Fonctions supplémentaires" -#: src/Module/Settings/OAuth.php:71 +#: src/Module/Settings/OAuth.php:57 msgid "Connected Apps" msgstr "Applications connectées" -#: src/Module/Settings/OAuth.php:75 +#: src/Module/Settings/OAuth.php:61 msgid "Remove authorization" msgstr "Révoquer l'autorisation" -#: src/Module/Settings/Profile/Index.php:116 +#: src/Module/Settings/Profile/Index.php:102 msgid "Display Name is required." msgstr "Le nom d'affichage est requis." -#: src/Module/Settings/Profile/Index.php:170 +#: src/Module/Settings/Profile/Index.php:156 msgid "Profile couldn't be updated." msgstr "Le profil n'a pas pu être mis à jour." -#: src/Module/Settings/Profile/Index.php:210 -#: src/Module/Settings/Profile/Index.php:231 +#: src/Module/Settings/Profile/Index.php:196 +#: src/Module/Settings/Profile/Index.php:217 msgid "Label:" msgstr "Description :" -#: src/Module/Settings/Profile/Index.php:211 -#: src/Module/Settings/Profile/Index.php:232 +#: src/Module/Settings/Profile/Index.php:197 +#: src/Module/Settings/Profile/Index.php:218 msgid "Value:" msgstr "Contenu :" -#: src/Module/Settings/Profile/Index.php:222 -#: src/Module/Settings/Profile/Index.php:243 +#: src/Module/Settings/Profile/Index.php:208 +#: src/Module/Settings/Profile/Index.php:229 msgid "Field Permissions" msgstr "Permissions du champ" -#: src/Module/Settings/Profile/Index.php:223 -#: src/Module/Settings/Profile/Index.php:244 +#: src/Module/Settings/Profile/Index.php:209 +#: src/Module/Settings/Profile/Index.php:230 msgid "(click to open/close)" msgstr "(cliquer pour ouvrir/fermer)" -#: src/Module/Settings/Profile/Index.php:229 +#: src/Module/Settings/Profile/Index.php:215 msgid "Add a new profile field" msgstr "Ajouter un nouveau champ de profil" -#: src/Module/Settings/Profile/Index.php:252 +#: src/Module/Settings/Profile/Index.php:238 msgid "" "The homepage is verified. A rel=\"me\" link back to your Friendica profile " "page was found on the homepage." msgstr "La page d'accueil est vérifiée. Un lien rel=\"me\" vers votre page de profil Friendica a été trouvé sur la page d'accueil." -#: src/Module/Settings/Profile/Index.php:254 +#: src/Module/Settings/Profile/Index.php:240 #, php-format msgid "" "To verify your homepage, add a rel=\"me\" link to it, pointing to your " "profile URL (%s)." msgstr "Pour vérifier votre page d'accueil, ajouter un lien rel=\"me\" à celle-ci, pointant vers l'URL de votre profil (%s)." -#: src/Module/Settings/Profile/Index.php:260 +#: src/Module/Settings/Profile/Index.php:246 msgid "Profile Actions" msgstr "Actions de Profil" -#: src/Module/Settings/Profile/Index.php:261 +#: src/Module/Settings/Profile/Index.php:247 msgid "Edit Profile Details" msgstr "Éditer les détails du profil" -#: src/Module/Settings/Profile/Index.php:263 +#: src/Module/Settings/Profile/Index.php:249 msgid "Change Profile Photo" msgstr "Changer la photo du profil" -#: src/Module/Settings/Profile/Index.php:266 +#: src/Module/Settings/Profile/Index.php:252 msgid "Profile picture" msgstr "Image de profil" -#: src/Module/Settings/Profile/Index.php:267 +#: src/Module/Settings/Profile/Index.php:253 msgid "Location" msgstr "Localisation" -#: src/Module/Settings/Profile/Index.php:268 src/Util/Temporal.php:97 -#: src/Util/Temporal.php:99 +#: src/Module/Settings/Profile/Index.php:254 src/Util/Temporal.php:83 +#: src/Util/Temporal.php:85 msgid "Miscellaneous" msgstr "Divers" -#: src/Module/Settings/Profile/Index.php:269 +#: src/Module/Settings/Profile/Index.php:255 msgid "Custom Profile Fields" msgstr "Champs de profil personalisés" -#: src/Module/Settings/Profile/Index.php:270 src/Module/Welcome.php:58 +#: src/Module/Settings/Profile/Index.php:256 src/Module/Welcome.php:44 msgid "Upload Profile Photo" msgstr "Téléverser une photo de profil" -#: src/Module/Settings/Profile/Index.php:271 +#: src/Module/Settings/Profile/Index.php:257 #, php-format msgid "" "Custom fields appear on your profile page.
\n" @@ -11031,396 +11001,396 @@ msgid "" "\t\t\t\tNon-public fields can only be seen by the selected Friendica contacts or the Friendica contacts in the selected circles.
" msgstr "Les champs de profil personnalisés apparaissent sur votre page de profil.
\n\t\t\t\tVous pouvez utilisez les BBCodes dans le contenu des champs.
\n\t\t\t\tTriez les champs en glissant-déplaçant leur titre.
\n\t\t\t\tLaissez le titre d'un champ vide pour le supprimer lors de la soumission du formulaire .
\n\t\t\t\tLes champs non-publics peuvent être consultés uniquement par les contacts Friendica autorisés ou par les contacts Friendica de cercles autorisés.
" -#: src/Module/Settings/Profile/Index.php:291 +#: src/Module/Settings/Profile/Index.php:277 msgid "Street Address:" msgstr "Adresse postale :" -#: src/Module/Settings/Profile/Index.php:292 +#: src/Module/Settings/Profile/Index.php:278 msgid "Locality/City:" msgstr "Ville :" -#: src/Module/Settings/Profile/Index.php:293 +#: src/Module/Settings/Profile/Index.php:279 msgid "Region/State:" msgstr "Région / État :" -#: src/Module/Settings/Profile/Index.php:294 +#: src/Module/Settings/Profile/Index.php:280 msgid "Postal/Zip Code:" msgstr "Code postal :" -#: src/Module/Settings/Profile/Index.php:295 +#: src/Module/Settings/Profile/Index.php:281 msgid "Country:" msgstr "Pays :" -#: src/Module/Settings/Profile/Index.php:297 +#: src/Module/Settings/Profile/Index.php:283 msgid "XMPP (Jabber) address:" msgstr "Adresse XMPP (Jabber) :" -#: src/Module/Settings/Profile/Index.php:297 +#: src/Module/Settings/Profile/Index.php:283 msgid "" "The XMPP address will be published so that people can follow you there." msgstr "L'adresse XMPP sera publiée de façon à ce que les autres personnes puissent vous y suivre." -#: src/Module/Settings/Profile/Index.php:298 +#: src/Module/Settings/Profile/Index.php:284 msgid "Matrix (Element) address:" msgstr "Adresse Matrix (Element) :" -#: src/Module/Settings/Profile/Index.php:298 +#: src/Module/Settings/Profile/Index.php:284 msgid "" "The Matrix address will be published so that people can follow you there." msgstr "L'adresse Matrix sera publiée de façon à ce que les autres personnes puissent vous y suivre." -#: src/Module/Settings/Profile/Index.php:299 +#: src/Module/Settings/Profile/Index.php:285 msgid "Homepage URL:" msgstr "Page personnelle :" -#: src/Module/Settings/Profile/Index.php:300 +#: src/Module/Settings/Profile/Index.php:286 msgid "Public Keywords:" msgstr "Mots-clés publics :" -#: src/Module/Settings/Profile/Index.php:300 +#: src/Module/Settings/Profile/Index.php:286 msgid "(Used for suggesting potential friends, can be seen by others)" msgstr "(Utilisés pour vous suggérer des abonnements. Ils peuvent être vus par autrui)" -#: src/Module/Settings/Profile/Index.php:301 +#: src/Module/Settings/Profile/Index.php:287 msgid "Private Keywords:" msgstr "Mots-clés privés :" -#: src/Module/Settings/Profile/Index.php:301 +#: src/Module/Settings/Profile/Index.php:287 msgid "(Used for searching profiles, never shown to others)" msgstr "(Utilisés pour rechercher des profils. Ils ne seront jamais montrés à autrui)" -#: src/Module/Settings/Profile/Photo/Crop.php:107 -#: src/Module/Settings/Profile/Photo/Crop.php:125 -#: src/Module/Settings/Profile/Photo/Crop.php:143 -#: src/Module/Settings/Profile/Photo/Index.php:100 +#: src/Module/Settings/Profile/Photo/Crop.php:93 +#: src/Module/Settings/Profile/Photo/Crop.php:111 +#: src/Module/Settings/Profile/Photo/Crop.php:129 +#: src/Module/Settings/Profile/Photo/Index.php:86 #, php-format msgid "Image size reduction [%s] failed." msgstr "Réduction de la taille de l'image [%s] échouée." -#: src/Module/Settings/Profile/Photo/Crop.php:150 +#: src/Module/Settings/Profile/Photo/Crop.php:136 msgid "" "Shift-reload the page or clear browser cache if the new photo does not " "display immediately." msgstr "Rechargez la page avec la touche Maj pressée, ou bien effacez le cache du navigateur, si d'aventure la nouvelle photo n'apparaissait pas immédiatement." -#: src/Module/Settings/Profile/Photo/Crop.php:155 +#: src/Module/Settings/Profile/Photo/Crop.php:141 msgid "Unable to process image" msgstr "Impossible de traiter l'image" -#: src/Module/Settings/Profile/Photo/Crop.php:174 +#: src/Module/Settings/Profile/Photo/Crop.php:160 msgid "Photo not found." msgstr "Photo introuvable." -#: src/Module/Settings/Profile/Photo/Crop.php:196 +#: src/Module/Settings/Profile/Photo/Crop.php:182 msgid "Profile picture successfully updated." msgstr "Photo de profil mise à jour avec succès." -#: src/Module/Settings/Profile/Photo/Crop.php:222 -#: src/Module/Settings/Profile/Photo/Crop.php:226 +#: src/Module/Settings/Profile/Photo/Crop.php:208 +#: src/Module/Settings/Profile/Photo/Crop.php:212 msgid "Crop Image" msgstr "(Re)cadrer l'image" -#: src/Module/Settings/Profile/Photo/Crop.php:223 +#: src/Module/Settings/Profile/Photo/Crop.php:209 msgid "Please adjust the image cropping for optimum viewing." msgstr "Ajustez le cadre de l'image pour une visualisation optimale." -#: src/Module/Settings/Profile/Photo/Crop.php:225 +#: src/Module/Settings/Profile/Photo/Crop.php:211 msgid "Use Image As Is" msgstr "Utiliser l'image telle quelle" -#: src/Module/Settings/Profile/Photo/Index.php:46 +#: src/Module/Settings/Profile/Photo/Index.php:32 msgid "Missing uploaded image." msgstr "Image téléversée manquante" -#: src/Module/Settings/Profile/Photo/Index.php:123 +#: src/Module/Settings/Profile/Photo/Index.php:109 msgid "Profile Picture Settings" msgstr "Réglages de la photo de profil" -#: src/Module/Settings/Profile/Photo/Index.php:124 +#: src/Module/Settings/Profile/Photo/Index.php:110 msgid "Current Profile Picture" msgstr "Photo de profil actuelle" -#: src/Module/Settings/Profile/Photo/Index.php:125 +#: src/Module/Settings/Profile/Photo/Index.php:111 msgid "Upload Profile Picture" msgstr "Téléverser une photo de profil" -#: src/Module/Settings/Profile/Photo/Index.php:126 +#: src/Module/Settings/Profile/Photo/Index.php:112 msgid "Upload Picture:" msgstr "Téléverser une photo :" -#: src/Module/Settings/Profile/Photo/Index.php:131 +#: src/Module/Settings/Profile/Photo/Index.php:117 msgid "or" msgstr "ou" -#: src/Module/Settings/Profile/Photo/Index.php:133 +#: src/Module/Settings/Profile/Photo/Index.php:119 msgid "skip this step" msgstr "ignorer cette étape" -#: src/Module/Settings/Profile/Photo/Index.php:135 +#: src/Module/Settings/Profile/Photo/Index.php:121 msgid "select a photo from your photo albums" msgstr "choisissez une photo depuis vos albums" -#: src/Module/Settings/RemoveMe.php:76 +#: src/Module/Settings/RemoveMe.php:62 msgid "" "There was a validation error, please make sure you're logged in with the " "account you want to remove and try again." msgstr "Il y a eu une erreur de validation, vérifiez que vous êtes connecté avec le compte que vous souhaitez supprimer et réessayez." -#: src/Module/Settings/RemoveMe.php:76 +#: src/Module/Settings/RemoveMe.php:62 msgid "If this error persists, please contact your administrator." msgstr "Si cette erreur persiste, veuillez contacter votre administrateur." -#: src/Module/Settings/RemoveMe.php:90 -#: src/Navigation/Notifications/Repository/Notify.php:471 -#: src/Navigation/Notifications/Repository/Notify.php:492 +#: src/Module/Settings/RemoveMe.php:76 +#: src/Navigation/Notifications/Repository/Notify.php:457 +#: src/Navigation/Notifications/Repository/Notify.php:478 msgid "[Friendica System Notify]" msgstr "[Notification Système de Friendica]" -#: src/Module/Settings/RemoveMe.php:90 +#: src/Module/Settings/RemoveMe.php:76 msgid "User deleted their account" msgstr "L'utilisateur a supprimé son compte" -#: src/Module/Settings/RemoveMe.php:91 +#: src/Module/Settings/RemoveMe.php:77 msgid "" "On your Friendica node an user deleted their account. Please ensure that " "their data is removed from the backups." msgstr "Sur votre nœud Friendica, un utilisateur a supprimé son compte. Veuillez vous assurer que ses données sont supprimées des sauvegardes." -#: src/Module/Settings/RemoveMe.php:92 +#: src/Module/Settings/RemoveMe.php:78 #, php-format msgid "The user id is %d" msgstr "L'identifiant d'utilisateur est %d" -#: src/Module/Settings/RemoveMe.php:105 +#: src/Module/Settings/RemoveMe.php:91 msgid "Your account has been successfully removed. Bye bye!" msgstr "Votre compte a été supprimé avec succès. Au revoir !" -#: src/Module/Settings/RemoveMe.php:130 +#: src/Module/Settings/RemoveMe.php:116 msgid "Remove My Account" msgstr "Supprimer mon compte" -#: src/Module/Settings/RemoveMe.php:131 +#: src/Module/Settings/RemoveMe.php:117 msgid "" "This will completely remove your account. Once this has been done it is not " "recoverable." msgstr "Ceci supprimera totalement votre compte. Cette opération est irréversible." -#: src/Module/Settings/RemoveMe.php:136 +#: src/Module/Settings/RemoveMe.php:122 msgid "Please enter your password for verification:" msgstr "Veuillez saisir votre mot de passe pour vérification :" -#: src/Module/Settings/Server/Action.php:60 +#: src/Module/Settings/Server/Action.php:46 msgid "Do you want to ignore this server?" msgstr "Voulez-vous ignorer ce serveur ?" -#: src/Module/Settings/Server/Action.php:64 +#: src/Module/Settings/Server/Action.php:50 msgid "Do you want to unignore this server?" msgstr "Voulez-vous ne plus ignorer ce serveur ?" -#: src/Module/Settings/Server/Action.php:74 -#: src/Module/Settings/Server/Index.php:104 +#: src/Module/Settings/Server/Action.php:60 +#: src/Module/Settings/Server/Index.php:90 msgid "Remote server settings" msgstr "Paramètres du serveur distant" -#: src/Module/Settings/Server/Action.php:77 +#: src/Module/Settings/Server/Action.php:63 msgid "Server URL" msgstr "URL du serveur" -#: src/Module/Settings/Server/Index.php:78 +#: src/Module/Settings/Server/Index.php:64 msgid "Settings saved" msgstr "Paramètres sauvegardés" -#: src/Module/Settings/Server/Index.php:105 +#: src/Module/Settings/Server/Index.php:91 msgid "" "Here you can find all the remote servers you have taken individual " "moderation actions against. For a list of servers your node has blocked, " "please check out the Information page." msgstr "Vous trouverez ici tous les serveurs distants pour lesquels vous avez pris des mesures de modération individuelles. Pour obtenir une liste des serveurs que votre nœud a bloqués, veuillez consulter la page Information." -#: src/Module/Settings/Server/Index.php:110 +#: src/Module/Settings/Server/Index.php:96 msgid "Delete all your settings for the remote server" msgstr "Supprime tous vos paramètres du serveur distant" -#: src/Module/Settings/Server/Index.php:111 +#: src/Module/Settings/Server/Index.php:97 msgid "Save changes" msgstr "Sauvegarder les changements" -#: src/Module/Settings/TwoFactor/AppSpecific.php:69 -#: src/Module/Settings/TwoFactor/Recovery.php:67 -#: src/Module/Settings/TwoFactor/Trusted.php:70 -#: src/Module/Settings/TwoFactor/Verify.php:72 +#: src/Module/Settings/TwoFactor/AppSpecific.php:55 +#: src/Module/Settings/TwoFactor/Recovery.php:53 +#: src/Module/Settings/TwoFactor/Trusted.php:56 +#: src/Module/Settings/TwoFactor/Verify.php:58 msgid "Please enter your password to access this page." msgstr "Veuillez saisir votre mot de passe pour accéder à cette page." -#: src/Module/Settings/TwoFactor/AppSpecific.php:87 +#: src/Module/Settings/TwoFactor/AppSpecific.php:73 msgid "App-specific password generation failed: The description is empty." msgstr "La génération du mot de passe spécifique à l'application a échoué : la description est vide." -#: src/Module/Settings/TwoFactor/AppSpecific.php:90 +#: src/Module/Settings/TwoFactor/AppSpecific.php:76 msgid "" "App-specific password generation failed: This description already exists." msgstr "La génération du mot de passe spécifique à l'application a échoué : cette description existe déjà." -#: src/Module/Settings/TwoFactor/AppSpecific.php:94 +#: src/Module/Settings/TwoFactor/AppSpecific.php:80 msgid "New app-specific password generated." msgstr "Nouveau mot de passe spécifique à l'application généré avec succès." -#: src/Module/Settings/TwoFactor/AppSpecific.php:100 +#: src/Module/Settings/TwoFactor/AppSpecific.php:86 msgid "App-specific passwords successfully revoked." msgstr "Mots de passe spécifiques à des applications révoqués avec succès." -#: src/Module/Settings/TwoFactor/AppSpecific.php:110 +#: src/Module/Settings/TwoFactor/AppSpecific.php:96 msgid "App-specific password successfully revoked." msgstr "Mot de passe spécifique à l'application révoqué avec succès." -#: src/Module/Settings/TwoFactor/AppSpecific.php:131 +#: src/Module/Settings/TwoFactor/AppSpecific.php:117 msgid "Two-factor app-specific passwords" msgstr "Authentification à deux facteurs : Mots de passe spécifiques aux applications" -#: src/Module/Settings/TwoFactor/AppSpecific.php:133 +#: src/Module/Settings/TwoFactor/AppSpecific.php:119 msgid "" "App-specific passwords are randomly generated passwords used instead your" " regular password to authenticate your account on third-party applications " "that don't support two-factor authentication.
" msgstr "Les mots de passe spécifiques aux application sont des mots de passe générés aléatoirement pour vous identifier avec votre compte Friendica sur des applications tierce-partie qui n'offrent pas d'authentification à deux facteurs.
" -#: src/Module/Settings/TwoFactor/AppSpecific.php:134 +#: src/Module/Settings/TwoFactor/AppSpecific.php:120 msgid "" "Make sure to copy your new app-specific password now. You won’t be able to " "see it again!" msgstr "Veillez à copier votre nouveau mot de passe spécifique à l'application maintenant. Il ne sera plus jamais affiché!" -#: src/Module/Settings/TwoFactor/AppSpecific.php:138 +#: src/Module/Settings/TwoFactor/AppSpecific.php:124 msgid "Last Used" msgstr "Dernière utilisation" -#: src/Module/Settings/TwoFactor/AppSpecific.php:139 +#: src/Module/Settings/TwoFactor/AppSpecific.php:125 msgid "Revoke" msgstr "Révoquer" -#: src/Module/Settings/TwoFactor/AppSpecific.php:140 +#: src/Module/Settings/TwoFactor/AppSpecific.php:126 msgid "Revoke All" msgstr "Révoquer tous" -#: src/Module/Settings/TwoFactor/AppSpecific.php:143 +#: src/Module/Settings/TwoFactor/AppSpecific.php:129 msgid "" "When you generate a new app-specific password, you must use it right away, " "it will be shown to you once after you generate it." msgstr "Une fois que votre nouveau mot de passe spécifique à l'application est généré, vous devez l'utiliser immédiatement car il ne vous sera pas remontré plus tard." -#: src/Module/Settings/TwoFactor/AppSpecific.php:144 +#: src/Module/Settings/TwoFactor/AppSpecific.php:130 msgid "Generate new app-specific password" msgstr "Générer un nouveau mot de passe spécifique à une application" -#: src/Module/Settings/TwoFactor/AppSpecific.php:145 +#: src/Module/Settings/TwoFactor/AppSpecific.php:131 msgid "Friendiqa on my Fairphone 2..." msgstr "Friendiqa sur mon Fairphone 2..." -#: src/Module/Settings/TwoFactor/AppSpecific.php:146 +#: src/Module/Settings/TwoFactor/AppSpecific.php:132 msgid "Generate" msgstr "Générer" -#: src/Module/Settings/TwoFactor/Index.php:88 +#: src/Module/Settings/TwoFactor/Index.php:74 msgid "Two-factor authentication successfully disabled." msgstr "Authentification à deux facteurs désactivée avec succès." -#: src/Module/Settings/TwoFactor/Index.php:141 +#: src/Module/Settings/TwoFactor/Index.php:127 msgid "" "Use an application on a mobile device to get two-factor authentication " "codes when prompted on login.
" msgstr "Utilisez une application mobile pour obtenir des codes d'authentification à deux facteurs que vous devrez fournir lors de la saisie de vos identifiants.
" -#: src/Module/Settings/TwoFactor/Index.php:145 +#: src/Module/Settings/TwoFactor/Index.php:131 msgid "Authenticator app" msgstr "Application mobile" -#: src/Module/Settings/TwoFactor/Index.php:146 +#: src/Module/Settings/TwoFactor/Index.php:132 msgid "Configured" msgstr "Configurée" -#: src/Module/Settings/TwoFactor/Index.php:146 +#: src/Module/Settings/TwoFactor/Index.php:132 msgid "Not Configured" msgstr "Pas encore configurée" -#: src/Module/Settings/TwoFactor/Index.php:147 +#: src/Module/Settings/TwoFactor/Index.php:133 msgid "You haven't finished configuring your authenticator app.
" msgstr "Vous n'avez pas complété la configuration de votre application mobile d'authentification.
" -#: src/Module/Settings/TwoFactor/Index.php:148 +#: src/Module/Settings/TwoFactor/Index.php:134 msgid "Your authenticator app is correctly configured.
" msgstr "Votre application mobile d'authentification est correctement configurée.
" -#: src/Module/Settings/TwoFactor/Index.php:150 +#: src/Module/Settings/TwoFactor/Index.php:136 msgid "Recovery codes" msgstr "Codes de secours" -#: src/Module/Settings/TwoFactor/Index.php:151 +#: src/Module/Settings/TwoFactor/Index.php:137 msgid "Remaining valid codes" msgstr "Codes valides restant" -#: src/Module/Settings/TwoFactor/Index.php:153 +#: src/Module/Settings/TwoFactor/Index.php:139 msgid "" "These one-use codes can replace an authenticator app code in case you " "have lost access to it.
" msgstr "Ces codes à usage unique peuvent remplacer un code de votre application mobile d'authentification si vous n'y avez pas ou plus accès.
" -#: src/Module/Settings/TwoFactor/Index.php:155 +#: src/Module/Settings/TwoFactor/Index.php:141 msgid "App-specific passwords" msgstr "Mots de passe spécifiques aux applications" -#: src/Module/Settings/TwoFactor/Index.php:156 +#: src/Module/Settings/TwoFactor/Index.php:142 msgid "Generated app-specific passwords" msgstr "Générer des mots de passe d'application" -#: src/Module/Settings/TwoFactor/Index.php:158 +#: src/Module/Settings/TwoFactor/Index.php:144 msgid "" "These randomly generated passwords allow you to authenticate on apps not " "supporting two-factor authentication.
" msgstr "Ces mots de passe générés aléatoirement vous permettent de vous identifier sur des applications tierce-partie qui ne supportent pas l'authentification à deux facteurs.
" -#: src/Module/Settings/TwoFactor/Index.php:161 +#: src/Module/Settings/TwoFactor/Index.php:147 msgid "Current password:" msgstr "Mot de passe actuel :" -#: src/Module/Settings/TwoFactor/Index.php:161 +#: src/Module/Settings/TwoFactor/Index.php:147 msgid "" "You need to provide your current password to change two-factor " "authentication settings." msgstr "Vous devez saisir votre mot de passe actuel pour changer les réglages de l'authentification à deux facteurs." -#: src/Module/Settings/TwoFactor/Index.php:162 +#: src/Module/Settings/TwoFactor/Index.php:148 msgid "Enable two-factor authentication" msgstr "Activer l'authentification à deux facteurs" -#: src/Module/Settings/TwoFactor/Index.php:163 +#: src/Module/Settings/TwoFactor/Index.php:149 msgid "Disable two-factor authentication" msgstr "Désactiver l'authentification à deux facteurs" -#: src/Module/Settings/TwoFactor/Index.php:164 +#: src/Module/Settings/TwoFactor/Index.php:150 msgid "Show recovery codes" msgstr "Montrer les codes de secours" -#: src/Module/Settings/TwoFactor/Index.php:165 +#: src/Module/Settings/TwoFactor/Index.php:151 msgid "Manage app-specific passwords" msgstr "Gérer les mots de passe spécifiques aux applications" -#: src/Module/Settings/TwoFactor/Index.php:166 +#: src/Module/Settings/TwoFactor/Index.php:152 msgid "Manage trusted browsers" msgstr "Gérer les navigateurs de confiance" -#: src/Module/Settings/TwoFactor/Index.php:167 +#: src/Module/Settings/TwoFactor/Index.php:153 msgid "Finish app configuration" msgstr "Compléter la configuration de l'application mobile" -#: src/Module/Settings/TwoFactor/Recovery.php:83 +#: src/Module/Settings/TwoFactor/Recovery.php:69 msgid "New recovery codes successfully generated." msgstr "Nouveaux codes de secours générés avec succès." -#: src/Module/Settings/TwoFactor/Recovery.php:109 +#: src/Module/Settings/TwoFactor/Recovery.php:95 msgid "Two-factor recovery codes" msgstr "Codes d'identification de secours" -#: src/Module/Settings/TwoFactor/Recovery.php:111 +#: src/Module/Settings/TwoFactor/Recovery.php:97 msgid "" "Recovery codes can be used to access your account in the event you lose " "access to your device and cannot receive two-factor authentication " @@ -11429,68 +11399,68 @@ msgid "" "account.
" msgstr "Les codes de secours peuvent être utilisés pour accéder à votre compte dans l'eventualité où vous auriez perdu l'accès à votre application mobile d'authentification à deux facteurs.
Prenez soin de ces codes ! Si vous perdez votre appareil mobile et n'avez pas de codes de secours vous n'aurez plus accès à votre compte.
" -#: src/Module/Settings/TwoFactor/Recovery.php:113 +#: src/Module/Settings/TwoFactor/Recovery.php:99 msgid "" "When you generate new recovery codes, you must copy the new codes. Your old " "codes won’t work anymore." msgstr "Après avoir généré de nouveaux codes de secours, veillez à remplacer les anciens qui ne seront plus valides." -#: src/Module/Settings/TwoFactor/Recovery.php:114 +#: src/Module/Settings/TwoFactor/Recovery.php:100 msgid "Generate new recovery codes" msgstr "Générer de nouveaux codes de secours" -#: src/Module/Settings/TwoFactor/Recovery.php:116 +#: src/Module/Settings/TwoFactor/Recovery.php:102 msgid "Next: Verification" msgstr "Prochaine étape : Vérification" -#: src/Module/Settings/TwoFactor/Trusted.php:87 +#: src/Module/Settings/TwoFactor/Trusted.php:73 msgid "Trusted browsers successfully removed." msgstr "Les navigateurs de confiance ont bien été supprimés." -#: src/Module/Settings/TwoFactor/Trusted.php:97 +#: src/Module/Settings/TwoFactor/Trusted.php:83 msgid "Trusted browser successfully removed." msgstr "Le navigateur de confiance a bien été supprimé." -#: src/Module/Settings/TwoFactor/Trusted.php:139 +#: src/Module/Settings/TwoFactor/Trusted.php:125 msgid "Two-factor Trusted Browsers" msgstr "Navigateurs de confiance pour la 2FA" -#: src/Module/Settings/TwoFactor/Trusted.php:140 +#: src/Module/Settings/TwoFactor/Trusted.php:126 msgid "" "Trusted browsers are individual browsers you chose to skip two-factor " "authentication to access Friendica. Please use this feature sparingly, as it" " can negate the benefit of two-factor authentication." msgstr "Les navigateurs de confiance sont des navigateurs individuels pour lesquels vous avez choisi de ne pas utiliser l'identification à deux facteurs pour accéder à Friendica. Merci d'utiliser cette fonctionnalité avec discernement, au vu du fait qu'elle peut annuler les bénéfices de l'identification à deux facteurs." -#: src/Module/Settings/TwoFactor/Trusted.php:141 +#: src/Module/Settings/TwoFactor/Trusted.php:127 msgid "Device" msgstr "Périphérique" -#: src/Module/Settings/TwoFactor/Trusted.php:142 +#: src/Module/Settings/TwoFactor/Trusted.php:128 msgid "OS" msgstr "Système d'exploitation" -#: src/Module/Settings/TwoFactor/Trusted.php:144 +#: src/Module/Settings/TwoFactor/Trusted.php:130 msgid "Trusted" msgstr "De confiance" -#: src/Module/Settings/TwoFactor/Trusted.php:145 +#: src/Module/Settings/TwoFactor/Trusted.php:131 msgid "Created At" msgstr "Créé à" -#: src/Module/Settings/TwoFactor/Trusted.php:146 +#: src/Module/Settings/TwoFactor/Trusted.php:132 msgid "Last Use" msgstr "Dernière utilisation" -#: src/Module/Settings/TwoFactor/Trusted.php:148 +#: src/Module/Settings/TwoFactor/Trusted.php:134 msgid "Remove All" msgstr "Tout supprimer" -#: src/Module/Settings/TwoFactor/Verify.php:94 +#: src/Module/Settings/TwoFactor/Verify.php:80 msgid "Two-factor authentication successfully activated." msgstr "Authentification à deux facteurs activée avec succès." -#: src/Module/Settings/TwoFactor/Verify.php:128 +#: src/Module/Settings/TwoFactor/Verify.php:114 #, php-format msgid "" "Or you can submit the authentication settings manually:
\n" @@ -11510,105 +11480,105 @@ msgid "" "" msgstr "Ou bien vous pouvez saisir les paramètres de l'authentification manuellement:
\nPlease scan this QR Code with your authenticator app and submit the " "provided code.
" msgstr "Veuillez scanner ce QR Code avec votre application mobile d'authenficiation à deux facteurs et saisissez le code qui s'affichera.
" -#: src/Module/Settings/TwoFactor/Verify.php:152 +#: src/Module/Settings/TwoFactor/Verify.php:138 #, php-format msgid "" "Or you can open the following URL in your mobile device:
" msgstr "Ou vous pouvez ouvrir l'adresse suivante sur votre périphérique mobile:
" -#: src/Module/Settings/TwoFactor/Verify.php:159 +#: src/Module/Settings/TwoFactor/Verify.php:145 msgid "Verify code and enable two-factor authentication" msgstr "Vérifier le code d'identification et activer l'authentification à deux facteurs" -#: src/Module/Settings/UserExport.php:90 +#: src/Module/Settings/UserExport.php:76 msgid "Export account" msgstr "Exporter le compte" -#: src/Module/Settings/UserExport.php:90 +#: src/Module/Settings/UserExport.php:76 msgid "" "Export your account info and contacts. Use this to make a backup of your " "account and/or to move it to another server." msgstr "Exportez votre compte, vos infos et vos contacts. Vous pourrez utiliser le résultat comme sauvegarde et/ou pour le ré-importer sur un autre serveur." -#: src/Module/Settings/UserExport.php:91 +#: src/Module/Settings/UserExport.php:77 msgid "Export all" msgstr "Tout exporter" -#: src/Module/Settings/UserExport.php:91 +#: src/Module/Settings/UserExport.php:77 msgid "" "Export your account info, contacts and all your items as json. Could be a " "very big file, and could take a lot of time. Use this to make a full backup " "of your account (photos are not exported)" msgstr "Exporte vos informations de compte, vos contacts et toutes vos publications au format JSON. Ce processus peut prendre beaucoup de temps et générer un fichier de taille importante. Utilisez cette fonctionnalité pour faire une sauvegarde complète de votre compte (vos photos ne sont pas exportées)." -#: src/Module/Settings/UserExport.php:92 +#: src/Module/Settings/UserExport.php:78 msgid "Export Contacts to CSV" msgstr "Exporter vos contacts au format CSV" -#: src/Module/Settings/UserExport.php:92 +#: src/Module/Settings/UserExport.php:78 msgid "" "Export the list of the accounts you are following as CSV file. Compatible to" " e.g. Mastodon." msgstr "Exporter vos abonnements au format CSV. Compatible avec Mastodon." -#: src/Module/Special/DisplayNotFound.php:35 +#: src/Module/Special/DisplayNotFound.php:21 msgid "The top-level post isn't visible." msgstr "La publication de premier niveau n'est pas visible." -#: src/Module/Special/DisplayNotFound.php:36 +#: src/Module/Special/DisplayNotFound.php:22 msgid "The top-level post was deleted." msgstr "La publication de premier niveau a été supprimée." -#: src/Module/Special/DisplayNotFound.php:37 +#: src/Module/Special/DisplayNotFound.php:23 msgid "" "This node has blocked the top-level author or the author of the shared post." msgstr "Ce nœud a bloqué l'auteur de premier niveau ou l'auteur de la publication partagée." -#: src/Module/Special/DisplayNotFound.php:38 +#: src/Module/Special/DisplayNotFound.php:24 msgid "" "You have ignored or blocked the top-level author or the author of the shared" " post." msgstr "Vous avez ignoré ou bloqué l'auteur de premier niveau ou l'auteur de la publication partagée." -#: src/Module/Special/DisplayNotFound.php:39 +#: src/Module/Special/DisplayNotFound.php:25 msgid "" "You have ignored the top-level author's server or the shared post author's " "server." msgstr "Vous avez ignoré le serveur de l'auteur de premier niveau ou le serveur de l'auteur de la publication partagée." -#: src/Module/Special/DisplayNotFound.php:45 +#: src/Module/Special/DisplayNotFound.php:31 msgid "Conversation Not Found" msgstr "Conversation Non Trouvée" -#: src/Module/Special/DisplayNotFound.php:46 +#: src/Module/Special/DisplayNotFound.php:32 msgid "Unfortunately, the requested conversation isn't available to you." msgstr "Malheureusement, la conversation demandée n'est pas disponible pour vous." -#: src/Module/Special/DisplayNotFound.php:47 +#: src/Module/Special/DisplayNotFound.php:33 msgid "Possible reasons include:" msgstr "Les raisons possibles sont :" -#: src/Module/Special/HTTPException.php:78 +#: src/Module/Special/HTTPException.php:64 msgid "Stack trace:" msgstr "Stack trace:" -#: src/Module/Special/HTTPException.php:83 +#: src/Module/Special/HTTPException.php:69 #, php-format msgid "Exception thrown in %s:%d" msgstr "Exception produite dans %s:%d" -#: src/Module/Tos.php:58 src/Module/Tos.php:107 +#: src/Module/Tos.php:44 src/Module/Tos.php:93 msgid "" "At the time of registration, and for providing communications between the " "user account and their contacts, the user has to provide a display name (pen" @@ -11621,14 +11591,14 @@ msgid "" "settings, it is not necessary for communication." msgstr "Au moment de l'inscription, et afin de fournir des communications entre le compte de l'utilisateur et ses contacts, l'utilisateur doit fournir un nom d'affichage (nom de plume), un nom d'utilisateur (pseudo) et une adresse de courriel fonctionnelle. Les noms seront accessibles sur la page de profil du compte par tout visiteur de la page, même si les autres informations de profil ne sont pas affichées. L'adresse de courriel ne sera utilisée que pour envoyer des notifications à l'utilisateur à propos de ses interactions, mais ne sera pas affichée de manière visible. Le référencement du compte dans le répertoire des comptes du nœud ou le répertoire global des utilisateurs est facultatif et peut être contrôlé dans les paramètres utilisateur, il n'est pas nécessaire pour la communication. " -#: src/Module/Tos.php:59 src/Module/Tos.php:108 +#: src/Module/Tos.php:45 src/Module/Tos.php:94 msgid "" "This data is required for communication and is passed on to the nodes of the" " communication partners and is stored there. Users can enter additional " "private data that may be transmitted to the communication partners accounts." msgstr "Ces données sont requises pour la communication et transférées aux nœuds des partenaires de communication, et sont stockées ici. Les utilisateurs peuvent ajouter des données privées additionnelles qui peuvent être transmises aux comptes de leurs partenaires de communication." -#: src/Module/Tos.php:60 src/Module/Tos.php:109 +#: src/Module/Tos.php:46 src/Module/Tos.php:95 #, php-format msgid "" "At any point in time a logged in user can export their account data from the" @@ -11639,98 +11609,98 @@ msgid "" "from the nodes of the communication partners." msgstr "A n'importe quel moment, un utilisateur connecté peut exporter les données de son compte à partir des Paramètres du compte. Si l'utilisateur souhaite supprimer son compte, il peut le faire à partir de la page %1$s/settings/removeme. La suppression du compte sera permanente. La suppression des données sera également demandée aux noeuds des partenaires de communication." -#: src/Module/Tos.php:63 src/Module/Tos.php:106 +#: src/Module/Tos.php:49 src/Module/Tos.php:92 msgid "Privacy Statement" msgstr "Politique de Confidentialité" -#: src/Module/Tos.php:103 +#: src/Module/Tos.php:89 msgid "Rules" msgstr "Règles" -#: src/Module/Update/Display.php:45 +#: src/Module/Update/Display.php:31 msgid "Parameter uri_id is missing." msgstr "Le paramètre uri_id est manquant." -#: src/Module/Update/Display.php:55 +#: src/Module/Update/Display.php:41 msgid "The requested item doesn't exist or has been deleted." msgstr "L'objet recherché n'existe pas ou a été supprimé." -#: src/Module/User/Delegation.php:146 +#: src/Module/User/Delegation.php:132 #, php-format msgid "You are now logged in as %s" msgstr "Vous êtes maintenant connecté en tant que %s" -#: src/Module/User/Delegation.php:185 +#: src/Module/User/Delegation.php:171 msgid "Switch between your accounts" msgstr "Changer de compte" -#: src/Module/User/Delegation.php:186 +#: src/Module/User/Delegation.php:172 msgid "Manage your accounts" msgstr "Gérér vos comptes" -#: src/Module/User/Delegation.php:187 +#: src/Module/User/Delegation.php:173 msgid "" "Toggle between different identities or community/group pages which share " "your account details or which you have been granted \"manage\" permissions" msgstr "Basculez entre les différentes identités ou pages (groupes/communautés) qui se partagent votre compte ou que vous avez été autorisé à gérer." -#: src/Module/User/Delegation.php:188 +#: src/Module/User/Delegation.php:174 msgid "Select an identity to manage: " msgstr "Choisir une identité à gérer: " -#: src/Module/User/Import.php:104 +#: src/Module/User/Import.php:90 msgid "User imports on closed servers can only be done by an administrator." msgstr "L'import d'utilisateur sur un serveur fermé ne peut être effectué que par un administrateur." -#: src/Module/User/Import.php:120 +#: src/Module/User/Import.php:106 msgid "Move account" msgstr "Migrer le compte" -#: src/Module/User/Import.php:121 +#: src/Module/User/Import.php:107 msgid "You can import an account from another Friendica server." msgstr "Vous pouvez importer un compte d'un autre serveur Friendica." -#: src/Module/User/Import.php:122 +#: src/Module/User/Import.php:108 msgid "" "You need to export your account from the old server and upload it here. We " "will recreate your old account here with all your contacts. We will try also" " to inform your friends that you moved here." msgstr "Vous devez exporter votre compte à partir de l'ancien serveur et le téléverser ici. Nous recréerons votre ancien compte ici avec tous vos contacts. Nous tenterons également d'informer vos contacts que vous avez déménagé ici." -#: src/Module/User/Import.php:123 +#: src/Module/User/Import.php:109 msgid "" "This feature is experimental. We can't import contacts from the OStatus " "network (GNU Social/Statusnet) or from Diaspora" msgstr "Cette fonctionalité est expérimentale. Il n'est pas possible d'importer des contacts depuis le réseau OStatus (GNU Social/Statusnet) ou depuis Diaspora." -#: src/Module/User/Import.php:124 +#: src/Module/User/Import.php:110 msgid "Account file" msgstr "Fichier du compte" -#: src/Module/User/Import.php:124 +#: src/Module/User/Import.php:110 msgid "" "To export your account, go to \"Settings->Export your personal data\" and " "select \"Export account\"" msgstr "Pour exporter votre compte, allez dans \"Paramètres> Exporter vos données personnelles\" et sélectionnez \"exportation de compte\"" -#: src/Module/User/Import.php:218 +#: src/Module/User/Import.php:204 msgid "Error decoding account file" msgstr "Une erreur a été détecté en décodant un fichier utilisateur" -#: src/Module/User/Import.php:223 +#: src/Module/User/Import.php:209 msgid "Error! No version data in file! This is not a Friendica account file?" msgstr "Erreur ! Pas de ficher de version existant ! Êtes vous sur un compte Friendica ?" -#: src/Module/User/Import.php:231 +#: src/Module/User/Import.php:217 #, php-format msgid "User '%s' already exists on this server!" msgstr "L'utilisateur '%s' existe déjà sur ce serveur!" -#: src/Module/User/Import.php:268 +#: src/Module/User/Import.php:254 msgid "User creation error" msgstr "Erreur de création d'utilisateur" -#: src/Module/User/Import.php:317 +#: src/Module/User/Import.php:303 #, php-format msgid "%d contact not imported" msgid_plural "%d contacts not imported" @@ -11738,23 +11708,23 @@ msgstr[0] "%d contacts non importés" msgstr[1] "%d contacts non importés" msgstr[2] "%d contacts non importés" -#: src/Module/User/Import.php:366 +#: src/Module/User/Import.php:352 msgid "User profile creation error" msgstr "Erreur de création du profil utilisateur" -#: src/Module/User/Import.php:417 +#: src/Module/User/Import.php:403 msgid "Done. You can now login with your username and password" msgstr "Action réalisée. Vous pouvez désormais vous connecter avec votre nom d'utilisateur et votre mot de passe" -#: src/Module/Welcome.php:44 +#: src/Module/Welcome.php:30 msgid "Welcome to Friendica" msgstr "Bienvenue sur Friendica" -#: src/Module/Welcome.php:45 +#: src/Module/Welcome.php:31 msgid "New Member Checklist" msgstr "Checklist du nouvel utilisateur" -#: src/Module/Welcome.php:46 +#: src/Module/Welcome.php:32 msgid "" "We would like to offer some tips and links to help make your experience " "enjoyable. Click any item to visit the relevant page. A link to this page " @@ -11762,33 +11732,33 @@ msgid "" "registration and then will quietly disappear." msgstr "Nous souhaiterions vous donner quelques astuces et ressources pour rendre votre expérience la plus agréable possible. Cliquez sur n'importe lequel de ces éléments pour visiter la page correspondante. Un lien vers cette page restera visible sur votre page d'accueil pendant les deux semaines qui suivent votre inscription initiale, puis disparaîtra silencieusement." -#: src/Module/Welcome.php:48 +#: src/Module/Welcome.php:34 msgid "Getting Started" msgstr "Bien démarrer" -#: src/Module/Welcome.php:49 +#: src/Module/Welcome.php:35 msgid "Friendica Walk-Through" msgstr "Friendica pas-à-pas" -#: src/Module/Welcome.php:50 +#: src/Module/Welcome.php:36 msgid "" "On your Quick Start page - find a brief introduction to your " "profile and network tabs, make some new connections, and find some groups to" " join." msgstr "Sur votre page d'accueil, dans Conseils aux nouveaux venus - vous trouverez une rapide introduction aux onglets Profil et Réseau, pourrez vous connecter à Facebook, établir de nouvelles relations, et choisir des groupes à rejoindre." -#: src/Module/Welcome.php:53 +#: src/Module/Welcome.php:39 msgid "Go to Your Settings" msgstr "Éditer vos Réglages" -#: src/Module/Welcome.php:54 +#: src/Module/Welcome.php:40 msgid "" "On your Settings page - change your initial password. Also make a " "note of your Identity Address. This looks just like an email address - and " "will be useful in making friends on the free social web." msgstr "Sur la page des Réglages - changez votre mot de passe initial. Notez bien votre Identité. Elle ressemble à une adresse de courriel - et vous sera utile pour vous faire des amis dans le web social libre." -#: src/Module/Welcome.php:55 +#: src/Module/Welcome.php:41 msgid "" "Review the other settings, particularly the privacy settings. An unpublished" " directory listing is like having an unlisted phone number. In general, you " @@ -11796,77 +11766,77 @@ msgid "" "potential friends know exactly how to find you." msgstr "Vérifiez les autres réglages, tout particulièrement ceux liés à la vie privée. Un profil non listé, c'est un peu comme un numéro sur liste rouge. En général, vous devriez probablement publier votre profil - à moins que tous vos amis (potentiels) sachent déjà comment vous trouver." -#: src/Module/Welcome.php:59 +#: src/Module/Welcome.php:45 msgid "" "Upload a profile photo if you have not done so already. Studies have shown " "that people with real photos of themselves are ten times more likely to make" " friends than people who do not." msgstr "Téléversez (envoyez) une photo de profil si vous n'en avez pas déjà une. Les études montrent que les gens qui affichent de vraies photos d'eux sont dix fois plus susceptibles de se faire des amis." -#: src/Module/Welcome.php:60 +#: src/Module/Welcome.php:46 msgid "Edit Your Profile" msgstr "Éditer votre Profil" -#: src/Module/Welcome.php:61 +#: src/Module/Welcome.php:47 msgid "" "Edit your default profile to your liking. Review the " "settings for hiding your list of friends and hiding the profile from unknown" " visitors." msgstr "Éditez votre profil par défaut à votre convenance. Vérifiez les réglages concernant la visibilité de votre liste d'amis par les visiteurs inconnus." -#: src/Module/Welcome.php:62 +#: src/Module/Welcome.php:48 msgid "Profile Keywords" msgstr "Mots-clés du profil" -#: src/Module/Welcome.php:63 +#: src/Module/Welcome.php:49 msgid "" "Set some public keywords for your profile which describe your interests. We " "may be able to find other people with similar interests and suggest " "friendships." msgstr "Choisissez quelques mots-clé publics pour votre profil qui décrivent vos intérêts. Nous pourrons peut-être trouver d'autres personnes aux intérêts similaires et suggérer des abonnements." -#: src/Module/Welcome.php:65 +#: src/Module/Welcome.php:51 msgid "Connecting" msgstr "Connexions" -#: src/Module/Welcome.php:67 +#: src/Module/Welcome.php:53 msgid "Importing Emails" msgstr "Importer courriels" -#: src/Module/Welcome.php:68 +#: src/Module/Welcome.php:54 msgid "" "Enter your email access information on your Connector Settings page if you " "wish to import and interact with friends or mailing lists from your email " "INBOX" msgstr "Entrez vos paramètres de courriel dans les Réglages des connecteurs si vous souhaitez importer et interagir avec des amis ou des listes venant de votre Boîte de Réception." -#: src/Module/Welcome.php:69 +#: src/Module/Welcome.php:55 msgid "Go to Your Contacts Page" msgstr "Consulter vos Contacts" -#: src/Module/Welcome.php:70 +#: src/Module/Welcome.php:56 msgid "" "Your Contacts page is your gateway to managing friendships and connecting " "with friends on other networks. Typically you enter their address or site " "URL in the Add New Contact dialog." msgstr "Votre page Contacts est le point d'entrée vers la gestion de vos contacts et l'abonnement à des contacts sur d'autres serveurs. Vous pourrez y saisir leur adresse d'Identité ou l'URL de leur site dans le formulaire Ajouter un nouveau contact." -#: src/Module/Welcome.php:71 +#: src/Module/Welcome.php:57 msgid "Go to Your Site's Directory" msgstr "Consulter l'Annuaire de votre Site" -#: src/Module/Welcome.php:72 +#: src/Module/Welcome.php:58 msgid "" "The Directory page lets you find other people in this network or other " "federated sites. Look for a Connect or Follow link on " "their profile page. Provide your own Identity Address if requested." msgstr "La page Annuaire vous permet de trouver d'autres personnes au sein de ce réseaux ou parmi d'autres sites fédérés. Cherchez un lien Relier ou Suivre sur leur profil. Vous pourrez avoir besoin d'indiquer votre adresse d'identité." -#: src/Module/Welcome.php:73 +#: src/Module/Welcome.php:59 msgid "Finding New People" msgstr "Trouver de nouvelles personnes" -#: src/Module/Welcome.php:74 +#: src/Module/Welcome.php:60 msgid "" "On the side panel of the Contacts page are several tools to find new " "friends. We can match people by interest, look up people by name or " @@ -11875,412 +11845,408 @@ msgid "" "hours." msgstr "Sur le panneau latéral de la page Contacts, il y a plusieurs moyens de trouver de nouveaux contacts. Nous pouvons mettre les gens en relation selon leurs intérêts, rechercher des amis par nom ou intérêt, et fournir des suggestions en fonction de la topologie du réseau. Sur un site tout neuf, les suggestions d'abonnement devraient commencer à apparaître au bout de 24 heures." -#: src/Module/Welcome.php:77 +#: src/Module/Welcome.php:63 msgid "Add Your Contacts To Circle" msgstr "Ajouter vos contacts à des cercles" -#: src/Module/Welcome.php:78 +#: src/Module/Welcome.php:64 msgid "" "Once you have made some friends, organize them into private conversation " "circles from the sidebar of your Contacts page and then you can interact " "with each circle privately on your Network page." msgstr "Une fois que vous vous êtes fait des amis, organisez-les en cercles de conversation privés dans la barre latérale de votre page Contacts. Vous pouvez ensuite interagir avec chaque cercle en privé sur votre page Réseau." -#: src/Module/Welcome.php:80 +#: src/Module/Welcome.php:66 msgid "Why Aren't My Posts Public?" msgstr "Pourquoi mes éléments ne sont pas publics ?" -#: src/Module/Welcome.php:81 +#: src/Module/Welcome.php:67 msgid "" "Friendica respects your privacy. By default, your posts will only show up to" " people you've added as friends. For more information, see the help section " "from the link above." msgstr "Friendica respecte votre vie privée. Par défaut, toutes vos publications seront seulement montrés à vos amis. Pour plus d'information, consultez la section \"aide\" du lien ci-dessus." -#: src/Module/Welcome.php:83 +#: src/Module/Welcome.php:69 msgid "Getting Help" msgstr "Obtenir de l'aide" -#: src/Module/Welcome.php:84 +#: src/Module/Welcome.php:70 msgid "Go to the Help Section" msgstr "Aller à la section Aide" -#: src/Module/Welcome.php:85 +#: src/Module/Welcome.php:71 msgid "" "Our help pages may be consulted for detail on other program" " features and resources." msgstr "Nos pages d'aide peuvent être consultées pour davantage de détails sur les fonctionnalités ou les ressources." -#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:161 +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:147 msgid "{0} wants to follow you" msgstr "{0} souhaite vous suivre" -#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:163 +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:149 msgid "{0} has started following you" msgstr "{0} a commencé à vous suivre" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:96 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:82 #, php-format msgid "%s liked %s's post" msgstr "%s a aimé la publication de %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:108 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:94 #, php-format msgid "%s disliked %s's post" msgstr "%s n'a pas aimé la publication de %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:120 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:106 #, php-format msgid "%s is attending %s's event" msgstr "%s participe à l'évènement de %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:132 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:118 #, php-format msgid "%s is not attending %s's event" msgstr "%s ne participe pas à l'évènement de %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:144 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:130 #, php-format msgid "%s may attending %s's event" msgstr "%s participe peut-être à l'évènement de %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:174 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:160 #, php-format msgid "%s is now friends with %s" msgstr "%s est désormais ami(e) avec %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:341 -#: src/Navigation/Notifications/Factory/FormattedNotify.php:379 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:327 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:365 #, php-format msgid "%s commented on %s's post" msgstr "%s a commenté la publication de %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:378 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:364 #, php-format msgid "%s created a new post" msgstr "%s a créé une nouvelle publication" -#: src/Navigation/Notifications/Factory/Introduction.php:132 +#: src/Navigation/Notifications/Factory/Introduction.php:118 msgid "Friend Suggestion" msgstr "Suggestion d'abonnement" -#: src/Navigation/Notifications/Factory/Introduction.php:158 +#: src/Navigation/Notifications/Factory/Introduction.php:144 msgid "Friend/Connect Request" msgstr "Demande de connexion/relation" -#: src/Navigation/Notifications/Factory/Introduction.php:158 -msgid "New Follower" -msgstr "Nouvel abonné" - -#: src/Navigation/Notifications/Factory/Notification.php:134 +#: src/Navigation/Notifications/Factory/Notification.php:120 #, php-format msgid "%1$s wants to follow you" msgstr "%1$s veut s'abonner à votre contenu" -#: src/Navigation/Notifications/Factory/Notification.php:136 +#: src/Navigation/Notifications/Factory/Notification.php:122 #, php-format msgid "%1$s has started following you" msgstr "%1$s a commencé à vous suivre" -#: src/Navigation/Notifications/Factory/Notification.php:208 +#: src/Navigation/Notifications/Factory/Notification.php:194 #, php-format msgid "%1$s liked your comment on %2$s" msgstr "%1$s a aimé votre commentaire sur %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:211 +#: src/Navigation/Notifications/Factory/Notification.php:197 #, php-format msgid "%1$s liked your post %2$s" msgstr "%1$s a aimé votre publication %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:218 +#: src/Navigation/Notifications/Factory/Notification.php:204 #, php-format msgid "%1$s disliked your comment on %2$s" msgstr "%1$s n'a pas aimé votre commentaire sur %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:221 +#: src/Navigation/Notifications/Factory/Notification.php:207 #, php-format msgid "%1$s disliked your post %2$s" msgstr "%1$s n'a pas aimé votre publication %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:228 +#: src/Navigation/Notifications/Factory/Notification.php:214 #, php-format msgid "%1$s shared your comment %2$s" msgstr "%1$s a partagé votre commentaire %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:231 -#: src/Navigation/Notifications/Factory/Notification.php:316 +#: src/Navigation/Notifications/Factory/Notification.php:217 +#: src/Navigation/Notifications/Factory/Notification.php:302 #, php-format msgid "%1$s shared your post %2$s" msgstr "%1$s a partagé votre publication %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:235 -#: src/Navigation/Notifications/Factory/Notification.php:305 +#: src/Navigation/Notifications/Factory/Notification.php:221 +#: src/Navigation/Notifications/Factory/Notification.php:291 #, php-format msgid "%1$s shared the post %2$s from %3$s" msgstr "%1$s a partagé la publication %2$s de %3$s" -#: src/Navigation/Notifications/Factory/Notification.php:237 -#: src/Navigation/Notifications/Factory/Notification.php:307 +#: src/Navigation/Notifications/Factory/Notification.php:223 +#: src/Navigation/Notifications/Factory/Notification.php:293 #, php-format msgid "%1$s shared a post from %3$s" msgstr "%1$s a partagé une publication de %3$s" -#: src/Navigation/Notifications/Factory/Notification.php:239 -#: src/Navigation/Notifications/Factory/Notification.php:309 +#: src/Navigation/Notifications/Factory/Notification.php:225 +#: src/Navigation/Notifications/Factory/Notification.php:295 #, php-format msgid "%1$s shared the post %2$s" msgstr "%1$s a partagé la publication %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:241 -#: src/Navigation/Notifications/Factory/Notification.php:311 +#: src/Navigation/Notifications/Factory/Notification.php:227 +#: src/Navigation/Notifications/Factory/Notification.php:297 #, php-format msgid "%1$s shared a post" msgstr "%1$s a partagé une publication" -#: src/Navigation/Notifications/Factory/Notification.php:249 +#: src/Navigation/Notifications/Factory/Notification.php:235 #, php-format msgid "%1$s wants to attend your event %2$s" msgstr "%1$s souhaite participer à votre évènement %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:256 +#: src/Navigation/Notifications/Factory/Notification.php:242 #, php-format msgid "%1$s does not want to attend your event %2$s" msgstr "%1$s ne souhaite pas participer à votre évènement %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:263 +#: src/Navigation/Notifications/Factory/Notification.php:249 #, php-format msgid "%1$s maybe wants to attend your event %2$s" msgstr "%1$s souhaite peut-être participer à votre évènement %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:270 +#: src/Navigation/Notifications/Factory/Notification.php:256 #, php-format msgid "%1$s tagged you on %2$s" msgstr "%1$s vous a mentionné(e) dans %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:274 +#: src/Navigation/Notifications/Factory/Notification.php:260 #, php-format msgid "%1$s replied to you on %2$s" msgstr "%1$s vous a répondu dans %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:278 +#: src/Navigation/Notifications/Factory/Notification.php:264 #, php-format msgid "%1$s commented in your thread %2$s" msgstr "%1$s a commenté dans votre conversation %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:282 +#: src/Navigation/Notifications/Factory/Notification.php:268 #, php-format msgid "%1$s commented on your comment %2$s" msgstr "%1$s a répondu à votre commentaire %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:289 +#: src/Navigation/Notifications/Factory/Notification.php:275 #, php-format msgid "%1$s commented in their thread %2$s" msgstr "%1$s a commenté dans sa conversation %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:291 +#: src/Navigation/Notifications/Factory/Notification.php:277 #, php-format msgid "%1$s commented in their thread" msgstr "%1$s a commenté dans sa conversation" -#: src/Navigation/Notifications/Factory/Notification.php:293 +#: src/Navigation/Notifications/Factory/Notification.php:279 #, php-format msgid "%1$s commented in the thread %2$s from %3$s" msgstr "%1$s a commenté dans la conversation %2$s de %3$s" -#: src/Navigation/Notifications/Factory/Notification.php:295 +#: src/Navigation/Notifications/Factory/Notification.php:281 #, php-format msgid "%1$s commented in the thread from %3$s" msgstr "%1$s a commenté dans la conversation de %3$s" -#: src/Navigation/Notifications/Factory/Notification.php:300 +#: src/Navigation/Notifications/Factory/Notification.php:286 #, php-format msgid "%1$s commented on your thread %2$s" msgstr "%1$s a commenté dans votre conversation %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:225 -#: src/Navigation/Notifications/Repository/Notify.php:754 +#: src/Navigation/Notifications/Repository/Notify.php:211 +#: src/Navigation/Notifications/Repository/Notify.php:740 msgid "[Friendica:Notify]" msgstr "[Friendica:Notification]" -#: src/Navigation/Notifications/Repository/Notify.php:293 +#: src/Navigation/Notifications/Repository/Notify.php:279 #, php-format msgid "%s New mail received at %s" msgstr "%s Nouveau message privé reçu sur %s" -#: src/Navigation/Notifications/Repository/Notify.php:295 +#: src/Navigation/Notifications/Repository/Notify.php:281 #, php-format msgid "%1$s sent you a new private message at %2$s." msgstr "%1$s vous a envoyé un nouveau message privé sur %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:296 +#: src/Navigation/Notifications/Repository/Notify.php:282 msgid "a private message" msgstr "un message privé" -#: src/Navigation/Notifications/Repository/Notify.php:296 +#: src/Navigation/Notifications/Repository/Notify.php:282 #, php-format msgid "%1$s sent you %2$s." msgstr "%1$s vous a envoyé %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:298 +#: src/Navigation/Notifications/Repository/Notify.php:284 #, php-format msgid "Please visit %s to view and/or reply to your private messages." msgstr "Merci de visiter %s pour voir vos messages privés et/ou y répondre." -#: src/Navigation/Notifications/Repository/Notify.php:328 +#: src/Navigation/Notifications/Repository/Notify.php:314 #, php-format msgid "%1$s commented on %2$s's %3$s %4$s" msgstr "%1$s a commenté sur %3$s de %2$s %4$s" -#: src/Navigation/Notifications/Repository/Notify.php:333 +#: src/Navigation/Notifications/Repository/Notify.php:319 #, php-format msgid "%1$s commented on your %2$s %3$s" msgstr "%1$s a commenté sur votre %2$s %3$s" -#: src/Navigation/Notifications/Repository/Notify.php:337 +#: src/Navigation/Notifications/Repository/Notify.php:323 #, php-format msgid "%1$s commented on their %2$s %3$s" msgstr "%1$s a commenté sur son %2$s %3$s" -#: src/Navigation/Notifications/Repository/Notify.php:341 -#: src/Navigation/Notifications/Repository/Notify.php:788 +#: src/Navigation/Notifications/Repository/Notify.php:327 +#: src/Navigation/Notifications/Repository/Notify.php:774 #, php-format msgid "%1$s Comment to conversation #%2$d by %3$s" msgstr "%1$s Nouveau commentaire dans la conversation #%2$d par %3$s" -#: src/Navigation/Notifications/Repository/Notify.php:343 +#: src/Navigation/Notifications/Repository/Notify.php:329 #, php-format msgid "%s commented on an item/conversation you have been following." msgstr "%s a commenté un élément que vous suivez." -#: src/Navigation/Notifications/Repository/Notify.php:347 -#: src/Navigation/Notifications/Repository/Notify.php:362 -#: src/Navigation/Notifications/Repository/Notify.php:814 +#: src/Navigation/Notifications/Repository/Notify.php:333 +#: src/Navigation/Notifications/Repository/Notify.php:348 +#: src/Navigation/Notifications/Repository/Notify.php:800 #, php-format msgid "Please visit %s to view and/or reply to the conversation." msgstr "Merci de visiter %s pour voir la conversation et/ou y répondre." -#: src/Navigation/Notifications/Repository/Notify.php:354 +#: src/Navigation/Notifications/Repository/Notify.php:340 #, php-format msgid "%s %s posted to your profile wall" msgstr "%s %s a posté sur votre mur" -#: src/Navigation/Notifications/Repository/Notify.php:356 +#: src/Navigation/Notifications/Repository/Notify.php:342 #, php-format msgid "%1$s posted to your profile wall at %2$s" msgstr "%1$s a publié sur votre mur à %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:357 +#: src/Navigation/Notifications/Repository/Notify.php:343 #, php-format msgid "%1$s posted to [url=%2$s]your wall[/url]" msgstr "%1$s a posté sur [url=%2$s]votre mur[/url]" -#: src/Navigation/Notifications/Repository/Notify.php:370 +#: src/Navigation/Notifications/Repository/Notify.php:356 #, php-format msgid "%s Introduction received" msgstr "%s Demande de mise en contact reçue" -#: src/Navigation/Notifications/Repository/Notify.php:372 +#: src/Navigation/Notifications/Repository/Notify.php:358 #, php-format msgid "You've received an introduction from '%1$s' at %2$s" msgstr "Vous avez reçu une introduction de '%1$s' sur %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:373 +#: src/Navigation/Notifications/Repository/Notify.php:359 #, php-format msgid "You've received [url=%1$s]an introduction[/url] from %2$s." msgstr "Vous avez reçu [url=%1$s]une introduction[/url] de %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:378 -#: src/Navigation/Notifications/Repository/Notify.php:424 +#: src/Navigation/Notifications/Repository/Notify.php:364 +#: src/Navigation/Notifications/Repository/Notify.php:410 #, php-format msgid "You may visit their profile at %s" msgstr "Vous pouvez visiter son profil sur %s" -#: src/Navigation/Notifications/Repository/Notify.php:380 +#: src/Navigation/Notifications/Repository/Notify.php:366 #, php-format msgid "Please visit %s to approve or reject the introduction." msgstr "Merci de visiter %s pour approuver ou rejeter l'introduction." -#: src/Navigation/Notifications/Repository/Notify.php:387 +#: src/Navigation/Notifications/Repository/Notify.php:373 #, php-format msgid "%s A new person is sharing with you" msgstr "%s Quelqu'un a commencé à partager avec vous" -#: src/Navigation/Notifications/Repository/Notify.php:389 -#: src/Navigation/Notifications/Repository/Notify.php:390 +#: src/Navigation/Notifications/Repository/Notify.php:375 +#: src/Navigation/Notifications/Repository/Notify.php:376 #, php-format msgid "%1$s is sharing with you at %2$s" msgstr "%1$s partage avec vous sur %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:397 +#: src/Navigation/Notifications/Repository/Notify.php:383 #, php-format msgid "%s You have a new follower" msgstr "%s Vous avez un nouvel abonné" -#: src/Navigation/Notifications/Repository/Notify.php:399 -#: src/Navigation/Notifications/Repository/Notify.php:400 +#: src/Navigation/Notifications/Repository/Notify.php:385 +#: src/Navigation/Notifications/Repository/Notify.php:386 #, php-format msgid "You have a new follower at %2$s : %1$s" msgstr "Vous avez un nouvel abonné à %2$s : %1$s" -#: src/Navigation/Notifications/Repository/Notify.php:413 +#: src/Navigation/Notifications/Repository/Notify.php:399 #, php-format msgid "%s Friend suggestion received" msgstr "%s Suggestion de mise en contact reçue" -#: src/Navigation/Notifications/Repository/Notify.php:415 +#: src/Navigation/Notifications/Repository/Notify.php:401 #, php-format msgid "You've received a friend suggestion from '%1$s' at %2$s" msgstr "Vous avez reçu une suggestion de '%1$s' sur %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:416 +#: src/Navigation/Notifications/Repository/Notify.php:402 #, php-format msgid "" "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." msgstr "Vous avez reçu [url=%1$s]une suggestion[/url] de %3$s pour %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:422 +#: src/Navigation/Notifications/Repository/Notify.php:408 msgid "Name:" msgstr "Nom :" -#: src/Navigation/Notifications/Repository/Notify.php:423 +#: src/Navigation/Notifications/Repository/Notify.php:409 msgid "Photo:" msgstr "Photo :" -#: src/Navigation/Notifications/Repository/Notify.php:426 +#: src/Navigation/Notifications/Repository/Notify.php:412 #, php-format msgid "Please visit %s to approve or reject the suggestion." msgstr "Merci de visiter %s pour approuver ou rejeter la suggestion." -#: src/Navigation/Notifications/Repository/Notify.php:434 -#: src/Navigation/Notifications/Repository/Notify.php:449 +#: src/Navigation/Notifications/Repository/Notify.php:420 +#: src/Navigation/Notifications/Repository/Notify.php:435 #, php-format msgid "%s Connection accepted" msgstr "%s Demande d'abonnement acceptée" -#: src/Navigation/Notifications/Repository/Notify.php:436 -#: src/Navigation/Notifications/Repository/Notify.php:451 +#: src/Navigation/Notifications/Repository/Notify.php:422 +#: src/Navigation/Notifications/Repository/Notify.php:437 #, php-format msgid "'%1$s' has accepted your connection request at %2$s" msgstr "'%1$s' a accepté votre demande de connexion à %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:437 -#: src/Navigation/Notifications/Repository/Notify.php:452 +#: src/Navigation/Notifications/Repository/Notify.php:423 +#: src/Navigation/Notifications/Repository/Notify.php:438 #, php-format msgid "%2$s has accepted your [url=%1$s]connection request[/url]." msgstr "%2$s a accepté votre [url=%1$s]demande de connexion[/url]." -#: src/Navigation/Notifications/Repository/Notify.php:442 +#: src/Navigation/Notifications/Repository/Notify.php:428 msgid "" "You are now mutual friends and may exchange status updates, photos, and " "email without restriction." msgstr "Vous êtes désormais mutuellement amis, et pouvez échanger des mises à jour d'état, des photos, et des courriels sans restriction." -#: src/Navigation/Notifications/Repository/Notify.php:444 +#: src/Navigation/Notifications/Repository/Notify.php:430 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "Veuillez visiter %s si vous souhaitez modifier cette relation." -#: src/Navigation/Notifications/Repository/Notify.php:457 +#: src/Navigation/Notifications/Repository/Notify.php:443 #, php-format msgid "" "'%1$s' has chosen to accept you a fan, which restricts some forms of " @@ -12289,34 +12255,34 @@ msgid "" "automatically." msgstr "'%1$s' a choisi de vous accepter comme fan ce qui empêche certains canaux de communication tel les messages privés et certaines interactions de profil. Ceci est une page de célébrité ou de communauté, ces paramètres ont été appliqués automatiquement." -#: src/Navigation/Notifications/Repository/Notify.php:459 +#: src/Navigation/Notifications/Repository/Notify.php:445 #, php-format msgid "" "'%1$s' may choose to extend this into a two-way or more permissive " "relationship in the future." msgstr "%1$s peut choisir à l'avenir de rendre cette relation réciproque ou au moins plus permissive." -#: src/Navigation/Notifications/Repository/Notify.php:461 +#: src/Navigation/Notifications/Repository/Notify.php:447 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "Veuillez visiter %s si vous souhaitez modifier cette relation." -#: src/Navigation/Notifications/Repository/Notify.php:471 +#: src/Navigation/Notifications/Repository/Notify.php:457 msgid "registration request" msgstr "demande d'inscription" -#: src/Navigation/Notifications/Repository/Notify.php:473 +#: src/Navigation/Notifications/Repository/Notify.php:459 #, php-format msgid "You've received a registration request from '%1$s' at %2$s" msgstr "Vous avez reçu une demande d'inscription de %1$s sur %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:474 +#: src/Navigation/Notifications/Repository/Notify.php:460 #, php-format msgid "You've received a [url=%1$s]registration request[/url] from %2$s." msgstr "%2$s vous a envoyé une [url=%1$s]demande de création de compte[/url]." -#: src/Navigation/Notifications/Repository/Notify.php:479 -#: src/Navigation/Notifications/Repository/Notify.php:500 +#: src/Navigation/Notifications/Repository/Notify.php:465 +#: src/Navigation/Notifications/Repository/Notify.php:486 #, php-format msgid "" "Display Name:\t%s\n" @@ -12324,288 +12290,288 @@ msgid "" "Login Name:\t%s (%s)" msgstr "Nom d'Affichage :\t%s\nEmplacement :\t%s\nNom de connexion :\t%s (%s)" -#: src/Navigation/Notifications/Repository/Notify.php:485 +#: src/Navigation/Notifications/Repository/Notify.php:471 #, php-format msgid "Please visit %s to approve or reject the request." msgstr "Veuillez visiter %s pour approuver ou rejeter la demande." -#: src/Navigation/Notifications/Repository/Notify.php:492 +#: src/Navigation/Notifications/Repository/Notify.php:478 msgid "new registration" msgstr "Nouvelle inscription" -#: src/Navigation/Notifications/Repository/Notify.php:494 +#: src/Navigation/Notifications/Repository/Notify.php:480 #, php-format msgid "You've received a new registration from '%1$s' at %2$s" msgstr "Vous avez reçu une nouvelle inscription de '%1$s' à %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:495 +#: src/Navigation/Notifications/Repository/Notify.php:481 #, php-format msgid "You've received a [url=%1$s]new registration[/url] from %2$s." msgstr "Vous avez reçu une [url=%1$s]nouvelle inscription[/url] de %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:506 +#: src/Navigation/Notifications/Repository/Notify.php:492 #, php-format msgid "Please visit %s to have a look at the new registration." msgstr "Merci de visiter %s pour consulter la nouvelle inscription." -#: src/Navigation/Notifications/Repository/Notify.php:782 +#: src/Navigation/Notifications/Repository/Notify.php:768 #, php-format msgid "%s %s tagged you" msgstr "%s%s vous a mentionné(e)" -#: src/Navigation/Notifications/Repository/Notify.php:785 +#: src/Navigation/Notifications/Repository/Notify.php:771 #, php-format msgid "%s %s shared a new post" msgstr "%s %s a partagé une nouvelle publication" -#: src/Navigation/Notifications/Repository/Notify.php:793 +#: src/Navigation/Notifications/Repository/Notify.php:779 #, php-format msgid "%1$s %2$s liked your post #%3$d" msgstr "%1$s %2$s a aimé votre publication #%3$d" -#: src/Navigation/Notifications/Repository/Notify.php:796 +#: src/Navigation/Notifications/Repository/Notify.php:782 #, php-format msgid "%1$s %2$s liked your comment on #%3$d" msgstr "%1$s %2$s a aimé votre commentaire sur #%3$d" -#: src/Object/EMail/ItemCCEMail.php:42 +#: src/Object/EMail/ItemCCEMail.php:28 #, php-format msgid "" "This message was sent to you by %s, a member of the Friendica social " "network." msgstr "Ce message vous a été envoyé par %s, membre du réseau social Friendica." -#: src/Object/EMail/ItemCCEMail.php:44 +#: src/Object/EMail/ItemCCEMail.php:30 #, php-format msgid "You may visit them online at %s" msgstr "Vous pouvez leur rendre visite sur %s" -#: src/Object/EMail/ItemCCEMail.php:45 +#: src/Object/EMail/ItemCCEMail.php:31 msgid "" "Please contact the sender by replying to this post if you do not wish to " "receive these messages." msgstr "Merci de contacter l’émetteur en répondant à cette publication si vous ne souhaitez pas recevoir ces messages." -#: src/Object/EMail/ItemCCEMail.php:49 +#: src/Object/EMail/ItemCCEMail.php:35 #, php-format msgid "%s posted an update." msgstr "%s a publié une mise à jour." -#: src/Object/Post.php:138 +#: src/Object/Post.php:124 msgid "Private Message" msgstr "Message privé" -#: src/Object/Post.php:142 +#: src/Object/Post.php:128 msgid "Public Message" msgstr "Message Public" -#: src/Object/Post.php:146 +#: src/Object/Post.php:132 msgid "Unlisted Message" msgstr "Message non référencé" -#: src/Object/Post.php:182 +#: src/Object/Post.php:168 msgid "This entry was edited" msgstr "Cette entrée a été éditée" -#: src/Object/Post.php:210 +#: src/Object/Post.php:196 msgid "Connector Message" msgstr "Message du connecteur" -#: src/Object/Post.php:239 src/Object/Post.php:241 +#: src/Object/Post.php:225 src/Object/Post.php:227 msgid "Edit" msgstr "Éditer" -#: src/Object/Post.php:275 +#: src/Object/Post.php:261 msgid "Delete globally" msgstr "Effacer globalement" -#: src/Object/Post.php:275 +#: src/Object/Post.php:261 msgid "Remove locally" msgstr "Effacer localement" -#: src/Object/Post.php:282 +#: src/Object/Post.php:268 #, php-format msgid "Block %s" msgstr "Bloquer %s" -#: src/Object/Post.php:287 +#: src/Object/Post.php:273 #, php-format msgid "Ignore %s" msgstr "Ignorer %s" -#: src/Object/Post.php:292 +#: src/Object/Post.php:278 #, php-format msgid "Collapse %s" msgstr "Réduire %s" -#: src/Object/Post.php:296 +#: src/Object/Post.php:282 msgid "Report post" msgstr "Signaler la publication" -#: src/Object/Post.php:307 +#: src/Object/Post.php:293 msgid "Save to folder" msgstr "Sauvegarder dans le dossier" -#: src/Object/Post.php:347 +#: src/Object/Post.php:333 msgid "I will attend" msgstr "Je vais participer" -#: src/Object/Post.php:347 +#: src/Object/Post.php:333 msgid "I will not attend" msgstr "Je ne vais pas participer" -#: src/Object/Post.php:347 +#: src/Object/Post.php:333 msgid "I might attend" msgstr "Je vais peut-être participer" -#: src/Object/Post.php:394 +#: src/Object/Post.php:380 msgid "Ignore thread" msgstr "Ignorer cette conversation" -#: src/Object/Post.php:395 +#: src/Object/Post.php:381 msgid "Unignore thread" msgstr "Ne pas ignorer cette conversation" -#: src/Object/Post.php:396 +#: src/Object/Post.php:382 msgid "Toggle ignore status" msgstr "Commuter le statut de suivi" -#: src/Object/Post.php:406 +#: src/Object/Post.php:392 msgid "Add star" msgstr "Ajouter une étoile" -#: src/Object/Post.php:407 +#: src/Object/Post.php:393 msgid "Remove star" msgstr "Retirer l'étoile" -#: src/Object/Post.php:408 +#: src/Object/Post.php:394 msgid "Toggle star status" msgstr "Commuter l'état de l'étoile" -#: src/Object/Post.php:419 +#: src/Object/Post.php:405 msgid "Pin" msgstr "Épingler" -#: src/Object/Post.php:420 +#: src/Object/Post.php:406 msgid "Unpin" msgstr "Désépingler" -#: src/Object/Post.php:421 +#: src/Object/Post.php:407 msgid "Toggle pin status" msgstr "Commuter le statut de l'épingle" -#: src/Object/Post.php:424 +#: src/Object/Post.php:410 msgid "Pinned" msgstr "Épinglé" -#: src/Object/Post.php:429 +#: src/Object/Post.php:415 msgid "Add tag" msgstr "Ajouter un tag" -#: src/Object/Post.php:444 +#: src/Object/Post.php:430 msgid "Quote share this" msgstr "Citer et repartager ceci" -#: src/Object/Post.php:444 +#: src/Object/Post.php:430 msgid "Quote Share" msgstr "Citer et repartager" -#: src/Object/Post.php:447 +#: src/Object/Post.php:433 msgid "Reshare this" msgstr "Partager ceci" -#: src/Object/Post.php:447 +#: src/Object/Post.php:433 msgid "Reshare" msgstr "Partager" -#: src/Object/Post.php:448 +#: src/Object/Post.php:434 msgid "Cancel your Reshare" msgstr "Annuler votre repartage" -#: src/Object/Post.php:448 +#: src/Object/Post.php:434 msgid "Unshare" msgstr "Ne plus partager" -#: src/Object/Post.php:492 +#: src/Object/Post.php:478 #, php-format msgid "%s (Received %s)" msgstr "%s ( Reçu %s)" -#: src/Object/Post.php:498 +#: src/Object/Post.php:484 msgid "Comment this item on your system" msgstr "Commenter ce sujet sur votre instance" -#: src/Object/Post.php:498 +#: src/Object/Post.php:484 msgid "Remote comment" msgstr "Commentaire distant" -#: src/Object/Post.php:520 +#: src/Object/Post.php:506 msgid "Share via ..." msgstr "Partager par..." -#: src/Object/Post.php:520 +#: src/Object/Post.php:506 msgid "Share via external services" msgstr "Partager par des services externes" -#: src/Object/Post.php:527 +#: src/Object/Post.php:513 msgid "Unknown parent" msgstr "Parent inconnu" -#: src/Object/Post.php:531 +#: src/Object/Post.php:517 #, php-format msgid "in reply to %s" msgstr "en réponse à %s" -#: src/Object/Post.php:533 +#: src/Object/Post.php:519 msgid "Parent is probably private or not federated." msgstr "Le parent est probablement privé ou non fédéré." -#: src/Object/Post.php:557 +#: src/Object/Post.php:543 msgid "to" msgstr "à" -#: src/Object/Post.php:558 +#: src/Object/Post.php:544 msgid "via" msgstr "via" -#: src/Object/Post.php:559 +#: src/Object/Post.php:545 msgid "Wall-to-Wall" msgstr "Inter-mur" -#: src/Object/Post.php:560 +#: src/Object/Post.php:546 msgid "via Wall-To-Wall:" msgstr "en Inter-mur :" -#: src/Object/Post.php:613 +#: src/Object/Post.php:599 #, php-format msgid "Reply to %s" msgstr "Répondre à %s" -#: src/Object/Post.php:616 +#: src/Object/Post.php:602 msgid "More" msgstr "Plus" -#: src/Object/Post.php:635 +#: src/Object/Post.php:621 msgid "Notifier task is pending" msgstr "La notification de la tâche est en cours" -#: src/Object/Post.php:636 +#: src/Object/Post.php:622 msgid "Delivery to remote servers is pending" msgstr "La distribution aux serveurs distants est en attente" -#: src/Object/Post.php:637 +#: src/Object/Post.php:623 msgid "Delivery to remote servers is underway" msgstr "La distribution aux serveurs distants est en cours" -#: src/Object/Post.php:638 +#: src/Object/Post.php:624 msgid "Delivery to remote servers is mostly done" msgstr "La distribution aux serveurs distants est presque terminée" -#: src/Object/Post.php:639 +#: src/Object/Post.php:625 msgid "Delivery to remote servers is done" msgstr "La distribution aux serveurs distants est terminée" -#: src/Object/Post.php:661 +#: src/Object/Post.php:647 #, php-format msgid "%d comment" msgid_plural "%d comments" @@ -12613,485 +12579,467 @@ msgstr[0] "%d commentaire" msgstr[1] "%d commentaires" msgstr[2] "%d commentaires" -#: src/Object/Post.php:662 +#: src/Object/Post.php:648 msgid "Show more" msgstr "Montrer plus" -#: src/Object/Post.php:663 +#: src/Object/Post.php:649 msgid "Show fewer" msgstr "Montrer moins" -#: src/Object/Post.php:700 +#: src/Object/Post.php:686 #, php-format msgid "Reshared by: %s" msgstr "Partagé par : %s" -#: src/Object/Post.php:705 +#: src/Object/Post.php:691 #, php-format msgid "Viewed by: %s" msgstr "Vu par : %s" -#: src/Object/Post.php:710 +#: src/Object/Post.php:696 #, php-format msgid "Read by: %s" msgstr "Lu par : %s" -#: src/Object/Post.php:715 +#: src/Object/Post.php:701 #, php-format msgid "Liked by: %s" msgstr "Aimé par : %s" -#: src/Object/Post.php:720 +#: src/Object/Post.php:706 #, php-format msgid "Disliked by: %s" msgstr "Pas aimé par : %s" -#: src/Object/Post.php:725 +#: src/Object/Post.php:711 #, php-format msgid "Attended by: %s" msgstr "Y assisteront : %s" -#: src/Object/Post.php:730 +#: src/Object/Post.php:716 #, php-format msgid "Maybe attended by: %s" msgstr "Y assisteront peut-être : %s" -#: src/Object/Post.php:735 +#: src/Object/Post.php:721 #, php-format msgid "Not attended by: %s" msgstr "N'y assisteront pas : %s" -#: src/Object/Post.php:740 +#: src/Object/Post.php:726 #, php-format msgid "Commented by: %s" msgstr "Commenté par : %s" -#: src/Object/Post.php:745 +#: src/Object/Post.php:731 #, php-format msgid "Reacted with %s by: %s" msgstr "La réaction %s a été faite par : %s" -#: src/Object/Post.php:768 +#: src/Object/Post.php:754 #, php-format msgid "Quote shared by: %s" msgstr "Cité et repartagé par : %s" -#: src/Protocol/ActivityPub/Receiver.php:571 +#: src/Protocol/ActivityPub/Receiver.php:557 msgid "Chat" msgstr "Chat" -#: src/Protocol/Delivery.php:544 +#: src/Protocol/Delivery.php:530 msgid "(no subject)" msgstr "(aucun sujet)" -#: src/Protocol/OStatus.php:1392 -#, php-format -msgid "%s is now following %s." -msgstr "%s suit désormais %s." - -#: src/Protocol/OStatus.php:1393 -msgid "following" -msgstr "following" - -#: src/Protocol/OStatus.php:1396 -#, php-format -msgid "%s stopped following %s." -msgstr "%s ne suit plus %s." - -#: src/Protocol/OStatus.php:1397 -msgid "stopped following" -msgstr "retiré de la liste de suivi" - -#: src/Render/FriendicaSmartyEngine.php:56 +#: src/Render/FriendicaSmartyEngine.php:42 #, php-format msgid "The folder %s must be writable by webserver." msgstr "Le répertoire %s doit être accessible en écriture par le serveur web." -#: src/Security/Authentication.php:214 +#: src/Security/Authentication.php:200 msgid "Login failed." msgstr "Échec de connexion." -#: src/Security/Authentication.php:259 +#: src/Security/Authentication.php:245 msgid "Login failed. Please check your credentials." msgstr "Échec d'authentification. Merci de vérifier vos identifiants." -#: src/Security/Authentication.php:373 +#: src/Security/Authentication.php:359 #, php-format msgid "Welcome %s" msgstr "Bienvenue %s" -#: src/Security/Authentication.php:374 +#: src/Security/Authentication.php:360 msgid "Please upload a profile photo." msgstr "Merci d'illustrer votre profil d'une image." -#: src/Security/OpenWebAuth.php:163 +#: src/Security/OpenWebAuth.php:149 #, php-format msgid "OpenWebAuth: %1$s welcomes %2$s" msgstr "%1$s souhaite la bienvenue à %2$s grâce à OpenWebAuth" -#: src/Util/EMailer/MailBuilder.php:260 +#: src/Util/EMailer/MailBuilder.php:246 msgid "Friendica Notification" msgstr "Notification Friendica" -#: src/Util/EMailer/NotifyMailBuilder.php:78 -#: src/Util/EMailer/SystemMailBuilder.php:54 +#: src/Util/EMailer/NotifyMailBuilder.php:64 +#: src/Util/EMailer/SystemMailBuilder.php:40 #, php-format msgid "%1$s, %2$s Administrator" msgstr "L'administrateur de %1$s, %2$s." -#: src/Util/EMailer/NotifyMailBuilder.php:80 -#: src/Util/EMailer/SystemMailBuilder.php:56 +#: src/Util/EMailer/NotifyMailBuilder.php:66 +#: src/Util/EMailer/SystemMailBuilder.php:42 #, php-format msgid "%s Administrator" msgstr "L'administrateur de %s" -#: src/Util/EMailer/NotifyMailBuilder.php:193 -#: src/Util/EMailer/NotifyMailBuilder.php:217 -#: src/Util/EMailer/SystemMailBuilder.php:101 -#: src/Util/EMailer/SystemMailBuilder.php:118 +#: src/Util/EMailer/NotifyMailBuilder.php:179 +#: src/Util/EMailer/NotifyMailBuilder.php:203 +#: src/Util/EMailer/SystemMailBuilder.php:87 +#: src/Util/EMailer/SystemMailBuilder.php:104 msgid "thanks" msgstr "merci" -#: src/Util/Temporal.php:172 +#: src/Util/Temporal.php:158 msgid "YYYY-MM-DD or MM-DD" msgstr "AAAA-MM-JJ ou MM-JJ" -#: src/Util/Temporal.php:280 +#: src/Util/Temporal.php:266 #, php-format msgid "Time zone: %s Change in Settings" msgstr "Fuseau horaire : %s Le changer dans les paramètres" -#: src/Util/Temporal.php:320 src/Util/Temporal.php:329 +#: src/Util/Temporal.php:306 src/Util/Temporal.php:315 msgid "never" msgstr "jamais" -#: src/Util/Temporal.php:343 +#: src/Util/Temporal.php:329 msgid "less than a second ago" msgstr "il y a moins d'une seconde" -#: src/Util/Temporal.php:352 +#: src/Util/Temporal.php:338 msgid "year" msgstr "année" -#: src/Util/Temporal.php:352 +#: src/Util/Temporal.php:338 msgid "years" msgstr "années" -#: src/Util/Temporal.php:353 +#: src/Util/Temporal.php:339 msgid "months" msgstr "mois" -#: src/Util/Temporal.php:354 +#: src/Util/Temporal.php:340 msgid "weeks" msgstr "semaines" -#: src/Util/Temporal.php:355 +#: src/Util/Temporal.php:341 msgid "days" msgstr "jours" -#: src/Util/Temporal.php:356 +#: src/Util/Temporal.php:342 msgid "hour" msgstr "heure" -#: src/Util/Temporal.php:356 +#: src/Util/Temporal.php:342 msgid "hours" msgstr "heures" -#: src/Util/Temporal.php:357 +#: src/Util/Temporal.php:343 msgid "minute" msgstr "minute" -#: src/Util/Temporal.php:357 +#: src/Util/Temporal.php:343 msgid "minutes" msgstr "minutes" -#: src/Util/Temporal.php:358 +#: src/Util/Temporal.php:344 msgid "second" msgstr "seconde" -#: src/Util/Temporal.php:358 +#: src/Util/Temporal.php:344 msgid "seconds" msgstr "secondes" -#: src/Util/Temporal.php:367 +#: src/Util/Temporal.php:353 #, php-format msgid "in %1$d %2$s" msgstr "dans %1$d %2$s" -#: src/Util/Temporal.php:370 +#: src/Util/Temporal.php:356 #, php-format msgid "%1$d %2$s ago" msgstr "Il y a %1$d %2$s" -#: src/Worker/PushSubscription.php:110 +#: src/Worker/PushSubscription.php:96 msgid "Notification from Friendica" msgstr "Notification de Friendica" -#: src/Worker/PushSubscription.php:111 +#: src/Worker/PushSubscription.php:97 msgid "Empty Post" msgstr "Publication vide" -#: view/theme/duepuntozero/config.php:68 +#: view/theme/duepuntozero/config.php:56 msgid "default" msgstr "Par défaut" -#: view/theme/duepuntozero/config.php:69 +#: view/theme/duepuntozero/config.php:57 msgid "greenzero" msgstr "greenzero" -#: view/theme/duepuntozero/config.php:70 +#: view/theme/duepuntozero/config.php:58 msgid "purplezero" msgstr "purplezero" -#: view/theme/duepuntozero/config.php:71 +#: view/theme/duepuntozero/config.php:59 msgid "easterbunny" msgstr "easterbunny" -#: view/theme/duepuntozero/config.php:72 +#: view/theme/duepuntozero/config.php:60 msgid "darkzero" msgstr "darkzero" -#: view/theme/duepuntozero/config.php:73 +#: view/theme/duepuntozero/config.php:61 msgid "comix" msgstr "comix" -#: view/theme/duepuntozero/config.php:74 +#: view/theme/duepuntozero/config.php:62 msgid "slackr" msgstr "slackr" -#: view/theme/duepuntozero/config.php:87 +#: view/theme/duepuntozero/config.php:75 msgid "Variations" msgstr "Variations" -#: view/theme/frio/config.php:146 +#: view/theme/frio/config.php:134 msgid "Note" msgstr "Note" -#: view/theme/frio/config.php:146 +#: view/theme/frio/config.php:134 msgid "Check image permissions if all users are allowed to see the image" msgstr "Vérifier les permissions des images si tous les utilisateurs sont autorisés à voir l'image" -#: view/theme/frio/config.php:152 +#: view/theme/frio/config.php:140 msgid "Appearance" msgstr "Apparence" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Accent color" msgstr "Couleur d'accentuation" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Blue" msgstr "Bleu" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Red" msgstr "Rouge" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Purple" msgstr "Violet" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Green" msgstr "Vert" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Pink" msgstr "Rose" -#: view/theme/frio/config.php:154 +#: view/theme/frio/config.php:142 msgid "Copy or paste schemestring" msgstr "Copier ou coller le fil conducteur" -#: view/theme/frio/config.php:154 +#: view/theme/frio/config.php:142 msgid "" "You can copy this string to share your theme with others. Pasting here " "applies the schemestring" msgstr "Vous pouvez copier le contenu de ce champ pour partager votre thème. Vous pouvez également y coller une définition de palette différente pour l'appliquer à votre thème." -#: view/theme/frio/config.php:155 +#: view/theme/frio/config.php:143 msgid "Navigation bar background color" msgstr "Couleur d'arrière-plan de la barre de navigation" -#: view/theme/frio/config.php:156 +#: view/theme/frio/config.php:144 msgid "Navigation bar icon color " msgstr "Couleur des icônes de la barre de navigation" -#: view/theme/frio/config.php:157 +#: view/theme/frio/config.php:145 msgid "Link color" msgstr "Couleur des liens" -#: view/theme/frio/config.php:158 +#: view/theme/frio/config.php:146 msgid "Set the background color" msgstr "Paramétrer la couleur d'arrière-plan" -#: view/theme/frio/config.php:159 +#: view/theme/frio/config.php:147 msgid "Content background opacity" msgstr "Opacité du contenu d'arrière-plan" -#: view/theme/frio/config.php:160 +#: view/theme/frio/config.php:148 msgid "Set the background image" msgstr "Paramétrer l'image d'arrière-plan" -#: view/theme/frio/config.php:161 +#: view/theme/frio/config.php:149 msgid "Background image style" msgstr "Style de l'image de fond" -#: view/theme/frio/config.php:164 +#: view/theme/frio/config.php:152 msgid "Always open Compose page" msgstr "Toujours ouvrir la page Compose" -#: view/theme/frio/config.php:164 +#: view/theme/frio/config.php:152 msgid "" "The New Post button always open the Compose page " "instead of the modal form. When this is disabled, the Compose page can be " "accessed with a middle click on the link or from the modal." msgstr "Le bouton Nouvelle publication ouvre systématiquement la page Compose à la place du formulaire modal. Quand désactivé, la page Compose peut être ouverte via un clic milieu sur le lien ou à partir du modal." -#: view/theme/frio/config.php:168 +#: view/theme/frio/config.php:156 msgid "Login page background image" msgstr "Image de fond de la page de login" -#: view/theme/frio/config.php:172 +#: view/theme/frio/config.php:160 msgid "Login page background color" msgstr "Couleur d'arrière-plan de la page de login" -#: view/theme/frio/config.php:172 +#: view/theme/frio/config.php:160 msgid "Leave background image and color empty for theme defaults" msgstr "Laisser l'image et la couleur de fond vides pour les paramètres par défaut du thème" -#: view/theme/frio/php/Image.php:39 +#: view/theme/frio/php/Image.php:27 msgid "Top Banner" msgstr "Bannière du haut" -#: view/theme/frio/php/Image.php:39 +#: view/theme/frio/php/Image.php:27 msgid "" "Resize image to the width of the screen and show background color below on " "long pages." msgstr "Redimensionner l'image à la largeur de l'écran et combler en dessous avec la couleur d'arrière plan sur les pages longues." -#: view/theme/frio/php/Image.php:40 +#: view/theme/frio/php/Image.php:28 msgid "Full screen" msgstr "Plein écran" -#: view/theme/frio/php/Image.php:40 +#: view/theme/frio/php/Image.php:28 msgid "" "Resize image to fill entire screen, clipping either the right or the bottom." msgstr "Agrandir l'image pour remplir l'écran, jusqu'à toucher le bord droit ou le bas de l'écran." -#: view/theme/frio/php/Image.php:41 +#: view/theme/frio/php/Image.php:29 msgid "Single row mosaic" msgstr "Mosaïque sur une seule colonne" -#: view/theme/frio/php/Image.php:41 +#: view/theme/frio/php/Image.php:29 msgid "" "Resize image to repeat it on a single row, either vertical or horizontal." msgstr "Redimensionner l'image pour la répéter sur une seule colonne, verticale ou horizontale." -#: view/theme/frio/php/Image.php:42 +#: view/theme/frio/php/Image.php:30 msgid "Mosaic" msgstr "Mosaïque" -#: view/theme/frio/php/Image.php:42 +#: view/theme/frio/php/Image.php:30 msgid "Repeat image to fill the screen." msgstr "Répète l'image pour couvrir l'écran." -#: view/theme/frio/php/default.php:82 view/theme/frio/php/standard.php:40 +#: view/theme/frio/php/default.php:70 view/theme/frio/php/standard.php:28 msgid "Skip to main content" msgstr "Aller au contenu principal" -#: view/theme/frio/php/default.php:153 view/theme/frio/php/standard.php:75 +#: view/theme/frio/php/default.php:141 view/theme/frio/php/standard.php:63 msgid "Back to top" msgstr "Retour en haut" -#: view/theme/frio/php/scheme.php:105 +#: view/theme/frio/php/scheme.php:93 msgid "Light" msgstr "Clair" -#: view/theme/frio/php/scheme.php:106 +#: view/theme/frio/php/scheme.php:94 msgid "Dark" msgstr "Sombre" -#: view/theme/frio/php/scheme.php:107 +#: view/theme/frio/php/scheme.php:95 msgid "Black" msgstr "Noir" -#: view/theme/frio/php/scheme.php:118 +#: view/theme/frio/php/scheme.php:106 msgid "Custom" msgstr "Personnalisé" -#: view/theme/frio/theme.php:214 +#: view/theme/frio/theme.php:202 msgid "Guest" msgstr "Invité" -#: view/theme/frio/theme.php:217 +#: view/theme/frio/theme.php:205 msgid "Visitor" msgstr "Visiteur" -#: view/theme/quattro/config.php:89 +#: view/theme/quattro/config.php:77 msgid "Alignment" msgstr "Alignement" -#: view/theme/quattro/config.php:89 +#: view/theme/quattro/config.php:77 msgid "Left" msgstr "Gauche" -#: view/theme/quattro/config.php:89 +#: view/theme/quattro/config.php:77 msgid "Center" msgstr "Centré" -#: view/theme/quattro/config.php:90 +#: view/theme/quattro/config.php:78 msgid "Color scheme" msgstr "Schéma de couleurs" -#: view/theme/quattro/config.php:91 +#: view/theme/quattro/config.php:79 msgid "Posts font size" msgstr "Taille de texte des publications" -#: view/theme/quattro/config.php:92 +#: view/theme/quattro/config.php:80 msgid "Textareas font size" msgstr "Taille de police des zones de texte" -#: view/theme/vier/config.php:91 +#: view/theme/vier/config.php:79 msgid "Comma separated list of helper groups" msgstr "Liste de groupe d'entraide, séparés par des virgules" -#: view/theme/vier/config.php:131 +#: view/theme/vier/config.php:119 msgid "don't show" msgstr "cacher" -#: view/theme/vier/config.php:131 +#: view/theme/vier/config.php:119 msgid "show" msgstr "montrer" -#: view/theme/vier/config.php:137 +#: view/theme/vier/config.php:125 msgid "Set style" msgstr "Définir le style" -#: view/theme/vier/config.php:138 +#: view/theme/vier/config.php:126 msgid "Community Pages" msgstr "Pages Communautaires" -#: view/theme/vier/config.php:139 view/theme/vier/theme.php:148 +#: view/theme/vier/config.php:127 view/theme/vier/theme.php:136 msgid "Community Profiles" msgstr "Profils communautaires" -#: view/theme/vier/config.php:140 +#: view/theme/vier/config.php:128 msgid "Help or @NewHere ?" msgstr "Besoin d'aide ou @NouveauIci ?" -#: view/theme/vier/config.php:141 view/theme/vier/theme.php:319 +#: view/theme/vier/config.php:129 view/theme/vier/theme.php:307 msgid "Connect Services" msgstr "Connecter des services" -#: view/theme/vier/config.php:142 +#: view/theme/vier/config.php:130 msgid "Find Friends" msgstr "Trouver des contacts" -#: view/theme/vier/config.php:143 view/theme/vier/theme.php:175 +#: view/theme/vier/config.php:131 view/theme/vier/theme.php:163 msgid "Last users" msgstr "Derniers utilisateurs" -#: view/theme/vier/theme.php:234 +#: view/theme/vier/theme.php:222 msgid "Quick Start" msgstr "Démarrage rapide" diff --git a/view/lang/fr/strings.php b/view/lang/fr/strings.php index 77b1dc6dd7..abb9c0a7d8 100644 --- a/view/lang/fr/strings.php +++ b/view/lang/fr/strings.php @@ -860,7 +860,6 @@ $a->strings['An author or name was not found.'] = 'Aucun auteur ou nom d\'auteur $a->strings['No browser URL could be matched to this address.'] = 'Aucune URL de navigation ne correspond à cette adresse.'; $a->strings['Unable to match @-style Identity Address with a known protocol or email contact.'] = 'Impossible de faire correspondre l\'adresse d\'identité en "@" avec un protocole connu ou un contact courriel.'; $a->strings['Use mailto: in front of address to force email check.'] = 'Utilisez mailto: en face d\'une adresse pour l\'obliger à être reconnue comme courriel.'; -$a->strings['The profile address specified belongs to a network which has been disabled on this site.'] = 'L\'adresse de profil spécifiée correspond à un réseau qui a été désactivé sur ce site.'; $a->strings['Limited profile. This person will be unable to receive direct/personal notifications from you.'] = 'Profil limité. Cette personne ne sera pas capable de recevoir des notifications directes/personnelles de votre part.'; $a->strings['Unable to retrieve contact information.'] = 'Impossible de récupérer les informations du contact.'; $a->strings['l F d, Y \@ g:i A \G\M\TP (e)'] = 'l d F Y \@ G:i \G\M\TP (e)'; @@ -888,7 +887,9 @@ $a->strings['%s\'s birthday'] = 'Anniversaire de %s\'s'; $a->strings['Happy Birthday %s'] = 'Joyeux anniversaire, %s !'; $a->strings['%s (%s - %s): %s'] = '%s (%s - %s) : %s'; $a->strings['%s (%s): %s'] = '%s (%s) : %s'; -$a->strings['Detected languages in this post:\n%s'] = 'Langues détectées dans cette publication :\n%s'; +$a->strings['Detected languages in this post: +%s'] = 'Langues détectées dans la publication : +%s'; $a->strings['activity'] = 'activité'; $a->strings['comment'] = 'commentaire'; $a->strings['post'] = 'publication'; @@ -1251,6 +1252,7 @@ $a->strings['Job Parameters'] = 'Paramètres de la tâche'; $a->strings['Created'] = 'Créé'; $a->strings['Next Try'] = 'Prochain Essai'; $a->strings['Priority'] = 'Priorité'; +$a->strings['%s is no valid input for maximum media size'] = '%s n\'est pas une saisie valide pour une taille de média'; $a->strings['%s is no valid input for maximum image size'] = '%s n\'est pas une valeur valide pour la taille maximum d\'image'; $a->strings['No special theme for mobile devices'] = 'Pas de thème particulier pour les terminaux mobiles'; $a->strings['%s - (Experimental)'] = '%s- (expérimental)'; @@ -1320,6 +1322,12 @@ $a->strings['Maximum image length'] = 'Longueur maximale des images'; $a->strings['Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits.'] = 'Longueur maximale en pixels du plus long côté des images téléversées. La valeur par défaut est -1 : absence de limite.'; $a->strings['JPEG image quality'] = 'Qualité JPEG des images'; $a->strings['Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality.'] = 'Les JPEGs téléversés seront sauvegardés avec ce niveau de qualité [0-100]. La valeur par défaut est 100, soit la qualité maximale.'; +$a->strings['Maximum media file size'] = 'Taille maximale d\'un média'; +$a->strings['Maximum size in bytes of uploaded media files. Default is 0, which means no limits. You can put k, m, or g behind the desired value for KiB, MiB, GiB, respectively. + The value ofupload_max_filesize
in your PHP.ini
needs be set to at least the desired limit.
+ Currently upload_max_filesize
is set to %s (%s byte)'] = 'Taille maximale en octets des fichiers multimédias envoyés. La valeur par défaut est 0, ce qui signifie aucune limite. Vous pouvez mettre k, m, ou g derrière la valeur souhaitée pour KiB, MiB, GiB, respectivement.
+ La valeur de upload_max_filesize
dans votre PHP.ini
doit être au moins égale à la limite souhaitée.
+ Actuellement, upload_max_filesize
est fixé à %s (%s byte)';
$a->strings['Register policy'] = 'Politique d\'inscription';
$a->strings['Maximum Users'] = 'Utilisateurs maximum';
$a->strings['If defined, the register policy is automatically closed when the given number of users is reached and reopens the registry when the number drops below the limit. It only works when the policy is set to open or close, but not when the policy is set to approval.'] = 'Si défini, la politique d\'inscription est automatiquement définie à "Fermé" quand le nombre d\'utilisateurs est atteint et mis à "Ouvert" quand le nombre descend en dessous de la limite. Cela fonctionne uniquement si la politique est défini à "Ouvert" ou "Fermé", mais pas quand celle-ci est définie à "Demande une approbation".';
@@ -1389,8 +1397,6 @@ $a->strings['The maximum number of posts per server on the global community page
$a->strings['Enable Mail support'] = 'Activer la prise en charge courriel';
$a->strings['Enable built-in mail support to poll IMAP folders and to reply via mail.'] = 'Permet de se connecter à un compte IMAP et de répondre directement aux courriels via Friendica.';
$a->strings['Mail support can\'t be enabled because the PHP IMAP module is not installed.'] = 'La prise en charge courriel requiert le module PHP IMAP pour être activée.';
-$a->strings['Enable OStatus support'] = 'Activer la prise en charge d\'OStatus';
-$a->strings['Enable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public.'] = 'Permet la communication avec des comptes distants via OStatus (StatusNet, GNU Social, etc...). Toutes les publications OStatus sont publiques.';
$a->strings['Diaspora support can\'t be enabled because Friendica was installed into a sub directory.'] = 'Le support de Diaspora ne peut pas être activé parce que Friendica a été installé dans un sous-répertoire.';
$a->strings['Enable Diaspora support'] = 'Activer le support de Diaspora';
$a->strings['Enable built-in Diaspora network compatibility for communicating with diaspora servers.'] = 'Permet la communication avec des comptes distants via Diaspora. Ce protocole est principalement utilisé par la plate-forme Diaspora.';
@@ -1436,7 +1442,7 @@ $a->strings['When the database cleanup is enabled, this defines the days after w
$a->strings['Lifespan of unclaimed items'] = 'Durée de vie des conversations relayées';
$a->strings['When the database cleanup is enabled, this defines the days after which unclaimed remote items (mostly content from the relay) will be deleted. Default value is 90 days. Defaults to the general lifespan value of remote items if set to 0.'] = 'Si le nettoyage de la base de donnée est actif, cette valeur représente le délai en jours après lequel les conversations relayées qui n\'ont pas reçu d\'interactions locales sont supprimées. La valeur par défaut est 90 jours. 0 pour aligner cette valeur sur la durée de vie des conversations distantes.';
$a->strings['Lifespan of raw conversation data'] = 'Durée de vie des méta-données de conversation';
-$a->strings['The conversation data is used for ActivityPub and OStatus, as well as for debug purposes. It should be safe to remove it after 14 days, default is 90 days.'] = 'Cette valeur représente le délai en jours après lequel les méta-données de conversations sont supprimées. Ces méta-données sont utilisées par les protocoles ActivityPub et OStatus, et pour le débogage. Il est prudent de conserver ces meta-données pendant au moins 14 jours. La valeur par défaut est 90 jours.';
+$a->strings['The conversation data is used for ActivityPub, as well as for debug purposes. It should be safe to remove it after 14 days, default is 90 days.'] = 'Les données de conversation sont utilisées pour ActivityPub, ainsi qu\'à des fins de débogage. Elles peuvent être supprimées en toute sécurité après 14 jours, la durée par défaut étant de 90 jours.';
$a->strings['Maximum numbers of comments per post'] = 'Nombre maximum de commentaires par publication';
$a->strings['How much comments should be shown for each post? Default value is 100.'] = 'Nombre de commentaire affiché pour chaque publication. Valeur par défaut : 100.';
$a->strings['Maximum numbers of comments per post on the display page'] = 'Nombre maximum de commentaires par publication dans leur page dédié (/display)';
@@ -1761,7 +1767,6 @@ $a->strings['Submit Request'] = 'Envoyer la requête';
$a->strings['You already added this contact.'] = 'Vous avez déjà ajouté ce contact.';
$a->strings['The network type couldn\'t be detected. Contact can\'t be added.'] = 'Impossible de détecter le type de réseau. Le contact ne peut pas être ajouté.';
$a->strings['Diaspora support isn\'t enabled. Contact can\'t be added.'] = 'Le support de Diaspora est désactivé. Le contact ne peut pas être ajouté.';
-$a->strings['OStatus support is disabled. Contact can\'t be added.'] = 'Le support d\'OStatus est désactivé. Le contact ne peut pas être ajouté.';
$a->strings['Please answer the following:'] = 'Merci de répondre à ce qui suit :';
$a->strings['Your Identity Address:'] = 'Votre adresse d\'identité :';
$a->strings['Profile URL'] = 'URL du Profil';
@@ -2312,10 +2317,6 @@ $a->strings['Incomplete request data'] = 'Requête incomplète';
$a->strings['Please copy the following authentication code into your application and close this window: %s'] = 'Veuillez copier le code d\'identification suivant dans votre application et ensuite fermer cette fenêtre: %s';
$a->strings['Invalid data or unknown client'] = 'Données invalides ou client inconnu';
$a->strings['Unsupported or missing grant type'] = 'Type de "grant" manquant ou non pris en charge';
-$a->strings['Resubscribing to OStatus contacts'] = 'Réinscription aux contacts OStatus';
-$a->strings['Keep this window open until done.'] = 'Veuillez garder cette fenêtre ouverte jusqu\'à la fin.';
-$a->strings['✔ Done'] = '✔ Fait';
-$a->strings['No OStatus contacts to resubscribe to.'] = 'Aucun contact OStatus à se réabonner.';
$a->strings['Subscribing to contacts'] = 'Abonnement aux contacts';
$a->strings['No contact provided.'] = 'Pas de contact fourni.';
$a->strings['Couldn\'t fetch information for contact.'] = 'Impossible de récupérer les informations pour ce contact.';
@@ -2327,6 +2328,7 @@ $a->strings['Done'] = 'Terminé';
$a->strings['success'] = 'réussite';
$a->strings['failed'] = 'échec';
$a->strings['ignored'] = 'ignoré';
+$a->strings['Keep this window open until done.'] = 'Veuillez garder cette fenêtre ouverte jusqu\'à la fin.';
$a->strings['The Photo is not available.'] = 'La photo n\'est pas disponible.';
$a->strings['The Photo with id %s is not available.'] = 'La photo avec l\'identifiant %s n\'est pas disponible.';
$a->strings['Invalid external resource with url %s.'] = 'La ressource externe avec l\'URL %s est invalide.';
@@ -2354,9 +2356,9 @@ $a->strings['Collection (%s)'] = 'Collection (%s)';
$a->strings['Followers (%s)'] = 'Abonnés (%s)';
$a->strings['%d more'] = '%d supplémentaire';
$a->strings['No contacts.'] = 'Aucun contact.';
-$a->strings['%s\'s timeline'] = 'Le flux de %s';
$a->strings['%s\'s posts'] = 'Les publications originales de %s';
$a->strings['%s\'s comments'] = 'Les commentaires de %s';
+$a->strings['%s\'s timeline'] = 'Le flux de %s';
$a->strings['Image exceeds size limit of %s'] = 'L\'image dépasse la taille limite de %s';
$a->strings['Image upload didn\'t complete, please try again'] = 'La mise en ligne de l\'image ne s\'est pas terminée, veuillez réessayer';
$a->strings['Image file is missing'] = 'Fichier image manquant';
@@ -2631,7 +2633,6 @@ $a->strings['Failed to connect with email account using the settings provided.']
$a->strings['Diaspora (Socialhome, Hubzilla)'] = 'Diaspora (Socialhome, Hubzilla)';
$a->strings['Built-in support for %s connectivity is enabled'] = 'Le support intégré pour la connectivité %s est activé';
$a->strings['Built-in support for %s connectivity is disabled'] = 'Le support intégré pour la connectivité %s est désactivé';
-$a->strings['OStatus (GNU Social)'] = 'OStatus (GNU Social)';
$a->strings['Email access is disabled on this site.'] = 'L\'accès courriel est désactivé sur ce site.';
$a->strings['None'] = 'Aucun(e)';
$a->strings['Default (Mastodon will display the title and a link to the post)'] = 'Par défaut (Mastodon affichera le titre et un lien vers la publication)';
@@ -2659,7 +2660,6 @@ $a->strings['Article Mode'] = 'Mode Article';
$a->strings['Controls how posts with titles are transmitted. Mastodon and its forks don\'t display the content of these posts if the post is created in the correct (default) way.'] = 'Contrôle la façon dont les publications avec des titres sont transmises. Mastodon et ses forks n\'affichent pas le contenu de ces publications si la publication est créée de la bonne manière (par défaut).';
$a->strings['Your legacy ActivityPub/GNU Social account'] = 'Votre ancient compte ActivityPub/GNU Social';
$a->strings['If you enter your old account name from an ActivityPub based system or your GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done.'] = 'Si vous saisissez votre adresse de compte précédente d\'un réseau basé sur ActivityPub ou GNU Social/Statusnet (au format utilisateur@domaine.tld), vos contacts seront ajoutés autoamtiquement. Le champ sera vidé quand l\'opération sera terminé.';
-$a->strings['Repair OStatus subscriptions'] = 'Réparer les abonnements OStatus';
$a->strings['Email/Mailbox Setup'] = 'Réglages de courriel/boîte à lettre';
$a->strings['If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox.'] = 'Si vous souhaitez communiquer avec vos contacts "courriel" (facultatif), merci de nous indiquer comment vous connecter à votre boîte.';
$a->strings['Last successful email check:'] = 'Dernière vérification réussie des courriels :';
@@ -2984,7 +2984,6 @@ $a->strings['%s commented on %s\'s post'] = '%s a commenté la publication de %s
$a->strings['%s created a new post'] = '%s a créé une nouvelle publication';
$a->strings['Friend Suggestion'] = 'Suggestion d\'abonnement';
$a->strings['Friend/Connect Request'] = 'Demande de connexion/relation';
-$a->strings['New Follower'] = 'Nouvel abonné';
$a->strings['%1$s wants to follow you'] = '%1$s veut s\'abonner à votre contenu';
$a->strings['%1$s has started following you'] = '%1$s a commencé à vous suivre';
$a->strings['%1$s liked your comment on %2$s'] = '%1$s a aimé votre commentaire sur %2$s';
@@ -3140,10 +3139,6 @@ $a->strings['Reacted with %s by: %s'] = 'La réaction %s a été faite par : %s
$a->strings['Quote shared by: %s'] = 'Cité et repartagé par : %s';
$a->strings['Chat'] = 'Chat';
$a->strings['(no subject)'] = '(aucun sujet)';
-$a->strings['%s is now following %s.'] = '%s suit désormais %s.';
-$a->strings['following'] = 'following';
-$a->strings['%s stopped following %s.'] = '%s ne suit plus %s.';
-$a->strings['stopped following'] = 'retiré de la liste de suivi';
$a->strings['The folder %s must be writable by webserver.'] = 'Le répertoire %s doit être accessible en écriture par le serveur web.';
$a->strings['Login failed.'] = 'Échec de connexion.';
$a->strings['Login failed. Please check your credentials.'] = 'Échec d\'authentification. Merci de vérifier vos identifiants.';
diff --git a/view/lang/gd/messages.po b/view/lang/gd/messages.po
index 9740a47828..4b835678c7 100644
--- a/view/lang/gd/messages.po
+++ b/view/lang/gd/messages.po
@@ -1,14 +1,13 @@
# FRIENDICA Distributed Social Network
-# SPDX-FileCopyrightText: Copyright (C) 2010-2024, the Friendica project
-#
-# SPDX-License-Identifier: AGPL-3.0-or-later
-#
+# Copyright (C) 2010-2024, the Friendica project
+# This file is distributed under the same license as the Friendica package.
+#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2024-08-11 06:43+0000\n"
+"POT-Creation-Date: 2024-10-07 20:46+0000\n"
"PO-Revision-Date: 2011-05-05 10:19+0000\n"
"Last-Translator: FULL NAME upload_max_filesize
is set to %s (%s byte)"
msgstr "Am meud as motha ann am baidht do dhealbhan a thèid a luchdadh suas. Is 0 a’ bhun-roghainn, ’s e sin gun chrìoch. ’S urrainn dhut k, m no g a chur às dèidh an luacha a thogras tu airson KiB, MiB no GiB.\n\t\t\t\t\t\t\t\t\t\t\t\t\tFeumaidh tu an luach air upload_max_filesize
sa PHP.ini
a shuidheachadh air a’ chrìoch a thogras tu air a char as lugha.\n\t\t\t\t\t\t\t\t\t\t\t\t\tChaidh upload_max_filesize
a shuidheachadh air %s (%s baidht) aig an àm seo"
-#: src/Module/Admin/Site.php:499
+#: src/Module/Admin/Site.php:489
msgid "Maximum image length"
msgstr "Faide as motha nan dealbhan"
-#: src/Module/Admin/Site.php:499
+#: src/Module/Admin/Site.php:489
msgid ""
"Maximum length in pixels of the longest side of uploaded images. Default is "
"-1, which means no limits."
msgstr "An fhaide as motha ann am piogsail aig an taobh as fhaide do dhealbhan a thèid a luchdadh suas. Is -1 a’ bhun-roghainn, ’s e sin gun chrìoch."
-#: src/Module/Admin/Site.php:500
+#: src/Module/Admin/Site.php:490
msgid "JPEG image quality"
msgstr "Càileachd deilbh JPEG"
-#: src/Module/Admin/Site.php:500
+#: src/Module/Admin/Site.php:490
msgid ""
"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
"100, which is full quality."
msgstr "Thèid dealbhan a’ sàbhaladh leis a’ chàileachd JPEG seo às dèidh an luchdadh suas [0-100]. Is 100 a’ bhun-roghainn, ’s e sin a’ chàileachd shlàn."
-#: src/Module/Admin/Site.php:502
+#: src/Module/Admin/Site.php:491
+msgid "Maximum media file size"
+msgstr ""
+
+#: src/Module/Admin/Site.php:491
+#, php-format
+msgid ""
+"Maximum size in bytes of uploaded media files. Default is 0, which means no limits. You can put k, m, or g behind the desired value for KiB, MiB, GiB, respectively.\n"
+"\t\t\t\t\t\t\t\t\t\t\t\t\tThe value of upload_max_filesize
in your PHP.ini
needs be set to at least the desired limit.\n"
+"\t\t\t\t\t\t\t\t\t\t\t\t\tCurrently upload_max_filesize
is set to %s (%s byte)"
+msgstr ""
+
+#: src/Module/Admin/Site.php:496
msgid "Register policy"
msgstr "Poileasaidh clàraidh"
-#: src/Module/Admin/Site.php:503
+#: src/Module/Admin/Site.php:497
msgid "Maximum Users"
msgstr "Àireamh as motha de chleachdaichean"
-#: src/Module/Admin/Site.php:503
+#: src/Module/Admin/Site.php:497
msgid ""
"If defined, the register policy is automatically closed when the given "
"number of users is reached and reopens the registry when the number drops "
@@ -4794,167 +4804,167 @@ msgid ""
"not when the policy is set to approval."
msgstr "Ma bhios seo air a mhìneachadh, thèid poileasaidh nan clàraidhean a dhùnadh gu fèin-obrachail nuair a bhios an àireamh shònraichte de chleachdaichean air a ruigsinn agus fhosgladh a-rithist nuair a thèid an àireamh nas ìsle na a’ chrìoch. Chan obraich seo ach ma chaidh am poileasaidh a shuidheachadh air “Fosgailte” no “Dùinte” agus chan obraich e ma chaidh am poileasaidh a shuidheachadh air “Aontachadh”."
-#: src/Module/Admin/Site.php:504
+#: src/Module/Admin/Site.php:498
msgid "Maximum Daily Registrations"
msgstr "An àireamh as motha de chlàraidhean gach latha"
-#: src/Module/Admin/Site.php:504
+#: src/Module/Admin/Site.php:498
msgid ""
"If registration is permitted above, this sets the maximum number of new user"
" registrations to accept per day. If register is set to closed, this "
"setting has no effect."
msgstr "Ma tha an clàradh ceadaichte gu h-àrd, suidhichidh seo an àireamh as motha de chlàraidhean chleachdaichean ùra gach latha. Ma tha an clàradh dùinte, cha doir an roghainn seo buaidh."
-#: src/Module/Admin/Site.php:505
+#: src/Module/Admin/Site.php:499
msgid "Register text"
msgstr "Teacsa a’ chlàraidh"
-#: src/Module/Admin/Site.php:505
+#: src/Module/Admin/Site.php:499
msgid ""
"Will be displayed prominently on the registration page. You can use BBCode "
"here."
msgstr "Thèid a shealltainn gu follaiseach air duilleag a’ chlàraidh. ’S urrainn dhut BBCode a chleachdadh an-seo."
-#: src/Module/Admin/Site.php:506
+#: src/Module/Admin/Site.php:500
msgid "Forbidden Nicknames"
msgstr "Far-ainmean toirmisgte"
-#: src/Module/Admin/Site.php:506
+#: src/Module/Admin/Site.php:500
msgid ""
"Comma separated list of nicknames that are forbidden from registration. "
"Preset is a list of role names according RFC 2142."
msgstr "Liosta sgaraichte le cromagan de dh’fhar-ainmean nach fhaod clàradh. Tha liosta de dh’ainmean dreuchdan a-rèir RFC 2142 ro-shocraichte."
-#: src/Module/Admin/Site.php:507
+#: src/Module/Admin/Site.php:501
msgid "Accounts abandoned after x days"
msgstr "Cunntasan air an trèigsinn às dèidh x là"
-#: src/Module/Admin/Site.php:507
+#: src/Module/Admin/Site.php:501
msgid ""
"Will not waste system resources polling external sites for abandonded "
"accounts. Enter 0 for no time limit."
msgstr "Cha chaith seo goireasan an t-siostam le ceasnachadh làraichean air an taobh a-muigh airson cunntasan air an trèigsinn. Cuir a-steach 0 airson cunntasan gun chrìoch ùine."
-#: src/Module/Admin/Site.php:508
+#: src/Module/Admin/Site.php:502
msgid "Allowed friend domains"
msgstr "Àrainnean ceadaichte do chàirdeasan"
-#: src/Module/Admin/Site.php:508
+#: src/Module/Admin/Site.php:502
msgid ""
"Comma separated list of domains which are allowed to establish friendships "
"with this site. Wildcards are accepted. Empty to allow any domains"
msgstr "Liosta sgaraichte le cromagan de dh’àrainnean a dh’fhaodas càirdeasan a stèidheachadh leis an làrach seo. Gabhaidh seo ri saoragan. Fàg bàn airson a h-uile àrainn a cheadachadh"
-#: src/Module/Admin/Site.php:509
+#: src/Module/Admin/Site.php:503
msgid "Allowed email domains"
msgstr "Àrainnean puist-d ceadaichte"
-#: src/Module/Admin/Site.php:509
+#: src/Module/Admin/Site.php:503
msgid ""
"Comma separated list of domains which are allowed in email addresses for "
"registrations to this site. Wildcards are accepted. Empty to allow any "
"domains"
msgstr "Liosta sgaraichte le cromagan de dh’àrainnean a tha ceadaichte ann am puist-d airson clàradh leis an làrach seo. Gabhaidh seo ri saoragan. Fàg bàn airson a h-uile àrainn a cheadachadh"
-#: src/Module/Admin/Site.php:510
+#: src/Module/Admin/Site.php:504
msgid "Disallowed email domains"
msgstr ""
-#: src/Module/Admin/Site.php:510
+#: src/Module/Admin/Site.php:504
msgid ""
"Comma separated list of domains which are rejected as email addresses for "
"registrations to this site. Wildcards are accepted."
msgstr ""
-#: src/Module/Admin/Site.php:511
+#: src/Module/Admin/Site.php:505
msgid "No OEmbed rich content"
msgstr "Gun susbaint OEmbed bheartach"
-#: src/Module/Admin/Site.php:511
+#: src/Module/Admin/Site.php:505
msgid ""
"Don't show the rich content (e.g. embedded PDF), except from the domains "
"listed below."
msgstr "Na seall susbaint bheartach (m. e. PDF leabaichte) ach o na h-àrainnean air an liosta gu h-ìosal."
-#: src/Module/Admin/Site.php:512
+#: src/Module/Admin/Site.php:506
msgid "Trusted third-party domains"
msgstr "Àrainnean threas-phàrtaidhea earbsach"
-#: src/Module/Admin/Site.php:512
+#: src/Module/Admin/Site.php:506
msgid ""
"Comma separated list of domains from which content is allowed to be embedded"
" in posts like with OEmbed. All sub-domains of the listed domains are "
"allowed as well."
msgstr "Liosta sgaraichte le cromagan de dh’àrainnean on a dh’fhaodar susbaint a leabachadh am broinn phostaichean le OEmbed. Thèid cead a thoirt dhan a h-uile fo-àrainn dhe na h-àrainnean air an liosta cuideachd."
-#: src/Module/Admin/Site.php:513
+#: src/Module/Admin/Site.php:507
msgid "Block public"
msgstr "Bac inntrigeadh poblach"
-#: src/Module/Admin/Site.php:513
+#: src/Module/Admin/Site.php:507
msgid ""
"Check to block public access to all otherwise public personal pages on this "
"site unless you are currently logged in."
msgstr "Cuir cromag ris a bhacadh inntrigeadh poblach air a h-uile duilleag phearsanta a bhiodh poblach air an làrach seo ach dhan fheadhainn a bhios air a clàradh a-staigh."
-#: src/Module/Admin/Site.php:514
+#: src/Module/Admin/Site.php:508
msgid "Force publish"
msgstr "Spàrr foillseachadh"
-#: src/Module/Admin/Site.php:514
+#: src/Module/Admin/Site.php:508
msgid ""
"Check to force all profiles on this site to be listed in the site directory."
msgstr "Cuir cromag ris a sparradh air a h-uile pròifil air an làrach seo gun nochd iad ann an eòlaire na làraich."
-#: src/Module/Admin/Site.php:514
+#: src/Module/Admin/Site.php:508
msgid "Enabling this may violate privacy laws like the GDPR"
msgstr "Ma chuireas tu seo an comas, dh’fhaoidte gum bris thu laghan mar an GDPR"
-#: src/Module/Admin/Site.php:515
+#: src/Module/Admin/Site.php:509
msgid "Global directory URL"
msgstr "URL an eòlaire cho-naisgte"
-#: src/Module/Admin/Site.php:515
+#: src/Module/Admin/Site.php:509
msgid ""
"URL to the global directory. If this is not set, the global directory is "
"completely unavailable to the application."
msgstr "URL dhan eòlaire cho-naisgte. Mura deach seo a shuidheachadh, cha bhi an t-eòlaire uile-choitcheann ri fhaighinn idir dhan aplacaid."
-#: src/Module/Admin/Site.php:516
+#: src/Module/Admin/Site.php:510
msgid "Private posts by default for new users"
msgstr "Postaichean prìobhaideach ’na bhun-roghainn do chleachdaichean ùra"
-#: src/Module/Admin/Site.php:516
+#: src/Module/Admin/Site.php:510
msgid ""
"Set default post permissions for all new members to the default privacy "
"circle rather than public."
msgstr "Suidhichidh seo ceadan phostaichean nam ball ùra air a’ chearcall phrìobhaideach gu bunaiteach seach air a’ chearcall phoblach."
-#: src/Module/Admin/Site.php:517
+#: src/Module/Admin/Site.php:511
msgid "Don't include post content in email notifications"
msgstr "Na gabh a-staigh susbaint nam post ann am brathan puist-d"
-#: src/Module/Admin/Site.php:517
+#: src/Module/Admin/Site.php:511
msgid ""
"Don't include the content of a post/comment/private message/etc. in the "
"email notifications that are sent out from this site, as a privacy measure."
msgstr "Na gabh a-staigh susbaint puist/beachd/teachdaireachd prìobhaidich/msaa. sna brathan puist-d a thèid a chur on làrach seo, a chùm prìobhaideachd."
-#: src/Module/Admin/Site.php:518
+#: src/Module/Admin/Site.php:512
msgid "Disallow public access to addons listed in the apps menu."
msgstr "Na ceadaich inntrigeadh poblach dha na tuilleadain a tha air an liosta ann an clàr-taice nan aplacaidean."
-#: src/Module/Admin/Site.php:518
+#: src/Module/Admin/Site.php:512
msgid ""
"Checking this box will restrict addons listed in the apps menu to members "
"only."
msgstr "Ma tha cromag sa bhogsa seo, bidh an t-inntrigeadh air na tuilleadain a chithear ann an clàr-taice nan aplacaidean cuingichte air na buill a-mhàin."
-#: src/Module/Admin/Site.php:519
+#: src/Module/Admin/Site.php:513
msgid "Don't embed private images in posts"
msgstr "Na leabaich dealbhan prìobhaideach ann am postaichean"
-#: src/Module/Admin/Site.php:519
+#: src/Module/Admin/Site.php:513
msgid ""
"Don't replace locally-hosted private photos in posts with an embedded copy "
"of the image. This means that contacts who receive posts containing private "
@@ -4962,11 +4972,11 @@ msgid ""
"while."
msgstr "Na cuir lethbhreac leabaichte dhen dealbh an àite dhealbhan prìobhaideach ann am postaichean a tha ’gan òstadh gu h-ionadail. Is ciall dha seo gum feum an luchd-aithne a gheibh postaichean sa bheil dealbhan prìobhaideach ùghdarrachadh is gach dealbh a luchdadh fa leth agus dh’fhaoidte gun doir sin greis."
-#: src/Module/Admin/Site.php:520
+#: src/Module/Admin/Site.php:514
msgid "Explicit Content"
msgstr "Susbaint inbheach"
-#: src/Module/Admin/Site.php:520
+#: src/Module/Admin/Site.php:514
msgid ""
"Set this to announce that your node is used mostly for explicit content that"
" might not be suited for minors. This information will be published in the "
@@ -4975,329 +4985,319 @@ msgid ""
"will be shown at the user registration page."
msgstr "Suidhich seo a dh’innse gu bheil an nòd agad ’ga chleachdadh airson susbaint inbheach gu h-àraidh is nach eil e iomchaidh do mhion-aoisich ’s dòcha. Thèid am fiosrachadh seo fhoillseachadh ann am fiosrachadh an nòid agus gabhaidh a chleachdadh m.e. leis an eòlaire cho-naisgte airson an nòd agad a chriathradh air falbh o liosta nan nòdan a chùm ballrachd ùir. A bharrachd air sin, thèid nòta a shealltainn aig duilleag clàradh nan cleachdaichean."
-#: src/Module/Admin/Site.php:521
+#: src/Module/Admin/Site.php:515
msgid "Only local search"
msgstr ""
-#: src/Module/Admin/Site.php:521
+#: src/Module/Admin/Site.php:515
msgid ""
"Blocks search for users who are not logged in to prevent crawlers from "
"blocking your system."
msgstr ""
-#: src/Module/Admin/Site.php:522
+#: src/Module/Admin/Site.php:516
msgid "Blocked tags for trending tags"
msgstr ""
-#: src/Module/Admin/Site.php:522
+#: src/Module/Admin/Site.php:516
msgid ""
"Comma separated list of hashtags that shouldn't be displayed in the trending"
" tags."
msgstr ""
-#: src/Module/Admin/Site.php:523
+#: src/Module/Admin/Site.php:517
msgid "Cache contact avatars"
msgstr "Cuir avataran an luchd-aithne dhan tasgadan"
-#: src/Module/Admin/Site.php:523
+#: src/Module/Admin/Site.php:517
msgid ""
"Locally store the avatar pictures of the contacts. This uses a lot of "
"storage space but it increases the performance."
msgstr "Stòr dealbhan avatar an luchd-aithne gu h-ionadail. Cleachdaidh seo tòrr àite san stòras ach cuiridh e ris an dèanadas."
-#: src/Module/Admin/Site.php:524
+#: src/Module/Admin/Site.php:518
msgid "Allow Users to set remote_self"
msgstr "Leig le cleachdaichean remote_self a shuidheachadh"
-#: src/Module/Admin/Site.php:524
+#: src/Module/Admin/Site.php:518
msgid ""
"With checking this, every user is allowed to mark every contact as a "
"remote_self in the repair contact dialog. Setting this flag on a contact "
"causes mirroring every posting of that contact in the users stream."
msgstr "Ma chuireas tu cromag ris, faodaidh gach cleachdaiche neach-aithne sam bith a chomharrachadh mar remote_self ann an còmhradh càradh an luchd-aithne. Nuair a thèid a’ bhratach seo a chur ri neach-aithne, thèid a h-uile post an neach-aithne sin sgàthanachadh ann an sruth a’ chlechdaiche."
-#: src/Module/Admin/Site.php:525
+#: src/Module/Admin/Site.php:519
msgid "Allow Users to set up relay channels"
msgstr ""
-#: src/Module/Admin/Site.php:525
+#: src/Module/Admin/Site.php:519
msgid ""
"If enabled, it is possible to create relay users that are used to reshare "
"content based on user defined channels."
msgstr ""
-#: src/Module/Admin/Site.php:526
+#: src/Module/Admin/Site.php:520
msgid "Adjust the feed poll frequency"
msgstr ""
-#: src/Module/Admin/Site.php:526
+#: src/Module/Admin/Site.php:520
msgid "Automatically detect and set the best feed poll frequency."
msgstr ""
-#: src/Module/Admin/Site.php:527
+#: src/Module/Admin/Site.php:521
msgid "Minimum poll interval"
msgstr ""
-#: src/Module/Admin/Site.php:527
+#: src/Module/Admin/Site.php:521
msgid ""
"Minimal distance in minutes between two polls for mail and feed contacts. "
"Reasonable values are between 1 and 59."
msgstr ""
-#: src/Module/Admin/Site.php:528
+#: src/Module/Admin/Site.php:522
msgid "Enable multiple registrations"
msgstr "Cuir clàradh iomadach an comas"
-#: src/Module/Admin/Site.php:528
+#: src/Module/Admin/Site.php:522
msgid "Enable users to register additional accounts for use as pages."
msgstr "Bheir seo an comas dha na cleachdaichean gun clàraich iad cunntasan a bharrachd airson an cleachdadh ’nan duilleagan."
-#: src/Module/Admin/Site.php:529
+#: src/Module/Admin/Site.php:523
msgid "Enable OpenID"
msgstr "Cuir OpenID an comas"
-#: src/Module/Admin/Site.php:529
+#: src/Module/Admin/Site.php:523
msgid "Enable OpenID support for registration and logins."
msgstr "Cuir an comas taic dha OpenID airson clàradh is clàradh a-steach."
-#: src/Module/Admin/Site.php:530
+#: src/Module/Admin/Site.php:524
msgid "Enable full name check"
msgstr ""
-#: src/Module/Admin/Site.php:530
+#: src/Module/Admin/Site.php:524
msgid ""
"Prevents users from registering with a display name with fewer than two "
"parts separated by spaces."
msgstr ""
-#: src/Module/Admin/Site.php:531
+#: src/Module/Admin/Site.php:525
msgid "Email administrators on new registration"
msgstr "Cuir puist-d dha na rianairean do chlàraidhean ùra"
-#: src/Module/Admin/Site.php:531
+#: src/Module/Admin/Site.php:525
msgid ""
"If enabled and the system is set to an open registration, an email for each "
"new registration is sent to the administrators."
msgstr "Nuair a bhios seo an comas agus an siostam air a shuidheachadh air clàraidhean fosgailte, thèid post-d a chur dha na rianairean do gach clàradh ùr."
-#: src/Module/Admin/Site.php:532
+#: src/Module/Admin/Site.php:526
msgid "Community pages for visitors"
msgstr "Duilleagan coimhearsnachd do dh’aoighean"
-#: src/Module/Admin/Site.php:532
+#: src/Module/Admin/Site.php:526
msgid ""
"Which community pages should be available for visitors. Local users always "
"see both pages."
msgstr "Dè na duilleagan coimhearsnachd a chì aoighean. Chì na cleachdaichean ionadail an dà dhuilleag an-còmhnaidh."
-#: src/Module/Admin/Site.php:533
+#: src/Module/Admin/Site.php:527
msgid "Posts per user on community page"
msgstr "Postaichean gach cleachdaiche air duilleag na coimhearsnachd"
-#: src/Module/Admin/Site.php:533
+#: src/Module/Admin/Site.php:527
msgid ""
"The maximum number of posts per user on the local community page. This is "
"useful, when a single user floods the local community page."
msgstr ""
-#: src/Module/Admin/Site.php:534
+#: src/Module/Admin/Site.php:528
msgid "Posts per server on community page"
msgstr ""
-#: src/Module/Admin/Site.php:534
+#: src/Module/Admin/Site.php:528
msgid ""
"The maximum number of posts per server on the global community page. This is"
" useful, when posts from a single server flood the global community page."
msgstr ""
-#: src/Module/Admin/Site.php:536
+#: src/Module/Admin/Site.php:530
msgid "Enable Mail support"
msgstr "Cuir taic ri post-d an comas"
-#: src/Module/Admin/Site.php:536
+#: src/Module/Admin/Site.php:530
msgid ""
"Enable built-in mail support to poll IMAP folders and to reply via mail."
msgstr "Cuir an comas an taic ri post-d a thig ’na bhroinn airson pasganan IMAP a cheasnachadh agus freagairt le post-d."
-#: src/Module/Admin/Site.php:537
+#: src/Module/Admin/Site.php:531
msgid ""
"Mail support can't be enabled because the PHP IMAP module is not installed."
msgstr "Chan urrainn dhuinn an taic ri post-d a chur an comas air sgàth ’s nach deach am mòideal IMAP aig PHP a stàladh."
-#: src/Module/Admin/Site.php:538
-msgid "Enable OStatus support"
-msgstr "Cuir an taic ri OStatus an comas"
-
-#: src/Module/Admin/Site.php:538
-msgid ""
-"Enable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
-"communications in OStatus are public."
-msgstr "Cuir an comas a’ cho-chòrdalachd ri OStatus (StatusNet, GNU Social is msaa.) a thig ’na bhroinn. Bidh gach conaltradh slighe OStatus poblach."
-
-#: src/Module/Admin/Site.php:540
+#: src/Module/Admin/Site.php:533
msgid ""
"Diaspora support can't be enabled because Friendica was installed into a sub"
" directory."
msgstr "Chan urrainn dhuinn an taic ri diaspora* a chur an comas on a chaidh Friendica a stàladh ann am fo-phasgan."
-#: src/Module/Admin/Site.php:541
+#: src/Module/Admin/Site.php:534
msgid "Enable Diaspora support"
msgstr "Cuir taic ri diaspora* an comas"
-#: src/Module/Admin/Site.php:541
+#: src/Module/Admin/Site.php:534
msgid ""
"Enable built-in Diaspora network compatibility for communicating with "
"diaspora servers."
msgstr "Cuir an comas a’ cho-chòrdalachd lìonraidh le diaspora* a thig ’na bhroinn airson conaltradh le frithealaichean diaspora*."
-#: src/Module/Admin/Site.php:542
+#: src/Module/Admin/Site.php:535
msgid "Verify SSL"
msgstr "Dearbh SSL"
-#: src/Module/Admin/Site.php:542
+#: src/Module/Admin/Site.php:535
msgid ""
"If you wish, you can turn on strict certificate checking. This will mean you"
" cannot connect (at all) to self-signed SSL sites."
msgstr "Ma thogras tu, ’s urrainn dhut sgrùdadh teann nan teisteanasan a chur an comas. Is ciall dha seo nach urrainn dhut ceangal idir le làraichean le SSL a chaidh fhèin-shoidhneadh."
-#: src/Module/Admin/Site.php:543
+#: src/Module/Admin/Site.php:536
msgid "Proxy user"
msgstr "Cleachdaiche a’ phrogsaidh"
-#: src/Module/Admin/Site.php:543
+#: src/Module/Admin/Site.php:536
msgid "User name for the proxy server."
msgstr "Ainm-cleachdaiche dhan fhrithealaiche progsaidh."
-#: src/Module/Admin/Site.php:544
+#: src/Module/Admin/Site.php:537
msgid "Proxy URL"
msgstr "URL a’ phrogsaidh"
-#: src/Module/Admin/Site.php:544
+#: src/Module/Admin/Site.php:537
msgid ""
"If you want to use a proxy server that Friendica should use to connect to "
"the network, put the URL of the proxy here."
msgstr "Ma tha thu airson ’s gun cleachd Friendica frithealaiche progsaidh airson ceangal ris an lìonra, cuir URL a’ phrogsaidh an-seo."
-#: src/Module/Admin/Site.php:545
+#: src/Module/Admin/Site.php:538
msgid "Network timeout"
msgstr "Crìoch-ùine an lìonraidh"
-#: src/Module/Admin/Site.php:545
+#: src/Module/Admin/Site.php:538
msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
msgstr "Luach ann an diogan. Is ciall dha 0 nach fhalbh an ùine air idir (cha mholamaid seo)."
-#: src/Module/Admin/Site.php:546
+#: src/Module/Admin/Site.php:539
msgid "Maximum Load Average"
msgstr "Eallach as motha sa chuibheas"
-#: src/Module/Admin/Site.php:546
+#: src/Module/Admin/Site.php:539
#, php-format
msgid ""
"Maximum system load before delivery and poll processes are deferred - "
"default %d."
msgstr "Eallach as motha air an t-siostam mus dèid dàil a chur air an lìbhrigeadh is air pròiseasadh cunbhalach – ’s e %d a tha sa bhun-roghainn."
-#: src/Module/Admin/Site.php:547
+#: src/Module/Admin/Site.php:540
msgid "Minimal Memory"
msgstr "A’ chuimhne as lugha"
-#: src/Module/Admin/Site.php:547
+#: src/Module/Admin/Site.php:540
msgid ""
"Minimal free memory in MB for the worker. Needs access to /proc/meminfo - "
"default 0 (deactivated)."
msgstr "A’ chuimhne shaor as lugha ann an MB dhan obraiche. Bidh feum air inntrigeadh dha /proc/meminfo – is 0 a’ bhun-roghainn (à gnìomh)."
-#: src/Module/Admin/Site.php:548
+#: src/Module/Admin/Site.php:541
msgid "Periodically optimize tables"
msgstr "Pisich na clàran o àm gu àm"
-#: src/Module/Admin/Site.php:548
+#: src/Module/Admin/Site.php:541
msgid "Periodically optimize tables like the cache and the workerqueue"
msgstr "Pisich clàran mar an tasgadan is an ciutha-obrach gu cunbhalach"
-#: src/Module/Admin/Site.php:550
+#: src/Module/Admin/Site.php:543
msgid "Discover followers/followings from contacts"
msgstr "Lorg dàimhean leantainn on luchd-aithne"
-#: src/Module/Admin/Site.php:550
+#: src/Module/Admin/Site.php:543
msgid ""
"If enabled, contacts are checked for their followers and following contacts."
msgstr "Ma tha seo an comas, thèid sùil a thoirt airson luchd-leantainn an luchd-aithne is an fheadhainn air a leanas iad."
-#: src/Module/Admin/Site.php:551
+#: src/Module/Admin/Site.php:544
msgid "None - deactivated"
msgstr "Chan eil gin – à comas"
-#: src/Module/Admin/Site.php:552
+#: src/Module/Admin/Site.php:545
msgid ""
"Local contacts - contacts of our local contacts are discovered for their "
"followers/followings."
msgstr "Luchd-aithne ionadail – thèid dàimhean leantainn an luchd-aithne ionadail a lorg."
-#: src/Module/Admin/Site.php:553
+#: src/Module/Admin/Site.php:546
msgid ""
"Interactors - contacts of our local contacts and contacts who interacted on "
"locally visible postings are discovered for their followers/followings."
msgstr "Luchd co-luadair – thèid dàimhean leantainn an luchd-aithne ionadail agus aig an fheadhainn a rinn co-luadar le postaichean poblach a lorg."
-#: src/Module/Admin/Site.php:555
+#: src/Module/Admin/Site.php:548
msgid "Only update contacts/servers with local data"
msgstr ""
-#: src/Module/Admin/Site.php:555
+#: src/Module/Admin/Site.php:548
msgid ""
"If enabled, the system will only look for changes in contacts and servers "
"that engaged on this system by either being in a contact list of a user or "
"when posts or comments exists from the contact on this system."
msgstr ""
-#: src/Module/Admin/Site.php:556
+#: src/Module/Admin/Site.php:549
msgid "Synchronize the contacts with the directory server"
msgstr "Sioncronaich an luchd-aithne le frithealaiche an eòlaire"
-#: src/Module/Admin/Site.php:556
+#: src/Module/Admin/Site.php:549
msgid ""
"if enabled, the system will check periodically for new contacts on the "
"defined directory server."
msgstr "Ma tha seo an comas, bheir an siostam sùil gu cunbhalach airson luchd-aithne ùr air frithealaiche an eòlaire a chaidh a mhìneachadh."
-#: src/Module/Admin/Site.php:558
+#: src/Module/Admin/Site.php:551
msgid "Discover contacts from other servers"
msgstr "Lorg luchd-aithne o fhrithealaichean eile"
-#: src/Module/Admin/Site.php:558
+#: src/Module/Admin/Site.php:551
msgid ""
"Periodically query other servers for contacts and servers that they know of."
" The system queries Friendica, Mastodon and Hubzilla servers. Keep it "
"deactivated on small machines to decrease the database size and load."
msgstr ""
-#: src/Module/Admin/Site.php:559
+#: src/Module/Admin/Site.php:552
msgid "Days between requery"
msgstr "Làithean eadar ceasnachaidhean"
-#: src/Module/Admin/Site.php:559
+#: src/Module/Admin/Site.php:552
msgid ""
"Number of days after which a server is requeried for their contacts and "
"servers it knows of. This is only used when the discovery is activated."
msgstr ""
-#: src/Module/Admin/Site.php:560
+#: src/Module/Admin/Site.php:553
msgid "Search the local directory"
msgstr "Lorg san eòlaire ionadail"
-#: src/Module/Admin/Site.php:560
+#: src/Module/Admin/Site.php:553
msgid ""
"Search the local directory instead of the global directory. When searching "
"locally, every search will be executed on the global directory in the "
"background. This improves the search results when the search is repeated."
msgstr "Lorg san eòlaire ionadail seach san eòlaire cho-naisgte. Nuair a nì thu lorg gu h-ionadail, thèid gach lorg a ghnìomhachadh san eòlaire cho-naisgte sa chùlaibh. Cuiridh seo piseach air na toraidhean luirg nuair a nithear an t-aon lorg a-rithist."
-#: src/Module/Admin/Site.php:562
+#: src/Module/Admin/Site.php:555
msgid "Publish server information"
msgstr "Foillsich fiosrachadh an fhrithealaiche"
-#: src/Module/Admin/Site.php:562
+#: src/Module/Admin/Site.php:555
msgid ""
"If enabled, general server and usage data will be published. The data "
"contains the name and version of the server, number of users with public "
@@ -5305,50 +5305,50 @@ msgid ""
" href=\"http://the-federation.info/\">the-federation.info for details."
msgstr "Ma tha seo an comas, thèid dàta coitcheann mun fhrithealaiche ’s cleachdadh fhoillseachadh. Gabhaidh an dàta a-staigh ainm is tionndadh an fhrithealaiche, an àireamh de chleachdaichean le pròifilean poblach, an àireamh de phostaichean agus na pròtacalan is ceangladairean an comas. Faic the-federation.info airson barrachd fiosrachaidh."
-#: src/Module/Admin/Site.php:564
+#: src/Module/Admin/Site.php:557
msgid "Check upstream version"
msgstr "Cuir sùil air tionndadh an upstream"
-#: src/Module/Admin/Site.php:564
+#: src/Module/Admin/Site.php:557
msgid ""
"Enables checking for new Friendica versions at github. If there is a new "
"version, you will be informed in the admin panel overview."
msgstr "Cuiridh seo an comas gun dèid sùil a chur airson tionndaidhean dhe Friendica air GitHub. Nuair a bhios tionndadh ùr an, thèid innse dhut air foir-shealladh panail na rianachd."
-#: src/Module/Admin/Site.php:565
+#: src/Module/Admin/Site.php:558
msgid "Suppress Tags"
msgstr "Mùch tagaichean"
-#: src/Module/Admin/Site.php:565
+#: src/Module/Admin/Site.php:558
msgid "Suppress showing a list of hashtags at the end of the posting."
msgstr "Mùch sealladh liosta nan tagaichean hais air deireadh nam post."
-#: src/Module/Admin/Site.php:566
+#: src/Module/Admin/Site.php:559
msgid "Clean database"
msgstr "Sgioblaich an stòr-dàta"
-#: src/Module/Admin/Site.php:566
+#: src/Module/Admin/Site.php:559
msgid ""
"Remove old remote items, orphaned database records and old content from some"
" other helper tables."
msgstr "Thoir air falbh nithean cèine, reacordan stòir-dhàta a tha ’nan dìlleachdanan agus seann-susbaint eile o chuid a chlàran-taice eile."
-#: src/Module/Admin/Site.php:567
+#: src/Module/Admin/Site.php:560
msgid "Lifespan of remote items"
msgstr "Faid-bheatha nan nithean cèine"
-#: src/Module/Admin/Site.php:567
+#: src/Module/Admin/Site.php:560
msgid ""
"When the database cleanup is enabled, this defines the days after which "
"remote items will be deleted. Own items, and marked or filed items are "
"always kept. 0 disables this behaviour."
msgstr "Nuair a bhios sgioblachadh an stòir-dhàta an comas, mìnichidh seo na làithean mus dèid nithean cèine a sguabadh às. Thèid na nithean againn fhèin ’s na nithean a chaidh a chomharrachadh no fhaidhleadh a chumail an-còmhnaidh. Cuiridh 0 an giùlan seo à comas."
-#: src/Module/Admin/Site.php:568
+#: src/Module/Admin/Site.php:561
msgid "Lifespan of unclaimed items"
msgstr "Faid-bheatha nan nithean gun tagairt"
-#: src/Module/Admin/Site.php:568
+#: src/Module/Admin/Site.php:561
msgid ""
"When the database cleanup is enabled, this defines the days after which "
"unclaimed remote items (mostly content from the relay) will be deleted. "
@@ -5356,185 +5356,184 @@ msgid ""
"items if set to 0."
msgstr "Nuair a bhios sgioblachadh an stòir-dhàta an comas, mìnichidh seo na làithean mus dèid nithean gun tagairt (seo susbaint on ath-sheachadan mar as trice) a sguabadh às. ’S e 90 latha a tha sa bhun-roghainn. Ma shuidhicheas tu seo air 0, thèid luach faid-bheatha nan nithean cèine a chleachdadh mar bhun-roghainn."
-#: src/Module/Admin/Site.php:569
+#: src/Module/Admin/Site.php:562
msgid "Lifespan of raw conversation data"
msgstr "Faid-bheatha dàta amh nan còmhraidhean"
-#: src/Module/Admin/Site.php:569
+#: src/Module/Admin/Site.php:562
msgid ""
-"The conversation data is used for ActivityPub and OStatus, as well as for "
-"debug purposes. It should be safe to remove it after 14 days, default is 90 "
-"days."
-msgstr "Tha dàta nan còmhraidhean ’ga chleachdadh airson ActivityPub is OStatus agus a chùm dì-bhugachaidh. Bu chòir dha a bhith sàbhailte ma sguabas tu às às dèidh cola-deug. ’S e 90 latha a tha sa bhun-roghainn."
+"The conversation data is used for ActivityPub, as well as for debug "
+"purposes. It should be safe to remove it after 14 days, default is 90 days."
+msgstr ""
-#: src/Module/Admin/Site.php:570
+#: src/Module/Admin/Site.php:563
msgid "Maximum numbers of comments per post"
msgstr "An àireamh as motha de bheachdan ri post"
-#: src/Module/Admin/Site.php:570
+#: src/Module/Admin/Site.php:563
msgid "How much comments should be shown for each post? Default value is 100."
msgstr "Co mheud beachd a thèid a shealltainn do gach post? ’S e 100 a tha sa bhun-roghainn."
-#: src/Module/Admin/Site.php:571
+#: src/Module/Admin/Site.php:564
msgid "Maximum numbers of comments per post on the display page"
msgstr "An àireamh as motha de bheachdan ri post air duilleag na sealltainn"
-#: src/Module/Admin/Site.php:571
+#: src/Module/Admin/Site.php:564
msgid ""
"How many comments should be shown on the single view for each post? Default "
"value is 1000."
msgstr "Co mheud beachd a thèid a shealltainn do gach post nuair a sheallar post fa leth? ’S e 1000 a tha sa bhun-roghainn."
-#: src/Module/Admin/Site.php:572
+#: src/Module/Admin/Site.php:565
msgid "Items per page"
msgstr ""
-#: src/Module/Admin/Site.php:572
+#: src/Module/Admin/Site.php:565
msgid ""
"Number of items per page in stream pages (network, community, "
"profile/contact statuses, search)."
msgstr ""
-#: src/Module/Admin/Site.php:573
+#: src/Module/Admin/Site.php:566
msgid "Items per page for mobile devices"
msgstr ""
-#: src/Module/Admin/Site.php:573
+#: src/Module/Admin/Site.php:566
msgid ""
"Number of items per page in stream pages (network, community, "
"profile/contact statuses, search) for mobile devices."
msgstr ""
-#: src/Module/Admin/Site.php:574
+#: src/Module/Admin/Site.php:567
msgid "Temp path"
msgstr "Slighe shealadach"
-#: src/Module/Admin/Site.php:574
+#: src/Module/Admin/Site.php:567
msgid ""
"If you have a restricted system where the webserver can't access the system "
"temp path, enter another path here."
msgstr "Ma tha siostam cuingichte agad far nach urrainn dhan fhrithealaiche-lìn slighe temp an t-siostaim inntrigeadh, cuir a-steach slighe eile an-seo."
-#: src/Module/Admin/Site.php:575
+#: src/Module/Admin/Site.php:568
msgid "Only search in tags"
msgstr "Na lorg ach sna tagaichean"
-#: src/Module/Admin/Site.php:575
+#: src/Module/Admin/Site.php:568
msgid "On large systems the text search can slow down the system extremely."
msgstr "Air siostaman mòra, ’s urrainn dhan lorg teacsa maille mhòr a chur air an t-siostam."
-#: src/Module/Admin/Site.php:576
+#: src/Module/Admin/Site.php:569
msgid "Limited search scope"
msgstr ""
-#: src/Module/Admin/Site.php:576
+#: src/Module/Admin/Site.php:569
msgid ""
"If enabled, searches will only be performed in the data used for the "
"channels and not in all posts."
msgstr ""
-#: src/Module/Admin/Site.php:577
+#: src/Module/Admin/Site.php:570
msgid "Maximum age of items in the search table"
msgstr ""
-#: src/Module/Admin/Site.php:577
+#: src/Module/Admin/Site.php:570
msgid ""
"Maximum age of items in the search table in days. Lower values will increase"
" the performance and reduce disk usage. 0 means no age restriction."
msgstr ""
-#: src/Module/Admin/Site.php:578
+#: src/Module/Admin/Site.php:571
msgid "Generate counts per contact circle when calculating network count"
msgstr "Cruthaich cunntasan do chearcallan luchd-aithne nuair a thèid cunntas an lìonraidh àireamhachadh"
-#: src/Module/Admin/Site.php:578
+#: src/Module/Admin/Site.php:571
msgid ""
"On systems with users that heavily use contact circles the query can be very"
" expensive."
msgstr "Air siostaman far an bheil tòrr chearcallan luchd-aithne ’gan cleachdadh, faodaidh a’ cheist seo a bhith glè dhaor."
-#: src/Module/Admin/Site.php:579
+#: src/Module/Admin/Site.php:572
msgid "Process \"view\" activities"
msgstr ""
-#: src/Module/Admin/Site.php:579
+#: src/Module/Admin/Site.php:572
msgid ""
"\"view\" activities are mostly geberated by Peertube systems. Per default "
"they are not processed for performance reasons. Only activate this option on"
" performant system."
msgstr ""
-#: src/Module/Admin/Site.php:580
+#: src/Module/Admin/Site.php:573
msgid "Days, after which a contact is archived"
msgstr ""
-#: src/Module/Admin/Site.php:580
+#: src/Module/Admin/Site.php:573
msgid ""
"Number of days that we try to deliver content or to update the contact data "
"before we archive a contact."
msgstr ""
-#: src/Module/Admin/Site.php:582
+#: src/Module/Admin/Site.php:575
msgid "Maximum number of parallel workers"
msgstr "An àireamh as motha de dh’obraichean co-shìnte"
-#: src/Module/Admin/Site.php:582
+#: src/Module/Admin/Site.php:575
#, php-format
msgid ""
"On shared hosters set this to %d. On larger systems, values of %d are great."
" Default value is %d."
msgstr "Suidhich seo air %d air òstairean co-roinnte. Air siostaman nas motha, bidh luach %d math. Is %d a’ bhun-roghainn."
-#: src/Module/Admin/Site.php:583
+#: src/Module/Admin/Site.php:576
msgid "Maximum load for workers"
msgstr ""
-#: src/Module/Admin/Site.php:583
+#: src/Module/Admin/Site.php:576
msgid "Maximum load that causes a cooldown before each worker function call."
msgstr ""
-#: src/Module/Admin/Site.php:584
+#: src/Module/Admin/Site.php:577
msgid "Enable fastlane"
msgstr "Cuir fastlane an comas"
-#: src/Module/Admin/Site.php:584
+#: src/Module/Admin/Site.php:577
msgid ""
"When enabed, the fastlane mechanism starts an additional worker if processes"
" with higher priority are blocked by processes of lower priority."
msgstr "Nuair a bhios seo an comas, cuiridh am fastlane obraiche a bharrachd air dòigh ma tha pròiseas air a bheil prìomhachas as àirde ’ga bhacadh le pròiseasan air a bheil prìomhachas ìosal."
-#: src/Module/Admin/Site.php:585
+#: src/Module/Admin/Site.php:578
msgid "Decoupled receiver"
msgstr ""
-#: src/Module/Admin/Site.php:585
+#: src/Module/Admin/Site.php:578
msgid ""
"Decouple incoming ActivityPub posts by processing them in the background via"
" a worker process. Only enable this on fast systems."
msgstr ""
-#: src/Module/Admin/Site.php:586
+#: src/Module/Admin/Site.php:579
msgid "Cron interval"
msgstr ""
-#: src/Module/Admin/Site.php:586
+#: src/Module/Admin/Site.php:579
msgid "Minimal period in minutes between two calls of the \"Cron\" worker job."
msgstr ""
-#: src/Module/Admin/Site.php:587
+#: src/Module/Admin/Site.php:580
msgid "Worker defer limit"
msgstr ""
-#: src/Module/Admin/Site.php:587
+#: src/Module/Admin/Site.php:580
msgid ""
"Per default the systems tries delivering for 15 times before dropping it."
msgstr ""
-#: src/Module/Admin/Site.php:588
+#: src/Module/Admin/Site.php:581
msgid "Worker fetch limit"
msgstr ""
-#: src/Module/Admin/Site.php:588
+#: src/Module/Admin/Site.php:581
msgid ""
"Number of worker tasks that are fetched in a single query. Higher values "
"should increase the performance, too high values will mostly likely decrease"
@@ -5542,214 +5541,214 @@ msgid ""
"system."
msgstr ""
-#: src/Module/Admin/Site.php:590
+#: src/Module/Admin/Site.php:583
msgid "Direct relay transfer"
msgstr "Tar-chur ath-sheachadain dìreach"
-#: src/Module/Admin/Site.php:590
+#: src/Module/Admin/Site.php:583
msgid ""
"Enables the direct transfer to other servers without using the relay servers"
msgstr "Cuiridh seo an comas an tar-chur dìreach gu frithealaichean eile às aonais nam frithealaichean ath-sheachadain"
-#: src/Module/Admin/Site.php:591
+#: src/Module/Admin/Site.php:584
msgid "Relay scope"
msgstr "Sgòp an ath-sheachadain"
-#: src/Module/Admin/Site.php:591
+#: src/Module/Admin/Site.php:584
msgid ""
"Can be \"all\" or \"tags\". \"all\" means that every public post should be "
"received. \"tags\" means that only posts with selected tags should be "
"received."
msgstr "Tha taghadh eadar “na h-uile” is “tagaichean” agad. Is ciall dha “na h-uile” gun dèid gach post poblach fhaighinn. Is ciall dha “tagaichean” nach dèid ach postaichean le tagaichean sònraichte fhaighinn."
-#: src/Module/Admin/Site.php:591 src/Module/Contact/Profile.php:328
-#: src/Module/Settings/TwoFactor/Index.php:146
+#: src/Module/Admin/Site.php:584 src/Module/Contact/Profile.php:314
+#: src/Module/Settings/TwoFactor/Index.php:132
msgid "Disabled"
msgstr "À comas"
-#: src/Module/Admin/Site.php:591
+#: src/Module/Admin/Site.php:584
msgid "all"
msgstr "na h-uile"
-#: src/Module/Admin/Site.php:591
+#: src/Module/Admin/Site.php:584
msgid "tags"
msgstr "tagaichean"
-#: src/Module/Admin/Site.php:592
+#: src/Module/Admin/Site.php:585
msgid "Server tags"
msgstr "Tagaichean an fhrithealaiche"
-#: src/Module/Admin/Site.php:592
+#: src/Module/Admin/Site.php:585
msgid "Comma separated list of tags for the \"tags\" subscription."
msgstr "Liosta de thagaichean airson fo-sgrìobhadh nan “tagaichean”, sgaraichte le cromagan."
-#: src/Module/Admin/Site.php:593
+#: src/Module/Admin/Site.php:586
msgid "Deny Server tags"
msgstr "Tagaichean an fhrithealaiche ’gan diùltadh"
-#: src/Module/Admin/Site.php:593
+#: src/Module/Admin/Site.php:586
msgid "Comma separated list of tags that are rejected."
msgstr "Liosta da thagaichean a tha ’gan diùltadh, sgaraichte le cromagan."
-#: src/Module/Admin/Site.php:594
+#: src/Module/Admin/Site.php:587
msgid "Maximum amount of tags"
msgstr ""
-#: src/Module/Admin/Site.php:594
+#: src/Module/Admin/Site.php:587
msgid ""
"Maximum amount of tags in a post before it is rejected as spam. The post has"
" to contain at least one link. Posts from subscribed accounts will not be "
"rejected."
msgstr ""
-#: src/Module/Admin/Site.php:595
+#: src/Module/Admin/Site.php:588
msgid "Allow user tags"
msgstr "Ceadaich tagaichean chleachdaichean"
-#: src/Module/Admin/Site.php:595
+#: src/Module/Admin/Site.php:588
msgid ""
"If enabled, the tags from the saved searches will used for the \"tags\" "
"subscription in addition to the \"relay_server_tags\"."
msgstr "Ma tha seo an comas, thèid na tagaichean o na lorgan air an sàbhaladh a chleachdadh airson fo-sgrìobhadh nan “tagaichean” a bharrachd air na “relay_server_tags”."
-#: src/Module/Admin/Site.php:596
+#: src/Module/Admin/Site.php:589
msgid "Deny undetected languages"
msgstr ""
-#: src/Module/Admin/Site.php:596
+#: src/Module/Admin/Site.php:589
msgid "If enabled, posts with undetected languages will be rejected."
msgstr ""
-#: src/Module/Admin/Site.php:597
+#: src/Module/Admin/Site.php:590
msgid "Language Quality"
msgstr ""
-#: src/Module/Admin/Site.php:597
+#: src/Module/Admin/Site.php:590
msgid "The minimum language quality that is required to accept the post."
msgstr ""
-#: src/Module/Admin/Site.php:598
+#: src/Module/Admin/Site.php:591
msgid "Number of languages for the language detection"
msgstr ""
-#: src/Module/Admin/Site.php:598
+#: src/Module/Admin/Site.php:591
msgid ""
"The system detects a list of languages per post. Only if the desired "
"languages are in the list, the message will be accepted. The higher the "
"number, the more posts will be falsely detected."
msgstr ""
-#: src/Module/Admin/Site.php:600
+#: src/Module/Admin/Site.php:593
msgid "Maximum age of channel"
msgstr ""
-#: src/Module/Admin/Site.php:600
+#: src/Module/Admin/Site.php:593
msgid ""
"This defines the maximum age in hours of items that should be displayed in "
"channels. This affects the channel performance."
msgstr ""
-#: src/Module/Admin/Site.php:601
+#: src/Module/Admin/Site.php:594
msgid "Maximum number of channel posts"
msgstr ""
-#: src/Module/Admin/Site.php:601
+#: src/Module/Admin/Site.php:594
msgid ""
"For performance reasons, the channels use a dedicated table to store "
"content. The higher the value the slower the channels."
msgstr ""
-#: src/Module/Admin/Site.php:602
+#: src/Module/Admin/Site.php:595
msgid "Interaction score days"
msgstr ""
-#: src/Module/Admin/Site.php:602
+#: src/Module/Admin/Site.php:595
msgid "Number of days that are used to calculate the interaction score."
msgstr ""
-#: src/Module/Admin/Site.php:603
+#: src/Module/Admin/Site.php:596
msgid "Maximum number of posts per author"
msgstr ""
-#: src/Module/Admin/Site.php:603
+#: src/Module/Admin/Site.php:596
msgid ""
"Maximum number of posts per page by author if the contact frequency is set "
"to \"Display only few posts\". If there are more posts, then the post with "
"the most interactions will be displayed."
msgstr ""
-#: src/Module/Admin/Site.php:604
+#: src/Module/Admin/Site.php:597
msgid "Sharer interaction days"
msgstr ""
-#: src/Module/Admin/Site.php:604
+#: src/Module/Admin/Site.php:597
msgid ""
"Number of days of the last interaction that are used to define which sharers"
" are used for the \"sharers of sharers\" channel."
msgstr ""
-#: src/Module/Admin/Site.php:607
+#: src/Module/Admin/Site.php:600
msgid "Start Relocation"
msgstr "Tòisich air an imrich"
-#: src/Module/Admin/Storage.php:46
+#: src/Module/Admin/Storage.php:32
#, php-format
msgid "Storage backend, %s is invalid."
msgstr "Backend an stòrais, tha %s mì-dhligheach."
-#: src/Module/Admin/Storage.php:73
+#: src/Module/Admin/Storage.php:59
#, php-format
msgid "Storage backend %s error: %s"
msgstr "Mearachd backend an stòrais %s: %s"
-#: src/Module/Admin/Storage.php:84 src/Module/Admin/Storage.php:87
+#: src/Module/Admin/Storage.php:70 src/Module/Admin/Storage.php:73
msgid "Invalid storage backend setting value."
msgstr "Luach roghainne mì-dhligheach air backend an stòrais."
-#: src/Module/Admin/Storage.php:139
+#: src/Module/Admin/Storage.php:125
msgid "Current Storage Backend"
msgstr "Backend làithreach an stòrais"
-#: src/Module/Admin/Storage.php:140
+#: src/Module/Admin/Storage.php:126
msgid "Storage Configuration"
msgstr "Rèiteachadh an stòrais"
-#: src/Module/Admin/Storage.php:141 src/Module/BaseAdmin.php:91
+#: src/Module/Admin/Storage.php:127 src/Module/BaseAdmin.php:77
msgid "Storage"
msgstr "An stòras"
-#: src/Module/Admin/Storage.php:143
+#: src/Module/Admin/Storage.php:129
msgid "Save & Use storage backend"
msgstr "Sàbhail ⁊ cleachd backend an stòrais"
-#: src/Module/Admin/Storage.php:144
+#: src/Module/Admin/Storage.php:130
msgid "Use storage backend"
msgstr "Cleachd backend an stòrais"
-#: src/Module/Admin/Storage.php:145
+#: src/Module/Admin/Storage.php:131
msgid "Save & Reload"
msgstr "Sàbhail ⁊ ath-luchdaich"
-#: src/Module/Admin/Storage.php:146
+#: src/Module/Admin/Storage.php:132
msgid "This backend doesn't have custom settings"
msgstr "Chan eil roghainnean gnàthaichte aig a’ backend seo"
-#: src/Module/Admin/Storage.php:148
+#: src/Module/Admin/Storage.php:134
msgid ""
"Changing the current backend is prohibited because it is set by an "
"environment variable"
msgstr "Chan fhaod thu am backend làithreach atharrachadh on a chaidh a shuidheachadh le caochladair àrainne"
-#: src/Module/Admin/Storage.php:150
+#: src/Module/Admin/Storage.php:136
msgid "Database (legacy)"
msgstr "Stòr-dàta (dìleabach)"
-#: src/Module/Admin/Summary.php:55
+#: src/Module/Admin/Summary.php:41
#, php-format
msgid "Template engine (%s) error: %s"
msgstr "Mearachd einnsean teamplaide (%s): %s"
-#: src/Module/Admin/Summary.php:59
+#: src/Module/Admin/Summary.php:45
#, php-format
msgid ""
"Your DB still runs with MyISAM tables. You should change the engine type to "
@@ -5760,7 +5759,7 @@ msgid ""
" an automatic conversion..htconfig.php
. Faic duilleag taic an rèiteachaidh airson cuideachadh leis a’ ghluasad."
-#: src/Module/Admin/Summary.php:118
+#: src/Module/Admin/Summary.php:104
#, php-format
msgid ""
"Friendica's configuration now is stored in config/local.config.php, please "
@@ -5836,7 +5835,7 @@ msgid ""
"page for help with the transition."
msgstr "Tha rèiteachadh Friendica ’ga stòradh ann an config/local.config.php a-nis, dèan lethbhreac dhe config/local-sample.config.php is gluais an rèiteachadh agad o config/local.ini.php
. Faic duilleag taic an rèiteachaidh airson cuideachadh leis a’ ghluasad."
-#: src/Module/Admin/Summary.php:124
+#: src/Module/Admin/Summary.php:110
#, php-format
msgid ""
"%s is not reachable on your system. This is a severe "
@@ -5844,107 +5843,107 @@ msgid ""
"href=\"%s\">the installation page for help."
msgstr "Cha ghabh %s ruigsinn on t-siostam agad. Seo droch-dhuilgheadas leis an rèiteachadh nach leig leis an fhrithealaiche conaltradh le frithealaichean eile. Faic duilleag an stàlaidh airson cuideachadh."
-#: src/Module/Admin/Summary.php:148
+#: src/Module/Admin/Summary.php:134
#, php-format
msgid ""
"Friendica's system.basepath was updated from '%s' to '%s'. Please remove the"
" system.basepath from your db to avoid differences."
msgstr "Chaidh an system.basepath aig Friendica ùrachadh o “%s” gu “%s”. Thoir air falbh system.basepath on stòr-dàta agad ach nach biodh diofar eatorra."
-#: src/Module/Admin/Summary.php:156
+#: src/Module/Admin/Summary.php:142
#, php-format
msgid ""
"Friendica's current system.basepath '%s' is wrong and the config file '%s' "
"isn't used."
msgstr "Tha an system.basepath làithreach “%s” aig Friendica ceàrr is chan eil am faidhle rèiteachaidh “%s” ’ga chleachdadh."
-#: src/Module/Admin/Summary.php:164
+#: src/Module/Admin/Summary.php:150
#, php-format
msgid ""
"Friendica's current system.basepath '%s' is not equal to the config file "
"'%s'. Please fix your configuration."
msgstr "Chan eil an system.basepath làithreach “%s” co-ionnan ris an fhaidhle rèiteachaidh “%s”. Càirich an rèiteachadh agad."
-#: src/Module/Admin/Summary.php:175
+#: src/Module/Admin/Summary.php:161
msgid "Message queues"
msgstr "Ciuthan theachdaireachdan"
-#: src/Module/Admin/Summary.php:181
+#: src/Module/Admin/Summary.php:167
msgid "Server Settings"
msgstr "Roghainnean an fhrithealaiche"
-#: src/Module/Admin/Summary.php:199
+#: src/Module/Admin/Summary.php:185
msgid "Version"
msgstr "Tionndadh"
-#: src/Module/Admin/Summary.php:203
+#: src/Module/Admin/Summary.php:189
msgid "Active addons"
msgstr "Tuilleadain ghnìomhach"
-#: src/Module/Admin/Themes/Details.php:63 src/Module/Admin/Themes/Index.php:71
+#: src/Module/Admin/Themes/Details.php:49 src/Module/Admin/Themes/Index.php:57
#, php-format
msgid "Theme %s disabled."
msgstr "Chaidh an t-ùrlar %s a chur à comas."
-#: src/Module/Admin/Themes/Details.php:65 src/Module/Admin/Themes/Index.php:73
+#: src/Module/Admin/Themes/Details.php:51 src/Module/Admin/Themes/Index.php:59
#, php-format
msgid "Theme %s successfully enabled."
msgstr "Chaidh an t-ùrlar %s a chur an comas."
-#: src/Module/Admin/Themes/Details.php:67 src/Module/Admin/Themes/Index.php:75
+#: src/Module/Admin/Themes/Details.php:53 src/Module/Admin/Themes/Index.php:61
#, php-format
msgid "Theme %s failed to install."
msgstr "Dh’fhàillig le stàladh an ùrlair %s."
-#: src/Module/Admin/Themes/Details.php:89
+#: src/Module/Admin/Themes/Details.php:75
msgid "Screenshot"
msgstr "Glacadh-sgrìn"
-#: src/Module/Admin/Themes/Details.php:97
-#: src/Module/Admin/Themes/Index.php:118 src/Module/BaseAdmin.php:93
+#: src/Module/Admin/Themes/Details.php:83
+#: src/Module/Admin/Themes/Index.php:104 src/Module/BaseAdmin.php:79
msgid "Themes"
msgstr "Ùrlaran"
-#: src/Module/Admin/Themes/Embed.php:80
+#: src/Module/Admin/Themes/Embed.php:66
msgid "Unknown theme."
msgstr "Ùrlar nach aithne dhuinn."
-#: src/Module/Admin/Themes/Index.php:57
+#: src/Module/Admin/Themes/Index.php:43
msgid "Themes reloaded"
msgstr "Chaidh na h-ùrlaran ath-luchdadh"
-#: src/Module/Admin/Themes/Index.php:120
+#: src/Module/Admin/Themes/Index.php:106
msgid "Reload active themes"
msgstr "Ath-luchdaich na h-ùrlaran gnìomhach"
-#: src/Module/Admin/Themes/Index.php:124
+#: src/Module/Admin/Themes/Index.php:110
#, php-format
msgid "No themes found on the system. They should be placed in %1$s"
msgstr "Cha deach ùrlar a lorg air an t-siostam. Bu chòir dhut an cur am broinn %1$s"
-#: src/Module/Admin/Themes/Index.php:125
+#: src/Module/Admin/Themes/Index.php:111
msgid "[Experimental]"
msgstr "[Deuchainneil]"
-#: src/Module/Admin/Themes/Index.php:126
+#: src/Module/Admin/Themes/Index.php:112
msgid "[Unsupported]"
msgstr "[Chan eil taic ris]"
-#: src/Module/Admin/Tos.php:79
+#: src/Module/Admin/Tos.php:65
msgid "Display Terms of Service"
msgstr "Seall teirmichean na seirbheise"
-#: src/Module/Admin/Tos.php:79
+#: src/Module/Admin/Tos.php:65
msgid ""
"Enable the Terms of Service page. If this is enabled a link to the terms "
"will be added to the registration form and the general information page."
msgstr "Cuir an comas duilleag teirmichean na seirbheise. Ma tha seo an comas, thèid ceangal dha na teirmichean a chur ris an fhoirm clàraidh is ri duilleag an fhiosrachaidh choitchinn."
-#: src/Module/Admin/Tos.php:80
+#: src/Module/Admin/Tos.php:66
msgid "Display Privacy Statement"
msgstr "Seall an aithris prìobhaideachd"
-#: src/Module/Admin/Tos.php:80
+#: src/Module/Admin/Tos.php:66
#, php-format
msgid ""
"Show some informations regarding the needed information to operate the node "
@@ -5952,160 +5951,160 @@ msgid ""
"noreferrer\">EU-GDPR."
msgstr "Seall fiosrachadh a thaobh an fhiosrachaidh riatanaich ach an obraich an nòd, can a-rèir EU-GDPR."
-#: src/Module/Admin/Tos.php:81
+#: src/Module/Admin/Tos.php:67
msgid "Privacy Statement Preview"
msgstr "Ro-shealladh air an aithris prìobhaideachd"
-#: src/Module/Admin/Tos.php:83
+#: src/Module/Admin/Tos.php:69
msgid "The Terms of Service"
msgstr "Teirmichean na seirbheise"
-#: src/Module/Admin/Tos.php:83
+#: src/Module/Admin/Tos.php:69
msgid ""
"Enter the Terms of Service for your node here. You can use BBCode. Headers "
"of sections should be [h2] and below."
msgstr "Cuir a-steach teirmichean seirbheis an nòid agad an-seo. ’S urrainn dhut BBCode a chleachdadh. Bu chòir dha cheann-sgrìobhaidhean nan earrannan a bhith ’nan [h2] is nas ìsle."
-#: src/Module/Admin/Tos.php:84
+#: src/Module/Admin/Tos.php:70
msgid "The rules"
msgstr "Na riaghailtean"
-#: src/Module/Admin/Tos.php:84
+#: src/Module/Admin/Tos.php:70
msgid "Enter your system rules here. Each line represents one rule."
msgstr "Cuir a-steach riaghailtean an t-siostaim agad an-seo. Riochdaichidh gach loidhne riaghailt."
-#: src/Module/Api/ApiResponse.php:293
+#: src/Module/Api/ApiResponse.php:279
#, php-format
msgid "API endpoint %s %s is not implemented but might be in the future."
msgstr "Cha deach puing-dheiridh %s %s an API prògramachadh ach ’s dòcha gun dèid san àm ri teachd."
-#: src/Module/Api/Mastodon/Apps.php:73
+#: src/Module/Api/Mastodon/Apps.php:59
msgid "Missing parameters"
msgstr "Paramadairean a dhìth"
-#: src/Module/Api/Mastodon/Statuses/Bookmark.php:50
+#: src/Module/Api/Mastodon/Statuses/Bookmark.php:36
msgid "Only starting posts can be bookmarked"
msgstr "Cha ghabh ach postaichean-toisich a chur ris na comharran-lìn"
-#: src/Module/Api/Mastodon/Statuses/Mute.php:51
+#: src/Module/Api/Mastodon/Statuses/Mute.php:37
msgid "Only starting posts can be muted"
msgstr "Cha ghabh ach postaichean-toisich a mhùchadh"
-#: src/Module/Api/Mastodon/Statuses/Reblog.php:58
+#: src/Module/Api/Mastodon/Statuses/Reblog.php:44
#, php-format
msgid "Posts from %s can't be shared"
msgstr "Cha ghabh postaichean o %s a co-roinneadh"
-#: src/Module/Api/Mastodon/Statuses/Unbookmark.php:51
+#: src/Module/Api/Mastodon/Statuses/Unbookmark.php:37
msgid "Only starting posts can be unbookmarked"
msgstr "Cha ghabh ach postaichean-toisich a thoirt air falbh o na comharran-lìn"
-#: src/Module/Api/Mastodon/Statuses/Unmute.php:51
+#: src/Module/Api/Mastodon/Statuses/Unmute.php:37
msgid "Only starting posts can be unmuted"
msgstr "Cha ghabh ach postaichean-toisich a dhì-mhùchadh"
-#: src/Module/Api/Mastodon/Statuses/Unreblog.php:64
+#: src/Module/Api/Mastodon/Statuses/Unreblog.php:50
#, php-format
msgid "Posts from %s can't be unshared"
msgstr "Cha ghabh sgur de cho-roinneadh phostaichean o %s"
-#: src/Module/Api/Twitter/ContactEndpoint.php:66
+#: src/Module/Api/Twitter/ContactEndpoint.php:52
msgid "Contact not found"
msgstr "Cha deach an neach-aithne a lorg"
-#: src/Module/Apps.php:62
+#: src/Module/Apps.php:48
msgid "No installed applications."
msgstr "Cha deach aplacaid a stàladh."
-#: src/Module/Apps.php:67
+#: src/Module/Apps.php:53
msgid "Applications"
msgstr "Aplacaidean"
-#: src/Module/Attach.php:49 src/Module/Attach.php:61
+#: src/Module/Attach.php:35 src/Module/Attach.php:47
msgid "Item was not found."
msgstr "Cha deach an nì a lorg."
-#: src/Module/BaseAdmin.php:54 src/Module/BaseAdmin.php:58
-#: src/Module/BaseModeration.php:77 src/Module/BaseModeration.php:81
+#: src/Module/BaseAdmin.php:40 src/Module/BaseAdmin.php:44
+#: src/Module/BaseModeration.php:63 src/Module/BaseModeration.php:67
msgid "Please login to continue."
msgstr "Clàraich a-steach airson leantainn air adhart."
-#: src/Module/BaseAdmin.php:63
+#: src/Module/BaseAdmin.php:49
msgid "You don't have access to administration pages."
msgstr "Chan eil inntrigeadh agad air duilleagan na rianachd."
-#: src/Module/BaseAdmin.php:67
+#: src/Module/BaseAdmin.php:53
msgid ""
"Submanaged account can't access the administration pages. Please log back in"
" as the main account."
msgstr "Chan urrainn dhan cunntas ’ga fho-stiùireadh duilleagan na rianachd inntrigeadh. Clàraich a-steach leis a’ phrìomh-chunntas."
-#: src/Module/BaseAdmin.php:86 src/Module/BaseModeration.php:109
+#: src/Module/BaseAdmin.php:72 src/Module/BaseModeration.php:95
msgid "Overview"
msgstr "Foir-shealladh"
-#: src/Module/BaseAdmin.php:89 src/Module/BaseModeration.php:112
+#: src/Module/BaseAdmin.php:75 src/Module/BaseModeration.php:98
msgid "Configuration"
msgstr "Rèiteachadh"
-#: src/Module/BaseAdmin.php:94 src/Module/BaseSettings.php:110
+#: src/Module/BaseAdmin.php:80 src/Module/BaseSettings.php:96
msgid "Additional features"
msgstr "Gleusan a bharrachd"
-#: src/Module/BaseAdmin.php:97
+#: src/Module/BaseAdmin.php:83
msgid "Database"
msgstr "Stòr-dàta"
-#: src/Module/BaseAdmin.php:98
+#: src/Module/BaseAdmin.php:84
msgid "DB updates"
msgstr "Ùrachaidhean an stòir-dhàta"
-#: src/Module/BaseAdmin.php:99
+#: src/Module/BaseAdmin.php:85
msgid "Inspect Deferred Workers"
msgstr "Sgrùd na h-obraichean dàilichte"
-#: src/Module/BaseAdmin.php:100
+#: src/Module/BaseAdmin.php:86
msgid "Inspect worker Queue"
msgstr "Sgrùd ciutha nan obraichean"
-#: src/Module/BaseAdmin.php:106 src/Module/BaseModeration.php:120
+#: src/Module/BaseAdmin.php:92 src/Module/BaseModeration.php:106
msgid "Diagnostics"
msgstr "Diagnosachd"
-#: src/Module/BaseAdmin.php:107
+#: src/Module/BaseAdmin.php:93
msgid "PHP Info"
msgstr "Fiosrachadh PHP"
-#: src/Module/BaseAdmin.php:108
+#: src/Module/BaseAdmin.php:94
msgid "probe address"
msgstr "sgrùd an seòladh"
-#: src/Module/BaseAdmin.php:109
+#: src/Module/BaseAdmin.php:95
msgid "check webfinger"
msgstr "thoir sùil air webfinger"
-#: src/Module/BaseAdmin.php:110
+#: src/Module/BaseAdmin.php:96
msgid "Babel"
msgstr "Babel"
-#: src/Module/BaseAdmin.php:111 src/Module/Debug/ActivityPubConversion.php:143
+#: src/Module/BaseAdmin.php:97 src/Module/Debug/ActivityPubConversion.php:129
msgid "ActivityPub Conversion"
msgstr "Iompachadh ActivityPub"
-#: src/Module/BaseAdmin.php:120
+#: src/Module/BaseAdmin.php:106
msgid "Addon Features"
msgstr "Gleusan tuilleadain"
-#: src/Module/BaseAdmin.php:121 src/Module/BaseModeration.php:129
+#: src/Module/BaseAdmin.php:107 src/Module/BaseModeration.php:115
msgid "User registrations waiting for confirmation"
msgstr "Clàraichean chleachdaichean a’ feitheamh air dearbhadh"
-#: src/Module/BaseApi.php:455 src/Module/BaseApi.php:471
-#: src/Module/BaseApi.php:487
+#: src/Module/BaseApi.php:441 src/Module/BaseApi.php:457
+#: src/Module/BaseApi.php:473
msgid "Too Many Requests"
msgstr "Cus iarrtasan"
-#: src/Module/BaseApi.php:456
+#: src/Module/BaseApi.php:442
#, php-format
msgid "Daily posting limit of %d post reached. The post was rejected."
msgid_plural "Daily posting limit of %d posts reached. The post was rejected."
@@ -6114,7 +6113,7 @@ msgstr[1] "Ràinig thu a’ chrìoch de %d phost gach latha. Chaidh am post a dh
msgstr[2] "Ràinig thu a’ chrìoch de %d postaichean gach latha. Chaidh am post a dhiùltadh."
msgstr[3] "Ràinig thu a’ chrìoch de %d post gach latha. Chaidh am post a dhiùltadh."
-#: src/Module/BaseApi.php:472
+#: src/Module/BaseApi.php:458
#, php-format
msgid "Weekly posting limit of %d post reached. The post was rejected."
msgid_plural ""
@@ -6124,7 +6123,7 @@ msgstr[1] "Ràinig thu a’ chrìoch de %d phost gach seachdain. Chaidh am post
msgstr[2] "Ràinig thu a’ chrìoch de %d postaichean gach seachdain. Chaidh am post a dhiùltadh."
msgstr[3] "Ràinig thu a’ chrìoch de %d post gach seachdain. Chaidh am post a dhiùltadh."
-#: src/Module/BaseApi.php:488
+#: src/Module/BaseApi.php:474
#, php-format
msgid "Monthly posting limit of %d post reached. The post was rejected."
msgid_plural ""
@@ -6134,84 +6133,84 @@ msgstr[1] "Ràinig thu a’ chrìoch de %d phost gach mìos. Chaidh am post a dh
msgstr[2] "Ràinig thu a’ chrìoch de %d postaichean gach mìos. Chaidh am post a dhiùltadh."
msgstr[3] "Ràinig thu a’ chrìoch de %d post gach mìos. Chaidh am post a dhiùltadh."
-#: src/Module/BaseModeration.php:86
+#: src/Module/BaseModeration.php:72
msgid "You don't have access to moderation pages."
msgstr ""
-#: src/Module/BaseModeration.php:90
+#: src/Module/BaseModeration.php:76
msgid ""
"Submanaged account can't access the moderation pages. Please log back in as "
"the main account."
msgstr ""
-#: src/Module/BaseModeration.php:110 src/Module/Moderation/Reports.php:115
+#: src/Module/BaseModeration.php:96 src/Module/Moderation/Reports.php:101
msgid "Reports"
msgstr ""
-#: src/Module/BaseModeration.php:113 src/Module/Moderation/Users/Index.php:148
-#: src/Module/Moderation/Users/Index.php:158
+#: src/Module/BaseModeration.php:99 src/Module/Moderation/Users/Index.php:134
+#: src/Module/Moderation/Users/Index.php:144
msgid "Users"
msgstr "Cleachdaichean"
-#: src/Module/BaseModeration.php:115
+#: src/Module/BaseModeration.php:101
msgid "Tools"
msgstr "Innealan"
-#: src/Module/BaseModeration.php:116
+#: src/Module/BaseModeration.php:102
msgid "Contact Blocklist"
msgstr "Liosta-bhacaidh an luchd-aithne"
-#: src/Module/BaseModeration.php:117
+#: src/Module/BaseModeration.php:103
msgid "Server Blocklist"
msgstr "Liosta-bhacaidh an fhrithealaiche"
-#: src/Module/BaseModeration.php:118 src/Module/Moderation/Item/Delete.php:62
+#: src/Module/BaseModeration.php:104 src/Module/Moderation/Item/Delete.php:48
msgid "Delete Item"
msgstr "Sguab às an nì"
-#: src/Module/BaseModeration.php:121 src/Module/Moderation/Item/Source.php:82
+#: src/Module/BaseModeration.php:107 src/Module/Moderation/Item/Source.php:68
msgid "Item Source"
msgstr "Tùs an nì"
-#: src/Module/BaseProfile.php:52 src/Module/Contact.php:513
+#: src/Module/BaseProfile.php:38 src/Module/Contact.php:488
msgid "Profile Details"
msgstr "Fiosrachadh na pròifil"
-#: src/Module/BaseProfile.php:60
+#: src/Module/BaseProfile.php:46
msgid "Conversations started"
msgstr "Còmhraidhean air an tòiseachadh"
-#: src/Module/BaseProfile.php:111
+#: src/Module/BaseProfile.php:97
msgid "Only You Can See This"
msgstr "Chan fhaic ach thu fhèin seo"
-#: src/Module/BaseProfile.php:116 src/Module/Profile/Schedule.php:81
+#: src/Module/BaseProfile.php:102 src/Module/Profile/Schedule.php:67
msgid "Scheduled Posts"
msgstr "Postaichean air an sgeideal"
-#: src/Module/BaseProfile.php:119
+#: src/Module/BaseProfile.php:105
msgid "Posts that are scheduled for publishing"
msgstr "Postaichean a tha air an sgeideal airson foillseachadh"
-#: src/Module/BaseProfile.php:138 src/Module/BaseProfile.php:141
+#: src/Module/BaseProfile.php:124 src/Module/BaseProfile.php:127
msgid "Tips for New Members"
msgstr "Gliocasan dha na buill ùra"
-#: src/Module/BaseSearch.php:71
+#: src/Module/BaseSearch.php:57
#, php-format
msgid "People Search - %s"
msgstr "Lorg daoine – %s"
-#: src/Module/BaseSearch.php:75
+#: src/Module/BaseSearch.php:61
#, php-format
msgid "Group Search - %s"
msgstr "Lorg sna buidhnean – %s"
-#: src/Module/BaseSearch.php:121 src/Module/Contact/MatchInterests.php:140
+#: src/Module/BaseSearch.php:107 src/Module/Contact/MatchInterests.php:136
msgid "No matches"
msgstr "Gun mhaids"
-#: src/Module/BaseSearch.php:147
+#: src/Module/BaseSearch.php:133
#, php-format
msgid ""
"%d result was filtered out because your node blocks the domain it is "
@@ -6226,267 +6225,267 @@ msgstr[1] "Chaidh %d thoradh a chriathradh air falbh on a tha an nòd agad a’
msgstr[2] "Chaidh %d toraidhean a chriathradh air falbh on a tha an nòd agad a’ bacadh na h-àrainne air a bheil iad clàraichte. Chì thu liosta nan àrainnean a tha ’gam bacadh leis an nòd agad air an duilleag “Mu dheidhinn”."
msgstr[3] "Chaidh %d toradh a chriathradh air falbh on a tha an nòd agad a’ bacadh na h-àrainne air a bheil iad clàraichte. Chì thu liosta nan àrainnean a tha ’gam bacadh leis an nòd agad air an duilleag “Mu dheidhinn”."
-#: src/Module/BaseSettings.php:78
+#: src/Module/BaseSettings.php:64
msgid "Account"
msgstr "Cunntas"
-#: src/Module/BaseSettings.php:85 src/Module/Security/TwoFactor/Verify.php:96
-#: src/Module/Settings/TwoFactor/Index.php:138
+#: src/Module/BaseSettings.php:71 src/Module/Security/TwoFactor/Verify.php:82
+#: src/Module/Settings/TwoFactor/Index.php:124
msgid "Two-factor authentication"
msgstr "Dearbhadh dà-cheumnach"
-#: src/Module/BaseSettings.php:118
+#: src/Module/BaseSettings.php:104
msgid "Display"
msgstr "Sealladh"
-#: src/Module/BaseSettings.php:132 src/Module/Settings/Connectors.php:213
+#: src/Module/BaseSettings.php:118 src/Module/Settings/Connectors.php:195
msgid "Social Networks"
msgstr "Lìonraidhean sòisealta"
-#: src/Module/BaseSettings.php:146 src/Module/Settings/Delegation.php:194
+#: src/Module/BaseSettings.php:132 src/Module/Settings/Delegation.php:180
msgid "Manage Accounts"
msgstr "Stiùir na cunntasan"
-#: src/Module/BaseSettings.php:153
+#: src/Module/BaseSettings.php:139
msgid "Connected apps"
msgstr "Aplacaidean ceangailte"
-#: src/Module/BaseSettings.php:160
+#: src/Module/BaseSettings.php:146
msgid "Remote servers"
msgstr ""
-#: src/Module/BaseSettings.php:167 src/Module/Settings/UserExport.php:98
+#: src/Module/BaseSettings.php:153 src/Module/Settings/UserExport.php:84
msgid "Export personal data"
msgstr "Às-phortaich an dàta pearsanta"
-#: src/Module/BaseSettings.php:174
+#: src/Module/BaseSettings.php:160
msgid "Remove account"
msgstr "Thoir air falbh an cunntas"
-#: src/Module/Bookmarklet.php:54
+#: src/Module/Bookmarklet.php:40
msgid "This page is missing a url parameter."
msgstr "Tha paramadair URL a dhìth air an duilleag seo."
-#: src/Module/Bookmarklet.php:66
+#: src/Module/Bookmarklet.php:52
msgid "The post was created"
msgstr "Chaidh am post a chruthachadh"
-#: src/Module/Calendar/Event/API.php:100 src/Module/Calendar/Event/API.php:135
-#: src/Module/Calendar/Event/Form.php:80
+#: src/Module/Calendar/Event/API.php:86 src/Module/Calendar/Event/API.php:121
+#: src/Module/Calendar/Event/Form.php:66
msgid "Invalid Request"
msgstr "Iarrtas mì-dhligheach"
-#: src/Module/Calendar/Event/API.php:109
+#: src/Module/Calendar/Event/API.php:95
msgid "Event id is missing."
msgstr "Tha ID an tachartais a dhìth."
-#: src/Module/Calendar/Event/API.php:131
+#: src/Module/Calendar/Event/API.php:117
msgid "Failed to remove event"
msgstr "Cha deach leinn an tachartas a thoirt air falbh"
-#: src/Module/Calendar/Event/API.php:187 src/Module/Calendar/Event/API.php:189
+#: src/Module/Calendar/Event/API.php:173 src/Module/Calendar/Event/API.php:175
msgid "Event can not end before it has started."
msgstr "Chan urrainn do thachartas crìochnachadh mus tòisich e."
-#: src/Module/Calendar/Event/API.php:196 src/Module/Calendar/Event/API.php:198
+#: src/Module/Calendar/Event/API.php:182 src/Module/Calendar/Event/API.php:184
msgid "Event title and start time are required."
msgstr "Tha feum air tiotal is àm tòiseachaidh an tachartais."
-#: src/Module/Calendar/Event/Form.php:208
+#: src/Module/Calendar/Event/Form.php:194
msgid "Starting date and Title are required."
msgstr "Tha feum air àm tòiseachaidh is tiotal."
-#: src/Module/Calendar/Event/Form.php:209
-#: src/Module/Calendar/Event/Form.php:214
+#: src/Module/Calendar/Event/Form.php:195
+#: src/Module/Calendar/Event/Form.php:200
msgid "Event Starts:"
msgstr "Tòisichidh an tachartas:"
-#: src/Module/Calendar/Event/Form.php:209
-#: src/Module/Calendar/Event/Form.php:237 src/Module/Debug/Probe.php:59
-#: src/Module/Install.php:201 src/Module/Install.php:227
-#: src/Module/Install.php:232 src/Module/Install.php:246
-#: src/Module/Install.php:255 src/Module/Install.php:260
-#: src/Module/Install.php:266 src/Module/Install.php:271
-#: src/Module/Install.php:285 src/Module/Install.php:298
-#: src/Module/Install.php:325
-#: src/Module/Moderation/Blocklist/Server/Add.php:136
-#: src/Module/Moderation/Blocklist/Server/Add.php:138
-#: src/Module/Moderation/Blocklist/Server/Import.php:129
-#: src/Module/Moderation/Blocklist/Server/Index.php:86
-#: src/Module/Moderation/Blocklist/Server/Index.php:87
-#: src/Module/Moderation/Blocklist/Server/Index.php:115
-#: src/Module/Moderation/Blocklist/Server/Index.php:116
-#: src/Module/Moderation/Item/Delete.php:67 src/Module/Register.php:155
-#: src/Module/Security/TwoFactor/Verify.php:101
-#: src/Module/Settings/Channels.php:190 src/Module/Settings/Channels.php:211
-#: src/Module/Settings/TwoFactor/Index.php:161
-#: src/Module/Settings/TwoFactor/Verify.php:158
+#: src/Module/Calendar/Event/Form.php:195
+#: src/Module/Calendar/Event/Form.php:223 src/Module/Debug/Probe.php:45
+#: src/Module/Install.php:187 src/Module/Install.php:213
+#: src/Module/Install.php:218 src/Module/Install.php:232
+#: src/Module/Install.php:241 src/Module/Install.php:246
+#: src/Module/Install.php:252 src/Module/Install.php:257
+#: src/Module/Install.php:271 src/Module/Install.php:284
+#: src/Module/Install.php:311
+#: src/Module/Moderation/Blocklist/Server/Add.php:122
+#: src/Module/Moderation/Blocklist/Server/Add.php:124
+#: src/Module/Moderation/Blocklist/Server/Import.php:113
+#: src/Module/Moderation/Blocklist/Server/Index.php:72
+#: src/Module/Moderation/Blocklist/Server/Index.php:73
+#: src/Module/Moderation/Blocklist/Server/Index.php:101
+#: src/Module/Moderation/Blocklist/Server/Index.php:102
+#: src/Module/Moderation/Item/Delete.php:53 src/Module/Register.php:141
+#: src/Module/Security/TwoFactor/Verify.php:87
+#: src/Module/Settings/Channels.php:176 src/Module/Settings/Channels.php:197
+#: src/Module/Settings/TwoFactor/Index.php:147
+#: src/Module/Settings/TwoFactor/Verify.php:144
msgid "Required"
msgstr "Riatanach"
-#: src/Module/Calendar/Event/Form.php:223
-#: src/Module/Calendar/Event/Form.php:247
+#: src/Module/Calendar/Event/Form.php:209
+#: src/Module/Calendar/Event/Form.php:233
msgid "Finish date/time is not known or not relevant"
msgstr "Chan eil fhios dè an t-àm crìochnachaidh no chan eil e iomchaidh"
-#: src/Module/Calendar/Event/Form.php:225
-#: src/Module/Calendar/Event/Form.php:230
+#: src/Module/Calendar/Event/Form.php:211
+#: src/Module/Calendar/Event/Form.php:216
msgid "Event Finishes:"
msgstr "Thig an tachartas gu crìoch:"
-#: src/Module/Calendar/Event/Form.php:237
-#: src/Module/Calendar/Event/Form.php:243
+#: src/Module/Calendar/Event/Form.php:223
+#: src/Module/Calendar/Event/Form.php:229
msgid "Title (BBCode not allowed)"
msgstr "Tiotal (chan eil BBCode ceadaichte)"
-#: src/Module/Calendar/Event/Form.php:239
+#: src/Module/Calendar/Event/Form.php:225
msgid "Description (BBCode allowed)"
msgstr "Tuairisgeul (tha BBCode ceadaichte)"
-#: src/Module/Calendar/Event/Form.php:241
+#: src/Module/Calendar/Event/Form.php:227
msgid "Location (BBCode not allowed)"
msgstr "Ionad (chan eil BBCode ceadaichte)"
-#: src/Module/Calendar/Event/Form.php:244
-#: src/Module/Calendar/Event/Form.php:245
+#: src/Module/Calendar/Event/Form.php:230
+#: src/Module/Calendar/Event/Form.php:231
msgid "Share this event"
msgstr "Co-roinn an tachartas seo"
-#: src/Module/Calendar/Event/Form.php:251 src/Module/Profile/Profile.php:277
+#: src/Module/Calendar/Event/Form.php:237 src/Module/Profile/Profile.php:263
msgid "Basic"
msgstr "Bunasach"
-#: src/Module/Calendar/Export.php:94
+#: src/Module/Calendar/Export.php:80
msgid "This calendar format is not supported"
msgstr "Chan eil taic ri fòrmat a’ mhìosachain seo"
-#: src/Module/Calendar/Export.php:96
+#: src/Module/Calendar/Export.php:82
msgid "No exportable data found"
msgstr "Cha deach dàta a ghabhas às-phortadh a lorg"
-#: src/Module/Calendar/Export.php:113
+#: src/Module/Calendar/Export.php:99
msgid "calendar"
msgstr "mìosachan"
-#: src/Module/Calendar/Show.php:124
+#: src/Module/Calendar/Show.php:110
msgid "Events"
msgstr "Tachartasan"
-#: src/Module/Calendar/Show.php:125
+#: src/Module/Calendar/Show.php:111
msgid "View"
msgstr "Seall"
-#: src/Module/Calendar/Show.php:126
+#: src/Module/Calendar/Show.php:112
msgid "Create New Event"
msgstr "Cruthaich tachartas ùr"
-#: src/Module/Calendar/Show.php:132 src/Module/Settings/Display.php:297
+#: src/Module/Calendar/Show.php:118 src/Module/Settings/Display.php:283
msgid "list"
msgstr "liosta"
-#: src/Module/Circle.php:57
+#: src/Module/Circle.php:43
msgid "Could not create circle."
msgstr "Cha b’ urrainn dhuinn an cearcall a chruthachadh."
-#: src/Module/Circle.php:68 src/Module/Circle.php:216
-#: src/Module/Circle.php:240
+#: src/Module/Circle.php:54 src/Module/Circle.php:202
+#: src/Module/Circle.php:226
msgid "Circle not found."
msgstr "Cha deach an cearcall a lorg."
-#: src/Module/Circle.php:74
+#: src/Module/Circle.php:60
msgid "Circle name was not changed."
msgstr "Cha deach ainm a’ chearcaill atharrachadh."
-#: src/Module/Circle.php:92
+#: src/Module/Circle.php:78
msgid "Unknown circle."
msgstr "Cearcall nach aithne dhuinn."
-#: src/Module/Circle.php:98 src/Module/Circle.php:107
-#: src/Module/Contact/Advanced.php:70 src/Module/Contact/Advanced.php:109
-#: src/Module/Contact/Contacts.php:71 src/Module/Contact/Conversations.php:86
-#: src/Module/Contact/Conversations.php:91
-#: src/Module/Contact/Conversations.php:96 src/Module/Contact/Media.php:61
-#: src/Module/Contact/Posts.php:78 src/Module/Contact/Posts.php:83
-#: src/Module/Contact/Posts.php:88 src/Module/Contact/Profile.php:159
-#: src/Module/Contact/Profile.php:164 src/Module/Contact/Profile.php:183
-#: src/Module/Contact/Redir.php:91 src/Module/Contact/Redir.php:145
-#: src/Module/FriendSuggest.php:71 src/Module/FriendSuggest.php:109
+#: src/Module/Circle.php:84 src/Module/Circle.php:93
+#: src/Module/Contact/Advanced.php:56 src/Module/Contact/Advanced.php:95
+#: src/Module/Contact/Contacts.php:57 src/Module/Contact/Conversations.php:72
+#: src/Module/Contact/Conversations.php:77
+#: src/Module/Contact/Conversations.php:82 src/Module/Contact/Media.php:47
+#: src/Module/Contact/Posts.php:64 src/Module/Contact/Posts.php:69
+#: src/Module/Contact/Posts.php:74 src/Module/Contact/Profile.php:145
+#: src/Module/Contact/Profile.php:150 src/Module/Contact/Profile.php:169
+#: src/Module/Contact/Redir.php:77 src/Module/Contact/Redir.php:131
+#: src/Module/FriendSuggest.php:57 src/Module/FriendSuggest.php:95
msgid "Contact not found."
msgstr "Cha deach an neach-aithne a lorg."
-#: src/Module/Circle.php:102 src/Module/Contact/Contacts.php:66
+#: src/Module/Circle.php:88 src/Module/Contact/Contacts.php:52
msgid "Invalid contact."
msgstr "Neach-aithne mì-dhligheach."
-#: src/Module/Circle.php:111 src/Module/Contact/Revoke.php:70
+#: src/Module/Circle.php:97 src/Module/Contact/Revoke.php:56
msgid "Contact is deleted."
msgstr "Chaidh an neach-aithne a sguabadh às."
-#: src/Module/Circle.php:117
+#: src/Module/Circle.php:103
msgid "Unable to add the contact to the circle."
msgstr "Cha deach leinn an neach-aithne a chur ris a’ chearcall."
-#: src/Module/Circle.php:120
+#: src/Module/Circle.php:106
msgid "Contact successfully added to circle."
msgstr "Chaidh an neach-aithne a chur ris a’ chearcall."
-#: src/Module/Circle.php:124
+#: src/Module/Circle.php:110
msgid "Unable to remove the contact from the circle."
msgstr "Cha deach leinn an neach-aithne a thoirt air falbh on chearcall."
-#: src/Module/Circle.php:127
+#: src/Module/Circle.php:113
msgid "Contact successfully removed from circle."
msgstr "Chaidh an neach-aithne a thoirt air falbh on chearcall."
-#: src/Module/Circle.php:131
+#: src/Module/Circle.php:117
msgid "Bad request."
msgstr "Droch-iarrtas."
-#: src/Module/Circle.php:172
+#: src/Module/Circle.php:158
msgid "Save Circle"
msgstr "Sàbhail an cearcall"
-#: src/Module/Circle.php:173
+#: src/Module/Circle.php:159
msgid "Filter"
msgstr "Criathrag"
-#: src/Module/Circle.php:179
+#: src/Module/Circle.php:165
msgid "Create a circle of contacts/friends."
msgstr "Cruthaich cearcall luchd-aithne/charaidean."
-#: src/Module/Circle.php:221
+#: src/Module/Circle.php:207
msgid "Unable to remove circle."
msgstr "Cha deach leinn an cearcall a thoirt air falbh."
-#: src/Module/Circle.php:272
+#: src/Module/Circle.php:258
msgid "Delete Circle"
msgstr "Sguab às an cearcall"
-#: src/Module/Circle.php:282
+#: src/Module/Circle.php:268
msgid "Edit Circle Name"
msgstr "Deasaich ainm a’ chearcaill"
-#: src/Module/Circle.php:292
+#: src/Module/Circle.php:278
msgid "Members"
msgstr "Buill"
-#: src/Module/Circle.php:295
+#: src/Module/Circle.php:281
msgid "Circle is empty"
msgstr "Tha an cearcall falamh"
-#: src/Module/Circle.php:311
+#: src/Module/Circle.php:297
msgid "Remove contact from circle"
msgstr "Thoir air falbh an neach-aithne on chearcall"
-#: src/Module/Circle.php:334
+#: src/Module/Circle.php:320
msgid "Click on a contact to add or remove."
msgstr "Briog air neach-aithne gus a chur ris no a thoirt air falbh."
-#: src/Module/Circle.php:351
+#: src/Module/Circle.php:337
msgid "Add contact to circle"
msgstr "Cuir an neach-aithne ris a’ chearcall"
-#: src/Module/Contact.php:102
+#: src/Module/Contact.php:88
#, php-format
msgid "%d contact edited."
msgid_plural "%d contacts edited."
@@ -6495,192 +6494,192 @@ msgstr[1] "Chaidh %d luchd-aithne a dheasachadh."
msgstr[2] "Chaidh %d luchd-aithne a dheasachadh."
msgstr[3] "Chaidh %d luchd-aithne a dheasachadh."
-#: src/Module/Contact.php:353
+#: src/Module/Contact.php:328
msgid "Show all contacts"
msgstr "Seall an luchd-aithne gu lèir"
-#: src/Module/Contact.php:358 src/Module/Contact.php:437
-#: src/Module/Moderation/BaseUsers.php:85
+#: src/Module/Contact.php:333 src/Module/Contact.php:412
+#: src/Module/Moderation/BaseUsers.php:72
msgid "Pending"
msgstr "Ri dhèiligeadh"
-#: src/Module/Contact.php:361
+#: src/Module/Contact.php:336
msgid "Only show pending contacts"
msgstr "Na seall ach an luchd-aithne ri dhèiligeadh"
-#: src/Module/Contact.php:366 src/Module/Contact.php:440
-#: src/Module/Moderation/BaseUsers.php:93
+#: src/Module/Contact.php:341 src/Module/Contact.php:415
+#: src/Module/Moderation/BaseUsers.php:80
msgid "Blocked"
msgstr "’Ga bhacadh"
-#: src/Module/Contact.php:369
+#: src/Module/Contact.php:344
msgid "Only show blocked contacts"
msgstr "Na seall ach an luchd-aithne bacte"
-#: src/Module/Contact.php:374 src/Module/Contact.php:446
-#: src/Module/Settings/Server/Index.php:107 src/Object/Post.php:399
+#: src/Module/Contact.php:349 src/Module/Contact.php:421
+#: src/Module/Settings/Server/Index.php:93 src/Object/Post.php:385
msgid "Ignored"
msgstr "’Ga leigeil seachad"
-#: src/Module/Contact.php:377
+#: src/Module/Contact.php:352
msgid "Only show ignored contacts"
msgstr "Na seall ach an luchd-aithne ’gan leigeil seachad"
-#: src/Module/Contact.php:382 src/Module/Contact.php:449
+#: src/Module/Contact.php:357 src/Module/Contact.php:424
msgid "Collapsed"
msgstr "’Ga cho-theannachadh"
-#: src/Module/Contact.php:385
+#: src/Module/Contact.php:360
msgid "Only show collapsed contacts"
msgstr "Na seall ach an luchd-aithne co-theannaichte"
-#: src/Module/Contact.php:390 src/Module/Contact.php:452
+#: src/Module/Contact.php:365 src/Module/Contact.php:427
msgid "Archived"
msgstr "San tasg-lann"
-#: src/Module/Contact.php:393
+#: src/Module/Contact.php:368
msgid "Only show archived contacts"
msgstr "Na seall ach an luchd-aithne san tasg-lann"
-#: src/Module/Contact.php:398 src/Module/Contact.php:443
+#: src/Module/Contact.php:373 src/Module/Contact.php:418
msgid "Hidden"
msgstr "Falaichte"
-#: src/Module/Contact.php:401
+#: src/Module/Contact.php:376
msgid "Only show hidden contacts"
msgstr "Na seall ach an luchd-aithne falaichte"
-#: src/Module/Contact.php:409
+#: src/Module/Contact.php:384
msgid "Organize your contact circles"
msgstr "Cuir rian air cearcallan an luchd-aithne agad"
-#: src/Module/Contact.php:464
+#: src/Module/Contact.php:439
msgid "Search your contacts"
msgstr "Lorg san luchd-aithne agad"
-#: src/Module/Contact.php:465 src/Module/Search/Index.php:207
+#: src/Module/Contact.php:440 src/Module/Search/Index.php:193
#, php-format
msgid "Results for: %s"
msgstr "Toraidhean airson: %s"
-#: src/Module/Contact.php:473
+#: src/Module/Contact.php:448
msgid "Update"
msgstr "Ùraich"
-#: src/Module/Contact.php:474 src/Module/Contact/Profile.php:532
-#: src/Module/Moderation/Blocklist/Contact.php:117
-#: src/Module/Moderation/Users/Blocked.php:138
-#: src/Module/Moderation/Users/Index.php:154
+#: src/Module/Contact.php:449 src/Module/Contact/Profile.php:518
+#: src/Module/Moderation/Blocklist/Contact.php:103
+#: src/Module/Moderation/Users/Blocked.php:124
+#: src/Module/Moderation/Users/Index.php:140
msgid "Unblock"
msgstr "Dì-bhac"
-#: src/Module/Contact.php:475 src/Module/Contact/Profile.php:540
+#: src/Module/Contact.php:450 src/Module/Contact/Profile.php:526
msgid "Unignore"
msgstr "Na leig seachad tuilleadh"
-#: src/Module/Contact.php:476 src/Module/Contact/Profile.php:548
+#: src/Module/Contact.php:451 src/Module/Contact/Profile.php:534
msgid "Uncollapse"
msgstr "Na co-theannaich tuilleadh"
-#: src/Module/Contact.php:478
+#: src/Module/Contact.php:453
msgid "Batch Actions"
msgstr "Gnìomhan ’nan grunnan"
-#: src/Module/Contact.php:521
+#: src/Module/Contact.php:496
msgid "Conversations started by this contact"
msgstr "Na còmhraidhean a thòisich an neach-aithne seo"
-#: src/Module/Contact.php:526
+#: src/Module/Contact.php:501
msgid "Posts and Comments"
msgstr "Postaichean ’s beachdan"
-#: src/Module/Contact.php:529
+#: src/Module/Contact.php:504
msgid "Individual Posts and Replies"
msgstr "Postaichean ’s freagairtean fa leth"
-#: src/Module/Contact.php:537
+#: src/Module/Contact.php:512
msgid "Posts containing media objects"
msgstr "Postaichean sa bheil nithean meadhain"
-#: src/Module/Contact.php:545
+#: src/Module/Contact.php:520
msgid "View all known contacts"
msgstr "Seall a h-uile neach-aithne as aithne dhut"
-#: src/Module/Contact.php:556
+#: src/Module/Contact.php:531
msgid "Advanced Contact Settings"
msgstr "Roghainnean adhartach an luchd-aithne"
-#: src/Module/Contact.php:592
+#: src/Module/Contact.php:567
msgid "Mutual Friendship"
msgstr "Co-dhàimh"
-#: src/Module/Contact.php:596
+#: src/Module/Contact.php:571
msgid "is a fan of yours"
msgstr "dealasach ort"
-#: src/Module/Contact.php:600
+#: src/Module/Contact.php:575
msgid "you are a fan of"
msgstr "tha thu dealasach air"
-#: src/Module/Contact.php:618
+#: src/Module/Contact.php:593
msgid "Pending outgoing contact request"
msgstr "Iarrtas neach-aithne a-mach gun dèiligeadh"
-#: src/Module/Contact.php:620
+#: src/Module/Contact.php:595
msgid "Pending incoming contact request"
msgstr "Iarrtas neach-aithne a-steach ri dhèiligeadh"
-#: src/Module/Contact.php:633 src/Module/Contact/Profile.php:391
+#: src/Module/Contact.php:608 src/Module/Contact/Profile.php:377
#, php-format
msgid "Visit %s's profile [%s]"
msgstr "Tadhail air a’ phròifil aig %s [%s]"
-#: src/Module/Contact/Advanced.php:99
+#: src/Module/Contact/Advanced.php:85
msgid "Contact update failed."
msgstr "Dh’fhàillig ùrachadh an neach-aithne."
-#: src/Module/Contact/Advanced.php:130
+#: src/Module/Contact/Advanced.php:116
msgid "Return to contact editor"
msgstr "Air ais gu deasaiche an neach-aithne"
-#: src/Module/Contact/Advanced.php:134
-#: src/Module/Moderation/Blocklist/Contact.php:122
-#: src/Module/Moderation/Reports.php:116
-#: src/Module/Moderation/Users/Active.php:126
-#: src/Module/Moderation/Users/Blocked.php:126
-#: src/Module/Moderation/Users/Create.php:70
-#: src/Module/Moderation/Users/Deleted.php:83
-#: src/Module/Moderation/Users/Index.php:140
-#: src/Module/Moderation/Users/Index.php:160
-#: src/Module/Moderation/Users/Pending.php:99 src/Module/Settings/OAuth.php:72
+#: src/Module/Contact/Advanced.php:120
+#: src/Module/Moderation/Blocklist/Contact.php:108
+#: src/Module/Moderation/Reports.php:102
+#: src/Module/Moderation/Users/Active.php:112
+#: src/Module/Moderation/Users/Blocked.php:112
+#: src/Module/Moderation/Users/Create.php:56
+#: src/Module/Moderation/Users/Deleted.php:69
+#: src/Module/Moderation/Users/Index.php:126
+#: src/Module/Moderation/Users/Index.php:146
+#: src/Module/Moderation/Users/Pending.php:85 src/Module/Settings/OAuth.php:58
msgid "Name"
msgstr "Ainm"
-#: src/Module/Contact/Advanced.php:135
+#: src/Module/Contact/Advanced.php:121
msgid "Account Nickname"
msgstr "Far-ainm a’ chunntais"
-#: src/Module/Contact/Advanced.php:136
+#: src/Module/Contact/Advanced.php:122
msgid "Account URL"
msgstr "URL a’ chunntais"
-#: src/Module/Contact/Advanced.php:137
+#: src/Module/Contact/Advanced.php:123
msgid "Poll/Feed URL"
msgstr "URL a’ chunntais-bheachd/an inbhir"
-#: src/Module/Contact/Advanced.php:138
+#: src/Module/Contact/Advanced.php:124
msgid "New photo from this URL"
msgstr "Dealbh ùr on URL seo"
-#: src/Module/Contact/Contacts.php:89
+#: src/Module/Contact/Contacts.php:75
msgid "No known contacts."
msgstr "Chan eil luchd-aithne ann."
-#: src/Module/Contact/Contacts.php:103 src/Module/Profile/Common.php:128
+#: src/Module/Contact/Contacts.php:89 src/Module/Profile/Common.php:114
msgid "No common contacts."
msgstr "Chan eil neach-aithne an cumantas ann."
-#: src/Module/Contact/Contacts.php:115 src/Module/Profile/Contacts.php:135
+#: src/Module/Contact/Contacts.php:101 src/Module/Profile/Contacts.php:121
#, php-format
msgid "Follower (%s)"
msgid_plural "Followers (%s)"
@@ -6689,7 +6688,7 @@ msgstr[1] "Luchd-leantainn (%s)"
msgstr[2] "Luchd-leantainn (%s)"
msgstr[3] "Luchd-leantainn (%s)"
-#: src/Module/Contact/Contacts.php:119 src/Module/Profile/Contacts.php:138
+#: src/Module/Contact/Contacts.php:105 src/Module/Profile/Contacts.php:124
#, php-format
msgid "Following (%s)"
msgid_plural "Following (%s)"
@@ -6698,7 +6697,7 @@ msgstr[1] "A’ leantainn (%s)"
msgstr[2] "A’ leantainn (%s)"
msgstr[3] "A’ leantainn (%s)"
-#: src/Module/Contact/Contacts.php:123 src/Module/Profile/Contacts.php:141
+#: src/Module/Contact/Contacts.php:109 src/Module/Profile/Contacts.php:127
#, php-format
msgid "Mutual friend (%s)"
msgid_plural "Mutual friends (%s)"
@@ -6707,12 +6706,12 @@ msgstr[1] "Co-dhàimhean (%s)"
msgstr[2] "Co-dhàimhean (%s)"
msgstr[3] "Co-dhàimhean (%s)"
-#: src/Module/Contact/Contacts.php:125 src/Module/Profile/Contacts.php:143
+#: src/Module/Contact/Contacts.php:111 src/Module/Profile/Contacts.php:129
#, php-format
msgid "These contacts both follow and are followed by %s."
msgstr "Tha an luchd-aithne seo an dà chuid a’ leantainn ’s ’gan leantainn le %s."
-#: src/Module/Contact/Contacts.php:131 src/Module/Profile/Common.php:116
+#: src/Module/Contact/Contacts.php:117 src/Module/Profile/Common.php:102
#, php-format
msgid "Common contact (%s)"
msgid_plural "Common contacts (%s)"
@@ -6721,14 +6720,14 @@ msgstr[1] "Luchd-aithne an cumantas (%s)"
msgstr[2] "Luchd-aithne an cumantas (%s)"
msgstr[3] "Luchd-aithne an cumantas (%s)"
-#: src/Module/Contact/Contacts.php:133 src/Module/Profile/Common.php:118
+#: src/Module/Contact/Contacts.php:119 src/Module/Profile/Common.php:104
#, php-format
msgid ""
"Both %s and yourself have publicly interacted with these "
"contacts (follow, comment or likes on public posts)."
msgstr "Rinn thu fhèin agus %s co-luadar gu poblach leis an luchd-aithne seo (leantainn, beachd air no gur toigh leibh post poblach)."
-#: src/Module/Contact/Contacts.php:139 src/Module/Profile/Contacts.php:149
+#: src/Module/Contact/Contacts.php:125 src/Module/Profile/Contacts.php:135
#, php-format
msgid "Contact (%s)"
msgid_plural "Contacts (%s)"
@@ -6737,333 +6736,329 @@ msgstr[1] "Luchd-aithne (%s)"
msgstr[2] "Luchd-aithne (%s)"
msgstr[3] "Luchd-aithne (%s)"
-#: src/Module/Contact/Follow.php:70 src/Module/Contact/Redir.php:59
-#: src/Module/Contact/Redir.php:220 src/Module/Conversation/Community.php:166
-#: src/Module/Debug/ItemBody.php:38 src/Module/Diaspora/Receive.php:59
-#: src/Module/Item/Display.php:96 src/Module/Item/Feed.php:59
-#: src/Module/Item/Follow.php:41 src/Module/Item/Ignore.php:41
-#: src/Module/Item/Language.php:53 src/Module/Item/Pin.php:41
-#: src/Module/Item/Pin.php:56 src/Module/Item/Searchtext.php:53
-#: src/Module/Item/Star.php:42 src/Module/Update/Display.php:37
+#: src/Module/Contact/Follow.php:56 src/Module/Contact/Redir.php:45
+#: src/Module/Contact/Redir.php:206 src/Module/Conversation/Community.php:154
+#: src/Module/Debug/ItemBody.php:24 src/Module/Diaspora/Receive.php:45
+#: src/Module/Item/Display.php:82 src/Module/Item/Feed.php:45
+#: src/Module/Item/Follow.php:27 src/Module/Item/Ignore.php:27
+#: src/Module/Item/Language.php:39 src/Module/Item/Pin.php:27
+#: src/Module/Item/Pin.php:42 src/Module/Item/Searchtext.php:39
+#: src/Module/Item/Star.php:28 src/Module/Update/Display.php:23
msgid "Access denied."
msgstr "Chaidh inntrigeadh a dhiùltadh."
-#: src/Module/Contact/Follow.php:105 src/Module/Contact/Unfollow.php:125
-#: src/Module/Profile/RemoteFollow.php:133
+#: src/Module/Contact/Follow.php:91 src/Module/Contact/Unfollow.php:111
+#: src/Module/Profile/RemoteFollow.php:119
msgid "Submit Request"
msgstr "Cuir an t-iarrtas a-null"
-#: src/Module/Contact/Follow.php:115
+#: src/Module/Contact/Follow.php:101
msgid "You already added this contact."
msgstr "Chuir thu an neach-aithne seo ris mu thràth."
-#: src/Module/Contact/Follow.php:130
+#: src/Module/Contact/Follow.php:116
msgid "The network type couldn't be detected. Contact can't be added."
msgstr "Cha do mhothaich sinn do sheòrsa an lìonraidh. Cha b’ urrainn dhuinn an neach-aithne a chur ris."
-#: src/Module/Contact/Follow.php:138
+#: src/Module/Contact/Follow.php:124
msgid "Diaspora support isn't enabled. Contact can't be added."
msgstr "Chan eil taic ri diaspora* an comas. Cha b’ urrainn dhuinn an neach-aithne a chur ris."
-#: src/Module/Contact/Follow.php:143
-msgid "OStatus support is disabled. Contact can't be added."
-msgstr "Chan eil taic ri OStatus an comas. Cha b’ urrainn dhuinn an neach-aithne a chur ris."
-
-#: src/Module/Contact/Follow.php:168 src/Module/Profile/RemoteFollow.php:132
+#: src/Module/Contact/Follow.php:149 src/Module/Profile/RemoteFollow.php:118
msgid "Please answer the following:"
msgstr "Freagair seo:"
-#: src/Module/Contact/Follow.php:169 src/Module/Contact/Unfollow.php:123
+#: src/Module/Contact/Follow.php:150 src/Module/Contact/Unfollow.php:109
msgid "Your Identity Address:"
msgstr "Seòladh do dhearbh-aithne:"
-#: src/Module/Contact/Follow.php:170 src/Module/Contact/Profile.php:422
-#: src/Module/Contact/Unfollow.php:129
-#: src/Module/Moderation/Blocklist/Contact.php:131
-#: src/Module/Moderation/Reports.php:123
-#: src/Module/Notifications/Introductions.php:135
-#: src/Module/Notifications/Introductions.php:204
+#: src/Module/Contact/Follow.php:151 src/Module/Contact/Profile.php:408
+#: src/Module/Contact/Unfollow.php:115
+#: src/Module/Moderation/Blocklist/Contact.php:117
+#: src/Module/Moderation/Reports.php:109
+#: src/Module/Notifications/Introductions.php:121
+#: src/Module/Notifications/Introductions.php:190
msgid "Profile URL"
msgstr "URL na pròifile"
-#: src/Module/Contact/Follow.php:171 src/Module/Contact/Profile.php:434
-#: src/Module/Notifications/Introductions.php:197
-#: src/Module/Profile/Profile.php:236
+#: src/Module/Contact/Follow.php:152 src/Module/Contact/Profile.php:420
+#: src/Module/Notifications/Introductions.php:183
+#: src/Module/Profile/Profile.php:222
msgid "Tags:"
msgstr "Tagaichean:"
-#: src/Module/Contact/Follow.php:182
+#: src/Module/Contact/Follow.php:163
#, php-format
msgid "%s knows you"
msgstr "Is aithne dha %s thu"
-#: src/Module/Contact/Follow.php:183
+#: src/Module/Contact/Follow.php:164
msgid "Add a personal note:"
msgstr "Cuir nòta pearsanta ris:"
-#: src/Module/Contact/Follow.php:192 src/Module/Contact/Unfollow.php:138
+#: src/Module/Contact/Follow.php:173 src/Module/Contact/Unfollow.php:124
msgid "Posts and Replies"
msgstr "Postaichean ’s freagairtean"
-#: src/Module/Contact/Follow.php:221
+#: src/Module/Contact/Follow.php:202
msgid "The contact could not be added."
msgstr "Cha b’ urrainn dhuinn an neach-aithne a chur ris."
-#: src/Module/Contact/MatchInterests.php:95
-#: src/Module/Media/Attachment/Upload.php:77
-#: src/Module/Media/Attachment/Upload.php:82
-#: src/Module/Media/Photo/Upload.php:81 src/Module/Media/Photo/Upload.php:86
-#: src/Module/Media/Photo/Upload.php:135
+#: src/Module/Contact/MatchInterests.php:81
+#: src/Module/Media/Attachment/Upload.php:63
+#: src/Module/Media/Attachment/Upload.php:68
+#: src/Module/Media/Photo/Upload.php:67 src/Module/Media/Photo/Upload.php:72
+#: src/Module/Media/Photo/Upload.php:121
msgid "Invalid request."
msgstr "Iarrtas mì-dhligheach."
-#: src/Module/Contact/MatchInterests.php:102
+#: src/Module/Contact/MatchInterests.php:88
msgid "No keywords to match. Please add keywords to your profile."
msgstr "Chan eil faclan-luirg rim maidseadh ann. Cuir faclan-luirg ris a’ phròifil agad."
-#: src/Module/Contact/MatchInterests.php:145
+#: src/Module/Contact/MatchInterests.php:141
msgid "Profile Match"
msgstr "Maidseadh na pròifile"
-#: src/Module/Contact/Profile.php:145
+#: src/Module/Contact/Profile.php:131
msgid "Failed to update contact record."
msgstr "Cha b’ urrainn dhuinn clàr an neach-aithne ùrachadh."
-#: src/Module/Contact/Profile.php:209
+#: src/Module/Contact/Profile.php:195
msgid "Contact has been unblocked"
msgstr "Chaidh an neach-aithne a dhì-bhacadh"
-#: src/Module/Contact/Profile.php:213
+#: src/Module/Contact/Profile.php:199
msgid "Contact has been blocked"
msgstr "Chaidh an neach-aithne a bhacadh"
-#: src/Module/Contact/Profile.php:225
+#: src/Module/Contact/Profile.php:211
msgid "Contact has been unignored"
msgstr "Chan eil an neach-aithne ’ga leigeil seachad tuilleadh"
-#: src/Module/Contact/Profile.php:229
+#: src/Module/Contact/Profile.php:215
msgid "Contact has been ignored"
msgstr "Tha an neach-aithne ’ga leigeil seachad"
-#: src/Module/Contact/Profile.php:241
+#: src/Module/Contact/Profile.php:227
msgid "Contact has been uncollapsed"
msgstr "Chan eil an neach-aithne ’ga cho-theannachadh tuilleadh"
-#: src/Module/Contact/Profile.php:245
+#: src/Module/Contact/Profile.php:231
msgid "Contact has been collapsed"
msgstr "Tha an neach-aithne ’ga cho-theannachadh"
-#: src/Module/Contact/Profile.php:273
+#: src/Module/Contact/Profile.php:259
#, php-format
msgid "You are mutual friends with %s"
msgstr "Tha co-dhàimh eadar thu fhèin is %s a-nis"
-#: src/Module/Contact/Profile.php:274
+#: src/Module/Contact/Profile.php:260
#, php-format
msgid "You are sharing with %s"
msgstr "Tha thu a’ co-roinneadh le %s"
-#: src/Module/Contact/Profile.php:275
+#: src/Module/Contact/Profile.php:261
#, php-format
msgid "%s is sharing with you"
msgstr "Tha %s a’ co-roinneadh leat"
-#: src/Module/Contact/Profile.php:291
+#: src/Module/Contact/Profile.php:277
msgid "Private communications are not available for this contact."
msgstr "Chan eil conaltradh prìobhaideach ri fhaighinn dhan neach-aithne seo."
-#: src/Module/Contact/Profile.php:301
+#: src/Module/Contact/Profile.php:287
msgid "This contact is on a server you ignored."
msgstr ""
-#: src/Module/Contact/Profile.php:304
+#: src/Module/Contact/Profile.php:290
msgid "Never"
msgstr "Chan ann idir"
-#: src/Module/Contact/Profile.php:307
+#: src/Module/Contact/Profile.php:293
msgid "(Update was not successful)"
msgstr "(Cha deach leis an ùrachadh)"
-#: src/Module/Contact/Profile.php:307
+#: src/Module/Contact/Profile.php:293
msgid "(Update was successful)"
msgstr "(Chaidh leis an ùrachadh)"
-#: src/Module/Contact/Profile.php:309 src/Module/Contact/Profile.php:503
+#: src/Module/Contact/Profile.php:295 src/Module/Contact/Profile.php:489
msgid "Suggest friends"
msgstr "Mol caraidean"
-#: src/Module/Contact/Profile.php:313
+#: src/Module/Contact/Profile.php:299
#, php-format
msgid "Network type: %s"
msgstr "Seòrsa an lìonraidh: %s"
-#: src/Module/Contact/Profile.php:318
+#: src/Module/Contact/Profile.php:304
msgid "Communications lost with this contact!"
msgstr "Chaidh an conaltradh leis an neach-aithne seo a chall!"
-#: src/Module/Contact/Profile.php:324
+#: src/Module/Contact/Profile.php:310
msgid "Fetch further information for feeds"
msgstr "Faigh barrachd fiosrachaidh dha na h-inbhirean"
-#: src/Module/Contact/Profile.php:326
+#: src/Module/Contact/Profile.php:312
msgid ""
"Fetch information like preview pictures, title and teaser from the feed "
"item. You can activate this if the feed doesn't contain much text. Keywords "
"are taken from the meta header in the feed item and are posted as hash tags."
msgstr "Faigh fiosrachadh mar dhealbhan ro-sheallaidh, tiotal is tàladh o nì an inbhir. ’S urrainn dhut seo a chur an comas mur eil cus teacsa san inbhir. Thèid faclan-luirg a thogail o bhann-cinn nì an inbhir agus am postadh ’nan tagaichean hais."
-#: src/Module/Contact/Profile.php:329
+#: src/Module/Contact/Profile.php:315
msgid "Fetch information"
msgstr "Faigh am fiosrachadh"
-#: src/Module/Contact/Profile.php:330
+#: src/Module/Contact/Profile.php:316
msgid "Fetch keywords"
msgstr "Faigh na faclan-luirg"
-#: src/Module/Contact/Profile.php:331
+#: src/Module/Contact/Profile.php:317
msgid "Fetch information and keywords"
msgstr "Faigh am fiosrachadh ’s na faclan-luirg"
-#: src/Module/Contact/Profile.php:341 src/Module/Contact/Profile.php:346
-#: src/Module/Contact/Profile.php:351 src/Module/Contact/Profile.php:357
+#: src/Module/Contact/Profile.php:327 src/Module/Contact/Profile.php:332
+#: src/Module/Contact/Profile.php:337 src/Module/Contact/Profile.php:343
msgid "No mirroring"
msgstr "Gun sgàthanachadh"
-#: src/Module/Contact/Profile.php:342 src/Module/Contact/Profile.php:352
-#: src/Module/Contact/Profile.php:358
+#: src/Module/Contact/Profile.php:328 src/Module/Contact/Profile.php:338
+#: src/Module/Contact/Profile.php:344
msgid "Mirror as my own posting"
msgstr "Sgàthanaich ’na phost leam fhìn"
-#: src/Module/Contact/Profile.php:347 src/Module/Contact/Profile.php:353
+#: src/Module/Contact/Profile.php:333 src/Module/Contact/Profile.php:339
msgid "Native reshare"
msgstr "Co-roinneadh tùsail"
-#: src/Module/Contact/Profile.php:373
+#: src/Module/Contact/Profile.php:359
msgid "Contact Information / Notes"
msgstr "Fiosrachadh an neach-aithne / Nòtaichean"
-#: src/Module/Contact/Profile.php:374
+#: src/Module/Contact/Profile.php:360
msgid "Contact Settings"
msgstr "Roghainnean an neach-aithne"
-#: src/Module/Contact/Profile.php:382
+#: src/Module/Contact/Profile.php:368
msgid "Contact"
msgstr "Neach-aithne"
-#: src/Module/Contact/Profile.php:386
+#: src/Module/Contact/Profile.php:372
msgid "Their personal note"
msgstr "An nòta pearsanta aca"
-#: src/Module/Contact/Profile.php:388
+#: src/Module/Contact/Profile.php:374
msgid "Edit contact notes"
msgstr "Deasaich notaichean an neach-aithne"
-#: src/Module/Contact/Profile.php:392
+#: src/Module/Contact/Profile.php:378
msgid "Block/Unblock contact"
msgstr "Bac/Dì-bhac an neach-aithne"
-#: src/Module/Contact/Profile.php:393
-#: src/Module/Moderation/Report/Create.php:293
+#: src/Module/Contact/Profile.php:379
+#: src/Module/Moderation/Report/Create.php:279
msgid "Ignore contact"
msgstr "Leig seachad an neach-aithne"
-#: src/Module/Contact/Profile.php:394
+#: src/Module/Contact/Profile.php:380
msgid "View conversations"
msgstr "Seall na còmhraidhean"
-#: src/Module/Contact/Profile.php:399
+#: src/Module/Contact/Profile.php:385
msgid "Last update:"
msgstr "An t-ùrachadh mu dheireadh:"
-#: src/Module/Contact/Profile.php:401
+#: src/Module/Contact/Profile.php:387
msgid "Update public posts"
msgstr "Ùraich na postaichean poblach"
-#: src/Module/Contact/Profile.php:403 src/Module/Contact/Profile.php:513
+#: src/Module/Contact/Profile.php:389 src/Module/Contact/Profile.php:499
msgid "Update now"
msgstr "Ùraich an-dràsta"
-#: src/Module/Contact/Profile.php:405
+#: src/Module/Contact/Profile.php:391
msgid "Awaiting connection acknowledge"
msgstr "A’ feitheamh air aithneachadh a’ cheangail"
-#: src/Module/Contact/Profile.php:406
+#: src/Module/Contact/Profile.php:392
msgid "Currently blocked"
msgstr "’Ga bhacadh an-dràsta"
-#: src/Module/Contact/Profile.php:407
+#: src/Module/Contact/Profile.php:393
msgid "Currently ignored"
msgstr "’Ga leigeil seachad an-dràsta"
-#: src/Module/Contact/Profile.php:408
+#: src/Module/Contact/Profile.php:394
msgid "Currently collapsed"
msgstr "’Ga cho-theannachadh an-dràsta"
-#: src/Module/Contact/Profile.php:409
+#: src/Module/Contact/Profile.php:395
msgid "Currently archived"
msgstr "San tasg-lann an-dràsta"
-#: src/Module/Contact/Profile.php:412
+#: src/Module/Contact/Profile.php:398
msgid "Manage remote servers"
msgstr ""
-#: src/Module/Contact/Profile.php:414
-#: src/Module/Notifications/Introductions.php:198
+#: src/Module/Contact/Profile.php:400
+#: src/Module/Notifications/Introductions.php:184
msgid "Hide this contact from others"
msgstr "Falaich an neach-aithne seo o chàch"
-#: src/Module/Contact/Profile.php:414
+#: src/Module/Contact/Profile.php:400
msgid ""
"Replies/likes to your public posts may still be visible"
msgstr "Dh’fhaoidte gum faicear freagairtean/gur toigh le daoine na postaichean poblach agad fhathast"
-#: src/Module/Contact/Profile.php:415
+#: src/Module/Contact/Profile.php:401
msgid "Notification for new posts"
msgstr "Brathan air postaichean ùra"
-#: src/Module/Contact/Profile.php:415
+#: src/Module/Contact/Profile.php:401
msgid "Send a notification of every new post of this contact"
msgstr "Cuir brath airson gach post ùr aig an neach-aithne seo"
-#: src/Module/Contact/Profile.php:417
+#: src/Module/Contact/Profile.php:403
msgid "Keyword Deny List"
msgstr "Liosta-dhiùltaidh nam facal-luirg"
-#: src/Module/Contact/Profile.php:417
+#: src/Module/Contact/Profile.php:403
msgid ""
"Comma separated list of keywords that should not be converted to hashtags, "
"when \"Fetch information and keywords\" is selected"
msgstr "Liosta sgaraichte le cromagan de dh’fhaclan-luirg nach dèid iompachadh gu tagaichean tais nuair a bhios “Faigh am fiosrachadh ’s na faclan-luirg” air a thaghadh"
-#: src/Module/Contact/Profile.php:435
-#: src/Module/Settings/TwoFactor/Index.php:160
+#: src/Module/Contact/Profile.php:421
+#: src/Module/Settings/TwoFactor/Index.php:146
msgid "Actions"
msgstr "Gnìomhan"
-#: src/Module/Contact/Profile.php:437
-#: src/Module/Settings/TwoFactor/Index.php:140 view/theme/frio/theme.php:232
+#: src/Module/Contact/Profile.php:423
+#: src/Module/Settings/TwoFactor/Index.php:126 view/theme/frio/theme.php:220
msgid "Status"
msgstr "Staid"
-#: src/Module/Contact/Profile.php:443
+#: src/Module/Contact/Profile.php:429
msgid "Mirror postings from this contact"
msgstr "Sgàthanaich na postaichean on neach-aithne seo"
-#: src/Module/Contact/Profile.php:445
+#: src/Module/Contact/Profile.php:431
msgid ""
"Mark this contact as remote_self, this will cause friendica to repost new "
"entries from this contact."
msgstr "Cuir comharra remote_self ris an neach-aithne seo ach an ath-phostaich Friendica nithean ùra on neach-aithne seo."
-#: src/Module/Contact/Profile.php:448
+#: src/Module/Contact/Profile.php:434
msgid "Channel Settings"
msgstr ""
-#: src/Module/Contact/Profile.php:449
+#: src/Module/Contact/Profile.php:435
msgid "Frequency of this contact in relevant channels"
msgstr ""
-#: src/Module/Contact/Profile.php:450
+#: src/Module/Contact/Profile.php:436
msgid ""
"Depending on the type of the channel not all posts from this contact are "
"displayed. By default, posts need to have a minimum amount of interactions "
@@ -7073,201 +7068,201 @@ msgid ""
"block or hide the contact completely."
msgstr ""
-#: src/Module/Contact/Profile.php:451
+#: src/Module/Contact/Profile.php:437
msgid "Default frequency"
msgstr ""
-#: src/Module/Contact/Profile.php:451
+#: src/Module/Contact/Profile.php:437
msgid ""
"Posts by this contact are displayed in the \"for you\" channel if you "
"interact often with this contact or if a post reached some level of "
"interaction."
msgstr ""
-#: src/Module/Contact/Profile.php:452
+#: src/Module/Contact/Profile.php:438
msgid "Display all posts of this contact"
msgstr ""
-#: src/Module/Contact/Profile.php:452
+#: src/Module/Contact/Profile.php:438
msgid "All posts from this contact will appear on the \"for you\" channel"
msgstr ""
-#: src/Module/Contact/Profile.php:453
+#: src/Module/Contact/Profile.php:439
msgid "Display only few posts"
msgstr ""
-#: src/Module/Contact/Profile.php:453
+#: src/Module/Contact/Profile.php:439
msgid ""
"When a contact creates a lot of posts in a short period, this setting "
"reduces the number of displayed posts in every channel."
msgstr ""
-#: src/Module/Contact/Profile.php:454
+#: src/Module/Contact/Profile.php:440
msgid "Never display posts"
msgstr ""
-#: src/Module/Contact/Profile.php:454
+#: src/Module/Contact/Profile.php:440
msgid "Posts from this contact will never be displayed in any channel"
msgstr ""
-#: src/Module/Contact/Profile.php:455
+#: src/Module/Contact/Profile.php:441
msgid "Channel Only"
msgstr ""
-#: src/Module/Contact/Profile.php:455
+#: src/Module/Contact/Profile.php:441
msgid ""
"If enabled, posts from this contact will only appear in channels and network"
" streams in circles, but not in the general network stream."
msgstr ""
-#: src/Module/Contact/Profile.php:523
+#: src/Module/Contact/Profile.php:509
msgid "Refetch contact data"
msgstr "Faigh dàta an neach-aithne a-rithist"
-#: src/Module/Contact/Profile.php:534
+#: src/Module/Contact/Profile.php:520
msgid "Toggle Blocked status"
msgstr "Toglaich stad a’ bhacaidh"
-#: src/Module/Contact/Profile.php:542
+#: src/Module/Contact/Profile.php:528
msgid "Toggle Ignored status"
msgstr "Toglaich staid na leigeil seachad"
-#: src/Module/Contact/Profile.php:550
+#: src/Module/Contact/Profile.php:536
msgid "Toggle Collapsed status"
msgstr "Toglaich staid a’ cho-theannachaidh"
-#: src/Module/Contact/Profile.php:557 src/Module/Contact/Revoke.php:103
+#: src/Module/Contact/Profile.php:543 src/Module/Contact/Revoke.php:89
msgid "Revoke Follow"
msgstr "Cùl-ghairm an leantainn"
-#: src/Module/Contact/Profile.php:559
+#: src/Module/Contact/Profile.php:545
msgid "Revoke the follow from this contact"
msgstr "Thoir air an neach-aithne seo nach lean iad ort tuilleadh"
-#: src/Module/Contact/Redir.php:139
+#: src/Module/Contact/Redir.php:125
msgid "Bad Request."
msgstr "Droch-iarrtas."
-#: src/Module/Contact/Revoke.php:74
+#: src/Module/Contact/Revoke.php:60
msgid "Contact is being deleted."
msgstr "Tha an neach-aithne ’ga sguabadh às."
-#: src/Module/Contact/Revoke.php:88
+#: src/Module/Contact/Revoke.php:74
msgid "Follow was successfully revoked."
msgstr "Chaidh an leantainn a chùl-ghairm."
-#: src/Module/Contact/Revoke.php:104
+#: src/Module/Contact/Revoke.php:90
msgid ""
"Do you really want to revoke this contact's follow? This cannot be undone "
"and they will have to manually follow you back again."
msgstr "A bheil thu cinnteach nach eil thu ag iarraidh gun lean an neach-aithne seo ort tuilleadh? Cha ghabh seo a neo-dhèanamh is feumaidh iad leantainn ort a làimh às ùr."
-#: src/Module/Contact/Suggestions.php:62
+#: src/Module/Contact/Suggestions.php:48
msgid ""
"No suggestions available. If this is a new site, please try again in 24 "
"hours."
msgstr "Chan eil moladh sam bith ann. Mas e làrach ùr a th’ ann, feuch ris a-rithist an ceann 24 uair a thìde."
-#: src/Module/Contact/Unfollow.php:98 src/Module/Contact/Unfollow.php:167
+#: src/Module/Contact/Unfollow.php:84 src/Module/Contact/Unfollow.php:153
msgid "You aren't following this contact."
msgstr "Chan eil thu a’ leantainn air an neach-aithne seo."
-#: src/Module/Contact/Unfollow.php:103
+#: src/Module/Contact/Unfollow.php:89
msgid "Unfollowing is currently not supported by your network."
msgstr "Cha chuir an lìonra agad taic ri sgur de leantainn air an àm seo."
-#: src/Module/Contact/Unfollow.php:121
+#: src/Module/Contact/Unfollow.php:107
msgid "Disconnect/Unfollow"
msgstr "Dì-cheangail/Na lean tuilleadh"
-#: src/Module/Contact/Unfollow.php:175
+#: src/Module/Contact/Unfollow.php:161
msgid "Contact was successfully unfollowed"
msgstr "Chan eil thu a’ leantainn air an neach-aithne tuilleadh"
-#: src/Module/Contact/Unfollow.php:178
+#: src/Module/Contact/Unfollow.php:164
msgid "Unable to unfollow this contact, please contact your administrator"
msgstr "Cha deach leinn an neach-aithne a thoirt air falbh on fheadhainn air a leanas tu, cuir fios gun rianaire agad"
-#: src/Module/Conversation/Channel.php:139
-#: src/Module/Conversation/Community.php:126 src/Module/Search/Index.php:152
-#: src/Module/Search/Index.php:194
+#: src/Module/Conversation/Channel.php:125
+#: src/Module/Conversation/Community.php:114 src/Module/Search/Index.php:138
+#: src/Module/Search/Index.php:180
msgid "No results."
msgstr "Chan eil toradh ann."
-#: src/Module/Conversation/Channel.php:177
+#: src/Module/Conversation/Channel.php:163
msgid "Channel not available."
msgstr ""
-#: src/Module/Conversation/Community.php:92
+#: src/Module/Conversation/Community.php:80
msgid ""
"This community stream shows all public posts received by this node. They may"
" not reflect the opinions of this node’s users."
msgstr "Seallaidh sruthadh na coimhearsnachd gach post poblach a fhuair an nòd seo. Dh’fhaoidte nach eil iad a’ riochdachadh beachdan luchd-cleachdaidh an nòid seo."
-#: src/Module/Conversation/Community.php:180
+#: src/Module/Conversation/Community.php:168
msgid "Community option not available."
msgstr "Chan eil roghainn na coimhearsnachd ri fhaighinn."
-#: src/Module/Conversation/Community.php:196
+#: src/Module/Conversation/Community.php:184
msgid "Not available."
msgstr "Chan eil seo ri fhaighinn."
-#: src/Module/Conversation/Network.php:216
+#: src/Module/Conversation/Network.php:202
msgid "No such circle"
msgstr "Chan eil an cearcall seo ann"
-#: src/Module/Conversation/Network.php:220
+#: src/Module/Conversation/Network.php:206
#, php-format
msgid "Circle: %s"
msgstr "Cearcall: %s"
-#: src/Module/Conversation/Network.php:239
+#: src/Module/Conversation/Network.php:226
#, php-format
msgid "Error %d (%s) while fetching the timeline."
msgstr ""
-#: src/Module/Conversation/Network.php:316
+#: src/Module/Conversation/Network.php:304
msgid "Network feed not available."
msgstr ""
-#: src/Module/Conversation/Timeline.php:204
+#: src/Module/Conversation/Timeline.php:190
msgid "Include"
msgstr "Gabh a-staigh"
-#: src/Module/Conversation/Timeline.php:205
+#: src/Module/Conversation/Timeline.php:191
msgid "Hide"
msgstr "Falaich"
-#: src/Module/Credits.php:44
+#: src/Module/Credits.php:30
msgid "Credits"
msgstr "Urram"
-#: src/Module/Credits.php:45
+#: src/Module/Credits.php:31
msgid ""
"Friendica is a community project, that would not be possible without the "
"help of many people. Here is a list of those who have contributed to the "
"code or the translation of Friendica. Thank you all!"
msgstr "’S e pròiseact coimhearsnachd a th’ ann am Friendica is cha ghabhadh a thoirt gu buil às aonais taic o iomadh daoine. Seo liosta dhen fheadhainn a chuir ri chòd no ri eadar-theangachadh Friendica. Mòran taing dhuibh uile!"
-#: src/Module/Debug/ActivityPubConversion.php:59
+#: src/Module/Debug/ActivityPubConversion.php:45
msgid "Formatted"
msgstr "Fòrmataichte"
-#: src/Module/Debug/ActivityPubConversion.php:71
+#: src/Module/Debug/ActivityPubConversion.php:57
msgid "Activity"
msgstr "Gnìomhachd"
-#: src/Module/Debug/ActivityPubConversion.php:123
+#: src/Module/Debug/ActivityPubConversion.php:109
msgid "Object data"
msgstr "Dàta oibseict"
-#: src/Module/Debug/ActivityPubConversion.php:130
+#: src/Module/Debug/ActivityPubConversion.php:116
msgid "Result Item"
msgstr "Nì toraidh"
-#: src/Module/Debug/ActivityPubConversion.php:135
-#: src/Module/Debug/Babel.php:300 src/Module/Moderation/Item/Source.php:93
-#: src/Module/Security/TwoFactor/Verify.php:98
+#: src/Module/Debug/ActivityPubConversion.php:121
+#: src/Module/Debug/Babel.php:286 src/Module/Moderation/Item/Source.php:79
+#: src/Module/Security/TwoFactor/Verify.php:84
msgid "Error"
msgid_plural "Errors"
msgstr[0] "Mearachd"
@@ -7275,506 +7270,506 @@ msgstr[1] "Mearachdan"
msgstr[2] "Mearachdan"
msgstr[3] "Mearachdan"
-#: src/Module/Debug/ActivityPubConversion.php:144
+#: src/Module/Debug/ActivityPubConversion.php:130
msgid "Source activity"
msgstr "Gnìomhachd bun-tùis"
-#: src/Module/Debug/Babel.php:58
+#: src/Module/Debug/Babel.php:44
msgid "Source input"
msgstr "Ion-chur bun-tùis"
-#: src/Module/Debug/Babel.php:64
+#: src/Module/Debug/Babel.php:50
msgid "BBCode::toPlaintext"
msgstr "BBCode::toPlaintext"
-#: src/Module/Debug/Babel.php:70
+#: src/Module/Debug/Babel.php:56
msgid "BBCode::convert (raw HTML)"
msgstr "BBCode::convert (HTML amh)"
-#: src/Module/Debug/Babel.php:75
+#: src/Module/Debug/Babel.php:61
msgid "BBCode::convert (hex)"
msgstr "BBCode::convert (sia-dheicheach)"
-#: src/Module/Debug/Babel.php:80
+#: src/Module/Debug/Babel.php:66
msgid "BBCode::convert"
msgstr "BBCode::convert"
-#: src/Module/Debug/Babel.php:86
+#: src/Module/Debug/Babel.php:72
msgid "BBCode::convert => HTML::toBBCode"
msgstr "BBCode::convert => HTML::toBBCode"
-#: src/Module/Debug/Babel.php:92
+#: src/Module/Debug/Babel.php:78
msgid "BBCode::toMarkdown"
msgstr "BBCode::toMarkdown"
-#: src/Module/Debug/Babel.php:98
+#: src/Module/Debug/Babel.php:84
msgid "BBCode::toMarkdown => Markdown::convert (raw HTML)"
msgstr "BBCode::toMarkdown => Markdown::convert (HTML amh)"
-#: src/Module/Debug/Babel.php:102
+#: src/Module/Debug/Babel.php:88
msgid "BBCode::toMarkdown => Markdown::convert"
msgstr "BBCode::toMarkdown => Markdown::convert"
-#: src/Module/Debug/Babel.php:108
+#: src/Module/Debug/Babel.php:94
msgid "BBCode::toMarkdown => Markdown::toBBCode"
msgstr "BBCode::toMarkdown => Markdown::toBBCode"
-#: src/Module/Debug/Babel.php:114
+#: src/Module/Debug/Babel.php:100
msgid "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode"
msgstr "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode"
-#: src/Module/Debug/Babel.php:122
+#: src/Module/Debug/Babel.php:108
msgid "Item Body"
msgstr "Bodhaig nì"
-#: src/Module/Debug/Babel.php:126
+#: src/Module/Debug/Babel.php:112
msgid "Item Tags"
msgstr "Tagaichean nì"
-#: src/Module/Debug/Babel.php:132
+#: src/Module/Debug/Babel.php:118
msgid "PageInfo::appendToBody"
msgstr "PageInfo::appendToBody"
-#: src/Module/Debug/Babel.php:137
+#: src/Module/Debug/Babel.php:123
msgid "PageInfo::appendToBody => BBCode::convert (raw HTML)"
msgstr "PageInfo::appendToBody => BBCode::convert (HTML amh)"
-#: src/Module/Debug/Babel.php:141
+#: src/Module/Debug/Babel.php:127
msgid "PageInfo::appendToBody => BBCode::convert"
msgstr "PageInfo::appendToBody => BBCode::convert"
-#: src/Module/Debug/Babel.php:148
+#: src/Module/Debug/Babel.php:134
msgid "Source input (Diaspora format)"
msgstr "Ion-chur bun-tùis (fòrmat diaspora*)"
-#: src/Module/Debug/Babel.php:157
+#: src/Module/Debug/Babel.php:143
msgid "Source input (Markdown)"
msgstr "Ion-chur bun-tùis (Markdown)"
-#: src/Module/Debug/Babel.php:163
+#: src/Module/Debug/Babel.php:149
msgid "Markdown::convert (raw HTML)"
msgstr "Markdown::convert (HTML amh)"
-#: src/Module/Debug/Babel.php:168
+#: src/Module/Debug/Babel.php:154
msgid "Markdown::convert"
msgstr "Markdown::convert"
-#: src/Module/Debug/Babel.php:174
+#: src/Module/Debug/Babel.php:160
msgid "Markdown::toBBCode"
msgstr "Markdown::toBBCode"
-#: src/Module/Debug/Babel.php:181
+#: src/Module/Debug/Babel.php:167
msgid "Raw HTML input"
msgstr "Ion-chur HTML amh"
-#: src/Module/Debug/Babel.php:186
+#: src/Module/Debug/Babel.php:172
msgid "HTML Input"
msgstr "Ion-chur HTML"
-#: src/Module/Debug/Babel.php:193
+#: src/Module/Debug/Babel.php:179
msgid "HTML Purified (raw)"
msgstr "HTML air a ghlanadh (amh)"
-#: src/Module/Debug/Babel.php:198
+#: src/Module/Debug/Babel.php:184
msgid "HTML Purified (hex)"
msgstr "HTML air a ghlanadh (sia-dheicheach)"
-#: src/Module/Debug/Babel.php:203
+#: src/Module/Debug/Babel.php:189
msgid "HTML Purified"
msgstr "HTML air a ghlanadh"
-#: src/Module/Debug/Babel.php:209
+#: src/Module/Debug/Babel.php:195
msgid "HTML::toBBCode"
msgstr "HTML::toBBCode"
-#: src/Module/Debug/Babel.php:215
+#: src/Module/Debug/Babel.php:201
msgid "HTML::toBBCode => BBCode::convert"
msgstr "HTML::toBBCode => BBCode::convert"
-#: src/Module/Debug/Babel.php:220
+#: src/Module/Debug/Babel.php:206
msgid "HTML::toBBCode => BBCode::convert (raw HTML)"
msgstr "HTML::toBBCode => BBCode::convert (HTML amh)"
-#: src/Module/Debug/Babel.php:226
+#: src/Module/Debug/Babel.php:212
msgid "HTML::toBBCode => BBCode::toPlaintext"
msgstr "HTML::toBBCode => BBCode::toPlaintext"
-#: src/Module/Debug/Babel.php:232
+#: src/Module/Debug/Babel.php:218
msgid "HTML::toMarkdown"
msgstr "HTML::toMarkdown"
-#: src/Module/Debug/Babel.php:238
+#: src/Module/Debug/Babel.php:224
msgid "HTML::toPlaintext"
msgstr "HTML::toPlaintext"
-#: src/Module/Debug/Babel.php:244
+#: src/Module/Debug/Babel.php:230
msgid "HTML::toPlaintext (compact)"
msgstr "HTML::toPlaintext (dùmhlaichte)"
-#: src/Module/Debug/Babel.php:262
+#: src/Module/Debug/Babel.php:248
msgid "Decoded post"
msgstr "Post air a dhì-chòdachadh"
-#: src/Module/Debug/Babel.php:283
+#: src/Module/Debug/Babel.php:269
msgid "Post array before expand entities"
msgstr "Arraigh a’ phuist ro leudachadh nan eintiteasan"
-#: src/Module/Debug/Babel.php:290
+#: src/Module/Debug/Babel.php:276
msgid "Post converted"
msgstr "Post air iompachadh"
-#: src/Module/Debug/Babel.php:295
+#: src/Module/Debug/Babel.php:281
msgid "Converted body"
msgstr "Bodhaig air a h-iompachadh"
-#: src/Module/Debug/Babel.php:301
+#: src/Module/Debug/Babel.php:287
msgid "Twitter addon is absent from the addon/ folder."
msgstr "Chan eil tuilleadan Twitter sa phasgan addon/."
-#: src/Module/Debug/Babel.php:311
+#: src/Module/Debug/Babel.php:297
msgid "Babel Diagnostic"
msgstr "Diagnosachd Babel"
-#: src/Module/Debug/Babel.php:313
+#: src/Module/Debug/Babel.php:299
msgid "Source text"
msgstr "Teacsa tùsail"
-#: src/Module/Debug/Babel.php:314
+#: src/Module/Debug/Babel.php:300
msgid "BBCode"
msgstr "BBCode"
-#: src/Module/Debug/Babel.php:316
+#: src/Module/Debug/Babel.php:302
msgid "Markdown"
msgstr "Markdown"
-#: src/Module/Debug/Babel.php:317
+#: src/Module/Debug/Babel.php:303
msgid "HTML"
msgstr "HTML"
-#: src/Module/Debug/Babel.php:319
+#: src/Module/Debug/Babel.php:305
msgid "Twitter Source / Tweet URL (requires API key)"
msgstr "Bun-tùs Twitter / URL a’ tweet (feum air iuchair API)"
-#: src/Module/Debug/Feed.php:53 src/Module/Filer/SaveTag.php:47
-#: src/Module/Settings/Profile/Index.php:180
+#: src/Module/Debug/Feed.php:39 src/Module/Filer/SaveTag.php:33
+#: src/Module/Settings/Profile/Index.php:166
msgid "You must be logged in to use this module"
msgstr "Feumaidh tu clàradh a-steach mus urrainn dhut am mòideal seo a chleachdadh"
-#: src/Module/Debug/Feed.php:78
+#: src/Module/Debug/Feed.php:64
msgid "Source URL"
msgstr "URL an tùis"
-#: src/Module/Debug/Localtime.php:49
+#: src/Module/Debug/Localtime.php:35
msgid "Time Conversion"
msgstr "Iompachadh na h-ama"
-#: src/Module/Debug/Localtime.php:50
+#: src/Module/Debug/Localtime.php:36
msgid ""
"Friendica provides this service for sharing events with other networks and "
"friends in unknown timezones."
msgstr "Tha Friendica a’ solar na seirbheise seo airson tachartasan a cho-roinneadh le lìonraidhean eile ’s le caraidean mur eil fios dè an roinnean-tìde."
-#: src/Module/Debug/Localtime.php:51
+#: src/Module/Debug/Localtime.php:37
#, php-format
msgid "UTC time: %s"
msgstr "Àm UTC: %s"
-#: src/Module/Debug/Localtime.php:54
+#: src/Module/Debug/Localtime.php:40
#, php-format
msgid "Current timezone: %s"
msgstr "An roinn-tìde làithreach: %s"
-#: src/Module/Debug/Localtime.php:58
+#: src/Module/Debug/Localtime.php:44
#, php-format
msgid "Converted localtime: %s"
msgstr "An t-àm ionadail iompaichte: %s"
-#: src/Module/Debug/Localtime.php:62
+#: src/Module/Debug/Localtime.php:48
msgid "Please select your timezone:"
msgstr "Tagh an roinn-tìde agad:"
-#: src/Module/Debug/Probe.php:38 src/Module/Debug/WebFinger.php:37
+#: src/Module/Debug/Probe.php:24 src/Module/Debug/WebFinger.php:23
msgid "Only logged in users are permitted to perform a probing."
msgstr "Chan fhaod ach cleachdaichean air an clàradh a-steach sgrùdadh a dhèanamh."
-#: src/Module/Debug/Probe.php:52
+#: src/Module/Debug/Probe.php:38
msgid "Probe Diagnostic"
msgstr "Diagnosachd sgrùdaidh"
-#: src/Module/Debug/Probe.php:53
+#: src/Module/Debug/Probe.php:39
msgid "Output"
msgstr "Às-chur"
-#: src/Module/Debug/Probe.php:56
+#: src/Module/Debug/Probe.php:42
msgid "Lookup address"
msgstr "Rannsaich an seòladh"
-#: src/Module/Debug/WebFinger.php:50
+#: src/Module/Debug/WebFinger.php:36
msgid "Webfinger Diagnostic"
msgstr "Diagnosachd Webfinger"
-#: src/Module/Debug/WebFinger.php:52
+#: src/Module/Debug/WebFinger.php:38
msgid "Lookup address:"
msgstr "Rannsaich an seòladh:"
-#: src/Module/Directory.php:75
+#: src/Module/Directory.php:61
msgid "No entries (some entries may be hidden)."
msgstr "Gun innteart (’s dòcha gu bheil cuid a dh’innteartan falaichte)."
-#: src/Module/Directory.php:91
+#: src/Module/Directory.php:77
msgid "Find on this site"
msgstr "Lorg air an làrach seo"
-#: src/Module/Directory.php:93
+#: src/Module/Directory.php:79
msgid "Results for:"
msgstr "Toraidhean airson:"
-#: src/Module/Directory.php:95
+#: src/Module/Directory.php:81
msgid "Site Directory"
msgstr "Eòlaire na làraich"
-#: src/Module/Filer/RemoveTag.php:105
+#: src/Module/Filer/RemoveTag.php:91
msgid "Item was not deleted"
msgstr "Cha deach an nì a sguabadh às"
-#: src/Module/Filer/RemoveTag.php:115
+#: src/Module/Filer/RemoveTag.php:101
msgid "Item was not removed"
msgstr "Cha deach nì a thoirt air falbh"
-#: src/Module/Filer/SaveTag.php:73
+#: src/Module/Filer/SaveTag.php:59
msgid "- select -"
msgstr "– tagh –"
-#: src/Module/FriendSuggest.php:82
+#: src/Module/FriendSuggest.php:68
msgid "Suggested contact not found."
msgstr "Cha deach an neach-aithne molta a lorg."
-#: src/Module/FriendSuggest.php:100
+#: src/Module/FriendSuggest.php:86
msgid "Friend suggestion sent."
msgstr "Chaidh moladh caraid a chur."
-#: src/Module/FriendSuggest.php:137
+#: src/Module/FriendSuggest.php:123
msgid "Suggest Friends"
msgstr "Mol caraidean"
-#: src/Module/FriendSuggest.php:140
+#: src/Module/FriendSuggest.php:126
#, php-format
msgid "Suggest a friend for %s"
msgstr "Mol caraid dha %s"
-#: src/Module/Friendica.php:81
+#: src/Module/Friendica.php:67
msgid "Installed addons/apps:"
msgstr "Aplacaidean/tuilleadain stàlaichte:"
-#: src/Module/Friendica.php:86
+#: src/Module/Friendica.php:72
msgid "No installed addons/apps"
msgstr "Cha deach aplacaid/tuilleadan a stàladh"
-#: src/Module/Friendica.php:91
+#: src/Module/Friendica.php:77
#, php-format
msgid "Read about the Terms of Service of this node."
msgstr "Leugh teirmichean seirbheise an nòd seo."
-#: src/Module/Friendica.php:98
+#: src/Module/Friendica.php:84
msgid "On this server the following remote servers are blocked."
msgstr "Seo a frithealaichean cèine a tha ’gam bacadh leis an fhrithealaiche seo."
-#: src/Module/Friendica.php:101
-#: src/Module/Moderation/Blocklist/Server/Index.php:87
-#: src/Module/Moderation/Blocklist/Server/Index.php:111
-#: src/Module/Settings/Channels.php:232
+#: src/Module/Friendica.php:87
+#: src/Module/Moderation/Blocklist/Server/Index.php:73
+#: src/Module/Moderation/Blocklist/Server/Index.php:97
+#: src/Module/Settings/Channels.php:218
msgid "Reason for the block"
msgstr "Adhbhar a’ bhacaidh"
-#: src/Module/Friendica.php:103
+#: src/Module/Friendica.php:89
msgid "Download this list in CSV format"
msgstr "Luchdaich a-nuas an liosta seo san fhòrmat CSV"
-#: src/Module/Friendica.php:117
+#: src/Module/Friendica.php:103
#, php-format
msgid ""
"This is Friendica, version %s that is running at the web location %s. The "
"database version is %s, the post update version is %s."
msgstr "Seo Friendica tionndadh %s a tha a’ ruith air an ionad-lìn %s. Is %s tionndadh an stòir-dhàta agus %s tionndadh ùrachadh nam post."
-#: src/Module/Friendica.php:122
+#: src/Module/Friendica.php:108
msgid ""
"Please visit Friendi.ca to learn more "
"about the Friendica project."
msgstr "Tadhail air Friendi.ca airson barrachd fiosrachaidh mu phròiseact Friendica."
-#: src/Module/Friendica.php:123
+#: src/Module/Friendica.php:109
msgid "Bug reports and issues: please visit"
msgstr "Aithrisean air bugaichean is duilgheadasan: tadhail air"
-#: src/Module/Friendica.php:123
+#: src/Module/Friendica.php:109
msgid "the bugtracker at github"
msgstr "tracaiche nam bugaichean air GitHub"
-#: src/Module/Friendica.php:124
+#: src/Module/Friendica.php:110
msgid "Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca"
msgstr "Airson beachdan, molaidhean is mssa. – cuir post-d gu “info” aig “friendi – dot – ca"
-#: src/Module/HCard.php:45
+#: src/Module/HCard.php:31
msgid "No profile"
msgstr "Chan eil pròifil ann"
-#: src/Module/HTTPException/MethodNotAllowed.php:31
+#: src/Module/HTTPException/MethodNotAllowed.php:17
msgid "Method Not Allowed."
msgstr "Chan eil am modh ceadaichte."
-#: src/Module/Help.php:60
+#: src/Module/Help.php:46
msgid "Help:"
msgstr "Cobhair:"
-#: src/Module/Home.php:66
+#: src/Module/Home.php:52
#, php-format
msgid "Welcome to %s"
msgstr "Fàilte gu %s"
-#: src/Module/Install.php:189
+#: src/Module/Install.php:175
msgid "Friendica Communications Server - Setup"
msgstr "Frithealaiche conaltradh Friendica – Suidheachadh"
-#: src/Module/Install.php:200
+#: src/Module/Install.php:186
msgid "System check"
msgstr "Dearbhadh an t-siostaim"
-#: src/Module/Install.php:202 src/Module/Install.php:247
-#: src/Module/Install.php:326
+#: src/Module/Install.php:188 src/Module/Install.php:233
+#: src/Module/Install.php:312
msgid "Requirement not satisfied"
msgstr "Tha riatanas nach deach a choileanadh"
-#: src/Module/Install.php:203
+#: src/Module/Install.php:189
msgid "Optional requirement not satisfied"
msgstr "Tha riatanas roghainneil nach deach a choileanadh"
-#: src/Module/Install.php:204
+#: src/Module/Install.php:190
msgid "OK"
msgstr "Ceart ma-thà"
-#: src/Module/Install.php:208
+#: src/Module/Install.php:194
msgid "Next"
msgstr "Air adhart"
-#: src/Module/Install.php:209
+#: src/Module/Install.php:195
msgid "Check again"
msgstr "Sgrùd a-rithist"
-#: src/Module/Install.php:222
+#: src/Module/Install.php:208
msgid "Base settings"
msgstr "Roghainnean bunasach"
-#: src/Module/Install.php:224
+#: src/Module/Install.php:210
msgid "Base path to installation"
msgstr "An t-slighe bhunasach dhan stàladh"
-#: src/Module/Install.php:226
+#: src/Module/Install.php:212
msgid ""
"If the system cannot detect the correct path to your installation, enter the"
" correct path here. This setting should only be set if you are using a "
"restricted system and symbolic links to your webroot."
msgstr "Mur aithnich an siostam an t-slighe cheart dhan stàladh agad, cuir a-steach an t-slighe cheart an-seo. Cha bu chòir dhut seo a shuidheachadh ach ma tha thu a’ cleachdadh siostam cuingichte agus ceanglaichean samhlachail gun fheumh-lìn agad."
-#: src/Module/Install.php:229
+#: src/Module/Install.php:215
msgid "The Friendica system URL"
msgstr "URL siostam Friendica"
-#: src/Module/Install.php:231
+#: src/Module/Install.php:217
msgid ""
"Overwrite this field in case the system URL determination isn't right, "
"otherwise leave it as is."
msgstr "Tar-sgrìobh an raon seo mura deach URL an t-siostaim aithneachadh mar bu chòir. Ma chaidh, fàg e mar a tha e."
-#: src/Module/Install.php:242
+#: src/Module/Install.php:228
msgid "Database connection"
msgstr "Ceangal stòir-dhàta"
-#: src/Module/Install.php:243
+#: src/Module/Install.php:229
msgid ""
"In order to install Friendica we need to know how to connect to your "
"database."
msgstr "Airson Friendica a stàladh, feumaidh fios a bhith againn air mar a nì sinn ceangal dhan stòr-dàta agad."
-#: src/Module/Install.php:244
+#: src/Module/Install.php:230
msgid ""
"Please contact your hosting provider or site administrator if you have "
"questions about these settings."
msgstr "Cuir fios gu solaraiche an òstaidh no rianaire na làraich agad ma tha ceist agad mu na roghainnean seo."
-#: src/Module/Install.php:245
+#: src/Module/Install.php:231
msgid ""
"The database you specify below should already exist. If it does not, please "
"create it before continuing."
msgstr "Bu chòir dhan stòr-dàta a shònraicheas tu a bhith ann mu thràth. Mur eil, cruthaich e mus lean thu air adhart."
-#: src/Module/Install.php:252
+#: src/Module/Install.php:238
msgid "Database Server Name"
msgstr "Ainm frithealaiche an stòir-dhàta"
-#: src/Module/Install.php:257
+#: src/Module/Install.php:243
msgid "Database Login Name"
msgstr "Ainm clàraidh a-steach an stòir-dhàta"
-#: src/Module/Install.php:263
+#: src/Module/Install.php:249
msgid "Database Login Password"
msgstr "Facal-faire clàradh a-steach an stòir-dhàta"
-#: src/Module/Install.php:265
+#: src/Module/Install.php:251
msgid "For security reasons the password must not be empty"
msgstr "Air adhbharan tèarainteachd, chan fhaod am facal-faire a bhith falamh"
-#: src/Module/Install.php:268
+#: src/Module/Install.php:254
msgid "Database Name"
msgstr "Ainm an stòir-dhàta"
-#: src/Module/Install.php:272 src/Module/Install.php:300
+#: src/Module/Install.php:258 src/Module/Install.php:286
msgid "Please select a default timezone for your website"
msgstr "Tagh roinn-tìde bhunaiteach dhan làrach-lìn agad"
-#: src/Module/Install.php:287
+#: src/Module/Install.php:273
msgid "Site settings"
msgstr "Roghainnean na làraich"
-#: src/Module/Install.php:295
+#: src/Module/Install.php:281
msgid "Site administrator email address"
msgstr "An seòladh puist-d aig rianaire na làraich"
-#: src/Module/Install.php:297
+#: src/Module/Install.php:283
msgid ""
"Your account email address must match this in order to use the web admin "
"panel."
msgstr "Feumaidh seòladh puist-d a’ chunntais agad a bhith co-ionnan ri seo ach an urrainn dhut panail-lìn na rianachd a chleachdadh."
-#: src/Module/Install.php:304
+#: src/Module/Install.php:290
msgid "System Language:"
msgstr "Cànan an t-siostaim:"
-#: src/Module/Install.php:306
+#: src/Module/Install.php:292
msgid ""
"Set the default language for your Friendica installation interface and to "
"send emails."
msgstr "Suidhich an cànan bunaiteach dhan eadar-aghaidh stàladh Friendica agad is do na puist-d a thèid a chur."
-#: src/Module/Install.php:318
+#: src/Module/Install.php:304
msgid "Your Friendica site database has been installed."
msgstr "Chaidh stòr-dàta na làraich Friendica agad a stàladh."
-#: src/Module/Install.php:328
+#: src/Module/Install.php:314
msgid "Installation finished"
msgstr "Tha an stàladh deiseil"
-#: src/Module/Install.php:348
+#: src/Module/Install.php:334
msgid "The server domain pattern syntax is case-insensitive shell wildcard, comprising the following special characters:
\n" "Chan eil aire air litrichean mòra is beaga aig pàtran àrainne fhrithealaichean is tha e ’na shaorag slige leis na caractaran sònraichte seo:
\n*
: Uiread sam bith de charactaran?
: Aon charactarThis file can be downloaded from the /friendica
path of any "
"Friendica server.
Gabhaidh am faidhle seo a luchdadh a-nuas on t-slighe /friendica
aig frithealaiche Friendica sam bith.
debug.store_source
config key is set in "
"config/local.config.php
for future items to have sources."
msgstr "Dèan cinnteach gun deach iuchair rèiteachaidh debug.store_source
a shuidheachadh ann an config/local.config.php
ach am bi tùsan aig na nithean ri teachd."
-#: src/Module/Moderation/Item/Source.php:98
+#: src/Module/Moderation/Item/Source.php:84
msgid "Item Guid"
msgstr "GUID an nì"
-#: src/Module/Moderation/Report/Create.php:95
+#: src/Module/Moderation/Report/Create.php:81
msgid "Contact not found or their server is already blocked on this node."
msgstr "Cha deach an neach-aithne a lorg no chaidh am frithealaiche aca a bhacadh air an nòd seo mu thràth."
-#: src/Module/Moderation/Report/Create.php:136
+#: src/Module/Moderation/Report/Create.php:122
msgid "Please login to access this page."
msgstr "Clàraich a-steach airson an duilleag seo inntrigeadh."
-#: src/Module/Moderation/Report/Create.php:165
-#: src/Module/Moderation/Report/Create.php:180
-#: src/Module/Moderation/Report/Create.php:208
-#: src/Module/Moderation/Report/Create.php:260
-#: src/Module/Moderation/Report/Create.php:279
+#: src/Module/Moderation/Report/Create.php:151
+#: src/Module/Moderation/Report/Create.php:166
+#: src/Module/Moderation/Report/Create.php:194
+#: src/Module/Moderation/Report/Create.php:246
+#: src/Module/Moderation/Report/Create.php:265
msgid "Create Moderation Report"
msgstr "Cruthaich gearan maorsainneachd"
-#: src/Module/Moderation/Report/Create.php:166
+#: src/Module/Moderation/Report/Create.php:152
msgid "Pick Contact"
msgstr "Tagh neach-aithne"
-#: src/Module/Moderation/Report/Create.php:167
+#: src/Module/Moderation/Report/Create.php:153
msgid ""
"Please enter below the contact address or profile URL you would like to "
"create a moderation report about."
msgstr "Cuir a-steach seòladh no URL pròifil neach-aithne gu h-ìosal airson gearan maorsainneachd a chruthachadh mu dhèidhinn."
-#: src/Module/Moderation/Report/Create.php:171
+#: src/Module/Moderation/Report/Create.php:157
msgid "Contact address/URL"
msgstr "Seòladh/URL an neach-aithne"
-#: src/Module/Moderation/Report/Create.php:181
+#: src/Module/Moderation/Report/Create.php:167
msgid "Pick Category"
msgstr "Tagh roinn-seòrsa"
-#: src/Module/Moderation/Report/Create.php:182
+#: src/Module/Moderation/Report/Create.php:168
msgid "Please pick below the category of your report."
msgstr "Tagh roinn-seòrsa a’ ghearain agad."
-#: src/Module/Moderation/Report/Create.php:186
-#: src/Module/Moderation/Report/Create.php:311
+#: src/Module/Moderation/Report/Create.php:172
+#: src/Module/Moderation/Report/Create.php:297
msgid "Spam"
msgstr "Spama"
-#: src/Module/Moderation/Report/Create.php:186
+#: src/Module/Moderation/Report/Create.php:172
msgid ""
"This contact is publishing many repeated/overly long posts/replies or "
"advertising their product/websites in otherwise irrelevant conversations."
msgstr "Tha an neach-aithne seo a’ foillseachadh iomadh post/freagairt a tha ro fhada no ’gam foillseachadh a-rithist ’s a-rithist no tha e a’ dèanamh sanasachd air a’ bhathar/làrach-lìn aca nach eil buntainneachd dha na còmhraidhean."
-#: src/Module/Moderation/Report/Create.php:187
-#: src/Module/Moderation/Report/Create.php:312
+#: src/Module/Moderation/Report/Create.php:173
+#: src/Module/Moderation/Report/Create.php:298
msgid "Illegal Content"
msgstr "Susbaint mhì-laghail"
-#: src/Module/Moderation/Report/Create.php:187
+#: src/Module/Moderation/Report/Create.php:173
msgid ""
"This contact is publishing content that is considered illegal in this node's"
" hosting juridiction."
msgstr "Tha an neach-aithne seo a’ foillseachadh susbaint a thathar a’ meas gu bheil e mì-laghail san uachdranas far a bheil an nòd ’ga òstadh."
-#: src/Module/Moderation/Report/Create.php:188
-#: src/Module/Moderation/Report/Create.php:313
+#: src/Module/Moderation/Report/Create.php:174
+#: src/Module/Moderation/Report/Create.php:299
msgid "Community Safety"
msgstr "Sàbhailteachd na coimhearsnachd"
-#: src/Module/Moderation/Report/Create.php:188
+#: src/Module/Moderation/Report/Create.php:174
msgid ""
"This contact aggravated you or other people, by being provocative or "
"insensitive, intentionally or not. This includes disclosing people's private"
@@ -8558,12 +8553,12 @@ msgid ""
"replies."
msgstr "Bhuair an neach-aithne seo thu no daoine eile on a tha e dìorrasach no neo-mhothachail ge b’ e a bheil e mar sin a dh’aona-ghnothaich no gun iarraidh. Gabhaidh seo a-staigh foillseachadh fiosrachadh prìobhaideach càich (doxxing), postadh bhagairtean no dealbhan frionasach ann am postaichean is freagairtean."
-#: src/Module/Moderation/Report/Create.php:189
-#: src/Module/Moderation/Report/Create.php:314
+#: src/Module/Moderation/Report/Create.php:175
+#: src/Module/Moderation/Report/Create.php:300
msgid "Unwanted Content/Behavior"
msgstr "Susbaint/Giùlan gun iarraidh"
-#: src/Module/Moderation/Report/Create.php:189
+#: src/Module/Moderation/Report/Create.php:175
msgid ""
"This contact has repeatedly published content irrelevant to the node's theme"
" or is openly criticizing the node's administration/moderation without "
@@ -8571,89 +8566,89 @@ msgid ""
"nitpicking on a sensitive topic."
msgstr "Dh’fhoillsich an neach-aithne seo iomadh susbaint nach eil buntainneach do chuspair an nòid no a tha a’ càineadh rianachd/maorsainneachd an nòid gu fosgailte gun a bhith a’ bruidhinn ris na daoine iomchaidh fhèin, mar eisimpleir, no a tha rag-fhoghlamach mu chuspair frionasach."
-#: src/Module/Moderation/Report/Create.php:190
-#: src/Module/Moderation/Report/Create.php:315
+#: src/Module/Moderation/Report/Create.php:176
+#: src/Module/Moderation/Report/Create.php:301
msgid "Rules Violation"
msgstr "Briseadh riaghailt"
-#: src/Module/Moderation/Report/Create.php:190
+#: src/Module/Moderation/Report/Create.php:176
msgid ""
"This contact violated one or more rules of this node. You will be able to "
"pick which one(s) in the next step."
msgstr "Bris an neach-aithne seo riaghailt no dhà dhen nòd seo. ’S urrainn dhut na riaghailtean a chaidh a bhriseadh a thaghadh san ath-cheum."
-#: src/Module/Moderation/Report/Create.php:191
+#: src/Module/Moderation/Report/Create.php:177
msgid ""
"Please elaborate below why you submitted this report. The more details you "
"provide, the better your report can be handled."
msgstr "Innis dhuinn carson a chuir thu a-null an gearan seo. Mar as mionaidiche am fiosrachadh a bheir thu dhuinn ’s ann as fhasa a bhios e dhuinn dèiligeadh ris a’ ghearan agad."
-#: src/Module/Moderation/Report/Create.php:193
+#: src/Module/Moderation/Report/Create.php:179
msgid "Additional Information"
msgstr "Barrachd fiosrachaidh"
-#: src/Module/Moderation/Report/Create.php:193
+#: src/Module/Moderation/Report/Create.php:179
msgid ""
"Please provide any additional information relevant to this particular "
"report. You will be able to attach posts by this contact in the next step, "
"but any context is welcome."
msgstr "Thoir barrachd fiosrachaidh dhuinn a tha buntainneach dhan ghearan shònraichte seo. ’S urrainn dhut postaichean leis an neach-aithne seo a cheangal ris san ath-cheum ach cuiridh sinn fàilte do cho-theacsa sam bith."
-#: src/Module/Moderation/Report/Create.php:209
+#: src/Module/Moderation/Report/Create.php:195
msgid "Pick Rules"
msgstr "Tagh riaghailtean"
-#: src/Module/Moderation/Report/Create.php:210
+#: src/Module/Moderation/Report/Create.php:196
msgid "Please pick below the node rules you believe this contact violated."
msgstr "Tagh riaghailtean an nòid gu h-ìosal a shaoileas tu gun deach am briseadh leis an neach-aithne seo."
-#: src/Module/Moderation/Report/Create.php:261
+#: src/Module/Moderation/Report/Create.php:247
msgid "Pick Posts"
msgstr "Tagh postaichean"
-#: src/Module/Moderation/Report/Create.php:262
+#: src/Module/Moderation/Report/Create.php:248
msgid "Please optionally pick posts to attach to your report."
msgstr "Ma thogras tu, tagh postaichean ri cheangal ris a’ ghearan agad."
-#: src/Module/Moderation/Report/Create.php:281
+#: src/Module/Moderation/Report/Create.php:267
msgid "Submit Report"
msgstr "Cuir an gearan a-null"
-#: src/Module/Moderation/Report/Create.php:282
+#: src/Module/Moderation/Report/Create.php:268
msgid "Further Action"
msgstr "Gnìomhan eile"
-#: src/Module/Moderation/Report/Create.php:283
+#: src/Module/Moderation/Report/Create.php:269
msgid ""
"You can also perform one of the following action on the contact you "
"reported:"
msgstr "’S urrainn dhut fear de na gnìomhan seo a ghabhail cuideachd air an neach-aithne a rinn thu gearan air:"
-#: src/Module/Moderation/Report/Create.php:291
+#: src/Module/Moderation/Report/Create.php:277
msgid "Nothing"
msgstr "Na dèan dad"
-#: src/Module/Moderation/Report/Create.php:292
+#: src/Module/Moderation/Report/Create.php:278
msgid "Collapse contact"
msgstr "Co-theannaich an neach-aithne"
-#: src/Module/Moderation/Report/Create.php:292
+#: src/Module/Moderation/Report/Create.php:278
msgid ""
"Their posts and replies will keep appearing in your Network page but their "
"content will be collapsed by default."
msgstr "Nochdaidh na postaichean ’s freagairtean air duilleag an lìonraidh agad fhathast ach bidh an t-susbaint aca co-theannaichte a ghnàth."
-#: src/Module/Moderation/Report/Create.php:293
+#: src/Module/Moderation/Report/Create.php:279
msgid ""
"Their posts won't appear in your Network page anymore, but their replies can"
" appear in forum threads. They still can follow you."
msgstr "Cha nochd na postaichean ’s freagairtean air duilleag an lìonraidh agad tuilleadh ach dh’fhaoidte gun nochd na freagairtean aca ann an snàithleanan fòraim. Faodaidh iad do leantainn fhathast."
-#: src/Module/Moderation/Report/Create.php:294
+#: src/Module/Moderation/Report/Create.php:280
msgid "Block contact"
msgstr "Bac an neach-aithne"
-#: src/Module/Moderation/Report/Create.php:294
+#: src/Module/Moderation/Report/Create.php:280
msgid ""
"Their posts won't appear in your Network page anymore, but their replies can"
" appear in forum threads, with their content collapsed by default. They "
@@ -8661,51 +8656,51 @@ msgid ""
"means."
msgstr "Cha nochd na postaichean ’s freagairtean air duilleag an lìonraidh agad tuilleadh ach dh’fhaoidte gun nochd na freagairtean aca ann an snàithleanan fòraim leis an t-susbaint aca co-theannaichte a ghnàth. Chan fhaod iad do leantainn tuilleadh ach dh’fhaoidte gum faigh iad cothrom air na postaichean poblach agad fhathast air dòighean eile."
-#: src/Module/Moderation/Report/Create.php:297
+#: src/Module/Moderation/Report/Create.php:283
msgid "Forward report"
msgstr "Sìn air adhart an gearan"
-#: src/Module/Moderation/Report/Create.php:297
+#: src/Module/Moderation/Report/Create.php:283
msgid "Would you ike to forward this report to the remote server?"
msgstr "A bheil thu airson an gearan seo a shìneadh air adhart dhan fhrithealaiche chèin?"
-#: src/Module/Moderation/Report/Create.php:330
+#: src/Module/Moderation/Report/Create.php:316
msgid "1. Pick a contact"
msgstr "1. Tagh neach-aithne"
-#: src/Module/Moderation/Report/Create.php:331
+#: src/Module/Moderation/Report/Create.php:317
msgid "2. Pick a category"
msgstr "2. Tagh roinn-seòrsa"
-#: src/Module/Moderation/Report/Create.php:332
+#: src/Module/Moderation/Report/Create.php:318
msgid "2a. Pick rules"
msgstr "2a. Tagh riaghailtean"
-#: src/Module/Moderation/Report/Create.php:333
+#: src/Module/Moderation/Report/Create.php:319
msgid "2b. Add comment"
msgstr "2b. Cuir beachd ris"
-#: src/Module/Moderation/Report/Create.php:334
+#: src/Module/Moderation/Report/Create.php:320
msgid "3. Pick posts"
msgstr "3. Tagh postaichean"
-#: src/Module/Moderation/Reports.php:111
+#: src/Module/Moderation/Reports.php:97
msgid "List of reports"
msgstr ""
-#: src/Module/Moderation/Reports.php:112
+#: src/Module/Moderation/Reports.php:98
msgid "This page display reports created by our or remote users."
msgstr ""
-#: src/Module/Moderation/Reports.php:113
+#: src/Module/Moderation/Reports.php:99
msgid "No report exists at this node."
msgstr ""
-#: src/Module/Moderation/Reports.php:116
+#: src/Module/Moderation/Reports.php:102
msgid "Category"
msgstr ""
-#: src/Module/Moderation/Reports.php:120
+#: src/Module/Moderation/Reports.php:106
#, php-format
msgid "%s total report"
msgid_plural "%s total reports"
@@ -8714,24 +8709,24 @@ msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
-#: src/Module/Moderation/Reports.php:123
+#: src/Module/Moderation/Reports.php:109
msgid "URL of the reported contact."
msgstr ""
-#: src/Module/Moderation/Summary.php:57 src/Module/Settings/Account.php:436
+#: src/Module/Moderation/Summary.php:43 src/Module/Settings/Account.php:422
msgid "Channel Relay"
msgstr ""
-#: src/Module/Moderation/Summary.php:77
+#: src/Module/Moderation/Summary.php:63
msgid "Registered users"
msgstr "Cleachdaichean clàraichte"
-#: src/Module/Moderation/Summary.php:79
+#: src/Module/Moderation/Summary.php:65
msgid "Pending registrations"
msgstr "Clàraidhean rin dèiligeadh"
-#: src/Module/Moderation/Users/Active.php:43
-#: src/Module/Moderation/Users/Index.php:43
+#: src/Module/Moderation/Users/Active.php:29
+#: src/Module/Moderation/Users/Index.php:29
#, php-format
msgid "%s user blocked"
msgid_plural "%s users blocked"
@@ -8740,18 +8735,18 @@ msgstr[1] "Chaidh %s chleachdaiche a bhacadh"
msgstr[2] "Chaidh %s cleachdaichean a bhacadh"
msgstr[3] "Chaidh %s cleachdaiche a bhacadh"
-#: src/Module/Moderation/Users/Active.php:51
-#: src/Module/Moderation/Users/Active.php:85
-#: src/Module/Moderation/Users/Blocked.php:51
-#: src/Module/Moderation/Users/Blocked.php:85
-#: src/Module/Moderation/Users/Index.php:58
-#: src/Module/Moderation/Users/Index.php:92
+#: src/Module/Moderation/Users/Active.php:37
+#: src/Module/Moderation/Users/Active.php:71
+#: src/Module/Moderation/Users/Blocked.php:37
+#: src/Module/Moderation/Users/Blocked.php:71
+#: src/Module/Moderation/Users/Index.php:44
+#: src/Module/Moderation/Users/Index.php:78
msgid "You can't remove yourself"
msgstr "Chan urrainn dhut thu fhèin a thoirt air falbh"
-#: src/Module/Moderation/Users/Active.php:55
-#: src/Module/Moderation/Users/Blocked.php:55
-#: src/Module/Moderation/Users/Index.php:62
+#: src/Module/Moderation/Users/Active.php:41
+#: src/Module/Moderation/Users/Blocked.php:41
+#: src/Module/Moderation/Users/Index.php:48
#, php-format
msgid "%s user deleted"
msgid_plural "%s users deleted"
@@ -8760,88 +8755,88 @@ msgstr[1] "Chaidh %s chleachdaiche a sguabadh às"
msgstr[2] "Chaidh %s cleachdaichean a sguabadh às"
msgstr[3] "Chaidh %s cleachdaiche a sguabadh às"
-#: src/Module/Moderation/Users/Active.php:83
-#: src/Module/Moderation/Users/Blocked.php:83
-#: src/Module/Moderation/Users/Index.php:90
+#: src/Module/Moderation/Users/Active.php:69
+#: src/Module/Moderation/Users/Blocked.php:69
+#: src/Module/Moderation/Users/Index.php:76
#, php-format
msgid "User \"%s\" deleted"
msgstr "Chaidh an cleachdaiche “%s” a sguabadh às"
-#: src/Module/Moderation/Users/Active.php:93
-#: src/Module/Moderation/Users/Index.php:100
+#: src/Module/Moderation/Users/Active.php:79
+#: src/Module/Moderation/Users/Index.php:86
#, php-format
msgid "User \"%s\" blocked"
msgstr "Chaidh an chleachdaiche “%s” a bhacadh"
-#: src/Module/Moderation/Users/Active.php:126
-#: src/Module/Moderation/Users/Blocked.php:126
-#: src/Module/Moderation/Users/Deleted.php:83
-#: src/Module/Moderation/Users/Index.php:140
-#: src/Module/Moderation/Users/Index.php:160
+#: src/Module/Moderation/Users/Active.php:112
+#: src/Module/Moderation/Users/Blocked.php:112
+#: src/Module/Moderation/Users/Deleted.php:69
+#: src/Module/Moderation/Users/Index.php:126
+#: src/Module/Moderation/Users/Index.php:146
msgid "Register date"
msgstr "Ceann-là a’ chlàraidh"
-#: src/Module/Moderation/Users/Active.php:126
-#: src/Module/Moderation/Users/Blocked.php:126
-#: src/Module/Moderation/Users/Deleted.php:83
-#: src/Module/Moderation/Users/Index.php:140
-#: src/Module/Moderation/Users/Index.php:160
+#: src/Module/Moderation/Users/Active.php:112
+#: src/Module/Moderation/Users/Blocked.php:112
+#: src/Module/Moderation/Users/Deleted.php:69
+#: src/Module/Moderation/Users/Index.php:126
+#: src/Module/Moderation/Users/Index.php:146
msgid "Last login"
msgstr "An clàradh a-steach mu dheireadh"
-#: src/Module/Moderation/Users/Active.php:126
-#: src/Module/Moderation/Users/Blocked.php:126
-#: src/Module/Moderation/Users/Deleted.php:83
-#: src/Module/Moderation/Users/Index.php:140
-#: src/Module/Moderation/Users/Index.php:160
+#: src/Module/Moderation/Users/Active.php:112
+#: src/Module/Moderation/Users/Blocked.php:112
+#: src/Module/Moderation/Users/Deleted.php:69
+#: src/Module/Moderation/Users/Index.php:126
+#: src/Module/Moderation/Users/Index.php:146
msgid "Last public item"
msgstr "An nì poblach mu dheireadh"
-#: src/Module/Moderation/Users/Active.php:134
+#: src/Module/Moderation/Users/Active.php:120
msgid "Active Accounts"
msgstr "Cunntasan gnìomhach"
-#: src/Module/Moderation/Users/Active.php:138
-#: src/Module/Moderation/Users/Blocked.php:137
-#: src/Module/Moderation/Users/Index.php:153
+#: src/Module/Moderation/Users/Active.php:124
+#: src/Module/Moderation/Users/Blocked.php:123
+#: src/Module/Moderation/Users/Index.php:139
msgid "User blocked"
msgstr "Chaidh an cleachdaiche a bhacadh"
-#: src/Module/Moderation/Users/Active.php:139
-#: src/Module/Moderation/Users/Blocked.php:139
-#: src/Module/Moderation/Users/Index.php:155
+#: src/Module/Moderation/Users/Active.php:125
+#: src/Module/Moderation/Users/Blocked.php:125
+#: src/Module/Moderation/Users/Index.php:141
msgid "Site admin"
msgstr "Rianaire na làraich"
-#: src/Module/Moderation/Users/Active.php:140
-#: src/Module/Moderation/Users/Blocked.php:140
-#: src/Module/Moderation/Users/Index.php:156
+#: src/Module/Moderation/Users/Active.php:126
+#: src/Module/Moderation/Users/Blocked.php:126
+#: src/Module/Moderation/Users/Index.php:142
msgid "Account expired"
msgstr "Dh’fhalbh an ùine air a’ chunntas"
-#: src/Module/Moderation/Users/Active.php:141
-#: src/Module/Moderation/Users/Index.php:159
+#: src/Module/Moderation/Users/Active.php:127
+#: src/Module/Moderation/Users/Index.php:145
msgid "Create a new user"
msgstr "Cruthaich cleachdaiche ùr"
-#: src/Module/Moderation/Users/Active.php:147
-#: src/Module/Moderation/Users/Blocked.php:146
-#: src/Module/Moderation/Users/Index.php:165
+#: src/Module/Moderation/Users/Active.php:133
+#: src/Module/Moderation/Users/Blocked.php:132
+#: src/Module/Moderation/Users/Index.php:151
msgid ""
"Selected users will be deleted!\\n\\nEverything these users had posted on "
"this site will be permanently deleted!\\n\\nAre you sure?"
msgstr "Thèid na cleachdaichean a thagh thu a sguabadh às!\\n\\nThèid a h-uile càil a phostaich na cleachdaichean seo air an làrach seo a sguabadh às gu buan!\\n\\nA bheil thu cinnteach?"
-#: src/Module/Moderation/Users/Active.php:148
-#: src/Module/Moderation/Users/Blocked.php:147
-#: src/Module/Moderation/Users/Index.php:166
+#: src/Module/Moderation/Users/Active.php:134
+#: src/Module/Moderation/Users/Blocked.php:133
+#: src/Module/Moderation/Users/Index.php:152
msgid ""
"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
"site will be permanently deleted!\\n\\nAre you sure?"
msgstr "Thèid an cleachdaiche {0} a sguabadh às!\\n\\nThèid a h-uile càil a phostaich an cleachdaiche seo air an làrach seo a sguabadh às gu buan!\\n\\nA bheil thu cinnteach?"
-#: src/Module/Moderation/Users/Blocked.php:43
-#: src/Module/Moderation/Users/Index.php:50
+#: src/Module/Moderation/Users/Blocked.php:29
+#: src/Module/Moderation/Users/Index.php:36
#, php-format
msgid "%s user unblocked"
msgid_plural "%s users unblocked"
@@ -8850,54 +8845,54 @@ msgstr[1] "Chaidh %s chleachdaiche a dhì-bhacadh"
msgstr[2] "Chaidh %s cleachdaichean a dhì-bhacadh"
msgstr[3] "Chaidh %s cleachdaiche a dhì-bhacadh"
-#: src/Module/Moderation/Users/Blocked.php:92
-#: src/Module/Moderation/Users/Index.php:106
+#: src/Module/Moderation/Users/Blocked.php:78
+#: src/Module/Moderation/Users/Index.php:92
#, php-format
msgid "User \"%s\" unblocked"
msgstr "Chaidh an cleachdaiche “%s” a dhì-bhacadh"
-#: src/Module/Moderation/Users/Blocked.php:134
+#: src/Module/Moderation/Users/Blocked.php:120
msgid "Blocked Users"
msgstr "Cleachdaichean bacte"
-#: src/Module/Moderation/Users/Create.php:62
+#: src/Module/Moderation/Users/Create.php:48
msgid "New User"
msgstr "Cleachdaiche ùr"
-#: src/Module/Moderation/Users/Create.php:63
+#: src/Module/Moderation/Users/Create.php:49
msgid "Add User"
msgstr "Cuir cleachdaiche ris"
-#: src/Module/Moderation/Users/Create.php:70
+#: src/Module/Moderation/Users/Create.php:56
msgid "Name of the new user."
msgstr "Ainm a’ chleachdaiche ùir."
-#: src/Module/Moderation/Users/Create.php:71
+#: src/Module/Moderation/Users/Create.php:57
msgid "Nickname"
msgstr "Far-ainm"
-#: src/Module/Moderation/Users/Create.php:71
+#: src/Module/Moderation/Users/Create.php:57
msgid "Nickname of the new user."
msgstr "Far-ainm a’ chleachdaiche ùir."
-#: src/Module/Moderation/Users/Create.php:72
+#: src/Module/Moderation/Users/Create.php:58
msgid "Email address of the new user."
msgstr "Seòladh puist-d a’ chleachdaiche ùir."
-#: src/Module/Moderation/Users/Deleted.php:81
+#: src/Module/Moderation/Users/Deleted.php:67
msgid "Users awaiting permanent deletion"
msgstr "Cleachdaichean a’ feitheamh air sguabadh às buan"
-#: src/Module/Moderation/Users/Deleted.php:83
-#: src/Module/Moderation/Users/Index.php:160
+#: src/Module/Moderation/Users/Deleted.php:69
+#: src/Module/Moderation/Users/Index.php:146
msgid "Permanent deletion"
msgstr "Sguabadh às buan"
-#: src/Module/Moderation/Users/Index.php:150
+#: src/Module/Moderation/Users/Index.php:136
msgid "User waiting for permanent deletion"
msgstr "Cleachdaiche a’ feitheamh sguabadh às buan"
-#: src/Module/Moderation/Users/Pending.php:44
+#: src/Module/Moderation/Users/Pending.php:30
#, php-format
msgid "%s user approved"
msgid_plural "%s users approved"
@@ -8906,7 +8901,7 @@ msgstr[1] "Fhuair %s chleachdaiche aonta"
msgstr[2] "Fhuair %s cleachdaichean aonta"
msgstr[3] "Fhuair %s cleachdaiche aonta"
-#: src/Module/Moderation/Users/Pending.php:51
+#: src/Module/Moderation/Users/Pending.php:37
#, php-format
msgid "%s registration revoked"
msgid_plural "%s registrations revoked"
@@ -8915,420 +8910,406 @@ msgstr[1] "Chaidh %s chlàradh a chùl-ghairm"
msgstr[2] "Chaidh %s clàraidhean a chùl-ghairm"
msgstr[3] "Chaidh %s clàradh a chùl-ghairm"
-#: src/Module/Moderation/Users/Pending.php:76
+#: src/Module/Moderation/Users/Pending.php:62
msgid "Account approved."
msgstr "Air aontachadh ris a’ chunntas."
-#: src/Module/Moderation/Users/Pending.php:82
+#: src/Module/Moderation/Users/Pending.php:68
msgid "Registration revoked"
msgstr "Chaidh an clàradh a chùl-ghairm"
-#: src/Module/Moderation/Users/Pending.php:97
+#: src/Module/Moderation/Users/Pending.php:83
msgid "User registrations awaiting review"
msgstr "Clàraichean chleachdaichean a’ feitheamh air lèirmheas"
-#: src/Module/Moderation/Users/Pending.php:99
+#: src/Module/Moderation/Users/Pending.php:85
msgid "Request date"
msgstr "Cuin a chaidh iarraidh"
-#: src/Module/Moderation/Users/Pending.php:100
+#: src/Module/Moderation/Users/Pending.php:86
msgid "No registrations."
msgstr "Chan eil clàradh ann."
-#: src/Module/Moderation/Users/Pending.php:101
+#: src/Module/Moderation/Users/Pending.php:87
msgid "Note from the user"
msgstr "Nòta on chleachdaiche"
-#: src/Module/Moderation/Users/Pending.php:103
+#: src/Module/Moderation/Users/Pending.php:89
msgid "Deny"
msgstr "Diùlt"
-#: src/Module/Notifications/Introductions.php:105
+#: src/Module/Notifications/Introductions.php:91
msgid "Show Ignored Requests"
msgstr "Seall na h-iarrtasan a leig thu seachad"
-#: src/Module/Notifications/Introductions.php:105
+#: src/Module/Notifications/Introductions.php:91
msgid "Hide Ignored Requests"
msgstr "Falaich na h-iarrtasan a leig thu seachad"
-#: src/Module/Notifications/Introductions.php:121
-#: src/Module/Notifications/Introductions.php:184
+#: src/Module/Notifications/Introductions.php:107
+#: src/Module/Notifications/Introductions.php:170
msgid "Notification type:"
msgstr "Seòrsa a’ bhratha:"
-#: src/Module/Notifications/Introductions.php:124
+#: src/Module/Notifications/Introductions.php:110
msgid "Suggested by:"
msgstr "’Ga mholadh le:"
-#: src/Module/Notifications/Introductions.php:149
+#: src/Module/Notifications/Introductions.php:135
msgid "Claims to be known to you: "
msgstr "A’ tagradh gur aithne dhut e: "
-#: src/Module/Notifications/Introductions.php:158
+#: src/Module/Notifications/Introductions.php:144
msgid "Shall your connection be bidirectional or not?"
msgstr "A bheil thu airson co-dhàimh a chruthachadh?"
-#: src/Module/Notifications/Introductions.php:159
+#: src/Module/Notifications/Introductions.php:145
#, php-format
msgid ""
"Accepting %s as a friend allows %s to subscribe to your posts, and you will "
"also receive updates from them in your news feed."
msgstr "Ma ghabhas tu ri %s ’nad charaid, faodaidh %s fo-sgrìobhadh air na postaichean agad agus gheibh thu na naidheachdan uapa-san cuideachd."
-#: src/Module/Notifications/Introductions.php:160
+#: src/Module/Notifications/Introductions.php:146
#, php-format
msgid ""
"Accepting %s as a subscriber allows them to subscribe to your posts, but you"
" will not receive updates from them in your news feed."
msgstr "Ma ghabhas tu ri %s mar fo-sgrìobhadh, faodaidh iad fo-sgrìobhadh air na postaichean agad ach chan fhaigh thu na naidheachdan uapa-san."
-#: src/Module/Notifications/Introductions.php:162
+#: src/Module/Notifications/Introductions.php:148
msgid "Friend"
msgstr "Caraid"
-#: src/Module/Notifications/Introductions.php:163
+#: src/Module/Notifications/Introductions.php:149
msgid "Subscriber"
msgstr "Fo-sgrìobhadh"
-#: src/Module/Notifications/Introductions.php:222
+#: src/Module/Notifications/Introductions.php:208
msgid "No introductions."
msgstr "Chan eil cur an aithne ann."
-#: src/Module/Notifications/Introductions.php:223
-#: src/Module/Notifications/Notifications.php:141
+#: src/Module/Notifications/Introductions.php:209
+#: src/Module/Notifications/Notifications.php:127
#, php-format
msgid "No more %s notifications."
msgstr "Chan eil brath %s ann tuilleadh."
-#: src/Module/Notifications/Notification.php:135
+#: src/Module/Notifications/Notification.php:121
msgid "You must be logged in to show this page."
msgstr "Feumaidh tu clàradh a-steach mus urrainn dhut an duilleag seo a shealltainn."
-#: src/Module/Notifications/Notifications.php:66
+#: src/Module/Notifications/Notifications.php:52
msgid "Network Notifications"
msgstr "Brathan lìonraidh"
-#: src/Module/Notifications/Notifications.php:72
+#: src/Module/Notifications/Notifications.php:58
msgid "System Notifications"
msgstr "Brathan an t-siostaim"
-#: src/Module/Notifications/Notifications.php:78
+#: src/Module/Notifications/Notifications.php:64
msgid "Personal Notifications"
msgstr "Brathan pearsanta"
-#: src/Module/Notifications/Notifications.php:84
+#: src/Module/Notifications/Notifications.php:70
msgid "Home Notifications"
msgstr "Brathan na dachaighe"
-#: src/Module/Notifications/Notifications.php:146
+#: src/Module/Notifications/Notifications.php:132
msgid "Show unread"
msgstr "Seall an fheadhainn gun leughadh"
-#: src/Module/Notifications/Ping.php:220
+#: src/Module/Notifications/Ping.php:206
msgid "{0} requested registration"
msgstr "Dh’iarr {0} clàradh"
-#: src/Module/Notifications/Ping.php:229
+#: src/Module/Notifications/Ping.php:215
#, php-format
msgid "{0} and %d others requested registration"
msgstr "Dh’iarr {0} ’s %d eile clàradh"
-#: src/Module/OAuth/Acknowledge.php:51
+#: src/Module/OAuth/Acknowledge.php:37
msgid "Authorize application connection"
msgstr "Ùghdarraich ceangal aplacaide"
-#: src/Module/OAuth/Acknowledge.php:53
+#: src/Module/OAuth/Acknowledge.php:39
msgid ""
"Do you want to authorize this application to access your posts and contacts,"
" and/or create new posts for you?"
msgstr "A bheil thu airson cead a thoirt dhan aplacaid seo airson na postaichean ’s an luchd-aithne agad inntrigeadh agus/no postaichean ùra a chruthachadh às do leth?"
-#: src/Module/OAuth/Authorize.php:54
+#: src/Module/OAuth/Authorize.php:40
msgid "Unsupported or missing response type"
msgstr "Seòrsa freagairte gun taic ris no a dhìth"
-#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:75
+#: src/Module/OAuth/Authorize.php:45 src/Module/OAuth/Token.php:61
msgid "Incomplete request data"
msgstr "Dàta iarrtais neo-choileanta"
-#: src/Module/OAuth/Authorize.php:106
+#: src/Module/OAuth/Authorize.php:92
#, php-format
msgid ""
"Please copy the following authentication code into your application and "
"close this window: %s"
msgstr "Cuir lethbhreac dhen chòd dearbhaidh seo san aplacaid agad is dùin an uinneag seo: %s"
-#: src/Module/OAuth/Token.php:80
+#: src/Module/OAuth/Token.php:66
msgid "Invalid data or unknown client"
msgstr "Dàta mì-dhligheach no cliant nach aithne dhuinn"
-#: src/Module/OAuth/Token.php:105
+#: src/Module/OAuth/Token.php:91
msgid "Unsupported or missing grant type"
msgstr "Seòrsa ceadachaidh gun taic ris no a dhìth"
-#: src/Module/OStatus/Repair.php:83
-msgid "Resubscribing to OStatus contacts"
-msgstr "A’ fo-sgrìobhadh a-rithist air luchd-aithne OStatus"
-
-#: src/Module/OStatus/Repair.php:84 src/Module/OStatus/Subscribe.php:160
-msgid "Keep this window open until done."
-msgstr "Cùm an uinneag seo fosgailte gus am bi e deiseil."
-
-#: src/Module/OStatus/Repair.php:85
-msgid "✔ Done"
-msgstr "✔ Deiseil"
-
-#: src/Module/OStatus/Repair.php:86
-msgid "No OStatus contacts to resubscribe to."
-msgstr "Chan eil neach-aithne OStatus ann airson fo-sgrìobhadh air a-rithist."
-
-#: src/Module/OStatus/Subscribe.php:72
+#: src/Module/OStatus/Subscribe.php:58
msgid "Subscribing to contacts"
msgstr "Fo-sgrìobhadh air luchd-aithne"
-#: src/Module/OStatus/Subscribe.php:81
+#: src/Module/OStatus/Subscribe.php:67
msgid "No contact provided."
msgstr "Cha deach neach-aithne a thoirt seachad."
-#: src/Module/OStatus/Subscribe.php:87
+#: src/Module/OStatus/Subscribe.php:73
msgid "Couldn't fetch information for contact."
msgstr "Cha d’ fhuair sinn grèim air an fhiosrachadh conaltraidh."
-#: src/Module/OStatus/Subscribe.php:98
+#: src/Module/OStatus/Subscribe.php:84
msgid "Couldn't fetch friends for contact."
msgstr "Cha d’ fhuair sinn grèim air caraidean a chùm conaltraidh."
-#: src/Module/OStatus/Subscribe.php:104 src/Module/OStatus/Subscribe.php:115
+#: src/Module/OStatus/Subscribe.php:90 src/Module/OStatus/Subscribe.php:101
msgid "Couldn't fetch following contacts."
msgstr "Cha d’ fhuair sinn grèim air an luchd-aithne a leanas."
-#: src/Module/OStatus/Subscribe.php:110
+#: src/Module/OStatus/Subscribe.php:96
msgid "Couldn't fetch remote profile."
msgstr "Cha d’ fhuair sinn grèim air a’ phròifil chèin."
-#: src/Module/OStatus/Subscribe.php:120
+#: src/Module/OStatus/Subscribe.php:106
msgid "Unsupported network"
msgstr "Lìonra ris nach eil taic"
-#: src/Module/OStatus/Subscribe.php:136
+#: src/Module/OStatus/Subscribe.php:122
msgid "Done"
msgstr "Deiseil"
-#: src/Module/OStatus/Subscribe.php:150
+#: src/Module/OStatus/Subscribe.php:136
msgid "success"
msgstr "chaidh leis"
-#: src/Module/OStatus/Subscribe.php:152
+#: src/Module/OStatus/Subscribe.php:138
msgid "failed"
msgstr "dh’fhàillig leis"
-#: src/Module/OStatus/Subscribe.php:155
+#: src/Module/OStatus/Subscribe.php:141
msgid "ignored"
msgstr "chaidh a leigeil seachad"
-#: src/Module/Photo.php:122
+#: src/Module/OStatus/Subscribe.php:146
+msgid "Keep this window open until done."
+msgstr "Cùm an uinneag seo fosgailte gus am bi e deiseil."
+
+#: src/Module/Photo.php:108
msgid "The Photo is not available."
msgstr "Chan eil an dealbh ri fhaighinn."
-#: src/Module/Photo.php:147
+#: src/Module/Photo.php:133
#, php-format
msgid "The Photo with id %s is not available."
msgstr "Chan eil an dealbh air a bheil an id %s ri fhaighinn."
-#: src/Module/Photo.php:188
+#: src/Module/Photo.php:174
#, php-format
msgid "Invalid external resource with url %s."
msgstr "Goireas mì-dhligheach air an taobh a-muigh leis an url %s."
-#: src/Module/Photo.php:190
+#: src/Module/Photo.php:176
#, php-format
msgid "Invalid photo with id %s."
msgstr "Dealbh mì-dhligheach air a bheil an id %s."
-#: src/Module/Post/Edit.php:82 src/Module/Post/Edit.php:96
+#: src/Module/Post/Edit.php:68 src/Module/Post/Edit.php:82
msgid "Post not found."
msgstr "Cha deach am post a lorg."
-#: src/Module/Post/Edit.php:102
+#: src/Module/Post/Edit.php:88
msgid "Edit post"
msgstr "Deasaich am post"
-#: src/Module/Post/Edit.php:136
+#: src/Module/Post/Edit.php:122
msgid "web link"
msgstr "ceangal-lìn"
-#: src/Module/Post/Edit.php:137
+#: src/Module/Post/Edit.php:123
msgid "Insert video link"
msgstr "Cuir a-steach ceangal video"
-#: src/Module/Post/Edit.php:138
+#: src/Module/Post/Edit.php:124
msgid "video link"
msgstr "ceangal video"
-#: src/Module/Post/Edit.php:139
+#: src/Module/Post/Edit.php:125
msgid "Insert audio link"
msgstr "Cuir a-steach ceangal fuaime"
-#: src/Module/Post/Edit.php:140
+#: src/Module/Post/Edit.php:126
msgid "audio link"
msgstr "ceangal fuaime"
-#: src/Module/Post/Tag/Remove.php:106
+#: src/Module/Post/Tag/Remove.php:92
msgid "Remove Item Tag"
msgstr "Thoir air falbh taga an nì"
-#: src/Module/Post/Tag/Remove.php:107
+#: src/Module/Post/Tag/Remove.php:93
msgid "Select a tag to remove: "
msgstr "Tagh taga gus a thoirt air falbh: "
-#: src/Module/Post/Tag/Remove.php:108
-#: src/Module/Settings/TwoFactor/Trusted.php:147
+#: src/Module/Post/Tag/Remove.php:94
+#: src/Module/Settings/TwoFactor/Trusted.php:133
msgid "Remove"
msgstr "Thoir air falbh"
-#: src/Module/Privacy/PermissionTooltip.php:71
+#: src/Module/Privacy/PermissionTooltip.php:57
#, php-format
msgid "Wrong type \"%s\", expected one of: %s"
msgstr "Seòrsa “%s” ceàrr, an dùil air fear dhen fheadhainn seo: %s"
-#: src/Module/Privacy/PermissionTooltip.php:101
+#: src/Module/Privacy/PermissionTooltip.php:87
msgid "Model not found"
msgstr "Cha deach am modail a lorg"
-#: src/Module/Privacy/PermissionTooltip.php:118
+#: src/Module/Privacy/PermissionTooltip.php:104
msgid "Unlisted"
msgstr "Falaichte o liostaichean"
-#: src/Module/Privacy/PermissionTooltip.php:124
+#: src/Module/Privacy/PermissionTooltip.php:110
msgid "Remote privacy information not available."
msgstr "Chan eil fiosrachadh cèin na prìobhaideachd ri làimh."
-#: src/Module/Privacy/PermissionTooltip.php:131
+#: src/Module/Privacy/PermissionTooltip.php:117
msgid "Visible to:"
msgstr "Ri fhaicinn do:"
-#: src/Module/Privacy/PermissionTooltip.php:133
+#: src/Module/Privacy/PermissionTooltip.php:119
msgid "CC:"
msgstr ""
-#: src/Module/Privacy/PermissionTooltip.php:134
+#: src/Module/Privacy/PermissionTooltip.php:120
msgid "BCC:"
msgstr ""
-#: src/Module/Privacy/PermissionTooltip.php:135
+#: src/Module/Privacy/PermissionTooltip.php:121
msgid "Audience:"
msgstr ""
-#: src/Module/Privacy/PermissionTooltip.php:136
+#: src/Module/Privacy/PermissionTooltip.php:122
msgid "Attributed To:"
msgstr ""
-#: src/Module/Privacy/PermissionTooltip.php:234
+#: src/Module/Privacy/PermissionTooltip.php:220
#, php-format
msgid "Collection (%s)"
msgstr "Cruinneachadh (%s)"
-#: src/Module/Privacy/PermissionTooltip.php:238
+#: src/Module/Privacy/PermissionTooltip.php:224
#, php-format
msgid "Followers (%s)"
msgstr "Luchd-leantainn (%s)"
-#: src/Module/Privacy/PermissionTooltip.php:255
+#: src/Module/Privacy/PermissionTooltip.php:241
#, php-format
msgid "%d more"
msgstr "%d eile"
-#: src/Module/Profile/Contacts.php:159
+#: src/Module/Profile/Contacts.php:145
msgid "No contacts."
msgstr "Chan eil neach-aithne ann."
-#: src/Module/Profile/Conversations.php:106
-#: src/Module/Profile/Conversations.php:109 src/Module/Profile/Profile.php:353
-#: src/Module/Profile/Profile.php:356 src/Protocol/Feed.php:1114
-#: src/Protocol/OStatus.php:1011
-#, php-format
-msgid "%s's timeline"
-msgstr "An loidhne-ama aig %s"
-
-#: src/Module/Profile/Conversations.php:107 src/Module/Profile/Profile.php:354
-#: src/Protocol/Feed.php:1118 src/Protocol/OStatus.php:1016
+#: src/Module/Profile/Conversations.php:92 src/Module/Profile/Profile.php:339
+#: src/Protocol/Feed.php:1097
#, php-format
msgid "%s's posts"
msgstr "Na postaichean aig %s"
-#: src/Module/Profile/Conversations.php:108 src/Module/Profile/Profile.php:355
-#: src/Protocol/Feed.php:1121 src/Protocol/OStatus.php:1020
+#: src/Module/Profile/Conversations.php:93 src/Module/Profile/Profile.php:340
+#: src/Protocol/Feed.php:1100
#, php-format
msgid "%s's comments"
msgstr "Na beachdan aig %s"
-#: src/Module/Profile/Photos.php:164 src/Module/Profile/Photos.php:167
-#: src/Module/Profile/Photos.php:192
-#: src/Module/Settings/Profile/Photo/Index.php:58
+#: src/Module/Profile/Conversations.php:94 src/Module/Profile/Profile.php:341
+#: src/Protocol/Feed.php:1093
+#, php-format
+msgid "%s's timeline"
+msgstr "An loidhne-ama aig %s"
+
+#: src/Module/Profile/Photos.php:150 src/Module/Profile/Photos.php:153
+#: src/Module/Profile/Photos.php:178
+#: src/Module/Settings/Profile/Photo/Index.php:44
#, php-format
msgid "Image exceeds size limit of %s"
msgstr "Tha an dealbh nas motha na tha ceadaichte dhe %s"
-#: src/Module/Profile/Photos.php:170
+#: src/Module/Profile/Photos.php:156
msgid "Image upload didn't complete, please try again"
msgstr "Cha deach luchdadh suas an deilbh a choileanadh, feuch ris a-rithist"
-#: src/Module/Profile/Photos.php:173
+#: src/Module/Profile/Photos.php:159
msgid "Image file is missing"
msgstr "Tha faidhle an deilbh a dhìth"
-#: src/Module/Profile/Photos.php:178
+#: src/Module/Profile/Photos.php:164
msgid ""
"Server can't accept new file upload at this time, please contact your "
"administrator"
msgstr "Cha ghabh am frithealaiche ri luchdadh suas deilbh ùir aig an àm seo, cuir fios gun rianaire agad"
-#: src/Module/Profile/Photos.php:200
+#: src/Module/Profile/Photos.php:186
msgid "Image file is empty."
msgstr "Tha faidhle an deilbh falamh."
-#: src/Module/Profile/Photos.php:352
+#: src/Module/Profile/Photos.php:338
msgid "View Album"
msgstr "Seall an t-albam"
-#: src/Module/Profile/Profile.php:114 src/Module/Profile/Restricted.php:50
+#: src/Module/Profile/Profile.php:100 src/Module/Profile/Restricted.php:36
msgid "Profile not found."
msgstr "Cha deach a’ phròifil a lorg."
-#: src/Module/Profile/Profile.php:160
+#: src/Module/Profile/Profile.php:146
#, php-format
msgid ""
"You're currently viewing your profile as %s Cancel"
msgstr "Tha thu a’ sealltainn air a’ phròifil agad mar %s Sguir dheth"
-#: src/Module/Profile/Profile.php:169
+#: src/Module/Profile/Profile.php:155
msgid "Full Name:"
msgstr "An t-ainm slàn:"
-#: src/Module/Profile/Profile.php:174
+#: src/Module/Profile/Profile.php:160
msgid "Member since:"
msgstr "Ball o chionn:"
-#: src/Module/Profile/Profile.php:180
+#: src/Module/Profile/Profile.php:166
msgid "j F, Y"
msgstr "j F Y"
-#: src/Module/Profile/Profile.php:181
+#: src/Module/Profile/Profile.php:167
msgid "j F"
msgstr "j F"
-#: src/Module/Profile/Profile.php:189 src/Util/Temporal.php:168
+#: src/Module/Profile/Profile.php:175 src/Util/Temporal.php:154
msgid "Birthday:"
msgstr "Co-là breith:"
-#: src/Module/Profile/Profile.php:192
-#: src/Module/Settings/Profile/Index.php:296 src/Util/Temporal.php:170
+#: src/Module/Profile/Profile.php:178
+#: src/Module/Settings/Profile/Index.php:282 src/Util/Temporal.php:156
msgid "Age: "
msgstr "Aois: "
-#: src/Module/Profile/Profile.php:192
-#: src/Module/Settings/Profile/Index.php:296 src/Util/Temporal.php:170
+#: src/Module/Profile/Profile.php:178
+#: src/Module/Settings/Profile/Index.php:282 src/Util/Temporal.php:156
#, php-format
msgid "%d year old"
msgid_plural "%d years old"
@@ -9337,46 +9318,46 @@ msgstr[1] "%d bhliadhna a dh’aois"
msgstr[2] "%d bliadhnaichean a dh’aois"
msgstr[3] "%d bliadhna a dh’aois"
-#: src/Module/Profile/Profile.php:197
-#: src/Module/Settings/Profile/Index.php:289
+#: src/Module/Profile/Profile.php:183
+#: src/Module/Settings/Profile/Index.php:275
msgid "Description:"
msgstr "Tuairisgeul:"
-#: src/Module/Profile/Profile.php:263
+#: src/Module/Profile/Profile.php:249
msgid "Groups:"
msgstr "Buidhnean:"
-#: src/Module/Profile/Profile.php:275
+#: src/Module/Profile/Profile.php:261
msgid "View profile as:"
msgstr "Seall a’ phròifil mar:"
-#: src/Module/Profile/Profile.php:292
+#: src/Module/Profile/Profile.php:278
msgid "View as"
msgstr "Seall mar"
-#: src/Module/Profile/RemoteFollow.php:82
+#: src/Module/Profile/RemoteFollow.php:68
msgid "Profile unavailable."
msgstr "Chan eil a’ phròifil ri fhaighinn."
-#: src/Module/Profile/RemoteFollow.php:88
+#: src/Module/Profile/RemoteFollow.php:74
msgid "Invalid locator"
msgstr "Lorgaire mì-dhligheach"
-#: src/Module/Profile/RemoteFollow.php:95
+#: src/Module/Profile/RemoteFollow.php:81
msgid "The provided profile link doesn't seem to be valid"
msgstr "Chan eil coltas dligheach air ceangal na pròifil a chaidh a sholar"
-#: src/Module/Profile/RemoteFollow.php:100
+#: src/Module/Profile/RemoteFollow.php:86
msgid ""
"Remote subscription can't be done for your network. Please subscribe "
"directly on your system."
msgstr ""
-#: src/Module/Profile/RemoteFollow.php:128
+#: src/Module/Profile/RemoteFollow.php:114
msgid "Friend/Connection Request"
msgstr ""
-#: src/Module/Profile/RemoteFollow.php:129
+#: src/Module/Profile/RemoteFollow.php:115
#, php-format
msgid ""
"Enter your Webfinger address (user@domain.tld) or profile URL here. If this "
@@ -9384,579 +9365,579 @@ msgid ""
" or %s directly on your system."
msgstr ""
-#: src/Module/Profile/RemoteFollow.php:130
+#: src/Module/Profile/RemoteFollow.php:116
#, php-format
msgid ""
"If you are not yet a member of the free social web, follow "
"this link to find a public Friendica node and join us today."
msgstr ""
-#: src/Module/Profile/RemoteFollow.php:131
+#: src/Module/Profile/RemoteFollow.php:117
msgid "Your Webfinger address or profile URL:"
msgstr ""
-#: src/Module/Profile/Restricted.php:59
+#: src/Module/Profile/Restricted.php:45
msgid "Restricted profile"
msgstr ""
-#: src/Module/Profile/Restricted.php:60
+#: src/Module/Profile/Restricted.php:46
msgid ""
"This profile has been restricted which prevents access to their public "
"content from anonymous visitors."
msgstr ""
-#: src/Module/Profile/Schedule.php:83
+#: src/Module/Profile/Schedule.php:69
msgid "Scheduled"
msgstr ""
-#: src/Module/Profile/Schedule.php:84
+#: src/Module/Profile/Schedule.php:70
msgid "Content"
msgstr ""
-#: src/Module/Profile/Schedule.php:85
+#: src/Module/Profile/Schedule.php:71
msgid "Remove post"
msgstr ""
-#: src/Module/Register.php:91
+#: src/Module/Register.php:77
msgid "Only parent users can create additional accounts."
msgstr ""
-#: src/Module/Register.php:106 src/Module/User/Import.php:112
+#: src/Module/Register.php:92 src/Module/User/Import.php:98
msgid ""
"This site has exceeded the number of allowed daily account registrations. "
"Please try again tomorrow."
msgstr "Chlàradh na tha ceadaichte de chunntasan ùra air an làrach seo an-diugh. Feuch ris a-rithist a-màireach."
-#: src/Module/Register.php:123
+#: src/Module/Register.php:109
msgid ""
"You may (optionally) fill in this form via OpenID by supplying your OpenID "
"and clicking \"Register\"."
msgstr ""
-#: src/Module/Register.php:124
+#: src/Module/Register.php:110
msgid ""
"If you are not familiar with OpenID, please leave that field blank and fill "
"in the rest of the items."
msgstr ""
-#: src/Module/Register.php:125
+#: src/Module/Register.php:111
msgid "Your OpenID (optional): "
msgstr ""
-#: src/Module/Register.php:134
+#: src/Module/Register.php:120
msgid "Include your profile in member directory?"
msgstr ""
-#: src/Module/Register.php:155
+#: src/Module/Register.php:141
msgid "Note for the admin"
msgstr ""
-#: src/Module/Register.php:155
+#: src/Module/Register.php:141
msgid "Leave a message for the admin, why you want to join this node"
msgstr ""
-#: src/Module/Register.php:156
+#: src/Module/Register.php:142
msgid "Membership on this site is by invitation only."
msgstr ""
-#: src/Module/Register.php:157
+#: src/Module/Register.php:143
msgid "Your invitation code: "
msgstr ""
-#: src/Module/Register.php:165
+#: src/Module/Register.php:151
msgid "Your Display Name (as you would like it to be displayed on this system"
msgstr ""
-#: src/Module/Register.php:166
+#: src/Module/Register.php:152
msgid ""
"Your Email Address: (Initial information will be send there, so this has to "
"be an existing address.)"
msgstr ""
-#: src/Module/Register.php:167
+#: src/Module/Register.php:153
msgid "Please repeat your e-mail address:"
msgstr ""
-#: src/Module/Register.php:169 src/Module/Security/PasswordTooLong.php:100
-#: src/Module/Settings/Account.php:569
+#: src/Module/Register.php:155 src/Module/Security/PasswordTooLong.php:86
+#: src/Module/Settings/Account.php:555
msgid "New Password:"
msgstr ""
-#: src/Module/Register.php:169
+#: src/Module/Register.php:155
msgid "Leave empty for an auto generated password."
msgstr ""
-#: src/Module/Register.php:170 src/Module/Security/PasswordTooLong.php:101
-#: src/Module/Settings/Account.php:570
+#: src/Module/Register.php:156 src/Module/Security/PasswordTooLong.php:87
+#: src/Module/Settings/Account.php:556
msgid "Confirm:"
msgstr ""
-#: src/Module/Register.php:171
+#: src/Module/Register.php:157
#, php-format
msgid ""
"Choose a profile nickname. This must begin with a text character. Your "
"profile address on this site will then be \"nickname@%s\"."
msgstr ""
-#: src/Module/Register.php:172
+#: src/Module/Register.php:158
msgid "Choose a nickname: "
msgstr ""
-#: src/Module/Register.php:180 src/Module/User/Import.php:118
+#: src/Module/Register.php:166 src/Module/User/Import.php:104
msgid "Import"
msgstr "Ion-phortaich"
-#: src/Module/Register.php:181
+#: src/Module/Register.php:167
msgid "Import your profile to this friendica instance"
msgstr ""
-#: src/Module/Register.php:188
+#: src/Module/Register.php:174
msgid "Note: This node explicitly contains adult content"
msgstr ""
-#: src/Module/Register.php:190 src/Module/Settings/Delegation.php:181
+#: src/Module/Register.php:176 src/Module/Settings/Delegation.php:167
msgid "Parent Password:"
msgstr ""
-#: src/Module/Register.php:190 src/Module/Settings/Delegation.php:181
+#: src/Module/Register.php:176 src/Module/Settings/Delegation.php:167
msgid ""
"Please enter the password of the parent account to legitimize your request."
msgstr ""
-#: src/Module/Register.php:219
+#: src/Module/Register.php:205
msgid "Password doesn't match."
msgstr ""
-#: src/Module/Register.php:225
+#: src/Module/Register.php:211
msgid "Please enter your password."
msgstr ""
-#: src/Module/Register.php:267
+#: src/Module/Register.php:253
msgid "You have entered too much information."
msgstr ""
-#: src/Module/Register.php:290
+#: src/Module/Register.php:276
msgid "Please enter the identical mail address in the second field."
msgstr ""
-#: src/Module/Register.php:298
+#: src/Module/Register.php:284
msgid "Nickname cannot start with a digit."
msgstr ""
-#: src/Module/Register.php:300
+#: src/Module/Register.php:286
msgid "Nickname can only contain US-ASCII characters."
msgstr ""
-#: src/Module/Register.php:329
+#: src/Module/Register.php:315
msgid "The additional account was created."
msgstr ""
-#: src/Module/Register.php:354
+#: src/Module/Register.php:340
msgid ""
"Registration successful. Please check your email for further instructions."
msgstr ""
-#: src/Module/Register.php:361
+#: src/Module/Register.php:347
#, php-format
msgid ""
"Failed to send email message. Here your accout details:You can enter one of your one-time recovery codes in case you lost access" " to your mobile device.
" msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:101 +#: src/Module/Security/TwoFactor/Recovery.php:87 #, php-format msgid "Don’t have your phone? Enter a two-factor recovery code" msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:102 +#: src/Module/Security/TwoFactor/Recovery.php:88 msgid "Please enter a recovery code" msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:103 +#: src/Module/Security/TwoFactor/Recovery.php:89 msgid "Submit recovery code and complete login" msgstr "" -#: src/Module/Security/TwoFactor/SignOut.php:122 +#: src/Module/Security/TwoFactor/SignOut.php:108 msgid "Sign out of this browser?" msgstr "" -#: src/Module/Security/TwoFactor/SignOut.php:123 +#: src/Module/Security/TwoFactor/SignOut.php:109 msgid "" "If you trust this browser, you will not be asked for verification code " "the next time you sign in.
" msgstr "" -#: src/Module/Security/TwoFactor/SignOut.php:124 +#: src/Module/Security/TwoFactor/SignOut.php:110 msgid "Sign out" msgstr "" -#: src/Module/Security/TwoFactor/SignOut.php:126 +#: src/Module/Security/TwoFactor/SignOut.php:112 msgid "Trust and sign out" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:96 +#: src/Module/Security/TwoFactor/Trust.php:82 msgid "Couldn't save browser to Cookie." msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:141 +#: src/Module/Security/TwoFactor/Trust.php:127 msgid "Trust this browser?" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:142 +#: src/Module/Security/TwoFactor/Trust.php:128 msgid "" "If you choose to trust this browser, you will not be asked for a " "verification code the next time you sign in.
" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:143 +#: src/Module/Security/TwoFactor/Trust.php:129 msgid "Not now" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:144 +#: src/Module/Security/TwoFactor/Trust.php:130 msgid "Don't trust" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:145 +#: src/Module/Security/TwoFactor/Trust.php:131 msgid "Trust" msgstr "" -#: src/Module/Security/TwoFactor/Verify.php:97 +#: src/Module/Security/TwoFactor/Verify.php:83 msgid "" "Open the two-factor authentication app on your device to get an " "authentication code and verify your identity.
" msgstr "" -#: src/Module/Security/TwoFactor/Verify.php:100 +#: src/Module/Security/TwoFactor/Verify.php:86 #, php-format msgid "" "If you do not have access to your authentication code you can use a two-factor recovery code." msgstr "" -#: src/Module/Security/TwoFactor/Verify.php:101 -#: src/Module/Settings/TwoFactor/Verify.php:158 +#: src/Module/Security/TwoFactor/Verify.php:87 +#: src/Module/Settings/TwoFactor/Verify.php:144 msgid "Please enter a code from your authentication app" msgstr "" -#: src/Module/Security/TwoFactor/Verify.php:102 +#: src/Module/Security/TwoFactor/Verify.php:88 msgid "Verify code and complete login" msgstr "" -#: src/Module/Settings/Account.php:96 +#: src/Module/Settings/Account.php:82 msgid "Please use a shorter name." msgstr "" -#: src/Module/Settings/Account.php:99 +#: src/Module/Settings/Account.php:85 msgid "Name too short." msgstr "" -#: src/Module/Settings/Account.php:108 +#: src/Module/Settings/Account.php:94 msgid "Wrong Password." msgstr "" -#: src/Module/Settings/Account.php:113 +#: src/Module/Settings/Account.php:99 msgid "Invalid email." msgstr "" -#: src/Module/Settings/Account.php:117 +#: src/Module/Settings/Account.php:103 msgid "Cannot change to that email." msgstr "" -#: src/Module/Settings/Account.php:146 src/Module/Settings/Account.php:195 -#: src/Module/Settings/Account.php:216 src/Module/Settings/Account.php:300 -#: src/Module/Settings/Account.php:329 +#: src/Module/Settings/Account.php:132 src/Module/Settings/Account.php:181 +#: src/Module/Settings/Account.php:202 src/Module/Settings/Account.php:286 +#: src/Module/Settings/Account.php:315 msgid "Settings were not updated." msgstr "" -#: src/Module/Settings/Account.php:347 +#: src/Module/Settings/Account.php:333 msgid "Contact CSV file upload error" msgstr "" -#: src/Module/Settings/Account.php:366 +#: src/Module/Settings/Account.php:352 msgid "Importing Contacts done" msgstr "" -#: src/Module/Settings/Account.php:379 +#: src/Module/Settings/Account.php:365 msgid "Relocate message has been send to your contacts" msgstr "Chaidh teachdaireachd mun imrich a chur dhan luchd-aithne agad" -#: src/Module/Settings/Account.php:396 +#: src/Module/Settings/Account.php:382 msgid "Unable to find your profile. Please contact your admin." msgstr "" -#: src/Module/Settings/Account.php:438 +#: src/Module/Settings/Account.php:424 msgid "" "Account for a service that automatically shares content based on user " "defined channels." msgstr "" -#: src/Module/Settings/Account.php:448 +#: src/Module/Settings/Account.php:434 msgid "Personal Page Subtypes" msgstr "" -#: src/Module/Settings/Account.php:449 +#: src/Module/Settings/Account.php:435 msgid "Community Group Subtypes" msgstr "" -#: src/Module/Settings/Account.php:460 +#: src/Module/Settings/Account.php:446 msgid "Account for a personal profile." msgstr "" -#: src/Module/Settings/Account.php:467 +#: src/Module/Settings/Account.php:453 msgid "" "Account for an organisation that automatically approves contact requests as " "\"Followers\"." msgstr "" -#: src/Module/Settings/Account.php:474 +#: src/Module/Settings/Account.php:460 msgid "" "Account for a news reflector that automatically approves contact requests as" " \"Followers\"." msgstr "" -#: src/Module/Settings/Account.php:481 +#: src/Module/Settings/Account.php:467 msgid "Account for community discussions." msgstr "" -#: src/Module/Settings/Account.php:489 +#: src/Module/Settings/Account.php:475 msgid "" "Account for a regular personal profile that requires manual approval of " "\"Friends\" and \"Followers\"." msgstr "Cunntas do phròifil phearsanta àbhaisteach a dh’iarras aontachadh a làimh air “Caraidean” is “Luchd-leantainn”." -#: src/Module/Settings/Account.php:496 +#: src/Module/Settings/Account.php:482 msgid "" "Account for a public profile that automatically approves contact requests as" " \"Followers\"." msgstr "" -#: src/Module/Settings/Account.php:503 +#: src/Module/Settings/Account.php:489 msgid "Automatically approves all contact requests." msgstr "" -#: src/Module/Settings/Account.php:510 +#: src/Module/Settings/Account.php:496 msgid "Contact requests have to be manually approved." msgstr "" -#: src/Module/Settings/Account.php:517 +#: src/Module/Settings/Account.php:503 msgid "" "Account for a popular profile that automatically approves contact requests " "as \"Friends\"." msgstr "" -#: src/Module/Settings/Account.php:522 +#: src/Module/Settings/Account.php:508 msgid "Private Group [Experimental]" msgstr "" -#: src/Module/Settings/Account.php:524 +#: src/Module/Settings/Account.php:510 msgid "Requires manual approval of contact requests." msgstr "Feumaidh tu aontachadh ri iarrtasan luchd-aithne a làimh." -#: src/Module/Settings/Account.php:533 +#: src/Module/Settings/Account.php:519 msgid "OpenID:" msgstr "" -#: src/Module/Settings/Account.php:533 +#: src/Module/Settings/Account.php:519 msgid "(Optional) Allow this OpenID to login to this account." msgstr "" -#: src/Module/Settings/Account.php:541 +#: src/Module/Settings/Account.php:527 msgid "Publish your profile in your local site directory?" msgstr "" -#: src/Module/Settings/Account.php:541 +#: src/Module/Settings/Account.php:527 #, php-format msgid "" "Your profile will be published in this node's local " @@ -9964,94 +9945,94 @@ msgid "" " system settings." msgstr "" -#: src/Module/Settings/Account.php:547 +#: src/Module/Settings/Account.php:533 #, php-format msgid "" "Your profile will also be published in the global friendica directories " "(e.g. %s)." msgstr "Thèid a’ phròifil agad fhoillseachadh sna h-eòlairean cho-naisgte aig Friendica cuideachd (m.e. %s)." -#: src/Module/Settings/Account.php:560 +#: src/Module/Settings/Account.php:546 msgid "Account Settings" msgstr "" -#: src/Module/Settings/Account.php:561 +#: src/Module/Settings/Account.php:547 #, php-format msgid "Your Identity Address is '%s' or '%s'." msgstr "" -#: src/Module/Settings/Account.php:568 +#: src/Module/Settings/Account.php:554 msgid "Password Settings" msgstr "" -#: src/Module/Settings/Account.php:570 +#: src/Module/Settings/Account.php:556 msgid "Leave password fields blank unless changing" msgstr "" -#: src/Module/Settings/Account.php:572 +#: src/Module/Settings/Account.php:558 msgid "Password:" msgstr "" -#: src/Module/Settings/Account.php:572 +#: src/Module/Settings/Account.php:558 msgid "Your current password to confirm the changes of the email address" msgstr "" -#: src/Module/Settings/Account.php:575 +#: src/Module/Settings/Account.php:561 msgid "Delete OpenID URL" msgstr "" -#: src/Module/Settings/Account.php:577 +#: src/Module/Settings/Account.php:563 msgid "Basic Settings" msgstr "" -#: src/Module/Settings/Account.php:578 -#: src/Module/Settings/Profile/Index.php:288 +#: src/Module/Settings/Account.php:564 +#: src/Module/Settings/Profile/Index.php:274 msgid "Display name:" msgstr "" -#: src/Module/Settings/Account.php:579 +#: src/Module/Settings/Account.php:565 msgid "Email Address:" msgstr "" -#: src/Module/Settings/Account.php:580 +#: src/Module/Settings/Account.php:566 msgid "Your Timezone:" msgstr "" -#: src/Module/Settings/Account.php:581 +#: src/Module/Settings/Account.php:567 msgid "Your Language:" msgstr "" -#: src/Module/Settings/Account.php:581 +#: src/Module/Settings/Account.php:567 msgid "" "Set the language we use to show you friendica interface and to send you " "emails" msgstr "" -#: src/Module/Settings/Account.php:582 +#: src/Module/Settings/Account.php:568 msgid "Default Post Location:" msgstr "" -#: src/Module/Settings/Account.php:583 +#: src/Module/Settings/Account.php:569 msgid "Use Browser Location:" msgstr "" -#: src/Module/Settings/Account.php:585 +#: src/Module/Settings/Account.php:571 msgid "Security and Privacy Settings" msgstr "" -#: src/Module/Settings/Account.php:587 +#: src/Module/Settings/Account.php:573 msgid "Maximum Friend Requests/Day:" msgstr "" -#: src/Module/Settings/Account.php:587 +#: src/Module/Settings/Account.php:573 msgid "(to prevent spam abuse)" msgstr "" -#: src/Module/Settings/Account.php:589 +#: src/Module/Settings/Account.php:575 msgid "Allow your profile to be searchable globally?" msgstr "An gabh a’ phròifil agad a lorg gu co-naisgte?" -#: src/Module/Settings/Account.php:589 +#: src/Module/Settings/Account.php:575 msgid "" "Activate this setting if you want others to easily find and follow you. Your" " profile will be searchable on remote systems. This setting also determines " @@ -10059,43 +10040,43 @@ msgid "" "indexed or not." msgstr "" -#: src/Module/Settings/Account.php:590 +#: src/Module/Settings/Account.php:576 msgid "Hide your contact/friend list from viewers of your profile?" msgstr "" -#: src/Module/Settings/Account.php:590 +#: src/Module/Settings/Account.php:576 msgid "" "A list of your contacts is displayed on your profile page. Activate this " "option to disable the display of your contact list." msgstr "" -#: src/Module/Settings/Account.php:591 +#: src/Module/Settings/Account.php:577 msgid "Hide your public content from anonymous viewers" msgstr "" -#: src/Module/Settings/Account.php:591 +#: src/Module/Settings/Account.php:577 msgid "" "Anonymous visitors will only see your basic profile details. Your public " "posts and replies will still be freely accessible on the remote servers of " "your followers and through relays." msgstr "" -#: src/Module/Settings/Account.php:592 +#: src/Module/Settings/Account.php:578 msgid "Make public posts unlisted" msgstr "" -#: src/Module/Settings/Account.php:592 +#: src/Module/Settings/Account.php:578 msgid "" "Your public posts will not appear on the community pages or in search " "results, nor be sent to relay servers. However they can still appear on " "public feeds on remote servers." msgstr "" -#: src/Module/Settings/Account.php:593 +#: src/Module/Settings/Account.php:579 msgid "Make all posted pictures accessible" msgstr "" -#: src/Module/Settings/Account.php:593 +#: src/Module/Settings/Account.php:579 msgid "" "This option makes every posted picture accessible via the direct link. This " "is a workaround for the problem that most other networks can't handle " @@ -10103,352 +10084,352 @@ msgid "" "public on your photo albums though." msgstr "" -#: src/Module/Settings/Account.php:594 +#: src/Module/Settings/Account.php:580 msgid "Allow friends to post to your profile page?" msgstr "" -#: src/Module/Settings/Account.php:594 +#: src/Module/Settings/Account.php:580 msgid "" "Your contacts may write posts on your profile wall. These posts will be " "distributed to your contacts" msgstr "’S urrainn dhan luchd-aithne agad postaichean a sgrìobhadh air balla do phròifile. Thèid na postaichean sin a sgaoileadh dhan luchd-aithne agad" -#: src/Module/Settings/Account.php:595 +#: src/Module/Settings/Account.php:581 msgid "Allow friends to tag your posts?" msgstr "" -#: src/Module/Settings/Account.php:595 +#: src/Module/Settings/Account.php:581 msgid "Your contacts can add additional tags to your posts." msgstr "" -#: src/Module/Settings/Account.php:596 +#: src/Module/Settings/Account.php:582 msgid "Default privacy circle for new contacts" msgstr "" -#: src/Module/Settings/Account.php:597 +#: src/Module/Settings/Account.php:583 msgid "Default privacy circle for new group contacts" msgstr "" -#: src/Module/Settings/Account.php:598 +#: src/Module/Settings/Account.php:584 msgid "Default Post Permissions" msgstr "" -#: src/Module/Settings/Account.php:602 +#: src/Module/Settings/Account.php:588 msgid "Expiration settings" msgstr "" -#: src/Module/Settings/Account.php:603 +#: src/Module/Settings/Account.php:589 msgid "Automatically expire posts after this many days:" msgstr "" -#: src/Module/Settings/Account.php:603 +#: src/Module/Settings/Account.php:589 msgid "If empty, posts will not expire. Expired posts will be deleted" msgstr "" -#: src/Module/Settings/Account.php:604 +#: src/Module/Settings/Account.php:590 msgid "Expire posts" msgstr "" -#: src/Module/Settings/Account.php:604 +#: src/Module/Settings/Account.php:590 msgid "When activated, posts and comments will be expired." msgstr "" -#: src/Module/Settings/Account.php:605 +#: src/Module/Settings/Account.php:591 msgid "Expire personal notes" msgstr "" -#: src/Module/Settings/Account.php:605 +#: src/Module/Settings/Account.php:591 msgid "" "When activated, the personal notes on your profile page will be expired." msgstr "" -#: src/Module/Settings/Account.php:606 +#: src/Module/Settings/Account.php:592 msgid "Expire starred posts" msgstr "Falbhaidh an ùine air postaichean le rionnag riutha" -#: src/Module/Settings/Account.php:606 +#: src/Module/Settings/Account.php:592 msgid "" "Starring posts keeps them from being expired. That behaviour is overwritten " "by this setting." msgstr "Nuair a bhios rionnag ri post, chan fhalbh an ùine orra. Sgrìobhaidh an roghainn seo thairis air a’ ghiùlan sin." -#: src/Module/Settings/Account.php:607 +#: src/Module/Settings/Account.php:593 msgid "Only expire posts by others" msgstr "" -#: src/Module/Settings/Account.php:607 +#: src/Module/Settings/Account.php:593 msgid "" "When activated, your own posts never expire. Then the settings above are " "only valid for posts you received." msgstr "" -#: src/Module/Settings/Account.php:610 +#: src/Module/Settings/Account.php:596 msgid "Notification Settings" msgstr "" -#: src/Module/Settings/Account.php:611 +#: src/Module/Settings/Account.php:597 msgid "Send a notification email when:" msgstr "" -#: src/Module/Settings/Account.php:612 +#: src/Module/Settings/Account.php:598 msgid "You receive an introduction" msgstr "Fhuair thu cur an aithne" -#: src/Module/Settings/Account.php:613 +#: src/Module/Settings/Account.php:599 msgid "Your introductions are confirmed" msgstr "Chaidh na cuir an aithne agad a dhearbhadh" -#: src/Module/Settings/Account.php:614 +#: src/Module/Settings/Account.php:600 msgid "Someone writes on your profile wall" msgstr "" -#: src/Module/Settings/Account.php:615 +#: src/Module/Settings/Account.php:601 msgid "Someone writes a followup comment" msgstr "" -#: src/Module/Settings/Account.php:616 +#: src/Module/Settings/Account.php:602 msgid "You receive a private message" msgstr "" -#: src/Module/Settings/Account.php:617 +#: src/Module/Settings/Account.php:603 msgid "You receive a friend suggestion" msgstr "" -#: src/Module/Settings/Account.php:618 +#: src/Module/Settings/Account.php:604 msgid "You are tagged in a post" msgstr "" -#: src/Module/Settings/Account.php:620 +#: src/Module/Settings/Account.php:606 msgid "Create a desktop notification when:" msgstr "" -#: src/Module/Settings/Account.php:621 +#: src/Module/Settings/Account.php:607 msgid "Someone tagged you" msgstr "" -#: src/Module/Settings/Account.php:622 +#: src/Module/Settings/Account.php:608 msgid "Someone directly commented on your post" msgstr "" -#: src/Module/Settings/Account.php:623 +#: src/Module/Settings/Account.php:609 msgid "Someone liked your content" msgstr "’S toigh le cuideigin an t-susbaint agad" -#: src/Module/Settings/Account.php:623 src/Module/Settings/Account.php:624 +#: src/Module/Settings/Account.php:609 src/Module/Settings/Account.php:610 msgid "Can only be enabled, when the direct comment notification is enabled." msgstr "" -#: src/Module/Settings/Account.php:624 +#: src/Module/Settings/Account.php:610 msgid "Someone shared your content" msgstr "Cho-roinn cuideigin an t-susbaint agad" -#: src/Module/Settings/Account.php:625 +#: src/Module/Settings/Account.php:611 msgid "Someone commented in your thread" msgstr "" -#: src/Module/Settings/Account.php:626 +#: src/Module/Settings/Account.php:612 msgid "Someone commented in a thread where you commented" msgstr "" -#: src/Module/Settings/Account.php:627 +#: src/Module/Settings/Account.php:613 msgid "Someone commented in a thread where you interacted" msgstr "Chuir cuideigin beachd ri snàithlean san do rinn thu co-luadar" -#: src/Module/Settings/Account.php:629 +#: src/Module/Settings/Account.php:615 msgid "Activate desktop notifications" msgstr "" -#: src/Module/Settings/Account.php:629 +#: src/Module/Settings/Account.php:615 msgid "Show desktop popup on new notifications" msgstr "" -#: src/Module/Settings/Account.php:633 +#: src/Module/Settings/Account.php:619 msgid "Text-only notification emails" msgstr "" -#: src/Module/Settings/Account.php:635 +#: src/Module/Settings/Account.php:621 msgid "Send text only notification emails, without the html part" msgstr "" -#: src/Module/Settings/Account.php:639 +#: src/Module/Settings/Account.php:625 msgid "Show detailled notifications" msgstr "" -#: src/Module/Settings/Account.php:641 +#: src/Module/Settings/Account.php:627 msgid "" "Per default, notifications are condensed to a single notification per item. " "When enabled every notification is displayed." msgstr "" -#: src/Module/Settings/Account.php:645 +#: src/Module/Settings/Account.php:631 msgid "Show notifications of ignored contacts" msgstr "" -#: src/Module/Settings/Account.php:647 +#: src/Module/Settings/Account.php:633 msgid "" "You don't see posts from ignored contacts. But you still see their comments." " This setting controls if you want to still receive regular notifications " "that are caused by ignored contacts or not." msgstr "" -#: src/Module/Settings/Account.php:650 +#: src/Module/Settings/Account.php:636 msgid "Advanced Account/Page Type Settings" msgstr "" -#: src/Module/Settings/Account.php:651 +#: src/Module/Settings/Account.php:637 msgid "Change the behaviour of this account for special situations" msgstr "" -#: src/Module/Settings/Account.php:654 +#: src/Module/Settings/Account.php:640 msgid "Import Contacts" msgstr "" -#: src/Module/Settings/Account.php:655 +#: src/Module/Settings/Account.php:641 msgid "" "Upload a CSV file that contains the handle of your followed accounts in the " "first column you exported from the old account." msgstr "" -#: src/Module/Settings/Account.php:656 +#: src/Module/Settings/Account.php:642 msgid "Upload File" msgstr "" -#: src/Module/Settings/Account.php:659 +#: src/Module/Settings/Account.php:645 msgid "Relocate" msgstr "Imrich" -#: src/Module/Settings/Account.php:660 +#: src/Module/Settings/Account.php:646 msgid "" "If you have moved this profile from another server, and some of your " "contacts don't receive your updates, try pushing this button." msgstr "" -#: src/Module/Settings/Account.php:661 +#: src/Module/Settings/Account.php:647 msgid "Resend relocate message to contacts" msgstr "Cuir teachdaireachd mun imrich dhan neach-aithne" -#: src/Module/Settings/Addons.php:86 +#: src/Module/Settings/Addons.php:72 msgid "Addon Settings" msgstr "Roghainnean nan tuilleadan" -#: src/Module/Settings/Addons.php:87 +#: src/Module/Settings/Addons.php:73 msgid "No Addon settings configured" msgstr "Cha deach roghainnean tuilleadain a rèiteachadh" -#: src/Module/Settings/Channels.php:148 +#: src/Module/Settings/Channels.php:134 msgid "" "This page can be used to define the channels that will automatically be " "reshared by your account." msgstr "" -#: src/Module/Settings/Channels.php:153 +#: src/Module/Settings/Channels.php:139 msgid "This page can be used to define your own channels." msgstr "" -#: src/Module/Settings/Channels.php:182 +#: src/Module/Settings/Channels.php:168 msgid "Publish" msgstr "" -#: src/Module/Settings/Channels.php:182 +#: src/Module/Settings/Channels.php:168 msgid "" "When selected, the channel results are reshared. This only works for public " "ActivityPub posts from the public timeline or the user defined circles." msgstr "" -#: src/Module/Settings/Channels.php:190 src/Module/Settings/Channels.php:211 -#: src/Module/Settings/Display.php:338 +#: src/Module/Settings/Channels.php:176 src/Module/Settings/Channels.php:197 +#: src/Module/Settings/Display.php:324 msgid "Label" msgstr "" -#: src/Module/Settings/Channels.php:191 src/Module/Settings/Channels.php:212 -#: src/Module/Settings/Display.php:339 -#: src/Module/Settings/TwoFactor/AppSpecific.php:137 +#: src/Module/Settings/Channels.php:177 src/Module/Settings/Channels.php:198 +#: src/Module/Settings/Display.php:325 +#: src/Module/Settings/TwoFactor/AppSpecific.php:123 msgid "Description" msgstr "" -#: src/Module/Settings/Channels.php:192 src/Module/Settings/Channels.php:213 +#: src/Module/Settings/Channels.php:178 src/Module/Settings/Channels.php:199 msgid "Access Key" msgstr "" -#: src/Module/Settings/Channels.php:193 src/Module/Settings/Channels.php:214 +#: src/Module/Settings/Channels.php:179 src/Module/Settings/Channels.php:200 msgid "Circle/Channel" msgstr "" -#: src/Module/Settings/Channels.php:194 src/Module/Settings/Channels.php:215 +#: src/Module/Settings/Channels.php:180 src/Module/Settings/Channels.php:201 msgid "Include Tags" msgstr "" -#: src/Module/Settings/Channels.php:195 src/Module/Settings/Channels.php:216 +#: src/Module/Settings/Channels.php:181 src/Module/Settings/Channels.php:202 msgid "Exclude Tags" msgstr "" -#: src/Module/Settings/Channels.php:196 src/Module/Settings/Channels.php:217 +#: src/Module/Settings/Channels.php:182 src/Module/Settings/Channels.php:203 msgid "Minimum Size" msgstr "" -#: src/Module/Settings/Channels.php:197 src/Module/Settings/Channels.php:218 +#: src/Module/Settings/Channels.php:183 src/Module/Settings/Channels.php:204 msgid "Maximum Size" msgstr "" -#: src/Module/Settings/Channels.php:198 src/Module/Settings/Channels.php:219 +#: src/Module/Settings/Channels.php:184 src/Module/Settings/Channels.php:205 msgid "Full Text Search" msgstr "" -#: src/Module/Settings/Channels.php:202 src/Module/Settings/Channels.php:223 +#: src/Module/Settings/Channels.php:188 src/Module/Settings/Channels.php:209 msgid "Select all languages that you want to see in this channel." msgstr "" -#: src/Module/Settings/Channels.php:204 +#: src/Module/Settings/Channels.php:190 msgid "Delete channel" msgstr "" -#: src/Module/Settings/Channels.php:204 +#: src/Module/Settings/Channels.php:190 msgid "Check to delete this entry from the channel list" msgstr "" -#: src/Module/Settings/Channels.php:211 +#: src/Module/Settings/Channels.php:197 msgid "Short name for the channel. It is displayed on the channels widget." msgstr "" -#: src/Module/Settings/Channels.php:212 +#: src/Module/Settings/Channels.php:198 msgid "This should describe the content of the channel in a few word." msgstr "" -#: src/Module/Settings/Channels.php:213 +#: src/Module/Settings/Channels.php:199 msgid "" "When you want to access this channel via an access key, you can define it " "here. Pay attention to not use an already used one." msgstr "" -#: src/Module/Settings/Channels.php:214 +#: src/Module/Settings/Channels.php:200 msgid "Select a circle or channel, that your channel should be based on." msgstr "" -#: src/Module/Settings/Channels.php:215 +#: src/Module/Settings/Channels.php:201 msgid "" "Comma separated list of tags. A post will be used when it contains any of " "the listed tags." msgstr "" -#: src/Module/Settings/Channels.php:216 +#: src/Module/Settings/Channels.php:202 msgid "" "Comma separated list of tags. If a post contain any of these tags, then it " "will not be part of nthis channel." msgstr "" -#: src/Module/Settings/Channels.php:217 +#: src/Module/Settings/Channels.php:203 msgid "" "Minimum post size. Leave empty for no minimum size. The size is calculated " "without links, attached posts, mentions or hashtags." msgstr "" -#: src/Module/Settings/Channels.php:218 +#: src/Module/Settings/Channels.php:204 msgid "" "Maximum post size. Leave empty for no maximum size. The size is calculated " "without links, attached posts, mentions or hashtags." msgstr "" -#: src/Module/Settings/Channels.php:219 +#: src/Module/Settings/Channels.php:205 #, php-format msgid "" "Search terms for the body, supports the \"boolean mode\" operators from " @@ -10456,600 +10437,589 @@ msgid "" "keywords: %s" msgstr "" -#: src/Module/Settings/Channels.php:220 +#: src/Module/Settings/Channels.php:206 msgid "Check to display images in the channel." msgstr "" -#: src/Module/Settings/Channels.php:221 +#: src/Module/Settings/Channels.php:207 msgid "Check to display videos in the channel." msgstr "" -#: src/Module/Settings/Channels.php:222 +#: src/Module/Settings/Channels.php:208 msgid "Check to display audio in the channel." msgstr "" -#: src/Module/Settings/Channels.php:227 +#: src/Module/Settings/Channels.php:213 msgid "Add new entry to the channel list" msgstr "" -#: src/Module/Settings/Channels.php:228 +#: src/Module/Settings/Channels.php:214 msgid "Add" msgstr "" -#: src/Module/Settings/Channels.php:230 +#: src/Module/Settings/Channels.php:216 msgid "Current Entries in the channel list" msgstr "" -#: src/Module/Settings/Channels.php:233 +#: src/Module/Settings/Channels.php:219 msgid "Delete entry from the channel list" msgstr "" -#: src/Module/Settings/Channels.php:234 +#: src/Module/Settings/Channels.php:220 msgid "Delete entry from the channel list?" msgstr "" -#: src/Module/Settings/Connectors.php:122 +#: src/Module/Settings/Connectors.php:108 msgid "Failed to connect with email account using the settings provided." msgstr "Cha deach leinn ceangal a dhèanamh leis a’ chunntas puist-d a’ cleachdadh nan roghainnean a chaidh a thoirt seachad." -#: src/Module/Settings/Connectors.php:169 -#: src/Module/Settings/Connectors.php:170 +#: src/Module/Settings/Connectors.php:155 +#: src/Module/Settings/Connectors.php:156 msgid "Diaspora (Socialhome, Hubzilla)" msgstr "Diaspora* (Socialhome, Hubzilla)" -#: src/Module/Settings/Connectors.php:169 -#: src/Module/Settings/Connectors.php:173 +#: src/Module/Settings/Connectors.php:155 #, php-format msgid "Built-in support for %s connectivity is enabled" msgstr "" -#: src/Module/Settings/Connectors.php:170 -#: src/Module/Settings/Connectors.php:172 +#: src/Module/Settings/Connectors.php:156 #, php-format msgid "Built-in support for %s connectivity is disabled" msgstr "" -#: src/Module/Settings/Connectors.php:172 -#: src/Module/Settings/Connectors.php:173 -msgid "OStatus (GNU Social)" -msgstr "OStatus (GNU Social)" - -#: src/Module/Settings/Connectors.php:185 +#: src/Module/Settings/Connectors.php:167 msgid "Email access is disabled on this site." msgstr "Tha an t-inntrigeadh le post-d à comas dhan làrach seo." -#: src/Module/Settings/Connectors.php:200 -#: src/Module/Settings/Connectors.php:254 +#: src/Module/Settings/Connectors.php:182 +#: src/Module/Settings/Connectors.php:233 msgid "None" msgstr "Chan eil gin" -#: src/Module/Settings/Connectors.php:204 +#: src/Module/Settings/Connectors.php:186 msgid "Default (Mastodon will display the title and a link to the post)" msgstr "" -#: src/Module/Settings/Connectors.php:205 +#: src/Module/Settings/Connectors.php:187 msgid "" "Use the summary (Mastodon and some others will treat it as content warning)" msgstr "" -#: src/Module/Settings/Connectors.php:206 +#: src/Module/Settings/Connectors.php:188 msgid "Embed the title in the body" msgstr "" -#: src/Module/Settings/Connectors.php:218 +#: src/Module/Settings/Connectors.php:199 msgid "General Social Media Settings" msgstr "Roghainnean coitcheann nam meadhanan sòisealta" -#: src/Module/Settings/Connectors.php:221 +#: src/Module/Settings/Connectors.php:202 msgid "Followed content scope" msgstr "Farsaingeachd na susbainte air a leanas tu" -#: src/Module/Settings/Connectors.php:223 +#: src/Module/Settings/Connectors.php:204 msgid "" "By default, conversations in which your follows participated but didn't " "start will be shown in your timeline. You can turn this behavior off, or " "expand it to the conversations in which your follows liked a post." msgstr "Nochdaidh na còmhraidhean sa ghabh an fheadhainn air a leanas tu pàirt ach nach do thòisich iad fhèin air an loidhne-ama agad a ghnàth. ’S urrainn dhut seo a chur dheth no a leudachadh ach an nochd na còmhraidhean far an toigh leis an fheadhainn air a leanas tu post." -#: src/Module/Settings/Connectors.php:225 +#: src/Module/Settings/Connectors.php:206 msgid "Only conversations my follows started" msgstr "Na còmhraidhean a thòisich cuideigin air a leanas mi a-mhàin" -#: src/Module/Settings/Connectors.php:226 +#: src/Module/Settings/Connectors.php:207 msgid "Conversations my follows started or commented on (default)" msgstr "Na còmhraidhean a thòisich cuideigin air a leanas mi no a chuir iad beachd riutha (bun-roghainn)" -#: src/Module/Settings/Connectors.php:227 +#: src/Module/Settings/Connectors.php:208 msgid "Any conversation my follows interacted with, including likes" msgstr "Còmhradh sam bith leis an do rinn cuideigin air a leanas mi co-luadar, a’ gabhail a-staigh nas toigh leotha" -#: src/Module/Settings/Connectors.php:230 +#: src/Module/Settings/Connectors.php:211 msgid "Collapse sensitive posts" msgstr "" -#: src/Module/Settings/Connectors.php:230 +#: src/Module/Settings/Connectors.php:211 msgid "" "If a post is marked as \"sensitive\", it will be displayed in a collapsed " "state, if this option is enabled." msgstr "" -#: src/Module/Settings/Connectors.php:231 +#: src/Module/Settings/Connectors.php:212 msgid "Enable intelligent shortening" msgstr "Cuir an giorrachadh tapaidh an comas" -#: src/Module/Settings/Connectors.php:231 +#: src/Module/Settings/Connectors.php:212 msgid "" "Normally the system tries to find the best link to add to shortened posts. " "If disabled, every shortened post will always point to the original " "friendica post." msgstr "Mar as àbhaist, feuchaidh an siostam gun dèid an ceangal as fheàrr a lorg gus a chur ri postaichean giorraichte. Ma tha seo à comas, tomhaidh gach post giorraichte ris a’ phost tùsail air friendica an-còmhnaidh." -#: src/Module/Settings/Connectors.php:232 +#: src/Module/Settings/Connectors.php:213 msgid "Enable simple text shortening" msgstr "Cuir an comas giorrachadh teacsa sìmplidh" -#: src/Module/Settings/Connectors.php:232 +#: src/Module/Settings/Connectors.php:213 msgid "" "Normally the system shortens posts at the next line feed. If this option is " "enabled then the system will shorten the text at the maximum character " "limit." msgstr "Mar as àbhaist, giorraichidh an siostam na postaichean aig an ath earrann. Ma tha an roghainn seo an comas, giorraichidh an siostam an teacsa aig crìoch nan caractaran ceadaichte." -#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Connectors.php:214 msgid "Attach the link title" msgstr "Cuir tiotal a’ cheangail ris" -#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Connectors.php:214 msgid "" "When activated, the title of the attached link will be added as a title on " "posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that" " share feed content." msgstr "Nuair a bhios seo an gnìomh, thèid tiotal a’ cheangail a chur ris mar tiotal air postaichean gu diaspora*. Tha seo as fheumaile dhan luchd-aithne “remote-self” a cho-roinneas susbaint inbhir." -#: src/Module/Settings/Connectors.php:234 +#: src/Module/Settings/Connectors.php:215 msgid "API: Use spoiler field as title" msgstr "" -#: src/Module/Settings/Connectors.php:234 +#: src/Module/Settings/Connectors.php:215 msgid "" "When activated, the \"spoiler_text\" field in the API will be used for the " "title on standalone posts. When deactivated it will be used for spoiler " "text. For comments it will always be used for spoiler text." msgstr "" -#: src/Module/Settings/Connectors.php:235 +#: src/Module/Settings/Connectors.php:216 msgid "API: Automatically links at the end of the post as attached posts" msgstr "" -#: src/Module/Settings/Connectors.php:235 +#: src/Module/Settings/Connectors.php:216 msgid "" "When activated, added links at the end of the post react the same way as " "added links in the web interface." msgstr "Nuair a bhios seo an gnìomh, bidh an t-aon ghiùlan aig ceanglaichean a thèid a chur ri bonn puist ’s a tha aig ceanglaichean a thèid a chur ris san eadar-aghaidh-lìn." -#: src/Module/Settings/Connectors.php:236 +#: src/Module/Settings/Connectors.php:217 msgid "Article Mode" msgstr "" -#: src/Module/Settings/Connectors.php:236 +#: src/Module/Settings/Connectors.php:217 msgid "" "Controls how posts with titles are transmitted. Mastodon and its forks don't" " display the content of these posts if the post is created in the correct " "(default) way." msgstr "" -#: src/Module/Settings/Connectors.php:237 +#: src/Module/Settings/Connectors.php:218 msgid "Your legacy ActivityPub/GNU Social account" msgstr "An cunntas ActivityPub/GNU Social dìleabach agad" -#: src/Module/Settings/Connectors.php:237 +#: src/Module/Settings/Connectors.php:218 msgid "" "If you enter your old account name from an ActivityPub based system or your " "GNU Social/Statusnet account name here (in the format user@domain.tld), your" " contacts will be added automatically. The field will be emptied when done." msgstr "Ma chuireas tu ainm seann-chunntais ris o shiostam stèidhichte air ActivityPub no ainm do chunntais GNU Social/Statusnet an-seo (san fhòrmat cleachdaiche@àrainn.tld), thèid an luchd-aithne agad a chur ris gu fèin-obrachail. Thèid an raon fhalamhachadh nuair a bhios sin deiseil." -#: src/Module/Settings/Connectors.php:239 -msgid "Repair OStatus subscriptions" -msgstr "Càraich fo-sgrìobhaidhean OStatus" - -#: src/Module/Settings/Connectors.php:243 +#: src/Module/Settings/Connectors.php:222 msgid "Email/Mailbox Setup" msgstr "Suidheachadh a’ phuist-d/a’ bhogsa-phuist" -#: src/Module/Settings/Connectors.php:244 +#: src/Module/Settings/Connectors.php:223 msgid "" "If you wish to communicate with email contacts using this service " "(optional), please specify how to connect to your mailbox." msgstr "Ma tha thu airson an t-seirbheis seo a chleachdadh airson conaltradh le luchd-aithne air a’ post-d (gu roghainneil), sònraich an dòigh air a nì thu ceangal leis a’ bhogsa-phuist agad." -#: src/Module/Settings/Connectors.php:245 +#: src/Module/Settings/Connectors.php:224 msgid "Last successful email check:" msgstr "An turas mu dheireadh a chaidh leinn sùil a thoirt air a’ phost-d:" -#: src/Module/Settings/Connectors.php:247 +#: src/Module/Settings/Connectors.php:226 msgid "IMAP server name:" msgstr "Ainm frithealaiche IMAP:" -#: src/Module/Settings/Connectors.php:248 +#: src/Module/Settings/Connectors.php:227 msgid "IMAP port:" msgstr "Port IMAP:" -#: src/Module/Settings/Connectors.php:249 +#: src/Module/Settings/Connectors.php:228 msgid "Security:" msgstr "Tèarainteachd:" -#: src/Module/Settings/Connectors.php:250 +#: src/Module/Settings/Connectors.php:229 msgid "Email login name:" msgstr "Ainm clàradh a-steach a’ phuist-d:" -#: src/Module/Settings/Connectors.php:251 +#: src/Module/Settings/Connectors.php:230 msgid "Email password:" msgstr "Facal-faire a’ phuist-d:" -#: src/Module/Settings/Connectors.php:252 +#: src/Module/Settings/Connectors.php:231 msgid "Reply-to address:" msgstr "An seòladh Freagairt-gu:" -#: src/Module/Settings/Connectors.php:253 +#: src/Module/Settings/Connectors.php:232 msgid "Send public posts to all email contacts:" msgstr "Cuir postaichean poblach dhan a h-uile neach-aithne puist-d:" -#: src/Module/Settings/Connectors.php:254 +#: src/Module/Settings/Connectors.php:233 msgid "Action after import:" msgstr "Gnìomh às dèid an ion-phortaidh:" -#: src/Module/Settings/Connectors.php:254 +#: src/Module/Settings/Connectors.php:233 msgid "Move to folder" msgstr "Gluais gu pasgan" -#: src/Module/Settings/Connectors.php:255 +#: src/Module/Settings/Connectors.php:234 msgid "Move to folder:" msgstr "Gluais gu pasgan:" -#: src/Module/Settings/Delegation.php:73 +#: src/Module/Settings/Delegation.php:59 msgid "Delegation successfully granted." msgstr "Chaidh neach-ionaid a dhèanamh dheth." -#: src/Module/Settings/Delegation.php:75 +#: src/Module/Settings/Delegation.php:61 msgid "Parent user not found, unavailable or password doesn't match." msgstr "" -#: src/Module/Settings/Delegation.php:79 +#: src/Module/Settings/Delegation.php:65 msgid "Delegation successfully revoked." msgstr "Chaidh ceadan neach-ionaid a thoirt air falbh." -#: src/Module/Settings/Delegation.php:98 -#: src/Module/Settings/Delegation.php:120 +#: src/Module/Settings/Delegation.php:84 +#: src/Module/Settings/Delegation.php:106 msgid "" "Delegated administrators can view but not change delegation permissions." msgstr "Chì rianairean a tha ’nan luchd-ionaid na ceadan ach chan urrainn dhaibh an atharrachadh." -#: src/Module/Settings/Delegation.php:112 +#: src/Module/Settings/Delegation.php:98 msgid "Delegate user not found." msgstr "Cha deach cleachdaiche an neach-ionaid a lorg." -#: src/Module/Settings/Delegation.php:169 +#: src/Module/Settings/Delegation.php:155 msgid "No parent user" msgstr "" -#: src/Module/Settings/Delegation.php:180 -#: src/Module/Settings/Delegation.php:191 +#: src/Module/Settings/Delegation.php:166 +#: src/Module/Settings/Delegation.php:177 msgid "Parent User" msgstr "" -#: src/Module/Settings/Delegation.php:188 +#: src/Module/Settings/Delegation.php:174 msgid "Additional Accounts" msgstr "" -#: src/Module/Settings/Delegation.php:189 +#: src/Module/Settings/Delegation.php:175 msgid "" "Register additional accounts that are automatically connected to your " "existing account so you can manage them from this account." msgstr "Clàraich cunntasan a bharrachd a thèid a cho-cheangal ris a’ chunntas làithreach agad ach an urrainn dhut an stiùireadh on chunntas seo." -#: src/Module/Settings/Delegation.php:190 +#: src/Module/Settings/Delegation.php:176 msgid "Register an additional account" msgstr "" -#: src/Module/Settings/Delegation.php:192 +#: src/Module/Settings/Delegation.php:178 msgid "" "Parent users have total control about this account, including the account " "settings. Please double check whom you give this access." msgstr "" -#: src/Module/Settings/Delegation.php:195 +#: src/Module/Settings/Delegation.php:181 msgid "Delegates" msgstr "Luchd-ionaid" -#: src/Module/Settings/Delegation.php:196 +#: src/Module/Settings/Delegation.php:182 msgid "" "Delegates are able to manage all aspects of this account/page except for " "basic account settings. Please do not delegate your personal account to " "anybody that you do not trust completely." msgstr "’S urrainn dhan luchd-ionaid nì sam bith mun chunntas/duilleag seo a stiùireadh ach roghainnean bunaiteach a’ chunntais. Na dèan neach-ionaid dhan chunntas phearsanta agad de dhuine sam bith anns nach eil làn-earbsa agad." -#: src/Module/Settings/Delegation.php:197 +#: src/Module/Settings/Delegation.php:183 msgid "Existing Page Delegates" msgstr "Luchd-ionaid làithreach na duilleige" -#: src/Module/Settings/Delegation.php:198 +#: src/Module/Settings/Delegation.php:184 msgid "Potential Delegates" msgstr "Tagraichean luchd-ionaid" -#: src/Module/Settings/Delegation.php:199 +#: src/Module/Settings/Delegation.php:185 msgid "No entries." msgstr "" -#: src/Module/Settings/Display.php:183 +#: src/Module/Settings/Display.php:169 msgid "The theme you chose isn't available." msgstr "Chan eil an t-ùrlar a thagh thu ri fhaighinn." -#: src/Module/Settings/Display.php:223 +#: src/Module/Settings/Display.php:209 #, php-format msgid "%s - (Unsupported)" msgstr "" -#: src/Module/Settings/Display.php:260 +#: src/Module/Settings/Display.php:246 msgid "No preview" msgstr "" -#: src/Module/Settings/Display.php:261 +#: src/Module/Settings/Display.php:247 msgid "No image" msgstr "" -#: src/Module/Settings/Display.php:262 +#: src/Module/Settings/Display.php:248 msgid "Small Image" msgstr "" -#: src/Module/Settings/Display.php:263 +#: src/Module/Settings/Display.php:249 msgid "Large Image" msgstr "" -#: src/Module/Settings/Display.php:308 +#: src/Module/Settings/Display.php:294 msgid "Display Settings" msgstr "" -#: src/Module/Settings/Display.php:310 +#: src/Module/Settings/Display.php:296 msgid "General Theme Settings" msgstr "Roghainnean coitcheann an ùrlair" -#: src/Module/Settings/Display.php:311 +#: src/Module/Settings/Display.php:297 msgid "Custom Theme Settings" msgstr "Roghainnean gnàthaichte an ùrlair" -#: src/Module/Settings/Display.php:312 +#: src/Module/Settings/Display.php:298 msgid "Content Settings" msgstr "" -#: src/Module/Settings/Display.php:313 view/theme/duepuntozero/config.php:86 -#: view/theme/frio/config.php:151 view/theme/quattro/config.php:88 -#: view/theme/vier/config.php:136 +#: src/Module/Settings/Display.php:299 view/theme/duepuntozero/config.php:74 +#: view/theme/frio/config.php:139 view/theme/quattro/config.php:76 +#: view/theme/vier/config.php:124 msgid "Theme settings" msgstr "Roghainnean an ùrlair" -#: src/Module/Settings/Display.php:314 +#: src/Module/Settings/Display.php:300 msgid "Timelines" msgstr "" -#: src/Module/Settings/Display.php:321 +#: src/Module/Settings/Display.php:307 msgid "Display Theme:" msgstr "Ùrlar taisbeanaidh:" -#: src/Module/Settings/Display.php:322 +#: src/Module/Settings/Display.php:308 msgid "Mobile Theme:" msgstr "Ùrlar mobile:" -#: src/Module/Settings/Display.php:325 +#: src/Module/Settings/Display.php:311 msgid "Number of items to display per page:" msgstr "" -#: src/Module/Settings/Display.php:325 src/Module/Settings/Display.php:326 +#: src/Module/Settings/Display.php:311 src/Module/Settings/Display.php:312 msgid "Maximum of 100 items" msgstr "" -#: src/Module/Settings/Display.php:326 +#: src/Module/Settings/Display.php:312 msgid "Number of items to display per page when viewed from mobile device:" msgstr "" -#: src/Module/Settings/Display.php:327 +#: src/Module/Settings/Display.php:313 msgid "Update browser every xx seconds" msgstr "" -#: src/Module/Settings/Display.php:327 +#: src/Module/Settings/Display.php:313 msgid "Minimum of 10 seconds. Enter -1 to disable it." msgstr "" -#: src/Module/Settings/Display.php:328 +#: src/Module/Settings/Display.php:314 msgid "Display emoticons" msgstr "" -#: src/Module/Settings/Display.php:328 +#: src/Module/Settings/Display.php:314 msgid "When enabled, emoticons are replaced with matching symbols." msgstr "" -#: src/Module/Settings/Display.php:329 +#: src/Module/Settings/Display.php:315 msgid "Infinite scroll" msgstr "" -#: src/Module/Settings/Display.php:329 +#: src/Module/Settings/Display.php:315 msgid "Automatic fetch new items when reaching the page end." msgstr "" -#: src/Module/Settings/Display.php:330 +#: src/Module/Settings/Display.php:316 msgid "Enable Smart Threading" msgstr "" -#: src/Module/Settings/Display.php:330 +#: src/Module/Settings/Display.php:316 msgid "Enable the automatic suppression of extraneous thread indentation." msgstr "" -#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/Display.php:317 msgid "Display the Dislike feature" msgstr "Seall an gleus “Cha toigh leam seo”" -#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/Display.php:317 msgid "" "Display the Dislike button and dislike reactions on posts and comments." msgstr "Seall am putan “Cha toigh leam seo” agus freagairtean “Cha toigh leam seo” air postaichean is beachdan." -#: src/Module/Settings/Display.php:332 +#: src/Module/Settings/Display.php:318 msgid "Display the resharer" msgstr "Seall cò rinn an co-roinneadh" -#: src/Module/Settings/Display.php:332 +#: src/Module/Settings/Display.php:318 msgid "Display the first resharer as icon and text on a reshared item." msgstr "Seall a’ chiad neach a rinn co-roinneadh ’na ìomhaigheag agus teacsa air an nì a chaidh a cho-roinneadh." -#: src/Module/Settings/Display.php:333 +#: src/Module/Settings/Display.php:319 msgid "Stay local" msgstr "" -#: src/Module/Settings/Display.php:333 +#: src/Module/Settings/Display.php:319 msgid "Don't go to a remote system when following a contact link." msgstr "" -#: src/Module/Settings/Display.php:334 +#: src/Module/Settings/Display.php:320 msgid "Show the post deletion checkbox" msgstr "" -#: src/Module/Settings/Display.php:334 +#: src/Module/Settings/Display.php:320 msgid "Display the checkbox for the post deletion on the network page." msgstr "" -#: src/Module/Settings/Display.php:335 +#: src/Module/Settings/Display.php:321 msgid "DIsplay the event list" msgstr "" -#: src/Module/Settings/Display.php:335 +#: src/Module/Settings/Display.php:321 msgid "Display the birthday reminder and event list on the network page." msgstr "" -#: src/Module/Settings/Display.php:336 +#: src/Module/Settings/Display.php:322 msgid "Link preview mode" msgstr "" -#: src/Module/Settings/Display.php:336 +#: src/Module/Settings/Display.php:322 msgid "Appearance of the link preview that is added to each post with a link." msgstr "" -#: src/Module/Settings/Display.php:341 +#: src/Module/Settings/Display.php:327 msgid "Bookmark" msgstr "" -#: src/Module/Settings/Display.php:343 +#: src/Module/Settings/Display.php:329 msgid "" "Enable timelines that you want to see in the channels widget. Bookmark " "timelines that you want to see in the top menu." msgstr "" -#: src/Module/Settings/Display.php:345 +#: src/Module/Settings/Display.php:331 msgid "Channel languages:" msgstr "" -#: src/Module/Settings/Display.php:345 +#: src/Module/Settings/Display.php:331 msgid "Select all languages that you want to see in your channels." msgstr "" -#: src/Module/Settings/Display.php:347 +#: src/Module/Settings/Display.php:333 msgid "Beginning of week:" msgstr "" -#: src/Module/Settings/Display.php:348 +#: src/Module/Settings/Display.php:334 msgid "Default calendar view:" msgstr "" -#: src/Module/Settings/Features.php:73 +#: src/Module/Settings/Features.php:59 msgid "Additional Features" msgstr "Gleusan a bharrachd" -#: src/Module/Settings/OAuth.php:71 +#: src/Module/Settings/OAuth.php:57 msgid "Connected Apps" msgstr "Aplacaidean ceangailte" -#: src/Module/Settings/OAuth.php:75 +#: src/Module/Settings/OAuth.php:61 msgid "Remove authorization" msgstr "Thoir an t-ùghdarrachadh air falbh" -#: src/Module/Settings/Profile/Index.php:116 +#: src/Module/Settings/Profile/Index.php:102 msgid "Display Name is required." msgstr "" -#: src/Module/Settings/Profile/Index.php:170 +#: src/Module/Settings/Profile/Index.php:156 msgid "Profile couldn't be updated." msgstr "" -#: src/Module/Settings/Profile/Index.php:210 -#: src/Module/Settings/Profile/Index.php:231 +#: src/Module/Settings/Profile/Index.php:196 +#: src/Module/Settings/Profile/Index.php:217 msgid "Label:" msgstr "" -#: src/Module/Settings/Profile/Index.php:211 -#: src/Module/Settings/Profile/Index.php:232 +#: src/Module/Settings/Profile/Index.php:197 +#: src/Module/Settings/Profile/Index.php:218 msgid "Value:" msgstr "" -#: src/Module/Settings/Profile/Index.php:222 -#: src/Module/Settings/Profile/Index.php:243 +#: src/Module/Settings/Profile/Index.php:208 +#: src/Module/Settings/Profile/Index.php:229 msgid "Field Permissions" msgstr "" -#: src/Module/Settings/Profile/Index.php:223 -#: src/Module/Settings/Profile/Index.php:244 +#: src/Module/Settings/Profile/Index.php:209 +#: src/Module/Settings/Profile/Index.php:230 msgid "(click to open/close)" msgstr "" -#: src/Module/Settings/Profile/Index.php:229 +#: src/Module/Settings/Profile/Index.php:215 msgid "Add a new profile field" msgstr "" -#: src/Module/Settings/Profile/Index.php:252 +#: src/Module/Settings/Profile/Index.php:238 msgid "" "The homepage is verified. A rel=\"me\" link back to your Friendica profile " "page was found on the homepage." msgstr "" -#: src/Module/Settings/Profile/Index.php:254 +#: src/Module/Settings/Profile/Index.php:240 #, php-format msgid "" "To verify your homepage, add a rel=\"me\" link to it, pointing to your " "profile URL (%s)." msgstr "" -#: src/Module/Settings/Profile/Index.php:260 +#: src/Module/Settings/Profile/Index.php:246 msgid "Profile Actions" msgstr "" -#: src/Module/Settings/Profile/Index.php:261 +#: src/Module/Settings/Profile/Index.php:247 msgid "Edit Profile Details" msgstr "" -#: src/Module/Settings/Profile/Index.php:263 +#: src/Module/Settings/Profile/Index.php:249 msgid "Change Profile Photo" msgstr "" -#: src/Module/Settings/Profile/Index.php:266 +#: src/Module/Settings/Profile/Index.php:252 msgid "Profile picture" msgstr "" -#: src/Module/Settings/Profile/Index.php:267 +#: src/Module/Settings/Profile/Index.php:253 msgid "Location" msgstr "" -#: src/Module/Settings/Profile/Index.php:268 src/Util/Temporal.php:97 -#: src/Util/Temporal.php:99 +#: src/Module/Settings/Profile/Index.php:254 src/Util/Temporal.php:83 +#: src/Util/Temporal.php:85 msgid "Miscellaneous" msgstr "" -#: src/Module/Settings/Profile/Index.php:269 +#: src/Module/Settings/Profile/Index.php:255 msgid "Custom Profile Fields" msgstr "" -#: src/Module/Settings/Profile/Index.php:270 src/Module/Welcome.php:58 +#: src/Module/Settings/Profile/Index.php:256 src/Module/Welcome.php:44 msgid "Upload Profile Photo" msgstr "" -#: src/Module/Settings/Profile/Index.php:271 +#: src/Module/Settings/Profile/Index.php:257 #, php-format msgid "" "Custom fields appear on your profile page.
\n" @@ -11059,396 +11029,396 @@ msgid "" "\t\t\t\tNon-public fields can only be seen by the selected Friendica contacts or the Friendica contacts in the selected circles.
" msgstr "" -#: src/Module/Settings/Profile/Index.php:291 +#: src/Module/Settings/Profile/Index.php:277 msgid "Street Address:" msgstr "" -#: src/Module/Settings/Profile/Index.php:292 +#: src/Module/Settings/Profile/Index.php:278 msgid "Locality/City:" msgstr "" -#: src/Module/Settings/Profile/Index.php:293 +#: src/Module/Settings/Profile/Index.php:279 msgid "Region/State:" msgstr "" -#: src/Module/Settings/Profile/Index.php:294 +#: src/Module/Settings/Profile/Index.php:280 msgid "Postal/Zip Code:" msgstr "" -#: src/Module/Settings/Profile/Index.php:295 +#: src/Module/Settings/Profile/Index.php:281 msgid "Country:" msgstr "" -#: src/Module/Settings/Profile/Index.php:297 +#: src/Module/Settings/Profile/Index.php:283 msgid "XMPP (Jabber) address:" msgstr "" -#: src/Module/Settings/Profile/Index.php:297 +#: src/Module/Settings/Profile/Index.php:283 msgid "" "The XMPP address will be published so that people can follow you there." msgstr "" -#: src/Module/Settings/Profile/Index.php:298 +#: src/Module/Settings/Profile/Index.php:284 msgid "Matrix (Element) address:" msgstr "" -#: src/Module/Settings/Profile/Index.php:298 +#: src/Module/Settings/Profile/Index.php:284 msgid "" "The Matrix address will be published so that people can follow you there." msgstr "" -#: src/Module/Settings/Profile/Index.php:299 +#: src/Module/Settings/Profile/Index.php:285 msgid "Homepage URL:" msgstr "" -#: src/Module/Settings/Profile/Index.php:300 +#: src/Module/Settings/Profile/Index.php:286 msgid "Public Keywords:" msgstr "" -#: src/Module/Settings/Profile/Index.php:300 +#: src/Module/Settings/Profile/Index.php:286 msgid "(Used for suggesting potential friends, can be seen by others)" msgstr "" -#: src/Module/Settings/Profile/Index.php:301 +#: src/Module/Settings/Profile/Index.php:287 msgid "Private Keywords:" msgstr "" -#: src/Module/Settings/Profile/Index.php:301 +#: src/Module/Settings/Profile/Index.php:287 msgid "(Used for searching profiles, never shown to others)" msgstr "" -#: src/Module/Settings/Profile/Photo/Crop.php:107 -#: src/Module/Settings/Profile/Photo/Crop.php:125 -#: src/Module/Settings/Profile/Photo/Crop.php:143 -#: src/Module/Settings/Profile/Photo/Index.php:100 +#: src/Module/Settings/Profile/Photo/Crop.php:93 +#: src/Module/Settings/Profile/Photo/Crop.php:111 +#: src/Module/Settings/Profile/Photo/Crop.php:129 +#: src/Module/Settings/Profile/Photo/Index.php:86 #, php-format msgid "Image size reduction [%s] failed." msgstr "" -#: src/Module/Settings/Profile/Photo/Crop.php:150 +#: src/Module/Settings/Profile/Photo/Crop.php:136 msgid "" "Shift-reload the page or clear browser cache if the new photo does not " "display immediately." msgstr "" -#: src/Module/Settings/Profile/Photo/Crop.php:155 +#: src/Module/Settings/Profile/Photo/Crop.php:141 msgid "Unable to process image" msgstr "" -#: src/Module/Settings/Profile/Photo/Crop.php:174 +#: src/Module/Settings/Profile/Photo/Crop.php:160 msgid "Photo not found." msgstr "" -#: src/Module/Settings/Profile/Photo/Crop.php:196 +#: src/Module/Settings/Profile/Photo/Crop.php:182 msgid "Profile picture successfully updated." msgstr "" -#: src/Module/Settings/Profile/Photo/Crop.php:222 -#: src/Module/Settings/Profile/Photo/Crop.php:226 +#: src/Module/Settings/Profile/Photo/Crop.php:208 +#: src/Module/Settings/Profile/Photo/Crop.php:212 msgid "Crop Image" msgstr "" -#: src/Module/Settings/Profile/Photo/Crop.php:223 +#: src/Module/Settings/Profile/Photo/Crop.php:209 msgid "Please adjust the image cropping for optimum viewing." msgstr "" -#: src/Module/Settings/Profile/Photo/Crop.php:225 +#: src/Module/Settings/Profile/Photo/Crop.php:211 msgid "Use Image As Is" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:46 +#: src/Module/Settings/Profile/Photo/Index.php:32 msgid "Missing uploaded image." msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:123 +#: src/Module/Settings/Profile/Photo/Index.php:109 msgid "Profile Picture Settings" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:124 +#: src/Module/Settings/Profile/Photo/Index.php:110 msgid "Current Profile Picture" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:125 +#: src/Module/Settings/Profile/Photo/Index.php:111 msgid "Upload Profile Picture" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:126 +#: src/Module/Settings/Profile/Photo/Index.php:112 msgid "Upload Picture:" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:131 +#: src/Module/Settings/Profile/Photo/Index.php:117 msgid "or" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:133 +#: src/Module/Settings/Profile/Photo/Index.php:119 msgid "skip this step" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:135 +#: src/Module/Settings/Profile/Photo/Index.php:121 msgid "select a photo from your photo albums" msgstr "" -#: src/Module/Settings/RemoveMe.php:76 +#: src/Module/Settings/RemoveMe.php:62 msgid "" "There was a validation error, please make sure you're logged in with the " "account you want to remove and try again." msgstr "" -#: src/Module/Settings/RemoveMe.php:76 +#: src/Module/Settings/RemoveMe.php:62 msgid "If this error persists, please contact your administrator." msgstr "" -#: src/Module/Settings/RemoveMe.php:90 -#: src/Navigation/Notifications/Repository/Notify.php:471 -#: src/Navigation/Notifications/Repository/Notify.php:492 +#: src/Module/Settings/RemoveMe.php:76 +#: src/Navigation/Notifications/Repository/Notify.php:457 +#: src/Navigation/Notifications/Repository/Notify.php:478 msgid "[Friendica System Notify]" msgstr "[Brath siostam Friendica]" -#: src/Module/Settings/RemoveMe.php:90 +#: src/Module/Settings/RemoveMe.php:76 msgid "User deleted their account" msgstr "Sguab an cleachdaiche às an cunntas aca" -#: src/Module/Settings/RemoveMe.php:91 +#: src/Module/Settings/RemoveMe.php:77 msgid "" "On your Friendica node an user deleted their account. Please ensure that " "their data is removed from the backups." msgstr "Sguab cleachdaiche às an cunntas aca air an nòd Friendica agad. Dèan cinnteach gun dèid an dàta aca a thoirt air falbh o na lethbhreacan-glèidhidh." -#: src/Module/Settings/RemoveMe.php:92 +#: src/Module/Settings/RemoveMe.php:78 #, php-format msgid "The user id is %d" msgstr "’S e %d ID a’ chleachdaiche" -#: src/Module/Settings/RemoveMe.php:105 +#: src/Module/Settings/RemoveMe.php:91 msgid "Your account has been successfully removed. Bye bye!" msgstr "" -#: src/Module/Settings/RemoveMe.php:130 +#: src/Module/Settings/RemoveMe.php:116 msgid "Remove My Account" msgstr "Thoir air falbh an cunntas agam" -#: src/Module/Settings/RemoveMe.php:131 +#: src/Module/Settings/RemoveMe.php:117 msgid "" "This will completely remove your account. Once this has been done it is not " "recoverable." msgstr "Bheir seo air falbh an cunntas agad gu tur. Nuair a bhios sin air a thachairt, cha ghabh aiseag." -#: src/Module/Settings/RemoveMe.php:136 +#: src/Module/Settings/RemoveMe.php:122 msgid "Please enter your password for verification:" msgstr "Cuir a-steach am facal-faire agad airson a dhearbhadh:" -#: src/Module/Settings/Server/Action.php:60 +#: src/Module/Settings/Server/Action.php:46 msgid "Do you want to ignore this server?" msgstr "" -#: src/Module/Settings/Server/Action.php:64 +#: src/Module/Settings/Server/Action.php:50 msgid "Do you want to unignore this server?" msgstr "" -#: src/Module/Settings/Server/Action.php:74 -#: src/Module/Settings/Server/Index.php:104 +#: src/Module/Settings/Server/Action.php:60 +#: src/Module/Settings/Server/Index.php:90 msgid "Remote server settings" msgstr "" -#: src/Module/Settings/Server/Action.php:77 +#: src/Module/Settings/Server/Action.php:63 msgid "Server URL" msgstr "" -#: src/Module/Settings/Server/Index.php:78 +#: src/Module/Settings/Server/Index.php:64 msgid "Settings saved" msgstr "" -#: src/Module/Settings/Server/Index.php:105 +#: src/Module/Settings/Server/Index.php:91 msgid "" "Here you can find all the remote servers you have taken individual " "moderation actions against. For a list of servers your node has blocked, " "please check out the Information page." msgstr "" -#: src/Module/Settings/Server/Index.php:110 +#: src/Module/Settings/Server/Index.php:96 msgid "Delete all your settings for the remote server" msgstr "" -#: src/Module/Settings/Server/Index.php:111 +#: src/Module/Settings/Server/Index.php:97 msgid "Save changes" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:69 -#: src/Module/Settings/TwoFactor/Recovery.php:67 -#: src/Module/Settings/TwoFactor/Trusted.php:70 -#: src/Module/Settings/TwoFactor/Verify.php:72 +#: src/Module/Settings/TwoFactor/AppSpecific.php:55 +#: src/Module/Settings/TwoFactor/Recovery.php:53 +#: src/Module/Settings/TwoFactor/Trusted.php:56 +#: src/Module/Settings/TwoFactor/Verify.php:58 msgid "Please enter your password to access this page." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:87 +#: src/Module/Settings/TwoFactor/AppSpecific.php:73 msgid "App-specific password generation failed: The description is empty." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:90 +#: src/Module/Settings/TwoFactor/AppSpecific.php:76 msgid "" "App-specific password generation failed: This description already exists." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:94 +#: src/Module/Settings/TwoFactor/AppSpecific.php:80 msgid "New app-specific password generated." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:100 +#: src/Module/Settings/TwoFactor/AppSpecific.php:86 msgid "App-specific passwords successfully revoked." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:110 +#: src/Module/Settings/TwoFactor/AppSpecific.php:96 msgid "App-specific password successfully revoked." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:131 +#: src/Module/Settings/TwoFactor/AppSpecific.php:117 msgid "Two-factor app-specific passwords" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:133 +#: src/Module/Settings/TwoFactor/AppSpecific.php:119 msgid "" "App-specific passwords are randomly generated passwords used instead your" " regular password to authenticate your account on third-party applications " "that don't support two-factor authentication.
" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:134 +#: src/Module/Settings/TwoFactor/AppSpecific.php:120 msgid "" "Make sure to copy your new app-specific password now. You won’t be able to " "see it again!" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:138 +#: src/Module/Settings/TwoFactor/AppSpecific.php:124 msgid "Last Used" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:139 +#: src/Module/Settings/TwoFactor/AppSpecific.php:125 msgid "Revoke" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:140 +#: src/Module/Settings/TwoFactor/AppSpecific.php:126 msgid "Revoke All" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:143 +#: src/Module/Settings/TwoFactor/AppSpecific.php:129 msgid "" "When you generate a new app-specific password, you must use it right away, " "it will be shown to you once after you generate it." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:144 +#: src/Module/Settings/TwoFactor/AppSpecific.php:130 msgid "Generate new app-specific password" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:145 +#: src/Module/Settings/TwoFactor/AppSpecific.php:131 msgid "Friendiqa on my Fairphone 2..." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:146 +#: src/Module/Settings/TwoFactor/AppSpecific.php:132 msgid "Generate" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:88 +#: src/Module/Settings/TwoFactor/Index.php:74 msgid "Two-factor authentication successfully disabled." msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:141 +#: src/Module/Settings/TwoFactor/Index.php:127 msgid "" "Use an application on a mobile device to get two-factor authentication " "codes when prompted on login.
" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:145 +#: src/Module/Settings/TwoFactor/Index.php:131 msgid "Authenticator app" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:146 +#: src/Module/Settings/TwoFactor/Index.php:132 msgid "Configured" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:146 +#: src/Module/Settings/TwoFactor/Index.php:132 msgid "Not Configured" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:147 +#: src/Module/Settings/TwoFactor/Index.php:133 msgid "You haven't finished configuring your authenticator app.
" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:148 +#: src/Module/Settings/TwoFactor/Index.php:134 msgid "Your authenticator app is correctly configured.
" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:150 +#: src/Module/Settings/TwoFactor/Index.php:136 msgid "Recovery codes" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:151 +#: src/Module/Settings/TwoFactor/Index.php:137 msgid "Remaining valid codes" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:153 +#: src/Module/Settings/TwoFactor/Index.php:139 msgid "" "These one-use codes can replace an authenticator app code in case you " "have lost access to it.
" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:155 +#: src/Module/Settings/TwoFactor/Index.php:141 msgid "App-specific passwords" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:156 +#: src/Module/Settings/TwoFactor/Index.php:142 msgid "Generated app-specific passwords" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:158 +#: src/Module/Settings/TwoFactor/Index.php:144 msgid "" "These randomly generated passwords allow you to authenticate on apps not " "supporting two-factor authentication.
" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:161 +#: src/Module/Settings/TwoFactor/Index.php:147 msgid "Current password:" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:161 +#: src/Module/Settings/TwoFactor/Index.php:147 msgid "" "You need to provide your current password to change two-factor " "authentication settings." msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:162 +#: src/Module/Settings/TwoFactor/Index.php:148 msgid "Enable two-factor authentication" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:163 +#: src/Module/Settings/TwoFactor/Index.php:149 msgid "Disable two-factor authentication" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:164 +#: src/Module/Settings/TwoFactor/Index.php:150 msgid "Show recovery codes" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:165 +#: src/Module/Settings/TwoFactor/Index.php:151 msgid "Manage app-specific passwords" msgstr "Stiùir na faclan-faire sònraichte do dh’aplacaidean" -#: src/Module/Settings/TwoFactor/Index.php:166 +#: src/Module/Settings/TwoFactor/Index.php:152 msgid "Manage trusted browsers" msgstr "Stiùir brabhsairean earbsach" -#: src/Module/Settings/TwoFactor/Index.php:167 +#: src/Module/Settings/TwoFactor/Index.php:153 msgid "Finish app configuration" msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:83 +#: src/Module/Settings/TwoFactor/Recovery.php:69 msgid "New recovery codes successfully generated." msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:109 +#: src/Module/Settings/TwoFactor/Recovery.php:95 msgid "Two-factor recovery codes" msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:111 +#: src/Module/Settings/TwoFactor/Recovery.php:97 msgid "" "Recovery codes can be used to access your account in the event you lose " "access to your device and cannot receive two-factor authentication " @@ -11457,68 +11427,68 @@ msgid "" "account.
" msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:113 +#: src/Module/Settings/TwoFactor/Recovery.php:99 msgid "" "When you generate new recovery codes, you must copy the new codes. Your old " "codes won’t work anymore." msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:114 +#: src/Module/Settings/TwoFactor/Recovery.php:100 msgid "Generate new recovery codes" msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:116 +#: src/Module/Settings/TwoFactor/Recovery.php:102 msgid "Next: Verification" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:87 +#: src/Module/Settings/TwoFactor/Trusted.php:73 msgid "Trusted browsers successfully removed." msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:97 +#: src/Module/Settings/TwoFactor/Trusted.php:83 msgid "Trusted browser successfully removed." msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:139 +#: src/Module/Settings/TwoFactor/Trusted.php:125 msgid "Two-factor Trusted Browsers" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:140 +#: src/Module/Settings/TwoFactor/Trusted.php:126 msgid "" "Trusted browsers are individual browsers you chose to skip two-factor " "authentication to access Friendica. Please use this feature sparingly, as it" " can negate the benefit of two-factor authentication." msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:141 +#: src/Module/Settings/TwoFactor/Trusted.php:127 msgid "Device" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:142 +#: src/Module/Settings/TwoFactor/Trusted.php:128 msgid "OS" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:144 +#: src/Module/Settings/TwoFactor/Trusted.php:130 msgid "Trusted" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:145 +#: src/Module/Settings/TwoFactor/Trusted.php:131 msgid "Created At" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:146 +#: src/Module/Settings/TwoFactor/Trusted.php:132 msgid "Last Use" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:148 +#: src/Module/Settings/TwoFactor/Trusted.php:134 msgid "Remove All" msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:94 +#: src/Module/Settings/TwoFactor/Verify.php:80 msgid "Two-factor authentication successfully activated." msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:128 +#: src/Module/Settings/TwoFactor/Verify.php:114 #, php-format msgid "" "Or you can submit the authentication settings manually:
\n" @@ -11538,105 +11508,105 @@ msgid "" "" msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:148 +#: src/Module/Settings/TwoFactor/Verify.php:134 msgid "Two-factor code verification" msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:150 +#: src/Module/Settings/TwoFactor/Verify.php:136 msgid "" "Please scan this QR Code with your authenticator app and submit the " "provided code.
" msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:152 +#: src/Module/Settings/TwoFactor/Verify.php:138 #, php-format msgid "" "Or you can open the following URL in your mobile device:
" msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:159 +#: src/Module/Settings/TwoFactor/Verify.php:145 msgid "Verify code and enable two-factor authentication" msgstr "" -#: src/Module/Settings/UserExport.php:90 +#: src/Module/Settings/UserExport.php:76 msgid "Export account" msgstr "" -#: src/Module/Settings/UserExport.php:90 +#: src/Module/Settings/UserExport.php:76 msgid "" "Export your account info and contacts. Use this to make a backup of your " "account and/or to move it to another server." msgstr "" -#: src/Module/Settings/UserExport.php:91 +#: src/Module/Settings/UserExport.php:77 msgid "Export all" msgstr "" -#: src/Module/Settings/UserExport.php:91 +#: src/Module/Settings/UserExport.php:77 msgid "" "Export your account info, contacts and all your items as json. Could be a " "very big file, and could take a lot of time. Use this to make a full backup " "of your account (photos are not exported)" msgstr "" -#: src/Module/Settings/UserExport.php:92 +#: src/Module/Settings/UserExport.php:78 msgid "Export Contacts to CSV" msgstr "" -#: src/Module/Settings/UserExport.php:92 +#: src/Module/Settings/UserExport.php:78 msgid "" "Export the list of the accounts you are following as CSV file. Compatible to" " e.g. Mastodon." msgstr "" -#: src/Module/Special/DisplayNotFound.php:35 +#: src/Module/Special/DisplayNotFound.php:21 msgid "The top-level post isn't visible." msgstr "" -#: src/Module/Special/DisplayNotFound.php:36 +#: src/Module/Special/DisplayNotFound.php:22 msgid "The top-level post was deleted." msgstr "" -#: src/Module/Special/DisplayNotFound.php:37 +#: src/Module/Special/DisplayNotFound.php:23 msgid "" "This node has blocked the top-level author or the author of the shared post." msgstr "" -#: src/Module/Special/DisplayNotFound.php:38 +#: src/Module/Special/DisplayNotFound.php:24 msgid "" "You have ignored or blocked the top-level author or the author of the shared" " post." msgstr "" -#: src/Module/Special/DisplayNotFound.php:39 +#: src/Module/Special/DisplayNotFound.php:25 msgid "" "You have ignored the top-level author's server or the shared post author's " "server." msgstr "" -#: src/Module/Special/DisplayNotFound.php:45 +#: src/Module/Special/DisplayNotFound.php:31 msgid "Conversation Not Found" msgstr "" -#: src/Module/Special/DisplayNotFound.php:46 +#: src/Module/Special/DisplayNotFound.php:32 msgid "Unfortunately, the requested conversation isn't available to you." msgstr "" -#: src/Module/Special/DisplayNotFound.php:47 +#: src/Module/Special/DisplayNotFound.php:33 msgid "Possible reasons include:" msgstr "" -#: src/Module/Special/HTTPException.php:78 +#: src/Module/Special/HTTPException.php:64 msgid "Stack trace:" msgstr "" -#: src/Module/Special/HTTPException.php:83 +#: src/Module/Special/HTTPException.php:69 #, php-format msgid "Exception thrown in %s:%d" msgstr "" -#: src/Module/Tos.php:58 src/Module/Tos.php:107 +#: src/Module/Tos.php:44 src/Module/Tos.php:93 msgid "" "At the time of registration, and for providing communications between the " "user account and their contacts, the user has to provide a display name (pen" @@ -11649,14 +11619,14 @@ msgid "" "settings, it is not necessary for communication." msgstr "Aig àm a’ chlàraidh agus a chùm conaltraidh eadar cunntas a’ chleachdaiche ’s an luchd-aithne aca, feumaidh an cleachdaiche ainm taisbeanaidh (ainm-pinn), ainm-cleachdaiche (far-ainm) agus seòladh puist-d a tha ag obair a thoirt seachad. Gabhaidh na h-ainmean inntrigeadh air duilleag pròifil a’ chunntais le duine sam bith a thadhlas air an duilleag, fiù mura dèid fiosrachadh eile na pròifil a shealltainn. Cha dèid an seòladh puist-d a chleachdadh ach airson brathan a chur dhan chleachdaiche mu co-luadar agus cha dèid a shealltainn gu poblach. Tha cur a’ chunntais ri liosta nan cleachdaichean ann an eòlaire an nòid no san eòlaire cho-naisgte roghainneil agus gabhaidh sin a shuidheachadh ann an roghainnean a’ chleachdaiche; chan eil e riatanach dhan chonaltradh." -#: src/Module/Tos.php:59 src/Module/Tos.php:108 +#: src/Module/Tos.php:45 src/Module/Tos.php:94 msgid "" "This data is required for communication and is passed on to the nodes of the" " communication partners and is stored there. Users can enter additional " "private data that may be transmitted to the communication partners accounts." msgstr "" -#: src/Module/Tos.php:60 src/Module/Tos.php:109 +#: src/Module/Tos.php:46 src/Module/Tos.php:95 #, php-format msgid "" "At any point in time a logged in user can export their account data from the" @@ -11667,98 +11637,98 @@ msgid "" "from the nodes of the communication partners." msgstr "" -#: src/Module/Tos.php:63 src/Module/Tos.php:106 +#: src/Module/Tos.php:49 src/Module/Tos.php:92 msgid "Privacy Statement" msgstr "" -#: src/Module/Tos.php:103 +#: src/Module/Tos.php:89 msgid "Rules" msgstr "" -#: src/Module/Update/Display.php:45 +#: src/Module/Update/Display.php:31 msgid "Parameter uri_id is missing." msgstr "" -#: src/Module/Update/Display.php:55 +#: src/Module/Update/Display.php:41 msgid "The requested item doesn't exist or has been deleted." msgstr "Chan eil am an nì a dh’iarr thu ann no chaidh a sguabadh às." -#: src/Module/User/Delegation.php:146 +#: src/Module/User/Delegation.php:132 #, php-format msgid "You are now logged in as %s" msgstr "Tha thu air do chlàradh a-steach mar %s" -#: src/Module/User/Delegation.php:185 +#: src/Module/User/Delegation.php:171 msgid "Switch between your accounts" msgstr "Geàrr leum eadar na cunntasan agad" -#: src/Module/User/Delegation.php:186 +#: src/Module/User/Delegation.php:172 msgid "Manage your accounts" msgstr "Stiùirich na cunntasan agad" -#: src/Module/User/Delegation.php:187 +#: src/Module/User/Delegation.php:173 msgid "" "Toggle between different identities or community/group pages which share " "your account details or which you have been granted \"manage\" permissions" msgstr "Geàrr leum eadar dearbh-aithnean no duilleagan coimhearsnachd/buidhinn a tha a’ co-roinneadh fiosrachadh a’ chunntais agad no a fhuair thu ceadan “stiùir” dhaibh" -#: src/Module/User/Delegation.php:188 +#: src/Module/User/Delegation.php:174 msgid "Select an identity to manage: " msgstr "Tagh dearbh-aithne ri stiùireadh: " -#: src/Module/User/Import.php:104 +#: src/Module/User/Import.php:90 msgid "User imports on closed servers can only be done by an administrator." msgstr "Chan fhaod ach rianairean cleachdaichean ion-phortadh gu frithealaichean dùinte." -#: src/Module/User/Import.php:120 +#: src/Module/User/Import.php:106 msgid "Move account" msgstr "Imrich an cunntas" -#: src/Module/User/Import.php:121 +#: src/Module/User/Import.php:107 msgid "You can import an account from another Friendica server." msgstr "’S urrainn dhut cunntas ion-phortadh o fhrithealaiche Friendica eile." -#: src/Module/User/Import.php:122 +#: src/Module/User/Import.php:108 msgid "" "You need to export your account from the old server and upload it here. We " "will recreate your old account here with all your contacts. We will try also" " to inform your friends that you moved here." msgstr "Feumaidh tu an cunntas agad às-phortadh on t-seann-fhrithealaiche ’s a luchdadh suas an-seo. Ath-chruthaichidh sinn an seann-chunntas agad an-seo leis an luchd-aithne gu lèir agad. Feuchaidh sinn cuideachd gun leig sinn fios dha do charaidean gun do dh’imrich thu an-seo." -#: src/Module/User/Import.php:123 +#: src/Module/User/Import.php:109 msgid "" "This feature is experimental. We can't import contacts from the OStatus " "network (GNU Social/Statusnet) or from Diaspora" msgstr "Chan e ach gleus deuchainneil a tha seo. Chan urrainn dhuinn luchd-aithne ion-phortadh on lìonra OStatus (GNU Social/Statusnet) no o dhiaspora*" -#: src/Module/User/Import.php:124 +#: src/Module/User/Import.php:110 msgid "Account file" msgstr "Faidhle a’ chunntais" -#: src/Module/User/Import.php:124 +#: src/Module/User/Import.php:110 msgid "" "To export your account, go to \"Settings->Export your personal data\" and " "select \"Export account\"" msgstr "Airson an cunntas agad às-phortadh, tadhail air “Roghainnean” -> “Às-phortaich an dàta pearsanta agad” agus tagh “Às-phortaich an cunntas”" -#: src/Module/User/Import.php:218 +#: src/Module/User/Import.php:204 msgid "Error decoding account file" msgstr "Mearachd le dì-chòdachadh faidhle a’ chunntais" -#: src/Module/User/Import.php:223 +#: src/Module/User/Import.php:209 msgid "Error! No version data in file! This is not a Friendica account file?" msgstr "Mearachd! Chan eil dàta mun tionndadh san fhaidhle! Nach e faidhle cunntas Friendica a th’ ann?" -#: src/Module/User/Import.php:231 +#: src/Module/User/Import.php:217 #, php-format msgid "User '%s' already exists on this server!" msgstr "Tha an cleachdaiche “%s” air an fhrithealaiche seo mu thràth!" -#: src/Module/User/Import.php:268 +#: src/Module/User/Import.php:254 msgid "User creation error" msgstr "Mearachd a’ cruthachadh a’ chleachdaiche" -#: src/Module/User/Import.php:317 +#: src/Module/User/Import.php:303 #, php-format msgid "%d contact not imported" msgid_plural "%d contacts not imported" @@ -11767,23 +11737,23 @@ msgstr[1] "Tha %d luchd-aithne nach deach ion-phortadh" msgstr[2] "Tha %d luchd-aithne nach deach ion-phortadh" msgstr[3] "Tha %d luchd-aithne nach deach ion-phortadh" -#: src/Module/User/Import.php:366 +#: src/Module/User/Import.php:352 msgid "User profile creation error" msgstr "Mearachd a’ cruthachadh pròifil a’ chleachdaiche" -#: src/Module/User/Import.php:417 +#: src/Module/User/Import.php:403 msgid "Done. You can now login with your username and password" msgstr "Deiseil. ’S urrainn dhut clàradh a-steach leis an ainm-chleachdaiche ’s fhacal-fhaire agad a-nis" -#: src/Module/Welcome.php:44 +#: src/Module/Welcome.php:30 msgid "Welcome to Friendica" msgstr "" -#: src/Module/Welcome.php:45 +#: src/Module/Welcome.php:31 msgid "New Member Checklist" msgstr "" -#: src/Module/Welcome.php:46 +#: src/Module/Welcome.php:32 msgid "" "We would like to offer some tips and links to help make your experience " "enjoyable. Click any item to visit the relevant page. A link to this page " @@ -11791,33 +11761,33 @@ msgid "" "registration and then will quietly disappear." msgstr "" -#: src/Module/Welcome.php:48 +#: src/Module/Welcome.php:34 msgid "Getting Started" msgstr "Toiseach tòiseachaidh" -#: src/Module/Welcome.php:49 +#: src/Module/Welcome.php:35 msgid "Friendica Walk-Through" msgstr "" -#: src/Module/Welcome.php:50 +#: src/Module/Welcome.php:36 msgid "" "On your Quick Start page - find a brief introduction to your " "profile and network tabs, make some new connections, and find some groups to" " join." msgstr "Air an duilleag grad-tòiseachaidh agad – gheibh thu facal-toisich air tabaichean na pròifile ’s an lìonraidh agad, ’s urrainn dhut dàimhean ùra a stèidheachadh is gheibh thu lorg air buidhnean ùra airson ballrachd fhaighinn annta." -#: src/Module/Welcome.php:53 +#: src/Module/Welcome.php:39 msgid "Go to Your Settings" msgstr "" -#: src/Module/Welcome.php:54 +#: src/Module/Welcome.php:40 msgid "" "On your Settings page - change your initial password. Also make a " "note of your Identity Address. This looks just like an email address - and " "will be useful in making friends on the free social web." msgstr "" -#: src/Module/Welcome.php:55 +#: src/Module/Welcome.php:41 msgid "" "Review the other settings, particularly the privacy settings. An unpublished" " directory listing is like having an unlisted phone number. In general, you " @@ -11825,77 +11795,77 @@ msgid "" "potential friends know exactly how to find you." msgstr "" -#: src/Module/Welcome.php:59 +#: src/Module/Welcome.php:45 msgid "" "Upload a profile photo if you have not done so already. Studies have shown " "that people with real photos of themselves are ten times more likely to make" " friends than people who do not." msgstr "" -#: src/Module/Welcome.php:60 +#: src/Module/Welcome.php:46 msgid "Edit Your Profile" msgstr "" -#: src/Module/Welcome.php:61 +#: src/Module/Welcome.php:47 msgid "" "Edit your default profile to your liking. Review the " "settings for hiding your list of friends and hiding the profile from unknown" " visitors." msgstr "" -#: src/Module/Welcome.php:62 +#: src/Module/Welcome.php:48 msgid "Profile Keywords" msgstr "" -#: src/Module/Welcome.php:63 +#: src/Module/Welcome.php:49 msgid "" "Set some public keywords for your profile which describe your interests. We " "may be able to find other people with similar interests and suggest " "friendships." msgstr "" -#: src/Module/Welcome.php:65 +#: src/Module/Welcome.php:51 msgid "Connecting" msgstr "" -#: src/Module/Welcome.php:67 +#: src/Module/Welcome.php:53 msgid "Importing Emails" msgstr "" -#: src/Module/Welcome.php:68 +#: src/Module/Welcome.php:54 msgid "" "Enter your email access information on your Connector Settings page if you " "wish to import and interact with friends or mailing lists from your email " "INBOX" msgstr "Cuir a-steach fiosrachadh inntrigidh dhan phost-d agad air duilleag roghainnean nan ceangladairean agad ma tha thu airson ion-phortadh is co-luadar le caraidean no liostaichean-phuist o BHOGSA a-STEACH a’ phuist-d agad" -#: src/Module/Welcome.php:69 +#: src/Module/Welcome.php:55 msgid "Go to Your Contacts Page" msgstr "" -#: src/Module/Welcome.php:70 +#: src/Module/Welcome.php:56 msgid "" "Your Contacts page is your gateway to managing friendships and connecting " "with friends on other networks. Typically you enter their address or site " "URL in the Add New Contact dialog." msgstr "" -#: src/Module/Welcome.php:71 +#: src/Module/Welcome.php:57 msgid "Go to Your Site's Directory" msgstr "" -#: src/Module/Welcome.php:72 +#: src/Module/Welcome.php:58 msgid "" "The Directory page lets you find other people in this network or other " "federated sites. Look for a Connect or Follow link on " "their profile page. Provide your own Identity Address if requested." msgstr "" -#: src/Module/Welcome.php:73 +#: src/Module/Welcome.php:59 msgid "Finding New People" msgstr "" -#: src/Module/Welcome.php:74 +#: src/Module/Welcome.php:60 msgid "" "On the side panel of the Contacts page are several tools to find new " "friends. We can match people by interest, look up people by name or " @@ -11904,412 +11874,408 @@ msgid "" "hours." msgstr "" -#: src/Module/Welcome.php:77 +#: src/Module/Welcome.php:63 msgid "Add Your Contacts To Circle" msgstr "" -#: src/Module/Welcome.php:78 +#: src/Module/Welcome.php:64 msgid "" "Once you have made some friends, organize them into private conversation " "circles from the sidebar of your Contacts page and then you can interact " "with each circle privately on your Network page." msgstr "" -#: src/Module/Welcome.php:80 +#: src/Module/Welcome.php:66 msgid "Why Aren't My Posts Public?" msgstr "" -#: src/Module/Welcome.php:81 +#: src/Module/Welcome.php:67 msgid "" "Friendica respects your privacy. By default, your posts will only show up to" " people you've added as friends. For more information, see the help section " "from the link above." msgstr "" -#: src/Module/Welcome.php:83 +#: src/Module/Welcome.php:69 msgid "Getting Help" msgstr "" -#: src/Module/Welcome.php:84 +#: src/Module/Welcome.php:70 msgid "Go to the Help Section" msgstr "" -#: src/Module/Welcome.php:85 +#: src/Module/Welcome.php:71 msgid "" "Our help pages may be consulted for detail on other program" " features and resources." msgstr "" -#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:161 +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:147 msgid "{0} wants to follow you" msgstr "" -#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:163 +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:149 msgid "{0} has started following you" msgstr "Tha {0} a’ leantainn ort a-nis" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:96 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:82 #, php-format msgid "%s liked %s's post" msgstr "Is toigh le %s am post aig %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:108 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:94 #, php-format msgid "%s disliked %s's post" msgstr "Cha toigh le %s am post aig %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:120 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:106 #, php-format msgid "%s is attending %s's event" msgstr "Bidh %s an làthair aig an tachartas aig %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:132 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:118 #, php-format msgid "%s is not attending %s's event" msgstr "Cha bhi %s an làthair aig an tachartas aig %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:144 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:130 #, php-format msgid "%s may attending %s's event" msgstr "’S dòcha gum bi %s an làthair aig an tachartas aig %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:174 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:160 #, php-format msgid "%s is now friends with %s" msgstr "" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:341 -#: src/Navigation/Notifications/Factory/FormattedNotify.php:379 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:327 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:365 #, php-format msgid "%s commented on %s's post" msgstr "" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:378 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:364 #, php-format msgid "%s created a new post" msgstr "" -#: src/Navigation/Notifications/Factory/Introduction.php:132 +#: src/Navigation/Notifications/Factory/Introduction.php:118 msgid "Friend Suggestion" msgstr "" -#: src/Navigation/Notifications/Factory/Introduction.php:158 +#: src/Navigation/Notifications/Factory/Introduction.php:144 msgid "Friend/Connect Request" msgstr "" -#: src/Navigation/Notifications/Factory/Introduction.php:158 -msgid "New Follower" -msgstr "" - -#: src/Navigation/Notifications/Factory/Notification.php:134 +#: src/Navigation/Notifications/Factory/Notification.php:120 #, php-format msgid "%1$s wants to follow you" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:136 +#: src/Navigation/Notifications/Factory/Notification.php:122 #, php-format msgid "%1$s has started following you" msgstr "Tha %1$s a’ leantainn ort a-nis" -#: src/Navigation/Notifications/Factory/Notification.php:208 +#: src/Navigation/Notifications/Factory/Notification.php:194 #, php-format msgid "%1$s liked your comment on %2$s" msgstr "’S toigh le %1$s do bheachd air %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:211 +#: src/Navigation/Notifications/Factory/Notification.php:197 #, php-format msgid "%1$s liked your post %2$s" msgstr "Is toigh le %1$s am post %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:218 +#: src/Navigation/Notifications/Factory/Notification.php:204 #, php-format msgid "%1$s disliked your comment on %2$s" msgstr "Cha toigh le %1$s do bheachd air %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:221 +#: src/Navigation/Notifications/Factory/Notification.php:207 #, php-format msgid "%1$s disliked your post %2$s" msgstr "Cha toigh le %1$s am post %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:228 +#: src/Navigation/Notifications/Factory/Notification.php:214 #, php-format msgid "%1$s shared your comment %2$s" msgstr "Cho-roinn %1$s do bheachd %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:231 -#: src/Navigation/Notifications/Factory/Notification.php:316 +#: src/Navigation/Notifications/Factory/Notification.php:217 +#: src/Navigation/Notifications/Factory/Notification.php:302 #, php-format msgid "%1$s shared your post %2$s" msgstr "Cho-roinn %1$s am post agad %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:235 -#: src/Navigation/Notifications/Factory/Notification.php:305 +#: src/Navigation/Notifications/Factory/Notification.php:221 +#: src/Navigation/Notifications/Factory/Notification.php:291 #, php-format msgid "%1$s shared the post %2$s from %3$s" msgstr "Cho-roinn %1$s am post %2$s o %3$s" -#: src/Navigation/Notifications/Factory/Notification.php:237 -#: src/Navigation/Notifications/Factory/Notification.php:307 +#: src/Navigation/Notifications/Factory/Notification.php:223 +#: src/Navigation/Notifications/Factory/Notification.php:293 #, php-format msgid "%1$s shared a post from %3$s" msgstr "Cho-roinn %1$s post o %3$s" -#: src/Navigation/Notifications/Factory/Notification.php:239 -#: src/Navigation/Notifications/Factory/Notification.php:309 +#: src/Navigation/Notifications/Factory/Notification.php:225 +#: src/Navigation/Notifications/Factory/Notification.php:295 #, php-format msgid "%1$s shared the post %2$s" msgstr "Cho-roinn %1$s am post %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:241 -#: src/Navigation/Notifications/Factory/Notification.php:311 +#: src/Navigation/Notifications/Factory/Notification.php:227 +#: src/Navigation/Notifications/Factory/Notification.php:297 #, php-format msgid "%1$s shared a post" msgstr "Cho-roinn %1$s post" -#: src/Navigation/Notifications/Factory/Notification.php:249 +#: src/Navigation/Notifications/Factory/Notification.php:235 #, php-format msgid "%1$s wants to attend your event %2$s" msgstr "Bu mhath le %1$s a bhith an làthair aig an tachartas %2$s agad" -#: src/Navigation/Notifications/Factory/Notification.php:256 +#: src/Navigation/Notifications/Factory/Notification.php:242 #, php-format msgid "%1$s does not want to attend your event %2$s" msgstr "Cha bu mhath le %1$s a bhith an làthair aig an tachartas %2$s agad" -#: src/Navigation/Notifications/Factory/Notification.php:263 +#: src/Navigation/Notifications/Factory/Notification.php:249 #, php-format msgid "%1$s maybe wants to attend your event %2$s" msgstr "’S dòcha gum bu mhath le %1$s a bhith an làthair aig an tachartas %2$s agad" -#: src/Navigation/Notifications/Factory/Notification.php:270 +#: src/Navigation/Notifications/Factory/Notification.php:256 #, php-format msgid "%1$s tagged you on %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:274 +#: src/Navigation/Notifications/Factory/Notification.php:260 #, php-format msgid "%1$s replied to you on %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:278 +#: src/Navigation/Notifications/Factory/Notification.php:264 #, php-format msgid "%1$s commented in your thread %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:282 +#: src/Navigation/Notifications/Factory/Notification.php:268 #, php-format msgid "%1$s commented on your comment %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:289 +#: src/Navigation/Notifications/Factory/Notification.php:275 #, php-format msgid "%1$s commented in their thread %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:291 +#: src/Navigation/Notifications/Factory/Notification.php:277 #, php-format msgid "%1$s commented in their thread" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:293 +#: src/Navigation/Notifications/Factory/Notification.php:279 #, php-format msgid "%1$s commented in the thread %2$s from %3$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:295 +#: src/Navigation/Notifications/Factory/Notification.php:281 #, php-format msgid "%1$s commented in the thread from %3$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:300 +#: src/Navigation/Notifications/Factory/Notification.php:286 #, php-format msgid "%1$s commented on your thread %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:225 -#: src/Navigation/Notifications/Repository/Notify.php:754 +#: src/Navigation/Notifications/Repository/Notify.php:211 +#: src/Navigation/Notifications/Repository/Notify.php:740 msgid "[Friendica:Notify]" msgstr "[Friendica:Brath]" -#: src/Navigation/Notifications/Repository/Notify.php:293 +#: src/Navigation/Notifications/Repository/Notify.php:279 #, php-format msgid "%s New mail received at %s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:295 +#: src/Navigation/Notifications/Repository/Notify.php:281 #, php-format msgid "%1$s sent you a new private message at %2$s." msgstr "Chuir %1$s teachdaireachd phrìobhaideach ùr thugad aig %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:296 +#: src/Navigation/Notifications/Repository/Notify.php:282 msgid "a private message" msgstr "teachdaireachd phrìobhaideach" -#: src/Navigation/Notifications/Repository/Notify.php:296 +#: src/Navigation/Notifications/Repository/Notify.php:282 #, php-format msgid "%1$s sent you %2$s." msgstr "Chuir %1$s %2$s thugad." -#: src/Navigation/Notifications/Repository/Notify.php:298 +#: src/Navigation/Notifications/Repository/Notify.php:284 #, php-format msgid "Please visit %s to view and/or reply to your private messages." msgstr "Tadhail air %s a shealltainn agus/no a’ freagairt dha na teachdaireachdan prìobhaideach agad." -#: src/Navigation/Notifications/Repository/Notify.php:328 +#: src/Navigation/Notifications/Repository/Notify.php:314 #, php-format msgid "%1$s commented on %2$s's %3$s %4$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:333 +#: src/Navigation/Notifications/Repository/Notify.php:319 #, php-format msgid "%1$s commented on your %2$s %3$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:337 +#: src/Navigation/Notifications/Repository/Notify.php:323 #, php-format msgid "%1$s commented on their %2$s %3$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:341 -#: src/Navigation/Notifications/Repository/Notify.php:788 +#: src/Navigation/Notifications/Repository/Notify.php:327 +#: src/Navigation/Notifications/Repository/Notify.php:774 #, php-format msgid "%1$s Comment to conversation #%2$d by %3$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:343 +#: src/Navigation/Notifications/Repository/Notify.php:329 #, php-format msgid "%s commented on an item/conversation you have been following." msgstr "Chuir %s beachd ri nì/còmhradh air a bheil thu a’ leantainn." -#: src/Navigation/Notifications/Repository/Notify.php:347 -#: src/Navigation/Notifications/Repository/Notify.php:362 -#: src/Navigation/Notifications/Repository/Notify.php:814 +#: src/Navigation/Notifications/Repository/Notify.php:333 +#: src/Navigation/Notifications/Repository/Notify.php:348 +#: src/Navigation/Notifications/Repository/Notify.php:800 #, php-format msgid "Please visit %s to view and/or reply to the conversation." msgstr "Tadhail air %s a shealltainn agus/no a’ freagairt dhan chòmhradh." -#: src/Navigation/Notifications/Repository/Notify.php:354 +#: src/Navigation/Notifications/Repository/Notify.php:340 #, php-format msgid "%s %s posted to your profile wall" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:356 +#: src/Navigation/Notifications/Repository/Notify.php:342 #, php-format msgid "%1$s posted to your profile wall at %2$s" msgstr "Chuir %1$s post ri balla na pròifil agad aig %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:357 +#: src/Navigation/Notifications/Repository/Notify.php:343 #, php-format msgid "%1$s posted to [url=%2$s]your wall[/url]" msgstr "Chuir %1$s post ris [url=%2$s]a’ bhalla agad[/url]" -#: src/Navigation/Notifications/Repository/Notify.php:370 +#: src/Navigation/Notifications/Repository/Notify.php:356 #, php-format msgid "%s Introduction received" msgstr "%s Fhuair thu cur an aithne" -#: src/Navigation/Notifications/Repository/Notify.php:372 +#: src/Navigation/Notifications/Repository/Notify.php:358 #, php-format msgid "You've received an introduction from '%1$s' at %2$s" msgstr "Fhuair thu cur an aithne o “%1$s” aig %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:373 +#: src/Navigation/Notifications/Repository/Notify.php:359 #, php-format msgid "You've received [url=%1$s]an introduction[/url] from %2$s." msgstr "Fhuair thu [url=%1$s]cur an aithne[/url] o %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:378 -#: src/Navigation/Notifications/Repository/Notify.php:424 +#: src/Navigation/Notifications/Repository/Notify.php:364 +#: src/Navigation/Notifications/Repository/Notify.php:410 #, php-format msgid "You may visit their profile at %s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:380 +#: src/Navigation/Notifications/Repository/Notify.php:366 #, php-format msgid "Please visit %s to approve or reject the introduction." msgstr "Tadhail air %s a ghabhail ris no a dhiùltadh a’ chuir an aithne." -#: src/Navigation/Notifications/Repository/Notify.php:387 +#: src/Navigation/Notifications/Repository/Notify.php:373 #, php-format msgid "%s A new person is sharing with you" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:389 -#: src/Navigation/Notifications/Repository/Notify.php:390 +#: src/Navigation/Notifications/Repository/Notify.php:375 +#: src/Navigation/Notifications/Repository/Notify.php:376 #, php-format msgid "%1$s is sharing with you at %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:397 +#: src/Navigation/Notifications/Repository/Notify.php:383 #, php-format msgid "%s You have a new follower" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:399 -#: src/Navigation/Notifications/Repository/Notify.php:400 +#: src/Navigation/Notifications/Repository/Notify.php:385 +#: src/Navigation/Notifications/Repository/Notify.php:386 #, php-format msgid "You have a new follower at %2$s : %1$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:413 +#: src/Navigation/Notifications/Repository/Notify.php:399 #, php-format msgid "%s Friend suggestion received" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:415 +#: src/Navigation/Notifications/Repository/Notify.php:401 #, php-format msgid "You've received a friend suggestion from '%1$s' at %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:416 +#: src/Navigation/Notifications/Repository/Notify.php:402 #, php-format msgid "" "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:422 +#: src/Navigation/Notifications/Repository/Notify.php:408 msgid "Name:" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:423 +#: src/Navigation/Notifications/Repository/Notify.php:409 msgid "Photo:" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:426 +#: src/Navigation/Notifications/Repository/Notify.php:412 #, php-format msgid "Please visit %s to approve or reject the suggestion." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:434 -#: src/Navigation/Notifications/Repository/Notify.php:449 +#: src/Navigation/Notifications/Repository/Notify.php:420 +#: src/Navigation/Notifications/Repository/Notify.php:435 #, php-format msgid "%s Connection accepted" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:436 -#: src/Navigation/Notifications/Repository/Notify.php:451 +#: src/Navigation/Notifications/Repository/Notify.php:422 +#: src/Navigation/Notifications/Repository/Notify.php:437 #, php-format msgid "'%1$s' has accepted your connection request at %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:437 -#: src/Navigation/Notifications/Repository/Notify.php:452 +#: src/Navigation/Notifications/Repository/Notify.php:423 +#: src/Navigation/Notifications/Repository/Notify.php:438 #, php-format msgid "%2$s has accepted your [url=%1$s]connection request[/url]." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:442 +#: src/Navigation/Notifications/Repository/Notify.php:428 msgid "" "You are now mutual friends and may exchange status updates, photos, and " "email without restriction." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:444 +#: src/Navigation/Notifications/Repository/Notify.php:430 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:457 +#: src/Navigation/Notifications/Repository/Notify.php:443 #, php-format msgid "" "'%1$s' has chosen to accept you a fan, which restricts some forms of " @@ -12318,34 +12284,34 @@ msgid "" "automatically." msgstr "Ghabh “%1$s” riut ’nad dhealasach is cuingichidh sin an conaltradh – can teachdaireachdan prìobhaideach is cuid dhen cho-luadar air a’ phròifil. Mas e duilleag cuideigin chliùitich no duilleag coimhearsnachd a th’ ann, chaidh na roghainnean seo a chur an sàs gu fèin-obrachail." -#: src/Navigation/Notifications/Repository/Notify.php:459 +#: src/Navigation/Notifications/Repository/Notify.php:445 #, php-format msgid "" "'%1$s' may choose to extend this into a two-way or more permissive " "relationship in the future." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:461 +#: src/Navigation/Notifications/Repository/Notify.php:447 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:471 +#: src/Navigation/Notifications/Repository/Notify.php:457 msgid "registration request" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:473 +#: src/Navigation/Notifications/Repository/Notify.php:459 #, php-format msgid "You've received a registration request from '%1$s' at %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:474 +#: src/Navigation/Notifications/Repository/Notify.php:460 #, php-format msgid "You've received a [url=%1$s]registration request[/url] from %2$s." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:479 -#: src/Navigation/Notifications/Repository/Notify.php:500 +#: src/Navigation/Notifications/Repository/Notify.php:465 +#: src/Navigation/Notifications/Repository/Notify.php:486 #, php-format msgid "" "Display Name:\t%s\n" @@ -12353,288 +12319,288 @@ msgid "" "Login Name:\t%s (%s)" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:485 +#: src/Navigation/Notifications/Repository/Notify.php:471 #, php-format msgid "Please visit %s to approve or reject the request." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:492 +#: src/Navigation/Notifications/Repository/Notify.php:478 msgid "new registration" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:494 +#: src/Navigation/Notifications/Repository/Notify.php:480 #, php-format msgid "You've received a new registration from '%1$s' at %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:495 +#: src/Navigation/Notifications/Repository/Notify.php:481 #, php-format msgid "You've received a [url=%1$s]new registration[/url] from %2$s." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:506 +#: src/Navigation/Notifications/Repository/Notify.php:492 #, php-format msgid "Please visit %s to have a look at the new registration." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:782 +#: src/Navigation/Notifications/Repository/Notify.php:768 #, php-format msgid "%s %s tagged you" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:785 +#: src/Navigation/Notifications/Repository/Notify.php:771 #, php-format msgid "%s %s shared a new post" msgstr "Cho-roinn %s%s post ùr" -#: src/Navigation/Notifications/Repository/Notify.php:793 +#: src/Navigation/Notifications/Repository/Notify.php:779 #, php-format msgid "%1$s %2$s liked your post #%3$d" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:796 +#: src/Navigation/Notifications/Repository/Notify.php:782 #, php-format msgid "%1$s %2$s liked your comment on #%3$d" msgstr "" -#: src/Object/EMail/ItemCCEMail.php:42 +#: src/Object/EMail/ItemCCEMail.php:28 #, php-format msgid "" "This message was sent to you by %s, a member of the Friendica social " "network." msgstr "" -#: src/Object/EMail/ItemCCEMail.php:44 +#: src/Object/EMail/ItemCCEMail.php:30 #, php-format msgid "You may visit them online at %s" msgstr "" -#: src/Object/EMail/ItemCCEMail.php:45 +#: src/Object/EMail/ItemCCEMail.php:31 msgid "" "Please contact the sender by replying to this post if you do not wish to " "receive these messages." msgstr "" -#: src/Object/EMail/ItemCCEMail.php:49 +#: src/Object/EMail/ItemCCEMail.php:35 #, php-format msgid "%s posted an update." msgstr "" -#: src/Object/Post.php:138 +#: src/Object/Post.php:124 msgid "Private Message" msgstr "Teachdaireachd phrìobhaideach" -#: src/Object/Post.php:142 +#: src/Object/Post.php:128 msgid "Public Message" msgstr "Teachdaireachd phoblach" -#: src/Object/Post.php:146 +#: src/Object/Post.php:132 msgid "Unlisted Message" msgstr "Teachdaireachd fhalaichte o liostaichean" -#: src/Object/Post.php:182 +#: src/Object/Post.php:168 msgid "This entry was edited" msgstr "Chaidh an nì seo a dheasachadh" -#: src/Object/Post.php:210 +#: src/Object/Post.php:196 msgid "Connector Message" msgstr "Teachdaireachd ceangladair" -#: src/Object/Post.php:239 src/Object/Post.php:241 +#: src/Object/Post.php:225 src/Object/Post.php:227 msgid "Edit" msgstr "Deasaich" -#: src/Object/Post.php:275 +#: src/Object/Post.php:261 msgid "Delete globally" msgstr "Sguab às sa cho-nasgadh" -#: src/Object/Post.php:275 +#: src/Object/Post.php:261 msgid "Remove locally" msgstr "Thoir air falbh gu h-ionadail" -#: src/Object/Post.php:282 +#: src/Object/Post.php:268 #, php-format msgid "Block %s" msgstr "Bac %s" -#: src/Object/Post.php:287 +#: src/Object/Post.php:273 #, php-format msgid "Ignore %s" msgstr "" -#: src/Object/Post.php:292 +#: src/Object/Post.php:278 #, php-format msgid "Collapse %s" msgstr "" -#: src/Object/Post.php:296 +#: src/Object/Post.php:282 msgid "Report post" msgstr "" -#: src/Object/Post.php:307 +#: src/Object/Post.php:293 msgid "Save to folder" msgstr "Sàbhail gu pasgan" -#: src/Object/Post.php:347 +#: src/Object/Post.php:333 msgid "I will attend" msgstr "Bidh mi an làthair" -#: src/Object/Post.php:347 +#: src/Object/Post.php:333 msgid "I will not attend" msgstr "Cha bhi mi ann" -#: src/Object/Post.php:347 +#: src/Object/Post.php:333 msgid "I might attend" msgstr "Dh’fhaoidte gum bi mi an làthair" -#: src/Object/Post.php:394 +#: src/Object/Post.php:380 msgid "Ignore thread" msgstr "Leig seachad an snàithlean" -#: src/Object/Post.php:395 +#: src/Object/Post.php:381 msgid "Unignore thread" msgstr "Na leig seachad an snàithlean tuilleadh" -#: src/Object/Post.php:396 +#: src/Object/Post.php:382 msgid "Toggle ignore status" msgstr "Toglaich staid na leigeil seachad" -#: src/Object/Post.php:406 +#: src/Object/Post.php:392 msgid "Add star" msgstr "Cuir rionnag ris" -#: src/Object/Post.php:407 +#: src/Object/Post.php:393 msgid "Remove star" msgstr "Thoir an rionnag air falbh" -#: src/Object/Post.php:408 +#: src/Object/Post.php:394 msgid "Toggle star status" msgstr "Toglaich staid na rionnaige" -#: src/Object/Post.php:419 +#: src/Object/Post.php:405 msgid "Pin" msgstr "Prìnich" -#: src/Object/Post.php:420 +#: src/Object/Post.php:406 msgid "Unpin" msgstr "Dì-phrìnich" -#: src/Object/Post.php:421 +#: src/Object/Post.php:407 msgid "Toggle pin status" msgstr "Toglaich staid a’ phrìneachaidh" -#: src/Object/Post.php:424 +#: src/Object/Post.php:410 msgid "Pinned" msgstr "Prìnichte" -#: src/Object/Post.php:429 +#: src/Object/Post.php:415 msgid "Add tag" msgstr "Cuir taga ris" -#: src/Object/Post.php:444 +#: src/Object/Post.php:430 msgid "Quote share this" msgstr "Co-roinn seo le iomradh" -#: src/Object/Post.php:444 +#: src/Object/Post.php:430 msgid "Quote Share" msgstr "Iomradh" -#: src/Object/Post.php:447 +#: src/Object/Post.php:433 msgid "Reshare this" msgstr "Co-roinn seo às ùr" -#: src/Object/Post.php:447 +#: src/Object/Post.php:433 msgid "Reshare" msgstr "Co-roinn" -#: src/Object/Post.php:448 +#: src/Object/Post.php:434 msgid "Cancel your Reshare" msgstr "Sguir dhen cho-roinneadh agad" -#: src/Object/Post.php:448 +#: src/Object/Post.php:434 msgid "Unshare" msgstr "Na co-roinn" -#: src/Object/Post.php:492 +#: src/Object/Post.php:478 #, php-format msgid "%s (Received %s)" msgstr "%s (air fhaighinn %s)" -#: src/Object/Post.php:498 +#: src/Object/Post.php:484 msgid "Comment this item on your system" msgstr "Thoir beachd ris an nì seo san t-siostam agad" -#: src/Object/Post.php:498 +#: src/Object/Post.php:484 msgid "Remote comment" msgstr "Beachd cèin" -#: src/Object/Post.php:520 +#: src/Object/Post.php:506 msgid "Share via ..." msgstr "Co-roinn slighe…" -#: src/Object/Post.php:520 +#: src/Object/Post.php:506 msgid "Share via external services" msgstr "Co-roinn slighe seirbheise cèine" -#: src/Object/Post.php:527 +#: src/Object/Post.php:513 msgid "Unknown parent" msgstr "" -#: src/Object/Post.php:531 +#: src/Object/Post.php:517 #, php-format msgid "in reply to %s" msgstr "" -#: src/Object/Post.php:533 +#: src/Object/Post.php:519 msgid "Parent is probably private or not federated." msgstr "" -#: src/Object/Post.php:557 +#: src/Object/Post.php:543 msgid "to" msgstr "gu" -#: src/Object/Post.php:558 +#: src/Object/Post.php:544 msgid "via" msgstr "slighe" -#: src/Object/Post.php:559 +#: src/Object/Post.php:545 msgid "Wall-to-Wall" msgstr "Balla gu balla" -#: src/Object/Post.php:560 +#: src/Object/Post.php:546 msgid "via Wall-To-Wall:" msgstr "slighe balla bu balla:" -#: src/Object/Post.php:613 +#: src/Object/Post.php:599 #, php-format msgid "Reply to %s" msgstr "Freagair gu %s" -#: src/Object/Post.php:616 +#: src/Object/Post.php:602 msgid "More" msgstr "Barrachd" -#: src/Object/Post.php:635 +#: src/Object/Post.php:621 msgid "Notifier task is pending" msgstr "" -#: src/Object/Post.php:636 +#: src/Object/Post.php:622 msgid "Delivery to remote servers is pending" msgstr "" -#: src/Object/Post.php:637 +#: src/Object/Post.php:623 msgid "Delivery to remote servers is underway" msgstr "" -#: src/Object/Post.php:638 +#: src/Object/Post.php:624 msgid "Delivery to remote servers is mostly done" msgstr "" -#: src/Object/Post.php:639 +#: src/Object/Post.php:625 msgid "Delivery to remote servers is done" msgstr "" -#: src/Object/Post.php:661 +#: src/Object/Post.php:647 #, php-format msgid "%d comment" msgid_plural "%d comments" @@ -12643,485 +12609,467 @@ msgstr[1] "%d bheachd" msgstr[2] "%d beachdan" msgstr[3] "%d beachd" -#: src/Object/Post.php:662 +#: src/Object/Post.php:648 msgid "Show more" msgstr "Seall barrachd dheth" -#: src/Object/Post.php:663 +#: src/Object/Post.php:649 msgid "Show fewer" msgstr "Seall nas lugha dheth" -#: src/Object/Post.php:700 +#: src/Object/Post.php:686 #, php-format msgid "Reshared by: %s" msgstr "’Ga cho-roinneadh le: %s " -#: src/Object/Post.php:705 +#: src/Object/Post.php:691 #, php-format msgid "Viewed by: %s" msgstr "Air a choimhead air le: %s" -#: src/Object/Post.php:710 +#: src/Object/Post.php:696 #, php-format msgid "Read by: %s" msgstr "" -#: src/Object/Post.php:715 +#: src/Object/Post.php:701 #, php-format msgid "Liked by: %s" msgstr "’S toil le %s seo" -#: src/Object/Post.php:720 +#: src/Object/Post.php:706 #, php-format msgid "Disliked by: %s" msgstr "Cha toil le %s seo" -#: src/Object/Post.php:725 +#: src/Object/Post.php:711 #, php-format msgid "Attended by: %s" msgstr "An làthair: %s" -#: src/Object/Post.php:730 +#: src/Object/Post.php:716 #, php-format msgid "Maybe attended by: %s" msgstr "An làthair ’s dòcha: %s" -#: src/Object/Post.php:735 +#: src/Object/Post.php:721 #, php-format msgid "Not attended by: %s" msgstr "Gun a bhith an làthair: %s" -#: src/Object/Post.php:740 +#: src/Object/Post.php:726 #, php-format msgid "Commented by: %s" msgstr "" -#: src/Object/Post.php:745 +#: src/Object/Post.php:731 #, php-format msgid "Reacted with %s by: %s" msgstr "Chaidh freagairt le %s le: %s" -#: src/Object/Post.php:768 +#: src/Object/Post.php:754 #, php-format msgid "Quote shared by: %s" msgstr "" -#: src/Protocol/ActivityPub/Receiver.php:571 +#: src/Protocol/ActivityPub/Receiver.php:557 msgid "Chat" msgstr "" -#: src/Protocol/Delivery.php:544 +#: src/Protocol/Delivery.php:530 msgid "(no subject)" msgstr "(gun chuspair)" -#: src/Protocol/OStatus.php:1392 -#, php-format -msgid "%s is now following %s." -msgstr "Tha %s a’ leantainn %s a-nis." - -#: src/Protocol/OStatus.php:1393 -msgid "following" -msgstr "" - -#: src/Protocol/OStatus.php:1396 -#, php-format -msgid "%s stopped following %s." -msgstr "Chan eil %s a’ leantainn %s tuilleadh." - -#: src/Protocol/OStatus.php:1397 -msgid "stopped following" -msgstr "" - -#: src/Render/FriendicaSmartyEngine.php:56 +#: src/Render/FriendicaSmartyEngine.php:42 #, php-format msgid "The folder %s must be writable by webserver." msgstr "Ceumaidh cead sgrìobhaidh dhan phasgan %s a bhith aig an fhrithealaiche-lìn." -#: src/Security/Authentication.php:214 +#: src/Security/Authentication.php:200 msgid "Login failed." msgstr "Dh’fhàillig leis a’ chlàradh a-steach." -#: src/Security/Authentication.php:259 +#: src/Security/Authentication.php:245 msgid "Login failed. Please check your credentials." msgstr "Dh’fhàillig leis a’ chlàradh a-steach. Thoir sùil air an teisteas agad." -#: src/Security/Authentication.php:373 +#: src/Security/Authentication.php:359 #, php-format msgid "Welcome %s" msgstr "Fàilte ort, %s" -#: src/Security/Authentication.php:374 +#: src/Security/Authentication.php:360 msgid "Please upload a profile photo." msgstr "An luchdaich thu suas dealbh pròifile?" -#: src/Security/OpenWebAuth.php:163 +#: src/Security/OpenWebAuth.php:149 #, php-format msgid "OpenWebAuth: %1$s welcomes %2$s" msgstr "OpenWebAuth: Tha %1$s a’ cur fàilte air %2$s" -#: src/Util/EMailer/MailBuilder.php:260 +#: src/Util/EMailer/MailBuilder.php:246 msgid "Friendica Notification" msgstr "Brath Friendica" -#: src/Util/EMailer/NotifyMailBuilder.php:78 -#: src/Util/EMailer/SystemMailBuilder.php:54 +#: src/Util/EMailer/NotifyMailBuilder.php:64 +#: src/Util/EMailer/SystemMailBuilder.php:40 #, php-format msgid "%1$s, %2$s Administrator" msgstr "%1$s, rianaire %2$s" -#: src/Util/EMailer/NotifyMailBuilder.php:80 -#: src/Util/EMailer/SystemMailBuilder.php:56 +#: src/Util/EMailer/NotifyMailBuilder.php:66 +#: src/Util/EMailer/SystemMailBuilder.php:42 #, php-format msgid "%s Administrator" msgstr "Rianaire %s" -#: src/Util/EMailer/NotifyMailBuilder.php:193 -#: src/Util/EMailer/NotifyMailBuilder.php:217 -#: src/Util/EMailer/SystemMailBuilder.php:101 -#: src/Util/EMailer/SystemMailBuilder.php:118 +#: src/Util/EMailer/NotifyMailBuilder.php:179 +#: src/Util/EMailer/NotifyMailBuilder.php:203 +#: src/Util/EMailer/SystemMailBuilder.php:87 +#: src/Util/EMailer/SystemMailBuilder.php:104 msgid "thanks" msgstr "mòran taing" -#: src/Util/Temporal.php:172 +#: src/Util/Temporal.php:158 msgid "YYYY-MM-DD or MM-DD" msgstr "YYYY-MM-DD no MM-DD" -#: src/Util/Temporal.php:280 +#: src/Util/Temporal.php:266 #, php-format msgid "Time zone: %s Change in Settings" msgstr "Roinn-tìde: %s Atharraich i sna roghainnean" -#: src/Util/Temporal.php:320 src/Util/Temporal.php:329 +#: src/Util/Temporal.php:306 src/Util/Temporal.php:315 msgid "never" msgstr "chan ann idir" -#: src/Util/Temporal.php:343 +#: src/Util/Temporal.php:329 msgid "less than a second ago" msgstr "nas lugha na diog air ais" -#: src/Util/Temporal.php:352 +#: src/Util/Temporal.php:338 msgid "year" msgstr "bhliadhna" -#: src/Util/Temporal.php:352 +#: src/Util/Temporal.php:338 msgid "years" msgstr "bliadhna(ichean)" -#: src/Util/Temporal.php:353 +#: src/Util/Temporal.php:339 msgid "months" msgstr "mìos(an)" -#: src/Util/Temporal.php:354 +#: src/Util/Temporal.php:340 msgid "weeks" msgstr "seachdain(ean)" -#: src/Util/Temporal.php:355 +#: src/Util/Temporal.php:341 msgid "days" msgstr "là(ithean)" -#: src/Util/Temporal.php:356 +#: src/Util/Temporal.php:342 msgid "hour" msgstr "uair a thìde" -#: src/Util/Temporal.php:356 +#: src/Util/Temporal.php:342 msgid "hours" msgstr "uair(ean) a thìde" -#: src/Util/Temporal.php:357 +#: src/Util/Temporal.php:343 msgid "minute" msgstr "mhionaid" -#: src/Util/Temporal.php:357 +#: src/Util/Temporal.php:343 msgid "minutes" msgstr "mionaid(ean)" -#: src/Util/Temporal.php:358 +#: src/Util/Temporal.php:344 msgid "second" msgstr "dhiog" -#: src/Util/Temporal.php:358 +#: src/Util/Temporal.php:344 msgid "seconds" msgstr "diog(an)" -#: src/Util/Temporal.php:367 +#: src/Util/Temporal.php:353 #, php-format msgid "in %1$d %2$s" msgstr "an ceann %1$d %2$s" -#: src/Util/Temporal.php:370 +#: src/Util/Temporal.php:356 #, php-format msgid "%1$d %2$s ago" msgstr "%1$d %2$s air ais" -#: src/Worker/PushSubscription.php:110 +#: src/Worker/PushSubscription.php:96 msgid "Notification from Friendica" msgstr "Brath o Friendica" -#: src/Worker/PushSubscription.php:111 +#: src/Worker/PushSubscription.php:97 msgid "Empty Post" msgstr "Post falamh" -#: view/theme/duepuntozero/config.php:68 +#: view/theme/duepuntozero/config.php:56 msgid "default" msgstr "bunaiteach" -#: view/theme/duepuntozero/config.php:69 +#: view/theme/duepuntozero/config.php:57 msgid "greenzero" msgstr "" -#: view/theme/duepuntozero/config.php:70 +#: view/theme/duepuntozero/config.php:58 msgid "purplezero" msgstr "" -#: view/theme/duepuntozero/config.php:71 +#: view/theme/duepuntozero/config.php:59 msgid "easterbunny" msgstr "" -#: view/theme/duepuntozero/config.php:72 +#: view/theme/duepuntozero/config.php:60 msgid "darkzero" msgstr "" -#: view/theme/duepuntozero/config.php:73 +#: view/theme/duepuntozero/config.php:61 msgid "comix" msgstr "" -#: view/theme/duepuntozero/config.php:74 +#: view/theme/duepuntozero/config.php:62 msgid "slackr" msgstr "" -#: view/theme/duepuntozero/config.php:87 +#: view/theme/duepuntozero/config.php:75 msgid "Variations" msgstr "Fiamhan" -#: view/theme/frio/config.php:146 +#: view/theme/frio/config.php:134 msgid "Note" msgstr "An aire" -#: view/theme/frio/config.php:146 +#: view/theme/frio/config.php:134 msgid "Check image permissions if all users are allowed to see the image" msgstr "Thoir sùil air ceadan an deilbh ma dh’fhaodas a h-uile cleachdaiche an dealbh fhaicinn" -#: view/theme/frio/config.php:152 +#: view/theme/frio/config.php:140 msgid "Appearance" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Accent color" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Blue" msgstr "Gorm" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Red" msgstr "Dearg" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Purple" msgstr "Purpaidh" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Green" msgstr "Uaine" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Pink" msgstr "Pinc" -#: view/theme/frio/config.php:154 +#: view/theme/frio/config.php:142 msgid "Copy or paste schemestring" msgstr "Dèan lethbhreac no cuir ann sreang sgeama" -#: view/theme/frio/config.php:154 +#: view/theme/frio/config.php:142 msgid "" "You can copy this string to share your theme with others. Pasting here " "applies the schemestring" msgstr "’S urrainn dhut lethbhreac dhen t-sreang seo a dhèanamh airson an t-ùrlar agad a cho-roinneadh le càch. Nuair a chuireas tu rud ann an-seo, thèid sreang an sgeama a chur an sàs" -#: view/theme/frio/config.php:155 +#: view/theme/frio/config.php:143 msgid "Navigation bar background color" msgstr "Dath cùlaibh bàr na seòladaireachd" -#: view/theme/frio/config.php:156 +#: view/theme/frio/config.php:144 msgid "Navigation bar icon color " msgstr "Dath ìomhaigheagan bàr na seòladaireachd " -#: view/theme/frio/config.php:157 +#: view/theme/frio/config.php:145 msgid "Link color" msgstr "Dath nan ceanglaichean" -#: view/theme/frio/config.php:158 +#: view/theme/frio/config.php:146 msgid "Set the background color" msgstr "Suidhich dath a’ chùlaibh" -#: view/theme/frio/config.php:159 +#: view/theme/frio/config.php:147 msgid "Content background opacity" msgstr "Trìd-dhoilleireachd cùlaibh na susbainte" -#: view/theme/frio/config.php:160 +#: view/theme/frio/config.php:148 msgid "Set the background image" msgstr "Suidhich dealbh a’ chùlaibh" -#: view/theme/frio/config.php:161 +#: view/theme/frio/config.php:149 msgid "Background image style" msgstr "Stoidhle dealbh a’ chùlaibh" -#: view/theme/frio/config.php:164 +#: view/theme/frio/config.php:152 msgid "Always open Compose page" msgstr "Fosgail duilleag an sgrìobhaidh an-còmhnaidh" -#: view/theme/frio/config.php:164 +#: view/theme/frio/config.php:152 msgid "" "The New Post button always open the Compose page " "instead of the modal form. When this is disabled, the Compose page can be " "accessed with a middle click on the link or from the modal." msgstr "" -#: view/theme/frio/config.php:168 +#: view/theme/frio/config.php:156 msgid "Login page background image" msgstr "" -#: view/theme/frio/config.php:172 +#: view/theme/frio/config.php:160 msgid "Login page background color" msgstr "" -#: view/theme/frio/config.php:172 +#: view/theme/frio/config.php:160 msgid "Leave background image and color empty for theme defaults" msgstr "Fàg dealbh ’s dath a’ chùlaibh bàn do bhun-roghainnean an ùrlair" -#: view/theme/frio/php/Image.php:39 +#: view/theme/frio/php/Image.php:27 msgid "Top Banner" msgstr "" -#: view/theme/frio/php/Image.php:39 +#: view/theme/frio/php/Image.php:27 msgid "" "Resize image to the width of the screen and show background color below on " "long pages." msgstr "" -#: view/theme/frio/php/Image.php:40 +#: view/theme/frio/php/Image.php:28 msgid "Full screen" msgstr "" -#: view/theme/frio/php/Image.php:40 +#: view/theme/frio/php/Image.php:28 msgid "" "Resize image to fill entire screen, clipping either the right or the bottom." msgstr "" -#: view/theme/frio/php/Image.php:41 +#: view/theme/frio/php/Image.php:29 msgid "Single row mosaic" msgstr "" -#: view/theme/frio/php/Image.php:41 +#: view/theme/frio/php/Image.php:29 msgid "" "Resize image to repeat it on a single row, either vertical or horizontal." msgstr "" -#: view/theme/frio/php/Image.php:42 +#: view/theme/frio/php/Image.php:30 msgid "Mosaic" msgstr "" -#: view/theme/frio/php/Image.php:42 +#: view/theme/frio/php/Image.php:30 msgid "Repeat image to fill the screen." msgstr "" -#: view/theme/frio/php/default.php:82 view/theme/frio/php/standard.php:40 +#: view/theme/frio/php/default.php:70 view/theme/frio/php/standard.php:28 msgid "Skip to main content" msgstr "" -#: view/theme/frio/php/default.php:153 view/theme/frio/php/standard.php:75 +#: view/theme/frio/php/default.php:141 view/theme/frio/php/standard.php:63 msgid "Back to top" msgstr "" -#: view/theme/frio/php/scheme.php:105 +#: view/theme/frio/php/scheme.php:93 msgid "Light" msgstr "" -#: view/theme/frio/php/scheme.php:106 +#: view/theme/frio/php/scheme.php:94 msgid "Dark" msgstr "" -#: view/theme/frio/php/scheme.php:107 +#: view/theme/frio/php/scheme.php:95 msgid "Black" msgstr "" -#: view/theme/frio/php/scheme.php:118 +#: view/theme/frio/php/scheme.php:106 msgid "Custom" msgstr "Gnàthaichte" -#: view/theme/frio/theme.php:214 +#: view/theme/frio/theme.php:202 msgid "Guest" msgstr "" -#: view/theme/frio/theme.php:217 +#: view/theme/frio/theme.php:205 msgid "Visitor" msgstr "" -#: view/theme/quattro/config.php:89 +#: view/theme/quattro/config.php:77 msgid "Alignment" msgstr "" -#: view/theme/quattro/config.php:89 +#: view/theme/quattro/config.php:77 msgid "Left" msgstr "" -#: view/theme/quattro/config.php:89 +#: view/theme/quattro/config.php:77 msgid "Center" msgstr "" -#: view/theme/quattro/config.php:90 +#: view/theme/quattro/config.php:78 msgid "Color scheme" msgstr "" -#: view/theme/quattro/config.php:91 +#: view/theme/quattro/config.php:79 msgid "Posts font size" msgstr "" -#: view/theme/quattro/config.php:92 +#: view/theme/quattro/config.php:80 msgid "Textareas font size" msgstr "" -#: view/theme/vier/config.php:91 +#: view/theme/vier/config.php:79 msgid "Comma separated list of helper groups" msgstr "" -#: view/theme/vier/config.php:131 +#: view/theme/vier/config.php:119 msgid "don't show" msgstr "" -#: view/theme/vier/config.php:131 +#: view/theme/vier/config.php:119 msgid "show" msgstr "" -#: view/theme/vier/config.php:137 +#: view/theme/vier/config.php:125 msgid "Set style" msgstr "" -#: view/theme/vier/config.php:138 +#: view/theme/vier/config.php:126 msgid "Community Pages" msgstr "" -#: view/theme/vier/config.php:139 view/theme/vier/theme.php:148 +#: view/theme/vier/config.php:127 view/theme/vier/theme.php:136 msgid "Community Profiles" msgstr "" -#: view/theme/vier/config.php:140 +#: view/theme/vier/config.php:128 msgid "Help or @NewHere ?" msgstr "" -#: view/theme/vier/config.php:141 view/theme/vier/theme.php:319 +#: view/theme/vier/config.php:129 view/theme/vier/theme.php:307 msgid "Connect Services" msgstr "" -#: view/theme/vier/config.php:142 +#: view/theme/vier/config.php:130 msgid "Find Friends" msgstr "" -#: view/theme/vier/config.php:143 view/theme/vier/theme.php:175 +#: view/theme/vier/config.php:131 view/theme/vier/theme.php:163 msgid "Last users" msgstr "" -#: view/theme/vier/theme.php:234 +#: view/theme/vier/theme.php:222 msgid "Quick Start" msgstr "Grad-tòiseachadh" diff --git a/view/lang/gd/strings.php b/view/lang/gd/strings.php index 529c9795f5..71d9a4c6d2 100644 --- a/view/lang/gd/strings.php +++ b/view/lang/gd/strings.php @@ -832,7 +832,6 @@ $a->strings['An author or name was not found.'] = 'Cha deach an t-ùghdar no ain $a->strings['No browser URL could be matched to this address.'] = 'Cha b’ urrainn dhuinn URL a’ bhrabhsair a mhaidseadh ris an t-seòladh seo.'; $a->strings['Unable to match @-style Identity Address with a known protocol or email contact.'] = 'Tha b’ urrainn dhuinn an seòladh-aithne san stoidhle @ a mhaidseadh le pròtacal as aithne dhuinn no neach-aithne puist-d.'; $a->strings['Use mailto: in front of address to force email check.'] = 'Cleachd mailto: ron t-seòladh airson sgrùdadh nam post-d a sparradh.'; -$a->strings['The profile address specified belongs to a network which has been disabled on this site.'] = 'Tha seòladh na pròifil a shònraich thu a’ buntainn ri lìonra a chaidh a chur à comas air an làrach seo.'; $a->strings['Limited profile. This person will be unable to receive direct/personal notifications from you.'] = 'Pròifil chuingichte. Chan fhaigh an neach seo brathan dìreach/pearsanta uat.'; $a->strings['Unable to retrieve contact information.'] = 'Cha d’ fhuair sinn grèim air fiosrachadh an neach-aithne.'; $a->strings['l F d, Y \@ g:i A \G\M\TP (e)'] = 'l, d F Y \@ g:i a \G\M\TP (e)'; @@ -858,7 +857,6 @@ $a->strings['Show map'] = 'Seall am mapa'; $a->strings['Hide map'] = 'Falaich am mapa'; $a->strings['%s\'s birthday'] = 'Cò-là breith aig %s'; $a->strings['Happy Birthday %s'] = 'Co-là breith sona dhut, %s'; -$a->strings['Detected languages in this post:\n%s'] = 'Na cànanan dhan a mhothaich sinn sa phost seo:\n%s'; $a->strings['activity'] = 'gnìomhachd'; $a->strings['comment'] = 'beachd'; $a->strings['post'] = 'post'; @@ -1247,8 +1245,6 @@ $a->strings['Posts per user on community page'] = 'Postaichean gach cleachdaiche $a->strings['Enable Mail support'] = 'Cuir taic ri post-d an comas'; $a->strings['Enable built-in mail support to poll IMAP folders and to reply via mail.'] = 'Cuir an comas an taic ri post-d a thig ’na bhroinn airson pasganan IMAP a cheasnachadh agus freagairt le post-d.'; $a->strings['Mail support can\'t be enabled because the PHP IMAP module is not installed.'] = 'Chan urrainn dhuinn an taic ri post-d a chur an comas air sgàth ’s nach deach am mòideal IMAP aig PHP a stàladh.'; -$a->strings['Enable OStatus support'] = 'Cuir an taic ri OStatus an comas'; -$a->strings['Enable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public.'] = 'Cuir an comas a’ cho-chòrdalachd ri OStatus (StatusNet, GNU Social is msaa.) a thig ’na bhroinn. Bidh gach conaltradh slighe OStatus poblach.'; $a->strings['Diaspora support can\'t be enabled because Friendica was installed into a sub directory.'] = 'Chan urrainn dhuinn an taic ri diaspora* a chur an comas on a chaidh Friendica a stàladh ann am fo-phasgan.'; $a->strings['Enable Diaspora support'] = 'Cuir taic ri diaspora* an comas'; $a->strings['Enable built-in Diaspora network compatibility for communicating with diaspora servers.'] = 'Cuir an comas a’ cho-chòrdalachd lìonraidh le diaspora* a thig ’na bhroinn airson conaltradh le frithealaichean diaspora*.'; @@ -1290,7 +1286,6 @@ $a->strings['When the database cleanup is enabled, this defines the days after w $a->strings['Lifespan of unclaimed items'] = 'Faid-bheatha nan nithean gun tagairt'; $a->strings['When the database cleanup is enabled, this defines the days after which unclaimed remote items (mostly content from the relay) will be deleted. Default value is 90 days. Defaults to the general lifespan value of remote items if set to 0.'] = 'Nuair a bhios sgioblachadh an stòir-dhàta an comas, mìnichidh seo na làithean mus dèid nithean gun tagairt (seo susbaint on ath-sheachadan mar as trice) a sguabadh às. ’S e 90 latha a tha sa bhun-roghainn. Ma shuidhicheas tu seo air 0, thèid luach faid-bheatha nan nithean cèine a chleachdadh mar bhun-roghainn.'; $a->strings['Lifespan of raw conversation data'] = 'Faid-bheatha dàta amh nan còmhraidhean'; -$a->strings['The conversation data is used for ActivityPub and OStatus, as well as for debug purposes. It should be safe to remove it after 14 days, default is 90 days.'] = 'Tha dàta nan còmhraidhean ’ga chleachdadh airson ActivityPub is OStatus agus a chùm dì-bhugachaidh. Bu chòir dha a bhith sàbhailte ma sguabas tu às às dèidh cola-deug. ’S e 90 latha a tha sa bhun-roghainn.'; $a->strings['Maximum numbers of comments per post'] = 'An àireamh as motha de bheachdan ri post'; $a->strings['How much comments should be shown for each post? Default value is 100.'] = 'Co mheud beachd a thèid a shealltainn do gach post? ’S e 100 a tha sa bhun-roghainn.'; $a->strings['Maximum numbers of comments per post on the display page'] = 'An àireamh as motha de bheachdan ri post air duilleag na sealltainn'; @@ -1581,7 +1576,6 @@ $a->strings['Submit Request'] = 'Cuir an t-iarrtas a-null'; $a->strings['You already added this contact.'] = 'Chuir thu an neach-aithne seo ris mu thràth.'; $a->strings['The network type couldn\'t be detected. Contact can\'t be added.'] = 'Cha do mhothaich sinn do sheòrsa an lìonraidh. Cha b’ urrainn dhuinn an neach-aithne a chur ris.'; $a->strings['Diaspora support isn\'t enabled. Contact can\'t be added.'] = 'Chan eil taic ri diaspora* an comas. Cha b’ urrainn dhuinn an neach-aithne a chur ris.'; -$a->strings['OStatus support is disabled. Contact can\'t be added.'] = 'Chan eil taic ri OStatus an comas. Cha b’ urrainn dhuinn an neach-aithne a chur ris.'; $a->strings['Please answer the following:'] = 'Freagair seo:'; $a->strings['Your Identity Address:'] = 'Seòladh do dhearbh-aithne:'; $a->strings['Profile URL'] = 'URL na pròifile'; @@ -2116,10 +2110,6 @@ $a->strings['Incomplete request data'] = 'Dàta iarrtais neo-choileanta'; $a->strings['Please copy the following authentication code into your application and close this window: %s'] = 'Cuir lethbhreac dhen chòd dearbhaidh seo san aplacaid agad is dùin an uinneag seo: %s'; $a->strings['Invalid data or unknown client'] = 'Dàta mì-dhligheach no cliant nach aithne dhuinn'; $a->strings['Unsupported or missing grant type'] = 'Seòrsa ceadachaidh gun taic ris no a dhìth'; -$a->strings['Resubscribing to OStatus contacts'] = 'A’ fo-sgrìobhadh a-rithist air luchd-aithne OStatus'; -$a->strings['Keep this window open until done.'] = 'Cùm an uinneag seo fosgailte gus am bi e deiseil.'; -$a->strings['✔ Done'] = '✔ Deiseil'; -$a->strings['No OStatus contacts to resubscribe to.'] = 'Chan eil neach-aithne OStatus ann airson fo-sgrìobhadh air a-rithist.'; $a->strings['Subscribing to contacts'] = 'Fo-sgrìobhadh air luchd-aithne'; $a->strings['No contact provided.'] = 'Cha deach neach-aithne a thoirt seachad.'; $a->strings['Couldn\'t fetch information for contact.'] = 'Cha d’ fhuair sinn grèim air an fhiosrachadh conaltraidh.'; @@ -2131,6 +2121,7 @@ $a->strings['Done'] = 'Deiseil'; $a->strings['success'] = 'chaidh leis'; $a->strings['failed'] = 'dh’fhàillig leis'; $a->strings['ignored'] = 'chaidh a leigeil seachad'; +$a->strings['Keep this window open until done.'] = 'Cùm an uinneag seo fosgailte gus am bi e deiseil.'; $a->strings['The Photo is not available.'] = 'Chan eil an dealbh ri fhaighinn.'; $a->strings['The Photo with id %s is not available.'] = 'Chan eil an dealbh air a bheil an id %s ri fhaighinn.'; $a->strings['Invalid external resource with url %s.'] = 'Goireas mì-dhligheach air an taobh a-muigh leis an url %s.'; @@ -2154,9 +2145,9 @@ $a->strings['Collection (%s)'] = 'Cruinneachadh (%s)'; $a->strings['Followers (%s)'] = 'Luchd-leantainn (%s)'; $a->strings['%d more'] = '%d eile'; $a->strings['No contacts.'] = 'Chan eil neach-aithne ann.'; -$a->strings['%s\'s timeline'] = 'An loidhne-ama aig %s'; $a->strings['%s\'s posts'] = 'Na postaichean aig %s'; $a->strings['%s\'s comments'] = 'Na beachdan aig %s'; +$a->strings['%s\'s timeline'] = 'An loidhne-ama aig %s'; $a->strings['Image exceeds size limit of %s'] = 'Tha an dealbh nas motha na tha ceadaichte dhe %s'; $a->strings['Image upload didn\'t complete, please try again'] = 'Cha deach luchdadh suas an deilbh a choileanadh, feuch ris a-rithist'; $a->strings['Image file is missing'] = 'Tha faidhle an deilbh a dhìth'; @@ -2207,7 +2198,6 @@ $a->strings['Addon Settings'] = 'Roghainnean nan tuilleadan'; $a->strings['No Addon settings configured'] = 'Cha deach roghainnean tuilleadain a rèiteachadh'; $a->strings['Failed to connect with email account using the settings provided.'] = 'Cha deach leinn ceangal a dhèanamh leis a’ chunntas puist-d a’ cleachdadh nan roghainnean a chaidh a thoirt seachad.'; $a->strings['Diaspora (Socialhome, Hubzilla)'] = 'Diaspora* (Socialhome, Hubzilla)'; -$a->strings['OStatus (GNU Social)'] = 'OStatus (GNU Social)'; $a->strings['Email access is disabled on this site.'] = 'Tha an t-inntrigeadh le post-d à comas dhan làrach seo.'; $a->strings['None'] = 'Chan eil gin'; $a->strings['General Social Media Settings'] = 'Roghainnean coitcheann nam meadhanan sòisealta'; @@ -2225,7 +2215,6 @@ $a->strings['When activated, the title of the attached link will be added as a t $a->strings['When activated, added links at the end of the post react the same way as added links in the web interface.'] = 'Nuair a bhios seo an gnìomh, bidh an t-aon ghiùlan aig ceanglaichean a thèid a chur ri bonn puist ’s a tha aig ceanglaichean a thèid a chur ris san eadar-aghaidh-lìn.'; $a->strings['Your legacy ActivityPub/GNU Social account'] = 'An cunntas ActivityPub/GNU Social dìleabach agad'; $a->strings['If you enter your old account name from an ActivityPub based system or your GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done.'] = 'Ma chuireas tu ainm seann-chunntais ris o shiostam stèidhichte air ActivityPub no ainm do chunntais GNU Social/Statusnet an-seo (san fhòrmat cleachdaiche@àrainn.tld), thèid an luchd-aithne agad a chur ris gu fèin-obrachail. Thèid an raon fhalamhachadh nuair a bhios sin deiseil.'; -$a->strings['Repair OStatus subscriptions'] = 'Càraich fo-sgrìobhaidhean OStatus'; $a->strings['Email/Mailbox Setup'] = 'Suidheachadh a’ phuist-d/a’ bhogsa-phuist'; $a->strings['If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox.'] = 'Ma tha thu airson an t-seirbheis seo a chleachdadh airson conaltradh le luchd-aithne air a’ post-d (gu roghainneil), sònraich an dòigh air a nì thu ceangal leis a’ bhogsa-phuist agad.'; $a->strings['Last successful email check:'] = 'An turas mu dheireadh a chaidh leinn sùil a thoirt air a’ phost-d:'; @@ -2392,8 +2381,6 @@ $a->strings['Maybe attended by: %s'] = 'An làthair ’s dòcha: %s'; $a->strings['Not attended by: %s'] = 'Gun a bhith an làthair: %s'; $a->strings['Reacted with %s by: %s'] = 'Chaidh freagairt le %s le: %s'; $a->strings['(no subject)'] = '(gun chuspair)'; -$a->strings['%s is now following %s.'] = 'Tha %s a’ leantainn %s a-nis.'; -$a->strings['%s stopped following %s.'] = 'Chan eil %s a’ leantainn %s tuilleadh.'; $a->strings['The folder %s must be writable by webserver.'] = 'Ceumaidh cead sgrìobhaidh dhan phasgan %s a bhith aig an fhrithealaiche-lìn.'; $a->strings['Login failed.'] = 'Dh’fhàillig leis a’ chlàradh a-steach.'; $a->strings['Login failed. Please check your credentials.'] = 'Dh’fhàillig leis a’ chlàradh a-steach. Thoir sùil air an teisteas agad.'; diff --git a/view/lang/hu/messages.po b/view/lang/hu/messages.po index 95e92eaf3d..dfdb8959d2 100644 --- a/view/lang/hu/messages.po +++ b/view/lang/hu/messages.po @@ -1,8 +1,7 @@ # FRIENDICA Distributed Social Network -# SPDX-FileCopyrightText: Copyright (C) 2010-2024, the Friendica project -# -# SPDX-License-Identifier: AGPL-3.0-or-later -# +# Copyright (C) 2010-2024, the Friendica project +# This file is distributed under the same license as the Friendica package. +# # Translators: # Balázs Meskóupload_max_filesize
is set to %s (%s byte)"
msgstr "A feltöltött képek legnagyobb mérete bájtban. Alapértelmezetten 0, ami azt jelenti, hogy nincs korlátozás. A kívánt érték mögé k, m vagy g értékeket is írhat a KiB, MiB, GiB értékhez, ebben a sorrendben.\n\t\t\t\t\t\t\t\t\t\t\t\t\tA PHP.ini
fájlban lévő upload_max_filesize
értékét be kell állítani legalább a kívánt korlátra.\n\t\t\t\t\t\t\t\t\t\t\t\t\tJelenleg az upload_max_filesize
%s (%s bájt) értékre van állítva."
-#: src/Module/Admin/Site.php:499
+#: src/Module/Admin/Site.php:489
msgid "Maximum image length"
msgstr "Legnagyobb képhossz"
-#: src/Module/Admin/Site.php:499
+#: src/Module/Admin/Site.php:489
msgid ""
"Maximum length in pixels of the longest side of uploaded images. Default is "
"-1, which means no limits."
msgstr "A feltöltött képek leghosszabb oldalának legnagyobb hossza képpontban. Alapértelmezetten -1, ami azt jelenti, hogy nincs korlát."
-#: src/Module/Admin/Site.php:500
+#: src/Module/Admin/Site.php:490
msgid "JPEG image quality"
msgstr "JPEG-képek minősége"
-#: src/Module/Admin/Site.php:500
+#: src/Module/Admin/Site.php:490
msgid ""
"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
"100, which is full quality."
msgstr "A feltöltött JPEG-képek ezzel a minőségbeállítással lesznek elmentve [0-100]. Alapértelmezetten 100, ami teljes minőséget jelent."
-#: src/Module/Admin/Site.php:502
+#: src/Module/Admin/Site.php:491
+msgid "Maximum media file size"
+msgstr ""
+
+#: src/Module/Admin/Site.php:491
+#, php-format
+msgid ""
+"Maximum size in bytes of uploaded media files. Default is 0, which means no limits. You can put k, m, or g behind the desired value for KiB, MiB, GiB, respectively.\n"
+"\t\t\t\t\t\t\t\t\t\t\t\t\tThe value of upload_max_filesize
in your PHP.ini
needs be set to at least the desired limit.\n"
+"\t\t\t\t\t\t\t\t\t\t\t\t\tCurrently upload_max_filesize
is set to %s (%s byte)"
+msgstr ""
+
+#: src/Module/Admin/Site.php:496
msgid "Register policy"
msgstr "Regisztrációs irányelv"
-#: src/Module/Admin/Site.php:503
+#: src/Module/Admin/Site.php:497
msgid "Maximum Users"
msgstr "Legtöbb felhasználó"
-#: src/Module/Admin/Site.php:503
+#: src/Module/Admin/Site.php:497
msgid ""
"If defined, the register policy is automatically closed when the given "
"number of users is reached and reopens the registry when the number drops "
@@ -4738,167 +4748,167 @@ msgid ""
"not when the policy is set to approval."
msgstr "Ha meg van adva, akkor a regisztrációs házirend automatikusan lezárja a regisztrációt a megadott számú felhasználó elérésekor, és újra megnyitja a regisztrációt, ha a felhasználók száma a határérték alá csökken. Ez csak akkor működik, ha a házirend nyitottra vagy zártra van beállítva, de nem működik, ha a házirend jóváhagyásra van beállítva."
-#: src/Module/Admin/Site.php:504
+#: src/Module/Admin/Site.php:498
msgid "Maximum Daily Registrations"
msgstr "Legtöbb napi regisztráció"
-#: src/Module/Admin/Site.php:504
+#: src/Module/Admin/Site.php:498
msgid ""
"If registration is permitted above, this sets the maximum number of new user"
" registrations to accept per day. If register is set to closed, this "
"setting has no effect."
msgstr "Ha a regisztrációk megengedettek fent, akkor ez állítja be a naponta elfogadandó új felhasználói regisztrációk legnagyobb számát. Ha a regisztráció lezártra van állítva, akkor ennek a beállításnak nincs hatása."
-#: src/Module/Admin/Site.php:505
+#: src/Module/Admin/Site.php:499
msgid "Register text"
msgstr "Regisztrációs szöveg"
-#: src/Module/Admin/Site.php:505
+#: src/Module/Admin/Site.php:499
msgid ""
"Will be displayed prominently on the registration page. You can use BBCode "
"here."
msgstr "Szembetűnően lesz megjelenítve a regisztrációs oldalon. BBCode formázást is használhat itt."
-#: src/Module/Admin/Site.php:506
+#: src/Module/Admin/Site.php:500
msgid "Forbidden Nicknames"
msgstr "Tiltott becenevek"
-#: src/Module/Admin/Site.php:506
+#: src/Module/Admin/Site.php:500
msgid ""
"Comma separated list of nicknames that are forbidden from registration. "
"Preset is a list of role names according RFC 2142."
msgstr "A becenevek vesszővel elválasztott listája, amelyek tiltottak a regisztrációnál. Az előbeállítás az RFC 2142 szerinti szerepnevek listája."
-#: src/Module/Admin/Site.php:507
+#: src/Module/Admin/Site.php:501
msgid "Accounts abandoned after x days"
msgstr "Fiókok elhagyottak X nap után"
-#: src/Module/Admin/Site.php:507
+#: src/Module/Admin/Site.php:501
msgid ""
"Will not waste system resources polling external sites for abandonded "
"accounts. Enter 0 for no time limit."
msgstr "Nem fogja pazarolni a rendszer erőforrásait a külső oldalak lekérdezésével az elhagyott fiókoknál. Adjon meg 0 értéket, hogy ne legyen időkorlát."
-#: src/Module/Admin/Site.php:508
+#: src/Module/Admin/Site.php:502
msgid "Allowed friend domains"
msgstr "Engedélyezett ismerőstartományok"
-#: src/Module/Admin/Site.php:508
+#: src/Module/Admin/Site.php:502
msgid ""
"Comma separated list of domains which are allowed to establish friendships "
"with this site. Wildcards are accepted. Empty to allow any domains"
msgstr "Azon tartományok vesszővel elválasztott listája, amelyeknek engedélyezett ismeretséget létesíteni ezzel az oldallal. A helyettesítő karakterek is elfogadottak. Ha üresen marad, akkor bármely tartomány megengedett."
-#: src/Module/Admin/Site.php:509
+#: src/Module/Admin/Site.php:503
msgid "Allowed email domains"
msgstr "Engedélyezett e-mail-tartományok"
-#: src/Module/Admin/Site.php:509
+#: src/Module/Admin/Site.php:503
msgid ""
"Comma separated list of domains which are allowed in email addresses for "
"registrations to this site. Wildcards are accepted. Empty to allow any "
"domains"
msgstr "Azon tartományok vesszővel elválasztott listája, amelyek engedélyezettek az e-mail-címekben az oldalra történő regisztrációkhoz. A helyettesítő karakterek is elfogadottak. Ha üresen marad, akkor bármely tartomány megengedett."
-#: src/Module/Admin/Site.php:510
+#: src/Module/Admin/Site.php:504
msgid "Disallowed email domains"
msgstr "Nem engedélyezett e-mail-tartományok"
-#: src/Module/Admin/Site.php:510
+#: src/Module/Admin/Site.php:504
msgid ""
"Comma separated list of domains which are rejected as email addresses for "
"registrations to this site. Wildcards are accepted."
msgstr "Azon tartományok vesszővel elválasztott listája, amelyek visszautasítottak az e-mail-címekben az oldalra történő regisztrációkhoz. A helyettesítő karakterek is elfogadottak."
-#: src/Module/Admin/Site.php:511
+#: src/Module/Admin/Site.php:505
msgid "No OEmbed rich content"
msgstr "Nincs OEmbed gazdag tartalom"
-#: src/Module/Admin/Site.php:511
+#: src/Module/Admin/Site.php:505
msgid ""
"Don't show the rich content (e.g. embedded PDF), except from the domains "
"listed below."
msgstr "Ne jelenítse meg a gazdag tartalmat (például beágyazott PDF), kivéve az alább felsorolt tartományokról."
-#: src/Module/Admin/Site.php:512
+#: src/Module/Admin/Site.php:506
msgid "Trusted third-party domains"
msgstr "Megbízható harmadik fél tartományok"
-#: src/Module/Admin/Site.php:512
+#: src/Module/Admin/Site.php:506
msgid ""
"Comma separated list of domains from which content is allowed to be embedded"
" in posts like with OEmbed. All sub-domains of the listed domains are "
"allowed as well."
msgstr "Tartományok vesszővel elválasztott listája, amelyekről engedélyezett a tartalom bejegyzésekben való beágyazása, mint például az OEmbed használatával. A felsorolt tartományok összes altartománya is engedélyezve van."
-#: src/Module/Admin/Site.php:513
+#: src/Module/Admin/Site.php:507
msgid "Block public"
msgstr "Nyilvános tiltása"
-#: src/Module/Admin/Site.php:513
+#: src/Module/Admin/Site.php:507
msgid ""
"Check to block public access to all otherwise public personal pages on this "
"site unless you are currently logged in."
msgstr "Jelölje be az ezen az oldalon lévő összes, egyébként nyilvános személyes oldal nyilvános hozzáférésének tiltásához, hacsak jelenleg nincs bejelentkezve."
-#: src/Module/Admin/Site.php:514
+#: src/Module/Admin/Site.php:508
msgid "Force publish"
msgstr "Közzététel kényszerítése"
-#: src/Module/Admin/Site.php:514
+#: src/Module/Admin/Site.php:508
msgid ""
"Check to force all profiles on this site to be listed in the site directory."
msgstr "Jelölje be, hogy ezen az oldalon az összes profil kényszerítetten fel legyen sorolva az oldal könyvtárában."
-#: src/Module/Admin/Site.php:514
+#: src/Module/Admin/Site.php:508
msgid "Enabling this may violate privacy laws like the GDPR"
msgstr "Ennek engedélyezése megsértheti az adatvédelmi rendeleteket, mint például a GDPR-t."
-#: src/Module/Admin/Site.php:515
+#: src/Module/Admin/Site.php:509
msgid "Global directory URL"
msgstr "Globális könyvtár URL"
-#: src/Module/Admin/Site.php:515
+#: src/Module/Admin/Site.php:509
msgid ""
"URL to the global directory. If this is not set, the global directory is "
"completely unavailable to the application."
msgstr "Az URL a globális könyvtárhoz. Ha ez nincs beállítva, akkor a globális könyvtár teljesen elérhetetlen lesz az alkalmazásoknak."
-#: src/Module/Admin/Site.php:516
+#: src/Module/Admin/Site.php:510
msgid "Private posts by default for new users"
msgstr "Alapértelmezetten személyes bejegyzések az új felhasználóknál"
-#: src/Module/Admin/Site.php:516
+#: src/Module/Admin/Site.php:510
msgid ""
"Set default post permissions for all new members to the default privacy "
"circle rather than public."
msgstr "Az összes új tag alapértelmezett bejegyzés-jogosultságainak beállítása az alapértelmezett adatvédelmi körre a nyilvános helyett."
-#: src/Module/Admin/Site.php:517
+#: src/Module/Admin/Site.php:511
msgid "Don't include post content in email notifications"
msgstr "Ne ágyazza be a bejegyzés tartalmát az e-mailes értesítésekbe"
-#: src/Module/Admin/Site.php:517
+#: src/Module/Admin/Site.php:511
msgid ""
"Don't include the content of a post/comment/private message/etc. in the "
"email notifications that are sent out from this site, as a privacy measure."
msgstr "Adatvédelmi intézkedésként ne ágyazza be egy bejegyzés, hozzászólás, személyes üzenet stb. tartalmát azokba az e-mailes értesítésekbe, amelyek erről az oldalról kerülnek kiküldésre."
-#: src/Module/Admin/Site.php:518
+#: src/Module/Admin/Site.php:512
msgid "Disallow public access to addons listed in the apps menu."
msgstr "Nyilvános hozzáférés letiltása az alkalmazások menüben felsorolt bővítményekhez"
-#: src/Module/Admin/Site.php:518
+#: src/Module/Admin/Site.php:512
msgid ""
"Checking this box will restrict addons listed in the apps menu to members "
"only."
msgstr "A jelölőnégyzet bejelölésével csak a tagok számára fogja korlátozni az alkalmazások menüben felsorolt bővítményeket."
-#: src/Module/Admin/Site.php:519
+#: src/Module/Admin/Site.php:513
msgid "Don't embed private images in posts"
msgstr "Ne ágyazzon be személyes képeket a bejegyzésekbe"
-#: src/Module/Admin/Site.php:519
+#: src/Module/Admin/Site.php:513
msgid ""
"Don't replace locally-hosted private photos in posts with an embedded copy "
"of the image. This means that contacts who receive posts containing private "
@@ -4906,11 +4916,11 @@ msgid ""
"while."
msgstr "Ne cserélje ki a bejegyzésekben lévő helyileg kiszolgált személyes fényképeket a kép beágyazott másolatával. Ez azt jelenti, hogy a személyes fényképeket tartalmazó bejegyzéseket fogadó partnereknek hitelesíteniük kell magukat és be kell tölteniük minden egyes képet, ami eltarthat egy ideig."
-#: src/Module/Admin/Site.php:520
+#: src/Module/Admin/Site.php:514
msgid "Explicit Content"
msgstr "Felnőtteknek szánt tartalom"
-#: src/Module/Admin/Site.php:520
+#: src/Module/Admin/Site.php:514
msgid ""
"Set this to announce that your node is used mostly for explicit content that"
" might not be suited for minors. This information will be published in the "
@@ -4919,329 +4929,319 @@ msgid ""
"will be shown at the user registration page."
msgstr "Állítsa be ezt annak közléséhez, hogy a csomópontját főként felnőtteknek szóló tartalomhoz használják, ami lehet, hogy nem alkalmas kiskorúak számára. Ez az információ közzé lesz téve a csomópont információiban, és használhatja például a globális könyvtár is, hogy kiszűrje a csomópontját a csatlakozáshoz felajánlott csomópontok listájából. Ezenkívül egy megjegyzés is meg lesz jelenítve ezzel kapcsolatban a felhasználó regisztrációs oldalán."
-#: src/Module/Admin/Site.php:521
+#: src/Module/Admin/Site.php:515
msgid "Only local search"
msgstr "Csak helyi keresés"
-#: src/Module/Admin/Site.php:521
+#: src/Module/Admin/Site.php:515
msgid ""
"Blocks search for users who are not logged in to prevent crawlers from "
"blocking your system."
msgstr "Letiltja a keresést a nem bejelentkezett felhasználók számára, így megakadályozza a keresőmotoroknak, hogy letiltsák a rendszerét."
-#: src/Module/Admin/Site.php:522
+#: src/Module/Admin/Site.php:516
msgid "Blocked tags for trending tags"
msgstr "Letiltott címkék a népszerű címkéknél"
-#: src/Module/Admin/Site.php:522
+#: src/Module/Admin/Site.php:516
msgid ""
"Comma separated list of hashtags that shouldn't be displayed in the trending"
" tags."
msgstr "Kettős keresztes címkék vesszővel elválasztott listája, amelyeket nem szabad megjeleníteni a népszerű címkékben."
-#: src/Module/Admin/Site.php:523
+#: src/Module/Admin/Site.php:517
msgid "Cache contact avatars"
msgstr "Partnerprofilképek gyorsítótárazása"
-#: src/Module/Admin/Site.php:523
+#: src/Module/Admin/Site.php:517
msgid ""
"Locally store the avatar pictures of the contacts. This uses a lot of "
"storage space but it increases the performance."
msgstr "A partnerek profilképeinek helyi tárolása. Ez nagyon sok tárhelyet használ, de növeli a teljesítményt."
-#: src/Module/Admin/Site.php:524
+#: src/Module/Admin/Site.php:518
msgid "Allow Users to set remote_self"
msgstr "Távoli önmaguk beállításának engedélyezése a felhasználóknak"
-#: src/Module/Admin/Site.php:524
+#: src/Module/Admin/Site.php:518
msgid ""
"With checking this, every user is allowed to mark every contact as a "
"remote_self in the repair contact dialog. Setting this flag on a contact "
"causes mirroring every posting of that contact in the users stream."
msgstr "Ennek bejelölésével minden egyes felhasználó számára engedélyezett, hogy az egyes partnereket távoli önmagukként jelöljék meg a partner javítása párbeszédablakban. Ezen jelző beállítása egy partnernél a tartalom minden egyes beküldésének tükrözését okozza a felhasználók adatfolyamában."
-#: src/Module/Admin/Site.php:525
+#: src/Module/Admin/Site.php:519
msgid "Allow Users to set up relay channels"
msgstr "Továbbító csatornák beállításának engedélyezése a felhasználóknak"
-#: src/Module/Admin/Site.php:525
+#: src/Module/Admin/Site.php:519
msgid ""
"If enabled, it is possible to create relay users that are used to reshare "
"content based on user defined channels."
msgstr "Ha engedélyezve van, akkor lehetőség van olyan továbbító felhasználók létrehozására, akik a felhasználó által meghatározott csatornákon alapuló tartalmak újbóli megosztására használhatók."
-#: src/Module/Admin/Site.php:526
+#: src/Module/Admin/Site.php:520
msgid "Adjust the feed poll frequency"
msgstr "A hírforrás lekérdezési gyakoriságának beállítása"
-#: src/Module/Admin/Site.php:526
+#: src/Module/Admin/Site.php:520
msgid "Automatically detect and set the best feed poll frequency."
msgstr "A legjobb hírforrás-lekérdezési gyakoriság automatikus felismerése és beállítása."
-#: src/Module/Admin/Site.php:527
+#: src/Module/Admin/Site.php:521
msgid "Minimum poll interval"
msgstr "Legkisebb lekérdezési időköz"
-#: src/Module/Admin/Site.php:527
+#: src/Module/Admin/Site.php:521
msgid ""
"Minimal distance in minutes between two polls for mail and feed contacts. "
"Reasonable values are between 1 and 59."
msgstr "Két lekérdezés közötti legkisebb időbeli távolság percben a levél- és hírforráspartnereknél. Az észszerű értékek 1 és 59 között vannak."
-#: src/Module/Admin/Site.php:528
+#: src/Module/Admin/Site.php:522
msgid "Enable multiple registrations"
msgstr "Többszörös regisztrációk engedélyezése"
-#: src/Module/Admin/Site.php:528
+#: src/Module/Admin/Site.php:522
msgid "Enable users to register additional accounts for use as pages."
msgstr "Lehetővé teszi a felhasználóknak, hogy további fiókokat regisztráljanak oldalakként történő használathoz."
-#: src/Module/Admin/Site.php:529
+#: src/Module/Admin/Site.php:523
msgid "Enable OpenID"
msgstr "OpenID engedélyezése"
-#: src/Module/Admin/Site.php:529
+#: src/Module/Admin/Site.php:523
msgid "Enable OpenID support for registration and logins."
msgstr "Az OpenID támogatás engedélyezése a regisztrációnál és a bejelentkezéseknél."
-#: src/Module/Admin/Site.php:530
+#: src/Module/Admin/Site.php:524
msgid "Enable full name check"
msgstr "Teljes név ellenőrzésének engedélyezése"
-#: src/Module/Admin/Site.php:530
+#: src/Module/Admin/Site.php:524
msgid ""
"Prevents users from registering with a display name with fewer than two "
"parts separated by spaces."
msgstr "Megakadályozza a felhasználókat abban, hogy olyan megjelenített névvel regisztráljanak, amelyben kevesebb mint két, szóközzel elválasztott rész van."
-#: src/Module/Admin/Site.php:531
+#: src/Module/Admin/Site.php:525
msgid "Email administrators on new registration"
msgstr "E-mail küldése az adminisztrátoroknak új regisztrációkor"
-#: src/Module/Admin/Site.php:531
+#: src/Module/Admin/Site.php:525
msgid ""
"If enabled and the system is set to an open registration, an email for each "
"new registration is sent to the administrators."
msgstr "Ha engedélyezve van, és a rendszer nyitott regisztrációhoz van beállítva, akkor minden új regisztrációról e-mail lesz küldve az adminisztrátoroknak."
-#: src/Module/Admin/Site.php:532
+#: src/Module/Admin/Site.php:526
msgid "Community pages for visitors"
msgstr "Közösségi oldalak a látogatók számára"
-#: src/Module/Admin/Site.php:532
+#: src/Module/Admin/Site.php:526
msgid ""
"Which community pages should be available for visitors. Local users always "
"see both pages."
msgstr "Mely közösségi oldalaknak kell elérhetőnek lenniük a látogatók számára. A helyi felhasználók mindig mindkét oldalt látják."
-#: src/Module/Admin/Site.php:533
+#: src/Module/Admin/Site.php:527
msgid "Posts per user on community page"
msgstr "Felhasználónkénti bejegyzések a közösségi oldalon"
-#: src/Module/Admin/Site.php:533
+#: src/Module/Admin/Site.php:527
msgid ""
"The maximum number of posts per user on the local community page. This is "
"useful, when a single user floods the local community page."
msgstr "A felhasználónkénti bejegyzések legnagyobb száma a helyi közösségi oldalon. Ez akkor hasznos, ha egy bizonyos felhasználó elárasztja a helyi közösségi oldalt."
-#: src/Module/Admin/Site.php:534
+#: src/Module/Admin/Site.php:528
msgid "Posts per server on community page"
msgstr "Kiszolgálónkénti bejegyzések a közösségi oldalon"
-#: src/Module/Admin/Site.php:534
+#: src/Module/Admin/Site.php:528
msgid ""
"The maximum number of posts per server on the global community page. This is"
" useful, when posts from a single server flood the global community page."
msgstr "A kiszolgálónkénti bejegyzések legnagyobb száma a globális közösségi oldalon. Ez akkor hasznos, ha egy bizonyos kiszolgálótól származó bejegyzések elárasztják a globális közösségi oldalt."
-#: src/Module/Admin/Site.php:536
+#: src/Module/Admin/Site.php:530
msgid "Enable Mail support"
msgstr "Levelezési támogatás engedélyezése"
-#: src/Module/Admin/Site.php:536
+#: src/Module/Admin/Site.php:530
msgid ""
"Enable built-in mail support to poll IMAP folders and to reply via mail."
msgstr "A beépített levelezési támogatás engedélyezése az IMAP-mappák lekérdezéséhez és az e-mailben történő válaszhoz."
-#: src/Module/Admin/Site.php:537
+#: src/Module/Admin/Site.php:531
msgid ""
"Mail support can't be enabled because the PHP IMAP module is not installed."
msgstr "A levelezési támogatást nem lehet engedélyezni, mert a PHP IMAP-modulja nincs telepítve."
-#: src/Module/Admin/Site.php:538
-msgid "Enable OStatus support"
-msgstr "OStatus támogatás engedélyezése"
-
-#: src/Module/Admin/Site.php:538
-msgid ""
-"Enable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
-"communications in OStatus are public."
-msgstr "A beépített OStatus (StatusNet, GNU Social stb.) kompatibilitás engedélyezése. Az OStatus hálózaton lévő összes kommunikáció nyilvános."
-
-#: src/Module/Admin/Site.php:540
+#: src/Module/Admin/Site.php:533
msgid ""
"Diaspora support can't be enabled because Friendica was installed into a sub"
" directory."
msgstr "A Diaspora támogatást nem lehet engedélyezni, mert a Friendica egy alkönyvtárba lett telepítve."
-#: src/Module/Admin/Site.php:541
+#: src/Module/Admin/Site.php:534
msgid "Enable Diaspora support"
msgstr "Diaspora támogatás engedélyezése"
-#: src/Module/Admin/Site.php:541
+#: src/Module/Admin/Site.php:534
msgid ""
"Enable built-in Diaspora network compatibility for communicating with "
"diaspora servers."
msgstr "A beépített Diaspora hálózati kompatibilitás engedélyezése a Diaspora kiszolgálókkal való kommunikációhoz."
-#: src/Module/Admin/Site.php:542
+#: src/Module/Admin/Site.php:535
msgid "Verify SSL"
msgstr "SSL ellenőrzése"
-#: src/Module/Admin/Site.php:542
+#: src/Module/Admin/Site.php:535
msgid ""
"If you wish, you can turn on strict certificate checking. This will mean you"
" cannot connect (at all) to self-signed SSL sites."
msgstr "Ha szeretné, bekapcsolhatja a szigorú tanúsítvány-ellenőrzést. Ezt azt jelenti, hogy nem tud kapcsolódni (egyáltalán) az önaláírt SSL-t használó oldalakhoz."
-#: src/Module/Admin/Site.php:543
+#: src/Module/Admin/Site.php:536
msgid "Proxy user"
msgstr "Proxy felhasználó"
-#: src/Module/Admin/Site.php:543
+#: src/Module/Admin/Site.php:536
msgid "User name for the proxy server."
msgstr "Felhasználónév a proxy-kiszolgálóhoz."
-#: src/Module/Admin/Site.php:544
+#: src/Module/Admin/Site.php:537
msgid "Proxy URL"
msgstr "Proxy URL"
-#: src/Module/Admin/Site.php:544
+#: src/Module/Admin/Site.php:537
msgid ""
"If you want to use a proxy server that Friendica should use to connect to "
"the network, put the URL of the proxy here."
msgstr "Ha olyan proxy-kiszolgálót szeretne használni, amelyet a Friendicának a hálózathoz való kapcsolódáshoz használnia kell, akkor itt adja meg a proxy URL-jét."
-#: src/Module/Admin/Site.php:545
+#: src/Module/Admin/Site.php:538
msgid "Network timeout"
msgstr "Hálózati időkorlát"
-#: src/Module/Admin/Site.php:545
+#: src/Module/Admin/Site.php:538
msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
msgstr "Az érték másodpercben van. Állítsa 0-ra a korlátlan időhöz (nem ajánlott)."
-#: src/Module/Admin/Site.php:546
+#: src/Module/Admin/Site.php:539
msgid "Maximum Load Average"
msgstr "Legnagyobb terhelésátlag"
-#: src/Module/Admin/Site.php:546
+#: src/Module/Admin/Site.php:539
#, php-format
msgid ""
"Maximum system load before delivery and poll processes are deferred - "
"default %d."
msgstr "A legnagyobb rendszerterhelés, mielőtt a kézbesítési és lekérdezési folyamatok elhalasztásra kerülnek. Alapértelmezetten %d."
-#: src/Module/Admin/Site.php:547
+#: src/Module/Admin/Site.php:540
msgid "Minimal Memory"
msgstr "Legkevesebb memória"
-#: src/Module/Admin/Site.php:547
+#: src/Module/Admin/Site.php:540
msgid ""
"Minimal free memory in MB for the worker. Needs access to /proc/meminfo - "
"default 0 (deactivated)."
msgstr "A legkevesebb szabad memória MB-ban a feldolgozónál. Hozzáférést igényel a /proc/meminfo fájlhoz. Alapértelmezetten 0 (kikapcsolva)."
-#: src/Module/Admin/Site.php:548
+#: src/Module/Admin/Site.php:541
msgid "Periodically optimize tables"
msgstr "Táblák időszakos optimalizálása"
-#: src/Module/Admin/Site.php:548
+#: src/Module/Admin/Site.php:541
msgid "Periodically optimize tables like the cache and the workerqueue"
msgstr "A táblák időszakos optimalizálása, mint például a gyorsítótár és a feldolgozó várakozási sorának táblái."
-#: src/Module/Admin/Site.php:550
+#: src/Module/Admin/Site.php:543
msgid "Discover followers/followings from contacts"
msgstr "Követők vagy követések felfedezése a partnerekből"
-#: src/Module/Admin/Site.php:550
+#: src/Module/Admin/Site.php:543
msgid ""
"If enabled, contacts are checked for their followers and following contacts."
msgstr "Ha engedélyezve van, akkor a partnerek ellenőrizve lesznek a követő és követett partnereik számára."
-#: src/Module/Admin/Site.php:551
+#: src/Module/Admin/Site.php:544
msgid "None - deactivated"
msgstr "Nincs: ki van kapcsolva."
-#: src/Module/Admin/Site.php:552
+#: src/Module/Admin/Site.php:545
msgid ""
"Local contacts - contacts of our local contacts are discovered for their "
"followers/followings."
msgstr "Helyi partnerek: a helyi partnereink partnerei lesznek felfedezve a követőik vagy követésiek számára."
-#: src/Module/Admin/Site.php:553
+#: src/Module/Admin/Site.php:546
msgid ""
"Interactors - contacts of our local contacts and contacts who interacted on "
"locally visible postings are discovered for their followers/followings."
msgstr "Interaktorok: a helyi partnereink partnerei és a helyileg látható beküldésekkel kapcsolatba került partnerek lesznek felfedezve a követőik vagy követésiek számára."
-#: src/Module/Admin/Site.php:555
+#: src/Module/Admin/Site.php:548
msgid "Only update contacts/servers with local data"
msgstr "Csak helyi adatokkal rendelkező partnerek vagy kiszolgálók frissítése"
-#: src/Module/Admin/Site.php:555
+#: src/Module/Admin/Site.php:548
msgid ""
"If enabled, the system will only look for changes in contacts and servers "
"that engaged on this system by either being in a contact list of a user or "
"when posts or comments exists from the contact on this system."
msgstr "Ha engedélyezve van, akkor a rendszer csak olyan partnerek és kiszolgálók változásait keresi, amelyek részt vesznek ezen a rendszeren, azáltal hogy vagy egy felhasználó partnerlistáján szerepelnek, vagy ha a partnertől származó bejegyzések vagy hozzászólások léteznek ezen a rendszeren."
-#: src/Module/Admin/Site.php:556
+#: src/Module/Admin/Site.php:549
msgid "Synchronize the contacts with the directory server"
msgstr "A partnerek szinkronizálása a könyvtárkiszolgálóval"
-#: src/Module/Admin/Site.php:556
+#: src/Module/Admin/Site.php:549
msgid ""
"if enabled, the system will check periodically for new contacts on the "
"defined directory server."
msgstr "Ha engedélyezve van, akkor a rendszer időszakosan ellenőrizni fogja az új partnereket a meghatározott könyvtárkiszolgálón."
-#: src/Module/Admin/Site.php:558
+#: src/Module/Admin/Site.php:551
msgid "Discover contacts from other servers"
msgstr "Partnerek felfedezése más kiszolgálókról"
-#: src/Module/Admin/Site.php:558
+#: src/Module/Admin/Site.php:551
msgid ""
"Periodically query other servers for contacts and servers that they know of."
" The system queries Friendica, Mastodon and Hubzilla servers. Keep it "
"deactivated on small machines to decrease the database size and load."
msgstr "Más kiszolgálók időszakos lekérdezése olyan partnerek és kiszolgálók után, amelyekről tudnak. A rendszer Friendica, Mastodon és Hubzilla kiszolgálókat kérdez le. Kisebb gépeken tartsa kikapcsolva az adatbázis méretének és terhelésének csökkentése érdekében."
-#: src/Module/Admin/Site.php:559
+#: src/Module/Admin/Site.php:552
msgid "Days between requery"
msgstr "Ismételt lekérdezések közti napok"
-#: src/Module/Admin/Site.php:559
+#: src/Module/Admin/Site.php:552
msgid ""
"Number of days after which a server is requeried for their contacts and "
"servers it knows of. This is only used when the discovery is activated."
msgstr "A napok száma, amely után egy kiszolgáló ismét lekérdezésre kerül az általa tudott partnereiért és kiszolgálóiért. Ez csak akkor van használatban, ha a felfedezés be van kapcsolva."
-#: src/Module/Admin/Site.php:560
+#: src/Module/Admin/Site.php:553
msgid "Search the local directory"
msgstr "A helyi könyvtár keresése"
-#: src/Module/Admin/Site.php:560
+#: src/Module/Admin/Site.php:553
msgid ""
"Search the local directory instead of the global directory. When searching "
"locally, every search will be executed on the global directory in the "
"background. This improves the search results when the search is repeated."
msgstr "A helyi könyvtár keresése a globális könyvtár helyett. Helyi kereséskor minden egyes keresés a globális könyvtárban lesz végrehajtva a háttérben. Ez javítja a keresési eredményeket, ha a keresést megismétlik."
-#: src/Module/Admin/Site.php:562
+#: src/Module/Admin/Site.php:555
msgid "Publish server information"
msgstr "Kiszolgálóinformációk közzététele"
-#: src/Module/Admin/Site.php:562
+#: src/Module/Admin/Site.php:555
msgid ""
"If enabled, general server and usage data will be published. The data "
"contains the name and version of the server, number of users with public "
@@ -5249,50 +5249,50 @@ msgid ""
" href=\"http://the-federation.info/\">the-federation.info for details."
msgstr "Ha engedélyezve van, akkor az általános kiszolgáló és használati adatok közzé lesznek téve. Az adatok tartalmazzák a kiszolgáló nevét és verzióját, a nyilvános profillal rendelkező felhasználók számát, a bejegyzések számát, valamint a engedélyezett protokollokat és összekötőket. A részletekért nézze meg a the-federation.info weboldalt."
-#: src/Module/Admin/Site.php:564
+#: src/Module/Admin/Site.php:557
msgid "Check upstream version"
msgstr "Távoli verzió ellenőrzése"
-#: src/Module/Admin/Site.php:564
+#: src/Module/Admin/Site.php:557
msgid ""
"Enables checking for new Friendica versions at github. If there is a new "
"version, you will be informed in the admin panel overview."
msgstr "Engedélyezi az új Friendica verziójának keresését a GitHubon. Ha új verzió érhető el, akkor tájékoztatva lesz az adminisztrátori panel áttekintőjében."
-#: src/Module/Admin/Site.php:565
+#: src/Module/Admin/Site.php:558
msgid "Suppress Tags"
msgstr "Címkék letiltása"
-#: src/Module/Admin/Site.php:565
+#: src/Module/Admin/Site.php:558
msgid "Suppress showing a list of hashtags at the end of the posting."
msgstr "A kettős keresztes címkék listája megjelenítésének letiltása a beküldések végénél."
-#: src/Module/Admin/Site.php:566
+#: src/Module/Admin/Site.php:559
msgid "Clean database"
msgstr "Adatbázis tisztítása"
-#: src/Module/Admin/Site.php:566
+#: src/Module/Admin/Site.php:559
msgid ""
"Remove old remote items, orphaned database records and old content from some"
" other helper tables."
msgstr "Régi távoli elemek, árva adatbázisrekordok és néhány egyéb segédtáblából származó régi tartalom eltávolítása."
-#: src/Module/Admin/Site.php:567
+#: src/Module/Admin/Site.php:560
msgid "Lifespan of remote items"
msgstr "Távoli elemek élettartama"
-#: src/Module/Admin/Site.php:567
+#: src/Module/Admin/Site.php:560
msgid ""
"When the database cleanup is enabled, this defines the days after which "
"remote items will be deleted. Own items, and marked or filed items are "
"always kept. 0 disables this behaviour."
msgstr "Ha az adatbázis-tisztítás engedélyezve van, akkor ez határozza meg azon napok számát, amely után a távoli elemek törölve lesznek. A saját elemek, valamint a megjelölt és iktatott elemek mindig meg lesznek tartva. A 0 érték letiltja ezt a viselkedést."
-#: src/Module/Admin/Site.php:568
+#: src/Module/Admin/Site.php:561
msgid "Lifespan of unclaimed items"
msgstr "Nem igényelt elemek élettartama"
-#: src/Module/Admin/Site.php:568
+#: src/Module/Admin/Site.php:561
msgid ""
"When the database cleanup is enabled, this defines the days after which "
"unclaimed remote items (mostly content from the relay) will be deleted. "
@@ -5300,185 +5300,184 @@ msgid ""
"items if set to 0."
msgstr "Ha az adatbázis-tisztítás engedélyezve van, akkor ez határozza meg azon napok számát, amely után a nem igényelt távoli elemek (főleg a továbbításból származó tartalmak) törölve lesznek. Az alapértelmezett érték 90 nap. A távoli elemek általános élettartamértékének alapértelmezettje lesz, ha 0 értékre van állítva."
-#: src/Module/Admin/Site.php:569
+#: src/Module/Admin/Site.php:562
msgid "Lifespan of raw conversation data"
msgstr "Nyers beszélgetési adatok élettartama"
-#: src/Module/Admin/Site.php:569
+#: src/Module/Admin/Site.php:562
msgid ""
-"The conversation data is used for ActivityPub and OStatus, as well as for "
-"debug purposes. It should be safe to remove it after 14 days, default is 90 "
-"days."
-msgstr "A beszélgetési adatok az ActivityPub és az OStatus hálózatoknál, valamint hibakeresési célokhoz vannak használva. Biztonságosan el lehet távolítani azokat 14 nap után. Alapértelmezetten 90 nap."
+"The conversation data is used for ActivityPub, as well as for debug "
+"purposes. It should be safe to remove it after 14 days, default is 90 days."
+msgstr ""
-#: src/Module/Admin/Site.php:570
+#: src/Module/Admin/Site.php:563
msgid "Maximum numbers of comments per post"
msgstr "Bejegyzésenkénti hozzászólások legnagyobb száma"
-#: src/Module/Admin/Site.php:570
+#: src/Module/Admin/Site.php:563
msgid "How much comments should be shown for each post? Default value is 100."
msgstr "Mennyi hozzászólást kell megjeleníteni az egyes bejegyzéseknél? Az alapértelmezett érték 100."
-#: src/Module/Admin/Site.php:571
+#: src/Module/Admin/Site.php:564
msgid "Maximum numbers of comments per post on the display page"
msgstr "Bejegyzésenkénti hozzászólások legnagyobb száma a megjelenítési oldalon"
-#: src/Module/Admin/Site.php:571
+#: src/Module/Admin/Site.php:564
msgid ""
"How many comments should be shown on the single view for each post? Default "
"value is 1000."
msgstr "Mennyi hozzászólást kell megjeleníteni egy önálló nézeten az egyes bejegyzéseknél? Az alapértelmezett érték 1000."
-#: src/Module/Admin/Site.php:572
+#: src/Module/Admin/Site.php:565
msgid "Items per page"
msgstr "Oldalankénti elemek"
-#: src/Module/Admin/Site.php:572
+#: src/Module/Admin/Site.php:565
msgid ""
"Number of items per page in stream pages (network, community, "
"profile/contact statuses, search)."
msgstr "Oldalankénti elemek száma az adatfolyam oldalakon (hálózat, közösség, profil- vagy partnerállapotok, keresés)."
-#: src/Module/Admin/Site.php:573
+#: src/Module/Admin/Site.php:566
msgid "Items per page for mobile devices"
msgstr "Oldalankénti elemek száma mobil eszközöknél"
-#: src/Module/Admin/Site.php:573
+#: src/Module/Admin/Site.php:566
msgid ""
"Number of items per page in stream pages (network, community, "
"profile/contact statuses, search) for mobile devices."
msgstr "Oldalankénti elemek száma az adatfolyam oldalakon (hálózat, közösség, profil- vagy partnerállapotok, keresés) mobil eszközöknél."
-#: src/Module/Admin/Site.php:574
+#: src/Module/Admin/Site.php:567
msgid "Temp path"
msgstr "Ideiglenes mappa útvonala"
-#: src/Module/Admin/Site.php:574
+#: src/Module/Admin/Site.php:567
msgid ""
"If you have a restricted system where the webserver can't access the system "
"temp path, enter another path here."
msgstr "Ha korlátozott rendszere van, ahol a webkiszolgáló nem tudja elérni a rendszer ideiglenes mappájának útvonalát, akkor adjon meg egy másik útvonalat itt."
-#: src/Module/Admin/Site.php:575
+#: src/Module/Admin/Site.php:568
msgid "Only search in tags"
msgstr "Keresés csak címkékben"
-#: src/Module/Admin/Site.php:575
+#: src/Module/Admin/Site.php:568
msgid "On large systems the text search can slow down the system extremely."
msgstr "Nagy rendszereknél a szöveges keresés rendkívüli módon lelassíthatja a rendszert."
-#: src/Module/Admin/Site.php:576
+#: src/Module/Admin/Site.php:569
msgid "Limited search scope"
msgstr "Korlátozott keresési hatókör"
-#: src/Module/Admin/Site.php:576
+#: src/Module/Admin/Site.php:569
msgid ""
"If enabled, searches will only be performed in the data used for the "
"channels and not in all posts."
msgstr "Ha engedélyezve van, akkor a keresések csak a csatornákhoz használt adatokban lesznek végrehajtva, nem az összes bejegyzésben."
-#: src/Module/Admin/Site.php:577
+#: src/Module/Admin/Site.php:570
msgid "Maximum age of items in the search table"
msgstr "A keresési táblában lévő elemek legnagyobb életkora"
-#: src/Module/Admin/Site.php:577
+#: src/Module/Admin/Site.php:570
msgid ""
"Maximum age of items in the search table in days. Lower values will increase"
" the performance and reduce disk usage. 0 means no age restriction."
msgstr "A keresési táblában lévő elemek legnagyobb életkora napokban. Az alacsonyabb értékek növelik a teljesítményt és csökkentik a lemezhasználatot. A 0 azt jelenti, hogy nincs életkori korlátozás."
-#: src/Module/Admin/Site.php:578
+#: src/Module/Admin/Site.php:571
msgid "Generate counts per contact circle when calculating network count"
msgstr "Partnerkörönkénti számlálások előállítása a hálózatszám kiszámításakor"
-#: src/Module/Admin/Site.php:578
+#: src/Module/Admin/Site.php:571
msgid ""
"On systems with users that heavily use contact circles the query can be very"
" expensive."
msgstr "Olyan rendszereken, ahol a felhasználók nagymértékben használják a partnerköröket, a lekérdezés nagyon költséges lehet."
-#: src/Module/Admin/Site.php:579
+#: src/Module/Admin/Site.php:572
msgid "Process \"view\" activities"
msgstr "„Megtekintés” tevékenységek feldolgozása"
-#: src/Module/Admin/Site.php:579
+#: src/Module/Admin/Site.php:572
msgid ""
"\"view\" activities are mostly geberated by Peertube systems. Per default "
"they are not processed for performance reasons. Only activate this option on"
" performant system."
msgstr "A „megtekintés” tevékenységeket többnyire a Peertube rendszerek hozzák létre. Alapértelmezetten nem kerülnek feldolgozásra teljesítménybeli okokból. Csak teljesítőképes rendszerben kapcsolja be ezt a beállítást."
-#: src/Module/Admin/Site.php:580
+#: src/Module/Admin/Site.php:573
msgid "Days, after which a contact is archived"
msgstr "Napok, amely után a partner archiválásra kerül"
-#: src/Module/Admin/Site.php:580
+#: src/Module/Admin/Site.php:573
msgid ""
"Number of days that we try to deliver content or to update the contact data "
"before we archive a contact."
msgstr "Azon napok száma, amikor megpróbálunk tartalmat szállítani vagy a partner adatait frissíteni, mielőtt archiváljuk a partnert."
-#: src/Module/Admin/Site.php:582
+#: src/Module/Admin/Site.php:575
msgid "Maximum number of parallel workers"
msgstr "Párhuzamos feldolgozók legnagyobb száma"
-#: src/Module/Admin/Site.php:582
+#: src/Module/Admin/Site.php:575
#, php-format
msgid ""
"On shared hosters set this to %d. On larger systems, values of %d are great."
" Default value is %d."
msgstr "Osztott tárhelyszolgáltatóknál állítsa ezt %d értékre. Nagyobb rendszereknél érdemes a számot %d értékre állítani. Az alapértelmezett érték %d."
-#: src/Module/Admin/Site.php:583
+#: src/Module/Admin/Site.php:576
msgid "Maximum load for workers"
msgstr "Feldolgozók legnagyobb terhelése"
-#: src/Module/Admin/Site.php:583
+#: src/Module/Admin/Site.php:576
msgid "Maximum load that causes a cooldown before each worker function call."
msgstr "A legnagyobb terhelés, amely minden egyes feldolgozófüggvény-hívás előtt várakozást okoz."
-#: src/Module/Admin/Site.php:584
+#: src/Module/Admin/Site.php:577
msgid "Enable fastlane"
msgstr "Prioritásos sor engedélyezése"
-#: src/Module/Admin/Site.php:584
+#: src/Module/Admin/Site.php:577
msgid ""
"When enabed, the fastlane mechanism starts an additional worker if processes"
" with higher priority are blocked by processes of lower priority."
msgstr "Ha engedélyezve van, akkor a prioritásos sor mechanizmus további feldolgozót indít, ha a magasabb prioritással rendelkező folyamatokat blokkolják az alacsonyabb prioritású folyamatok."
-#: src/Module/Admin/Site.php:585
+#: src/Module/Admin/Site.php:578
msgid "Decoupled receiver"
msgstr "Szétválasztott fogadó"
-#: src/Module/Admin/Site.php:585
+#: src/Module/Admin/Site.php:578
msgid ""
"Decouple incoming ActivityPub posts by processing them in the background via"
" a worker process. Only enable this on fast systems."
msgstr "A bejövő ActivityPub-bejegyzések szétválasztása egy feldolgozófolyamaton keresztüli, háttérben történő feldolgozással. Ezt csak gyors rendszereken engedélyezze."
-#: src/Module/Admin/Site.php:586
+#: src/Module/Admin/Site.php:579
msgid "Cron interval"
msgstr "Cron időköz"
-#: src/Module/Admin/Site.php:586
+#: src/Module/Admin/Site.php:579
msgid "Minimal period in minutes between two calls of the \"Cron\" worker job."
msgstr "Legkisebb időtartam percben a „Cron” feldolgozófeladat két hívása között."
-#: src/Module/Admin/Site.php:587
+#: src/Module/Admin/Site.php:580
msgid "Worker defer limit"
msgstr "Feldolgozó halasztási korlátja"
-#: src/Module/Admin/Site.php:587
+#: src/Module/Admin/Site.php:580
msgid ""
"Per default the systems tries delivering for 15 times before dropping it."
msgstr "Alapértelmezetten a rendszerek tizenötször próbálkoznak a kézbesítéssel, mielőtt eldobnák azt."
-#: src/Module/Admin/Site.php:588
+#: src/Module/Admin/Site.php:581
msgid "Worker fetch limit"
msgstr "Feldolgozó lekérési korlátja"
-#: src/Module/Admin/Site.php:588
+#: src/Module/Admin/Site.php:581
msgid ""
"Number of worker tasks that are fetched in a single query. Higher values "
"should increase the performance, too high values will mostly likely decrease"
@@ -5486,214 +5485,214 @@ msgid ""
"system."
msgstr "Az egyetlen lekérdezésben lekért feldolgozófeladatok száma. A magasabb értékeknek növelniük kellene a teljesítményt, a túl magas értékek viszont valószínűleg csökkentik azt. Csak akkor változtassa meg, ha tudja, hogy hogyan mérje a rendszere teljesítményét."
-#: src/Module/Admin/Site.php:590
+#: src/Module/Admin/Site.php:583
msgid "Direct relay transfer"
msgstr "Közvetlen továbbító-átvitel"
-#: src/Module/Admin/Site.php:590
+#: src/Module/Admin/Site.php:583
msgid ""
"Enables the direct transfer to other servers without using the relay servers"
msgstr "Engedélyezi a más kiszolgálókra való közvetlen átvitelt a továbbító kiszolgálók használata nélkül."
-#: src/Module/Admin/Site.php:591
+#: src/Module/Admin/Site.php:584
msgid "Relay scope"
msgstr "Továbbítás hatóköre"
-#: src/Module/Admin/Site.php:591
+#: src/Module/Admin/Site.php:584
msgid ""
"Can be \"all\" or \"tags\". \"all\" means that every public post should be "
"received. \"tags\" means that only posts with selected tags should be "
"received."
msgstr "Lehet „összes” vagy „címkék”. Az „összes” azt jelenti, hogy minden nyilvános bejegyzést meg kell kapni. A „címkék” jelentése, hogy csak a kijelölt címkékkel rendelkező bejegyzéseket kell megkapni."
-#: src/Module/Admin/Site.php:591 src/Module/Contact/Profile.php:328
-#: src/Module/Settings/TwoFactor/Index.php:146
+#: src/Module/Admin/Site.php:584 src/Module/Contact/Profile.php:314
+#: src/Module/Settings/TwoFactor/Index.php:132
msgid "Disabled"
msgstr "Letiltva"
-#: src/Module/Admin/Site.php:591
+#: src/Module/Admin/Site.php:584
msgid "all"
msgstr "összes"
-#: src/Module/Admin/Site.php:591
+#: src/Module/Admin/Site.php:584
msgid "tags"
msgstr "címkék"
-#: src/Module/Admin/Site.php:592
+#: src/Module/Admin/Site.php:585
msgid "Server tags"
msgstr "Kiszolgálócímkék"
-#: src/Module/Admin/Site.php:592
+#: src/Module/Admin/Site.php:585
msgid "Comma separated list of tags for the \"tags\" subscription."
msgstr "Címkék vesszővel elválasztott listája a „címkék” feliratkozáshoz."
-#: src/Module/Admin/Site.php:593
+#: src/Module/Admin/Site.php:586
msgid "Deny Server tags"
msgstr "Kiszolgálócímkék megtagadása"
-#: src/Module/Admin/Site.php:593
+#: src/Module/Admin/Site.php:586
msgid "Comma separated list of tags that are rejected."
msgstr "Címkék vesszővel elválasztott listája, amelyek vissza lesznek utasítva."
-#: src/Module/Admin/Site.php:594
+#: src/Module/Admin/Site.php:587
msgid "Maximum amount of tags"
msgstr "Címkék legnagyobb száma"
-#: src/Module/Admin/Site.php:594
+#: src/Module/Admin/Site.php:587
msgid ""
"Maximum amount of tags in a post before it is rejected as spam. The post has"
" to contain at least one link. Posts from subscribed accounts will not be "
"rejected."
msgstr "Egy bejegyzésben lévő címkék legnagyobb száma, mielőtt az kéretlen üzenetként visszautasításra kerülne. A bejegyzésnek legalább egy hivatkozást kell tartalmaznia. A feliratkozott fiókokból származó bejegyzések nem kerülnek visszautasításra."
-#: src/Module/Admin/Site.php:595
+#: src/Module/Admin/Site.php:588
msgid "Allow user tags"
msgstr "Felhasználói címkék engedélyezése"
-#: src/Module/Admin/Site.php:595
+#: src/Module/Admin/Site.php:588
msgid ""
"If enabled, the tags from the saved searches will used for the \"tags\" "
"subscription in addition to the \"relay_server_tags\"."
msgstr "Ha engedélyezve van, akkor a mentett keresésekből származó címkék lesznek használva a „címkék” feliratkozásnál a „relay_server_tags” címkéken kívül."
-#: src/Module/Admin/Site.php:596
+#: src/Module/Admin/Site.php:589
msgid "Deny undetected languages"
msgstr "Fel nem ismert nyelvek megtagadása"
-#: src/Module/Admin/Site.php:596
+#: src/Module/Admin/Site.php:589
msgid "If enabled, posts with undetected languages will be rejected."
msgstr "Ha engedélyezve van, akkor a fel nem ismert nyelveket tartalmazó bejegyzések visszautasításra kerülnek."
-#: src/Module/Admin/Site.php:597
+#: src/Module/Admin/Site.php:590
msgid "Language Quality"
msgstr "Nyelvi minőség"
-#: src/Module/Admin/Site.php:597
+#: src/Module/Admin/Site.php:590
msgid "The minimum language quality that is required to accept the post."
msgstr "A bejegyzés elfogadásához szükséges legkisebb nyelvi minőség."
-#: src/Module/Admin/Site.php:598
+#: src/Module/Admin/Site.php:591
msgid "Number of languages for the language detection"
msgstr "Nyelvek száma a nyelvfelismeréshez"
-#: src/Module/Admin/Site.php:598
+#: src/Module/Admin/Site.php:591
msgid ""
"The system detects a list of languages per post. Only if the desired "
"languages are in the list, the message will be accepted. The higher the "
"number, the more posts will be falsely detected."
msgstr "A rendszer felismeri a bejegyzésenkénti nyelvek listáját. Csak akkor kerül elfogadásra az üzenet, ha a kívánt nyelvek szerepelnek a listán. Minél magasabb a szám, annál több bejegyzést lesz tévesen felismerve."
-#: src/Module/Admin/Site.php:600
+#: src/Module/Admin/Site.php:593
msgid "Maximum age of channel"
msgstr "Csatorna legnagyobb életkora"
-#: src/Module/Admin/Site.php:600
+#: src/Module/Admin/Site.php:593
msgid ""
"This defines the maximum age in hours of items that should be displayed in "
"channels. This affects the channel performance."
msgstr "Ez határozza meg azon elemek legnagyobb életkorát órákban kifejezve, amelyeket meg kell jeleníteni a csatornákon. Ez hatással van a csatorna teljesítményére."
-#: src/Module/Admin/Site.php:601
+#: src/Module/Admin/Site.php:594
msgid "Maximum number of channel posts"
msgstr "Csatornabejegyzések legnagyobb száma"
-#: src/Module/Admin/Site.php:601
+#: src/Module/Admin/Site.php:594
msgid ""
"For performance reasons, the channels use a dedicated table to store "
"content. The higher the value the slower the channels."
msgstr "Teljesítményi okokból a csatornák külön táblát használnak a tartalom tárolására. Minél magasabb az érték, annál lassabbak a csatornák."
-#: src/Module/Admin/Site.php:602
+#: src/Module/Admin/Site.php:595
msgid "Interaction score days"
msgstr "Interakció-pontszám napjai"
-#: src/Module/Admin/Site.php:602
+#: src/Module/Admin/Site.php:595
msgid "Number of days that are used to calculate the interaction score."
msgstr "Az interakció-pontszám kiszámításához használt napok száma."
-#: src/Module/Admin/Site.php:603
+#: src/Module/Admin/Site.php:596
msgid "Maximum number of posts per author"
msgstr "Szerzőnkénti bejegyzések legnagyobb száma"
-#: src/Module/Admin/Site.php:603
+#: src/Module/Admin/Site.php:596
msgid ""
"Maximum number of posts per page by author if the contact frequency is set "
"to \"Display only few posts\". If there are more posts, then the post with "
"the most interactions will be displayed."
msgstr "Az oldalankénti bejegyzések szerző szerinti legnagyobb száma, ha a partner gyakorisága „Csak néhány bejegyzés megjelenítése” értékre van állítva. Ha több bejegyzés van, akkor a legtöbb interakcióval rendelkező bejegyzés kerül megjelenítésre."
-#: src/Module/Admin/Site.php:604
+#: src/Module/Admin/Site.php:597
msgid "Sharer interaction days"
msgstr "Megosztó interakciós napjai"
-#: src/Module/Admin/Site.php:604
+#: src/Module/Admin/Site.php:597
msgid ""
"Number of days of the last interaction that are used to define which sharers"
" are used for the \"sharers of sharers\" channel."
msgstr "Az utolsó interakció azon napjainak száma, amelyek annak meghatározására szolgálnak, hogy mely megosztók legyenek használva a „megosztók megosztói” csatornához."
-#: src/Module/Admin/Site.php:607
+#: src/Module/Admin/Site.php:600
msgid "Start Relocation"
msgstr "Áthelyezés indítása"
-#: src/Module/Admin/Storage.php:46
+#: src/Module/Admin/Storage.php:32
#, php-format
msgid "Storage backend, %s is invalid."
msgstr "Tároló háttérprogram, a(z) %s érvénytelen."
-#: src/Module/Admin/Storage.php:73
+#: src/Module/Admin/Storage.php:59
#, php-format
msgid "Storage backend %s error: %s"
msgstr "Tároló háttérprogram (%s) hiba: %s"
-#: src/Module/Admin/Storage.php:84 src/Module/Admin/Storage.php:87
+#: src/Module/Admin/Storage.php:70 src/Module/Admin/Storage.php:73
msgid "Invalid storage backend setting value."
msgstr "Érvénytelen tároló-háttérprogram beállítási érték."
-#: src/Module/Admin/Storage.php:139
+#: src/Module/Admin/Storage.php:125
msgid "Current Storage Backend"
msgstr "Jelenlegi tároló háttérprogram"
-#: src/Module/Admin/Storage.php:140
+#: src/Module/Admin/Storage.php:126
msgid "Storage Configuration"
msgstr "Tároló beállításai"
-#: src/Module/Admin/Storage.php:141 src/Module/BaseAdmin.php:91
+#: src/Module/Admin/Storage.php:127 src/Module/BaseAdmin.php:77
msgid "Storage"
msgstr "Tároló"
-#: src/Module/Admin/Storage.php:143
+#: src/Module/Admin/Storage.php:129
msgid "Save & Use storage backend"
msgstr "Mentés és a tároló háttérprogram használata"
-#: src/Module/Admin/Storage.php:144
+#: src/Module/Admin/Storage.php:130
msgid "Use storage backend"
msgstr "Tároló háttérprogram használata"
-#: src/Module/Admin/Storage.php:145
+#: src/Module/Admin/Storage.php:131
msgid "Save & Reload"
msgstr "Mentés és újratöltés"
-#: src/Module/Admin/Storage.php:146
+#: src/Module/Admin/Storage.php:132
msgid "This backend doesn't have custom settings"
msgstr "Ennek a háttérprogramnak nincsenek egyéni beállításai"
-#: src/Module/Admin/Storage.php:148
+#: src/Module/Admin/Storage.php:134
msgid ""
"Changing the current backend is prohibited because it is set by an "
"environment variable"
msgstr "A jelenlegi háttérprogram megváltoztatása tiltva van, mivel azt egy környezeti változó állítja be"
-#: src/Module/Admin/Storage.php:150
+#: src/Module/Admin/Storage.php:136
msgid "Database (legacy)"
msgstr "Adatbázis (örökölt)"
-#: src/Module/Admin/Summary.php:55
+#: src/Module/Admin/Summary.php:41
#, php-format
msgid "Template engine (%s) error: %s"
msgstr "Sablonmotor (%s) hiba: %s"
-#: src/Module/Admin/Summary.php:59
+#: src/Module/Admin/Summary.php:45
#, php-format
msgid ""
"Your DB still runs with MyISAM tables. You should change the engine type to "
@@ -5704,7 +5703,7 @@ msgid ""
" an automatic conversion..htconfig.php
fájlból. Az átvitelhez való segítségért nézze meg a beállítások súgóoldalát."
-#: src/Module/Admin/Summary.php:118
+#: src/Module/Admin/Summary.php:104
#, php-format
msgid ""
"Friendica's configuration now is stored in config/local.config.php, please "
@@ -5780,7 +5779,7 @@ msgid ""
"page for help with the transition."
msgstr "A Friendica beállításai most a „config/local.config.php” fájlban vannak eltárolva. Másolja le a „config/local-sample.config.php” fájlt, és helyezze át a beállításokat a config/local.ini.php
fájlból. Az átvitelhez való segítségért nézze meg a beállítások súgóoldalát."
-#: src/Module/Admin/Summary.php:124
+#: src/Module/Admin/Summary.php:110
#, php-format
msgid ""
"%s is not reachable on your system. This is a severe "
@@ -5788,107 +5787,107 @@ msgid ""
"href=\"%s\">the installation page for help."
msgstr "A %s nem érhető el a rendszeréről. Ez súlyos beállítási probléma, amely megakadályozza a kiszolgálók közti kommunikációt. Nézze meg a telepítési oldalt a segítségért."
-#: src/Module/Admin/Summary.php:148
+#: src/Module/Admin/Summary.php:134
#, php-format
msgid ""
"Friendica's system.basepath was updated from '%s' to '%s'. Please remove the"
" system.basepath from your db to avoid differences."
msgstr "A Friendica „system.basepath” beállítása frissítve lett „%s” értékről „%s” értékre. Távolítsa el a „system.basepath” beállítást az adatbázisából az eltérések elkerüléséhez."
-#: src/Module/Admin/Summary.php:156
+#: src/Module/Admin/Summary.php:142
#, php-format
msgid ""
"Friendica's current system.basepath '%s' is wrong and the config file '%s' "
"isn't used."
msgstr "A Friendica jelenlegi „system.basepath” értéke („%s”) hibás, és a(z) „%s” beállítófájl nincs használva."
-#: src/Module/Admin/Summary.php:164
+#: src/Module/Admin/Summary.php:150
#, php-format
msgid ""
"Friendica's current system.basepath '%s' is not equal to the config file "
"'%s'. Please fix your configuration."
msgstr "A Friendica jelenlegi „system.basepath” értéke („%s”) nem azonos a(z) „%s” beállítófájlban lévővel. Javítsa a beállításokat."
-#: src/Module/Admin/Summary.php:175
+#: src/Module/Admin/Summary.php:161
msgid "Message queues"
msgstr "Üzenet várakozási sorai"
-#: src/Module/Admin/Summary.php:181
+#: src/Module/Admin/Summary.php:167
msgid "Server Settings"
msgstr "Kiszolgálóbeállítások"
-#: src/Module/Admin/Summary.php:199
+#: src/Module/Admin/Summary.php:185
msgid "Version"
msgstr "Verzió"
-#: src/Module/Admin/Summary.php:203
+#: src/Module/Admin/Summary.php:189
msgid "Active addons"
msgstr "Bekapcsolt bővítmények"
-#: src/Module/Admin/Themes/Details.php:63 src/Module/Admin/Themes/Index.php:71
+#: src/Module/Admin/Themes/Details.php:49 src/Module/Admin/Themes/Index.php:57
#, php-format
msgid "Theme %s disabled."
msgstr "A(z) „%s” téma letiltva."
-#: src/Module/Admin/Themes/Details.php:65 src/Module/Admin/Themes/Index.php:73
+#: src/Module/Admin/Themes/Details.php:51 src/Module/Admin/Themes/Index.php:59
#, php-format
msgid "Theme %s successfully enabled."
msgstr "A(z) „%s” téma sikeresen engedélyezve."
-#: src/Module/Admin/Themes/Details.php:67 src/Module/Admin/Themes/Index.php:75
+#: src/Module/Admin/Themes/Details.php:53 src/Module/Admin/Themes/Index.php:61
#, php-format
msgid "Theme %s failed to install."
msgstr "A(z) „%s” téma telepítése sikertelen."
-#: src/Module/Admin/Themes/Details.php:89
+#: src/Module/Admin/Themes/Details.php:75
msgid "Screenshot"
msgstr "Képernyőkép"
-#: src/Module/Admin/Themes/Details.php:97
-#: src/Module/Admin/Themes/Index.php:118 src/Module/BaseAdmin.php:93
+#: src/Module/Admin/Themes/Details.php:83
+#: src/Module/Admin/Themes/Index.php:104 src/Module/BaseAdmin.php:79
msgid "Themes"
msgstr "Témák"
-#: src/Module/Admin/Themes/Embed.php:80
+#: src/Module/Admin/Themes/Embed.php:66
msgid "Unknown theme."
msgstr "Ismeretlen téma."
-#: src/Module/Admin/Themes/Index.php:57
+#: src/Module/Admin/Themes/Index.php:43
msgid "Themes reloaded"
msgstr "Témák újratöltve"
-#: src/Module/Admin/Themes/Index.php:120
+#: src/Module/Admin/Themes/Index.php:106
msgid "Reload active themes"
msgstr "Bekapcsolt témák újratöltése"
-#: src/Module/Admin/Themes/Index.php:124
+#: src/Module/Admin/Themes/Index.php:110
#, php-format
msgid "No themes found on the system. They should be placed in %1$s"
msgstr "Nem találhatók témák a rendszeren. A témákat a %1$s könyvtárba kell elhelyezni."
-#: src/Module/Admin/Themes/Index.php:125
+#: src/Module/Admin/Themes/Index.php:111
msgid "[Experimental]"
msgstr "[Kísérleti]"
-#: src/Module/Admin/Themes/Index.php:126
+#: src/Module/Admin/Themes/Index.php:112
msgid "[Unsupported]"
msgstr "[Nem támogatott]"
-#: src/Module/Admin/Tos.php:79
+#: src/Module/Admin/Tos.php:65
msgid "Display Terms of Service"
msgstr "Használati feltételek megjelenítése"
-#: src/Module/Admin/Tos.php:79
+#: src/Module/Admin/Tos.php:65
msgid ""
"Enable the Terms of Service page. If this is enabled a link to the terms "
"will be added to the registration form and the general information page."
msgstr "A használati feltételek oldal engedélyezése. Ha ez engedélyezve van, akkor a használati feltételekre mutató hivatkozás hozzá lesz adva a regisztrációs űrlaphoz és az általános információk oldalához."
-#: src/Module/Admin/Tos.php:80
+#: src/Module/Admin/Tos.php:66
msgid "Display Privacy Statement"
msgstr "Adatvédelmi nyilatkozatok megjelenítése"
-#: src/Module/Admin/Tos.php:80
+#: src/Module/Admin/Tos.php:66
#, php-format
msgid ""
"Show some informations regarding the needed information to operate the node "
@@ -5896,167 +5895,167 @@ msgid ""
"noreferrer\">EU-GDPR."
msgstr "Néhány információ megjelenítése a csomópont üzemeltetésére vonatkozó szükséges információkról, például az EU-GDPR szerint."
-#: src/Module/Admin/Tos.php:81
+#: src/Module/Admin/Tos.php:67
msgid "Privacy Statement Preview"
msgstr "Adatvédelmi nyilatkozat előnézete"
-#: src/Module/Admin/Tos.php:83
+#: src/Module/Admin/Tos.php:69
msgid "The Terms of Service"
msgstr "A használati feltételek"
-#: src/Module/Admin/Tos.php:83
+#: src/Module/Admin/Tos.php:69
msgid ""
"Enter the Terms of Service for your node here. You can use BBCode. Headers "
"of sections should be [h2] and below."
msgstr "Itt adja meg a csomópontja használati feltételeit. Használhat BBCode formázást is. A szakaszok címeinek [h2] vagy az alattiaknak kell lenniük."
-#: src/Module/Admin/Tos.php:84
+#: src/Module/Admin/Tos.php:70
msgid "The rules"
msgstr "A szabályok"
-#: src/Module/Admin/Tos.php:84
+#: src/Module/Admin/Tos.php:70
msgid "Enter your system rules here. Each line represents one rule."
msgstr "Itt adja meg a rendszer szabályait. Minden sor egy szabályt jelent."
-#: src/Module/Api/ApiResponse.php:293
+#: src/Module/Api/ApiResponse.php:279
#, php-format
msgid "API endpoint %s %s is not implemented but might be in the future."
msgstr "A(z) %s %s API-végpont nincs megvalósítva, de a jövőben megvalósításra kerülhet."
-#: src/Module/Api/Mastodon/Apps.php:73
+#: src/Module/Api/Mastodon/Apps.php:59
msgid "Missing parameters"
msgstr "Hiányzó paraméterek"
-#: src/Module/Api/Mastodon/Statuses/Bookmark.php:50
+#: src/Module/Api/Mastodon/Statuses/Bookmark.php:36
msgid "Only starting posts can be bookmarked"
msgstr "Csak a kezdeti bejegyzéseket lehet könyvjelzőzni"
-#: src/Module/Api/Mastodon/Statuses/Mute.php:51
+#: src/Module/Api/Mastodon/Statuses/Mute.php:37
msgid "Only starting posts can be muted"
msgstr "Csak a kezdeti bejegyzéseket lehet némítani"
-#: src/Module/Api/Mastodon/Statuses/Reblog.php:58
+#: src/Module/Api/Mastodon/Statuses/Reblog.php:44
#, php-format
msgid "Posts from %s can't be shared"
msgstr "%s bejegyzéseit nem lehet megosztani"
-#: src/Module/Api/Mastodon/Statuses/Unbookmark.php:51
+#: src/Module/Api/Mastodon/Statuses/Unbookmark.php:37
msgid "Only starting posts can be unbookmarked"
msgstr "Csak a kezdeti bejegyzéseket lehet kivenni a könyvjelzőkből"
-#: src/Module/Api/Mastodon/Statuses/Unmute.php:51
+#: src/Module/Api/Mastodon/Statuses/Unmute.php:37
msgid "Only starting posts can be unmuted"
msgstr "Csak a kezdeti bejegyzéseket némítását lehet megszüntetni"
-#: src/Module/Api/Mastodon/Statuses/Unreblog.php:64
+#: src/Module/Api/Mastodon/Statuses/Unreblog.php:50
#, php-format
msgid "Posts from %s can't be unshared"
msgstr "%s bejegyzéseinek megosztását nem lehet visszavonni"
-#: src/Module/Api/Twitter/ContactEndpoint.php:66
+#: src/Module/Api/Twitter/ContactEndpoint.php:52
msgid "Contact not found"
msgstr "A partner nem található"
-#: src/Module/Apps.php:62
+#: src/Module/Apps.php:48
msgid "No installed applications."
msgstr "Nincsenek telepített alkalmazások."
-#: src/Module/Apps.php:67
+#: src/Module/Apps.php:53
msgid "Applications"
msgstr "Alkalmazások"
-#: src/Module/Attach.php:49 src/Module/Attach.php:61
+#: src/Module/Attach.php:35 src/Module/Attach.php:47
msgid "Item was not found."
msgstr "Az elem nem található."
-#: src/Module/BaseAdmin.php:54 src/Module/BaseAdmin.php:58
-#: src/Module/BaseModeration.php:77 src/Module/BaseModeration.php:81
+#: src/Module/BaseAdmin.php:40 src/Module/BaseAdmin.php:44
+#: src/Module/BaseModeration.php:63 src/Module/BaseModeration.php:67
msgid "Please login to continue."
msgstr "Jelentkezzen be a folytatáshoz."
-#: src/Module/BaseAdmin.php:63
+#: src/Module/BaseAdmin.php:49
msgid "You don't have access to administration pages."
msgstr "Nincs hozzáférése az adminisztrációs oldalakhoz."
-#: src/Module/BaseAdmin.php:67
+#: src/Module/BaseAdmin.php:53
msgid ""
"Submanaged account can't access the administration pages. Please log back in"
" as the main account."
msgstr "Az alkezelt fiókok nem férhetnek hozzá az adminisztrációs oldalakhoz. Jelentkezzen vissza a fő fiókkal."
-#: src/Module/BaseAdmin.php:86 src/Module/BaseModeration.php:109
+#: src/Module/BaseAdmin.php:72 src/Module/BaseModeration.php:95
msgid "Overview"
msgstr "Áttekintő"
-#: src/Module/BaseAdmin.php:89 src/Module/BaseModeration.php:112
+#: src/Module/BaseAdmin.php:75 src/Module/BaseModeration.php:98
msgid "Configuration"
msgstr "Beállítás"
-#: src/Module/BaseAdmin.php:94 src/Module/BaseSettings.php:110
+#: src/Module/BaseAdmin.php:80 src/Module/BaseSettings.php:96
msgid "Additional features"
msgstr "További funkciók"
-#: src/Module/BaseAdmin.php:97
+#: src/Module/BaseAdmin.php:83
msgid "Database"
msgstr "Adatbázis"
-#: src/Module/BaseAdmin.php:98
+#: src/Module/BaseAdmin.php:84
msgid "DB updates"
msgstr "Adatbázis-frissítések"
-#: src/Module/BaseAdmin.php:99
+#: src/Module/BaseAdmin.php:85
msgid "Inspect Deferred Workers"
msgstr "Elhalasztott feldolgozók vizsgálata"
-#: src/Module/BaseAdmin.php:100
+#: src/Module/BaseAdmin.php:86
msgid "Inspect worker Queue"
msgstr "Feldolgozó várakozási sorának vizsgálata"
-#: src/Module/BaseAdmin.php:106 src/Module/BaseModeration.php:120
+#: src/Module/BaseAdmin.php:92 src/Module/BaseModeration.php:106
msgid "Diagnostics"
msgstr "Diagnosztika"
-#: src/Module/BaseAdmin.php:107
+#: src/Module/BaseAdmin.php:93
msgid "PHP Info"
msgstr "PHP-információk"
-#: src/Module/BaseAdmin.php:108
+#: src/Module/BaseAdmin.php:94
msgid "probe address"
msgstr "Cím szondázása"
-#: src/Module/BaseAdmin.php:109
+#: src/Module/BaseAdmin.php:95
msgid "check webfinger"
msgstr "WebFinger ellenőrzése"
-#: src/Module/BaseAdmin.php:110
+#: src/Module/BaseAdmin.php:96
msgid "Babel"
msgstr "Babel"
-#: src/Module/BaseAdmin.php:111 src/Module/Debug/ActivityPubConversion.php:143
+#: src/Module/BaseAdmin.php:97 src/Module/Debug/ActivityPubConversion.php:129
msgid "ActivityPub Conversion"
msgstr "ActivityPub beszélgetés"
-#: src/Module/BaseAdmin.php:120
+#: src/Module/BaseAdmin.php:106
msgid "Addon Features"
msgstr "Bővítményszolgáltatások"
-#: src/Module/BaseAdmin.php:121 src/Module/BaseModeration.php:129
+#: src/Module/BaseAdmin.php:107 src/Module/BaseModeration.php:115
msgid "User registrations waiting for confirmation"
msgstr "Megerősítésre váró felhasználói regisztrációk"
-#: src/Module/BaseApi.php:455 src/Module/BaseApi.php:471
-#: src/Module/BaseApi.php:487
+#: src/Module/BaseApi.php:441 src/Module/BaseApi.php:457
+#: src/Module/BaseApi.php:473
msgid "Too Many Requests"
msgstr "Túl sok kérés"
-#: src/Module/BaseApi.php:456
+#: src/Module/BaseApi.php:442
#, php-format
msgid "Daily posting limit of %d post reached. The post was rejected."
msgid_plural "Daily posting limit of %d posts reached. The post was rejected."
msgstr[0] "A napi %d bejegyzésből álló beküldési korlát elérve. A bejegyzés vissza lett utasítva."
msgstr[1] "A napi %d bejegyzésből álló beküldési korlát elérve. A bejegyzés vissza lett utasítva."
-#: src/Module/BaseApi.php:472
+#: src/Module/BaseApi.php:458
#, php-format
msgid "Weekly posting limit of %d post reached. The post was rejected."
msgid_plural ""
@@ -6064,7 +6063,7 @@ msgid_plural ""
msgstr[0] "A heti %d bejegyzésből álló beküldési korlát elérve. A bejegyzés vissza lett utasítva."
msgstr[1] "A heti %d bejegyzésből álló beküldési korlát elérve. A bejegyzés vissza lett utasítva."
-#: src/Module/BaseApi.php:488
+#: src/Module/BaseApi.php:474
#, php-format
msgid "Monthly posting limit of %d post reached. The post was rejected."
msgid_plural ""
@@ -6072,84 +6071,84 @@ msgid_plural ""
msgstr[0] "A havi %d bejegyzésből álló beküldési korlát elérve. A bejegyzés vissza lett utasítva."
msgstr[1] "A havi %d bejegyzésből álló beküldési korlát elérve. A bejegyzés vissza lett utasítva."
-#: src/Module/BaseModeration.php:86
+#: src/Module/BaseModeration.php:72
msgid "You don't have access to moderation pages."
msgstr "Nincs hozzáférése a moderálási oldalakhoz."
-#: src/Module/BaseModeration.php:90
+#: src/Module/BaseModeration.php:76
msgid ""
"Submanaged account can't access the moderation pages. Please log back in as "
"the main account."
msgstr "Az alkezelt fiókok nem férhetnek hozzá a moderálási oldalakhoz. Jelentkezzen vissza a fő fiókkal."
-#: src/Module/BaseModeration.php:110 src/Module/Moderation/Reports.php:115
+#: src/Module/BaseModeration.php:96 src/Module/Moderation/Reports.php:101
msgid "Reports"
msgstr "Jelentések"
-#: src/Module/BaseModeration.php:113 src/Module/Moderation/Users/Index.php:148
-#: src/Module/Moderation/Users/Index.php:158
+#: src/Module/BaseModeration.php:99 src/Module/Moderation/Users/Index.php:134
+#: src/Module/Moderation/Users/Index.php:144
msgid "Users"
msgstr "Felhasználók"
-#: src/Module/BaseModeration.php:115
+#: src/Module/BaseModeration.php:101
msgid "Tools"
msgstr "Eszközök"
-#: src/Module/BaseModeration.php:116
+#: src/Module/BaseModeration.php:102
msgid "Contact Blocklist"
msgstr "Partnertiltólista"
-#: src/Module/BaseModeration.php:117
+#: src/Module/BaseModeration.php:103
msgid "Server Blocklist"
msgstr "Kiszolgáló-tiltólista"
-#: src/Module/BaseModeration.php:118 src/Module/Moderation/Item/Delete.php:62
+#: src/Module/BaseModeration.php:104 src/Module/Moderation/Item/Delete.php:48
msgid "Delete Item"
msgstr "Elem törlése"
-#: src/Module/BaseModeration.php:121 src/Module/Moderation/Item/Source.php:82
+#: src/Module/BaseModeration.php:107 src/Module/Moderation/Item/Source.php:68
msgid "Item Source"
msgstr "Elem forrása"
-#: src/Module/BaseProfile.php:52 src/Module/Contact.php:513
+#: src/Module/BaseProfile.php:38 src/Module/Contact.php:488
msgid "Profile Details"
msgstr "Profil részletei"
-#: src/Module/BaseProfile.php:60
+#: src/Module/BaseProfile.php:46
msgid "Conversations started"
msgstr "Beszélgetések elkezdve"
-#: src/Module/BaseProfile.php:111
+#: src/Module/BaseProfile.php:97
msgid "Only You Can See This"
msgstr "Csak Ön láthatja ezt"
-#: src/Module/BaseProfile.php:116 src/Module/Profile/Schedule.php:81
+#: src/Module/BaseProfile.php:102 src/Module/Profile/Schedule.php:67
msgid "Scheduled Posts"
msgstr "Ütemezett bejegyzések"
-#: src/Module/BaseProfile.php:119
+#: src/Module/BaseProfile.php:105
msgid "Posts that are scheduled for publishing"
msgstr "Bejegyzések, amelyek közzétételre vannak üzemezve"
-#: src/Module/BaseProfile.php:138 src/Module/BaseProfile.php:141
+#: src/Module/BaseProfile.php:124 src/Module/BaseProfile.php:127
msgid "Tips for New Members"
msgstr "Tippek új tagoknak"
-#: src/Module/BaseSearch.php:71
+#: src/Module/BaseSearch.php:57
#, php-format
msgid "People Search - %s"
msgstr "Emberek keresése – %s"
-#: src/Module/BaseSearch.php:75
+#: src/Module/BaseSearch.php:61
#, php-format
msgid "Group Search - %s"
msgstr "Csoportkeresés – %s"
-#: src/Module/BaseSearch.php:121 src/Module/Contact/MatchInterests.php:140
+#: src/Module/BaseSearch.php:107 src/Module/Contact/MatchInterests.php:136
msgid "No matches"
msgstr "Nincs találat"
-#: src/Module/BaseSearch.php:147
+#: src/Module/BaseSearch.php:133
#, php-format
msgid ""
"%d result was filtered out because your node blocks the domain it is "
@@ -6162,832 +6161,828 @@ msgid_plural ""
msgstr[0] "%d találat ki lett szűrve, mert az Ön csomópontja tiltja azt a tartományt, amelyen az regisztrálva van. A Névjegy oldalon felülvizsgálhatja azon tartományok listáját, amelyet a csomópontja jelenleg letilt."
msgstr[1] "%d találat ki lett szűrve, mert az Ön csomópontja tiltja azt a tartományt, amelyen azok regisztrálva vannak. A Névjegy oldalon felülvizsgálhatja azon tartományok listáját, amelyet a csomópontja jelenleg letilt."
-#: src/Module/BaseSettings.php:78
+#: src/Module/BaseSettings.php:64
msgid "Account"
msgstr "Fiók"
-#: src/Module/BaseSettings.php:85 src/Module/Security/TwoFactor/Verify.php:96
-#: src/Module/Settings/TwoFactor/Index.php:138
+#: src/Module/BaseSettings.php:71 src/Module/Security/TwoFactor/Verify.php:82
+#: src/Module/Settings/TwoFactor/Index.php:124
msgid "Two-factor authentication"
msgstr "Kétlépcsős hitelesítés"
-#: src/Module/BaseSettings.php:118
+#: src/Module/BaseSettings.php:104
msgid "Display"
msgstr "Megjelenítés"
-#: src/Module/BaseSettings.php:132 src/Module/Settings/Connectors.php:213
+#: src/Module/BaseSettings.php:118 src/Module/Settings/Connectors.php:195
msgid "Social Networks"
msgstr "Közösségi hálózatok"
-#: src/Module/BaseSettings.php:146 src/Module/Settings/Delegation.php:194
+#: src/Module/BaseSettings.php:132 src/Module/Settings/Delegation.php:180
msgid "Manage Accounts"
msgstr "Fiókok kezelése"
-#: src/Module/BaseSettings.php:153
+#: src/Module/BaseSettings.php:139
msgid "Connected apps"
msgstr "Kapcsolt alkalmazások"
-#: src/Module/BaseSettings.php:160
+#: src/Module/BaseSettings.php:146
msgid "Remote servers"
msgstr "Távoli kiszolgálók"
-#: src/Module/BaseSettings.php:167 src/Module/Settings/UserExport.php:98
+#: src/Module/BaseSettings.php:153 src/Module/Settings/UserExport.php:84
msgid "Export personal data"
msgstr "Személyes adatok exportálása"
-#: src/Module/BaseSettings.php:174
+#: src/Module/BaseSettings.php:160
msgid "Remove account"
msgstr "Fiók eltávolítása"
-#: src/Module/Bookmarklet.php:54
+#: src/Module/Bookmarklet.php:40
msgid "This page is missing a url parameter."
msgstr "Erről az oldalról hiányzik egy URL paraméter."
-#: src/Module/Bookmarklet.php:66
+#: src/Module/Bookmarklet.php:52
msgid "The post was created"
msgstr "A bejegyzés létrejött"
-#: src/Module/Calendar/Event/API.php:100 src/Module/Calendar/Event/API.php:135
-#: src/Module/Calendar/Event/Form.php:80
+#: src/Module/Calendar/Event/API.php:86 src/Module/Calendar/Event/API.php:121
+#: src/Module/Calendar/Event/Form.php:66
msgid "Invalid Request"
msgstr "Érvénytelen kérés"
-#: src/Module/Calendar/Event/API.php:109
+#: src/Module/Calendar/Event/API.php:95
msgid "Event id is missing."
msgstr "Az eseményazonosító hiányzik."
-#: src/Module/Calendar/Event/API.php:131
+#: src/Module/Calendar/Event/API.php:117
msgid "Failed to remove event"
msgstr "Nem sikerült eltávolítani az eseményt"
-#: src/Module/Calendar/Event/API.php:187 src/Module/Calendar/Event/API.php:189
+#: src/Module/Calendar/Event/API.php:173 src/Module/Calendar/Event/API.php:175
msgid "Event can not end before it has started."
msgstr "Az esemény nem fejeződhet be, mielőtt elkezdődött volna."
-#: src/Module/Calendar/Event/API.php:196 src/Module/Calendar/Event/API.php:198
+#: src/Module/Calendar/Event/API.php:182 src/Module/Calendar/Event/API.php:184
msgid "Event title and start time are required."
msgstr "Az esemény címe és a kezdési idő kötelező."
-#: src/Module/Calendar/Event/Form.php:208
+#: src/Module/Calendar/Event/Form.php:194
msgid "Starting date and Title are required."
msgstr "A kezdési dátum és a cím kötelező."
-#: src/Module/Calendar/Event/Form.php:209
-#: src/Module/Calendar/Event/Form.php:214
+#: src/Module/Calendar/Event/Form.php:195
+#: src/Module/Calendar/Event/Form.php:200
msgid "Event Starts:"
msgstr "Esemény kezdete:"
-#: src/Module/Calendar/Event/Form.php:209
-#: src/Module/Calendar/Event/Form.php:237 src/Module/Debug/Probe.php:59
-#: src/Module/Install.php:201 src/Module/Install.php:227
-#: src/Module/Install.php:232 src/Module/Install.php:246
-#: src/Module/Install.php:255 src/Module/Install.php:260
-#: src/Module/Install.php:266 src/Module/Install.php:271
-#: src/Module/Install.php:285 src/Module/Install.php:298
-#: src/Module/Install.php:325
-#: src/Module/Moderation/Blocklist/Server/Add.php:136
-#: src/Module/Moderation/Blocklist/Server/Add.php:138
-#: src/Module/Moderation/Blocklist/Server/Import.php:129
-#: src/Module/Moderation/Blocklist/Server/Index.php:86
-#: src/Module/Moderation/Blocklist/Server/Index.php:87
-#: src/Module/Moderation/Blocklist/Server/Index.php:115
-#: src/Module/Moderation/Blocklist/Server/Index.php:116
-#: src/Module/Moderation/Item/Delete.php:67 src/Module/Register.php:155
-#: src/Module/Security/TwoFactor/Verify.php:101
-#: src/Module/Settings/Channels.php:190 src/Module/Settings/Channels.php:211
-#: src/Module/Settings/TwoFactor/Index.php:161
-#: src/Module/Settings/TwoFactor/Verify.php:158
+#: src/Module/Calendar/Event/Form.php:195
+#: src/Module/Calendar/Event/Form.php:223 src/Module/Debug/Probe.php:45
+#: src/Module/Install.php:187 src/Module/Install.php:213
+#: src/Module/Install.php:218 src/Module/Install.php:232
+#: src/Module/Install.php:241 src/Module/Install.php:246
+#: src/Module/Install.php:252 src/Module/Install.php:257
+#: src/Module/Install.php:271 src/Module/Install.php:284
+#: src/Module/Install.php:311
+#: src/Module/Moderation/Blocklist/Server/Add.php:122
+#: src/Module/Moderation/Blocklist/Server/Add.php:124
+#: src/Module/Moderation/Blocklist/Server/Import.php:113
+#: src/Module/Moderation/Blocklist/Server/Index.php:72
+#: src/Module/Moderation/Blocklist/Server/Index.php:73
+#: src/Module/Moderation/Blocklist/Server/Index.php:101
+#: src/Module/Moderation/Blocklist/Server/Index.php:102
+#: src/Module/Moderation/Item/Delete.php:53 src/Module/Register.php:141
+#: src/Module/Security/TwoFactor/Verify.php:87
+#: src/Module/Settings/Channels.php:176 src/Module/Settings/Channels.php:197
+#: src/Module/Settings/TwoFactor/Index.php:147
+#: src/Module/Settings/TwoFactor/Verify.php:144
msgid "Required"
msgstr "Kötelező"
-#: src/Module/Calendar/Event/Form.php:223
-#: src/Module/Calendar/Event/Form.php:247
+#: src/Module/Calendar/Event/Form.php:209
+#: src/Module/Calendar/Event/Form.php:233
msgid "Finish date/time is not known or not relevant"
msgstr "A befejezési dátum vagy idő nem ismert vagy nem fontos"
-#: src/Module/Calendar/Event/Form.php:225
-#: src/Module/Calendar/Event/Form.php:230
+#: src/Module/Calendar/Event/Form.php:211
+#: src/Module/Calendar/Event/Form.php:216
msgid "Event Finishes:"
msgstr "Esemény befejezése:"
-#: src/Module/Calendar/Event/Form.php:237
-#: src/Module/Calendar/Event/Form.php:243
+#: src/Module/Calendar/Event/Form.php:223
+#: src/Module/Calendar/Event/Form.php:229
msgid "Title (BBCode not allowed)"
msgstr "Cím (BBCode nem engedélyezett)"
-#: src/Module/Calendar/Event/Form.php:239
+#: src/Module/Calendar/Event/Form.php:225
msgid "Description (BBCode allowed)"
msgstr "Leírás (BBCode engedélyezett)"
-#: src/Module/Calendar/Event/Form.php:241
+#: src/Module/Calendar/Event/Form.php:227
msgid "Location (BBCode not allowed)"
msgstr "Hely (BBCode nem engedélyezett)"
-#: src/Module/Calendar/Event/Form.php:244
-#: src/Module/Calendar/Event/Form.php:245
+#: src/Module/Calendar/Event/Form.php:230
+#: src/Module/Calendar/Event/Form.php:231
msgid "Share this event"
msgstr "Az esemény megosztása"
-#: src/Module/Calendar/Event/Form.php:251 src/Module/Profile/Profile.php:277
+#: src/Module/Calendar/Event/Form.php:237 src/Module/Profile/Profile.php:263
msgid "Basic"
msgstr "Alap"
-#: src/Module/Calendar/Export.php:94
+#: src/Module/Calendar/Export.php:80
msgid "This calendar format is not supported"
msgstr "Ez a naptárformátum nem támogatott"
-#: src/Module/Calendar/Export.php:96
+#: src/Module/Calendar/Export.php:82
msgid "No exportable data found"
msgstr "Nem található exportálható adat"
-#: src/Module/Calendar/Export.php:113
+#: src/Module/Calendar/Export.php:99
msgid "calendar"
msgstr "naptár"
-#: src/Module/Calendar/Show.php:124
+#: src/Module/Calendar/Show.php:110
msgid "Events"
msgstr "Események"
-#: src/Module/Calendar/Show.php:125
+#: src/Module/Calendar/Show.php:111
msgid "View"
msgstr "Nézet"
-#: src/Module/Calendar/Show.php:126
+#: src/Module/Calendar/Show.php:112
msgid "Create New Event"
msgstr "Új esemény létrehozása"
-#: src/Module/Calendar/Show.php:132 src/Module/Settings/Display.php:297
+#: src/Module/Calendar/Show.php:118 src/Module/Settings/Display.php:283
msgid "list"
msgstr "lista"
-#: src/Module/Circle.php:57
+#: src/Module/Circle.php:43
msgid "Could not create circle."
msgstr "Nem sikerült létrehozni a kört."
-#: src/Module/Circle.php:68 src/Module/Circle.php:216
-#: src/Module/Circle.php:240
+#: src/Module/Circle.php:54 src/Module/Circle.php:202
+#: src/Module/Circle.php:226
msgid "Circle not found."
msgstr "A kör nem található."
-#: src/Module/Circle.php:74
+#: src/Module/Circle.php:60
msgid "Circle name was not changed."
msgstr "A kör neve nem változott meg."
-#: src/Module/Circle.php:92
+#: src/Module/Circle.php:78
msgid "Unknown circle."
msgstr "Ismeretlen kör."
-#: src/Module/Circle.php:98 src/Module/Circle.php:107
-#: src/Module/Contact/Advanced.php:70 src/Module/Contact/Advanced.php:109
-#: src/Module/Contact/Contacts.php:71 src/Module/Contact/Conversations.php:86
-#: src/Module/Contact/Conversations.php:91
-#: src/Module/Contact/Conversations.php:96 src/Module/Contact/Media.php:61
-#: src/Module/Contact/Posts.php:78 src/Module/Contact/Posts.php:83
-#: src/Module/Contact/Posts.php:88 src/Module/Contact/Profile.php:159
-#: src/Module/Contact/Profile.php:164 src/Module/Contact/Profile.php:183
-#: src/Module/Contact/Redir.php:91 src/Module/Contact/Redir.php:145
-#: src/Module/FriendSuggest.php:71 src/Module/FriendSuggest.php:109
+#: src/Module/Circle.php:84 src/Module/Circle.php:93
+#: src/Module/Contact/Advanced.php:56 src/Module/Contact/Advanced.php:95
+#: src/Module/Contact/Contacts.php:57 src/Module/Contact/Conversations.php:72
+#: src/Module/Contact/Conversations.php:77
+#: src/Module/Contact/Conversations.php:82 src/Module/Contact/Media.php:47
+#: src/Module/Contact/Posts.php:64 src/Module/Contact/Posts.php:69
+#: src/Module/Contact/Posts.php:74 src/Module/Contact/Profile.php:145
+#: src/Module/Contact/Profile.php:150 src/Module/Contact/Profile.php:169
+#: src/Module/Contact/Redir.php:77 src/Module/Contact/Redir.php:131
+#: src/Module/FriendSuggest.php:57 src/Module/FriendSuggest.php:95
msgid "Contact not found."
msgstr "A partner nem található."
-#: src/Module/Circle.php:102 src/Module/Contact/Contacts.php:66
+#: src/Module/Circle.php:88 src/Module/Contact/Contacts.php:52
msgid "Invalid contact."
msgstr "Érvénytelen partner."
-#: src/Module/Circle.php:111 src/Module/Contact/Revoke.php:70
+#: src/Module/Circle.php:97 src/Module/Contact/Revoke.php:56
msgid "Contact is deleted."
msgstr "A partner törölve."
-#: src/Module/Circle.php:117
+#: src/Module/Circle.php:103
msgid "Unable to add the contact to the circle."
msgstr "Nem lehet hozzáadni a partnert a körhöz."
-#: src/Module/Circle.php:120
+#: src/Module/Circle.php:106
msgid "Contact successfully added to circle."
msgstr "A partner sikeresen hozzáadva a körhöz."
-#: src/Module/Circle.php:124
+#: src/Module/Circle.php:110
msgid "Unable to remove the contact from the circle."
msgstr "Nem lehet eltávolítani a partnert a körből."
-#: src/Module/Circle.php:127
+#: src/Module/Circle.php:113
msgid "Contact successfully removed from circle."
msgstr "A partner sikeresen eltávolítva a körből."
-#: src/Module/Circle.php:131
+#: src/Module/Circle.php:117
msgid "Bad request."
msgstr "Hibás kérés."
-#: src/Module/Circle.php:172
+#: src/Module/Circle.php:158
msgid "Save Circle"
msgstr "Kör mentése"
-#: src/Module/Circle.php:173
+#: src/Module/Circle.php:159
msgid "Filter"
msgstr "Szűrő"
-#: src/Module/Circle.php:179
+#: src/Module/Circle.php:165
msgid "Create a circle of contacts/friends."
msgstr "Partnerek vagy ismerősök körének létrehozása."
-#: src/Module/Circle.php:221
+#: src/Module/Circle.php:207
msgid "Unable to remove circle."
msgstr "Nem lehet eltávolítani a kört."
-#: src/Module/Circle.php:272
+#: src/Module/Circle.php:258
msgid "Delete Circle"
msgstr "Kör törlése"
-#: src/Module/Circle.php:282
+#: src/Module/Circle.php:268
msgid "Edit Circle Name"
msgstr "Kör nevének szerkesztése"
-#: src/Module/Circle.php:292
+#: src/Module/Circle.php:278
msgid "Members"
msgstr "Tagok"
-#: src/Module/Circle.php:295
+#: src/Module/Circle.php:281
msgid "Circle is empty"
msgstr "A kör üres"
-#: src/Module/Circle.php:311
+#: src/Module/Circle.php:297
msgid "Remove contact from circle"
msgstr "Partner eltávolítása a körből"
-#: src/Module/Circle.php:334
+#: src/Module/Circle.php:320
msgid "Click on a contact to add or remove."
msgstr "Kattintson egy partnerre a hozzáadáshoz vagy eltávolításhoz."
-#: src/Module/Circle.php:351
+#: src/Module/Circle.php:337
msgid "Add contact to circle"
msgstr "Partner hozzáadása a körhöz"
-#: src/Module/Contact.php:102
+#: src/Module/Contact.php:88
#, php-format
msgid "%d contact edited."
msgid_plural "%d contacts edited."
msgstr[0] "%d partner szerkesztve."
msgstr[1] "%d partner szerkesztve."
-#: src/Module/Contact.php:353
+#: src/Module/Contact.php:328
msgid "Show all contacts"
msgstr "Összes partner megjelenítése"
-#: src/Module/Contact.php:358 src/Module/Contact.php:437
-#: src/Module/Moderation/BaseUsers.php:85
+#: src/Module/Contact.php:333 src/Module/Contact.php:412
+#: src/Module/Moderation/BaseUsers.php:72
msgid "Pending"
msgstr "Függőben"
-#: src/Module/Contact.php:361
+#: src/Module/Contact.php:336
msgid "Only show pending contacts"
msgstr "Csak a függőben lévő partnerek megjelenítése"
-#: src/Module/Contact.php:366 src/Module/Contact.php:440
-#: src/Module/Moderation/BaseUsers.php:93
+#: src/Module/Contact.php:341 src/Module/Contact.php:415
+#: src/Module/Moderation/BaseUsers.php:80
msgid "Blocked"
msgstr "Tiltva"
-#: src/Module/Contact.php:369
+#: src/Module/Contact.php:344
msgid "Only show blocked contacts"
msgstr "Csak a tiltott partnerek megjelenítése"
-#: src/Module/Contact.php:374 src/Module/Contact.php:446
-#: src/Module/Settings/Server/Index.php:107 src/Object/Post.php:399
+#: src/Module/Contact.php:349 src/Module/Contact.php:421
+#: src/Module/Settings/Server/Index.php:93 src/Object/Post.php:385
msgid "Ignored"
msgstr "Mellőzve"
-#: src/Module/Contact.php:377
+#: src/Module/Contact.php:352
msgid "Only show ignored contacts"
msgstr "Csak a mellőzött partnerek megjelenítése"
-#: src/Module/Contact.php:382 src/Module/Contact.php:449
+#: src/Module/Contact.php:357 src/Module/Contact.php:424
msgid "Collapsed"
msgstr "Összecsukva"
-#: src/Module/Contact.php:385
+#: src/Module/Contact.php:360
msgid "Only show collapsed contacts"
msgstr "Csak az összecsukott partnerek megjelenítése"
-#: src/Module/Contact.php:390 src/Module/Contact.php:452
+#: src/Module/Contact.php:365 src/Module/Contact.php:427
msgid "Archived"
msgstr "Archiválva"
-#: src/Module/Contact.php:393
+#: src/Module/Contact.php:368
msgid "Only show archived contacts"
msgstr "Csak az archivált partnerek megjelenítése"
-#: src/Module/Contact.php:398 src/Module/Contact.php:443
+#: src/Module/Contact.php:373 src/Module/Contact.php:418
msgid "Hidden"
msgstr "Rejtett"
-#: src/Module/Contact.php:401
+#: src/Module/Contact.php:376
msgid "Only show hidden contacts"
msgstr "Csak a rejtett partnerek megjelenítése"
-#: src/Module/Contact.php:409
+#: src/Module/Contact.php:384
msgid "Organize your contact circles"
msgstr "Partnerkörök szervezése"
-#: src/Module/Contact.php:464
+#: src/Module/Contact.php:439
msgid "Search your contacts"
msgstr "Partnerek keresése"
-#: src/Module/Contact.php:465 src/Module/Search/Index.php:207
+#: src/Module/Contact.php:440 src/Module/Search/Index.php:193
#, php-format
msgid "Results for: %s"
msgstr "Találatok erre: %s"
-#: src/Module/Contact.php:473
+#: src/Module/Contact.php:448
msgid "Update"
msgstr "Frissítés"
-#: src/Module/Contact.php:474 src/Module/Contact/Profile.php:532
-#: src/Module/Moderation/Blocklist/Contact.php:117
-#: src/Module/Moderation/Users/Blocked.php:138
-#: src/Module/Moderation/Users/Index.php:154
+#: src/Module/Contact.php:449 src/Module/Contact/Profile.php:518
+#: src/Module/Moderation/Blocklist/Contact.php:103
+#: src/Module/Moderation/Users/Blocked.php:124
+#: src/Module/Moderation/Users/Index.php:140
msgid "Unblock"
msgstr "Tiltás feloldása"
-#: src/Module/Contact.php:475 src/Module/Contact/Profile.php:540
+#: src/Module/Contact.php:450 src/Module/Contact/Profile.php:526
msgid "Unignore"
msgstr "Mellőzés feloldása"
-#: src/Module/Contact.php:476 src/Module/Contact/Profile.php:548
+#: src/Module/Contact.php:451 src/Module/Contact/Profile.php:534
msgid "Uncollapse"
msgstr "Összecsukás megszüntetése"
-#: src/Module/Contact.php:478
+#: src/Module/Contact.php:453
msgid "Batch Actions"
msgstr "Tömeges műveletek"
-#: src/Module/Contact.php:521
+#: src/Module/Contact.php:496
msgid "Conversations started by this contact"
msgstr "A partner által elkezdett beszélgetések"
-#: src/Module/Contact.php:526
+#: src/Module/Contact.php:501
msgid "Posts and Comments"
msgstr "Bejegyzések és hozzászólások"
-#: src/Module/Contact.php:529
+#: src/Module/Contact.php:504
msgid "Individual Posts and Replies"
msgstr "Egyéni bejegyzések és válaszok"
-#: src/Module/Contact.php:537
+#: src/Module/Contact.php:512
msgid "Posts containing media objects"
msgstr "Médiaobjektumokat tartalmazó bejegyzések"
-#: src/Module/Contact.php:545
+#: src/Module/Contact.php:520
msgid "View all known contacts"
msgstr "Összes ismert partner megtekintése"
-#: src/Module/Contact.php:556
+#: src/Module/Contact.php:531
msgid "Advanced Contact Settings"
msgstr "Speciális partnerbeállítások"
-#: src/Module/Contact.php:592
+#: src/Module/Contact.php:567
msgid "Mutual Friendship"
msgstr "Kölcsönös ismeretség"
-#: src/Module/Contact.php:596
+#: src/Module/Contact.php:571
msgid "is a fan of yours"
msgstr "az Ön rajongója"
-#: src/Module/Contact.php:600
+#: src/Module/Contact.php:575
msgid "you are a fan of"
msgstr "Ön rajong érte:"
-#: src/Module/Contact.php:618
+#: src/Module/Contact.php:593
msgid "Pending outgoing contact request"
msgstr "Függőben lévő kimenő partnerkérés"
-#: src/Module/Contact.php:620
+#: src/Module/Contact.php:595
msgid "Pending incoming contact request"
msgstr "Függőben lévő bejövő partnerkérés"
-#: src/Module/Contact.php:633 src/Module/Contact/Profile.php:391
+#: src/Module/Contact.php:608 src/Module/Contact/Profile.php:377
#, php-format
msgid "Visit %s's profile [%s]"
msgstr "%s profiljának megtekintése [%s]"
-#: src/Module/Contact/Advanced.php:99
+#: src/Module/Contact/Advanced.php:85
msgid "Contact update failed."
msgstr "A partner frissítése sikertelen."
-#: src/Module/Contact/Advanced.php:130
+#: src/Module/Contact/Advanced.php:116
msgid "Return to contact editor"
msgstr "Visszatérés a partnerszerkesztőhöz"
-#: src/Module/Contact/Advanced.php:134
-#: src/Module/Moderation/Blocklist/Contact.php:122
-#: src/Module/Moderation/Reports.php:116
-#: src/Module/Moderation/Users/Active.php:126
-#: src/Module/Moderation/Users/Blocked.php:126
-#: src/Module/Moderation/Users/Create.php:70
-#: src/Module/Moderation/Users/Deleted.php:83
-#: src/Module/Moderation/Users/Index.php:140
-#: src/Module/Moderation/Users/Index.php:160
-#: src/Module/Moderation/Users/Pending.php:99 src/Module/Settings/OAuth.php:72
+#: src/Module/Contact/Advanced.php:120
+#: src/Module/Moderation/Blocklist/Contact.php:108
+#: src/Module/Moderation/Reports.php:102
+#: src/Module/Moderation/Users/Active.php:112
+#: src/Module/Moderation/Users/Blocked.php:112
+#: src/Module/Moderation/Users/Create.php:56
+#: src/Module/Moderation/Users/Deleted.php:69
+#: src/Module/Moderation/Users/Index.php:126
+#: src/Module/Moderation/Users/Index.php:146
+#: src/Module/Moderation/Users/Pending.php:85 src/Module/Settings/OAuth.php:58
msgid "Name"
msgstr "Név"
-#: src/Module/Contact/Advanced.php:135
+#: src/Module/Contact/Advanced.php:121
msgid "Account Nickname"
msgstr "Fiók beceneve"
-#: src/Module/Contact/Advanced.php:136
+#: src/Module/Contact/Advanced.php:122
msgid "Account URL"
msgstr "Fiók URL"
-#: src/Module/Contact/Advanced.php:137
+#: src/Module/Contact/Advanced.php:123
msgid "Poll/Feed URL"
msgstr "Lekérés vagy hírforrás URL"
-#: src/Module/Contact/Advanced.php:138
+#: src/Module/Contact/Advanced.php:124
msgid "New photo from this URL"
msgstr "Új fénykép erről az URL-ről"
-#: src/Module/Contact/Contacts.php:89
+#: src/Module/Contact/Contacts.php:75
msgid "No known contacts."
msgstr "Nincsenek ismert partnerek."
-#: src/Module/Contact/Contacts.php:103 src/Module/Profile/Common.php:128
+#: src/Module/Contact/Contacts.php:89 src/Module/Profile/Common.php:114
msgid "No common contacts."
msgstr "Nincsenek közös partnerek."
-#: src/Module/Contact/Contacts.php:115 src/Module/Profile/Contacts.php:135
+#: src/Module/Contact/Contacts.php:101 src/Module/Profile/Contacts.php:121
#, php-format
msgid "Follower (%s)"
msgid_plural "Followers (%s)"
msgstr[0] "Követő (%s)"
msgstr[1] "Követők (%s)"
-#: src/Module/Contact/Contacts.php:119 src/Module/Profile/Contacts.php:138
+#: src/Module/Contact/Contacts.php:105 src/Module/Profile/Contacts.php:124
#, php-format
msgid "Following (%s)"
msgid_plural "Following (%s)"
msgstr[0] "Követés (%s)"
msgstr[1] "Követés (%s)"
-#: src/Module/Contact/Contacts.php:123 src/Module/Profile/Contacts.php:141
+#: src/Module/Contact/Contacts.php:109 src/Module/Profile/Contacts.php:127
#, php-format
msgid "Mutual friend (%s)"
msgid_plural "Mutual friends (%s)"
msgstr[0] "Kölcsönösen ismerősök (%s)"
msgstr[1] "Kölcsönösen ismerősök (%s)"
-#: src/Module/Contact/Contacts.php:125 src/Module/Profile/Contacts.php:143
+#: src/Module/Contact/Contacts.php:111 src/Module/Profile/Contacts.php:129
#, php-format
msgid "These contacts both follow and are followed by %s."
msgstr "Ezeket a partnereket %s követi és ők is követik őt."
-#: src/Module/Contact/Contacts.php:131 src/Module/Profile/Common.php:116
+#: src/Module/Contact/Contacts.php:117 src/Module/Profile/Common.php:102
#, php-format
msgid "Common contact (%s)"
msgid_plural "Common contacts (%s)"
msgstr[0] "Közös partner (%s)"
msgstr[1] "Közös partnerek (%s)"
-#: src/Module/Contact/Contacts.php:133 src/Module/Profile/Common.php:118
+#: src/Module/Contact/Contacts.php:119 src/Module/Profile/Common.php:104
#, php-format
msgid ""
"Both %s and yourself have publicly interacted with these "
"contacts (follow, comment or likes on public posts)."
msgstr "%s és Ön is nyilvánosan kapcsolatba léptek ezekkel a partnerekkel (követés, hozzászólás vagy kedvelések a nyilvános bejegyzéseknél)."
-#: src/Module/Contact/Contacts.php:139 src/Module/Profile/Contacts.php:149
+#: src/Module/Contact/Contacts.php:125 src/Module/Profile/Contacts.php:135
#, php-format
msgid "Contact (%s)"
msgid_plural "Contacts (%s)"
msgstr[0] "Partner (%s)"
msgstr[1] "Partnerek (%s)"
-#: src/Module/Contact/Follow.php:70 src/Module/Contact/Redir.php:59
-#: src/Module/Contact/Redir.php:220 src/Module/Conversation/Community.php:166
-#: src/Module/Debug/ItemBody.php:38 src/Module/Diaspora/Receive.php:59
-#: src/Module/Item/Display.php:96 src/Module/Item/Feed.php:59
-#: src/Module/Item/Follow.php:41 src/Module/Item/Ignore.php:41
-#: src/Module/Item/Language.php:53 src/Module/Item/Pin.php:41
-#: src/Module/Item/Pin.php:56 src/Module/Item/Searchtext.php:53
-#: src/Module/Item/Star.php:42 src/Module/Update/Display.php:37
+#: src/Module/Contact/Follow.php:56 src/Module/Contact/Redir.php:45
+#: src/Module/Contact/Redir.php:206 src/Module/Conversation/Community.php:154
+#: src/Module/Debug/ItemBody.php:24 src/Module/Diaspora/Receive.php:45
+#: src/Module/Item/Display.php:82 src/Module/Item/Feed.php:45
+#: src/Module/Item/Follow.php:27 src/Module/Item/Ignore.php:27
+#: src/Module/Item/Language.php:39 src/Module/Item/Pin.php:27
+#: src/Module/Item/Pin.php:42 src/Module/Item/Searchtext.php:39
+#: src/Module/Item/Star.php:28 src/Module/Update/Display.php:23
msgid "Access denied."
msgstr "Hozzáférés megtagadva."
-#: src/Module/Contact/Follow.php:105 src/Module/Contact/Unfollow.php:125
-#: src/Module/Profile/RemoteFollow.php:133
+#: src/Module/Contact/Follow.php:91 src/Module/Contact/Unfollow.php:111
+#: src/Module/Profile/RemoteFollow.php:119
msgid "Submit Request"
msgstr "Kérés elküldése"
-#: src/Module/Contact/Follow.php:115
+#: src/Module/Contact/Follow.php:101
msgid "You already added this contact."
msgstr "Már hozzáadta ezt a partnert."
-#: src/Module/Contact/Follow.php:130
+#: src/Module/Contact/Follow.php:116
msgid "The network type couldn't be detected. Contact can't be added."
msgstr "A hálózat típusát nem sikerült felismerni. A partnert nem lehet hozzáadni."
-#: src/Module/Contact/Follow.php:138
+#: src/Module/Contact/Follow.php:124
msgid "Diaspora support isn't enabled. Contact can't be added."
msgstr "A Diaspora támogatása nincs engedélyezve. A partnert nem lehet hozzáadni."
-#: src/Module/Contact/Follow.php:143
-msgid "OStatus support is disabled. Contact can't be added."
-msgstr "Az OStatus támogatása le van tiltva. A partnert nem lehet hozzáadni."
-
-#: src/Module/Contact/Follow.php:168 src/Module/Profile/RemoteFollow.php:132
+#: src/Module/Contact/Follow.php:149 src/Module/Profile/RemoteFollow.php:118
msgid "Please answer the following:"
msgstr "Válaszoljon a következőre:"
-#: src/Module/Contact/Follow.php:169 src/Module/Contact/Unfollow.php:123
+#: src/Module/Contact/Follow.php:150 src/Module/Contact/Unfollow.php:109
msgid "Your Identity Address:"
msgstr "Az Ön személyazonosság-címe:"
-#: src/Module/Contact/Follow.php:170 src/Module/Contact/Profile.php:422
-#: src/Module/Contact/Unfollow.php:129
-#: src/Module/Moderation/Blocklist/Contact.php:131
-#: src/Module/Moderation/Reports.php:123
-#: src/Module/Notifications/Introductions.php:135
-#: src/Module/Notifications/Introductions.php:204
+#: src/Module/Contact/Follow.php:151 src/Module/Contact/Profile.php:408
+#: src/Module/Contact/Unfollow.php:115
+#: src/Module/Moderation/Blocklist/Contact.php:117
+#: src/Module/Moderation/Reports.php:109
+#: src/Module/Notifications/Introductions.php:121
+#: src/Module/Notifications/Introductions.php:190
msgid "Profile URL"
msgstr "Profil URL"
-#: src/Module/Contact/Follow.php:171 src/Module/Contact/Profile.php:434
-#: src/Module/Notifications/Introductions.php:197
-#: src/Module/Profile/Profile.php:236
+#: src/Module/Contact/Follow.php:152 src/Module/Contact/Profile.php:420
+#: src/Module/Notifications/Introductions.php:183
+#: src/Module/Profile/Profile.php:222
msgid "Tags:"
msgstr "Címkék:"
-#: src/Module/Contact/Follow.php:182
+#: src/Module/Contact/Follow.php:163
#, php-format
msgid "%s knows you"
msgstr "%s ismeri Önt"
-#: src/Module/Contact/Follow.php:183
+#: src/Module/Contact/Follow.php:164
msgid "Add a personal note:"
msgstr "Személyes jegyzet hozzáadása:"
-#: src/Module/Contact/Follow.php:192 src/Module/Contact/Unfollow.php:138
+#: src/Module/Contact/Follow.php:173 src/Module/Contact/Unfollow.php:124
msgid "Posts and Replies"
msgstr "Bejegyzések és válaszok"
-#: src/Module/Contact/Follow.php:221
+#: src/Module/Contact/Follow.php:202
msgid "The contact could not be added."
msgstr "A partnert nem sikerült hozzáadni."
-#: src/Module/Contact/MatchInterests.php:95
-#: src/Module/Media/Attachment/Upload.php:77
-#: src/Module/Media/Attachment/Upload.php:82
-#: src/Module/Media/Photo/Upload.php:81 src/Module/Media/Photo/Upload.php:86
-#: src/Module/Media/Photo/Upload.php:135
+#: src/Module/Contact/MatchInterests.php:81
+#: src/Module/Media/Attachment/Upload.php:63
+#: src/Module/Media/Attachment/Upload.php:68
+#: src/Module/Media/Photo/Upload.php:67 src/Module/Media/Photo/Upload.php:72
+#: src/Module/Media/Photo/Upload.php:121
msgid "Invalid request."
msgstr "Érvénytelen kérés."
-#: src/Module/Contact/MatchInterests.php:102
+#: src/Module/Contact/MatchInterests.php:88
msgid "No keywords to match. Please add keywords to your profile."
msgstr "Nincs illesztendő kulcsszó. Adjon kulcsszavakat a profiljához."
-#: src/Module/Contact/MatchInterests.php:145
+#: src/Module/Contact/MatchInterests.php:141
msgid "Profile Match"
msgstr "Profilegyezés"
-#: src/Module/Contact/Profile.php:145
+#: src/Module/Contact/Profile.php:131
msgid "Failed to update contact record."
msgstr "Nem sikerült frissíteni a partner rekordját."
-#: src/Module/Contact/Profile.php:209
+#: src/Module/Contact/Profile.php:195
msgid "Contact has been unblocked"
msgstr "A partner tiltása fel lett oldva"
-#: src/Module/Contact/Profile.php:213
+#: src/Module/Contact/Profile.php:199
msgid "Contact has been blocked"
msgstr "A partner tiltva lett"
-#: src/Module/Contact/Profile.php:225
+#: src/Module/Contact/Profile.php:211
msgid "Contact has been unignored"
msgstr "A partner mellőzése fel lett oldva"
-#: src/Module/Contact/Profile.php:229
+#: src/Module/Contact/Profile.php:215
msgid "Contact has been ignored"
msgstr "A partner mellőzve lett"
-#: src/Module/Contact/Profile.php:241
+#: src/Module/Contact/Profile.php:227
msgid "Contact has been uncollapsed"
msgstr "A partner összecsukása meg lett szüntetve"
-#: src/Module/Contact/Profile.php:245
+#: src/Module/Contact/Profile.php:231
msgid "Contact has been collapsed"
msgstr "A partner össze lett csukva"
-#: src/Module/Contact/Profile.php:273
+#: src/Module/Contact/Profile.php:259
#, php-format
msgid "You are mutual friends with %s"
msgstr "Ön kölcsönösen ismerős %s partnerrel"
-#: src/Module/Contact/Profile.php:274
+#: src/Module/Contact/Profile.php:260
#, php-format
msgid "You are sharing with %s"
msgstr "Ön megoszt %s partnerrel"
-#: src/Module/Contact/Profile.php:275
+#: src/Module/Contact/Profile.php:261
#, php-format
msgid "%s is sharing with you"
msgstr "%s megoszt Önnel"
-#: src/Module/Contact/Profile.php:291
+#: src/Module/Contact/Profile.php:277
msgid "Private communications are not available for this contact."
msgstr "A személyes kommunikációk nem érhetők el ennél a partnernél."
-#: src/Module/Contact/Profile.php:301
+#: src/Module/Contact/Profile.php:287
msgid "This contact is on a server you ignored."
msgstr "Ez a partner olyan kiszolgálón van, amelyet mellőzött."
-#: src/Module/Contact/Profile.php:304
+#: src/Module/Contact/Profile.php:290
msgid "Never"
msgstr "Soha"
-#: src/Module/Contact/Profile.php:307
+#: src/Module/Contact/Profile.php:293
msgid "(Update was not successful)"
msgstr "(a frissítés nem volt sikeres)"
-#: src/Module/Contact/Profile.php:307
+#: src/Module/Contact/Profile.php:293
msgid "(Update was successful)"
msgstr "(a frissítés sikeres volt)"
-#: src/Module/Contact/Profile.php:309 src/Module/Contact/Profile.php:503
+#: src/Module/Contact/Profile.php:295 src/Module/Contact/Profile.php:489
msgid "Suggest friends"
msgstr "Ismerősök ajánlása"
-#: src/Module/Contact/Profile.php:313
+#: src/Module/Contact/Profile.php:299
#, php-format
msgid "Network type: %s"
msgstr "Hálózat típusa: %s"
-#: src/Module/Contact/Profile.php:318
+#: src/Module/Contact/Profile.php:304
msgid "Communications lost with this contact!"
msgstr "A kommunikációk megszakadtak ezzel a partnerrel!"
-#: src/Module/Contact/Profile.php:324
+#: src/Module/Contact/Profile.php:310
msgid "Fetch further information for feeds"
msgstr "További információk lekérése a hírforrásokhoz"
-#: src/Module/Contact/Profile.php:326
+#: src/Module/Contact/Profile.php:312
msgid ""
"Fetch information like preview pictures, title and teaser from the feed "
"item. You can activate this if the feed doesn't contain much text. Keywords "
"are taken from the meta header in the feed item and are posted as hash tags."
msgstr "Információk lekérése a hírforrás eleméből, mint például előnézeti képek, cím és előzetes. Akkor kapcsolhatja be ezt, ha a hírforrás nem tartalmaz sok szöveget. A kulcsszavak a hírforrás elemében lévő metafejlécéből lesznek kiszedve, és kettős keresztes címkékként lesznek beküldve."
-#: src/Module/Contact/Profile.php:329
+#: src/Module/Contact/Profile.php:315
msgid "Fetch information"
msgstr "Információk lekérése"
-#: src/Module/Contact/Profile.php:330
+#: src/Module/Contact/Profile.php:316
msgid "Fetch keywords"
msgstr "Kulcsszavak lekérése"
-#: src/Module/Contact/Profile.php:331
+#: src/Module/Contact/Profile.php:317
msgid "Fetch information and keywords"
msgstr "Információk és kulcsszavak lekérése"
-#: src/Module/Contact/Profile.php:341 src/Module/Contact/Profile.php:346
-#: src/Module/Contact/Profile.php:351 src/Module/Contact/Profile.php:357
+#: src/Module/Contact/Profile.php:327 src/Module/Contact/Profile.php:332
+#: src/Module/Contact/Profile.php:337 src/Module/Contact/Profile.php:343
msgid "No mirroring"
msgstr "Nincs tükrözés"
-#: src/Module/Contact/Profile.php:342 src/Module/Contact/Profile.php:352
-#: src/Module/Contact/Profile.php:358
+#: src/Module/Contact/Profile.php:328 src/Module/Contact/Profile.php:338
+#: src/Module/Contact/Profile.php:344
msgid "Mirror as my own posting"
msgstr "Tükrözés saját beküldésként"
-#: src/Module/Contact/Profile.php:347 src/Module/Contact/Profile.php:353
+#: src/Module/Contact/Profile.php:333 src/Module/Contact/Profile.php:339
msgid "Native reshare"
msgstr "Natív újra megosztás"
-#: src/Module/Contact/Profile.php:373
+#: src/Module/Contact/Profile.php:359
msgid "Contact Information / Notes"
msgstr "Partner információ vagy jegyzetek"
-#: src/Module/Contact/Profile.php:374
+#: src/Module/Contact/Profile.php:360
msgid "Contact Settings"
msgstr "Partnerbeállítások"
-#: src/Module/Contact/Profile.php:382
+#: src/Module/Contact/Profile.php:368
msgid "Contact"
msgstr "Partner"
-#: src/Module/Contact/Profile.php:386
+#: src/Module/Contact/Profile.php:372
msgid "Their personal note"
msgstr "A személyes jegyzeteik"
-#: src/Module/Contact/Profile.php:388
+#: src/Module/Contact/Profile.php:374
msgid "Edit contact notes"
msgstr "Partner jegyzeteinek szerkesztése"
-#: src/Module/Contact/Profile.php:392
+#: src/Module/Contact/Profile.php:378
msgid "Block/Unblock contact"
msgstr "Partner tiltása vagy tiltásának feloldása"
-#: src/Module/Contact/Profile.php:393
-#: src/Module/Moderation/Report/Create.php:293
+#: src/Module/Contact/Profile.php:379
+#: src/Module/Moderation/Report/Create.php:279
msgid "Ignore contact"
msgstr "Partner mellőzése"
-#: src/Module/Contact/Profile.php:394
+#: src/Module/Contact/Profile.php:380
msgid "View conversations"
msgstr "Beszélgetések megtekintése"
-#: src/Module/Contact/Profile.php:399
+#: src/Module/Contact/Profile.php:385
msgid "Last update:"
msgstr "Utolsó frissítés:"
-#: src/Module/Contact/Profile.php:401
+#: src/Module/Contact/Profile.php:387
msgid "Update public posts"
msgstr "Nyilvános bejegyzések frissítése"
-#: src/Module/Contact/Profile.php:403 src/Module/Contact/Profile.php:513
+#: src/Module/Contact/Profile.php:389 src/Module/Contact/Profile.php:499
msgid "Update now"
msgstr "Frissítés most"
-#: src/Module/Contact/Profile.php:405
+#: src/Module/Contact/Profile.php:391
msgid "Awaiting connection acknowledge"
msgstr "Várakozás a kapcsolat nyugtázására"
-#: src/Module/Contact/Profile.php:406
+#: src/Module/Contact/Profile.php:392
msgid "Currently blocked"
msgstr "Jelenleg tiltva"
-#: src/Module/Contact/Profile.php:407
+#: src/Module/Contact/Profile.php:393
msgid "Currently ignored"
msgstr "Jelenleg mellőzve"
-#: src/Module/Contact/Profile.php:408
+#: src/Module/Contact/Profile.php:394
msgid "Currently collapsed"
msgstr "Jelenleg összecsukva"
-#: src/Module/Contact/Profile.php:409
+#: src/Module/Contact/Profile.php:395
msgid "Currently archived"
msgstr "Jelenleg archiválva"
-#: src/Module/Contact/Profile.php:412
+#: src/Module/Contact/Profile.php:398
msgid "Manage remote servers"
msgstr "Távoli kiszolgálók kezelése"
-#: src/Module/Contact/Profile.php:414
-#: src/Module/Notifications/Introductions.php:198
+#: src/Module/Contact/Profile.php:400
+#: src/Module/Notifications/Introductions.php:184
msgid "Hide this contact from others"
msgstr "A partner elrejtése mások elől"
-#: src/Module/Contact/Profile.php:414
+#: src/Module/Contact/Profile.php:400
msgid ""
"Replies/likes to your public posts may still be visible"
msgstr "A nyilvános bejegyzéseire adott válaszok vagy kedvelések továbbra is láthatóak lehetnek."
-#: src/Module/Contact/Profile.php:415
+#: src/Module/Contact/Profile.php:401
msgid "Notification for new posts"
msgstr "Értesítés új bejegyzéseknél"
-#: src/Module/Contact/Profile.php:415
+#: src/Module/Contact/Profile.php:401
msgid "Send a notification of every new post of this contact"
msgstr "Értesítés küldése a partner minden új bejegyzéséről."
-#: src/Module/Contact/Profile.php:417
+#: src/Module/Contact/Profile.php:403
msgid "Keyword Deny List"
msgstr "Kulcsszavas tiltólista"
-#: src/Module/Contact/Profile.php:417
+#: src/Module/Contact/Profile.php:403
msgid ""
"Comma separated list of keywords that should not be converted to hashtags, "
"when \"Fetch information and keywords\" is selected"
msgstr "Kulcsszavak vesszővel elválasztott listája, amelyeket nem szabad kettős keresztes címkékké átalakítani, ha az „Információk és kulcsszavak lekérése” ki van jelölve."
-#: src/Module/Contact/Profile.php:435
-#: src/Module/Settings/TwoFactor/Index.php:160
+#: src/Module/Contact/Profile.php:421
+#: src/Module/Settings/TwoFactor/Index.php:146
msgid "Actions"
msgstr "Műveletek"
-#: src/Module/Contact/Profile.php:437
-#: src/Module/Settings/TwoFactor/Index.php:140 view/theme/frio/theme.php:232
+#: src/Module/Contact/Profile.php:423
+#: src/Module/Settings/TwoFactor/Index.php:126 view/theme/frio/theme.php:220
msgid "Status"
msgstr "Állapot"
-#: src/Module/Contact/Profile.php:443
+#: src/Module/Contact/Profile.php:429
msgid "Mirror postings from this contact"
msgstr "Beküldés tükrözése ettől a partnertől"
-#: src/Module/Contact/Profile.php:445
+#: src/Module/Contact/Profile.php:431
msgid ""
"Mark this contact as remote_self, this will cause friendica to repost new "
"entries from this contact."
msgstr "A partner megjelölése távoli önmagaként. Ezt azt fogja okozni, hogy a Friendica újraküldi az ettől a partnertől származó új bejegyzéseket."
-#: src/Module/Contact/Profile.php:448
+#: src/Module/Contact/Profile.php:434
msgid "Channel Settings"
msgstr "Csatorna beállításai"
-#: src/Module/Contact/Profile.php:449
+#: src/Module/Contact/Profile.php:435
msgid "Frequency of this contact in relevant channels"
msgstr "A partner gyakorisága a kapcsolódó csatornákban"
-#: src/Module/Contact/Profile.php:450
+#: src/Module/Contact/Profile.php:436
msgid ""
"Depending on the type of the channel not all posts from this contact are "
"displayed. By default, posts need to have a minimum amount of interactions "
@@ -6997,706 +6992,706 @@ msgid ""
"block or hide the contact completely."
msgstr "A csatorna típusától függően nem minden bejegyzés jelenik meg ettől a partnertől. Alapértelmezetten a bejegyzéseknek minimális számú interakcióval (hozzászólások, kedvelések) kell rendelkezniük ahhoz, hogy megjelenjenek a csatornákon. Másrészt lehetnek olyan partnerek is, akik elárasztják a csatornát, így előfordulhat, hogy csak néhány bejegyzésüket szeretné látni. Vagy egyáltalán nem szeretné látni a tartalmaikat, de nem szeretné teljesen letiltani vagy elrejteni a partnert."
-#: src/Module/Contact/Profile.php:451
+#: src/Module/Contact/Profile.php:437
msgid "Default frequency"
msgstr "Alapértelmezett gyakoriság"
-#: src/Module/Contact/Profile.php:451
+#: src/Module/Contact/Profile.php:437
msgid ""
"Posts by this contact are displayed in the \"for you\" channel if you "
"interact often with this contact or if a post reached some level of "
"interaction."
msgstr "Ennek a partnernek a bejegyzései akkor jelennek meg az „Önnek” csatornán, ha gyakran lép kapcsolatba ezzel a partnerrel, vagy ha egy bejegyzés elért egy bizonyos interakciós szintet."
-#: src/Module/Contact/Profile.php:452
+#: src/Module/Contact/Profile.php:438
msgid "Display all posts of this contact"
msgstr "A partner összes bejegyzésének megjelenítése"
-#: src/Module/Contact/Profile.php:452
+#: src/Module/Contact/Profile.php:438
msgid "All posts from this contact will appear on the \"for you\" channel"
msgstr "Ennek a partnernek az összes bejegyzése megjelenik az „Önnek” csatornán."
-#: src/Module/Contact/Profile.php:453
+#: src/Module/Contact/Profile.php:439
msgid "Display only few posts"
msgstr "Csak néhány bejegyzés megjelenítése"
-#: src/Module/Contact/Profile.php:453
+#: src/Module/Contact/Profile.php:439
msgid ""
"When a contact creates a lot of posts in a short period, this setting "
"reduces the number of displayed posts in every channel."
msgstr "Ha egy partner rövid időn belül sok bejegyzést hoz létre, akkor ez a beállítás csökkenti a megjelenített bejegyzések számát minden csatornán."
-#: src/Module/Contact/Profile.php:454
+#: src/Module/Contact/Profile.php:440
msgid "Never display posts"
msgstr "Soha se jelenítsen meg bejegyzéseket"
-#: src/Module/Contact/Profile.php:454
+#: src/Module/Contact/Profile.php:440
msgid "Posts from this contact will never be displayed in any channel"
msgstr "Ennek a partnernek a bejegyzései soha sem jelennek meg semmilyen csatornán."
-#: src/Module/Contact/Profile.php:455
+#: src/Module/Contact/Profile.php:441
msgid "Channel Only"
msgstr "Csak csatorna"
-#: src/Module/Contact/Profile.php:455
+#: src/Module/Contact/Profile.php:441
msgid ""
"If enabled, posts from this contact will only appear in channels and network"
" streams in circles, but not in the general network stream."
msgstr "Ha engedélyezve van, akkor az ettől a partnertől származó bejegyzések csak a körökben lévő csatornákon és hálózati adatfolyamokon jelennek meg, de az általános hálózati adatfolyamban nem."
-#: src/Module/Contact/Profile.php:523
+#: src/Module/Contact/Profile.php:509
msgid "Refetch contact data"
msgstr "Partneradatok ismételt lekérése"
-#: src/Module/Contact/Profile.php:534
+#: src/Module/Contact/Profile.php:520
msgid "Toggle Blocked status"
msgstr "Tiltott állapot átváltása"
-#: src/Module/Contact/Profile.php:542
+#: src/Module/Contact/Profile.php:528
msgid "Toggle Ignored status"
msgstr "Mellőzött állapot átváltása"
-#: src/Module/Contact/Profile.php:550
+#: src/Module/Contact/Profile.php:536
msgid "Toggle Collapsed status"
msgstr "Összecsukott állapot átváltása"
-#: src/Module/Contact/Profile.php:557 src/Module/Contact/Revoke.php:103
+#: src/Module/Contact/Profile.php:543 src/Module/Contact/Revoke.php:89
msgid "Revoke Follow"
msgstr "Követés visszavonása"
-#: src/Module/Contact/Profile.php:559
+#: src/Module/Contact/Profile.php:545
msgid "Revoke the follow from this contact"
msgstr "A követés visszavonása ettől a partnertől"
-#: src/Module/Contact/Redir.php:139
+#: src/Module/Contact/Redir.php:125
msgid "Bad Request."
msgstr "Hibás kérés."
-#: src/Module/Contact/Revoke.php:74
+#: src/Module/Contact/Revoke.php:60
msgid "Contact is being deleted."
msgstr "A partner törlésre került."
-#: src/Module/Contact/Revoke.php:88
+#: src/Module/Contact/Revoke.php:74
msgid "Follow was successfully revoked."
msgstr "A követés sikeresen vissza lett vonva."
-#: src/Module/Contact/Revoke.php:104
+#: src/Module/Contact/Revoke.php:90
msgid ""
"Do you really want to revoke this contact's follow? This cannot be undone "
"and they will have to manually follow you back again."
msgstr "Valóban vissza szeretné vonni ennek a partnernek a követését? Ezt a műveletet nem lehet visszavonni, és a partnernek kézzel kell majd újra követnie Önt."
-#: src/Module/Contact/Suggestions.php:62
+#: src/Module/Contact/Suggestions.php:48
msgid ""
"No suggestions available. If this is a new site, please try again in 24 "
"hours."
msgstr "Nem érhetők el javaslatok. Ha ez egy új oldal, akkor próbálja újra 24 óra múlva."
-#: src/Module/Contact/Unfollow.php:98 src/Module/Contact/Unfollow.php:167
+#: src/Module/Contact/Unfollow.php:84 src/Module/Contact/Unfollow.php:153
msgid "You aren't following this contact."
msgstr "Ön nem követi ezt a partnert."
-#: src/Module/Contact/Unfollow.php:103
+#: src/Module/Contact/Unfollow.php:89
msgid "Unfollowing is currently not supported by your network."
msgstr "A követés megszüntetését jelenleg nem támogatja a hálózata."
-#: src/Module/Contact/Unfollow.php:121
+#: src/Module/Contact/Unfollow.php:107
msgid "Disconnect/Unfollow"
msgstr "Leválasztás vagy követés megszüntetése"
-#: src/Module/Contact/Unfollow.php:175
+#: src/Module/Contact/Unfollow.php:161
msgid "Contact was successfully unfollowed"
msgstr "A partner követése sikeresen meg lett szüntetve"
-#: src/Module/Contact/Unfollow.php:178
+#: src/Module/Contact/Unfollow.php:164
msgid "Unable to unfollow this contact, please contact your administrator"
msgstr "Nem lehet megszüntetni ennek a partnernek a követését, vegye fel a kapcsolatot az adminisztrátorral"
-#: src/Module/Conversation/Channel.php:139
-#: src/Module/Conversation/Community.php:126 src/Module/Search/Index.php:152
-#: src/Module/Search/Index.php:194
+#: src/Module/Conversation/Channel.php:125
+#: src/Module/Conversation/Community.php:114 src/Module/Search/Index.php:138
+#: src/Module/Search/Index.php:180
msgid "No results."
msgstr "Nincs találat."
-#: src/Module/Conversation/Channel.php:177
+#: src/Module/Conversation/Channel.php:163
msgid "Channel not available."
msgstr "A csatorna nem érhető el."
-#: src/Module/Conversation/Community.php:92
+#: src/Module/Conversation/Community.php:80
msgid ""
"This community stream shows all public posts received by this node. They may"
" not reflect the opinions of this node’s users."
msgstr "Ez a közösségi adatfolyam megjeleníti az összes nyilvános bejegyzést, amelyet ez a csomópont megkapott. Előfordulhat, hogy azok nem tükrözik ezen csomópont felhasználóinak véleményét."
-#: src/Module/Conversation/Community.php:180
+#: src/Module/Conversation/Community.php:168
msgid "Community option not available."
msgstr "A közösségi beállítás nem érhető el."
-#: src/Module/Conversation/Community.php:196
+#: src/Module/Conversation/Community.php:184
msgid "Not available."
msgstr "Nem érhető el."
-#: src/Module/Conversation/Network.php:216
+#: src/Module/Conversation/Network.php:202
msgid "No such circle"
msgstr "Nincs ilyen kör"
-#: src/Module/Conversation/Network.php:220
+#: src/Module/Conversation/Network.php:206
#, php-format
msgid "Circle: %s"
msgstr "Kör: %s"
-#: src/Module/Conversation/Network.php:239
+#: src/Module/Conversation/Network.php:226
#, php-format
msgid "Error %d (%s) while fetching the timeline."
msgstr "Hiba %d (%s) az idővonal lekérése során."
-#: src/Module/Conversation/Network.php:316
+#: src/Module/Conversation/Network.php:304
msgid "Network feed not available."
msgstr "A hálózati hírforrás nem érhető el."
-#: src/Module/Conversation/Timeline.php:204
+#: src/Module/Conversation/Timeline.php:190
msgid "Include"
msgstr "Tartalmazás"
-#: src/Module/Conversation/Timeline.php:205
+#: src/Module/Conversation/Timeline.php:191
msgid "Hide"
msgstr "Elrejtés"
-#: src/Module/Credits.php:44
+#: src/Module/Credits.php:30
msgid "Credits"
msgstr "Köszönetnyilvánítás"
-#: src/Module/Credits.php:45
+#: src/Module/Credits.php:31
msgid ""
"Friendica is a community project, that would not be possible without the "
"help of many people. Here is a list of those who have contributed to the "
"code or the translation of Friendica. Thank you all!"
msgstr "A Friendica egy közösségi projekt, amely nem lehetne lehetséges a sok ember segítsége nélkül. Itt van azok listája, akik közreműködtek a kódban vagy a Friendica fordításában. Köszönet mindannyiuknak!"
-#: src/Module/Debug/ActivityPubConversion.php:59
+#: src/Module/Debug/ActivityPubConversion.php:45
msgid "Formatted"
msgstr "Formázott"
-#: src/Module/Debug/ActivityPubConversion.php:71
+#: src/Module/Debug/ActivityPubConversion.php:57
msgid "Activity"
msgstr "Tevékenység"
-#: src/Module/Debug/ActivityPubConversion.php:123
+#: src/Module/Debug/ActivityPubConversion.php:109
msgid "Object data"
msgstr "Objektum adatai"
-#: src/Module/Debug/ActivityPubConversion.php:130
+#: src/Module/Debug/ActivityPubConversion.php:116
msgid "Result Item"
msgstr "Eredményelem"
-#: src/Module/Debug/ActivityPubConversion.php:135
-#: src/Module/Debug/Babel.php:300 src/Module/Moderation/Item/Source.php:93
-#: src/Module/Security/TwoFactor/Verify.php:98
+#: src/Module/Debug/ActivityPubConversion.php:121
+#: src/Module/Debug/Babel.php:286 src/Module/Moderation/Item/Source.php:79
+#: src/Module/Security/TwoFactor/Verify.php:84
msgid "Error"
msgid_plural "Errors"
msgstr[0] "Hiba"
msgstr[1] "Hibák"
-#: src/Module/Debug/ActivityPubConversion.php:144
+#: src/Module/Debug/ActivityPubConversion.php:130
msgid "Source activity"
msgstr "Forrástevékenység"
-#: src/Module/Debug/Babel.php:58
+#: src/Module/Debug/Babel.php:44
msgid "Source input"
msgstr "Forrás bevitele"
-#: src/Module/Debug/Babel.php:64
+#: src/Module/Debug/Babel.php:50
msgid "BBCode::toPlaintext"
msgstr "BBCode::toPlaintext"
-#: src/Module/Debug/Babel.php:70
+#: src/Module/Debug/Babel.php:56
msgid "BBCode::convert (raw HTML)"
msgstr "BBCode::convert (nyers HTML)"
-#: src/Module/Debug/Babel.php:75
+#: src/Module/Debug/Babel.php:61
msgid "BBCode::convert (hex)"
msgstr "BBCode::convert (hexa)"
-#: src/Module/Debug/Babel.php:80
+#: src/Module/Debug/Babel.php:66
msgid "BBCode::convert"
msgstr "BBCode::convert"
-#: src/Module/Debug/Babel.php:86
+#: src/Module/Debug/Babel.php:72
msgid "BBCode::convert => HTML::toBBCode"
msgstr "BBCode::convert => HTML::toBBCode"
-#: src/Module/Debug/Babel.php:92
+#: src/Module/Debug/Babel.php:78
msgid "BBCode::toMarkdown"
msgstr "BBCode::toMarkdown"
-#: src/Module/Debug/Babel.php:98
+#: src/Module/Debug/Babel.php:84
msgid "BBCode::toMarkdown => Markdown::convert (raw HTML)"
msgstr "BBCode::toMarkdown => Markdown::convert (nyers HTML)"
-#: src/Module/Debug/Babel.php:102
+#: src/Module/Debug/Babel.php:88
msgid "BBCode::toMarkdown => Markdown::convert"
msgstr "BBCode::toMarkdown => Markdown::convert"
-#: src/Module/Debug/Babel.php:108
+#: src/Module/Debug/Babel.php:94
msgid "BBCode::toMarkdown => Markdown::toBBCode"
msgstr "BBCode::toMarkdown => Markdown::toBBCode"
-#: src/Module/Debug/Babel.php:114
+#: src/Module/Debug/Babel.php:100
msgid "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode"
msgstr "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode"
-#: src/Module/Debug/Babel.php:122
+#: src/Module/Debug/Babel.php:108
msgid "Item Body"
msgstr "Elem törzse"
-#: src/Module/Debug/Babel.php:126
+#: src/Module/Debug/Babel.php:112
msgid "Item Tags"
msgstr "Elem címkéi"
-#: src/Module/Debug/Babel.php:132
+#: src/Module/Debug/Babel.php:118
msgid "PageInfo::appendToBody"
msgstr "PageInfo::appendToBody"
-#: src/Module/Debug/Babel.php:137
+#: src/Module/Debug/Babel.php:123
msgid "PageInfo::appendToBody => BBCode::convert (raw HTML)"
msgstr "PageInfo::appendToBody => BBCode::convert (nyers HTML)"
-#: src/Module/Debug/Babel.php:141
+#: src/Module/Debug/Babel.php:127
msgid "PageInfo::appendToBody => BBCode::convert"
msgstr "PageInfo::appendToBody => BBCode::convert"
-#: src/Module/Debug/Babel.php:148
+#: src/Module/Debug/Babel.php:134
msgid "Source input (Diaspora format)"
msgstr "Forrás bevitele (Diaspora formátum)"
-#: src/Module/Debug/Babel.php:157
+#: src/Module/Debug/Babel.php:143
msgid "Source input (Markdown)"
msgstr "Forrás bevitele (Markdown)"
-#: src/Module/Debug/Babel.php:163
+#: src/Module/Debug/Babel.php:149
msgid "Markdown::convert (raw HTML)"
msgstr "Markdown::convert (nyers HTML)"
-#: src/Module/Debug/Babel.php:168
+#: src/Module/Debug/Babel.php:154
msgid "Markdown::convert"
msgstr "Markdown::convert"
-#: src/Module/Debug/Babel.php:174
+#: src/Module/Debug/Babel.php:160
msgid "Markdown::toBBCode"
msgstr "Markdown::toBBCode"
-#: src/Module/Debug/Babel.php:181
+#: src/Module/Debug/Babel.php:167
msgid "Raw HTML input"
msgstr "Nyers HTML bevitel"
-#: src/Module/Debug/Babel.php:186
+#: src/Module/Debug/Babel.php:172
msgid "HTML Input"
msgstr "HTML bevitel"
-#: src/Module/Debug/Babel.php:193
+#: src/Module/Debug/Babel.php:179
msgid "HTML Purified (raw)"
msgstr "HTML megtisztítva (nyers)"
-#: src/Module/Debug/Babel.php:198
+#: src/Module/Debug/Babel.php:184
msgid "HTML Purified (hex)"
msgstr "HTML megtisztítva (hexa)"
-#: src/Module/Debug/Babel.php:203
+#: src/Module/Debug/Babel.php:189
msgid "HTML Purified"
msgstr "HTML megtisztítva"
-#: src/Module/Debug/Babel.php:209
+#: src/Module/Debug/Babel.php:195
msgid "HTML::toBBCode"
msgstr "HTML::toBBCode"
-#: src/Module/Debug/Babel.php:215
+#: src/Module/Debug/Babel.php:201
msgid "HTML::toBBCode => BBCode::convert"
msgstr "HTML::toBBCode => BBCode::convert"
-#: src/Module/Debug/Babel.php:220
+#: src/Module/Debug/Babel.php:206
msgid "HTML::toBBCode => BBCode::convert (raw HTML)"
msgstr "HTML::toBBCode => BBCode::convert (nyers HTML)"
-#: src/Module/Debug/Babel.php:226
+#: src/Module/Debug/Babel.php:212
msgid "HTML::toBBCode => BBCode::toPlaintext"
msgstr "HTML::toBBCode => BBCode::toPlaintext"
-#: src/Module/Debug/Babel.php:232
+#: src/Module/Debug/Babel.php:218
msgid "HTML::toMarkdown"
msgstr "HTML::toMarkdown"
-#: src/Module/Debug/Babel.php:238
+#: src/Module/Debug/Babel.php:224
msgid "HTML::toPlaintext"
msgstr "HTML::toPlaintext"
-#: src/Module/Debug/Babel.php:244
+#: src/Module/Debug/Babel.php:230
msgid "HTML::toPlaintext (compact)"
msgstr "HTML::toPlaintext (tömör)"
-#: src/Module/Debug/Babel.php:262
+#: src/Module/Debug/Babel.php:248
msgid "Decoded post"
msgstr "Dekódolt bejegyzés"
-#: src/Module/Debug/Babel.php:283
+#: src/Module/Debug/Babel.php:269
msgid "Post array before expand entities"
msgstr "A bejegyzéstömb az entitások kiterjesztése előtt"
-#: src/Module/Debug/Babel.php:290
+#: src/Module/Debug/Babel.php:276
msgid "Post converted"
msgstr "Bejegyzés átalakítva"
-#: src/Module/Debug/Babel.php:295
+#: src/Module/Debug/Babel.php:281
msgid "Converted body"
msgstr "Átalakított törzs"
-#: src/Module/Debug/Babel.php:301
+#: src/Module/Debug/Babel.php:287
msgid "Twitter addon is absent from the addon/ folder."
msgstr "A Twitter bővítmény hiányzik az „addon/” mappából."
-#: src/Module/Debug/Babel.php:311
+#: src/Module/Debug/Babel.php:297
msgid "Babel Diagnostic"
msgstr "Babel diagnosztika"
-#: src/Module/Debug/Babel.php:313
+#: src/Module/Debug/Babel.php:299
msgid "Source text"
msgstr "Forrásszöveg"
-#: src/Module/Debug/Babel.php:314
+#: src/Module/Debug/Babel.php:300
msgid "BBCode"
msgstr "BBCode"
-#: src/Module/Debug/Babel.php:316
+#: src/Module/Debug/Babel.php:302
msgid "Markdown"
msgstr "Markdown"
-#: src/Module/Debug/Babel.php:317
+#: src/Module/Debug/Babel.php:303
msgid "HTML"
msgstr "HTML"
-#: src/Module/Debug/Babel.php:319
+#: src/Module/Debug/Babel.php:305
msgid "Twitter Source / Tweet URL (requires API key)"
msgstr "Twitter forrás vagy Tweet URL (API-kulcsot igényel)"
-#: src/Module/Debug/Feed.php:53 src/Module/Filer/SaveTag.php:47
-#: src/Module/Settings/Profile/Index.php:180
+#: src/Module/Debug/Feed.php:39 src/Module/Filer/SaveTag.php:33
+#: src/Module/Settings/Profile/Index.php:166
msgid "You must be logged in to use this module"
msgstr "Bejelentkezve kell lennie a modul használatához"
-#: src/Module/Debug/Feed.php:78
+#: src/Module/Debug/Feed.php:64
msgid "Source URL"
msgstr "Forrás URL"
-#: src/Module/Debug/Localtime.php:49
+#: src/Module/Debug/Localtime.php:35
msgid "Time Conversion"
msgstr "Időátalakítás"
-#: src/Module/Debug/Localtime.php:50
+#: src/Module/Debug/Localtime.php:36
msgid ""
"Friendica provides this service for sharing events with other networks and "
"friends in unknown timezones."
msgstr "A Friendica ezt a szolgáltatást az ismeretlen időzónákban lévő más hálózatokkal és ismerősökkel történő események megosztásához biztosítja."
-#: src/Module/Debug/Localtime.php:51
+#: src/Module/Debug/Localtime.php:37
#, php-format
msgid "UTC time: %s"
msgstr "UTC idő: %s"
-#: src/Module/Debug/Localtime.php:54
+#: src/Module/Debug/Localtime.php:40
#, php-format
msgid "Current timezone: %s"
msgstr "Jelenlegi időzóna: %s"
-#: src/Module/Debug/Localtime.php:58
+#: src/Module/Debug/Localtime.php:44
#, php-format
msgid "Converted localtime: %s"
msgstr "Átalakított helyi idő: %s"
-#: src/Module/Debug/Localtime.php:62
+#: src/Module/Debug/Localtime.php:48
msgid "Please select your timezone:"
msgstr "Válassza ki az időzónáját:"
-#: src/Module/Debug/Probe.php:38 src/Module/Debug/WebFinger.php:37
+#: src/Module/Debug/Probe.php:24 src/Module/Debug/WebFinger.php:23
msgid "Only logged in users are permitted to perform a probing."
msgstr "Csak bejelentkezett felhasználóknak engedélyezett a szondázás végrehajtása."
-#: src/Module/Debug/Probe.php:52
+#: src/Module/Debug/Probe.php:38
msgid "Probe Diagnostic"
msgstr "Szondázási diagnosztika"
-#: src/Module/Debug/Probe.php:53
+#: src/Module/Debug/Probe.php:39
msgid "Output"
msgstr "Kimenet"
-#: src/Module/Debug/Probe.php:56
+#: src/Module/Debug/Probe.php:42
msgid "Lookup address"
msgstr "Keresési cím"
-#: src/Module/Debug/WebFinger.php:50
+#: src/Module/Debug/WebFinger.php:36
msgid "Webfinger Diagnostic"
msgstr "WebFinger diagnosztika"
-#: src/Module/Debug/WebFinger.php:52
+#: src/Module/Debug/WebFinger.php:38
msgid "Lookup address:"
msgstr "Keresési cím:"
-#: src/Module/Directory.php:75
+#: src/Module/Directory.php:61
msgid "No entries (some entries may be hidden)."
msgstr "Nincsenek bejegyzések (néhány bejegyzés rejtve lehet)."
-#: src/Module/Directory.php:91
+#: src/Module/Directory.php:77
msgid "Find on this site"
msgstr "Keresés ezen az oldalon"
-#: src/Module/Directory.php:93
+#: src/Module/Directory.php:79
msgid "Results for:"
msgstr "Találat erre:"
-#: src/Module/Directory.php:95
+#: src/Module/Directory.php:81
msgid "Site Directory"
msgstr "Oldal könyvtára"
-#: src/Module/Filer/RemoveTag.php:105
+#: src/Module/Filer/RemoveTag.php:91
msgid "Item was not deleted"
msgstr "Az elem nem lett törölve"
-#: src/Module/Filer/RemoveTag.php:115
+#: src/Module/Filer/RemoveTag.php:101
msgid "Item was not removed"
msgstr "Az elem nem lett eltávolítva"
-#: src/Module/Filer/SaveTag.php:73
+#: src/Module/Filer/SaveTag.php:59
msgid "- select -"
msgstr "– válasszon –"
-#: src/Module/FriendSuggest.php:82
+#: src/Module/FriendSuggest.php:68
msgid "Suggested contact not found."
msgstr "Az ajánlott partner nem található."
-#: src/Module/FriendSuggest.php:100
+#: src/Module/FriendSuggest.php:86
msgid "Friend suggestion sent."
msgstr "Az ismerősajánlás elküldve."
-#: src/Module/FriendSuggest.php:137
+#: src/Module/FriendSuggest.php:123
msgid "Suggest Friends"
msgstr "Ismerősök ajánlása"
-#: src/Module/FriendSuggest.php:140
+#: src/Module/FriendSuggest.php:126
#, php-format
msgid "Suggest a friend for %s"
msgstr "Ismerős ajánlása %s számára"
-#: src/Module/Friendica.php:81
+#: src/Module/Friendica.php:67
msgid "Installed addons/apps:"
msgstr "Telepített bővítmények vagy alkalmazások:"
-#: src/Module/Friendica.php:86
+#: src/Module/Friendica.php:72
msgid "No installed addons/apps"
msgstr "Nincsenek telepített bővítmények vagy alkalmazások"
-#: src/Module/Friendica.php:91
+#: src/Module/Friendica.php:77
#, php-format
msgid "Read about the Terms of Service of this node."
msgstr "Olvassa el ennek a csomópontnak a használati feltételeit."
-#: src/Module/Friendica.php:98
+#: src/Module/Friendica.php:84
msgid "On this server the following remote servers are blocked."
msgstr "Ezen a kiszolgálón a következő távoli kiszolgálók vannak tiltva."
-#: src/Module/Friendica.php:101
-#: src/Module/Moderation/Blocklist/Server/Index.php:87
-#: src/Module/Moderation/Blocklist/Server/Index.php:111
-#: src/Module/Settings/Channels.php:232
+#: src/Module/Friendica.php:87
+#: src/Module/Moderation/Blocklist/Server/Index.php:73
+#: src/Module/Moderation/Blocklist/Server/Index.php:97
+#: src/Module/Settings/Channels.php:218
msgid "Reason for the block"
msgstr "A tiltás oka"
-#: src/Module/Friendica.php:103
+#: src/Module/Friendica.php:89
msgid "Download this list in CSV format"
msgstr "A lista letöltése CSV formátumban"
-#: src/Module/Friendica.php:117
+#: src/Module/Friendica.php:103
#, php-format
msgid ""
"This is Friendica, version %s that is running at the web location %s. The "
"database version is %s, the post update version is %s."
msgstr "Ez egy %s verziójú Friendica, amely a %s helyen fut a weben. Az adatbázis verziója %s, a bejegyzésfrissítés verziója %s."
-#: src/Module/Friendica.php:122
+#: src/Module/Friendica.php:108
msgid ""
"Please visit Friendi.ca to learn more "
"about the Friendica project."
msgstr "Látogassa meg a Friendi.ca oldalt, hogy többet tudjon meg a Friendica projektről."
-#: src/Module/Friendica.php:123
+#: src/Module/Friendica.php:109
msgid "Bug reports and issues: please visit"
msgstr "Hibák és problémák jelentéséhez látogassa meg"
-#: src/Module/Friendica.php:123
+#: src/Module/Friendica.php:109
msgid "the bugtracker at github"
msgstr "a GitHubon lévő hibakövetőt"
-#: src/Module/Friendica.php:124
+#: src/Module/Friendica.php:110
msgid "Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca"
msgstr "Javaslatokat, dicséretet és egyebeket az „info” kukac friendi pont ca címre küldhet."
-#: src/Module/HCard.php:45
+#: src/Module/HCard.php:31
msgid "No profile"
msgstr "Nincs profil"
-#: src/Module/HTTPException/MethodNotAllowed.php:31
+#: src/Module/HTTPException/MethodNotAllowed.php:17
msgid "Method Not Allowed."
msgstr "A módszer nem engedélyezett."
-#: src/Module/Help.php:60
+#: src/Module/Help.php:46
msgid "Help:"
msgstr "Súgó:"
-#: src/Module/Home.php:66
+#: src/Module/Home.php:52
#, php-format
msgid "Welcome to %s"
msgstr "Üdvözli a(z) %s!"
-#: src/Module/Install.php:189
+#: src/Module/Install.php:175
msgid "Friendica Communications Server - Setup"
msgstr "Friendica kommunikációs kiszolgáló – Beállítás"
-#: src/Module/Install.php:200
+#: src/Module/Install.php:186
msgid "System check"
msgstr "Rendszerellenőrzés"
-#: src/Module/Install.php:202 src/Module/Install.php:247
-#: src/Module/Install.php:326
+#: src/Module/Install.php:188 src/Module/Install.php:233
+#: src/Module/Install.php:312
msgid "Requirement not satisfied"
msgstr "A követelmény nincs kielégítve"
-#: src/Module/Install.php:203
+#: src/Module/Install.php:189
msgid "Optional requirement not satisfied"
msgstr "A választható követelmény nincs kielégítve"
-#: src/Module/Install.php:204
+#: src/Module/Install.php:190
msgid "OK"
msgstr "Rendben"
-#: src/Module/Install.php:208
+#: src/Module/Install.php:194
msgid "Next"
msgstr "Következő"
-#: src/Module/Install.php:209
+#: src/Module/Install.php:195
msgid "Check again"
msgstr "Ellenőrzés újra"
-#: src/Module/Install.php:222
+#: src/Module/Install.php:208
msgid "Base settings"
msgstr "Alapvető beállítások"
-#: src/Module/Install.php:224
+#: src/Module/Install.php:210
msgid "Base path to installation"
msgstr "Alap útvonal a telepítéshez"
-#: src/Module/Install.php:226
+#: src/Module/Install.php:212
msgid ""
"If the system cannot detect the correct path to your installation, enter the"
" correct path here. This setting should only be set if you are using a "
"restricted system and symbolic links to your webroot."
msgstr "Ha a rendszer nem tudja felismerni a helyes útvonalat a telepítéshez, akkor itt adja meg a helyes útvonalat. Ezt a beállítást csak akkor kell megadni, ha korlátozott rendszert és a webgyökérre mutató szimbolikus hivatkozásokat használ."
-#: src/Module/Install.php:229
+#: src/Module/Install.php:215
msgid "The Friendica system URL"
msgstr "A Friendica rendszer URL-je"
-#: src/Module/Install.php:231
+#: src/Module/Install.php:217
msgid ""
"Overwrite this field in case the system URL determination isn't right, "
"otherwise leave it as is."
msgstr "Abban az esetben írja felül ezt a mezőt, ha a rendszer URL-meghatározása nem megfelelő, egyébként hagyja változatlanul."
-#: src/Module/Install.php:242
+#: src/Module/Install.php:228
msgid "Database connection"
msgstr "Adatbázis-kapcsolat"
-#: src/Module/Install.php:243
+#: src/Module/Install.php:229
msgid ""
"In order to install Friendica we need to know how to connect to your "
"database."
msgstr "A Friendica telepítése érdekében tudnunk kell, hogy hogyan kell kapcsolódni az adatbázisához."
-#: src/Module/Install.php:244
+#: src/Module/Install.php:230
msgid ""
"Please contact your hosting provider or site administrator if you have "
"questions about these settings."
msgstr "Vegye fel a kapcsolatot a tárhelyszolgáltatóval vagy az oldal adminisztrátorával, ha kérdései vannak ezekkel a beállításokkal kapcsolatban."
-#: src/Module/Install.php:245
+#: src/Module/Install.php:231
msgid ""
"The database you specify below should already exist. If it does not, please "
"create it before continuing."
msgstr "A lent megadott adatbázisnak már léteznie kell. Ha még nem létezik, akkor hozza létre a folytatás előtt."
-#: src/Module/Install.php:252
+#: src/Module/Install.php:238
msgid "Database Server Name"
msgstr "Adatbázis-kiszolgáló neve"
-#: src/Module/Install.php:257
+#: src/Module/Install.php:243
msgid "Database Login Name"
msgstr "Adatbázis bejelentkezési neve"
-#: src/Module/Install.php:263
+#: src/Module/Install.php:249
msgid "Database Login Password"
msgstr "Adatbázis bejelentkezési jelszava"
-#: src/Module/Install.php:265
+#: src/Module/Install.php:251
msgid "For security reasons the password must not be empty"
msgstr "Biztonsági okokból a jelszó nem lehet üres"
-#: src/Module/Install.php:268
+#: src/Module/Install.php:254
msgid "Database Name"
msgstr "Adatbázis neve"
-#: src/Module/Install.php:272 src/Module/Install.php:300
+#: src/Module/Install.php:258 src/Module/Install.php:286
msgid "Please select a default timezone for your website"
msgstr "Válasszon egy alapértelmezett időzónát a weboldalához"
-#: src/Module/Install.php:287
+#: src/Module/Install.php:273
msgid "Site settings"
msgstr "Oldalbeállítások"
-#: src/Module/Install.php:295
+#: src/Module/Install.php:281
msgid "Site administrator email address"
msgstr "Oldal adminisztrátorának e-mail-címe"
-#: src/Module/Install.php:297
+#: src/Module/Install.php:283
msgid ""
"Your account email address must match this in order to use the web admin "
"panel."
msgstr "A fiókja e-mail-címének egyeznie kell ezzel a webes adminisztrátori panel használata érdekében."
-#: src/Module/Install.php:304
+#: src/Module/Install.php:290
msgid "System Language:"
msgstr "Rendszer nyelve:"
-#: src/Module/Install.php:306
+#: src/Module/Install.php:292
msgid ""
"Set the default language for your Friendica installation interface and to "
"send emails."
msgstr "Az alapértelmezett nyelv beállítása a Friendica telepítésnek felületéhez és az e-mailek küldéséhez."
-#: src/Module/Install.php:318
+#: src/Module/Install.php:304
msgid "Your Friendica site database has been installed."
msgstr "A Friendica oldalának adatbázisa telepítve lett."
-#: src/Module/Install.php:328
+#: src/Module/Install.php:314
msgid "Installation finished"
msgstr "A telepítés befejeződött"
-#: src/Module/Install.php:348
+#: src/Module/Install.php:334
msgid "The server domain pattern syntax is case-insensitive shell wildcard, comprising the following special characters:
\n" "A kiszolgálótartomány-minta szintaxisa kis- és nagybetű-érzéketlen parancsértelmezői helyettesítő karakter, amely a következő különleges karakterekből áll:
\n*
: Tetszőleges számú karakter?
: Egy önálló karakterThis file can be downloaded from the /friendica
path of any "
"Friendica server.
Ez a fájl letölthető bármely Friendica kiszolgáló /friendica
útvonaláról.
debug.store_source
config key is set in "
"config/local.config.php
for future items to have sources."
msgstr "Győződjön meg arról, hogy a debug.store_source
beállítási kulcs be van-e állítva a config/local.config.php
fájlban, hogy a jövőbeli elemek forrásokkal rendelkezzenek."
-#: src/Module/Moderation/Item/Source.php:98
+#: src/Module/Moderation/Item/Source.php:84
msgid "Item Guid"
msgstr "Elem GUID értéke"
-#: src/Module/Moderation/Report/Create.php:95
+#: src/Module/Moderation/Report/Create.php:81
msgid "Contact not found or their server is already blocked on this node."
msgstr "A partner nem található, vagy a kiszolgálója már tiltva van ezen a csomóponton."
-#: src/Module/Moderation/Report/Create.php:136
+#: src/Module/Moderation/Report/Create.php:122
msgid "Please login to access this page."
msgstr "Jelentkezzen be az oldal eléréséhez."
-#: src/Module/Moderation/Report/Create.php:165
-#: src/Module/Moderation/Report/Create.php:180
-#: src/Module/Moderation/Report/Create.php:208
-#: src/Module/Moderation/Report/Create.php:260
-#: src/Module/Moderation/Report/Create.php:279
+#: src/Module/Moderation/Report/Create.php:151
+#: src/Module/Moderation/Report/Create.php:166
+#: src/Module/Moderation/Report/Create.php:194
+#: src/Module/Moderation/Report/Create.php:246
+#: src/Module/Moderation/Report/Create.php:265
msgid "Create Moderation Report"
msgstr "Moderálási jelentés létrehozása"
-#: src/Module/Moderation/Report/Create.php:166
+#: src/Module/Moderation/Report/Create.php:152
msgid "Pick Contact"
msgstr "Partner kiválasztása"
-#: src/Module/Moderation/Report/Create.php:167
+#: src/Module/Moderation/Report/Create.php:153
msgid ""
"Please enter below the contact address or profile URL you would like to "
"create a moderation report about."
msgstr "Adja meg lent a partner címét vagy a profiljának URL-jét, amelyről moderálási jelentést szeretne létrehozni."
-#: src/Module/Moderation/Report/Create.php:171
+#: src/Module/Moderation/Report/Create.php:157
msgid "Contact address/URL"
msgstr "Partner címe vagy URL-je"
-#: src/Module/Moderation/Report/Create.php:181
+#: src/Module/Moderation/Report/Create.php:167
msgid "Pick Category"
msgstr "Kategória kiválasztása"
-#: src/Module/Moderation/Report/Create.php:182
+#: src/Module/Moderation/Report/Create.php:168
msgid "Please pick below the category of your report."
msgstr "Válassza ki lent a jelentés kategóriáját."
-#: src/Module/Moderation/Report/Create.php:186
-#: src/Module/Moderation/Report/Create.php:311
+#: src/Module/Moderation/Report/Create.php:172
+#: src/Module/Moderation/Report/Create.php:297
msgid "Spam"
msgstr "Kéretlen üzenet"
-#: src/Module/Moderation/Report/Create.php:186
+#: src/Module/Moderation/Report/Create.php:172
msgid ""
"This contact is publishing many repeated/overly long posts/replies or "
"advertising their product/websites in otherwise irrelevant conversations."
msgstr "Ez a partner sok ismétlődő vagy túl hosszú bejegyzést vagy választ tesz közzé, illetve egyébként nem kapcsolódó beszélgetésekben reklámozza a termékét vagy weboldalait."
-#: src/Module/Moderation/Report/Create.php:187
-#: src/Module/Moderation/Report/Create.php:312
+#: src/Module/Moderation/Report/Create.php:173
+#: src/Module/Moderation/Report/Create.php:298
msgid "Illegal Content"
msgstr "Illegális tartalom"
-#: src/Module/Moderation/Report/Create.php:187
+#: src/Module/Moderation/Report/Create.php:173
msgid ""
"This contact is publishing content that is considered illegal in this node's"
" hosting juridiction."
msgstr "Ez a partner olyan tartalmat tesz közzé, amely a csomópont tárhelyének joghatósága szerint illegálisnak minősül."
-#: src/Module/Moderation/Report/Create.php:188
-#: src/Module/Moderation/Report/Create.php:313
+#: src/Module/Moderation/Report/Create.php:174
+#: src/Module/Moderation/Report/Create.php:299
msgid "Community Safety"
msgstr "Közösségi biztonság"
-#: src/Module/Moderation/Report/Create.php:188
+#: src/Module/Moderation/Report/Create.php:174
msgid ""
"This contact aggravated you or other people, by being provocative or "
"insensitive, intentionally or not. This includes disclosing people's private"
@@ -8464,12 +8459,12 @@ msgid ""
"replies."
msgstr "Ez a partner provokációval vagy érzéketlenséggel, szándékosan vagy akaratlanul, de felbosszantotta Önt vagy másokat. Ebbe beletartozik az emberek személyes adatainak felfedése (doxolás), fenyegetések vagy sértő képek közzététele a bejegyzésekben vagy válaszokban."
-#: src/Module/Moderation/Report/Create.php:189
-#: src/Module/Moderation/Report/Create.php:314
+#: src/Module/Moderation/Report/Create.php:175
+#: src/Module/Moderation/Report/Create.php:300
msgid "Unwanted Content/Behavior"
msgstr "Nemkívánatos tartalom vagy viselkedés"
-#: src/Module/Moderation/Report/Create.php:189
+#: src/Module/Moderation/Report/Create.php:175
msgid ""
"This contact has repeatedly published content irrelevant to the node's theme"
" or is openly criticizing the node's administration/moderation without "
@@ -8477,89 +8472,89 @@ msgid ""
"nitpicking on a sensitive topic."
msgstr "Ez a partner ismételten a csomópont témájához nem kapcsolódó tartalmakat tesz közzé, nyíltan kritizálja a csomópont adminisztrációját és moderálását, anélkül hogy például közvetlenül kapcsolatba lépett volna az érintettekkel, vagy ismételten feszeget egy érzékeny témát."
-#: src/Module/Moderation/Report/Create.php:190
-#: src/Module/Moderation/Report/Create.php:315
+#: src/Module/Moderation/Report/Create.php:176
+#: src/Module/Moderation/Report/Create.php:301
msgid "Rules Violation"
msgstr "Szabályok megszegése"
-#: src/Module/Moderation/Report/Create.php:190
+#: src/Module/Moderation/Report/Create.php:176
msgid ""
"This contact violated one or more rules of this node. You will be able to "
"pick which one(s) in the next step."
msgstr "Ez a partner megszegte a csomópont egy vagy több szabályát. A következő lépésben kiválaszthatja, hogy melyeket."
-#: src/Module/Moderation/Report/Create.php:191
+#: src/Module/Moderation/Report/Create.php:177
msgid ""
"Please elaborate below why you submitted this report. The more details you "
"provide, the better your report can be handled."
msgstr "Az alábbiakban részletezze, hogy miért küldte be ezt a jelentést. Minél több részletet ad meg, annál jobban lehet kezelni a jelentését."
-#: src/Module/Moderation/Report/Create.php:193
+#: src/Module/Moderation/Report/Create.php:179
msgid "Additional Information"
msgstr "További információk"
-#: src/Module/Moderation/Report/Create.php:193
+#: src/Module/Moderation/Report/Create.php:179
msgid ""
"Please provide any additional information relevant to this particular "
"report. You will be able to attach posts by this contact in the next step, "
"but any context is welcome."
msgstr "Adjon meg bármilyen további információt, amely az adott jelentéssel kapcsolatos. A következő lépésben csatolhatja az ettől a partnertől származó bejegyzéseket, de bármilyen további információt is szívesen fogadunk."
-#: src/Module/Moderation/Report/Create.php:209
+#: src/Module/Moderation/Report/Create.php:195
msgid "Pick Rules"
msgstr "Szabályok kiválasztása"
-#: src/Module/Moderation/Report/Create.php:210
+#: src/Module/Moderation/Report/Create.php:196
msgid "Please pick below the node rules you believe this contact violated."
msgstr "Válassza ki az alábbiakban azokat a csomópontszabályokat, amelyeket Ön szerint a partner megszegett."
-#: src/Module/Moderation/Report/Create.php:261
+#: src/Module/Moderation/Report/Create.php:247
msgid "Pick Posts"
msgstr "Bejegyzések kiválasztása"
-#: src/Module/Moderation/Report/Create.php:262
+#: src/Module/Moderation/Report/Create.php:248
msgid "Please optionally pick posts to attach to your report."
msgstr "Esetlegesen válassza ki a jelentéséhez csatolandó bejegyzéseket."
-#: src/Module/Moderation/Report/Create.php:281
+#: src/Module/Moderation/Report/Create.php:267
msgid "Submit Report"
msgstr "Jelentés elküldése"
-#: src/Module/Moderation/Report/Create.php:282
+#: src/Module/Moderation/Report/Create.php:268
msgid "Further Action"
msgstr "További művelet"
-#: src/Module/Moderation/Report/Create.php:283
+#: src/Module/Moderation/Report/Create.php:269
msgid ""
"You can also perform one of the following action on the contact you "
"reported:"
msgstr "Az alábbi műveletek egyikét is végrehajthatja a jelentett partnerrel kapcsolatban:"
-#: src/Module/Moderation/Report/Create.php:291
+#: src/Module/Moderation/Report/Create.php:277
msgid "Nothing"
msgstr "Semmi"
-#: src/Module/Moderation/Report/Create.php:292
+#: src/Module/Moderation/Report/Create.php:278
msgid "Collapse contact"
msgstr "Partner összecsukása"
-#: src/Module/Moderation/Report/Create.php:292
+#: src/Module/Moderation/Report/Create.php:278
msgid ""
"Their posts and replies will keep appearing in your Network page but their "
"content will be collapsed by default."
msgstr "A bejegyzéseik és válaszaik továbbra is megjelennek a hálózat oldalon, de a tartalmuk alapértelmezetten össze lesz csukva."
-#: src/Module/Moderation/Report/Create.php:293
+#: src/Module/Moderation/Report/Create.php:279
msgid ""
"Their posts won't appear in your Network page anymore, but their replies can"
" appear in forum threads. They still can follow you."
msgstr "A bejegyzéseik nem jelennek meg többé a hálózat oldalon, de a válaszaik megjelenhetnek a fórum szálaiban. Továbbra is követhetik Önt."
-#: src/Module/Moderation/Report/Create.php:294
+#: src/Module/Moderation/Report/Create.php:280
msgid "Block contact"
msgstr "Partner tiltása"
-#: src/Module/Moderation/Report/Create.php:294
+#: src/Module/Moderation/Report/Create.php:280
msgid ""
"Their posts won't appear in your Network page anymore, but their replies can"
" appear in forum threads, with their content collapsed by default. They "
@@ -8567,708 +8562,694 @@ msgid ""
"means."
msgstr "A bejegyzéseik nem jelennek meg többé a hálózat oldalon, de a válaszaik megjelenhetnek a fórum szálaiban alapértelmezetten összecsukott tartalommal. Nem követhetik Önt, de más módon továbbra is hozzáférhetnek az Ön nyilvános bejegyzéseihez."
-#: src/Module/Moderation/Report/Create.php:297
+#: src/Module/Moderation/Report/Create.php:283
msgid "Forward report"
msgstr "Jelentés továbbítása"
-#: src/Module/Moderation/Report/Create.php:297
+#: src/Module/Moderation/Report/Create.php:283
msgid "Would you ike to forward this report to the remote server?"
msgstr "Szeretné továbbítani ezt a jelentést a távoli kiszolgálóra?"
-#: src/Module/Moderation/Report/Create.php:330
+#: src/Module/Moderation/Report/Create.php:316
msgid "1. Pick a contact"
msgstr "1. Partner kiválasztása"
-#: src/Module/Moderation/Report/Create.php:331
+#: src/Module/Moderation/Report/Create.php:317
msgid "2. Pick a category"
msgstr "2. Kategória kiválasztása"
-#: src/Module/Moderation/Report/Create.php:332
+#: src/Module/Moderation/Report/Create.php:318
msgid "2a. Pick rules"
msgstr "2a. Szabályok kiválasztása"
-#: src/Module/Moderation/Report/Create.php:333
+#: src/Module/Moderation/Report/Create.php:319
msgid "2b. Add comment"
msgstr "2b. Megjegyzés hozzáadása"
-#: src/Module/Moderation/Report/Create.php:334
+#: src/Module/Moderation/Report/Create.php:320
msgid "3. Pick posts"
msgstr "3. Bejegyzések kiválasztása"
-#: src/Module/Moderation/Reports.php:111
+#: src/Module/Moderation/Reports.php:97
msgid "List of reports"
msgstr "Jelentések listája"
-#: src/Module/Moderation/Reports.php:112
+#: src/Module/Moderation/Reports.php:98
msgid "This page display reports created by our or remote users."
msgstr "Ez az oldal a saját vagy a távoli felhasználók által létrehozott jelentéseket jeleníti meg."
-#: src/Module/Moderation/Reports.php:113
+#: src/Module/Moderation/Reports.php:99
msgid "No report exists at this node."
msgstr "Nem létezik jelentés ezen a csomóponton."
-#: src/Module/Moderation/Reports.php:116
+#: src/Module/Moderation/Reports.php:102
msgid "Category"
msgstr "Kategória"
-#: src/Module/Moderation/Reports.php:120
+#: src/Module/Moderation/Reports.php:106
#, php-format
msgid "%s total report"
msgid_plural "%s total reports"
msgstr[0] "%s jelentés összesen"
msgstr[1] "%s jelentés összesen"
-#: src/Module/Moderation/Reports.php:123
+#: src/Module/Moderation/Reports.php:109
msgid "URL of the reported contact."
msgstr "A jelentett partner URL-je."
-#: src/Module/Moderation/Summary.php:57 src/Module/Settings/Account.php:436
+#: src/Module/Moderation/Summary.php:43 src/Module/Settings/Account.php:422
msgid "Channel Relay"
msgstr "Csatornatovábbítás"
-#: src/Module/Moderation/Summary.php:77
+#: src/Module/Moderation/Summary.php:63
msgid "Registered users"
msgstr "Regisztrált felhasználók"
-#: src/Module/Moderation/Summary.php:79
+#: src/Module/Moderation/Summary.php:65
msgid "Pending registrations"
msgstr "Függőben lévő regisztrációk"
-#: src/Module/Moderation/Users/Active.php:43
-#: src/Module/Moderation/Users/Index.php:43
+#: src/Module/Moderation/Users/Active.php:29
+#: src/Module/Moderation/Users/Index.php:29
#, php-format
msgid "%s user blocked"
msgid_plural "%s users blocked"
msgstr[0] "%s felhasználó tiltva"
msgstr[1] "%s felhasználó tiltva"
-#: src/Module/Moderation/Users/Active.php:51
-#: src/Module/Moderation/Users/Active.php:85
-#: src/Module/Moderation/Users/Blocked.php:51
-#: src/Module/Moderation/Users/Blocked.php:85
-#: src/Module/Moderation/Users/Index.php:58
-#: src/Module/Moderation/Users/Index.php:92
+#: src/Module/Moderation/Users/Active.php:37
+#: src/Module/Moderation/Users/Active.php:71
+#: src/Module/Moderation/Users/Blocked.php:37
+#: src/Module/Moderation/Users/Blocked.php:71
+#: src/Module/Moderation/Users/Index.php:44
+#: src/Module/Moderation/Users/Index.php:78
msgid "You can't remove yourself"
msgstr "Nem távolíthatja el önmagát"
-#: src/Module/Moderation/Users/Active.php:55
-#: src/Module/Moderation/Users/Blocked.php:55
-#: src/Module/Moderation/Users/Index.php:62
+#: src/Module/Moderation/Users/Active.php:41
+#: src/Module/Moderation/Users/Blocked.php:41
+#: src/Module/Moderation/Users/Index.php:48
#, php-format
msgid "%s user deleted"
msgid_plural "%s users deleted"
msgstr[0] "%s felhasználó törölve"
msgstr[1] "%s felhasználó törölve"
-#: src/Module/Moderation/Users/Active.php:83
-#: src/Module/Moderation/Users/Blocked.php:83
-#: src/Module/Moderation/Users/Index.php:90
+#: src/Module/Moderation/Users/Active.php:69
+#: src/Module/Moderation/Users/Blocked.php:69
+#: src/Module/Moderation/Users/Index.php:76
#, php-format
msgid "User \"%s\" deleted"
msgstr "„%s” felhasználó törölve"
-#: src/Module/Moderation/Users/Active.php:93
-#: src/Module/Moderation/Users/Index.php:100
+#: src/Module/Moderation/Users/Active.php:79
+#: src/Module/Moderation/Users/Index.php:86
#, php-format
msgid "User \"%s\" blocked"
msgstr "„%s” felhasználó tiltva"
-#: src/Module/Moderation/Users/Active.php:126
-#: src/Module/Moderation/Users/Blocked.php:126
-#: src/Module/Moderation/Users/Deleted.php:83
-#: src/Module/Moderation/Users/Index.php:140
-#: src/Module/Moderation/Users/Index.php:160
+#: src/Module/Moderation/Users/Active.php:112
+#: src/Module/Moderation/Users/Blocked.php:112
+#: src/Module/Moderation/Users/Deleted.php:69
+#: src/Module/Moderation/Users/Index.php:126
+#: src/Module/Moderation/Users/Index.php:146
msgid "Register date"
msgstr "Regisztráció dátuma"
-#: src/Module/Moderation/Users/Active.php:126
-#: src/Module/Moderation/Users/Blocked.php:126
-#: src/Module/Moderation/Users/Deleted.php:83
-#: src/Module/Moderation/Users/Index.php:140
-#: src/Module/Moderation/Users/Index.php:160
+#: src/Module/Moderation/Users/Active.php:112
+#: src/Module/Moderation/Users/Blocked.php:112
+#: src/Module/Moderation/Users/Deleted.php:69
+#: src/Module/Moderation/Users/Index.php:126
+#: src/Module/Moderation/Users/Index.php:146
msgid "Last login"
msgstr "Utolsó bejelentkezés"
-#: src/Module/Moderation/Users/Active.php:126
-#: src/Module/Moderation/Users/Blocked.php:126
-#: src/Module/Moderation/Users/Deleted.php:83
-#: src/Module/Moderation/Users/Index.php:140
-#: src/Module/Moderation/Users/Index.php:160
+#: src/Module/Moderation/Users/Active.php:112
+#: src/Module/Moderation/Users/Blocked.php:112
+#: src/Module/Moderation/Users/Deleted.php:69
+#: src/Module/Moderation/Users/Index.php:126
+#: src/Module/Moderation/Users/Index.php:146
msgid "Last public item"
msgstr "Utolsó nyilvános elem"
-#: src/Module/Moderation/Users/Active.php:134
+#: src/Module/Moderation/Users/Active.php:120
msgid "Active Accounts"
msgstr "Aktív fiókok"
-#: src/Module/Moderation/Users/Active.php:138
-#: src/Module/Moderation/Users/Blocked.php:137
-#: src/Module/Moderation/Users/Index.php:153
+#: src/Module/Moderation/Users/Active.php:124
+#: src/Module/Moderation/Users/Blocked.php:123
+#: src/Module/Moderation/Users/Index.php:139
msgid "User blocked"
msgstr "Felhasználó tiltva"
-#: src/Module/Moderation/Users/Active.php:139
-#: src/Module/Moderation/Users/Blocked.php:139
-#: src/Module/Moderation/Users/Index.php:155
+#: src/Module/Moderation/Users/Active.php:125
+#: src/Module/Moderation/Users/Blocked.php:125
+#: src/Module/Moderation/Users/Index.php:141
msgid "Site admin"
msgstr "Oldal adminisztrátor"
-#: src/Module/Moderation/Users/Active.php:140
-#: src/Module/Moderation/Users/Blocked.php:140
-#: src/Module/Moderation/Users/Index.php:156
+#: src/Module/Moderation/Users/Active.php:126
+#: src/Module/Moderation/Users/Blocked.php:126
+#: src/Module/Moderation/Users/Index.php:142
msgid "Account expired"
msgstr "A fiók lejárt"
-#: src/Module/Moderation/Users/Active.php:141
-#: src/Module/Moderation/Users/Index.php:159
+#: src/Module/Moderation/Users/Active.php:127
+#: src/Module/Moderation/Users/Index.php:145
msgid "Create a new user"
msgstr "Új felhasználó létrehozása"
-#: src/Module/Moderation/Users/Active.php:147
-#: src/Module/Moderation/Users/Blocked.php:146
-#: src/Module/Moderation/Users/Index.php:165
+#: src/Module/Moderation/Users/Active.php:133
+#: src/Module/Moderation/Users/Blocked.php:132
+#: src/Module/Moderation/Users/Index.php:151
msgid ""
"Selected users will be deleted!\\n\\nEverything these users had posted on "
"this site will be permanently deleted!\\n\\nAre you sure?"
msgstr "A kijelölt felhasználók törölve lesznek!\\n\\nMinden, amit ezek a felhasználók erre az oldalra beküldtek, véglegesen törölve lesz!\\n\\nBiztos benne?"
-#: src/Module/Moderation/Users/Active.php:148
-#: src/Module/Moderation/Users/Blocked.php:147
-#: src/Module/Moderation/Users/Index.php:166
+#: src/Module/Moderation/Users/Active.php:134
+#: src/Module/Moderation/Users/Blocked.php:133
+#: src/Module/Moderation/Users/Index.php:152
msgid ""
"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
"site will be permanently deleted!\\n\\nAre you sure?"
msgstr "{0} felhasználó törölve lesz!\\n\\nMinden, amit ez a felhasználó erre az oldalra beküldött, véglegesen törölve lesz!\\n\\nBiztos benne?"
-#: src/Module/Moderation/Users/Blocked.php:43
-#: src/Module/Moderation/Users/Index.php:50
+#: src/Module/Moderation/Users/Blocked.php:29
+#: src/Module/Moderation/Users/Index.php:36
#, php-format
msgid "%s user unblocked"
msgid_plural "%s users unblocked"
msgstr[0] "%s felhasználó tiltása feloldva"
msgstr[1] "%s felhasználó tiltása feloldva"
-#: src/Module/Moderation/Users/Blocked.php:92
-#: src/Module/Moderation/Users/Index.php:106
+#: src/Module/Moderation/Users/Blocked.php:78
+#: src/Module/Moderation/Users/Index.php:92
#, php-format
msgid "User \"%s\" unblocked"
msgstr "„%s” felhasználó tiltása feloldva"
-#: src/Module/Moderation/Users/Blocked.php:134
+#: src/Module/Moderation/Users/Blocked.php:120
msgid "Blocked Users"
msgstr "Tiltott felhasználók"
-#: src/Module/Moderation/Users/Create.php:62
+#: src/Module/Moderation/Users/Create.php:48
msgid "New User"
msgstr "Új felhasználó"
-#: src/Module/Moderation/Users/Create.php:63
+#: src/Module/Moderation/Users/Create.php:49
msgid "Add User"
msgstr "Felhasználó hozzáadása"
-#: src/Module/Moderation/Users/Create.php:70
+#: src/Module/Moderation/Users/Create.php:56
msgid "Name of the new user."
msgstr "Az új felhasználó neve."
-#: src/Module/Moderation/Users/Create.php:71
+#: src/Module/Moderation/Users/Create.php:57
msgid "Nickname"
msgstr "Becenév"
-#: src/Module/Moderation/Users/Create.php:71
+#: src/Module/Moderation/Users/Create.php:57
msgid "Nickname of the new user."
msgstr "Az új felhasználó beceneve."
-#: src/Module/Moderation/Users/Create.php:72
+#: src/Module/Moderation/Users/Create.php:58
msgid "Email address of the new user."
msgstr "Az új felhasználó e-mail-címe."
-#: src/Module/Moderation/Users/Deleted.php:81
+#: src/Module/Moderation/Users/Deleted.php:67
msgid "Users awaiting permanent deletion"
msgstr "Végleges törlésre váró felhasználók"
-#: src/Module/Moderation/Users/Deleted.php:83
-#: src/Module/Moderation/Users/Index.php:160
+#: src/Module/Moderation/Users/Deleted.php:69
+#: src/Module/Moderation/Users/Index.php:146
msgid "Permanent deletion"
msgstr "Végleges törlés"
-#: src/Module/Moderation/Users/Index.php:150
+#: src/Module/Moderation/Users/Index.php:136
msgid "User waiting for permanent deletion"
msgstr "Végleges törlésre váró felhasználó"
-#: src/Module/Moderation/Users/Pending.php:44
+#: src/Module/Moderation/Users/Pending.php:30
#, php-format
msgid "%s user approved"
msgid_plural "%s users approved"
msgstr[0] "%s felhasználó jóváhagyva"
msgstr[1] "%s felhasználó jóváhagyva"
-#: src/Module/Moderation/Users/Pending.php:51
+#: src/Module/Moderation/Users/Pending.php:37
#, php-format
msgid "%s registration revoked"
msgid_plural "%s registrations revoked"
msgstr[0] "%s regisztráció visszavonva"
msgstr[1] "%s regisztráció visszavonva"
-#: src/Module/Moderation/Users/Pending.php:76
+#: src/Module/Moderation/Users/Pending.php:62
msgid "Account approved."
msgstr "Fiók jóváhagyva."
-#: src/Module/Moderation/Users/Pending.php:82
+#: src/Module/Moderation/Users/Pending.php:68
msgid "Registration revoked"
msgstr "Regisztráció visszavonva"
-#: src/Module/Moderation/Users/Pending.php:97
+#: src/Module/Moderation/Users/Pending.php:83
msgid "User registrations awaiting review"
msgstr "Felülvizsgálatra váró felhasználói regisztrációk"
-#: src/Module/Moderation/Users/Pending.php:99
+#: src/Module/Moderation/Users/Pending.php:85
msgid "Request date"
msgstr "Kérés dátuma"
-#: src/Module/Moderation/Users/Pending.php:100
+#: src/Module/Moderation/Users/Pending.php:86
msgid "No registrations."
msgstr "Nincsenek regisztrációk."
-#: src/Module/Moderation/Users/Pending.php:101
+#: src/Module/Moderation/Users/Pending.php:87
msgid "Note from the user"
msgstr "Jegyzet a felhasználótól"
-#: src/Module/Moderation/Users/Pending.php:103
+#: src/Module/Moderation/Users/Pending.php:89
msgid "Deny"
msgstr "Elutasítás"
-#: src/Module/Notifications/Introductions.php:105
+#: src/Module/Notifications/Introductions.php:91
msgid "Show Ignored Requests"
msgstr "Mellőzött kérések megjelenítése"
-#: src/Module/Notifications/Introductions.php:105
+#: src/Module/Notifications/Introductions.php:91
msgid "Hide Ignored Requests"
msgstr "Mellőzött kérések elrejtése"
-#: src/Module/Notifications/Introductions.php:121
-#: src/Module/Notifications/Introductions.php:184
+#: src/Module/Notifications/Introductions.php:107
+#: src/Module/Notifications/Introductions.php:170
msgid "Notification type:"
msgstr "Értesítés típusa:"
-#: src/Module/Notifications/Introductions.php:124
+#: src/Module/Notifications/Introductions.php:110
msgid "Suggested by:"
msgstr "Ajánlotta:"
-#: src/Module/Notifications/Introductions.php:149
+#: src/Module/Notifications/Introductions.php:135
msgid "Claims to be known to you: "
msgstr "Azt állítja, hogy Ön ismeri: "
-#: src/Module/Notifications/Introductions.php:158
+#: src/Module/Notifications/Introductions.php:144
msgid "Shall your connection be bidirectional or not?"
msgstr "Legyen a kapcsolata kétirányú vagy sem?"
-#: src/Module/Notifications/Introductions.php:159
+#: src/Module/Notifications/Introductions.php:145
#, php-format
msgid ""
"Accepting %s as a friend allows %s to subscribe to your posts, and you will "
"also receive updates from them in your news feed."
msgstr "%s ismerősként való elfogadása lehetővé teszi %s számára, hogy feliratkozzon a bejegyzéseire, és Ön is frissítéseket fog kapni tőle a hírforrásában."
-#: src/Module/Notifications/Introductions.php:160
+#: src/Module/Notifications/Introductions.php:146
#, php-format
msgid ""
"Accepting %s as a subscriber allows them to subscribe to your posts, but you"
" will not receive updates from them in your news feed."
msgstr "%s feliratkozóként való elfogadása lehetővé teszi számára, hogy feliratkozzon a bejegyzéseire, de Ön nem fog frissítéseket kapni tőle a hírforrásában."
-#: src/Module/Notifications/Introductions.php:162
+#: src/Module/Notifications/Introductions.php:148
msgid "Friend"
msgstr "Ismerős"
-#: src/Module/Notifications/Introductions.php:163
+#: src/Module/Notifications/Introductions.php:149
msgid "Subscriber"
msgstr "Feliratkozó"
-#: src/Module/Notifications/Introductions.php:222
+#: src/Module/Notifications/Introductions.php:208
msgid "No introductions."
msgstr "Nincsenek bemutatkozások."
-#: src/Module/Notifications/Introductions.php:223
-#: src/Module/Notifications/Notifications.php:141
+#: src/Module/Notifications/Introductions.php:209
+#: src/Module/Notifications/Notifications.php:127
#, php-format
msgid "No more %s notifications."
msgstr "Nincs több %s értesítés."
-#: src/Module/Notifications/Notification.php:135
+#: src/Module/Notifications/Notification.php:121
msgid "You must be logged in to show this page."
msgstr "Bejelentkezve kell lennie az oldal megtekintéséhez."
-#: src/Module/Notifications/Notifications.php:66
+#: src/Module/Notifications/Notifications.php:52
msgid "Network Notifications"
msgstr "Hálózati értesítések"
-#: src/Module/Notifications/Notifications.php:72
+#: src/Module/Notifications/Notifications.php:58
msgid "System Notifications"
msgstr "Rendszerértesítések"
-#: src/Module/Notifications/Notifications.php:78
+#: src/Module/Notifications/Notifications.php:64
msgid "Personal Notifications"
msgstr "Személyes értesítések"
-#: src/Module/Notifications/Notifications.php:84
+#: src/Module/Notifications/Notifications.php:70
msgid "Home Notifications"
msgstr "Saját értesítések"
-#: src/Module/Notifications/Notifications.php:146
+#: src/Module/Notifications/Notifications.php:132
msgid "Show unread"
msgstr "Olvasatlanok megjelenítése"
-#: src/Module/Notifications/Ping.php:220
+#: src/Module/Notifications/Ping.php:206
msgid "{0} requested registration"
msgstr "{0} regisztrációt kért"
-#: src/Module/Notifications/Ping.php:229
+#: src/Module/Notifications/Ping.php:215
#, php-format
msgid "{0} and %d others requested registration"
msgstr "{0} és még %d személy regisztrációt kért"
-#: src/Module/OAuth/Acknowledge.php:51
+#: src/Module/OAuth/Acknowledge.php:37
msgid "Authorize application connection"
msgstr "Alkalmazáskapcsolat felhatalmazása"
-#: src/Module/OAuth/Acknowledge.php:53
+#: src/Module/OAuth/Acknowledge.php:39
msgid ""
"Do you want to authorize this application to access your posts and contacts,"
" and/or create new posts for you?"
msgstr "Szeretné felhatalmazni ezt az alkalmazást, hogy hozzáférjen a bejegyzéseihez és a partnereihez, és/vagy új bejegyzéseket hozzon létre Önnek?"
-#: src/Module/OAuth/Authorize.php:54
+#: src/Module/OAuth/Authorize.php:40
msgid "Unsupported or missing response type"
msgstr "Nem támogatott vagy hiányzó választípus"
-#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:75
+#: src/Module/OAuth/Authorize.php:45 src/Module/OAuth/Token.php:61
msgid "Incomplete request data"
msgstr "Befejezetlen kérésadat"
-#: src/Module/OAuth/Authorize.php:106
+#: src/Module/OAuth/Authorize.php:92
#, php-format
msgid ""
"Please copy the following authentication code into your application and "
"close this window: %s"
msgstr "Másolja be a következő hitelesítési kódot az alkalmazásába, és zárja be ezt az ablakot: %s"
-#: src/Module/OAuth/Token.php:80
+#: src/Module/OAuth/Token.php:66
msgid "Invalid data or unknown client"
msgstr "Érvénytelen adatok vagy ismeretlen ügyfél"
-#: src/Module/OAuth/Token.php:105
+#: src/Module/OAuth/Token.php:91
msgid "Unsupported or missing grant type"
msgstr "Nem támogatott vagy hiányzó felhatalmazástípus"
-#: src/Module/OStatus/Repair.php:83
-msgid "Resubscribing to OStatus contacts"
-msgstr "Újrafeliratkozás az OStatus partnerekre"
-
-#: src/Module/OStatus/Repair.php:84 src/Module/OStatus/Subscribe.php:160
-msgid "Keep this window open until done."
-msgstr "Tartsa nyitva ezt az ablakot, amíg el nem készül."
-
-#: src/Module/OStatus/Repair.php:85
-msgid "✔ Done"
-msgstr "✔ Kész"
-
-#: src/Module/OStatus/Repair.php:86
-msgid "No OStatus contacts to resubscribe to."
-msgstr "Nincsenek OStatus partnerek, hogy újra feliratkozzon rájuk."
-
-#: src/Module/OStatus/Subscribe.php:72
+#: src/Module/OStatus/Subscribe.php:58
msgid "Subscribing to contacts"
msgstr "Feliratkozás a partnerekre"
-#: src/Module/OStatus/Subscribe.php:81
+#: src/Module/OStatus/Subscribe.php:67
msgid "No contact provided."
msgstr "Nincs partner megadva."
-#: src/Module/OStatus/Subscribe.php:87
+#: src/Module/OStatus/Subscribe.php:73
msgid "Couldn't fetch information for contact."
msgstr "Nem sikerült lekérni a partner információit."
-#: src/Module/OStatus/Subscribe.php:98
+#: src/Module/OStatus/Subscribe.php:84
msgid "Couldn't fetch friends for contact."
msgstr "Nem sikerült lekérni a partner ismerőseit."
-#: src/Module/OStatus/Subscribe.php:104 src/Module/OStatus/Subscribe.php:115
+#: src/Module/OStatus/Subscribe.php:90 src/Module/OStatus/Subscribe.php:101
msgid "Couldn't fetch following contacts."
msgstr "Nem sikerült lekérni a következő partnereket."
-#: src/Module/OStatus/Subscribe.php:110
+#: src/Module/OStatus/Subscribe.php:96
msgid "Couldn't fetch remote profile."
msgstr "Nem sikerült lekérni a távoli profilt."
-#: src/Module/OStatus/Subscribe.php:120
+#: src/Module/OStatus/Subscribe.php:106
msgid "Unsupported network"
msgstr "Nem támogatott hálózat"
-#: src/Module/OStatus/Subscribe.php:136
+#: src/Module/OStatus/Subscribe.php:122
msgid "Done"
msgstr "Kész"
-#: src/Module/OStatus/Subscribe.php:150
+#: src/Module/OStatus/Subscribe.php:136
msgid "success"
msgstr "sikeres"
-#: src/Module/OStatus/Subscribe.php:152
+#: src/Module/OStatus/Subscribe.php:138
msgid "failed"
msgstr "sikertelen"
-#: src/Module/OStatus/Subscribe.php:155
+#: src/Module/OStatus/Subscribe.php:141
msgid "ignored"
msgstr "mellőzve"
-#: src/Module/Photo.php:122
+#: src/Module/OStatus/Subscribe.php:146
+msgid "Keep this window open until done."
+msgstr "Tartsa nyitva ezt az ablakot, amíg el nem készül."
+
+#: src/Module/Photo.php:108
msgid "The Photo is not available."
msgstr "A fénykép nem érhető el."
-#: src/Module/Photo.php:147
+#: src/Module/Photo.php:133
#, php-format
msgid "The Photo with id %s is not available."
msgstr "A(z) %s azonosítóval rendelkező fénykép nem érhető el."
-#: src/Module/Photo.php:188
+#: src/Module/Photo.php:174
#, php-format
msgid "Invalid external resource with url %s."
msgstr "Érvénytelen külső erőforrás a(z) %s URL-lel."
-#: src/Module/Photo.php:190
+#: src/Module/Photo.php:176
#, php-format
msgid "Invalid photo with id %s."
msgstr "Érvénytelen %s azonosítóval rendelkező fénykép."
-#: src/Module/Post/Edit.php:82 src/Module/Post/Edit.php:96
+#: src/Module/Post/Edit.php:68 src/Module/Post/Edit.php:82
msgid "Post not found."
msgstr "A bejegyzés nem található."
-#: src/Module/Post/Edit.php:102
+#: src/Module/Post/Edit.php:88
msgid "Edit post"
msgstr "Bejegyzés szerkesztése"
-#: src/Module/Post/Edit.php:136
+#: src/Module/Post/Edit.php:122
msgid "web link"
msgstr "webhivatkozás"
-#: src/Module/Post/Edit.php:137
+#: src/Module/Post/Edit.php:123
msgid "Insert video link"
msgstr "Videohivatkozás beszúrása"
-#: src/Module/Post/Edit.php:138
+#: src/Module/Post/Edit.php:124
msgid "video link"
msgstr "videohivatkozás"
-#: src/Module/Post/Edit.php:139
+#: src/Module/Post/Edit.php:125
msgid "Insert audio link"
msgstr "Hanghivatkozás beszúrása"
-#: src/Module/Post/Edit.php:140
+#: src/Module/Post/Edit.php:126
msgid "audio link"
msgstr "hanghivatkozás"
-#: src/Module/Post/Tag/Remove.php:106
+#: src/Module/Post/Tag/Remove.php:92
msgid "Remove Item Tag"
msgstr "Elem címkéjének eltávolítása"
-#: src/Module/Post/Tag/Remove.php:107
+#: src/Module/Post/Tag/Remove.php:93
msgid "Select a tag to remove: "
msgstr "Eltávolítandó címke kiválasztása: "
-#: src/Module/Post/Tag/Remove.php:108
-#: src/Module/Settings/TwoFactor/Trusted.php:147
+#: src/Module/Post/Tag/Remove.php:94
+#: src/Module/Settings/TwoFactor/Trusted.php:133
msgid "Remove"
msgstr "Eltávolítás"
-#: src/Module/Privacy/PermissionTooltip.php:71
+#: src/Module/Privacy/PermissionTooltip.php:57
#, php-format
msgid "Wrong type \"%s\", expected one of: %s"
msgstr "Hibás típus: „%s”, a következők egyike várt: %s"
-#: src/Module/Privacy/PermissionTooltip.php:101
+#: src/Module/Privacy/PermissionTooltip.php:87
msgid "Model not found"
msgstr "A modell nem található"
-#: src/Module/Privacy/PermissionTooltip.php:118
+#: src/Module/Privacy/PermissionTooltip.php:104
msgid "Unlisted"
msgstr "Listázatlan"
-#: src/Module/Privacy/PermissionTooltip.php:124
+#: src/Module/Privacy/PermissionTooltip.php:110
msgid "Remote privacy information not available."
msgstr "A távoli adatvédelmi információk nem érhetők el."
-#: src/Module/Privacy/PermissionTooltip.php:131
+#: src/Module/Privacy/PermissionTooltip.php:117
msgid "Visible to:"
msgstr "Látható nekik:"
-#: src/Module/Privacy/PermissionTooltip.php:133
+#: src/Module/Privacy/PermissionTooltip.php:119
msgid "CC:"
msgstr "Másolat:"
-#: src/Module/Privacy/PermissionTooltip.php:134
+#: src/Module/Privacy/PermissionTooltip.php:120
msgid "BCC:"
msgstr "Rejtett másolat:"
-#: src/Module/Privacy/PermissionTooltip.php:135
+#: src/Module/Privacy/PermissionTooltip.php:121
msgid "Audience:"
msgstr "Célközönség:"
-#: src/Module/Privacy/PermissionTooltip.php:136
+#: src/Module/Privacy/PermissionTooltip.php:122
msgid "Attributed To:"
msgstr "Neki tulajdonítható:"
-#: src/Module/Privacy/PermissionTooltip.php:234
+#: src/Module/Privacy/PermissionTooltip.php:220
#, php-format
msgid "Collection (%s)"
msgstr "Gyűjtemény (%s)"
-#: src/Module/Privacy/PermissionTooltip.php:238
+#: src/Module/Privacy/PermissionTooltip.php:224
#, php-format
msgid "Followers (%s)"
msgstr "Követők (%s)"
-#: src/Module/Privacy/PermissionTooltip.php:255
+#: src/Module/Privacy/PermissionTooltip.php:241
#, php-format
msgid "%d more"
msgstr "%d további"
-#: src/Module/Profile/Contacts.php:159
+#: src/Module/Profile/Contacts.php:145
msgid "No contacts."
msgstr "Nincsenek partnerek."
-#: src/Module/Profile/Conversations.php:106
-#: src/Module/Profile/Conversations.php:109 src/Module/Profile/Profile.php:353
-#: src/Module/Profile/Profile.php:356 src/Protocol/Feed.php:1114
-#: src/Protocol/OStatus.php:1011
-#, php-format
-msgid "%s's timeline"
-msgstr "%s idővonala"
-
-#: src/Module/Profile/Conversations.php:107 src/Module/Profile/Profile.php:354
-#: src/Protocol/Feed.php:1118 src/Protocol/OStatus.php:1016
+#: src/Module/Profile/Conversations.php:92 src/Module/Profile/Profile.php:339
+#: src/Protocol/Feed.php:1097
#, php-format
msgid "%s's posts"
msgstr "%s bejegyzései"
-#: src/Module/Profile/Conversations.php:108 src/Module/Profile/Profile.php:355
-#: src/Protocol/Feed.php:1121 src/Protocol/OStatus.php:1020
+#: src/Module/Profile/Conversations.php:93 src/Module/Profile/Profile.php:340
+#: src/Protocol/Feed.php:1100
#, php-format
msgid "%s's comments"
msgstr "%s hozzászólásai"
-#: src/Module/Profile/Photos.php:164 src/Module/Profile/Photos.php:167
-#: src/Module/Profile/Photos.php:192
-#: src/Module/Settings/Profile/Photo/Index.php:58
+#: src/Module/Profile/Conversations.php:94 src/Module/Profile/Profile.php:341
+#: src/Protocol/Feed.php:1093
+#, php-format
+msgid "%s's timeline"
+msgstr "%s idővonala"
+
+#: src/Module/Profile/Photos.php:150 src/Module/Profile/Photos.php:153
+#: src/Module/Profile/Photos.php:178
+#: src/Module/Settings/Profile/Photo/Index.php:44
#, php-format
msgid "Image exceeds size limit of %s"
msgstr "A kép meghaladja a beállított %s méretkorlátot"
-#: src/Module/Profile/Photos.php:170
+#: src/Module/Profile/Photos.php:156
msgid "Image upload didn't complete, please try again"
msgstr "A kép feltöltése nem fejeződött be, próbálja újra"
-#: src/Module/Profile/Photos.php:173
+#: src/Module/Profile/Photos.php:159
msgid "Image file is missing"
msgstr "A képfájl hiányzik"
-#: src/Module/Profile/Photos.php:178
+#: src/Module/Profile/Photos.php:164
msgid ""
"Server can't accept new file upload at this time, please contact your "
"administrator"
msgstr "A kiszolgáló jelenleg nem tud új fájlfeltöltést fogadni, vegye fel a kapcsolatot a rendszergazdával"
-#: src/Module/Profile/Photos.php:200
+#: src/Module/Profile/Photos.php:186
msgid "Image file is empty."
msgstr "A képfájl üres."
-#: src/Module/Profile/Photos.php:352
+#: src/Module/Profile/Photos.php:338
msgid "View Album"
msgstr "Album megtekintése"
-#: src/Module/Profile/Profile.php:114 src/Module/Profile/Restricted.php:50
+#: src/Module/Profile/Profile.php:100 src/Module/Profile/Restricted.php:36
msgid "Profile not found."
msgstr "A profil nem található."
-#: src/Module/Profile/Profile.php:160
+#: src/Module/Profile/Profile.php:146
#, php-format
msgid ""
"You're currently viewing your profile as %s Cancel"
msgstr "A profilját jelenleg %s nevében nézi Mégse"
-#: src/Module/Profile/Profile.php:169
+#: src/Module/Profile/Profile.php:155
msgid "Full Name:"
msgstr "Teljes név:"
-#: src/Module/Profile/Profile.php:174
+#: src/Module/Profile/Profile.php:160
msgid "Member since:"
msgstr "Ekkortól tag:"
-#: src/Module/Profile/Profile.php:180
+#: src/Module/Profile/Profile.php:166
msgid "j F, Y"
msgstr "Y. F j."
-#: src/Module/Profile/Profile.php:181
+#: src/Module/Profile/Profile.php:167
msgid "j F"
msgstr "F j."
-#: src/Module/Profile/Profile.php:189 src/Util/Temporal.php:168
+#: src/Module/Profile/Profile.php:175 src/Util/Temporal.php:154
msgid "Birthday:"
msgstr "Születésnap:"
-#: src/Module/Profile/Profile.php:192
-#: src/Module/Settings/Profile/Index.php:296 src/Util/Temporal.php:170
+#: src/Module/Profile/Profile.php:178
+#: src/Module/Settings/Profile/Index.php:282 src/Util/Temporal.php:156
msgid "Age: "
msgstr "Életkor: "
-#: src/Module/Profile/Profile.php:192
-#: src/Module/Settings/Profile/Index.php:296 src/Util/Temporal.php:170
+#: src/Module/Profile/Profile.php:178
+#: src/Module/Settings/Profile/Index.php:282 src/Util/Temporal.php:156
#, php-format
msgid "%d year old"
msgid_plural "%d years old"
msgstr[0] "%d éves"
msgstr[1] "%d éves"
-#: src/Module/Profile/Profile.php:197
-#: src/Module/Settings/Profile/Index.php:289
+#: src/Module/Profile/Profile.php:183
+#: src/Module/Settings/Profile/Index.php:275
msgid "Description:"
msgstr "Leírás:"
-#: src/Module/Profile/Profile.php:263
+#: src/Module/Profile/Profile.php:249
msgid "Groups:"
msgstr "Csoportok:"
-#: src/Module/Profile/Profile.php:275
+#: src/Module/Profile/Profile.php:261
msgid "View profile as:"
msgstr "Profil megtekintése másként:"
-#: src/Module/Profile/Profile.php:292
+#: src/Module/Profile/Profile.php:278
msgid "View as"
msgstr "Megtekintés másként"
-#: src/Module/Profile/RemoteFollow.php:82
+#: src/Module/Profile/RemoteFollow.php:68
msgid "Profile unavailable."
msgstr "A profil nem érhető el."
-#: src/Module/Profile/RemoteFollow.php:88
+#: src/Module/Profile/RemoteFollow.php:74
msgid "Invalid locator"
msgstr "Érvénytelen kereső"
-#: src/Module/Profile/RemoteFollow.php:95
+#: src/Module/Profile/RemoteFollow.php:81
msgid "The provided profile link doesn't seem to be valid"
msgstr "A megadott profilhivatkozás nem tűnik érvényesnek"
-#: src/Module/Profile/RemoteFollow.php:100
+#: src/Module/Profile/RemoteFollow.php:86
msgid ""
"Remote subscription can't be done for your network. Please subscribe "
"directly on your system."
msgstr "A távoli feliratkozást nem lehet elvégezni az Ön hálózatánál. Iratkozzon fel közvetlenül a saját rendszerén."
-#: src/Module/Profile/RemoteFollow.php:128
+#: src/Module/Profile/RemoteFollow.php:114
msgid "Friend/Connection Request"
msgstr "Ismerős- vagy kapcsolódási kérés"
-#: src/Module/Profile/RemoteFollow.php:129
+#: src/Module/Profile/RemoteFollow.php:115
#, php-format
msgid ""
"Enter your Webfinger address (user@domain.tld) or profile URL here. If this "
@@ -9276,579 +9257,579 @@ msgid ""
" or %s directly on your system."
msgstr "Adja meg itt a WebFinger-címét (felhasználó@tartomány.tld) vagy a profil URL-jét. Ha ezt nem támogatja a rendszere, akkor fel kell iratkoznia a(z) %s vagy a(z) %s címre közvetlenül a rendszerén."
-#: src/Module/Profile/RemoteFollow.php:130
+#: src/Module/Profile/RemoteFollow.php:116
#, php-format
msgid ""
"If you are not yet a member of the free social web, follow "
"this link to find a public Friendica node and join us today."
msgstr "Ha még nem tagja a szabad közösségi hálónak, akkor kövesse ezt a hivatkozást egy nyilvános Friendica csomópont kereséséhez, és csatlakozzon hozzánk még ma."
-#: src/Module/Profile/RemoteFollow.php:131
+#: src/Module/Profile/RemoteFollow.php:117
msgid "Your Webfinger address or profile URL:"
msgstr "A WebFinger-címe vagy profil URL-je:"
-#: src/Module/Profile/Restricted.php:59
+#: src/Module/Profile/Restricted.php:45
msgid "Restricted profile"
msgstr "Korlátozott profil"
-#: src/Module/Profile/Restricted.php:60
+#: src/Module/Profile/Restricted.php:46
msgid ""
"This profile has been restricted which prevents access to their public "
"content from anonymous visitors."
msgstr "Ez a profil korlátozva lett, ami megakadályozza, hogy a névtelen látogatók hozzáférjenek a nyilvános tartalmához."
-#: src/Module/Profile/Schedule.php:83
+#: src/Module/Profile/Schedule.php:69
msgid "Scheduled"
msgstr "Ütemezett"
-#: src/Module/Profile/Schedule.php:84
+#: src/Module/Profile/Schedule.php:70
msgid "Content"
msgstr "Tartalom"
-#: src/Module/Profile/Schedule.php:85
+#: src/Module/Profile/Schedule.php:71
msgid "Remove post"
msgstr "Bejegyzés eltávolítása"
-#: src/Module/Register.php:91
+#: src/Module/Register.php:77
msgid "Only parent users can create additional accounts."
msgstr "Csak fölérendelt felhasználók hozhatnak létre további fiókokat."
-#: src/Module/Register.php:106 src/Module/User/Import.php:112
+#: src/Module/Register.php:92 src/Module/User/Import.php:98
msgid ""
"This site has exceeded the number of allowed daily account registrations. "
"Please try again tomorrow."
msgstr "Ez az oldal túllépte a fiókregisztrációk naponta megengedett számát. Próbálja újra holnap."
-#: src/Module/Register.php:123
+#: src/Module/Register.php:109
msgid ""
"You may (optionally) fill in this form via OpenID by supplying your OpenID "
"and clicking \"Register\"."
msgstr "Kitöltheti ezt az űrlapot OpenID használatán keresztül is az OpenID azonosítója megadásával és „Regisztráció” gombra kattintva (nem kötelező)."
-#: src/Module/Register.php:124
+#: src/Module/Register.php:110
msgid ""
"If you are not familiar with OpenID, please leave that field blank and fill "
"in the rest of the items."
msgstr "Ha nem ismeri az OpenID-t, akkor hagyja a mezőt üresen, és töltse ki a többi elemet."
-#: src/Module/Register.php:125
+#: src/Module/Register.php:111
msgid "Your OpenID (optional): "
msgstr "Az Ön OpenID-ja (opcionális): "
-#: src/Module/Register.php:134
+#: src/Module/Register.php:120
msgid "Include your profile in member directory?"
msgstr "Felveszi a profilját a tagkönyvtárba?"
-#: src/Module/Register.php:155
+#: src/Module/Register.php:141
msgid "Note for the admin"
msgstr "Jegyzet az adminisztrátornak"
-#: src/Module/Register.php:155
+#: src/Module/Register.php:141
msgid "Leave a message for the admin, why you want to join this node"
msgstr "Hagyjon üzenetet az adminisztrátornak, hogy miért szeretne ehhez a csomóponthoz csatlakozni"
-#: src/Module/Register.php:156
+#: src/Module/Register.php:142
msgid "Membership on this site is by invitation only."
msgstr "Ezen az oldalon a tagság csak meghívás alapján van."
-#: src/Module/Register.php:157
+#: src/Module/Register.php:143
msgid "Your invitation code: "
msgstr "A meghívási kódja: "
-#: src/Module/Register.php:165
+#: src/Module/Register.php:151
msgid "Your Display Name (as you would like it to be displayed on this system"
msgstr "A megjelenített neve (ahogyan szeretné, hogy megjelenjen ezen a rendszeren)"
-#: src/Module/Register.php:166
+#: src/Module/Register.php:152
msgid ""
"Your Email Address: (Initial information will be send there, so this has to "
"be an existing address.)"
msgstr "Az e-mail-címe (a kezdeti információk ide lesznek elküldve, szóval ennek létező címnek kell lennie):"
-#: src/Module/Register.php:167
+#: src/Module/Register.php:153
msgid "Please repeat your e-mail address:"
msgstr "Ismételje meg az e-mail-címét:"
-#: src/Module/Register.php:169 src/Module/Security/PasswordTooLong.php:100
-#: src/Module/Settings/Account.php:569
+#: src/Module/Register.php:155 src/Module/Security/PasswordTooLong.php:86
+#: src/Module/Settings/Account.php:555
msgid "New Password:"
msgstr "Új jelszó:"
-#: src/Module/Register.php:169
+#: src/Module/Register.php:155
msgid "Leave empty for an auto generated password."
msgstr "Hagyja üresen egy automatikusan előállított jelszóhoz."
-#: src/Module/Register.php:170 src/Module/Security/PasswordTooLong.php:101
-#: src/Module/Settings/Account.php:570
+#: src/Module/Register.php:156 src/Module/Security/PasswordTooLong.php:87
+#: src/Module/Settings/Account.php:556
msgid "Confirm:"
msgstr "Megerősítés:"
-#: src/Module/Register.php:171
+#: src/Module/Register.php:157
#, php-format
msgid ""
"Choose a profile nickname. This must begin with a text character. Your "
"profile address on this site will then be \"nickname@%s\"."
msgstr "Válasszon profilbecenevet. Ennek betűvel kell kezdődnie. Ezután a profilcíme ezen az oldalon „becenév@%s” lesz."
-#: src/Module/Register.php:172
+#: src/Module/Register.php:158
msgid "Choose a nickname: "
msgstr "Becenév választása: "
-#: src/Module/Register.php:180 src/Module/User/Import.php:118
+#: src/Module/Register.php:166 src/Module/User/Import.php:104
msgid "Import"
msgstr "Importálás"
-#: src/Module/Register.php:181
+#: src/Module/Register.php:167
msgid "Import your profile to this friendica instance"
msgstr "A profilja importálása erre a Friendica példányra"
-#: src/Module/Register.php:188
+#: src/Module/Register.php:174
msgid "Note: This node explicitly contains adult content"
msgstr "Megjegyzés: ez a csomópont kifejezetten tartalmaz felnőtt tartalmat"
-#: src/Module/Register.php:190 src/Module/Settings/Delegation.php:181
+#: src/Module/Register.php:176 src/Module/Settings/Delegation.php:167
msgid "Parent Password:"
msgstr "Fölérendelt jelszó:"
-#: src/Module/Register.php:190 src/Module/Settings/Delegation.php:181
+#: src/Module/Register.php:176 src/Module/Settings/Delegation.php:167
msgid ""
"Please enter the password of the parent account to legitimize your request."
msgstr "Adja meg a fölérendelt fiók jelszavát a kérése törvényesítéséhez."
-#: src/Module/Register.php:219
+#: src/Module/Register.php:205
msgid "Password doesn't match."
msgstr "A jelszó nem egyezik."
-#: src/Module/Register.php:225
+#: src/Module/Register.php:211
msgid "Please enter your password."
msgstr "Adja meg a jelszavát."
-#: src/Module/Register.php:267
+#: src/Module/Register.php:253
msgid "You have entered too much information."
msgstr "Túl sok információt adott meg."
-#: src/Module/Register.php:290
+#: src/Module/Register.php:276
msgid "Please enter the identical mail address in the second field."
msgstr "Adja meg a megegyező e-mail-címet a második mezőben."
-#: src/Module/Register.php:298
+#: src/Module/Register.php:284
msgid "Nickname cannot start with a digit."
msgstr "A becenév nem kezdődhet számmal."
-#: src/Module/Register.php:300
+#: src/Module/Register.php:286
msgid "Nickname can only contain US-ASCII characters."
msgstr "A becenév csak US-ASCII karaktereket tartalmazhat."
-#: src/Module/Register.php:329
+#: src/Module/Register.php:315
msgid "The additional account was created."
msgstr "A további fiók létre lett hozva."
-#: src/Module/Register.php:354
+#: src/Module/Register.php:340
msgid ""
"Registration successful. Please check your email for further instructions."
msgstr "A regisztráció sikerült. Nézze meg a postafiókját a további utasításokért."
-#: src/Module/Register.php:361
+#: src/Module/Register.php:347
#, php-format
msgid ""
"Failed to send email message. Here your accout details:You can enter one of your one-time recovery codes in case you lost access" " to your mobile device.
" msgstr "Megadhatja az egyszeri visszaszerzési kódjai egyikét abban az esetben, ha elvesztette a hozzáférést a mobil eszközéhez.
" -#: src/Module/Security/TwoFactor/Recovery.php:101 +#: src/Module/Security/TwoFactor/Recovery.php:87 #, php-format msgid "Don’t have your phone? Enter a two-factor recovery code" msgstr "Nincs meg a telefonja? Adjon meg egy kétlépcsős visszaszerzési kódot" -#: src/Module/Security/TwoFactor/Recovery.php:102 +#: src/Module/Security/TwoFactor/Recovery.php:88 msgid "Please enter a recovery code" msgstr "Adjon meg egy visszaszerzési kódot" -#: src/Module/Security/TwoFactor/Recovery.php:103 +#: src/Module/Security/TwoFactor/Recovery.php:89 msgid "Submit recovery code and complete login" msgstr "Visszaszerzési kód elküldése és a bejelentkezés befejezése" -#: src/Module/Security/TwoFactor/SignOut.php:122 +#: src/Module/Security/TwoFactor/SignOut.php:108 msgid "Sign out of this browser?" msgstr "Kijelentkezni ebből a böngészőből?" -#: src/Module/Security/TwoFactor/SignOut.php:123 +#: src/Module/Security/TwoFactor/SignOut.php:109 msgid "" "If you trust this browser, you will not be asked for verification code " "the next time you sign in.
" msgstr "Ha megbízik ebben a böngészőben, akkor a következő bejelentkezéskor nem kéri Öntől az ellenőrző kódot.
" -#: src/Module/Security/TwoFactor/SignOut.php:124 +#: src/Module/Security/TwoFactor/SignOut.php:110 msgid "Sign out" msgstr "Kijelentkezés" -#: src/Module/Security/TwoFactor/SignOut.php:126 +#: src/Module/Security/TwoFactor/SignOut.php:112 msgid "Trust and sign out" msgstr "Megbízás és kijelentkezés" -#: src/Module/Security/TwoFactor/Trust.php:96 +#: src/Module/Security/TwoFactor/Trust.php:82 msgid "Couldn't save browser to Cookie." msgstr "Nem sikerült elmenteni a böngészőt a sütibe." -#: src/Module/Security/TwoFactor/Trust.php:141 +#: src/Module/Security/TwoFactor/Trust.php:127 msgid "Trust this browser?" msgstr "Megbízik ebben a böngészőben?" -#: src/Module/Security/TwoFactor/Trust.php:142 +#: src/Module/Security/TwoFactor/Trust.php:128 msgid "" "If you choose to trust this browser, you will not be asked for a " "verification code the next time you sign in.
" msgstr "Ha azt választja, hogy megbízik ebben a böngészőben, akkor a következő bejelentkezéskor nem kéri Öntől az ellenőrző kódot.
" -#: src/Module/Security/TwoFactor/Trust.php:143 +#: src/Module/Security/TwoFactor/Trust.php:129 msgid "Not now" msgstr "Most nem" -#: src/Module/Security/TwoFactor/Trust.php:144 +#: src/Module/Security/TwoFactor/Trust.php:130 msgid "Don't trust" msgstr "Ne bízzon meg" -#: src/Module/Security/TwoFactor/Trust.php:145 +#: src/Module/Security/TwoFactor/Trust.php:131 msgid "Trust" msgstr "Megbízás" -#: src/Module/Security/TwoFactor/Verify.php:97 +#: src/Module/Security/TwoFactor/Verify.php:83 msgid "" "Open the two-factor authentication app on your device to get an " "authentication code and verify your identity.
" msgstr "Nyissa meg a kétlépcsős hitelesítés alkalmazást az eszközén, hogy megkapjon egy hitelesítő kódot és ellenőrizze a személyazonosságát.
" -#: src/Module/Security/TwoFactor/Verify.php:100 +#: src/Module/Security/TwoFactor/Verify.php:86 #, php-format msgid "" "If you do not have access to your authentication code you can use a two-factor recovery code." msgstr "Ha nem fér hozzá a hitelesítési kódjához, akkor használhat egy kétlépcsős visszaszerzési kódot." -#: src/Module/Security/TwoFactor/Verify.php:101 -#: src/Module/Settings/TwoFactor/Verify.php:158 +#: src/Module/Security/TwoFactor/Verify.php:87 +#: src/Module/Settings/TwoFactor/Verify.php:144 msgid "Please enter a code from your authentication app" msgstr "Adjon meg egy kódot a hitelesítő alkalmazásából" -#: src/Module/Security/TwoFactor/Verify.php:102 +#: src/Module/Security/TwoFactor/Verify.php:88 msgid "Verify code and complete login" msgstr "Kód ellenőrzése és a bejelentkezés befejezése" -#: src/Module/Settings/Account.php:96 +#: src/Module/Settings/Account.php:82 msgid "Please use a shorter name." msgstr "Használjon rövidebb nevet." -#: src/Module/Settings/Account.php:99 +#: src/Module/Settings/Account.php:85 msgid "Name too short." msgstr "A név túl rövid." -#: src/Module/Settings/Account.php:108 +#: src/Module/Settings/Account.php:94 msgid "Wrong Password." msgstr "Hibás jelszó." -#: src/Module/Settings/Account.php:113 +#: src/Module/Settings/Account.php:99 msgid "Invalid email." msgstr "Érvénytelen e-mail-cím." -#: src/Module/Settings/Account.php:117 +#: src/Module/Settings/Account.php:103 msgid "Cannot change to that email." msgstr "Nem lehet megváltoztatni arra az e-mail-címre." -#: src/Module/Settings/Account.php:146 src/Module/Settings/Account.php:195 -#: src/Module/Settings/Account.php:216 src/Module/Settings/Account.php:300 -#: src/Module/Settings/Account.php:329 +#: src/Module/Settings/Account.php:132 src/Module/Settings/Account.php:181 +#: src/Module/Settings/Account.php:202 src/Module/Settings/Account.php:286 +#: src/Module/Settings/Account.php:315 msgid "Settings were not updated." msgstr "A beállítások nem lettek frissítve." -#: src/Module/Settings/Account.php:347 +#: src/Module/Settings/Account.php:333 msgid "Contact CSV file upload error" msgstr "Partner CSV-fájl feltöltési hiba" -#: src/Module/Settings/Account.php:366 +#: src/Module/Settings/Account.php:352 msgid "Importing Contacts done" msgstr "A partnerek importálása kész" -#: src/Module/Settings/Account.php:379 +#: src/Module/Settings/Account.php:365 msgid "Relocate message has been send to your contacts" msgstr "Az áthelyezési üzenet el lett küldve a partnereknek" -#: src/Module/Settings/Account.php:396 +#: src/Module/Settings/Account.php:382 msgid "Unable to find your profile. Please contact your admin." msgstr "Nem található a profilja. Vegye fel a kapcsolatot a rendszergazdával." -#: src/Module/Settings/Account.php:438 +#: src/Module/Settings/Account.php:424 msgid "" "Account for a service that automatically shares content based on user " "defined channels." msgstr "Fiók egy olyan szolgáltatáshoz, amely automatikusan megosztja a tartalmat a felhasználó által meghatározott csatornák alapján." -#: src/Module/Settings/Account.php:448 +#: src/Module/Settings/Account.php:434 msgid "Personal Page Subtypes" msgstr "Személyes oldal altípusai" -#: src/Module/Settings/Account.php:449 +#: src/Module/Settings/Account.php:435 msgid "Community Group Subtypes" msgstr "Közösségi csoport altípusai" -#: src/Module/Settings/Account.php:460 +#: src/Module/Settings/Account.php:446 msgid "Account for a personal profile." msgstr "Egy személyes profil fiókja." -#: src/Module/Settings/Account.php:467 +#: src/Module/Settings/Account.php:453 msgid "" "Account for an organisation that automatically approves contact requests as " "\"Followers\"." msgstr "Egy szervezet fiókja, amely automatikusan jóváhagyja a partnerkéréseket, mint például a „követőket”." -#: src/Module/Settings/Account.php:474 +#: src/Module/Settings/Account.php:460 msgid "" "Account for a news reflector that automatically approves contact requests as" " \"Followers\"." msgstr "Egy hírportál fiókja, amely automatikusan jóváhagyja a partnerkéréseket, mint például a „követőket”." -#: src/Module/Settings/Account.php:481 +#: src/Module/Settings/Account.php:467 msgid "Account for community discussions." msgstr "Közösségi beszélgetések fiókja." -#: src/Module/Settings/Account.php:489 +#: src/Module/Settings/Account.php:475 msgid "" "Account for a regular personal profile that requires manual approval of " "\"Friends\" and \"Followers\"." msgstr "Egy szokásos személyes profil fiókja, amely az „ismerősök” és a „követők” kézi jóváhagyását igényli." -#: src/Module/Settings/Account.php:496 +#: src/Module/Settings/Account.php:482 msgid "" "Account for a public profile that automatically approves contact requests as" " \"Followers\"." msgstr "Egy nyilvános profil fiókja, amely automatikusan jóváhagyja a partnerkéréseket, mint például a „követőket”." -#: src/Module/Settings/Account.php:503 +#: src/Module/Settings/Account.php:489 msgid "Automatically approves all contact requests." msgstr "Automatikusan jóváhagyja az összes partnerkérést." -#: src/Module/Settings/Account.php:510 +#: src/Module/Settings/Account.php:496 msgid "Contact requests have to be manually approved." msgstr "A partnerkéréseket kézzel kell jóváhagyni." -#: src/Module/Settings/Account.php:517 +#: src/Module/Settings/Account.php:503 msgid "" "Account for a popular profile that automatically approves contact requests " "as \"Friends\"." msgstr "Egy népszerű profil fiókja, amely automatikusan jóváhagyja a partnerkéréseket, mint például az „ismerősöket”." -#: src/Module/Settings/Account.php:522 +#: src/Module/Settings/Account.php:508 msgid "Private Group [Experimental]" msgstr "Személyes csoport [kísérleti]" -#: src/Module/Settings/Account.php:524 +#: src/Module/Settings/Account.php:510 msgid "Requires manual approval of contact requests." msgstr "A partnerkérések kézi jóváhagyását igényli." -#: src/Module/Settings/Account.php:533 +#: src/Module/Settings/Account.php:519 msgid "OpenID:" msgstr "OpenID:" -#: src/Module/Settings/Account.php:533 +#: src/Module/Settings/Account.php:519 msgid "(Optional) Allow this OpenID to login to this account." msgstr "(Kihagyható) Lehetővé teszi ezen OpenID számára, hogy bejelentkezzen ebbe a fiókba." -#: src/Module/Settings/Account.php:541 +#: src/Module/Settings/Account.php:527 msgid "Publish your profile in your local site directory?" msgstr "Közzéteszi a profilját a helyi oldal könyvtárában?" -#: src/Module/Settings/Account.php:541 +#: src/Module/Settings/Account.php:527 #, php-format msgid "" "Your profile will be published in this node's local " @@ -9856,94 +9837,94 @@ msgid "" " system settings." msgstr "A profilja közzé lesz téve ennek a csomópontnak a helyi könyvtárában. A profilrészletei esetleg nyilvánosan láthatóak lehetnek a rendszerbeállításoktól függően." -#: src/Module/Settings/Account.php:547 +#: src/Module/Settings/Account.php:533 #, php-format msgid "" "Your profile will also be published in the global friendica directories " "(e.g. %s)." msgstr "A profilja közzé lesz téve a globális Friendica könyvtárakban is (például itt: %s)." -#: src/Module/Settings/Account.php:560 +#: src/Module/Settings/Account.php:546 msgid "Account Settings" msgstr "Fiókbeállítások" -#: src/Module/Settings/Account.php:561 +#: src/Module/Settings/Account.php:547 #, php-format msgid "Your Identity Address is '%s' or '%s'." msgstr "Az Ön személyazonosság-címe „%s” vagy „%s”." -#: src/Module/Settings/Account.php:568 +#: src/Module/Settings/Account.php:554 msgid "Password Settings" msgstr "Jelszóbeállítások" -#: src/Module/Settings/Account.php:570 +#: src/Module/Settings/Account.php:556 msgid "Leave password fields blank unless changing" msgstr "Hagyja üresen a jelszómezőket, különben megváltozik" -#: src/Module/Settings/Account.php:572 +#: src/Module/Settings/Account.php:558 msgid "Password:" msgstr "Jelszó:" -#: src/Module/Settings/Account.php:572 +#: src/Module/Settings/Account.php:558 msgid "Your current password to confirm the changes of the email address" msgstr "A jelenlegi jelszava az e-mail-címe megváltoztatásának megerősítéséhez" -#: src/Module/Settings/Account.php:575 +#: src/Module/Settings/Account.php:561 msgid "Delete OpenID URL" msgstr "OpenID URL törlése" -#: src/Module/Settings/Account.php:577 +#: src/Module/Settings/Account.php:563 msgid "Basic Settings" msgstr "Alapvető beállítások" -#: src/Module/Settings/Account.php:578 -#: src/Module/Settings/Profile/Index.php:288 +#: src/Module/Settings/Account.php:564 +#: src/Module/Settings/Profile/Index.php:274 msgid "Display name:" msgstr "Megjelenített név:" -#: src/Module/Settings/Account.php:579 +#: src/Module/Settings/Account.php:565 msgid "Email Address:" msgstr "E-mail-cím:" -#: src/Module/Settings/Account.php:580 +#: src/Module/Settings/Account.php:566 msgid "Your Timezone:" msgstr "Az Ön időzónája:" -#: src/Module/Settings/Account.php:581 +#: src/Module/Settings/Account.php:567 msgid "Your Language:" msgstr "Az Ön nyelve:" -#: src/Module/Settings/Account.php:581 +#: src/Module/Settings/Account.php:567 msgid "" "Set the language we use to show you friendica interface and to send you " "emails" msgstr "Annak a nyelvnek a beállítása, amelyet a Friendica felületének megjelenítéséhez és a levelek küldéséhez használunk" -#: src/Module/Settings/Account.php:582 +#: src/Module/Settings/Account.php:568 msgid "Default Post Location:" msgstr "Alapértelmezett bejegyzésküldési hely:" -#: src/Module/Settings/Account.php:583 +#: src/Module/Settings/Account.php:569 msgid "Use Browser Location:" msgstr "Böngésző helyének használata:" -#: src/Module/Settings/Account.php:585 +#: src/Module/Settings/Account.php:571 msgid "Security and Privacy Settings" msgstr "Biztonsági és adatvédelmi beállítások" -#: src/Module/Settings/Account.php:587 +#: src/Module/Settings/Account.php:573 msgid "Maximum Friend Requests/Day:" msgstr "Legtöbb ismerőskérés naponta:" -#: src/Module/Settings/Account.php:587 +#: src/Module/Settings/Account.php:573 msgid "(to prevent spam abuse)" msgstr "(a kéretlen üzenettel való visszaélés elkerüléséhez)" -#: src/Module/Settings/Account.php:589 +#: src/Module/Settings/Account.php:575 msgid "Allow your profile to be searchable globally?" msgstr "Engedélyezi, hogy a profilja globálisan kereshető legyen?" -#: src/Module/Settings/Account.php:589 +#: src/Module/Settings/Account.php:575 msgid "" "Activate this setting if you want others to easily find and follow you. Your" " profile will be searchable on remote systems. This setting also determines " @@ -9951,43 +9932,43 @@ msgid "" "indexed or not." msgstr "Akkor kapcsolja be ezt a beállítást, ha azt szeretné, hogy mások egyszerűen megtalálják és kövessék Önt. A profilja kereshető lesz a távoli rendszereken. Ez a beállítás azt is meghatározza, hogy a Friendica tájékoztatja-e a keresőmotorokat arról, hogy a profilját indexelni kell-e vagy sem." -#: src/Module/Settings/Account.php:590 +#: src/Module/Settings/Account.php:576 msgid "Hide your contact/friend list from viewers of your profile?" msgstr "Elrejti a partnerlistáját vagy ismerőslistáját a profilja megtekintői elől?" -#: src/Module/Settings/Account.php:590 +#: src/Module/Settings/Account.php:576 msgid "" "A list of your contacts is displayed on your profile page. Activate this " "option to disable the display of your contact list." msgstr "A partnereinek listája a profiloldalán van megjelenítve. Kapcsolja be ezt a beállítást, hogy letiltsa a partnerlistája megjelenítését." -#: src/Module/Settings/Account.php:591 +#: src/Module/Settings/Account.php:577 msgid "Hide your public content from anonymous viewers" msgstr "Nyilvános tartalom elrejtése a névtelen megtekintők elől" -#: src/Module/Settings/Account.php:591 +#: src/Module/Settings/Account.php:577 msgid "" "Anonymous visitors will only see your basic profile details. Your public " "posts and replies will still be freely accessible on the remote servers of " "your followers and through relays." msgstr "A névtelen látogatók csak az alapvető profilrészleteit fogják látni. A nyilvános bejegyzései és válaszai továbbra is szabadon elérhetőek lesznek a követői távoli kiszolgálóin és a továbbítókon keresztül." -#: src/Module/Settings/Account.php:592 +#: src/Module/Settings/Account.php:578 msgid "Make public posts unlisted" msgstr "Nyilvános bejegyzések felsorolatlanná tétele" -#: src/Module/Settings/Account.php:592 +#: src/Module/Settings/Account.php:578 msgid "" "Your public posts will not appear on the community pages or in search " "results, nor be sent to relay servers. However they can still appear on " "public feeds on remote servers." msgstr "A nyilvános bejegyzései nem fognak megjelenni a közösségi oldalakon vagy a keresési találatokban, és nem lesznek elküldve az átjátszó kiszolgálóknak. Azonban továbbra is megjelenhetnek a nyilvános hírforrásokban a távoli kiszolgálókon." -#: src/Module/Settings/Account.php:593 +#: src/Module/Settings/Account.php:579 msgid "Make all posted pictures accessible" msgstr "Az összes beküldött fénykép elérhetővé tétele" -#: src/Module/Settings/Account.php:593 +#: src/Module/Settings/Account.php:579 msgid "" "This option makes every posted picture accessible via the direct link. This " "is a workaround for the problem that most other networks can't handle " @@ -9995,352 +9976,352 @@ msgid "" "public on your photo albums though." msgstr "Ez a beállítás elérhetővé tesz minden egyes beküldött fényképet a közvetlen hivatkozáson keresztül. Ez egy kerülőmegoldás arra a problémára, hogy a legtöbb más hálózat nem tudja kezelni a fényképek jogosultságait. A nem nyilvános fényképek továbbra sem lesznek láthatóak a nyilvánosság számára a fényképalbumán keresztül." -#: src/Module/Settings/Account.php:594 +#: src/Module/Settings/Account.php:580 msgid "Allow friends to post to your profile page?" msgstr "Engedélyezi az ismerősöknek, hogy beküldjenek a profiloldalára?" -#: src/Module/Settings/Account.php:594 +#: src/Module/Settings/Account.php:580 msgid "" "Your contacts may write posts on your profile wall. These posts will be " "distributed to your contacts" msgstr "A partnerei bejegyzéseket írhatnak az Ön profilfalára. Ezek a bejegyzések továbbítva lesznek a partnereinek." -#: src/Module/Settings/Account.php:595 +#: src/Module/Settings/Account.php:581 msgid "Allow friends to tag your posts?" msgstr "Engedélyezi az ismerőseinek, hogy címkézzék a bejegyzéseit?" -#: src/Module/Settings/Account.php:595 +#: src/Module/Settings/Account.php:581 msgid "Your contacts can add additional tags to your posts." msgstr "A partnerei további címkéket adhatnak a bejegyzéseihez." -#: src/Module/Settings/Account.php:596 +#: src/Module/Settings/Account.php:582 msgid "Default privacy circle for new contacts" msgstr "Alapértelmezett adatvédelmi kör az új partnerekhez" -#: src/Module/Settings/Account.php:597 +#: src/Module/Settings/Account.php:583 msgid "Default privacy circle for new group contacts" msgstr "Alapértelmezett adatvédelmi kör az új csoportpartnerekhez" -#: src/Module/Settings/Account.php:598 +#: src/Module/Settings/Account.php:584 msgid "Default Post Permissions" msgstr "Alapértelmezett bejegyzés-jogosultságok" -#: src/Module/Settings/Account.php:602 +#: src/Module/Settings/Account.php:588 msgid "Expiration settings" msgstr "Lejárati jogosultságok" -#: src/Module/Settings/Account.php:603 +#: src/Module/Settings/Account.php:589 msgid "Automatically expire posts after this many days:" msgstr "Bejegyzések automatikus lejárata ennyi nap után:" -#: src/Module/Settings/Account.php:603 +#: src/Module/Settings/Account.php:589 msgid "If empty, posts will not expire. Expired posts will be deleted" msgstr "Ha üres, akkor a bejegyzések nem járnak le. A lejárt bejegyzések törölve lesznek." -#: src/Module/Settings/Account.php:604 +#: src/Module/Settings/Account.php:590 msgid "Expire posts" msgstr "Bejegyzések lejárata" -#: src/Module/Settings/Account.php:604 +#: src/Module/Settings/Account.php:590 msgid "When activated, posts and comments will be expired." msgstr "Ha be van kapcsolva, akkor a bejegyzések és a hozzászólások le fognak járni." -#: src/Module/Settings/Account.php:605 +#: src/Module/Settings/Account.php:591 msgid "Expire personal notes" msgstr "Személyes jegyzetek lejárata" -#: src/Module/Settings/Account.php:605 +#: src/Module/Settings/Account.php:591 msgid "" "When activated, the personal notes on your profile page will be expired." msgstr "Ha be van kapcsolva, akkor a profiloldalán lévő személyes jegyzetek le fognak járni." -#: src/Module/Settings/Account.php:606 +#: src/Module/Settings/Account.php:592 msgid "Expire starred posts" msgstr "Csillagozott bejegyzések lejárata" -#: src/Module/Settings/Account.php:606 +#: src/Module/Settings/Account.php:592 msgid "" "Starring posts keeps them from being expired. That behaviour is overwritten " "by this setting." msgstr "A bejegyzések csillagozása megakadályozza azok lejáratát. Ez a viselkedés felülírható ezzel a beállítással." -#: src/Module/Settings/Account.php:607 +#: src/Module/Settings/Account.php:593 msgid "Only expire posts by others" msgstr "Csak a másoktól származó bejegyzések lejárata" -#: src/Module/Settings/Account.php:607 +#: src/Module/Settings/Account.php:593 msgid "" "When activated, your own posts never expire. Then the settings above are " "only valid for posts you received." msgstr "Ha be van kapcsolva, akkor a saját bejegyzései sosem járnak le. Ekkor a fenti beállítás csak azokra a bejegyzésekre érvényes, amelyeket megkap." -#: src/Module/Settings/Account.php:610 +#: src/Module/Settings/Account.php:596 msgid "Notification Settings" msgstr "Értesítési beállítások" -#: src/Module/Settings/Account.php:611 +#: src/Module/Settings/Account.php:597 msgid "Send a notification email when:" msgstr "Értesítési e-mail küldése a következő esetekben:" -#: src/Module/Settings/Account.php:612 +#: src/Module/Settings/Account.php:598 msgid "You receive an introduction" msgstr "Egy bemutatkozást fogad" -#: src/Module/Settings/Account.php:613 +#: src/Module/Settings/Account.php:599 msgid "Your introductions are confirmed" msgstr "A bemutatkozásait jóváhagyták" -#: src/Module/Settings/Account.php:614 +#: src/Module/Settings/Account.php:600 msgid "Someone writes on your profile wall" msgstr "Valaki ír a profilfalára" -#: src/Module/Settings/Account.php:615 +#: src/Module/Settings/Account.php:601 msgid "Someone writes a followup comment" msgstr "Valaki egy követő hozzászólást ír" -#: src/Module/Settings/Account.php:616 +#: src/Module/Settings/Account.php:602 msgid "You receive a private message" msgstr "Személyes üzenetet kap" -#: src/Module/Settings/Account.php:617 +#: src/Module/Settings/Account.php:603 msgid "You receive a friend suggestion" msgstr "Ismerősajánlást kap" -#: src/Module/Settings/Account.php:618 +#: src/Module/Settings/Account.php:604 msgid "You are tagged in a post" msgstr "Megjelölték egy bejegyzésben" -#: src/Module/Settings/Account.php:620 +#: src/Module/Settings/Account.php:606 msgid "Create a desktop notification when:" msgstr "Asztali értesítés létrehozása ekkor:" -#: src/Module/Settings/Account.php:621 +#: src/Module/Settings/Account.php:607 msgid "Someone tagged you" msgstr "Valaki megjelölte Önt" -#: src/Module/Settings/Account.php:622 +#: src/Module/Settings/Account.php:608 msgid "Someone directly commented on your post" msgstr "Valaki közvetlenül hozzászólt a bejegyzéséhez" -#: src/Module/Settings/Account.php:623 +#: src/Module/Settings/Account.php:609 msgid "Someone liked your content" msgstr "Valaki kedvelte az Ön tartalmát" -#: src/Module/Settings/Account.php:623 src/Module/Settings/Account.php:624 +#: src/Module/Settings/Account.php:609 src/Module/Settings/Account.php:610 msgid "Can only be enabled, when the direct comment notification is enabled." msgstr "Csak akkor engedélyezhető, ha a közvetlen hozzászólási értesítés engedélyezve van." -#: src/Module/Settings/Account.php:624 +#: src/Module/Settings/Account.php:610 msgid "Someone shared your content" msgstr "Valaki megosztotta az Ön tartalmát" -#: src/Module/Settings/Account.php:625 +#: src/Module/Settings/Account.php:611 msgid "Someone commented in your thread" msgstr "Valaki hozzászólt az Ön szálában" -#: src/Module/Settings/Account.php:626 +#: src/Module/Settings/Account.php:612 msgid "Someone commented in a thread where you commented" msgstr "Valaki hozzászólt egy olyan szálban, ahol Ön hozzászólt" -#: src/Module/Settings/Account.php:627 +#: src/Module/Settings/Account.php:613 msgid "Someone commented in a thread where you interacted" msgstr "Valaki hozzászólt egy olyan szálban, ahol Ön interakcióba került" -#: src/Module/Settings/Account.php:629 +#: src/Module/Settings/Account.php:615 msgid "Activate desktop notifications" msgstr "Asztali értesítések bekapcsolása" -#: src/Module/Settings/Account.php:629 +#: src/Module/Settings/Account.php:615 msgid "Show desktop popup on new notifications" msgstr "Felugró üzenet megjelenítése az asztalon új értesítések esetén." -#: src/Module/Settings/Account.php:633 +#: src/Module/Settings/Account.php:619 msgid "Text-only notification emails" msgstr "Csak szöveges értesítési e-mailek" -#: src/Module/Settings/Account.php:635 +#: src/Module/Settings/Account.php:621 msgid "Send text only notification emails, without the html part" msgstr "Csak szöveges értesítési e-mailek küldése a HTML rész nélkül." -#: src/Module/Settings/Account.php:639 +#: src/Module/Settings/Account.php:625 msgid "Show detailled notifications" msgstr "Részletes értesítések megjelenítése" -#: src/Module/Settings/Account.php:641 +#: src/Module/Settings/Account.php:627 msgid "" "Per default, notifications are condensed to a single notification per item. " "When enabled every notification is displayed." msgstr "Alapértelmezetten az értesítések elemenként egyetlen értesítésbe vannak összevonva. Ha engedélyezve van, akkor minden értesítés megjelenik." -#: src/Module/Settings/Account.php:645 +#: src/Module/Settings/Account.php:631 msgid "Show notifications of ignored contacts" msgstr "Mellőzött partnerek értesítéseinek megjelenítése" -#: src/Module/Settings/Account.php:647 +#: src/Module/Settings/Account.php:633 msgid "" "You don't see posts from ignored contacts. But you still see their comments." " This setting controls if you want to still receive regular notifications " "that are caused by ignored contacts or not." msgstr "Nem látja a mellőzött partnerektől érkező bejegyzéseket. Viszont továbbra is látja a hozzászólásaikat. Ez a beállítás azt vezérli, hogy továbbra is szeretne-e olyan normál értesítéseket kapni vagy sem, amelyeket mellőzött partnerek okoznak." -#: src/Module/Settings/Account.php:650 +#: src/Module/Settings/Account.php:636 msgid "Advanced Account/Page Type Settings" msgstr "Speciális fióktípus vagy oldaltípus beállítások" -#: src/Module/Settings/Account.php:651 +#: src/Module/Settings/Account.php:637 msgid "Change the behaviour of this account for special situations" msgstr "A fiók viselkedésének megváltoztatása bizonyos helyzetekre." -#: src/Module/Settings/Account.php:654 +#: src/Module/Settings/Account.php:640 msgid "Import Contacts" msgstr "Partnerek importálása" -#: src/Module/Settings/Account.php:655 +#: src/Module/Settings/Account.php:641 msgid "" "Upload a CSV file that contains the handle of your followed accounts in the " "first column you exported from the old account." msgstr "Töltsön fel egy olyan CSV-fájlt, amely a követett fiókok kezelőjét tartalmazza az első oszlopban, ahogy a régi fiókból exportálta." -#: src/Module/Settings/Account.php:656 +#: src/Module/Settings/Account.php:642 msgid "Upload File" msgstr "Fájl feltöltése" -#: src/Module/Settings/Account.php:659 +#: src/Module/Settings/Account.php:645 msgid "Relocate" msgstr "Áthelyezés" -#: src/Module/Settings/Account.php:660 +#: src/Module/Settings/Account.php:646 msgid "" "If you have moved this profile from another server, and some of your " "contacts don't receive your updates, try pushing this button." msgstr "Ha áthelyezte ezt a profilt egy másik kiszolgálóról, és néhány partnere nem kapta meg a frissítéseket, akkor próbálja meg megnyomni ezt a gombot." -#: src/Module/Settings/Account.php:661 +#: src/Module/Settings/Account.php:647 msgid "Resend relocate message to contacts" msgstr "Áthelyezési üzenet küldése a partnereknek" -#: src/Module/Settings/Addons.php:86 +#: src/Module/Settings/Addons.php:72 msgid "Addon Settings" msgstr "Bővítménybeállítások" -#: src/Module/Settings/Addons.php:87 +#: src/Module/Settings/Addons.php:73 msgid "No Addon settings configured" msgstr "Nincsenek bővítménybeállítások meghatározva" -#: src/Module/Settings/Channels.php:148 +#: src/Module/Settings/Channels.php:134 msgid "" "This page can be used to define the channels that will automatically be " "reshared by your account." msgstr "Ez az oldal használható azon csatornák meghatározásához, amelyeket a fiókja automatikusan meg fog osztani." -#: src/Module/Settings/Channels.php:153 +#: src/Module/Settings/Channels.php:139 msgid "This page can be used to define your own channels." msgstr "Ez az oldal használható a saját csatornák meghatározásához." -#: src/Module/Settings/Channels.php:182 +#: src/Module/Settings/Channels.php:168 msgid "Publish" msgstr "Közzététel" -#: src/Module/Settings/Channels.php:182 +#: src/Module/Settings/Channels.php:168 msgid "" "When selected, the channel results are reshared. This only works for public " "ActivityPub posts from the public timeline or the user defined circles." msgstr "Ha ki van választva, akkor a csatorna eredményei újra megosztásra kerülnek. Ez csak a nyilvános idővonalról vagy a felhasználó által meghatározott körökből származó nyilvános ActivityPub-bejegyzéseknél működik." -#: src/Module/Settings/Channels.php:190 src/Module/Settings/Channels.php:211 -#: src/Module/Settings/Display.php:338 +#: src/Module/Settings/Channels.php:176 src/Module/Settings/Channels.php:197 +#: src/Module/Settings/Display.php:324 msgid "Label" msgstr "Címke" -#: src/Module/Settings/Channels.php:191 src/Module/Settings/Channels.php:212 -#: src/Module/Settings/Display.php:339 -#: src/Module/Settings/TwoFactor/AppSpecific.php:137 +#: src/Module/Settings/Channels.php:177 src/Module/Settings/Channels.php:198 +#: src/Module/Settings/Display.php:325 +#: src/Module/Settings/TwoFactor/AppSpecific.php:123 msgid "Description" msgstr "Leírás" -#: src/Module/Settings/Channels.php:192 src/Module/Settings/Channels.php:213 +#: src/Module/Settings/Channels.php:178 src/Module/Settings/Channels.php:199 msgid "Access Key" msgstr "Hívóbetű" -#: src/Module/Settings/Channels.php:193 src/Module/Settings/Channels.php:214 +#: src/Module/Settings/Channels.php:179 src/Module/Settings/Channels.php:200 msgid "Circle/Channel" msgstr "Kör vagy csatorna" -#: src/Module/Settings/Channels.php:194 src/Module/Settings/Channels.php:215 +#: src/Module/Settings/Channels.php:180 src/Module/Settings/Channels.php:201 msgid "Include Tags" msgstr "Címkék felvétele" -#: src/Module/Settings/Channels.php:195 src/Module/Settings/Channels.php:216 +#: src/Module/Settings/Channels.php:181 src/Module/Settings/Channels.php:202 msgid "Exclude Tags" msgstr "Címkék kizárása" -#: src/Module/Settings/Channels.php:196 src/Module/Settings/Channels.php:217 +#: src/Module/Settings/Channels.php:182 src/Module/Settings/Channels.php:203 msgid "Minimum Size" msgstr "Legkisebb méret" -#: src/Module/Settings/Channels.php:197 src/Module/Settings/Channels.php:218 +#: src/Module/Settings/Channels.php:183 src/Module/Settings/Channels.php:204 msgid "Maximum Size" msgstr "Legnagyobb méret" -#: src/Module/Settings/Channels.php:198 src/Module/Settings/Channels.php:219 +#: src/Module/Settings/Channels.php:184 src/Module/Settings/Channels.php:205 msgid "Full Text Search" msgstr "Teljes szöveges keresés" -#: src/Module/Settings/Channels.php:202 src/Module/Settings/Channels.php:223 +#: src/Module/Settings/Channels.php:188 src/Module/Settings/Channels.php:209 msgid "Select all languages that you want to see in this channel." msgstr "Válassza ki az összes nyelvet, amelyet látni szeretne ezen a csatornán." -#: src/Module/Settings/Channels.php:204 +#: src/Module/Settings/Channels.php:190 msgid "Delete channel" msgstr "Csatorna törlése" -#: src/Module/Settings/Channels.php:204 +#: src/Module/Settings/Channels.php:190 msgid "Check to delete this entry from the channel list" msgstr "Jelölje be a bejegyzés csatornalistából való törléséhez" -#: src/Module/Settings/Channels.php:211 +#: src/Module/Settings/Channels.php:197 msgid "Short name for the channel. It is displayed on the channels widget." msgstr "A csatorna rövid neve. Ez a csatornák felületi elemen jelenik meg." -#: src/Module/Settings/Channels.php:212 +#: src/Module/Settings/Channels.php:198 msgid "This should describe the content of the channel in a few word." msgstr "Ennek néhány szóban le kell írnia a csatorna tartalmát." -#: src/Module/Settings/Channels.php:213 +#: src/Module/Settings/Channels.php:199 msgid "" "When you want to access this channel via an access key, you can define it " "here. Pay attention to not use an already used one." msgstr "Ha hívóbetűn keresztül szeretne hozzáférni ehhez a csatornához, akkor itt határozhatja meg azt. Figyeljen arra, hogy ne használjon már használatban lévőt." -#: src/Module/Settings/Channels.php:214 +#: src/Module/Settings/Channels.php:200 msgid "Select a circle or channel, that your channel should be based on." msgstr "Válasszon egy kört vagy csatornát, amelyen a csatornájának alapulnia kell." -#: src/Module/Settings/Channels.php:215 +#: src/Module/Settings/Channels.php:201 msgid "" "Comma separated list of tags. A post will be used when it contains any of " "the listed tags." msgstr "Címkék vesszővel elválasztott listája. Egy bejegyzés akkor lesz használva, ha a felsorolt címkék bármelyikét tartalmazza." -#: src/Module/Settings/Channels.php:216 +#: src/Module/Settings/Channels.php:202 msgid "" "Comma separated list of tags. If a post contain any of these tags, then it " "will not be part of nthis channel." msgstr "Címkék vesszővel elválasztott listája. Ha egy bejegyzés ezen címkék bármelyikét tartalmazza, akkor nem lesz része ennek a csatornának." -#: src/Module/Settings/Channels.php:217 +#: src/Module/Settings/Channels.php:203 msgid "" "Minimum post size. Leave empty for no minimum size. The size is calculated " "without links, attached posts, mentions or hashtags." msgstr "Legkisebb bejegyzésméret. Hagyja üresen, ha nincs legkisebb méret. A méret hivatkozások, csatolt bejegyzések, említések vagy kettős keresztes címkék nélkül kerül kiszámításra." -#: src/Module/Settings/Channels.php:218 +#: src/Module/Settings/Channels.php:204 msgid "" "Maximum post size. Leave empty for no maximum size. The size is calculated " "without links, attached posts, mentions or hashtags." msgstr "Legnagyobb bejegyzésméret. Hagyja üresen, ha nincs legnagyobb méret. A méret hivatkozások, csatolt bejegyzések, említések vagy kettős keresztes címkék nélkül kerül kiszámításra." -#: src/Module/Settings/Channels.php:219 +#: src/Module/Settings/Channels.php:205 #, php-format msgid "" "Search terms for the body, supports the \"boolean mode\" operators from " @@ -10348,600 +10329,589 @@ msgid "" "keywords: %s" msgstr "A törzs keresési kifejezései. Támogatja a MariaDB „logikai módú” operátorait. Nézze meg a súgóban az operátorok és a további kulcsszavak teljes listáját: %s" -#: src/Module/Settings/Channels.php:220 +#: src/Module/Settings/Channels.php:206 msgid "Check to display images in the channel." msgstr "Jelölje be a csatornában lévő képek megjelenítéséhez." -#: src/Module/Settings/Channels.php:221 +#: src/Module/Settings/Channels.php:207 msgid "Check to display videos in the channel." msgstr "Jelölje be a csatornában lévő videók megjelenítéséhez." -#: src/Module/Settings/Channels.php:222 +#: src/Module/Settings/Channels.php:208 msgid "Check to display audio in the channel." msgstr "Jelölje be a csatornában lévő hangok megjelenítéséhez." -#: src/Module/Settings/Channels.php:227 +#: src/Module/Settings/Channels.php:213 msgid "Add new entry to the channel list" msgstr "Új bejegyzés hozzáadása a csatornalistához" -#: src/Module/Settings/Channels.php:228 +#: src/Module/Settings/Channels.php:214 msgid "Add" msgstr "Hozzáadás" -#: src/Module/Settings/Channels.php:230 +#: src/Module/Settings/Channels.php:216 msgid "Current Entries in the channel list" msgstr "Jelenlegi bejegyzések a csatornalistában" -#: src/Module/Settings/Channels.php:233 +#: src/Module/Settings/Channels.php:219 msgid "Delete entry from the channel list" msgstr "Bejegyzés törlése a csatornalistáról" -#: src/Module/Settings/Channels.php:234 +#: src/Module/Settings/Channels.php:220 msgid "Delete entry from the channel list?" msgstr "Törli a bejegyzést a csatornalistáról?" -#: src/Module/Settings/Connectors.php:122 +#: src/Module/Settings/Connectors.php:108 msgid "Failed to connect with email account using the settings provided." msgstr "Nem sikerült kapcsolódni a megadott beállításokat használó e-mail-fiókkal." -#: src/Module/Settings/Connectors.php:169 -#: src/Module/Settings/Connectors.php:170 +#: src/Module/Settings/Connectors.php:155 +#: src/Module/Settings/Connectors.php:156 msgid "Diaspora (Socialhome, Hubzilla)" msgstr "Diaspora (Socialhome, Hubzilla)" -#: src/Module/Settings/Connectors.php:169 -#: src/Module/Settings/Connectors.php:173 +#: src/Module/Settings/Connectors.php:155 #, php-format msgid "Built-in support for %s connectivity is enabled" msgstr "A(z) %s összekapcsolhatóságának beépített támogatása engedélyezve" -#: src/Module/Settings/Connectors.php:170 -#: src/Module/Settings/Connectors.php:172 +#: src/Module/Settings/Connectors.php:156 #, php-format msgid "Built-in support for %s connectivity is disabled" msgstr "A(z) %s összekapcsolhatóságának beépített támogatása letiltva" -#: src/Module/Settings/Connectors.php:172 -#: src/Module/Settings/Connectors.php:173 -msgid "OStatus (GNU Social)" -msgstr "OStatus (GNU Social)" - -#: src/Module/Settings/Connectors.php:185 +#: src/Module/Settings/Connectors.php:167 msgid "Email access is disabled on this site." msgstr "Az e-mailes hozzáférés le van tiltva ezen az oldalon." -#: src/Module/Settings/Connectors.php:200 -#: src/Module/Settings/Connectors.php:254 +#: src/Module/Settings/Connectors.php:182 +#: src/Module/Settings/Connectors.php:233 msgid "None" msgstr "Nincs" -#: src/Module/Settings/Connectors.php:204 +#: src/Module/Settings/Connectors.php:186 msgid "Default (Mastodon will display the title and a link to the post)" msgstr "Alapértelmezett (a Mastodon megjeleníti a címet és a bejegyzésre mutató hivatkozást)" -#: src/Module/Settings/Connectors.php:205 +#: src/Module/Settings/Connectors.php:187 msgid "" "Use the summary (Mastodon and some others will treat it as content warning)" msgstr "Az összefoglaló használata (a Mastodon és néhányan egyéb tartalomfigyelmeztetésként fogja kezelni)" -#: src/Module/Settings/Connectors.php:206 +#: src/Module/Settings/Connectors.php:188 msgid "Embed the title in the body" msgstr "A cím beágyazása a törzsbe" -#: src/Module/Settings/Connectors.php:218 +#: src/Module/Settings/Connectors.php:199 msgid "General Social Media Settings" msgstr "Általános közösségimédia-beállítások" -#: src/Module/Settings/Connectors.php:221 +#: src/Module/Settings/Connectors.php:202 msgid "Followed content scope" msgstr "Követett tartalom hatóköre" -#: src/Module/Settings/Connectors.php:223 +#: src/Module/Settings/Connectors.php:204 msgid "" "By default, conversations in which your follows participated but didn't " "start will be shown in your timeline. You can turn this behavior off, or " "expand it to the conversations in which your follows liked a post." msgstr "Alapértelmezetten az idővonalán megjelennek azok a beszélgetések, amelyekben a követői részt vettek, de nem ők indították el. Ezt a viselkedést kikapcsolhatja, vagy kiterjesztheti azokra a beszélgetésekre, amelyekben a követőinek tetszett egy bejegyzés." -#: src/Module/Settings/Connectors.php:225 +#: src/Module/Settings/Connectors.php:206 msgid "Only conversations my follows started" msgstr "Csak a követőim által indított beszélgetések" -#: src/Module/Settings/Connectors.php:226 +#: src/Module/Settings/Connectors.php:207 msgid "Conversations my follows started or commented on (default)" msgstr "A követőim által indított vagy hozzászólt beszélgetések (alapértelmezett)" -#: src/Module/Settings/Connectors.php:227 +#: src/Module/Settings/Connectors.php:208 msgid "Any conversation my follows interacted with, including likes" msgstr "A követőim által interakcióba került beszélgetések, beleértve a kedveléseket is" -#: src/Module/Settings/Connectors.php:230 +#: src/Module/Settings/Connectors.php:211 msgid "Collapse sensitive posts" msgstr "Érzékeny bejegyzések összecsukása" -#: src/Module/Settings/Connectors.php:230 +#: src/Module/Settings/Connectors.php:211 msgid "" "If a post is marked as \"sensitive\", it will be displayed in a collapsed " "state, if this option is enabled." msgstr "Ha egy bejegyzés „érzékenyként” van jelölve, akkor az összecsukott állapotban jelenik meg, ha ez a beállítás engedélyezve van." -#: src/Module/Settings/Connectors.php:231 +#: src/Module/Settings/Connectors.php:212 msgid "Enable intelligent shortening" msgstr "Intelligens rövidítés engedélyezése" -#: src/Module/Settings/Connectors.php:231 +#: src/Module/Settings/Connectors.php:212 msgid "" "Normally the system tries to find the best link to add to shortened posts. " "If disabled, every shortened post will always point to the original " "friendica post." msgstr "Általában a rendszer megpróbálja megkeresni a legjobb hivatkozást a rövidített bejegyzésekhez történő hozzáadáshoz. Ha le van tiltva, akkor minden egyes rövidített bejegyzés mindig az eredeti Friendica bejegyzésre fog mutatni." -#: src/Module/Settings/Connectors.php:232 +#: src/Module/Settings/Connectors.php:213 msgid "Enable simple text shortening" msgstr "Egyszerű szövegrövidítés engedélyezése" -#: src/Module/Settings/Connectors.php:232 +#: src/Module/Settings/Connectors.php:213 msgid "" "Normally the system shortens posts at the next line feed. If this option is " "enabled then the system will shorten the text at the maximum character " "limit." msgstr "Általában a rendszer lerövidíti a bejegyzéseket a következő soremelésnél. Ha ez a beállítás engedélyezve van, akkor a rendszer a legnagyobb karakterkorlátnál fogja rövidíteni a szöveget." -#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Connectors.php:214 msgid "Attach the link title" msgstr "A hivatkozás címének csatolása" -#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Connectors.php:214 msgid "" "When activated, the title of the attached link will be added as a title on " "posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that" " share feed content." msgstr "Ha be van kapcsolva, akkor a csatolt hivatkozás címe címként lesz hozzáadva a Diaspora hálózatra küldött bejegyzéseknél. Ez többnyire az olyan „távoli önmaga” partnerekkel hasznos, amelyek megosztják a hírforrás tartalmát." -#: src/Module/Settings/Connectors.php:234 +#: src/Module/Settings/Connectors.php:215 msgid "API: Use spoiler field as title" msgstr "API: a spoiler mező használata címként" -#: src/Module/Settings/Connectors.php:234 +#: src/Module/Settings/Connectors.php:215 msgid "" "When activated, the \"spoiler_text\" field in the API will be used for the " "title on standalone posts. When deactivated it will be used for spoiler " "text. For comments it will always be used for spoiler text." msgstr "Ha aktiválva van, akkor az API-ban lévő „spoiler_text” mező lesz használva az önálló bejegyzések címeként. Ha ki van kapcsolva, akkor a spoiler szövegéhez lesz használva. A megjegyzéseknél mindig a spoiler szövegéhez lesz használva." -#: src/Module/Settings/Connectors.php:235 +#: src/Module/Settings/Connectors.php:216 msgid "API: Automatically links at the end of the post as attached posts" msgstr "API: automatikusan a bejegyzés végéhez kapcsolja csatolt bejegyzésként" -#: src/Module/Settings/Connectors.php:235 +#: src/Module/Settings/Connectors.php:216 msgid "" "When activated, added links at the end of the post react the same way as " "added links in the web interface." msgstr "Ha aktiválva van, akkor a bejegyzés végéhez hozzáadott hivatkozások ugyanúgy reagálnak, mint a webes felületen hozzáadott hivatkozások." -#: src/Module/Settings/Connectors.php:236 +#: src/Module/Settings/Connectors.php:217 msgid "Article Mode" msgstr "Cikk mód" -#: src/Module/Settings/Connectors.php:236 +#: src/Module/Settings/Connectors.php:217 msgid "" "Controls how posts with titles are transmitted. Mastodon and its forks don't" " display the content of these posts if the post is created in the correct " "(default) way." msgstr "Azt vezérli, hogy a címekkel rendelkező bejegyzések hogyan kerülnek továbbításra. A Mastodon és elágaztatásai nem jelenítik meg ezeknek a bejegyzéseknek a tartalmát, ha a bejegyzést a megfelelő (alapértelmezett) módon hozták létre." -#: src/Module/Settings/Connectors.php:237 +#: src/Module/Settings/Connectors.php:218 msgid "Your legacy ActivityPub/GNU Social account" msgstr "Az örökölt ActivityPub/GNU Social fiókja" -#: src/Module/Settings/Connectors.php:237 +#: src/Module/Settings/Connectors.php:218 msgid "" "If you enter your old account name from an ActivityPub based system or your " "GNU Social/Statusnet account name here (in the format user@domain.tld), your" " contacts will be added automatically. The field will be emptied when done." msgstr "Ha megadja itt a régi, egy ActivityPub alapú rendszerből származó fiókja nevét, illetve a GNU Social vagy Statusnet fiókja nevét (felhasználó@tartomány.tld formátumban), akkor a partnerei automatikusan hozzá lesznek adva. A mező ki lesz ürítve, ha elkészült." -#: src/Module/Settings/Connectors.php:239 -msgid "Repair OStatus subscriptions" -msgstr "OStatus feliratkozások javítása" - -#: src/Module/Settings/Connectors.php:243 +#: src/Module/Settings/Connectors.php:222 msgid "Email/Mailbox Setup" msgstr "E-mail vagy postafiók-beállítások" -#: src/Module/Settings/Connectors.php:244 +#: src/Module/Settings/Connectors.php:223 msgid "" "If you wish to communicate with email contacts using this service " "(optional), please specify how to connect to your mailbox." msgstr "Ha e-mailes partnerekkel szeretne kommunikálni ezen szolgáltatás használatával (opcionális), akkor adja meg, hogy hogyan kell kapcsolódni a postafiókjához." -#: src/Module/Settings/Connectors.php:245 +#: src/Module/Settings/Connectors.php:224 msgid "Last successful email check:" msgstr "Legutóbbi sikeres e-mail-ellenőrzés:" -#: src/Module/Settings/Connectors.php:247 +#: src/Module/Settings/Connectors.php:226 msgid "IMAP server name:" msgstr "IMAP-kiszolgáló neve:" -#: src/Module/Settings/Connectors.php:248 +#: src/Module/Settings/Connectors.php:227 msgid "IMAP port:" msgstr "IMAP port:" -#: src/Module/Settings/Connectors.php:249 +#: src/Module/Settings/Connectors.php:228 msgid "Security:" msgstr "Biztonság:" -#: src/Module/Settings/Connectors.php:250 +#: src/Module/Settings/Connectors.php:229 msgid "Email login name:" msgstr "E-mail bejelentkezési neve:" -#: src/Module/Settings/Connectors.php:251 +#: src/Module/Settings/Connectors.php:230 msgid "Email password:" msgstr "E-mail jelszava:" -#: src/Module/Settings/Connectors.php:252 +#: src/Module/Settings/Connectors.php:231 msgid "Reply-to address:" msgstr "Válaszcím:" -#: src/Module/Settings/Connectors.php:253 +#: src/Module/Settings/Connectors.php:232 msgid "Send public posts to all email contacts:" msgstr "Nyilvános bejegyzések küldése az összes e-mail partnernek:" -#: src/Module/Settings/Connectors.php:254 +#: src/Module/Settings/Connectors.php:233 msgid "Action after import:" msgstr "Importálás utáni művelet:" -#: src/Module/Settings/Connectors.php:254 +#: src/Module/Settings/Connectors.php:233 msgid "Move to folder" msgstr "Áthelyezés mappába" -#: src/Module/Settings/Connectors.php:255 +#: src/Module/Settings/Connectors.php:234 msgid "Move to folder:" msgstr "Áthelyezés mappába:" -#: src/Module/Settings/Delegation.php:73 +#: src/Module/Settings/Delegation.php:59 msgid "Delegation successfully granted." msgstr "A meghatalmazás sikeresen megadva." -#: src/Module/Settings/Delegation.php:75 +#: src/Module/Settings/Delegation.php:61 msgid "Parent user not found, unavailable or password doesn't match." msgstr "A fölérendelt felhasználó nem található, nem érhető el vagy a jelszó nem egyezik." -#: src/Module/Settings/Delegation.php:79 +#: src/Module/Settings/Delegation.php:65 msgid "Delegation successfully revoked." msgstr "A meghatalmazás sikeresen visszavonva." -#: src/Module/Settings/Delegation.php:98 -#: src/Module/Settings/Delegation.php:120 +#: src/Module/Settings/Delegation.php:84 +#: src/Module/Settings/Delegation.php:106 msgid "" "Delegated administrators can view but not change delegation permissions." msgstr "A meghatalmazott adminisztrátorok megtekinthetik, de nem változtathatják meg a meghatalmazás jogosultságait." -#: src/Module/Settings/Delegation.php:112 +#: src/Module/Settings/Delegation.php:98 msgid "Delegate user not found." msgstr "A meghatalmazott felhasználó nem található." -#: src/Module/Settings/Delegation.php:169 +#: src/Module/Settings/Delegation.php:155 msgid "No parent user" msgstr "Nincs fölérendelt felhasználó" -#: src/Module/Settings/Delegation.php:180 -#: src/Module/Settings/Delegation.php:191 +#: src/Module/Settings/Delegation.php:166 +#: src/Module/Settings/Delegation.php:177 msgid "Parent User" msgstr "Fölérendelt felhasználó" -#: src/Module/Settings/Delegation.php:188 +#: src/Module/Settings/Delegation.php:174 msgid "Additional Accounts" msgstr "További fiókok" -#: src/Module/Settings/Delegation.php:189 +#: src/Module/Settings/Delegation.php:175 msgid "" "Register additional accounts that are automatically connected to your " "existing account so you can manage them from this account." msgstr "További fiókok regisztrálása, amelyek automatikusan hozzá vannak kapcsolva a meglévő fiókjához, így ebből a fiókból kezelheti azokat." -#: src/Module/Settings/Delegation.php:190 +#: src/Module/Settings/Delegation.php:176 msgid "Register an additional account" msgstr "További fiók regisztrálása" -#: src/Module/Settings/Delegation.php:192 +#: src/Module/Settings/Delegation.php:178 msgid "" "Parent users have total control about this account, including the account " "settings. Please double check whom you give this access." msgstr "A fölérendelt felhasználóknak teljes ellenőrzése van ezen fiók fölött, beleértve a fiók beállításait is. Ellenőrizze még egyszer, hogy kinek ad hozzáférést." -#: src/Module/Settings/Delegation.php:195 +#: src/Module/Settings/Delegation.php:181 msgid "Delegates" msgstr "Meghatalmazottak" -#: src/Module/Settings/Delegation.php:196 +#: src/Module/Settings/Delegation.php:182 msgid "" "Delegates are able to manage all aspects of this account/page except for " "basic account settings. Please do not delegate your personal account to " "anybody that you do not trust completely." msgstr "A meghatalmazottak képesek ezen fiókot vagy oldalt minden szempontból kezelni, kivéve az alapvető fiókbeállításokat. Ne hatalmazzon meg senki mást a személyes fiókja kezeléséhez, akiben nem bízik meg teljes mértékben." -#: src/Module/Settings/Delegation.php:197 +#: src/Module/Settings/Delegation.php:183 msgid "Existing Page Delegates" msgstr "Meglévő oldalmeghatalmazottak" -#: src/Module/Settings/Delegation.php:198 +#: src/Module/Settings/Delegation.php:184 msgid "Potential Delegates" msgstr "Lehetséges meghatalmazottak" -#: src/Module/Settings/Delegation.php:199 +#: src/Module/Settings/Delegation.php:185 msgid "No entries." msgstr "Nincsenek bejegyzések." -#: src/Module/Settings/Display.php:183 +#: src/Module/Settings/Display.php:169 msgid "The theme you chose isn't available." msgstr "A választott téma nem érhető el." -#: src/Module/Settings/Display.php:223 +#: src/Module/Settings/Display.php:209 #, php-format msgid "%s - (Unsupported)" msgstr "%s – (nem támogatott)" -#: src/Module/Settings/Display.php:260 +#: src/Module/Settings/Display.php:246 msgid "No preview" msgstr "Nincs előnézet" -#: src/Module/Settings/Display.php:261 +#: src/Module/Settings/Display.php:247 msgid "No image" msgstr "Nincs kép" -#: src/Module/Settings/Display.php:262 +#: src/Module/Settings/Display.php:248 msgid "Small Image" msgstr "Kis kép" -#: src/Module/Settings/Display.php:263 +#: src/Module/Settings/Display.php:249 msgid "Large Image" msgstr "Nagy kép" -#: src/Module/Settings/Display.php:308 +#: src/Module/Settings/Display.php:294 msgid "Display Settings" msgstr "Megjelenítési beállítások" -#: src/Module/Settings/Display.php:310 +#: src/Module/Settings/Display.php:296 msgid "General Theme Settings" msgstr "Általános témabeállítások" -#: src/Module/Settings/Display.php:311 +#: src/Module/Settings/Display.php:297 msgid "Custom Theme Settings" msgstr "Egyéni témabeállítások" -#: src/Module/Settings/Display.php:312 +#: src/Module/Settings/Display.php:298 msgid "Content Settings" msgstr "Tartalombeállítások" -#: src/Module/Settings/Display.php:313 view/theme/duepuntozero/config.php:86 -#: view/theme/frio/config.php:151 view/theme/quattro/config.php:88 -#: view/theme/vier/config.php:136 +#: src/Module/Settings/Display.php:299 view/theme/duepuntozero/config.php:74 +#: view/theme/frio/config.php:139 view/theme/quattro/config.php:76 +#: view/theme/vier/config.php:124 msgid "Theme settings" msgstr "Témabeállítások" -#: src/Module/Settings/Display.php:314 +#: src/Module/Settings/Display.php:300 msgid "Timelines" msgstr "Idővonalak" -#: src/Module/Settings/Display.php:321 +#: src/Module/Settings/Display.php:307 msgid "Display Theme:" msgstr "Megjelenítés témája:" -#: src/Module/Settings/Display.php:322 +#: src/Module/Settings/Display.php:308 msgid "Mobile Theme:" msgstr "Mobil téma:" -#: src/Module/Settings/Display.php:325 +#: src/Module/Settings/Display.php:311 msgid "Number of items to display per page:" msgstr "Oldalanként megjelenítendő elemek száma:" -#: src/Module/Settings/Display.php:325 src/Module/Settings/Display.php:326 +#: src/Module/Settings/Display.php:311 src/Module/Settings/Display.php:312 msgid "Maximum of 100 items" msgstr "Legfeljebb 100 elem" -#: src/Module/Settings/Display.php:326 +#: src/Module/Settings/Display.php:312 msgid "Number of items to display per page when viewed from mobile device:" msgstr "Oldalanként megjelenítendő elemek száma, ha mobil eszközről nézik:" -#: src/Module/Settings/Display.php:327 +#: src/Module/Settings/Display.php:313 msgid "Update browser every xx seconds" msgstr "Böngésző frissítése N másodpercenként" -#: src/Module/Settings/Display.php:327 +#: src/Module/Settings/Display.php:313 msgid "Minimum of 10 seconds. Enter -1 to disable it." msgstr "Legalább 10 másodperc. A -1 beírása letiltja." -#: src/Module/Settings/Display.php:328 +#: src/Module/Settings/Display.php:314 msgid "Display emoticons" msgstr "Hangulatjelek megjelenítése" -#: src/Module/Settings/Display.php:328 +#: src/Module/Settings/Display.php:314 msgid "When enabled, emoticons are replaced with matching symbols." msgstr "Ha engedélyezve van, akkor a hangulatjelek ki lesznek cserélve a megfelelő szimbólumokkal." -#: src/Module/Settings/Display.php:329 +#: src/Module/Settings/Display.php:315 msgid "Infinite scroll" msgstr "Végtelen görgetés" -#: src/Module/Settings/Display.php:329 +#: src/Module/Settings/Display.php:315 msgid "Automatic fetch new items when reaching the page end." msgstr "Új elemek automatikus lekérése az oldal végének elérésekor." -#: src/Module/Settings/Display.php:330 +#: src/Module/Settings/Display.php:316 msgid "Enable Smart Threading" msgstr "Intelligens szálkezelés engedélyezése" -#: src/Module/Settings/Display.php:330 +#: src/Module/Settings/Display.php:316 msgid "Enable the automatic suppression of extraneous thread indentation." msgstr "A nem odatartozó szálbehúzások automatikus elnyomásának engedélyezése." -#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/Display.php:317 msgid "Display the Dislike feature" msgstr "A nem tetszik funkció megjelenítése" -#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/Display.php:317 msgid "" "Display the Dislike button and dislike reactions on posts and comments." msgstr "A nem tetszik gomb és a nem tetszik reakciók megjelenítése a bejegyzéseknél és a hozzászólásoknál." -#: src/Module/Settings/Display.php:332 +#: src/Module/Settings/Display.php:318 msgid "Display the resharer" msgstr "Az újramegosztó megjelenítése" -#: src/Module/Settings/Display.php:332 +#: src/Module/Settings/Display.php:318 msgid "Display the first resharer as icon and text on a reshared item." msgstr "Az első újramegosztó megjelenítése ikonként és szövegként egy újra megosztott elemnél." -#: src/Module/Settings/Display.php:333 +#: src/Module/Settings/Display.php:319 msgid "Stay local" msgstr "Maradjon helyi" -#: src/Module/Settings/Display.php:333 +#: src/Module/Settings/Display.php:319 msgid "Don't go to a remote system when following a contact link." msgstr "Ne menjen távoli rendszerre, ha egy partnerhivatkozást követ." -#: src/Module/Settings/Display.php:334 +#: src/Module/Settings/Display.php:320 msgid "Show the post deletion checkbox" msgstr "A bejegyzéstörlés jelölőnégyzet megjelenítése" -#: src/Module/Settings/Display.php:334 +#: src/Module/Settings/Display.php:320 msgid "Display the checkbox for the post deletion on the network page." msgstr "Jelölőnégyzet megjelenítése a bejegyzés törléséhez a hálózat oldalán." -#: src/Module/Settings/Display.php:335 +#: src/Module/Settings/Display.php:321 msgid "DIsplay the event list" msgstr "Az eseménylista megjelenítése" -#: src/Module/Settings/Display.php:335 +#: src/Module/Settings/Display.php:321 msgid "Display the birthday reminder and event list on the network page." msgstr "A születésnapi emlékeztető és az eseménylista megjelenítése a hálózat oldalán." -#: src/Module/Settings/Display.php:336 +#: src/Module/Settings/Display.php:322 msgid "Link preview mode" msgstr "Hivatkozás-előnézeti mód" -#: src/Module/Settings/Display.php:336 +#: src/Module/Settings/Display.php:322 msgid "Appearance of the link preview that is added to each post with a link." msgstr "A hivatkozás előnézetének megjelenése, amely minden egyes hivatkozással rendelkező bejegyzéshez hozzá van adva." -#: src/Module/Settings/Display.php:341 +#: src/Module/Settings/Display.php:327 msgid "Bookmark" msgstr "Könyvjelző" -#: src/Module/Settings/Display.php:343 +#: src/Module/Settings/Display.php:329 msgid "" "Enable timelines that you want to see in the channels widget. Bookmark " "timelines that you want to see in the top menu." msgstr "Azon idővonalak engedélyezése, amelyeket a csatornák felületi elemben szeretne látni. Azon idővonalak könyvjelzőzése, amelyeket a felső menüben szeretne látni." -#: src/Module/Settings/Display.php:345 +#: src/Module/Settings/Display.php:331 msgid "Channel languages:" msgstr "Csatorna nyelvei:" -#: src/Module/Settings/Display.php:345 +#: src/Module/Settings/Display.php:331 msgid "Select all languages that you want to see in your channels." msgstr "Válassza ki az összes nyelvet, amelyet látni szeretne a csatornáiban." -#: src/Module/Settings/Display.php:347 +#: src/Module/Settings/Display.php:333 msgid "Beginning of week:" msgstr "A hét kezdete:" -#: src/Module/Settings/Display.php:348 +#: src/Module/Settings/Display.php:334 msgid "Default calendar view:" msgstr "Alapértelmezett naptárnézet:" -#: src/Module/Settings/Features.php:73 +#: src/Module/Settings/Features.php:59 msgid "Additional Features" msgstr "További funkciók" -#: src/Module/Settings/OAuth.php:71 +#: src/Module/Settings/OAuth.php:57 msgid "Connected Apps" msgstr "Kapcsolt alkalmazások" -#: src/Module/Settings/OAuth.php:75 +#: src/Module/Settings/OAuth.php:61 msgid "Remove authorization" msgstr "Felhatalmazás eltávolítása" -#: src/Module/Settings/Profile/Index.php:116 +#: src/Module/Settings/Profile/Index.php:102 msgid "Display Name is required." msgstr "A megjelenített név kötelező." -#: src/Module/Settings/Profile/Index.php:170 +#: src/Module/Settings/Profile/Index.php:156 msgid "Profile couldn't be updated." msgstr "A profilt nem sikerült frissíteni." -#: src/Module/Settings/Profile/Index.php:210 -#: src/Module/Settings/Profile/Index.php:231 +#: src/Module/Settings/Profile/Index.php:196 +#: src/Module/Settings/Profile/Index.php:217 msgid "Label:" msgstr "Címke:" -#: src/Module/Settings/Profile/Index.php:211 -#: src/Module/Settings/Profile/Index.php:232 +#: src/Module/Settings/Profile/Index.php:197 +#: src/Module/Settings/Profile/Index.php:218 msgid "Value:" msgstr "Érték:" -#: src/Module/Settings/Profile/Index.php:222 -#: src/Module/Settings/Profile/Index.php:243 +#: src/Module/Settings/Profile/Index.php:208 +#: src/Module/Settings/Profile/Index.php:229 msgid "Field Permissions" msgstr "Mező jogosultságai" -#: src/Module/Settings/Profile/Index.php:223 -#: src/Module/Settings/Profile/Index.php:244 +#: src/Module/Settings/Profile/Index.php:209 +#: src/Module/Settings/Profile/Index.php:230 msgid "(click to open/close)" msgstr "(kattintson a megnyitáshoz vagy bezáráshoz)" -#: src/Module/Settings/Profile/Index.php:229 +#: src/Module/Settings/Profile/Index.php:215 msgid "Add a new profile field" msgstr "Új profilmező hozzáadása" -#: src/Module/Settings/Profile/Index.php:252 +#: src/Module/Settings/Profile/Index.php:238 msgid "" "The homepage is verified. A rel=\"me\" link back to your Friendica profile " "page was found on the homepage." msgstr "A honlap ellenőrizve. A Friendica profiloldalára visszamutató rel=\"me\" hivatkozás található a honlapon." -#: src/Module/Settings/Profile/Index.php:254 +#: src/Module/Settings/Profile/Index.php:240 #, php-format msgid "" "To verify your homepage, add a rel=\"me\" link to it, pointing to your " "profile URL (%s)." msgstr "A honlapja ellenőrzéséhez adjon hozzá egy rel=\"me\" hivatkozást a honlapjához, amely a profilja URL-jére mutat (%s)." -#: src/Module/Settings/Profile/Index.php:260 +#: src/Module/Settings/Profile/Index.php:246 msgid "Profile Actions" msgstr "Profilműveletek" -#: src/Module/Settings/Profile/Index.php:261 +#: src/Module/Settings/Profile/Index.php:247 msgid "Edit Profile Details" msgstr "Profil részleteinek szerkesztése" -#: src/Module/Settings/Profile/Index.php:263 +#: src/Module/Settings/Profile/Index.php:249 msgid "Change Profile Photo" msgstr "Profilfénykép megváltoztatása" -#: src/Module/Settings/Profile/Index.php:266 +#: src/Module/Settings/Profile/Index.php:252 msgid "Profile picture" msgstr "Profilfénykép" -#: src/Module/Settings/Profile/Index.php:267 +#: src/Module/Settings/Profile/Index.php:253 msgid "Location" msgstr "Hely" -#: src/Module/Settings/Profile/Index.php:268 src/Util/Temporal.php:97 -#: src/Util/Temporal.php:99 +#: src/Module/Settings/Profile/Index.php:254 src/Util/Temporal.php:83 +#: src/Util/Temporal.php:85 msgid "Miscellaneous" msgstr "Egyebek" -#: src/Module/Settings/Profile/Index.php:269 +#: src/Module/Settings/Profile/Index.php:255 msgid "Custom Profile Fields" msgstr "Egyéni profilmezők" -#: src/Module/Settings/Profile/Index.php:270 src/Module/Welcome.php:58 +#: src/Module/Settings/Profile/Index.php:256 src/Module/Welcome.php:44 msgid "Upload Profile Photo" msgstr "Profilfénykép feltöltése" -#: src/Module/Settings/Profile/Index.php:271 +#: src/Module/Settings/Profile/Index.php:257 #, php-format msgid "" "Custom fields appear on your profile page.
\n" @@ -10951,396 +10921,396 @@ msgid "" "\t\t\t\tNon-public fields can only be seen by the selected Friendica contacts or the Friendica contacts in the selected circles.
" msgstr "Az egyéni mezők a profiloldalán jelennek meg\n\t\t\t\t
Használhat BBCode formázásokat a mező értékeiben.
\n\t\t\t\tÁtrendezheti a mező címének húzásával.
\n\t\t\t\tTörölje ki a címkemezőt egy egyéni mező eltávolításához.
\n\t\t\t\tA nem nyilvános mezőket csak a kijelölt Friendica partnerek vagy a kijelölt körökben lévő Friendica partnerek láthatják.
" -#: src/Module/Settings/Profile/Index.php:291 +#: src/Module/Settings/Profile/Index.php:277 msgid "Street Address:" msgstr "Utca, házszám:" -#: src/Module/Settings/Profile/Index.php:292 +#: src/Module/Settings/Profile/Index.php:278 msgid "Locality/City:" msgstr "Helység vagy város:" -#: src/Module/Settings/Profile/Index.php:293 +#: src/Module/Settings/Profile/Index.php:279 msgid "Region/State:" msgstr "Régió vagy állam:" -#: src/Module/Settings/Profile/Index.php:294 +#: src/Module/Settings/Profile/Index.php:280 msgid "Postal/Zip Code:" msgstr "Irányítószám:" -#: src/Module/Settings/Profile/Index.php:295 +#: src/Module/Settings/Profile/Index.php:281 msgid "Country:" msgstr "Ország:" -#: src/Module/Settings/Profile/Index.php:297 +#: src/Module/Settings/Profile/Index.php:283 msgid "XMPP (Jabber) address:" msgstr "XMPP (Jabber) cím:" -#: src/Module/Settings/Profile/Index.php:297 +#: src/Module/Settings/Profile/Index.php:283 msgid "" "The XMPP address will be published so that people can follow you there." msgstr "Az XMPP-cím közzé lesz téve, hogy az emberek képesek legyenek ott követni Önt." -#: src/Module/Settings/Profile/Index.php:298 +#: src/Module/Settings/Profile/Index.php:284 msgid "Matrix (Element) address:" msgstr "Mátrix (Element) cím:" -#: src/Module/Settings/Profile/Index.php:298 +#: src/Module/Settings/Profile/Index.php:284 msgid "" "The Matrix address will be published so that people can follow you there." msgstr "A Mátrix-cím közzé lesz téve, hogy az emberek képesek legyenek ott követni Önt." -#: src/Module/Settings/Profile/Index.php:299 +#: src/Module/Settings/Profile/Index.php:285 msgid "Homepage URL:" msgstr "Honlap URL:" -#: src/Module/Settings/Profile/Index.php:300 +#: src/Module/Settings/Profile/Index.php:286 msgid "Public Keywords:" msgstr "Nyilvános kulcsszavak:" -#: src/Module/Settings/Profile/Index.php:300 +#: src/Module/Settings/Profile/Index.php:286 msgid "(Used for suggesting potential friends, can be seen by others)" msgstr "(Lehetséges ismerősök ajánlásához lesz használva, mások is láthatják)" -#: src/Module/Settings/Profile/Index.php:301 +#: src/Module/Settings/Profile/Index.php:287 msgid "Private Keywords:" msgstr "Személyes kulcsszavak:" -#: src/Module/Settings/Profile/Index.php:301 +#: src/Module/Settings/Profile/Index.php:287 msgid "(Used for searching profiles, never shown to others)" msgstr "(Profilok kereséséhez lesz használva, sosem látható másoknak)" -#: src/Module/Settings/Profile/Photo/Crop.php:107 -#: src/Module/Settings/Profile/Photo/Crop.php:125 -#: src/Module/Settings/Profile/Photo/Crop.php:143 -#: src/Module/Settings/Profile/Photo/Index.php:100 +#: src/Module/Settings/Profile/Photo/Crop.php:93 +#: src/Module/Settings/Profile/Photo/Crop.php:111 +#: src/Module/Settings/Profile/Photo/Crop.php:129 +#: src/Module/Settings/Profile/Photo/Index.php:86 #, php-format msgid "Image size reduction [%s] failed." msgstr "A kép méretének csökkentése [%s] sikertelen." -#: src/Module/Settings/Profile/Photo/Crop.php:150 +#: src/Module/Settings/Profile/Photo/Crop.php:136 msgid "" "Shift-reload the page or clear browser cache if the new photo does not " "display immediately." msgstr "Töltse újra az oldalt a Shift billentyű lenyomása közben, vagy törölje a böngésző gyorsítótárát, ha az új fénykép nem jelenik meg azonnal." -#: src/Module/Settings/Profile/Photo/Crop.php:155 +#: src/Module/Settings/Profile/Photo/Crop.php:141 msgid "Unable to process image" msgstr "Nem lehet feldolgozni a képet" -#: src/Module/Settings/Profile/Photo/Crop.php:174 +#: src/Module/Settings/Profile/Photo/Crop.php:160 msgid "Photo not found." msgstr "A fénykép nem található." -#: src/Module/Settings/Profile/Photo/Crop.php:196 +#: src/Module/Settings/Profile/Photo/Crop.php:182 msgid "Profile picture successfully updated." msgstr "A profilfénykép sikeresen frissítve." -#: src/Module/Settings/Profile/Photo/Crop.php:222 -#: src/Module/Settings/Profile/Photo/Crop.php:226 +#: src/Module/Settings/Profile/Photo/Crop.php:208 +#: src/Module/Settings/Profile/Photo/Crop.php:212 msgid "Crop Image" msgstr "Kép levágása" -#: src/Module/Settings/Profile/Photo/Crop.php:223 +#: src/Module/Settings/Profile/Photo/Crop.php:209 msgid "Please adjust the image cropping for optimum viewing." msgstr "Igazítsa a kép levágását az optimális megtekintéshez." -#: src/Module/Settings/Profile/Photo/Crop.php:225 +#: src/Module/Settings/Profile/Photo/Crop.php:211 msgid "Use Image As Is" msgstr "Kép használata, ahogy van" -#: src/Module/Settings/Profile/Photo/Index.php:46 +#: src/Module/Settings/Profile/Photo/Index.php:32 msgid "Missing uploaded image." msgstr "Hiányzó feltöltött kép." -#: src/Module/Settings/Profile/Photo/Index.php:123 +#: src/Module/Settings/Profile/Photo/Index.php:109 msgid "Profile Picture Settings" msgstr "Profilfénykép beállításai" -#: src/Module/Settings/Profile/Photo/Index.php:124 +#: src/Module/Settings/Profile/Photo/Index.php:110 msgid "Current Profile Picture" msgstr "Jelenlegi profilfénykép" -#: src/Module/Settings/Profile/Photo/Index.php:125 +#: src/Module/Settings/Profile/Photo/Index.php:111 msgid "Upload Profile Picture" msgstr "Profilfénykép feltöltése" -#: src/Module/Settings/Profile/Photo/Index.php:126 +#: src/Module/Settings/Profile/Photo/Index.php:112 msgid "Upload Picture:" msgstr "Fénykép feltöltése:" -#: src/Module/Settings/Profile/Photo/Index.php:131 +#: src/Module/Settings/Profile/Photo/Index.php:117 msgid "or" msgstr "vagy" -#: src/Module/Settings/Profile/Photo/Index.php:133 +#: src/Module/Settings/Profile/Photo/Index.php:119 msgid "skip this step" msgstr "ezen lépés kihagyása" -#: src/Module/Settings/Profile/Photo/Index.php:135 +#: src/Module/Settings/Profile/Photo/Index.php:121 msgid "select a photo from your photo albums" msgstr "fénykép kiválasztása a fényképalbumából" -#: src/Module/Settings/RemoveMe.php:76 +#: src/Module/Settings/RemoveMe.php:62 msgid "" "There was a validation error, please make sure you're logged in with the " "account you want to remove and try again." msgstr "Ellenőrzési hiba történt. Győződjön meg arról, hogy az eltávolítani kívánt fiókkal van-e bejelentkezve, és próbálja meg újra." -#: src/Module/Settings/RemoveMe.php:76 +#: src/Module/Settings/RemoveMe.php:62 msgid "If this error persists, please contact your administrator." msgstr "Ha ez a hiba továbbra is fennáll, akkor vegye fel a kapcsolatot az adminisztrátorral." -#: src/Module/Settings/RemoveMe.php:90 -#: src/Navigation/Notifications/Repository/Notify.php:471 -#: src/Navigation/Notifications/Repository/Notify.php:492 +#: src/Module/Settings/RemoveMe.php:76 +#: src/Navigation/Notifications/Repository/Notify.php:457 +#: src/Navigation/Notifications/Repository/Notify.php:478 msgid "[Friendica System Notify]" msgstr "[Friendica rendszerértesítés]" -#: src/Module/Settings/RemoveMe.php:90 +#: src/Module/Settings/RemoveMe.php:76 msgid "User deleted their account" msgstr "A felhasználó törölte a fiókját" -#: src/Module/Settings/RemoveMe.php:91 +#: src/Module/Settings/RemoveMe.php:77 msgid "" "On your Friendica node an user deleted their account. Please ensure that " "their data is removed from the backups." msgstr "Az Ön Friendica csomópontján egy felhasználó törölte a fiókját. Győződjön meg arról, hogy az adatai el lettek-e távolítva a biztonsági mentésekből." -#: src/Module/Settings/RemoveMe.php:92 +#: src/Module/Settings/RemoveMe.php:78 #, php-format msgid "The user id is %d" msgstr "A felhasználó-azonosító %d" -#: src/Module/Settings/RemoveMe.php:105 +#: src/Module/Settings/RemoveMe.php:91 msgid "Your account has been successfully removed. Bye bye!" msgstr "A fiókja sikeresen el lett távolítva. Viszlát!" -#: src/Module/Settings/RemoveMe.php:130 +#: src/Module/Settings/RemoveMe.php:116 msgid "Remove My Account" msgstr "Saját fiók eltávolítása" -#: src/Module/Settings/RemoveMe.php:131 +#: src/Module/Settings/RemoveMe.php:117 msgid "" "This will completely remove your account. Once this has been done it is not " "recoverable." msgstr "Ez teljesen el fogja távolítani a fiókját. Miután ez megtörtént, nem lesz visszaállítható." -#: src/Module/Settings/RemoveMe.php:136 +#: src/Module/Settings/RemoveMe.php:122 msgid "Please enter your password for verification:" msgstr "Adja meg a jelszavát az ellenőrzéshez:" -#: src/Module/Settings/Server/Action.php:60 +#: src/Module/Settings/Server/Action.php:46 msgid "Do you want to ignore this server?" msgstr "Szeretné mellőzni ezt a kiszolgálót?" -#: src/Module/Settings/Server/Action.php:64 +#: src/Module/Settings/Server/Action.php:50 msgid "Do you want to unignore this server?" msgstr "Szeretné megszüntetni ennek a kiszolgálónak a mellőzését?" -#: src/Module/Settings/Server/Action.php:74 -#: src/Module/Settings/Server/Index.php:104 +#: src/Module/Settings/Server/Action.php:60 +#: src/Module/Settings/Server/Index.php:90 msgid "Remote server settings" msgstr "Távoli kiszolgáló beállításai" -#: src/Module/Settings/Server/Action.php:77 +#: src/Module/Settings/Server/Action.php:63 msgid "Server URL" msgstr "Kiszolgáló URL" -#: src/Module/Settings/Server/Index.php:78 +#: src/Module/Settings/Server/Index.php:64 msgid "Settings saved" msgstr "Beállítások elmentve" -#: src/Module/Settings/Server/Index.php:105 +#: src/Module/Settings/Server/Index.php:91 msgid "" "Here you can find all the remote servers you have taken individual " "moderation actions against. For a list of servers your node has blocked, " "please check out the Information page." msgstr "Itt találhatja meg az összes olyan távoli kiszolgálót, amelyekkel szemben egyéni moderálási műveleteket hajtott végre. A csomópontja által tiltott kiszolgálók listájáért nézze meg az Információk oldalt." -#: src/Module/Settings/Server/Index.php:110 +#: src/Module/Settings/Server/Index.php:96 msgid "Delete all your settings for the remote server" msgstr "Az Ön összes beállításának törlése a távoli kiszolgálónál" -#: src/Module/Settings/Server/Index.php:111 +#: src/Module/Settings/Server/Index.php:97 msgid "Save changes" msgstr "Változtatások mentése" -#: src/Module/Settings/TwoFactor/AppSpecific.php:69 -#: src/Module/Settings/TwoFactor/Recovery.php:67 -#: src/Module/Settings/TwoFactor/Trusted.php:70 -#: src/Module/Settings/TwoFactor/Verify.php:72 +#: src/Module/Settings/TwoFactor/AppSpecific.php:55 +#: src/Module/Settings/TwoFactor/Recovery.php:53 +#: src/Module/Settings/TwoFactor/Trusted.php:56 +#: src/Module/Settings/TwoFactor/Verify.php:58 msgid "Please enter your password to access this page." msgstr "Adja meg a jelszavát az oldal eléréséhez." -#: src/Module/Settings/TwoFactor/AppSpecific.php:87 +#: src/Module/Settings/TwoFactor/AppSpecific.php:73 msgid "App-specific password generation failed: The description is empty." msgstr "Az alkalmazásfüggő jelszó előállítása sikertelen: a leírás üres." -#: src/Module/Settings/TwoFactor/AppSpecific.php:90 +#: src/Module/Settings/TwoFactor/AppSpecific.php:76 msgid "" "App-specific password generation failed: This description already exists." msgstr "Az alkalmazásfüggő jelszó előállítása sikertelen: a leírás már létezik." -#: src/Module/Settings/TwoFactor/AppSpecific.php:94 +#: src/Module/Settings/TwoFactor/AppSpecific.php:80 msgid "New app-specific password generated." msgstr "Az új alkalmazásfüggő jelszó előállítva." -#: src/Module/Settings/TwoFactor/AppSpecific.php:100 +#: src/Module/Settings/TwoFactor/AppSpecific.php:86 msgid "App-specific passwords successfully revoked." msgstr "Az alkalmazásfüggő jelszavak sikeresen visszavonva." -#: src/Module/Settings/TwoFactor/AppSpecific.php:110 +#: src/Module/Settings/TwoFactor/AppSpecific.php:96 msgid "App-specific password successfully revoked." msgstr "Az alkalmazásfüggő jelszó sikeresen visszavonva." -#: src/Module/Settings/TwoFactor/AppSpecific.php:131 +#: src/Module/Settings/TwoFactor/AppSpecific.php:117 msgid "Two-factor app-specific passwords" msgstr "Kétlépcsős alkalmazásfüggő jelszavak" -#: src/Module/Settings/TwoFactor/AppSpecific.php:133 +#: src/Module/Settings/TwoFactor/AppSpecific.php:119 msgid "" "App-specific passwords are randomly generated passwords used instead your" " regular password to authenticate your account on third-party applications " "that don't support two-factor authentication.
" msgstr "Az alkalmazásfüggő jelszavak az Ön szokásos jelszava helyett használt véletlenszerűen előállított jelszavak, hogy hitelesítsék a fiókját az olyan harmadik féltől származó alkalmazásoknál, amelyek nem támogatják a kétlépcsős hitelesítést.
" -#: src/Module/Settings/TwoFactor/AppSpecific.php:134 +#: src/Module/Settings/TwoFactor/AppSpecific.php:120 msgid "" "Make sure to copy your new app-specific password now. You won’t be able to " "see it again!" msgstr "Győződjön meg arról, hogy lemásolta-e most az új alkalmazásfüggő jelszavát. Nem fogja tudni újra megnézni a jelszót!" -#: src/Module/Settings/TwoFactor/AppSpecific.php:138 +#: src/Module/Settings/TwoFactor/AppSpecific.php:124 msgid "Last Used" msgstr "Legutóbb használt" -#: src/Module/Settings/TwoFactor/AppSpecific.php:139 +#: src/Module/Settings/TwoFactor/AppSpecific.php:125 msgid "Revoke" msgstr "Visszavonás" -#: src/Module/Settings/TwoFactor/AppSpecific.php:140 +#: src/Module/Settings/TwoFactor/AppSpecific.php:126 msgid "Revoke All" msgstr "Összes visszavonása" -#: src/Module/Settings/TwoFactor/AppSpecific.php:143 +#: src/Module/Settings/TwoFactor/AppSpecific.php:129 msgid "" "When you generate a new app-specific password, you must use it right away, " "it will be shown to you once after you generate it." msgstr "Ha új alkalmazásfüggő jelszót állít elő, akkor azonnal fel kell használnia. Akkor lesz megjelenítve Önnek, miután előállította azt." -#: src/Module/Settings/TwoFactor/AppSpecific.php:144 +#: src/Module/Settings/TwoFactor/AppSpecific.php:130 msgid "Generate new app-specific password" msgstr "Új alkalmazásfüggő jelszó előállítása" -#: src/Module/Settings/TwoFactor/AppSpecific.php:145 +#: src/Module/Settings/TwoFactor/AppSpecific.php:131 msgid "Friendiqa on my Fairphone 2..." msgstr "Friendiqa a Fairphone 2 készülékemen…" -#: src/Module/Settings/TwoFactor/AppSpecific.php:146 +#: src/Module/Settings/TwoFactor/AppSpecific.php:132 msgid "Generate" msgstr "Előállítás" -#: src/Module/Settings/TwoFactor/Index.php:88 +#: src/Module/Settings/TwoFactor/Index.php:74 msgid "Two-factor authentication successfully disabled." msgstr "A kétlépcsős hitelesítés sikeresen letiltva." -#: src/Module/Settings/TwoFactor/Index.php:141 +#: src/Module/Settings/TwoFactor/Index.php:127 msgid "" "Use an application on a mobile device to get two-factor authentication " "codes when prompted on login.
" msgstr "Egy alkalmazás használata egy mobil eszközön, hogy megkapja a kétlépcsős hitelesítés kódjait, ha a bejelentkezéskor kérik.
" -#: src/Module/Settings/TwoFactor/Index.php:145 +#: src/Module/Settings/TwoFactor/Index.php:131 msgid "Authenticator app" msgstr "Hitelesítő alkalmazás" -#: src/Module/Settings/TwoFactor/Index.php:146 +#: src/Module/Settings/TwoFactor/Index.php:132 msgid "Configured" msgstr "Beállítva" -#: src/Module/Settings/TwoFactor/Index.php:146 +#: src/Module/Settings/TwoFactor/Index.php:132 msgid "Not Configured" msgstr "Nincs beállítva" -#: src/Module/Settings/TwoFactor/Index.php:147 +#: src/Module/Settings/TwoFactor/Index.php:133 msgid "You haven't finished configuring your authenticator app.
" msgstr "Nem fejezte be a hitelesítő alkalmazása beállítását.
" -#: src/Module/Settings/TwoFactor/Index.php:148 +#: src/Module/Settings/TwoFactor/Index.php:134 msgid "Your authenticator app is correctly configured.
" msgstr "A hitelesítő alkalmazása megfelelően be van állítva.
" -#: src/Module/Settings/TwoFactor/Index.php:150 +#: src/Module/Settings/TwoFactor/Index.php:136 msgid "Recovery codes" msgstr "Visszaszerzési kódok" -#: src/Module/Settings/TwoFactor/Index.php:151 +#: src/Module/Settings/TwoFactor/Index.php:137 msgid "Remaining valid codes" msgstr "Hátralévő érvényes kódok" -#: src/Module/Settings/TwoFactor/Index.php:153 +#: src/Module/Settings/TwoFactor/Index.php:139 msgid "" "These one-use codes can replace an authenticator app code in case you " "have lost access to it.
" msgstr "Ezek az egyszer használható kódok helyettesíthetnek egy hitelesítő alkalmazás kódot abban az esetben, ha elveszíti a hozzáférést ahhoz.
" -#: src/Module/Settings/TwoFactor/Index.php:155 +#: src/Module/Settings/TwoFactor/Index.php:141 msgid "App-specific passwords" msgstr "Alkalmazásfüggő jelszavak" -#: src/Module/Settings/TwoFactor/Index.php:156 +#: src/Module/Settings/TwoFactor/Index.php:142 msgid "Generated app-specific passwords" msgstr "Előállított alkalmazásfüggő jelszavak" -#: src/Module/Settings/TwoFactor/Index.php:158 +#: src/Module/Settings/TwoFactor/Index.php:144 msgid "" "These randomly generated passwords allow you to authenticate on apps not " "supporting two-factor authentication.
" msgstr "Ezek a véletlenszerűen előállított jelszavak lehetővé teszik, hogy olyan alkalmazásoknál hitelesítsen, amelyek nem támogatják a kétlépcsős hitelesítést.
" -#: src/Module/Settings/TwoFactor/Index.php:161 +#: src/Module/Settings/TwoFactor/Index.php:147 msgid "Current password:" msgstr "Jelenlegi jelszó:" -#: src/Module/Settings/TwoFactor/Index.php:161 +#: src/Module/Settings/TwoFactor/Index.php:147 msgid "" "You need to provide your current password to change two-factor " "authentication settings." msgstr "Meg kell adnia a jelenlegi jelszavát a kétlépcsős hitelesítési beállítások megváltoztatásához." -#: src/Module/Settings/TwoFactor/Index.php:162 +#: src/Module/Settings/TwoFactor/Index.php:148 msgid "Enable two-factor authentication" msgstr "Kétlépcsős hitelesítés engedélyezése" -#: src/Module/Settings/TwoFactor/Index.php:163 +#: src/Module/Settings/TwoFactor/Index.php:149 msgid "Disable two-factor authentication" msgstr "Kétlépcsős hitelesítés letiltása" -#: src/Module/Settings/TwoFactor/Index.php:164 +#: src/Module/Settings/TwoFactor/Index.php:150 msgid "Show recovery codes" msgstr "Visszaszerzési kódok megjelenítése" -#: src/Module/Settings/TwoFactor/Index.php:165 +#: src/Module/Settings/TwoFactor/Index.php:151 msgid "Manage app-specific passwords" msgstr "Alkalmazásfüggő jelszavak kezelése" -#: src/Module/Settings/TwoFactor/Index.php:166 +#: src/Module/Settings/TwoFactor/Index.php:152 msgid "Manage trusted browsers" msgstr "Megbízható böngészők kezelése" -#: src/Module/Settings/TwoFactor/Index.php:167 +#: src/Module/Settings/TwoFactor/Index.php:153 msgid "Finish app configuration" msgstr "Alkalmazás beállításának befejezése" -#: src/Module/Settings/TwoFactor/Recovery.php:83 +#: src/Module/Settings/TwoFactor/Recovery.php:69 msgid "New recovery codes successfully generated." msgstr "Az új visszaszerzési kódok sikeresen előállítva." -#: src/Module/Settings/TwoFactor/Recovery.php:109 +#: src/Module/Settings/TwoFactor/Recovery.php:95 msgid "Two-factor recovery codes" msgstr "Kétlépcsős visszaszerzési kódok" -#: src/Module/Settings/TwoFactor/Recovery.php:111 +#: src/Module/Settings/TwoFactor/Recovery.php:97 msgid "" "Recovery codes can be used to access your account in the event you lose " "access to your device and cannot receive two-factor authentication " @@ -11349,68 +11319,68 @@ msgid "" "account.
" msgstr "A visszaszerzési kódok használhatók a fiókjához való hozzáféréséhez abban az esetben, ha elveszti a hozzáférést az eszközéhez, és nem tud kétlépcsős hitelesítési kódokat fogadni.
Tegye ezeket biztonságos helyre! Ha elveszti az eszközét és nincsenek meg a visszaszerzési kódjai, akkor el fogja veszíteni a fiókjához való hozzáférést.
" -#: src/Module/Settings/TwoFactor/Recovery.php:113 +#: src/Module/Settings/TwoFactor/Recovery.php:99 msgid "" "When you generate new recovery codes, you must copy the new codes. Your old " "codes won’t work anymore." msgstr "Ha új visszaszerzési kódokat állít elő, akkor le kell másolnia az új kódokat. A régi kódjai többé nem fognak működni." -#: src/Module/Settings/TwoFactor/Recovery.php:114 +#: src/Module/Settings/TwoFactor/Recovery.php:100 msgid "Generate new recovery codes" msgstr "Új visszaszerzési kódok előállítása" -#: src/Module/Settings/TwoFactor/Recovery.php:116 +#: src/Module/Settings/TwoFactor/Recovery.php:102 msgid "Next: Verification" msgstr "Következő: ellenőrzés" -#: src/Module/Settings/TwoFactor/Trusted.php:87 +#: src/Module/Settings/TwoFactor/Trusted.php:73 msgid "Trusted browsers successfully removed." msgstr "A megbízható böngészők sikeresen eltávolítva." -#: src/Module/Settings/TwoFactor/Trusted.php:97 +#: src/Module/Settings/TwoFactor/Trusted.php:83 msgid "Trusted browser successfully removed." msgstr "A megbízható böngésző sikeresen eltávolítva." -#: src/Module/Settings/TwoFactor/Trusted.php:139 +#: src/Module/Settings/TwoFactor/Trusted.php:125 msgid "Two-factor Trusted Browsers" msgstr "Kétlépcsős megbízható böngészők" -#: src/Module/Settings/TwoFactor/Trusted.php:140 +#: src/Module/Settings/TwoFactor/Trusted.php:126 msgid "" "Trusted browsers are individual browsers you chose to skip two-factor " "authentication to access Friendica. Please use this feature sparingly, as it" " can negate the benefit of two-factor authentication." msgstr "A megbízható böngészők azok az egyéni böngészők, amelyeknél a kétlépcsős hitelesítés kihagyását választotta a Friendica alkalmazáshoz való hozzáféréshez. Lehetőleg mellőzze ennek a funkciónak a használatát, mivel ez megszüntetheti a kétlépcsős hitelesítés előnyeit." -#: src/Module/Settings/TwoFactor/Trusted.php:141 +#: src/Module/Settings/TwoFactor/Trusted.php:127 msgid "Device" msgstr "Eszköz" -#: src/Module/Settings/TwoFactor/Trusted.php:142 +#: src/Module/Settings/TwoFactor/Trusted.php:128 msgid "OS" msgstr "Operációs rendszer" -#: src/Module/Settings/TwoFactor/Trusted.php:144 +#: src/Module/Settings/TwoFactor/Trusted.php:130 msgid "Trusted" msgstr "Megbízható" -#: src/Module/Settings/TwoFactor/Trusted.php:145 +#: src/Module/Settings/TwoFactor/Trusted.php:131 msgid "Created At" msgstr "Létrehozva:" -#: src/Module/Settings/TwoFactor/Trusted.php:146 +#: src/Module/Settings/TwoFactor/Trusted.php:132 msgid "Last Use" msgstr "Utolsó használat" -#: src/Module/Settings/TwoFactor/Trusted.php:148 +#: src/Module/Settings/TwoFactor/Trusted.php:134 msgid "Remove All" msgstr "Összes eltávolítása" -#: src/Module/Settings/TwoFactor/Verify.php:94 +#: src/Module/Settings/TwoFactor/Verify.php:80 msgid "Two-factor authentication successfully activated." msgstr "A kétlépcsős hitelesítés sikeresen bekapcsolva." -#: src/Module/Settings/TwoFactor/Verify.php:128 +#: src/Module/Settings/TwoFactor/Verify.php:114 #, php-format msgid "" "Or you can submit the authentication settings manually:
\n" @@ -11430,105 +11400,105 @@ msgid "" "" msgstr "Vagy elküldheti a hitelesítési beállításokat kézzel:
\nPlease scan this QR Code with your authenticator app and submit the " "provided code.
" msgstr "Olvassa be ezt a QR-kódot a hitelesítő alkalmazásával, és küldje el a megkapott kódot.
" -#: src/Module/Settings/TwoFactor/Verify.php:152 +#: src/Module/Settings/TwoFactor/Verify.php:138 #, php-format msgid "" "Or you can open the following URL in your mobile device:
" msgstr "Vagy megnyithatja a következő URL-t a mobil eszközén:
" -#: src/Module/Settings/TwoFactor/Verify.php:159 +#: src/Module/Settings/TwoFactor/Verify.php:145 msgid "Verify code and enable two-factor authentication" msgstr "Kód ellenőrzése és a kétlépcsős hitelesítés engedélyezése" -#: src/Module/Settings/UserExport.php:90 +#: src/Module/Settings/UserExport.php:76 msgid "Export account" msgstr "Fiók exportálása" -#: src/Module/Settings/UserExport.php:90 +#: src/Module/Settings/UserExport.php:76 msgid "" "Export your account info and contacts. Use this to make a backup of your " "account and/or to move it to another server." msgstr "Fiókinformációk és partnerek exportálása. A fiókjáról történő biztonsági mentés készítéséhez és/vagy egy másik kiszolgálóra való áthelyezéséhez használja ezt." -#: src/Module/Settings/UserExport.php:91 +#: src/Module/Settings/UserExport.php:77 msgid "Export all" msgstr "Összes exportálása" -#: src/Module/Settings/UserExport.php:91 +#: src/Module/Settings/UserExport.php:77 msgid "" "Export your account info, contacts and all your items as json. Could be a " "very big file, and could take a lot of time. Use this to make a full backup " "of your account (photos are not exported)" msgstr "Fiókinformációk, partnerek és az összes elem exportálása JSON-formátumban. nagyon nagy fájl is lehet, és sokáig eltarthat. A fiókja teljes biztonsági mentésének elkészítéséhez használja ezt (a fényképek nem lesznek exportálva)." -#: src/Module/Settings/UserExport.php:92 +#: src/Module/Settings/UserExport.php:78 msgid "Export Contacts to CSV" msgstr "Partnerek exportálása CSV-fájlba" -#: src/Module/Settings/UserExport.php:92 +#: src/Module/Settings/UserExport.php:78 msgid "" "Export the list of the accounts you are following as CSV file. Compatible to" " e.g. Mastodon." msgstr "A követett fiókok listájának exportálása CSV-fájlként. Kompatibilis például a Mastodonnal." -#: src/Module/Special/DisplayNotFound.php:35 +#: src/Module/Special/DisplayNotFound.php:21 msgid "The top-level post isn't visible." msgstr "A felső szintű bejegyzés nem látható." -#: src/Module/Special/DisplayNotFound.php:36 +#: src/Module/Special/DisplayNotFound.php:22 msgid "The top-level post was deleted." msgstr "A felső szintű bejegyzés törölve lett." -#: src/Module/Special/DisplayNotFound.php:37 +#: src/Module/Special/DisplayNotFound.php:23 msgid "" "This node has blocked the top-level author or the author of the shared post." msgstr "Ez a csomópont letiltotta a felső szintű szerzőt vagy a megosztott bejegyzés szerzőjét." -#: src/Module/Special/DisplayNotFound.php:38 +#: src/Module/Special/DisplayNotFound.php:24 msgid "" "You have ignored or blocked the top-level author or the author of the shared" " post." msgstr "Ön mellőzte vagy letiltotta a felső szintű szerzőt vagy a megosztott bejegyzés szerzőjét." -#: src/Module/Special/DisplayNotFound.php:39 +#: src/Module/Special/DisplayNotFound.php:25 msgid "" "You have ignored the top-level author's server or the shared post author's " "server." msgstr "Ön mellőzte a felső szintű szerző kiszolgálóját vagy a megosztott bejegyzés szerzőjének kiszolgálóját." -#: src/Module/Special/DisplayNotFound.php:45 +#: src/Module/Special/DisplayNotFound.php:31 msgid "Conversation Not Found" msgstr "A beszélgetés nem található" -#: src/Module/Special/DisplayNotFound.php:46 +#: src/Module/Special/DisplayNotFound.php:32 msgid "Unfortunately, the requested conversation isn't available to you." msgstr "Sajnos a kért beszélgetés nem érhető el az Ön számára." -#: src/Module/Special/DisplayNotFound.php:47 +#: src/Module/Special/DisplayNotFound.php:33 msgid "Possible reasons include:" msgstr "A lehetséges okok a következők:" -#: src/Module/Special/HTTPException.php:78 +#: src/Module/Special/HTTPException.php:64 msgid "Stack trace:" msgstr "Veremkiíratás:" -#: src/Module/Special/HTTPException.php:83 +#: src/Module/Special/HTTPException.php:69 #, php-format msgid "Exception thrown in %s:%d" msgstr "Kivétel történt itt: %s:%d" -#: src/Module/Tos.php:58 src/Module/Tos.php:107 +#: src/Module/Tos.php:44 src/Module/Tos.php:93 msgid "" "At the time of registration, and for providing communications between the " "user account and their contacts, the user has to provide a display name (pen" @@ -11541,14 +11511,14 @@ msgid "" "settings, it is not necessary for communication." msgstr "A regisztrációkor, valamint a felhasználói fiók és a partnerei között történő kommunikáció biztosításához a felhasználónak biztosítania kell egy megjelenített nevet (álnevet), egy felhasználónevet (becenevet) és egy működő e-mail-címet. A nevek hozzáférhetőek lesznek a fiók profiloldalán az oldal bármely látogatója számára, még akkor is, ha más profilrészletek nem jelennek meg. Az e-mail-cím csak az interakciókkal kapcsolatos felhasználói értesítések küldéséhez lesz használva, de nem lesz láthatóan megjelenítve. A fiók felsorolása a csomópont felhasználói könyvtárában vagy a globális felhasználói könyvtárban választható, és a felhasználói beállításokban szabályozható. Ez nem szükséges a kommunikációhoz." -#: src/Module/Tos.php:59 src/Module/Tos.php:108 +#: src/Module/Tos.php:45 src/Module/Tos.php:94 msgid "" "This data is required for communication and is passed on to the nodes of the" " communication partners and is stored there. Users can enter additional " "private data that may be transmitted to the communication partners accounts." msgstr "Ezek az adatok a kommunikációhoz szükségesek, és átadásra kerül a kommunikációs partnerek csomópontjainak, valamint el is lesznek tárolva ott. A felhasználók megadhatnak további személyes adatokat, amelyek szintén átvitelre kerülhetnek a kommunikációs partnerek fiókjaiba." -#: src/Module/Tos.php:60 src/Module/Tos.php:109 +#: src/Module/Tos.php:46 src/Module/Tos.php:95 #, php-format msgid "" "At any point in time a logged in user can export their account data from the" @@ -11559,121 +11529,121 @@ msgid "" "from the nodes of the communication partners." msgstr "Egy bejelentkezett felhasználó bármely időpontban exportálhatja a fiókja adatait a fiók beállításaiból. Ha a felhasználó törölni szeretné a fiókját, akkor azt megteheti a %1$s/settings/removeme oldalon. A fiók törlése végleges lesz. Az adatok törlése kérve lesz a kommunikációs partnerek csomópontjairól is." -#: src/Module/Tos.php:63 src/Module/Tos.php:106 +#: src/Module/Tos.php:49 src/Module/Tos.php:92 msgid "Privacy Statement" msgstr "Adatvédelmi nyilatkozat" -#: src/Module/Tos.php:103 +#: src/Module/Tos.php:89 msgid "Rules" msgstr "Szabályok" -#: src/Module/Update/Display.php:45 +#: src/Module/Update/Display.php:31 msgid "Parameter uri_id is missing." msgstr "Az uri_id paraméter hiányzik." -#: src/Module/Update/Display.php:55 +#: src/Module/Update/Display.php:41 msgid "The requested item doesn't exist or has been deleted." msgstr "A kért elem nem létezik vagy törölték." -#: src/Module/User/Delegation.php:146 +#: src/Module/User/Delegation.php:132 #, php-format msgid "You are now logged in as %s" msgstr "Most a következő néven van bejelentkezve: %s" -#: src/Module/User/Delegation.php:185 +#: src/Module/User/Delegation.php:171 msgid "Switch between your accounts" msgstr "Váltás a fiókjai között" -#: src/Module/User/Delegation.php:186 +#: src/Module/User/Delegation.php:172 msgid "Manage your accounts" msgstr "Fiókok kezelése" -#: src/Module/User/Delegation.php:187 +#: src/Module/User/Delegation.php:173 msgid "" "Toggle between different identities or community/group pages which share " "your account details or which you have been granted \"manage\" permissions" msgstr "Váltás a különböző személyazonosságok vagy közösségi és csoportoldalak között, amelyek megosztják a fiókja részleteit, vagy amelyeket „kezelés” jogosultságokkal ruházott fel" -#: src/Module/User/Delegation.php:188 +#: src/Module/User/Delegation.php:174 msgid "Select an identity to manage: " msgstr "A kezelendő személyazonosság kiválasztása: " -#: src/Module/User/Import.php:104 +#: src/Module/User/Import.php:90 msgid "User imports on closed servers can only be done by an administrator." msgstr "A lezárt kiszolgálókon történő felhasználó-importálásokat csak egy adminisztrátor végezheti el." -#: src/Module/User/Import.php:120 +#: src/Module/User/Import.php:106 msgid "Move account" msgstr "Fiók áthelyezése" -#: src/Module/User/Import.php:121 +#: src/Module/User/Import.php:107 msgid "You can import an account from another Friendica server." msgstr "Importálhat egy fiókot egy másik Friendica kiszolgálóról." -#: src/Module/User/Import.php:122 +#: src/Module/User/Import.php:108 msgid "" "You need to export your account from the old server and upload it here. We " "will recreate your old account here with all your contacts. We will try also" " to inform your friends that you moved here." msgstr "Exportálnia kell a fiókját a régi kiszolgálóról, és fel kell töltenie ide. Itt újra létre fogjuk hozni a régi fiókját az összes partnerével. Megpróbáljuk tájékoztatni az ismerőseit arról is, hogy átköltözött ide." -#: src/Module/User/Import.php:123 +#: src/Module/User/Import.php:109 msgid "" "This feature is experimental. We can't import contacts from the OStatus " "network (GNU Social/Statusnet) or from Diaspora" msgstr "Ez a funkció kísérleti. Nem tudunk partnereket importálni az OStatus hálózatból (GNU Social/Statusnet) vagy Diaspora hálózatból." -#: src/Module/User/Import.php:124 +#: src/Module/User/Import.php:110 msgid "Account file" msgstr "Fiókfájl" -#: src/Module/User/Import.php:124 +#: src/Module/User/Import.php:110 msgid "" "To export your account, go to \"Settings->Export your personal data\" and " "select \"Export account\"" msgstr "A fiókja exportálásához menjen a „Beállítások → Személyes adatok exportálása” oldalra, és válassza a „Fiók exportálása” lehetőséget." -#: src/Module/User/Import.php:218 +#: src/Module/User/Import.php:204 msgid "Error decoding account file" msgstr "Hiba a fiókfájl dekódolásakor" -#: src/Module/User/Import.php:223 +#: src/Module/User/Import.php:209 msgid "Error! No version data in file! This is not a Friendica account file?" msgstr "Hiba! Nincsenek verzióadatok a fájlban! Ez nem Friendica fiókfájl?" -#: src/Module/User/Import.php:231 +#: src/Module/User/Import.php:217 #, php-format msgid "User '%s' already exists on this server!" msgstr "„%s” felhasználó már létezik ezen a kiszolgálón!" -#: src/Module/User/Import.php:268 +#: src/Module/User/Import.php:254 msgid "User creation error" msgstr "Felhasználó-létrehozási hiba" -#: src/Module/User/Import.php:317 +#: src/Module/User/Import.php:303 #, php-format msgid "%d contact not imported" msgid_plural "%d contacts not imported" msgstr[0] "%d partner nincs importálva" msgstr[1] "%d partner nincs importálva" -#: src/Module/User/Import.php:366 +#: src/Module/User/Import.php:352 msgid "User profile creation error" msgstr "Felhasználóiprofil-létrehozási hiba" -#: src/Module/User/Import.php:417 +#: src/Module/User/Import.php:403 msgid "Done. You can now login with your username and password" msgstr "Kész. Most már bejelentkezhet a felhasználónevével és a jelszavával." -#: src/Module/Welcome.php:44 +#: src/Module/Welcome.php:30 msgid "Welcome to Friendica" msgstr "Üdvözli a Friendica!" -#: src/Module/Welcome.php:45 +#: src/Module/Welcome.php:31 msgid "New Member Checklist" msgstr "Új tag ellenőrzőlistája" -#: src/Module/Welcome.php:46 +#: src/Module/Welcome.php:32 msgid "" "We would like to offer some tips and links to help make your experience " "enjoyable. Click any item to visit the relevant page. A link to this page " @@ -11681,33 +11651,33 @@ msgid "" "registration and then will quietly disappear." msgstr "Tippeket és hivatkozásokat szeretnénk ajánlani, hogy élvezhetővé tegyük az alkalmazás használatát. Kattintson bármelyik elemre a kapcsolódó oldal megtekintéséhez. Az erre az oldalra mutató hivatkozás a kezdőlapjáról érhető el a kezdeti regisztrációt követő két héten belül, azután csendben eltűnik." -#: src/Module/Welcome.php:48 +#: src/Module/Welcome.php:34 msgid "Getting Started" msgstr "Kezdeti lépések" -#: src/Module/Welcome.php:49 +#: src/Module/Welcome.php:35 msgid "Friendica Walk-Through" msgstr "Friendica útmutató" -#: src/Module/Welcome.php:50 +#: src/Module/Welcome.php:36 msgid "" "On your Quick Start page - find a brief introduction to your " "profile and network tabs, make some new connections, and find some groups to" " join." msgstr "A Gyors kezdés oldalon találhat egy rövid bemutatót a profil és hálózati lapokról, új kapcsolatok létesítésről, valamint találhat néhány csoportot, amelyekhez csatlakozhat." -#: src/Module/Welcome.php:53 +#: src/Module/Welcome.php:39 msgid "Go to Your Settings" msgstr "Ugrás a beállításaihoz" -#: src/Module/Welcome.php:54 +#: src/Module/Welcome.php:40 msgid "" "On your Settings page - change your initial password. Also make a " "note of your Identity Address. This looks just like an email address - and " "will be useful in making friends on the free social web." msgstr "A Beállítások oldalon változtathatja meg a kezdeti jelszavát. Szintén itt talál egy megjegyzést a személyazonosság-címével kapcsolatban. Ez úgy néz ki mint egy e-mail-cím, és hasznos lesz a szabad közösségi hálón az ismerősök kereséséhez." -#: src/Module/Welcome.php:55 +#: src/Module/Welcome.php:41 msgid "" "Review the other settings, particularly the privacy settings. An unpublished" " directory listing is like having an unlisted phone number. In general, you " @@ -11715,77 +11685,77 @@ msgid "" "potential friends know exactly how to find you." msgstr "Vizsgálja felül az egyéb beállításokat is, különösen az adatvédelmi beállításokat. Egy nem közzétett könyvtárlistázás olyan, mint ha egy nyilvánosságra nem hozott telefonszáma lenne. Általában valószínűleg közzé kell tennie a listázását, hacsak az ismerősei és a lehetséges ismerősei nem tudják pontosan, hogy hogyan találják meg Önt." -#: src/Module/Welcome.php:59 +#: src/Module/Welcome.php:45 msgid "" "Upload a profile photo if you have not done so already. Studies have shown " "that people with real photos of themselves are ten times more likely to make" " friends than people who do not." msgstr "Töltsön fel profilfényképet, ha ezt még nem tette meg. A tanulmányok kimutatták, hogy a saját magukról valódi fényképpel rendelkező emberek tízszer valószínűbben találnak ismerősöket mint azok az emberek, akiknek nincs profilfényképük." -#: src/Module/Welcome.php:60 +#: src/Module/Welcome.php:46 msgid "Edit Your Profile" msgstr "A profil szerkesztése" -#: src/Module/Welcome.php:61 +#: src/Module/Welcome.php:47 msgid "" "Edit your default profile to your liking. Review the " "settings for hiding your list of friends and hiding the profile from unknown" " visitors." msgstr "Szerkessze az alapértelmezett profilját a kedve szerint. Vizsgálja felül a beállításokat az ismerősök listájának elrejtéséhez és a profiljának az ismeretlen látogatók elől történő elrejtéséhez." -#: src/Module/Welcome.php:62 +#: src/Module/Welcome.php:48 msgid "Profile Keywords" msgstr "Profil kulcsszavai" -#: src/Module/Welcome.php:63 +#: src/Module/Welcome.php:49 msgid "" "Set some public keywords for your profile which describe your interests. We " "may be able to find other people with similar interests and suggest " "friendships." msgstr "Állítson be néhány nyilvános kulcsszót a profiljához, amely bemutatja az érdeklődési köreit. Képesek lehetünk megtalálni a hasonló érdeklődéssel rendelkező más embereket, és ajánlhatunk ismeretségeket." -#: src/Module/Welcome.php:65 +#: src/Module/Welcome.php:51 msgid "Connecting" msgstr "Kapcsolatépítés" -#: src/Module/Welcome.php:67 +#: src/Module/Welcome.php:53 msgid "Importing Emails" msgstr "E-mailek importálása" -#: src/Module/Welcome.php:68 +#: src/Module/Welcome.php:54 msgid "" "Enter your email access information on your Connector Settings page if you " "wish to import and interact with friends or mailing lists from your email " "INBOX" msgstr "Adja meg az e-mail-címéhez való hozzáférés információt az összekötő beállításainak oldalán, ha a postafiókja beérkező üzeneteiből szeretne ismerősöket vagy levelezési listákat importálni, valamint velük kapcsolatba lépni." -#: src/Module/Welcome.php:69 +#: src/Module/Welcome.php:55 msgid "Go to Your Contacts Page" msgstr "Ugrás a partnerek oldalára" -#: src/Module/Welcome.php:70 +#: src/Module/Welcome.php:56 msgid "" "Your Contacts page is your gateway to managing friendships and connecting " "with friends on other networks. Typically you enter their address or site " "URL in the Add New Contact dialog." msgstr "A partnerek oldal az átjáró az ismeretségek kezeléséhez és a más hálózatokon lévő ismerősökkel történő kapcsolatfelvételhez. Jellemzően csak be kell írnia a címüket vagy az oldal URL-jét az Új partner hozzáadása párbeszédablakba." -#: src/Module/Welcome.php:71 +#: src/Module/Welcome.php:57 msgid "Go to Your Site's Directory" msgstr "Ugrás az oldal könyvtárához" -#: src/Module/Welcome.php:72 +#: src/Module/Welcome.php:58 msgid "" "The Directory page lets you find other people in this network or other " "federated sites. Look for a Connect or Follow link on " "their profile page. Provide your own Identity Address if requested." msgstr "A könyvtárak oldal lehetővé teszi más emberek keresését ezen a hálózaton vagy más föderált oldalakon. Keresse meg a Kapcsolódás vagy a Követés hivatkozást a profiloldalukon. Adja meg a saját személyazonosság-címét, ha kérik." -#: src/Module/Welcome.php:73 +#: src/Module/Welcome.php:59 msgid "Finding New People" msgstr "Új emberek keresése" -#: src/Module/Welcome.php:74 +#: src/Module/Welcome.php:60 msgid "" "On the side panel of the Contacts page are several tools to find new " "friends. We can match people by interest, look up people by name or " @@ -11794,412 +11764,408 @@ msgid "" "hours." msgstr "A partnerek oldal oldalsávjában számos eszköz található új ismerősök kereséséhez. Találhatunk embereket az érdeklődésük szerint, kereshetünk embereket név vagy érdeklődés szerint, valamint ajánlásokat adhatunk a hálózati kapcsolatok alapján. Egy teljesen új oldalon az ismerősök ajánlásai általában 24 órán belül kezdenek megjelenni." -#: src/Module/Welcome.php:77 +#: src/Module/Welcome.php:63 msgid "Add Your Contacts To Circle" msgstr "Partnerek hozzáadása a körhöz" -#: src/Module/Welcome.php:78 +#: src/Module/Welcome.php:64 msgid "" "Once you have made some friends, organize them into private conversation " "circles from the sidebar of your Contacts page and then you can interact " "with each circle privately on your Network page." msgstr "Miután szerezett néhány ismerőst, szervezze őket személyes beszélgetési körökbe a partnerek oldal oldalsávján keresztül, és ezután személyes módon léphet kapcsolatba minden egyes körrel a hálózat oldalon." -#: src/Module/Welcome.php:80 +#: src/Module/Welcome.php:66 msgid "Why Aren't My Posts Public?" msgstr "Miért nem nyilvánosak a bejegyzéseim?" -#: src/Module/Welcome.php:81 +#: src/Module/Welcome.php:67 msgid "" "Friendica respects your privacy. By default, your posts will only show up to" " people you've added as friends. For more information, see the help section " "from the link above." msgstr "A Friendica tiszteletben tartja a magánszférát. Alapértelmezetten a bejegyzései csak azoknak az embereknek jelennek meg, akiket ismerősként felvett. További információkért nézze meg a súgószakaszt a fenti hivatkozáson keresztül." -#: src/Module/Welcome.php:83 +#: src/Module/Welcome.php:69 msgid "Getting Help" msgstr "Segítség kérése" -#: src/Module/Welcome.php:84 +#: src/Module/Welcome.php:70 msgid "Go to the Help Section" msgstr "Ugrás a súgószakaszhoz" -#: src/Module/Welcome.php:85 +#: src/Module/Welcome.php:71 msgid "" "Our help pages may be consulted for detail on other program" " features and resources." msgstr "A súgó oldalaink további részleteket közölhetnek a program egyéb funkcióiról és erőforrásairól." -#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:161 +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:147 msgid "{0} wants to follow you" msgstr "{0} követni szeretné Önt" -#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:163 +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:149 msgid "{0} has started following you" msgstr "{0} elkezdte követni Önt" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:96 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:82 #, php-format msgid "%s liked %s's post" msgstr "%s kedvelte %s bejegyzését" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:108 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:94 #, php-format msgid "%s disliked %s's post" msgstr "%s nem kedvelte %s bejegyzését" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:120 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:106 #, php-format msgid "%s is attending %s's event" msgstr "%s részt vesz %s eseményén" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:132 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:118 #, php-format msgid "%s is not attending %s's event" msgstr "%s nem vesz részt %s eseményén" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:144 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:130 #, php-format msgid "%s may attending %s's event" msgstr "%s talán részt vesz %s eseményén" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:174 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:160 #, php-format msgid "%s is now friends with %s" msgstr "%s és %s mostantól ismerősök" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:341 -#: src/Navigation/Notifications/Factory/FormattedNotify.php:379 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:327 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:365 #, php-format msgid "%s commented on %s's post" msgstr "%s hozzászólt %s bejegyzéséhez" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:378 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:364 #, php-format msgid "%s created a new post" msgstr "%s létrehozott egy új bejegyzést" -#: src/Navigation/Notifications/Factory/Introduction.php:132 +#: src/Navigation/Notifications/Factory/Introduction.php:118 msgid "Friend Suggestion" msgstr "Ismerősajánlás" -#: src/Navigation/Notifications/Factory/Introduction.php:158 +#: src/Navigation/Notifications/Factory/Introduction.php:144 msgid "Friend/Connect Request" msgstr "Ismerős vagy kapcsolódási kérés" -#: src/Navigation/Notifications/Factory/Introduction.php:158 -msgid "New Follower" -msgstr "Új követő" - -#: src/Navigation/Notifications/Factory/Notification.php:134 +#: src/Navigation/Notifications/Factory/Notification.php:120 #, php-format msgid "%1$s wants to follow you" msgstr "%1$s követni szeretné Önt" -#: src/Navigation/Notifications/Factory/Notification.php:136 +#: src/Navigation/Notifications/Factory/Notification.php:122 #, php-format msgid "%1$s has started following you" msgstr "%1$s elkezdte követni Önt" -#: src/Navigation/Notifications/Factory/Notification.php:208 +#: src/Navigation/Notifications/Factory/Notification.php:194 #, php-format msgid "%1$s liked your comment on %2$s" msgstr "%1$s kedvelte az Ön hozzászólását ehhez: %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:211 +#: src/Navigation/Notifications/Factory/Notification.php:197 #, php-format msgid "%1$s liked your post %2$s" msgstr "%1$s kedvelte az Ön %2$s bejegyzését" -#: src/Navigation/Notifications/Factory/Notification.php:218 +#: src/Navigation/Notifications/Factory/Notification.php:204 #, php-format msgid "%1$s disliked your comment on %2$s" msgstr "%1$s nem kedvelte az Ön hozzászólását ehhez: %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:221 +#: src/Navigation/Notifications/Factory/Notification.php:207 #, php-format msgid "%1$s disliked your post %2$s" msgstr "%1$s nem kedvelte az Ön %2$s bejegyzését" -#: src/Navigation/Notifications/Factory/Notification.php:228 +#: src/Navigation/Notifications/Factory/Notification.php:214 #, php-format msgid "%1$s shared your comment %2$s" msgstr "%1$s megosztotta az Ön %2$s hozzászólását" -#: src/Navigation/Notifications/Factory/Notification.php:231 -#: src/Navigation/Notifications/Factory/Notification.php:316 +#: src/Navigation/Notifications/Factory/Notification.php:217 +#: src/Navigation/Notifications/Factory/Notification.php:302 #, php-format msgid "%1$s shared your post %2$s" msgstr "%1$s megosztotta az Ön %2$s bejegyzését" -#: src/Navigation/Notifications/Factory/Notification.php:235 -#: src/Navigation/Notifications/Factory/Notification.php:305 +#: src/Navigation/Notifications/Factory/Notification.php:221 +#: src/Navigation/Notifications/Factory/Notification.php:291 #, php-format msgid "%1$s shared the post %2$s from %3$s" msgstr "%1$s megosztott egy %3$s által közzétett %2$s bejegyzést" -#: src/Navigation/Notifications/Factory/Notification.php:237 -#: src/Navigation/Notifications/Factory/Notification.php:307 +#: src/Navigation/Notifications/Factory/Notification.php:223 +#: src/Navigation/Notifications/Factory/Notification.php:293 #, php-format msgid "%1$s shared a post from %3$s" msgstr "%1$s megosztott egy %3$s által közzétett bejegyzést" -#: src/Navigation/Notifications/Factory/Notification.php:239 -#: src/Navigation/Notifications/Factory/Notification.php:309 +#: src/Navigation/Notifications/Factory/Notification.php:225 +#: src/Navigation/Notifications/Factory/Notification.php:295 #, php-format msgid "%1$s shared the post %2$s" msgstr "%1$s megosztotta a(z) %2$s bejegyzést" -#: src/Navigation/Notifications/Factory/Notification.php:241 -#: src/Navigation/Notifications/Factory/Notification.php:311 +#: src/Navigation/Notifications/Factory/Notification.php:227 +#: src/Navigation/Notifications/Factory/Notification.php:297 #, php-format msgid "%1$s shared a post" msgstr "%1$s megosztott egy bejegyzést" -#: src/Navigation/Notifications/Factory/Notification.php:249 +#: src/Navigation/Notifications/Factory/Notification.php:235 #, php-format msgid "%1$s wants to attend your event %2$s" msgstr "%1$s szeretne részt venni az Ön %2$s eseményén" -#: src/Navigation/Notifications/Factory/Notification.php:256 +#: src/Navigation/Notifications/Factory/Notification.php:242 #, php-format msgid "%1$s does not want to attend your event %2$s" msgstr "%1$s nem szeretne részt venni az Ön %2$s eseményén" -#: src/Navigation/Notifications/Factory/Notification.php:263 +#: src/Navigation/Notifications/Factory/Notification.php:249 #, php-format msgid "%1$s maybe wants to attend your event %2$s" msgstr "%1$s talán szeretne részt venni az Ön %2$s eseményén" -#: src/Navigation/Notifications/Factory/Notification.php:270 +#: src/Navigation/Notifications/Factory/Notification.php:256 #, php-format msgid "%1$s tagged you on %2$s" msgstr "%1$s megjelölte Önt ezen: %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:274 +#: src/Navigation/Notifications/Factory/Notification.php:260 #, php-format msgid "%1$s replied to you on %2$s" msgstr "%1$s válaszolt Önnek ezen: %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:278 +#: src/Navigation/Notifications/Factory/Notification.php:264 #, php-format msgid "%1$s commented in your thread %2$s" msgstr "%1$s hozzászólt az Ön %2$s szálában" -#: src/Navigation/Notifications/Factory/Notification.php:282 +#: src/Navigation/Notifications/Factory/Notification.php:268 #, php-format msgid "%1$s commented on your comment %2$s" msgstr "%1$s hozzászólt az Ön %2$s hozzászólásánál" -#: src/Navigation/Notifications/Factory/Notification.php:289 +#: src/Navigation/Notifications/Factory/Notification.php:275 #, php-format msgid "%1$s commented in their thread %2$s" msgstr "%1$s hozzászólt az ő %2$s szálában" -#: src/Navigation/Notifications/Factory/Notification.php:291 +#: src/Navigation/Notifications/Factory/Notification.php:277 #, php-format msgid "%1$s commented in their thread" msgstr "%1$s hozzászólt az ő szálában" -#: src/Navigation/Notifications/Factory/Notification.php:293 +#: src/Navigation/Notifications/Factory/Notification.php:279 #, php-format msgid "%1$s commented in the thread %2$s from %3$s" msgstr "%1$s hozzászólt egy %3$s által közzétett %2$s szálában" -#: src/Navigation/Notifications/Factory/Notification.php:295 +#: src/Navigation/Notifications/Factory/Notification.php:281 #, php-format msgid "%1$s commented in the thread from %3$s" msgstr "%1$s hozzászólt egy %3$s által közzétett szálában" -#: src/Navigation/Notifications/Factory/Notification.php:300 +#: src/Navigation/Notifications/Factory/Notification.php:286 #, php-format msgid "%1$s commented on your thread %2$s" msgstr "%1$s hozzászólt az Ön %2$s szálánál" -#: src/Navigation/Notifications/Repository/Notify.php:225 -#: src/Navigation/Notifications/Repository/Notify.php:754 +#: src/Navigation/Notifications/Repository/Notify.php:211 +#: src/Navigation/Notifications/Repository/Notify.php:740 msgid "[Friendica:Notify]" msgstr "[Friendica: értesítés]" -#: src/Navigation/Notifications/Repository/Notify.php:293 +#: src/Navigation/Notifications/Repository/Notify.php:279 #, php-format msgid "%s New mail received at %s" msgstr "%s Új levél érkezett ekkor: %s" -#: src/Navigation/Notifications/Repository/Notify.php:295 +#: src/Navigation/Notifications/Repository/Notify.php:281 #, php-format msgid "%1$s sent you a new private message at %2$s." msgstr "%1$s személyes üzenetet küldött ekkor: %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:296 +#: src/Navigation/Notifications/Repository/Notify.php:282 msgid "a private message" msgstr "egy személyes üzenetet" -#: src/Navigation/Notifications/Repository/Notify.php:296 +#: src/Navigation/Notifications/Repository/Notify.php:282 #, php-format msgid "%1$s sent you %2$s." msgstr "%1$s küldött Önnek %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:298 +#: src/Navigation/Notifications/Repository/Notify.php:284 #, php-format msgid "Please visit %s to view and/or reply to your private messages." msgstr "Látogassa meg a(z) %s oldalt a személyes üzenete megtekintéséhez és/vagy megválaszolásához." -#: src/Navigation/Notifications/Repository/Notify.php:328 +#: src/Navigation/Notifications/Repository/Notify.php:314 #, php-format msgid "%1$s commented on %2$s's %3$s %4$s" msgstr "%1$s hozzászólt egy %2$s által megosztott %3$s kapcsán: %4$s" -#: src/Navigation/Notifications/Repository/Notify.php:333 +#: src/Navigation/Notifications/Repository/Notify.php:319 #, php-format msgid "%1$s commented on your %2$s %3$s" msgstr "%1$s hozzászólt egy vele megosztott %2$s kapcsán: %3$s" -#: src/Navigation/Notifications/Repository/Notify.php:337 +#: src/Navigation/Notifications/Repository/Notify.php:323 #, php-format msgid "%1$s commented on their %2$s %3$s" msgstr "%1$s hozzászólt egy saját %2$s kapcsán: %3$s" -#: src/Navigation/Notifications/Repository/Notify.php:341 -#: src/Navigation/Notifications/Repository/Notify.php:788 +#: src/Navigation/Notifications/Repository/Notify.php:327 +#: src/Navigation/Notifications/Repository/Notify.php:774 #, php-format msgid "%1$s Comment to conversation #%2$d by %3$s" msgstr "%1$s Hozzászólás a #%2$d beszélgetéshez %3$s által" -#: src/Navigation/Notifications/Repository/Notify.php:343 +#: src/Navigation/Notifications/Repository/Notify.php:329 #, php-format msgid "%s commented on an item/conversation you have been following." msgstr "%s hozzászólt egy olyan elemhez vagy beszélgetéshez, amelyet Ön követ." -#: src/Navigation/Notifications/Repository/Notify.php:347 -#: src/Navigation/Notifications/Repository/Notify.php:362 -#: src/Navigation/Notifications/Repository/Notify.php:814 +#: src/Navigation/Notifications/Repository/Notify.php:333 +#: src/Navigation/Notifications/Repository/Notify.php:348 +#: src/Navigation/Notifications/Repository/Notify.php:800 #, php-format msgid "Please visit %s to view and/or reply to the conversation." msgstr "Látogassa meg a %s oldalt a beszélgetés megtekintéséhez és/vagy megválaszolásához." -#: src/Navigation/Notifications/Repository/Notify.php:354 +#: src/Navigation/Notifications/Repository/Notify.php:340 #, php-format msgid "%s %s posted to your profile wall" msgstr "%s %s bejegyzést írt az Ön profilfalára" -#: src/Navigation/Notifications/Repository/Notify.php:356 +#: src/Navigation/Notifications/Repository/Notify.php:342 #, php-format msgid "%1$s posted to your profile wall at %2$s" msgstr "%1$s bejegyzést írt az Ön profilfalára itt: %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:357 +#: src/Navigation/Notifications/Repository/Notify.php:343 #, php-format msgid "%1$s posted to [url=%2$s]your wall[/url]" msgstr "%1$s bejegyzést írt [url=%2$s]az Ön falára[/url]" -#: src/Navigation/Notifications/Repository/Notify.php:370 +#: src/Navigation/Notifications/Repository/Notify.php:356 #, php-format msgid "%s Introduction received" msgstr "%s Bemutatkozás érkezett" -#: src/Navigation/Notifications/Repository/Notify.php:372 +#: src/Navigation/Notifications/Repository/Notify.php:358 #, php-format msgid "You've received an introduction from '%1$s' at %2$s" msgstr "Kapott egy %1$s által elküldött bemutatkozását itt: %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:373 +#: src/Navigation/Notifications/Repository/Notify.php:359 #, php-format msgid "You've received [url=%1$s]an introduction[/url] from %2$s." msgstr "Kapott egy %2$s által elküldött [url=%1$s]bemutatkozást[/url]." -#: src/Navigation/Notifications/Repository/Notify.php:378 -#: src/Navigation/Notifications/Repository/Notify.php:424 +#: src/Navigation/Notifications/Repository/Notify.php:364 +#: src/Navigation/Notifications/Repository/Notify.php:410 #, php-format msgid "You may visit their profile at %s" msgstr "Meglátogathatja a profilját itt: %s" -#: src/Navigation/Notifications/Repository/Notify.php:380 +#: src/Navigation/Notifications/Repository/Notify.php:366 #, php-format msgid "Please visit %s to approve or reject the introduction." msgstr "Látogassa meg a(z) %s oldalt a bemutatkozás jóváhagyásához vagy visszautasításához." -#: src/Navigation/Notifications/Repository/Notify.php:387 +#: src/Navigation/Notifications/Repository/Notify.php:373 #, php-format msgid "%s A new person is sharing with you" msgstr "%s Egy új személy megoszt Önnel" -#: src/Navigation/Notifications/Repository/Notify.php:389 -#: src/Navigation/Notifications/Repository/Notify.php:390 +#: src/Navigation/Notifications/Repository/Notify.php:375 +#: src/Navigation/Notifications/Repository/Notify.php:376 #, php-format msgid "%1$s is sharing with you at %2$s" msgstr "%1$s megoszt Önnel itt: %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:397 +#: src/Navigation/Notifications/Repository/Notify.php:383 #, php-format msgid "%s You have a new follower" msgstr "%s Van egy új követője" -#: src/Navigation/Notifications/Repository/Notify.php:399 -#: src/Navigation/Notifications/Repository/Notify.php:400 +#: src/Navigation/Notifications/Repository/Notify.php:385 +#: src/Navigation/Notifications/Repository/Notify.php:386 #, php-format msgid "You have a new follower at %2$s : %1$s" msgstr "Van egy új követője, %1$s itt: %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:413 +#: src/Navigation/Notifications/Repository/Notify.php:399 #, php-format msgid "%s Friend suggestion received" msgstr "%s Ismerősajánlás érkezett" -#: src/Navigation/Notifications/Repository/Notify.php:415 +#: src/Navigation/Notifications/Repository/Notify.php:401 #, php-format msgid "You've received a friend suggestion from '%1$s' at %2$s" msgstr "Kapott egy %1$s által elküldött ismerősajánlást itt: %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:416 +#: src/Navigation/Notifications/Repository/Notify.php:402 #, php-format msgid "" "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." msgstr "Kapott egy %3$s által elküldött [url=%1$s]ismerősajánlást[/url] %2$s partnerhez." -#: src/Navigation/Notifications/Repository/Notify.php:422 +#: src/Navigation/Notifications/Repository/Notify.php:408 msgid "Name:" msgstr "Név:" -#: src/Navigation/Notifications/Repository/Notify.php:423 +#: src/Navigation/Notifications/Repository/Notify.php:409 msgid "Photo:" msgstr "Fénykép:" -#: src/Navigation/Notifications/Repository/Notify.php:426 +#: src/Navigation/Notifications/Repository/Notify.php:412 #, php-format msgid "Please visit %s to approve or reject the suggestion." msgstr "Látogassa meg a(z) %s oldalt az ajánlás jóváhagyásához vagy visszautasításához." -#: src/Navigation/Notifications/Repository/Notify.php:434 -#: src/Navigation/Notifications/Repository/Notify.php:449 +#: src/Navigation/Notifications/Repository/Notify.php:420 +#: src/Navigation/Notifications/Repository/Notify.php:435 #, php-format msgid "%s Connection accepted" msgstr "%s Kapcsolat elfogadva" -#: src/Navigation/Notifications/Repository/Notify.php:436 -#: src/Navigation/Notifications/Repository/Notify.php:451 +#: src/Navigation/Notifications/Repository/Notify.php:422 +#: src/Navigation/Notifications/Repository/Notify.php:437 #, php-format msgid "'%1$s' has accepted your connection request at %2$s" msgstr "%1$s elfogadta a kapcsolódási kérését itt: %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:437 -#: src/Navigation/Notifications/Repository/Notify.php:452 +#: src/Navigation/Notifications/Repository/Notify.php:423 +#: src/Navigation/Notifications/Repository/Notify.php:438 #, php-format msgid "%2$s has accepted your [url=%1$s]connection request[/url]." msgstr "%2$s elfogadta a [url=%1$s]kapcsolódási kérését[/url]." -#: src/Navigation/Notifications/Repository/Notify.php:442 +#: src/Navigation/Notifications/Repository/Notify.php:428 msgid "" "You are now mutual friends and may exchange status updates, photos, and " "email without restriction." msgstr "Önök most már kölcsönösen ismerősök, és korlátozások nélkül megoszthatják az állapotfrissítéseiket, fényképeiket és az e-mail-címüket egymással." -#: src/Navigation/Notifications/Repository/Notify.php:444 +#: src/Navigation/Notifications/Repository/Notify.php:430 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "Látogassa meg a(z) %s oldalt, ha bármilyen változtatást szeretne tenni ebben a kapcsolatban." -#: src/Navigation/Notifications/Repository/Notify.php:457 +#: src/Navigation/Notifications/Repository/Notify.php:443 #, php-format msgid "" "'%1$s' has chosen to accept you a fan, which restricts some forms of " @@ -12208,34 +12174,34 @@ msgid "" "automatically." msgstr "%1$s úgy döntött, hogy elfogadja Önt rajongóként, ami korlátozza a kommunikáció néhány formáját, mint például a személyes üzenet küldését és néhány profil-interakciót. Ha ez egy híres ember vagy egy közösségi oldal, akkor ezek a beállítások automatikusan alkalmazva lettek." -#: src/Navigation/Notifications/Repository/Notify.php:459 +#: src/Navigation/Notifications/Repository/Notify.php:445 #, php-format msgid "" "'%1$s' may choose to extend this into a two-way or more permissive " "relationship in the future." msgstr "%1$s dönthet úgy, hogy kiterjeszti ezt egy kétirányú vagy egy megengedőbb kapcsolattá a jövőben." -#: src/Navigation/Notifications/Repository/Notify.php:461 +#: src/Navigation/Notifications/Repository/Notify.php:447 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "Látogassa meg a(z) %s oldalt, ha bármilyen változtatást szeretne tenni ebben a kapcsolatban." -#: src/Navigation/Notifications/Repository/Notify.php:471 +#: src/Navigation/Notifications/Repository/Notify.php:457 msgid "registration request" msgstr "regisztrációs kérés" -#: src/Navigation/Notifications/Repository/Notify.php:473 +#: src/Navigation/Notifications/Repository/Notify.php:459 #, php-format msgid "You've received a registration request from '%1$s' at %2$s" msgstr "Kapott egy regisztrációs kérést „%1$s” partnertől itt: %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:474 +#: src/Navigation/Notifications/Repository/Notify.php:460 #, php-format msgid "You've received a [url=%1$s]registration request[/url] from %2$s." msgstr "Kapott egy %2$s által elküldött [url=%1$s]regisztrációs kérést[/url]." -#: src/Navigation/Notifications/Repository/Notify.php:479 -#: src/Navigation/Notifications/Repository/Notify.php:500 +#: src/Navigation/Notifications/Repository/Notify.php:465 +#: src/Navigation/Notifications/Repository/Notify.php:486 #, php-format msgid "" "Display Name:\t%s\n" @@ -12243,773 +12209,755 @@ msgid "" "Login Name:\t%s (%s)" msgstr "Megjelenített név:\t%s\nOldal címe:\t%s\nBejelentkezési név:\t%s (%s)" -#: src/Navigation/Notifications/Repository/Notify.php:485 +#: src/Navigation/Notifications/Repository/Notify.php:471 #, php-format msgid "Please visit %s to approve or reject the request." msgstr "Látogassa meg a(z) %s oldalt a kérés jóváhagyásához vagy visszautasításához." -#: src/Navigation/Notifications/Repository/Notify.php:492 +#: src/Navigation/Notifications/Repository/Notify.php:478 msgid "new registration" msgstr "új regisztráció" -#: src/Navigation/Notifications/Repository/Notify.php:494 +#: src/Navigation/Notifications/Repository/Notify.php:480 #, php-format msgid "You've received a new registration from '%1$s' at %2$s" msgstr "Kapott egy új regisztrációs kérést „%1$s” partnertől itt: %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:495 +#: src/Navigation/Notifications/Repository/Notify.php:481 #, php-format msgid "You've received a [url=%1$s]new registration[/url] from %2$s." msgstr "Kapott egy %2$s által elküldött [url=%1$s]új regisztrációt[/url]." -#: src/Navigation/Notifications/Repository/Notify.php:506 +#: src/Navigation/Notifications/Repository/Notify.php:492 #, php-format msgid "Please visit %s to have a look at the new registration." msgstr "Látogassa meg a(z) %s oldal, hogy egy pillantást vessen az új regisztrációra." -#: src/Navigation/Notifications/Repository/Notify.php:782 +#: src/Navigation/Notifications/Repository/Notify.php:768 #, php-format msgid "%s %s tagged you" msgstr "%s %s megjelölte Önt" -#: src/Navigation/Notifications/Repository/Notify.php:785 +#: src/Navigation/Notifications/Repository/Notify.php:771 #, php-format msgid "%s %s shared a new post" msgstr "%s %s megosztott egy új bejegyzést" -#: src/Navigation/Notifications/Repository/Notify.php:793 +#: src/Navigation/Notifications/Repository/Notify.php:779 #, php-format msgid "%1$s %2$s liked your post #%3$d" msgstr "%1$s %2$s kedvelte az Ön #%3$d bejegyzését" -#: src/Navigation/Notifications/Repository/Notify.php:796 +#: src/Navigation/Notifications/Repository/Notify.php:782 #, php-format msgid "%1$s %2$s liked your comment on #%3$d" msgstr "%1$s %2$s kedvelte az Ön hozzászólását ehhez: #%3$d" -#: src/Object/EMail/ItemCCEMail.php:42 +#: src/Object/EMail/ItemCCEMail.php:28 #, php-format msgid "" "This message was sent to you by %s, a member of the Friendica social " "network." msgstr "Ezt az üzenetet %s, a Friendica közösségi hálózatának tagja küldte Önnek." -#: src/Object/EMail/ItemCCEMail.php:44 +#: src/Object/EMail/ItemCCEMail.php:30 #, php-format msgid "You may visit them online at %s" msgstr "Meglátogathatja őket az interneten ezen a címen: %s" -#: src/Object/EMail/ItemCCEMail.php:45 +#: src/Object/EMail/ItemCCEMail.php:31 msgid "" "Please contact the sender by replying to this post if you do not wish to " "receive these messages." msgstr "Vegye fel a kapcsolatot a küldővel erre a bejegyzésre válaszolva, ha nem szeretné megkapni ezeket az üzeneteket." -#: src/Object/EMail/ItemCCEMail.php:49 +#: src/Object/EMail/ItemCCEMail.php:35 #, php-format msgid "%s posted an update." msgstr "%s frissítést küldött." -#: src/Object/Post.php:138 +#: src/Object/Post.php:124 msgid "Private Message" msgstr "Személyes üzenet" -#: src/Object/Post.php:142 +#: src/Object/Post.php:128 msgid "Public Message" msgstr "Nyilvános üzenet" -#: src/Object/Post.php:146 +#: src/Object/Post.php:132 msgid "Unlisted Message" msgstr "Listázatlan üzenet" -#: src/Object/Post.php:182 +#: src/Object/Post.php:168 msgid "This entry was edited" msgstr "Ezt a bejegyzést szerkesztették" -#: src/Object/Post.php:210 +#: src/Object/Post.php:196 msgid "Connector Message" msgstr "Csatlakozóüzenet" -#: src/Object/Post.php:239 src/Object/Post.php:241 +#: src/Object/Post.php:225 src/Object/Post.php:227 msgid "Edit" msgstr "Szerkesztés" -#: src/Object/Post.php:275 +#: src/Object/Post.php:261 msgid "Delete globally" msgstr "Törlés globálisan" -#: src/Object/Post.php:275 +#: src/Object/Post.php:261 msgid "Remove locally" msgstr "Eltávolítás helyileg" -#: src/Object/Post.php:282 +#: src/Object/Post.php:268 #, php-format msgid "Block %s" msgstr "%s tiltása" -#: src/Object/Post.php:287 +#: src/Object/Post.php:273 #, php-format msgid "Ignore %s" msgstr "%s mellőzése" -#: src/Object/Post.php:292 +#: src/Object/Post.php:278 #, php-format msgid "Collapse %s" msgstr "%s összecsukása" -#: src/Object/Post.php:296 +#: src/Object/Post.php:282 msgid "Report post" msgstr "Bejegyzés jelentése" -#: src/Object/Post.php:307 +#: src/Object/Post.php:293 msgid "Save to folder" msgstr "Mentés mappába" -#: src/Object/Post.php:347 +#: src/Object/Post.php:333 msgid "I will attend" msgstr "Részt veszek" -#: src/Object/Post.php:347 +#: src/Object/Post.php:333 msgid "I will not attend" msgstr "Nem veszek részt" -#: src/Object/Post.php:347 +#: src/Object/Post.php:333 msgid "I might attend" msgstr "Talán részt veszek" -#: src/Object/Post.php:394 +#: src/Object/Post.php:380 msgid "Ignore thread" msgstr "Szál mellőzése" -#: src/Object/Post.php:395 +#: src/Object/Post.php:381 msgid "Unignore thread" msgstr "Szál mellőzésének megszüntetése" -#: src/Object/Post.php:396 +#: src/Object/Post.php:382 msgid "Toggle ignore status" msgstr "Mellőzési állapot átváltása" -#: src/Object/Post.php:406 +#: src/Object/Post.php:392 msgid "Add star" msgstr "Csillag hozzáadása" -#: src/Object/Post.php:407 +#: src/Object/Post.php:393 msgid "Remove star" msgstr "Csillag eltávolítása" -#: src/Object/Post.php:408 +#: src/Object/Post.php:394 msgid "Toggle star status" msgstr "Csillagállapot átváltása" -#: src/Object/Post.php:419 +#: src/Object/Post.php:405 msgid "Pin" msgstr "Kitűzés" -#: src/Object/Post.php:420 +#: src/Object/Post.php:406 msgid "Unpin" msgstr "Kitűzés megszüntetése" -#: src/Object/Post.php:421 +#: src/Object/Post.php:407 msgid "Toggle pin status" msgstr "Kitűzés állapotának átváltása" -#: src/Object/Post.php:424 +#: src/Object/Post.php:410 msgid "Pinned" msgstr "Kitűzve" -#: src/Object/Post.php:429 +#: src/Object/Post.php:415 msgid "Add tag" msgstr "Címke hozzáadása" -#: src/Object/Post.php:444 +#: src/Object/Post.php:430 msgid "Quote share this" msgstr "Idézett megosztás" -#: src/Object/Post.php:444 +#: src/Object/Post.php:430 msgid "Quote Share" msgstr "Idézett megosztás" -#: src/Object/Post.php:447 +#: src/Object/Post.php:433 msgid "Reshare this" msgstr "Újra megosztás" -#: src/Object/Post.php:447 +#: src/Object/Post.php:433 msgid "Reshare" msgstr "Újra megosztás" -#: src/Object/Post.php:448 +#: src/Object/Post.php:434 msgid "Cancel your Reshare" msgstr "Újra megosztás megszakítása" -#: src/Object/Post.php:448 +#: src/Object/Post.php:434 msgid "Unshare" msgstr "Megosztás megszüntetése" -#: src/Object/Post.php:492 +#: src/Object/Post.php:478 #, php-format msgid "%s (Received %s)" msgstr "%s (fogadva: %s)" -#: src/Object/Post.php:498 +#: src/Object/Post.php:484 msgid "Comment this item on your system" msgstr "Hozzászólás az elemhez a saját rendszerén" -#: src/Object/Post.php:498 +#: src/Object/Post.php:484 msgid "Remote comment" msgstr "Távoli hozzászólás" -#: src/Object/Post.php:520 +#: src/Object/Post.php:506 msgid "Share via ..." msgstr "Megosztás ezen keresztül…" -#: src/Object/Post.php:520 +#: src/Object/Post.php:506 msgid "Share via external services" msgstr "Megosztás külső szolgáltatásokon keresztül" -#: src/Object/Post.php:527 +#: src/Object/Post.php:513 msgid "Unknown parent" msgstr "Ismeretlen szülő" -#: src/Object/Post.php:531 +#: src/Object/Post.php:517 #, php-format msgid "in reply to %s" msgstr "válasz a következőre: %s" -#: src/Object/Post.php:533 +#: src/Object/Post.php:519 msgid "Parent is probably private or not federated." msgstr "A szülő valószínűleg személyes vagy nem föderált." -#: src/Object/Post.php:557 +#: src/Object/Post.php:543 msgid "to" msgstr "ide:" -#: src/Object/Post.php:558 +#: src/Object/Post.php:544 msgid "via" msgstr "ezen keresztül:" -#: src/Object/Post.php:559 +#: src/Object/Post.php:545 msgid "Wall-to-Wall" msgstr "Falról-falra" -#: src/Object/Post.php:560 +#: src/Object/Post.php:546 msgid "via Wall-To-Wall:" msgstr "falról-falra szolgáltatáson keresztül:" -#: src/Object/Post.php:613 +#: src/Object/Post.php:599 #, php-format msgid "Reply to %s" msgstr "Válasz erre: %s" -#: src/Object/Post.php:616 +#: src/Object/Post.php:602 msgid "More" msgstr "Több" -#: src/Object/Post.php:635 +#: src/Object/Post.php:621 msgid "Notifier task is pending" msgstr "Az értesítőfeladat függőben van" -#: src/Object/Post.php:636 +#: src/Object/Post.php:622 msgid "Delivery to remote servers is pending" msgstr "A távoli kiszolgálókra történő kézbesítés függőben van" -#: src/Object/Post.php:637 +#: src/Object/Post.php:623 msgid "Delivery to remote servers is underway" msgstr "A távoli kiszolgálókra történő kézbesítés úton van" -#: src/Object/Post.php:638 +#: src/Object/Post.php:624 msgid "Delivery to remote servers is mostly done" msgstr "A távoli kiszolgálókra történő kézbesítés többnyire készen van" -#: src/Object/Post.php:639 +#: src/Object/Post.php:625 msgid "Delivery to remote servers is done" msgstr "A távoli kiszolgálókra történő kézbesítés készen van" -#: src/Object/Post.php:661 +#: src/Object/Post.php:647 #, php-format msgid "%d comment" msgid_plural "%d comments" msgstr[0] "%d hozzászólás" msgstr[1] "%d hozzászólás" -#: src/Object/Post.php:662 +#: src/Object/Post.php:648 msgid "Show more" msgstr "Több megjelenítése" -#: src/Object/Post.php:663 +#: src/Object/Post.php:649 msgid "Show fewer" msgstr "Kevesebb megjelenítése" -#: src/Object/Post.php:700 +#: src/Object/Post.php:686 #, php-format msgid "Reshared by: %s" msgstr "Újra megosztotta: %s" -#: src/Object/Post.php:705 +#: src/Object/Post.php:691 #, php-format msgid "Viewed by: %s" msgstr "Megtekintette: %s" -#: src/Object/Post.php:710 +#: src/Object/Post.php:696 #, php-format msgid "Read by: %s" msgstr "Olvasta: %s" -#: src/Object/Post.php:715 +#: src/Object/Post.php:701 #, php-format msgid "Liked by: %s" msgstr "Kedvelte: %s" -#: src/Object/Post.php:720 +#: src/Object/Post.php:706 #, php-format msgid "Disliked by: %s" msgstr "Nem kedvelte: %s" -#: src/Object/Post.php:725 +#: src/Object/Post.php:711 #, php-format msgid "Attended by: %s" msgstr "Részt vett: %s" -#: src/Object/Post.php:730 +#: src/Object/Post.php:716 #, php-format msgid "Maybe attended by: %s" msgstr "Talán részt vett: %s" -#: src/Object/Post.php:735 +#: src/Object/Post.php:721 #, php-format msgid "Not attended by: %s" msgstr "Nem vett részt: %s" -#: src/Object/Post.php:740 +#: src/Object/Post.php:726 #, php-format msgid "Commented by: %s" msgstr "Hozzászólt: %s" -#: src/Object/Post.php:745 +#: src/Object/Post.php:731 #, php-format msgid "Reacted with %s by: %s" msgstr "Reagált ezzel: %s: %s" -#: src/Object/Post.php:768 +#: src/Object/Post.php:754 #, php-format msgid "Quote shared by: %s" msgstr "Idézetten osztott meg: %s" -#: src/Protocol/ActivityPub/Receiver.php:571 +#: src/Protocol/ActivityPub/Receiver.php:557 msgid "Chat" msgstr "Csevegés" -#: src/Protocol/Delivery.php:544 +#: src/Protocol/Delivery.php:530 msgid "(no subject)" msgstr "(nincs tárgy)" -#: src/Protocol/OStatus.php:1392 -#, php-format -msgid "%s is now following %s." -msgstr "%s mostantól követi %s partnert." - -#: src/Protocol/OStatus.php:1393 -msgid "following" -msgstr "követés" - -#: src/Protocol/OStatus.php:1396 -#, php-format -msgid "%s stopped following %s." -msgstr "%s leállította %s követését." - -#: src/Protocol/OStatus.php:1397 -msgid "stopped following" -msgstr "követés leállítva" - -#: src/Render/FriendicaSmartyEngine.php:56 +#: src/Render/FriendicaSmartyEngine.php:42 #, php-format msgid "The folder %s must be writable by webserver." msgstr "A „%s” mappának írhatónak kell lennie a webkiszolgáló által." -#: src/Security/Authentication.php:214 +#: src/Security/Authentication.php:200 msgid "Login failed." msgstr "Bejelentkezés sikertelen." -#: src/Security/Authentication.php:259 +#: src/Security/Authentication.php:245 msgid "Login failed. Please check your credentials." msgstr "Bejelentkezés sikertelen. Ellenőrizze a hitelesítési adatait." -#: src/Security/Authentication.php:373 +#: src/Security/Authentication.php:359 #, php-format msgid "Welcome %s" msgstr "Üdvözöljük, %s!" -#: src/Security/Authentication.php:374 +#: src/Security/Authentication.php:360 msgid "Please upload a profile photo." msgstr "Töltsön fel egy profilfényképet." -#: src/Security/OpenWebAuth.php:163 +#: src/Security/OpenWebAuth.php:149 #, php-format msgid "OpenWebAuth: %1$s welcomes %2$s" msgstr "OpenWebAuth: %1$s üdvözli őt: %2$s" -#: src/Util/EMailer/MailBuilder.php:260 +#: src/Util/EMailer/MailBuilder.php:246 msgid "Friendica Notification" msgstr "Friendica értesítés" -#: src/Util/EMailer/NotifyMailBuilder.php:78 -#: src/Util/EMailer/SystemMailBuilder.php:54 +#: src/Util/EMailer/NotifyMailBuilder.php:64 +#: src/Util/EMailer/SystemMailBuilder.php:40 #, php-format msgid "%1$s, %2$s Administrator" msgstr "%1$s, a(z) %2$s adminisztrátora" -#: src/Util/EMailer/NotifyMailBuilder.php:80 -#: src/Util/EMailer/SystemMailBuilder.php:56 +#: src/Util/EMailer/NotifyMailBuilder.php:66 +#: src/Util/EMailer/SystemMailBuilder.php:42 #, php-format msgid "%s Administrator" msgstr "A(z) %s adminisztrátora" -#: src/Util/EMailer/NotifyMailBuilder.php:193 -#: src/Util/EMailer/NotifyMailBuilder.php:217 -#: src/Util/EMailer/SystemMailBuilder.php:101 -#: src/Util/EMailer/SystemMailBuilder.php:118 +#: src/Util/EMailer/NotifyMailBuilder.php:179 +#: src/Util/EMailer/NotifyMailBuilder.php:203 +#: src/Util/EMailer/SystemMailBuilder.php:87 +#: src/Util/EMailer/SystemMailBuilder.php:104 msgid "thanks" msgstr "köszönet" -#: src/Util/Temporal.php:172 +#: src/Util/Temporal.php:158 msgid "YYYY-MM-DD or MM-DD" msgstr "YYYY-MM-DD vagy MM-DD" -#: src/Util/Temporal.php:280 +#: src/Util/Temporal.php:266 #, php-format msgid "Time zone: %s Change in Settings" msgstr "Időzóna: %s Megváltoztatás a beállításokban" -#: src/Util/Temporal.php:320 src/Util/Temporal.php:329 +#: src/Util/Temporal.php:306 src/Util/Temporal.php:315 msgid "never" msgstr "soha" -#: src/Util/Temporal.php:343 +#: src/Util/Temporal.php:329 msgid "less than a second ago" msgstr "kevesebb mint egy másodperce" -#: src/Util/Temporal.php:352 +#: src/Util/Temporal.php:338 msgid "year" msgstr "év" -#: src/Util/Temporal.php:352 +#: src/Util/Temporal.php:338 msgid "years" msgstr "év" -#: src/Util/Temporal.php:353 +#: src/Util/Temporal.php:339 msgid "months" msgstr "hónap" -#: src/Util/Temporal.php:354 +#: src/Util/Temporal.php:340 msgid "weeks" msgstr "hét" -#: src/Util/Temporal.php:355 +#: src/Util/Temporal.php:341 msgid "days" msgstr "nap" -#: src/Util/Temporal.php:356 +#: src/Util/Temporal.php:342 msgid "hour" msgstr "óra" -#: src/Util/Temporal.php:356 +#: src/Util/Temporal.php:342 msgid "hours" msgstr "óra" -#: src/Util/Temporal.php:357 +#: src/Util/Temporal.php:343 msgid "minute" msgstr "perc" -#: src/Util/Temporal.php:357 +#: src/Util/Temporal.php:343 msgid "minutes" msgstr "perc" -#: src/Util/Temporal.php:358 +#: src/Util/Temporal.php:344 msgid "second" msgstr "másodperc" -#: src/Util/Temporal.php:358 +#: src/Util/Temporal.php:344 msgid "seconds" msgstr "másodperc" -#: src/Util/Temporal.php:367 +#: src/Util/Temporal.php:353 #, php-format msgid "in %1$d %2$s" msgstr "%1$d %2$s múlva" -#: src/Util/Temporal.php:370 +#: src/Util/Temporal.php:356 #, php-format msgid "%1$d %2$s ago" msgstr "%1$d %2$s óta" -#: src/Worker/PushSubscription.php:110 +#: src/Worker/PushSubscription.php:96 msgid "Notification from Friendica" msgstr "Értesítés a Friendicától" -#: src/Worker/PushSubscription.php:111 +#: src/Worker/PushSubscription.php:97 msgid "Empty Post" msgstr "Üres bejegyzés" -#: view/theme/duepuntozero/config.php:68 +#: view/theme/duepuntozero/config.php:56 msgid "default" msgstr "alapértelmezett" -#: view/theme/duepuntozero/config.php:69 +#: view/theme/duepuntozero/config.php:57 msgid "greenzero" msgstr "zöld nulla" -#: view/theme/duepuntozero/config.php:70 +#: view/theme/duepuntozero/config.php:58 msgid "purplezero" msgstr "lila nulla" -#: view/theme/duepuntozero/config.php:71 +#: view/theme/duepuntozero/config.php:59 msgid "easterbunny" msgstr "húsvéti nyúl" -#: view/theme/duepuntozero/config.php:72 +#: view/theme/duepuntozero/config.php:60 msgid "darkzero" msgstr "sötét nulla" -#: view/theme/duepuntozero/config.php:73 +#: view/theme/duepuntozero/config.php:61 msgid "comix" msgstr "comix" -#: view/theme/duepuntozero/config.php:74 +#: view/theme/duepuntozero/config.php:62 msgid "slackr" msgstr "slackr" -#: view/theme/duepuntozero/config.php:87 +#: view/theme/duepuntozero/config.php:75 msgid "Variations" msgstr "Variációk" -#: view/theme/frio/config.php:146 +#: view/theme/frio/config.php:134 msgid "Note" msgstr "Jegyzet" -#: view/theme/frio/config.php:146 +#: view/theme/frio/config.php:134 msgid "Check image permissions if all users are allowed to see the image" msgstr "Ellenőrizze a kép jogosultságait, hogy minden felhasználó képes-e megtekinteni a képet." -#: view/theme/frio/config.php:152 +#: view/theme/frio/config.php:140 msgid "Appearance" msgstr "Megjelenés" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Accent color" msgstr "Kiemelőszín" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Blue" msgstr "Kék" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Red" msgstr "Piros" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Purple" msgstr "Lila" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Green" msgstr "Zöld" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Pink" msgstr "Rózsaszín" -#: view/theme/frio/config.php:154 +#: view/theme/frio/config.php:142 msgid "Copy or paste schemestring" msgstr "Sémakarakterlánc másolása vagy beillesztése" -#: view/theme/frio/config.php:154 +#: view/theme/frio/config.php:142 msgid "" "You can copy this string to share your theme with others. Pasting here " "applies the schemestring" msgstr "Lemásolhatja ezt a karakterláncot, hogy megossza a témáját másokkal. Ide beillesztve alkalmazza a sémakarakterláncot" -#: view/theme/frio/config.php:155 +#: view/theme/frio/config.php:143 msgid "Navigation bar background color" msgstr "Navigációs sáv háttérszíne" -#: view/theme/frio/config.php:156 +#: view/theme/frio/config.php:144 msgid "Navigation bar icon color " msgstr "Navigációs sáv ikonszíne " -#: view/theme/frio/config.php:157 +#: view/theme/frio/config.php:145 msgid "Link color" msgstr "Hivatkozás színe" -#: view/theme/frio/config.php:158 +#: view/theme/frio/config.php:146 msgid "Set the background color" msgstr "Háttérszín beállítása" -#: view/theme/frio/config.php:159 +#: view/theme/frio/config.php:147 msgid "Content background opacity" msgstr "Tartalom hátterének átlátszatlansága" -#: view/theme/frio/config.php:160 +#: view/theme/frio/config.php:148 msgid "Set the background image" msgstr "A háttérkép beállítása" -#: view/theme/frio/config.php:161 +#: view/theme/frio/config.php:149 msgid "Background image style" msgstr "Háttérkép stílusa" -#: view/theme/frio/config.php:164 +#: view/theme/frio/config.php:152 msgid "Always open Compose page" msgstr "Mindig az írás oldal megnyitása" -#: view/theme/frio/config.php:164 +#: view/theme/frio/config.php:152 msgid "" "The New Post button always open the Compose page " "instead of the modal form. When this is disabled, the Compose page can be " "accessed with a middle click on the link or from the modal." msgstr "Az új bejegyzés gomb mindig az írás oldalt nyitja meg a modális űrlap helyett. Ha ez le van tiltva, akkor az írás oldal a hivatkozásra való középső kattintással vagy a modális űrlapról érhető el." -#: view/theme/frio/config.php:168 +#: view/theme/frio/config.php:156 msgid "Login page background image" msgstr "Bejelentkezési oldal háttérképe" -#: view/theme/frio/config.php:172 +#: view/theme/frio/config.php:160 msgid "Login page background color" msgstr "Bejelentkezési oldal háttérszíne" -#: view/theme/frio/config.php:172 +#: view/theme/frio/config.php:160 msgid "Leave background image and color empty for theme defaults" msgstr "Hagyja üresen a háttérképet és színt a téma alapértelmezettjéhez" -#: view/theme/frio/php/Image.php:39 +#: view/theme/frio/php/Image.php:27 msgid "Top Banner" msgstr "Felső reklámcsík" -#: view/theme/frio/php/Image.php:39 +#: view/theme/frio/php/Image.php:27 msgid "" "Resize image to the width of the screen and show background color below on " "long pages." msgstr "Kép átméretezése a képernyő szélességéhez, és a lenti háttérszín megjelenítése hosszú oldalakon." -#: view/theme/frio/php/Image.php:40 +#: view/theme/frio/php/Image.php:28 msgid "Full screen" msgstr "Teljes képernyő" -#: view/theme/frio/php/Image.php:40 +#: view/theme/frio/php/Image.php:28 msgid "" "Resize image to fill entire screen, clipping either the right or the bottom." msgstr "Kép átméretezése a teljes képernyő kitöltéséhez, levágva a jobb szélét vagy az alját." -#: view/theme/frio/php/Image.php:41 +#: view/theme/frio/php/Image.php:29 msgid "Single row mosaic" msgstr "Egysoros mozaik" -#: view/theme/frio/php/Image.php:41 +#: view/theme/frio/php/Image.php:29 msgid "" "Resize image to repeat it on a single row, either vertical or horizontal." msgstr "Kép átméretezése az egy sorban való ismétléshez, függőlegesen vagy vízszintesen." -#: view/theme/frio/php/Image.php:42 +#: view/theme/frio/php/Image.php:30 msgid "Mosaic" msgstr "Mozaik" -#: view/theme/frio/php/Image.php:42 +#: view/theme/frio/php/Image.php:30 msgid "Repeat image to fill the screen." msgstr "Kép ismétlése a képernyő kitöltéséhez." -#: view/theme/frio/php/default.php:82 view/theme/frio/php/standard.php:40 +#: view/theme/frio/php/default.php:70 view/theme/frio/php/standard.php:28 msgid "Skip to main content" msgstr "Kihagyás a fő tartalomhoz" -#: view/theme/frio/php/default.php:153 view/theme/frio/php/standard.php:75 +#: view/theme/frio/php/default.php:141 view/theme/frio/php/standard.php:63 msgid "Back to top" msgstr "Vissza a tetejére" -#: view/theme/frio/php/scheme.php:105 +#: view/theme/frio/php/scheme.php:93 msgid "Light" msgstr "Világos" -#: view/theme/frio/php/scheme.php:106 +#: view/theme/frio/php/scheme.php:94 msgid "Dark" msgstr "Sötét" -#: view/theme/frio/php/scheme.php:107 +#: view/theme/frio/php/scheme.php:95 msgid "Black" msgstr "Fekete" -#: view/theme/frio/php/scheme.php:118 +#: view/theme/frio/php/scheme.php:106 msgid "Custom" msgstr "Egyéni" -#: view/theme/frio/theme.php:214 +#: view/theme/frio/theme.php:202 msgid "Guest" msgstr "Vendég" -#: view/theme/frio/theme.php:217 +#: view/theme/frio/theme.php:205 msgid "Visitor" msgstr "Látogató" -#: view/theme/quattro/config.php:89 +#: view/theme/quattro/config.php:77 msgid "Alignment" msgstr "Igazítás" -#: view/theme/quattro/config.php:89 +#: view/theme/quattro/config.php:77 msgid "Left" msgstr "Balra" -#: view/theme/quattro/config.php:89 +#: view/theme/quattro/config.php:77 msgid "Center" msgstr "Középre" -#: view/theme/quattro/config.php:90 +#: view/theme/quattro/config.php:78 msgid "Color scheme" msgstr "Színséma" -#: view/theme/quattro/config.php:91 +#: view/theme/quattro/config.php:79 msgid "Posts font size" msgstr "Bejegyzések betűmérete" -#: view/theme/quattro/config.php:92 +#: view/theme/quattro/config.php:80 msgid "Textareas font size" msgstr "Szövegdobozok betűmérete" -#: view/theme/vier/config.php:91 +#: view/theme/vier/config.php:79 msgid "Comma separated list of helper groups" msgstr "Segítő csoportok vesszővel elválasztott listája" -#: view/theme/vier/config.php:131 +#: view/theme/vier/config.php:119 msgid "don't show" msgstr "ne jelenítse meg" -#: view/theme/vier/config.php:131 +#: view/theme/vier/config.php:119 msgid "show" msgstr "megjelenítés" -#: view/theme/vier/config.php:137 +#: view/theme/vier/config.php:125 msgid "Set style" msgstr "Stílus beállítása" -#: view/theme/vier/config.php:138 +#: view/theme/vier/config.php:126 msgid "Community Pages" msgstr "Közösségi oldalak" -#: view/theme/vier/config.php:139 view/theme/vier/theme.php:148 +#: view/theme/vier/config.php:127 view/theme/vier/theme.php:136 msgid "Community Profiles" msgstr "Közösségi profilok" -#: view/theme/vier/config.php:140 +#: view/theme/vier/config.php:128 msgid "Help or @NewHere ?" msgstr "Súgó vagy @NewHere?" -#: view/theme/vier/config.php:141 view/theme/vier/theme.php:319 +#: view/theme/vier/config.php:129 view/theme/vier/theme.php:307 msgid "Connect Services" msgstr "Szolgáltatások hozzákapcsolása" -#: view/theme/vier/config.php:142 +#: view/theme/vier/config.php:130 msgid "Find Friends" msgstr "Ismerősök keresése" -#: view/theme/vier/config.php:143 view/theme/vier/theme.php:175 +#: view/theme/vier/config.php:131 view/theme/vier/theme.php:163 msgid "Last users" msgstr "Utolsó felhasználók" -#: view/theme/vier/theme.php:234 +#: view/theme/vier/theme.php:222 msgid "Quick Start" msgstr "Gyors kezdés" diff --git a/view/lang/hu/strings.php b/view/lang/hu/strings.php index 8760a1bfbf..33fa674d86 100644 --- a/view/lang/hu/strings.php +++ b/view/lang/hu/strings.php @@ -850,7 +850,6 @@ $a->strings['An author or name was not found.'] = 'Egy szerző vagy név nem tal $a->strings['No browser URL could be matched to this address.'] = 'Egyetlen böngésző URL-t sem sikerült illeszteni ehhez a címhez.'; $a->strings['Unable to match @-style Identity Address with a known protocol or email contact.'] = 'Nem lehet illeszteni @-stílusú személyazonosság-címet egy ismert protokollal vagy e-mailes partnerrel.'; $a->strings['Use mailto: in front of address to force email check.'] = 'Használja a mailto: előtagot a cím előtt az e-mail-ellenőrzés kényszerítéséhez.'; -$a->strings['The profile address specified belongs to a network which has been disabled on this site.'] = 'A megadott profilcím egy olyan hálózathoz tartozik, amely le lett tiltva ezen az oldalon.'; $a->strings['Limited profile. This person will be unable to receive direct/personal notifications from you.'] = 'Korlátozott profil. Ez a személy nem lesz képes közvetlen vagy személyes értesítéseket fogadni Öntől.'; $a->strings['Unable to retrieve contact information.'] = 'Nem lehet lekérni a partner információit.'; $a->strings['l F d, Y \@ g:i A \G\M\TP (e)'] = 'Y. F j., l, H:i \G\M\TP (e)'; @@ -878,7 +877,6 @@ $a->strings['%s\'s birthday'] = '%s születésnapja'; $a->strings['Happy Birthday %s'] = 'Boldog születésnapot, %s'; $a->strings['%s (%s - %s): %s'] = '%s (%s – %s): %s'; $a->strings['%s (%s): %s'] = '%s (%s): %s'; -$a->strings['Detected languages in this post:\n%s'] = 'A bejegyzésben felismert nyelvek:\n%s'; $a->strings['activity'] = 'tevékenység'; $a->strings['comment'] = 'hozzászólás'; $a->strings['post'] = 'bejegyzés'; @@ -1371,8 +1369,6 @@ $a->strings['The maximum number of posts per server on the global community page $a->strings['Enable Mail support'] = 'Levelezési támogatás engedélyezése'; $a->strings['Enable built-in mail support to poll IMAP folders and to reply via mail.'] = 'A beépített levelezési támogatás engedélyezése az IMAP-mappák lekérdezéséhez és az e-mailben történő válaszhoz.'; $a->strings['Mail support can\'t be enabled because the PHP IMAP module is not installed.'] = 'A levelezési támogatást nem lehet engedélyezni, mert a PHP IMAP-modulja nincs telepítve.'; -$a->strings['Enable OStatus support'] = 'OStatus támogatás engedélyezése'; -$a->strings['Enable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public.'] = 'A beépített OStatus (StatusNet, GNU Social stb.) kompatibilitás engedélyezése. Az OStatus hálózaton lévő összes kommunikáció nyilvános.'; $a->strings['Diaspora support can\'t be enabled because Friendica was installed into a sub directory.'] = 'A Diaspora támogatást nem lehet engedélyezni, mert a Friendica egy alkönyvtárba lett telepítve.'; $a->strings['Enable Diaspora support'] = 'Diaspora támogatás engedélyezése'; $a->strings['Enable built-in Diaspora network compatibility for communicating with diaspora servers.'] = 'A beépített Diaspora hálózati kompatibilitás engedélyezése a Diaspora kiszolgálókkal való kommunikációhoz.'; @@ -1418,7 +1414,6 @@ $a->strings['When the database cleanup is enabled, this defines the days after w $a->strings['Lifespan of unclaimed items'] = 'Nem igényelt elemek élettartama'; $a->strings['When the database cleanup is enabled, this defines the days after which unclaimed remote items (mostly content from the relay) will be deleted. Default value is 90 days. Defaults to the general lifespan value of remote items if set to 0.'] = 'Ha az adatbázis-tisztítás engedélyezve van, akkor ez határozza meg azon napok számát, amely után a nem igényelt távoli elemek (főleg a továbbításból származó tartalmak) törölve lesznek. Az alapértelmezett érték 90 nap. A távoli elemek általános élettartamértékének alapértelmezettje lesz, ha 0 értékre van állítva.'; $a->strings['Lifespan of raw conversation data'] = 'Nyers beszélgetési adatok élettartama'; -$a->strings['The conversation data is used for ActivityPub and OStatus, as well as for debug purposes. It should be safe to remove it after 14 days, default is 90 days.'] = 'A beszélgetési adatok az ActivityPub és az OStatus hálózatoknál, valamint hibakeresési célokhoz vannak használva. Biztonságosan el lehet távolítani azokat 14 nap után. Alapértelmezetten 90 nap.'; $a->strings['Maximum numbers of comments per post'] = 'Bejegyzésenkénti hozzászólások legnagyobb száma'; $a->strings['How much comments should be shown for each post? Default value is 100.'] = 'Mennyi hozzászólást kell megjeleníteni az egyes bejegyzéseknél? Az alapértelmezett érték 100.'; $a->strings['Maximum numbers of comments per post on the display page'] = 'Bejegyzésenkénti hozzászólások legnagyobb száma a megjelenítési oldalon'; @@ -1733,7 +1728,6 @@ $a->strings['Submit Request'] = 'Kérés elküldése'; $a->strings['You already added this contact.'] = 'Már hozzáadta ezt a partnert.'; $a->strings['The network type couldn\'t be detected. Contact can\'t be added.'] = 'A hálózat típusát nem sikerült felismerni. A partnert nem lehet hozzáadni.'; $a->strings['Diaspora support isn\'t enabled. Contact can\'t be added.'] = 'A Diaspora támogatása nincs engedélyezve. A partnert nem lehet hozzáadni.'; -$a->strings['OStatus support is disabled. Contact can\'t be added.'] = 'Az OStatus támogatása le van tiltva. A partnert nem lehet hozzáadni.'; $a->strings['Please answer the following:'] = 'Válaszoljon a következőre:'; $a->strings['Your Identity Address:'] = 'Az Ön személyazonosság-címe:'; $a->strings['Profile URL'] = 'Profil URL'; @@ -2269,10 +2263,6 @@ $a->strings['Incomplete request data'] = 'Befejezetlen kérésadat'; $a->strings['Please copy the following authentication code into your application and close this window: %s'] = 'Másolja be a következő hitelesítési kódot az alkalmazásába, és zárja be ezt az ablakot: %s'; $a->strings['Invalid data or unknown client'] = 'Érvénytelen adatok vagy ismeretlen ügyfél'; $a->strings['Unsupported or missing grant type'] = 'Nem támogatott vagy hiányzó felhatalmazástípus'; -$a->strings['Resubscribing to OStatus contacts'] = 'Újrafeliratkozás az OStatus partnerekre'; -$a->strings['Keep this window open until done.'] = 'Tartsa nyitva ezt az ablakot, amíg el nem készül.'; -$a->strings['✔ Done'] = '✔ Kész'; -$a->strings['No OStatus contacts to resubscribe to.'] = 'Nincsenek OStatus partnerek, hogy újra feliratkozzon rájuk.'; $a->strings['Subscribing to contacts'] = 'Feliratkozás a partnerekre'; $a->strings['No contact provided.'] = 'Nincs partner megadva.'; $a->strings['Couldn\'t fetch information for contact.'] = 'Nem sikerült lekérni a partner információit.'; @@ -2284,6 +2274,7 @@ $a->strings['Done'] = 'Kész'; $a->strings['success'] = 'sikeres'; $a->strings['failed'] = 'sikertelen'; $a->strings['ignored'] = 'mellőzve'; +$a->strings['Keep this window open until done.'] = 'Tartsa nyitva ezt az ablakot, amíg el nem készül.'; $a->strings['The Photo is not available.'] = 'A fénykép nem érhető el.'; $a->strings['The Photo with id %s is not available.'] = 'A(z) %s azonosítóval rendelkező fénykép nem érhető el.'; $a->strings['Invalid external resource with url %s.'] = 'Érvénytelen külső erőforrás a(z) %s URL-lel.'; @@ -2311,9 +2302,9 @@ $a->strings['Collection (%s)'] = 'Gyűjtemény (%s)'; $a->strings['Followers (%s)'] = 'Követők (%s)'; $a->strings['%d more'] = '%d további'; $a->strings['No contacts.'] = 'Nincsenek partnerek.'; -$a->strings['%s\'s timeline'] = '%s idővonala'; $a->strings['%s\'s posts'] = '%s bejegyzései'; $a->strings['%s\'s comments'] = '%s hozzászólásai'; +$a->strings['%s\'s timeline'] = '%s idővonala'; $a->strings['Image exceeds size limit of %s'] = 'A kép meghaladja a beállított %s méretkorlátot'; $a->strings['Image upload didn\'t complete, please try again'] = 'A kép feltöltése nem fejeződött be, próbálja újra'; $a->strings['Image file is missing'] = 'A képfájl hiányzik'; @@ -2587,7 +2578,6 @@ $a->strings['Failed to connect with email account using the settings provided.'] $a->strings['Diaspora (Socialhome, Hubzilla)'] = 'Diaspora (Socialhome, Hubzilla)'; $a->strings['Built-in support for %s connectivity is enabled'] = 'A(z) %s összekapcsolhatóságának beépített támogatása engedélyezve'; $a->strings['Built-in support for %s connectivity is disabled'] = 'A(z) %s összekapcsolhatóságának beépített támogatása letiltva'; -$a->strings['OStatus (GNU Social)'] = 'OStatus (GNU Social)'; $a->strings['Email access is disabled on this site.'] = 'Az e-mailes hozzáférés le van tiltva ezen az oldalon.'; $a->strings['None'] = 'Nincs'; $a->strings['Default (Mastodon will display the title and a link to the post)'] = 'Alapértelmezett (a Mastodon megjeleníti a címet és a bejegyzésre mutató hivatkozást)'; @@ -2615,7 +2605,6 @@ $a->strings['Article Mode'] = 'Cikk mód'; $a->strings['Controls how posts with titles are transmitted. Mastodon and its forks don\'t display the content of these posts if the post is created in the correct (default) way.'] = 'Azt vezérli, hogy a címekkel rendelkező bejegyzések hogyan kerülnek továbbításra. A Mastodon és elágaztatásai nem jelenítik meg ezeknek a bejegyzéseknek a tartalmát, ha a bejegyzést a megfelelő (alapértelmezett) módon hozták létre.'; $a->strings['Your legacy ActivityPub/GNU Social account'] = 'Az örökölt ActivityPub/GNU Social fiókja'; $a->strings['If you enter your old account name from an ActivityPub based system or your GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done.'] = 'Ha megadja itt a régi, egy ActivityPub alapú rendszerből származó fiókja nevét, illetve a GNU Social vagy Statusnet fiókja nevét (felhasználó@tartomány.tld formátumban), akkor a partnerei automatikusan hozzá lesznek adva. A mező ki lesz ürítve, ha elkészült.'; -$a->strings['Repair OStatus subscriptions'] = 'OStatus feliratkozások javítása'; $a->strings['Email/Mailbox Setup'] = 'E-mail vagy postafiók-beállítások'; $a->strings['If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox.'] = 'Ha e-mailes partnerekkel szeretne kommunikálni ezen szolgáltatás használatával (opcionális), akkor adja meg, hogy hogyan kell kapcsolódni a postafiókjához.'; $a->strings['Last successful email check:'] = 'Legutóbbi sikeres e-mail-ellenőrzés:'; @@ -2939,7 +2928,6 @@ $a->strings['%s commented on %s\'s post'] = '%s hozzászólt %s bejegyzéséhez' $a->strings['%s created a new post'] = '%s létrehozott egy új bejegyzést'; $a->strings['Friend Suggestion'] = 'Ismerősajánlás'; $a->strings['Friend/Connect Request'] = 'Ismerős vagy kapcsolódási kérés'; -$a->strings['New Follower'] = 'Új követő'; $a->strings['%1$s wants to follow you'] = '%1$s követni szeretné Önt'; $a->strings['%1$s has started following you'] = '%1$s elkezdte követni Önt'; $a->strings['%1$s liked your comment on %2$s'] = '%1$s kedvelte az Ön hozzászólását ehhez: %2$s'; @@ -3094,10 +3082,6 @@ $a->strings['Reacted with %s by: %s'] = 'Reagált ezzel: %s: %s'; $a->strings['Quote shared by: %s'] = 'Idézetten osztott meg: %s'; $a->strings['Chat'] = 'Csevegés'; $a->strings['(no subject)'] = '(nincs tárgy)'; -$a->strings['%s is now following %s.'] = '%s mostantól követi %s partnert.'; -$a->strings['following'] = 'követés'; -$a->strings['%s stopped following %s.'] = '%s leállította %s követését.'; -$a->strings['stopped following'] = 'követés leállítva'; $a->strings['The folder %s must be writable by webserver.'] = 'A „%s” mappának írhatónak kell lennie a webkiszolgáló által.'; $a->strings['Login failed.'] = 'Bejelentkezés sikertelen.'; $a->strings['Login failed. Please check your credentials.'] = 'Bejelentkezés sikertelen. Ellenőrizze a hitelesítési adatait.'; diff --git a/view/lang/is/messages.po b/view/lang/is/messages.po index 13f6ef30f0..0b3167751b 100644 --- a/view/lang/is/messages.po +++ b/view/lang/is/messages.po @@ -1,8 +1,7 @@ # FRIENDICA Distributed Social Network -# SPDX-FileCopyrightText: Copyright (C) 2010-2024, the Friendica project -# -# SPDX-License-Identifier: AGPL-3.0-or-later -# +# Copyright (C) 2010-2024, the Friendica project +# This file is distributed under the same license as the Friendica package. +# # Translators: # 33b3403388a6619423bbfe91dc9e4663_ed82b2f, 2012 # 33b3403388a6619423bbfe91dc9e4663_ed82b2f, 2012 @@ -17,7 +16,7 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-15 12:16+0000\n" +"POT-Creation-Date: 2024-10-07 20:46+0000\n" "PO-Revision-Date: 2011-05-05 10:19+0000\n" "Last-Translator: Sveinn í Felliupload_max_filesize
is set to %s (%s byte)"
msgstr ""
-#: src/Module/Admin/Site.php:497
+#: src/Module/Admin/Site.php:489
msgid "Maximum image length"
msgstr ""
-#: src/Module/Admin/Site.php:497
+#: src/Module/Admin/Site.php:489
msgid ""
"Maximum length in pixels of the longest side of uploaded images. Default is "
"-1, which means no limits."
msgstr ""
-#: src/Module/Admin/Site.php:498
+#: src/Module/Admin/Site.php:490
msgid "JPEG image quality"
msgstr "JPEG myndgæði"
-#: src/Module/Admin/Site.php:498
+#: src/Module/Admin/Site.php:490
msgid ""
"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
"100, which is full quality."
msgstr ""
-#: src/Module/Admin/Site.php:500
+#: src/Module/Admin/Site.php:491
+msgid "Maximum media file size"
+msgstr ""
+
+#: src/Module/Admin/Site.php:491
+#, php-format
+msgid ""
+"Maximum size in bytes of uploaded media files. Default is 0, which means no limits. You can put k, m, or g behind the desired value for KiB, MiB, GiB, respectively.\n"
+"\t\t\t\t\t\t\t\t\t\t\t\t\tThe value of upload_max_filesize
in your PHP.ini
needs be set to at least the desired limit.\n"
+"\t\t\t\t\t\t\t\t\t\t\t\t\tCurrently upload_max_filesize
is set to %s (%s byte)"
+msgstr ""
+
+#: src/Module/Admin/Site.php:496
msgid "Register policy"
msgstr "Stefna varðandi nýskráningar"
-#: src/Module/Admin/Site.php:501
+#: src/Module/Admin/Site.php:497
msgid "Maximum Users"
msgstr ""
-#: src/Module/Admin/Site.php:501
+#: src/Module/Admin/Site.php:497
msgid ""
"If defined, the register policy is automatically closed when the given "
"number of users is reached and reopens the registry when the number drops "
@@ -4734,167 +4751,167 @@ msgid ""
"not when the policy is set to approval."
msgstr ""
-#: src/Module/Admin/Site.php:502
+#: src/Module/Admin/Site.php:498
msgid "Maximum Daily Registrations"
msgstr ""
-#: src/Module/Admin/Site.php:502
+#: src/Module/Admin/Site.php:498
msgid ""
"If registration is permitted above, this sets the maximum number of new user"
" registrations to accept per day. If register is set to closed, this "
"setting has no effect."
msgstr ""
-#: src/Module/Admin/Site.php:503
+#: src/Module/Admin/Site.php:499
msgid "Register text"
msgstr "Texti við nýskráningu"
-#: src/Module/Admin/Site.php:503
+#: src/Module/Admin/Site.php:499
msgid ""
"Will be displayed prominently on the registration page. You can use BBCode "
"here."
msgstr ""
-#: src/Module/Admin/Site.php:504
+#: src/Module/Admin/Site.php:500
msgid "Forbidden Nicknames"
msgstr ""
-#: src/Module/Admin/Site.php:504
+#: src/Module/Admin/Site.php:500
msgid ""
"Comma separated list of nicknames that are forbidden from registration. "
"Preset is a list of role names according RFC 2142."
msgstr ""
-#: src/Module/Admin/Site.php:505
+#: src/Module/Admin/Site.php:501
msgid "Accounts abandoned after x days"
msgstr "Yfirgefnir notendur eftir x daga"
-#: src/Module/Admin/Site.php:505
+#: src/Module/Admin/Site.php:501
msgid ""
"Will not waste system resources polling external sites for abandonded "
"accounts. Enter 0 for no time limit."
msgstr "Hættir að eyða afli í að sækja færslur á ytri vefi fyrir yfirgefna notendur. 0 þýðir notendur merkjast ekki yfirgefnir."
-#: src/Module/Admin/Site.php:506
+#: src/Module/Admin/Site.php:502
msgid "Allowed friend domains"
msgstr "Leyfð lén vina"
-#: src/Module/Admin/Site.php:506
+#: src/Module/Admin/Site.php:502
msgid ""
"Comma separated list of domains which are allowed to establish friendships "
"with this site. Wildcards are accepted. Empty to allow any domains"
msgstr ""
-#: src/Module/Admin/Site.php:507
+#: src/Module/Admin/Site.php:503
msgid "Allowed email domains"
msgstr "Leyfð tölvupóstfangalén"
-#: src/Module/Admin/Site.php:507
+#: src/Module/Admin/Site.php:503
msgid ""
"Comma separated list of domains which are allowed in email addresses for "
"registrations to this site. Wildcards are accepted. Empty to allow any "
"domains"
msgstr ""
-#: src/Module/Admin/Site.php:508
+#: src/Module/Admin/Site.php:504
msgid "Disallowed email domains"
msgstr ""
-#: src/Module/Admin/Site.php:508
+#: src/Module/Admin/Site.php:504
msgid ""
"Comma separated list of domains which are rejected as email addresses for "
"registrations to this site. Wildcards are accepted."
msgstr ""
-#: src/Module/Admin/Site.php:509
+#: src/Module/Admin/Site.php:505
msgid "No OEmbed rich content"
msgstr ""
-#: src/Module/Admin/Site.php:509
+#: src/Module/Admin/Site.php:505
msgid ""
"Don't show the rich content (e.g. embedded PDF), except from the domains "
"listed below."
msgstr ""
-#: src/Module/Admin/Site.php:510
+#: src/Module/Admin/Site.php:506
msgid "Trusted third-party domains"
msgstr ""
-#: src/Module/Admin/Site.php:510
+#: src/Module/Admin/Site.php:506
msgid ""
"Comma separated list of domains from which content is allowed to be embedded"
" in posts like with OEmbed. All sub-domains of the listed domains are "
"allowed as well."
msgstr ""
-#: src/Module/Admin/Site.php:511
+#: src/Module/Admin/Site.php:507
msgid "Block public"
msgstr "Loka á opinberar færslur"
-#: src/Module/Admin/Site.php:511
+#: src/Module/Admin/Site.php:507
msgid ""
"Check to block public access to all otherwise public personal pages on this "
"site unless you are currently logged in."
msgstr ""
-#: src/Module/Admin/Site.php:512
+#: src/Module/Admin/Site.php:508
msgid "Force publish"
msgstr "Skylda að vera í tengiliðalista"
-#: src/Module/Admin/Site.php:512
+#: src/Module/Admin/Site.php:508
msgid ""
"Check to force all profiles on this site to be listed in the site directory."
msgstr ""
-#: src/Module/Admin/Site.php:512
+#: src/Module/Admin/Site.php:508
msgid "Enabling this may violate privacy laws like the GDPR"
msgstr ""
-#: src/Module/Admin/Site.php:513
+#: src/Module/Admin/Site.php:509
msgid "Global directory URL"
msgstr ""
-#: src/Module/Admin/Site.php:513
+#: src/Module/Admin/Site.php:509
msgid ""
"URL to the global directory. If this is not set, the global directory is "
"completely unavailable to the application."
msgstr ""
-#: src/Module/Admin/Site.php:514
+#: src/Module/Admin/Site.php:510
msgid "Private posts by default for new users"
msgstr ""
-#: src/Module/Admin/Site.php:514
+#: src/Module/Admin/Site.php:510
msgid ""
"Set default post permissions for all new members to the default privacy "
"circle rather than public."
msgstr ""
-#: src/Module/Admin/Site.php:515
+#: src/Module/Admin/Site.php:511
msgid "Don't include post content in email notifications"
msgstr ""
-#: src/Module/Admin/Site.php:515
+#: src/Module/Admin/Site.php:511
msgid ""
"Don't include the content of a post/comment/private message/etc. in the "
"email notifications that are sent out from this site, as a privacy measure."
msgstr ""
-#: src/Module/Admin/Site.php:516
+#: src/Module/Admin/Site.php:512
msgid "Disallow public access to addons listed in the apps menu."
msgstr "Hindra opið aðgengi að viðbótum í forritavalmyndinni."
-#: src/Module/Admin/Site.php:516
+#: src/Module/Admin/Site.php:512
msgid ""
"Checking this box will restrict addons listed in the apps menu to members "
"only."
msgstr "Ef hakað er í þetta verður aðgengi að viðbótum í forritavalmyndinni takmarkað við meðlimi."
-#: src/Module/Admin/Site.php:517
+#: src/Module/Admin/Site.php:513
msgid "Don't embed private images in posts"
msgstr ""
-#: src/Module/Admin/Site.php:517
+#: src/Module/Admin/Site.php:513
msgid ""
"Don't replace locally-hosted private photos in posts with an embedded copy "
"of the image. This means that contacts who receive posts containing private "
@@ -4902,11 +4919,11 @@ msgid ""
"while."
msgstr ""
-#: src/Module/Admin/Site.php:518
+#: src/Module/Admin/Site.php:514
msgid "Explicit Content"
msgstr ""
-#: src/Module/Admin/Site.php:518
+#: src/Module/Admin/Site.php:514
msgid ""
"Set this to announce that your node is used mostly for explicit content that"
" might not be suited for minors. This information will be published in the "
@@ -4915,329 +4932,319 @@ msgid ""
"will be shown at the user registration page."
msgstr ""
-#: src/Module/Admin/Site.php:519
+#: src/Module/Admin/Site.php:515
msgid "Only local search"
msgstr ""
-#: src/Module/Admin/Site.php:519
+#: src/Module/Admin/Site.php:515
msgid ""
"Blocks search for users who are not logged in to prevent crawlers from "
"blocking your system."
msgstr ""
-#: src/Module/Admin/Site.php:520
+#: src/Module/Admin/Site.php:516
msgid "Blocked tags for trending tags"
msgstr ""
-#: src/Module/Admin/Site.php:520
+#: src/Module/Admin/Site.php:516
msgid ""
"Comma separated list of hashtags that shouldn't be displayed in the trending"
" tags."
msgstr ""
-#: src/Module/Admin/Site.php:521
+#: src/Module/Admin/Site.php:517
msgid "Cache contact avatars"
msgstr ""
-#: src/Module/Admin/Site.php:521
+#: src/Module/Admin/Site.php:517
msgid ""
"Locally store the avatar pictures of the contacts. This uses a lot of "
"storage space but it increases the performance."
msgstr ""
-#: src/Module/Admin/Site.php:522
+#: src/Module/Admin/Site.php:518
msgid "Allow Users to set remote_self"
msgstr ""
-#: src/Module/Admin/Site.php:522
+#: src/Module/Admin/Site.php:518
msgid ""
"With checking this, every user is allowed to mark every contact as a "
"remote_self in the repair contact dialog. Setting this flag on a contact "
"causes mirroring every posting of that contact in the users stream."
msgstr ""
-#: src/Module/Admin/Site.php:523
+#: src/Module/Admin/Site.php:519
msgid "Allow Users to set up relay channels"
msgstr ""
-#: src/Module/Admin/Site.php:523
+#: src/Module/Admin/Site.php:519
msgid ""
"If enabled, it is possible to create relay users that are used to reshare "
"content based on user defined channels."
msgstr ""
-#: src/Module/Admin/Site.php:524
+#: src/Module/Admin/Site.php:520
msgid "Adjust the feed poll frequency"
msgstr ""
-#: src/Module/Admin/Site.php:524
+#: src/Module/Admin/Site.php:520
msgid "Automatically detect and set the best feed poll frequency."
msgstr ""
-#: src/Module/Admin/Site.php:525
+#: src/Module/Admin/Site.php:521
msgid "Minimum poll interval"
msgstr ""
-#: src/Module/Admin/Site.php:525
+#: src/Module/Admin/Site.php:521
msgid ""
"Minimal distance in minutes between two polls for mail and feed contacts. "
"Reasonable values are between 1 and 59."
msgstr ""
-#: src/Module/Admin/Site.php:526
+#: src/Module/Admin/Site.php:522
msgid "Enable multiple registrations"
msgstr ""
-#: src/Module/Admin/Site.php:526
+#: src/Module/Admin/Site.php:522
msgid "Enable users to register additional accounts for use as pages."
msgstr ""
-#: src/Module/Admin/Site.php:527
+#: src/Module/Admin/Site.php:523
msgid "Enable OpenID"
msgstr ""
-#: src/Module/Admin/Site.php:527
+#: src/Module/Admin/Site.php:523
msgid "Enable OpenID support for registration and logins."
msgstr ""
-#: src/Module/Admin/Site.php:528
+#: src/Module/Admin/Site.php:524
msgid "Enable full name check"
msgstr ""
-#: src/Module/Admin/Site.php:528
+#: src/Module/Admin/Site.php:524
msgid ""
"Prevents users from registering with a display name with fewer than two "
"parts separated by spaces."
msgstr ""
-#: src/Module/Admin/Site.php:529
+#: src/Module/Admin/Site.php:525
msgid "Email administrators on new registration"
msgstr ""
-#: src/Module/Admin/Site.php:529
+#: src/Module/Admin/Site.php:525
msgid ""
"If enabled and the system is set to an open registration, an email for each "
"new registration is sent to the administrators."
msgstr ""
-#: src/Module/Admin/Site.php:530
+#: src/Module/Admin/Site.php:526
msgid "Community pages for visitors"
msgstr ""
-#: src/Module/Admin/Site.php:530
+#: src/Module/Admin/Site.php:526
msgid ""
"Which community pages should be available for visitors. Local users always "
"see both pages."
msgstr ""
-#: src/Module/Admin/Site.php:531
+#: src/Module/Admin/Site.php:527
msgid "Posts per user on community page"
msgstr ""
-#: src/Module/Admin/Site.php:531
+#: src/Module/Admin/Site.php:527
msgid ""
"The maximum number of posts per user on the local community page. This is "
"useful, when a single user floods the local community page."
msgstr ""
-#: src/Module/Admin/Site.php:532
+#: src/Module/Admin/Site.php:528
msgid "Posts per server on community page"
msgstr ""
-#: src/Module/Admin/Site.php:532
+#: src/Module/Admin/Site.php:528
msgid ""
"The maximum number of posts per server on the global community page. This is"
" useful, when posts from a single server flood the global community page."
msgstr ""
-#: src/Module/Admin/Site.php:534
+#: src/Module/Admin/Site.php:530
msgid "Enable Mail support"
msgstr ""
-#: src/Module/Admin/Site.php:534
+#: src/Module/Admin/Site.php:530
msgid ""
"Enable built-in mail support to poll IMAP folders and to reply via mail."
msgstr ""
-#: src/Module/Admin/Site.php:535
+#: src/Module/Admin/Site.php:531
msgid ""
"Mail support can't be enabled because the PHP IMAP module is not installed."
msgstr ""
-#: src/Module/Admin/Site.php:536
-msgid "Enable OStatus support"
-msgstr ""
-
-#: src/Module/Admin/Site.php:536
-msgid ""
-"Enable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
-"communications in OStatus are public."
-msgstr ""
-
-#: src/Module/Admin/Site.php:538
+#: src/Module/Admin/Site.php:533
msgid ""
"Diaspora support can't be enabled because Friendica was installed into a sub"
" directory."
msgstr ""
-#: src/Module/Admin/Site.php:539
+#: src/Module/Admin/Site.php:534
msgid "Enable Diaspora support"
msgstr "Leyfa Diaspora tengingar"
-#: src/Module/Admin/Site.php:539
+#: src/Module/Admin/Site.php:534
msgid ""
"Enable built-in Diaspora network compatibility for communicating with "
"diaspora servers."
msgstr ""
-#: src/Module/Admin/Site.php:540
+#: src/Module/Admin/Site.php:535
msgid "Verify SSL"
msgstr "Sannreyna SSL"
-#: src/Module/Admin/Site.php:540
+#: src/Module/Admin/Site.php:535
msgid ""
"If you wish, you can turn on strict certificate checking. This will mean you"
" cannot connect (at all) to self-signed SSL sites."
msgstr ""
-#: src/Module/Admin/Site.php:541
+#: src/Module/Admin/Site.php:536
msgid "Proxy user"
msgstr "Proxy notandi"
-#: src/Module/Admin/Site.php:541
+#: src/Module/Admin/Site.php:536
msgid "User name for the proxy server."
msgstr ""
-#: src/Module/Admin/Site.php:542
+#: src/Module/Admin/Site.php:537
msgid "Proxy URL"
msgstr "Proxy slóð"
-#: src/Module/Admin/Site.php:542
+#: src/Module/Admin/Site.php:537
msgid ""
"If you want to use a proxy server that Friendica should use to connect to "
"the network, put the URL of the proxy here."
msgstr ""
-#: src/Module/Admin/Site.php:543
+#: src/Module/Admin/Site.php:538
msgid "Network timeout"
msgstr "Net tími útrunninn"
-#: src/Module/Admin/Site.php:543
+#: src/Module/Admin/Site.php:538
msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
msgstr ""
-#: src/Module/Admin/Site.php:544
+#: src/Module/Admin/Site.php:539
msgid "Maximum Load Average"
msgstr "Mesta meðaltals álag"
-#: src/Module/Admin/Site.php:544
+#: src/Module/Admin/Site.php:539
#, php-format
msgid ""
"Maximum system load before delivery and poll processes are deferred - "
"default %d."
msgstr ""
-#: src/Module/Admin/Site.php:545
+#: src/Module/Admin/Site.php:540
msgid "Minimal Memory"
msgstr ""
-#: src/Module/Admin/Site.php:545
+#: src/Module/Admin/Site.php:540
msgid ""
"Minimal free memory in MB for the worker. Needs access to /proc/meminfo - "
"default 0 (deactivated)."
msgstr ""
-#: src/Module/Admin/Site.php:546
+#: src/Module/Admin/Site.php:541
msgid "Periodically optimize tables"
msgstr ""
-#: src/Module/Admin/Site.php:546
+#: src/Module/Admin/Site.php:541
msgid "Periodically optimize tables like the cache and the workerqueue"
msgstr ""
-#: src/Module/Admin/Site.php:548
+#: src/Module/Admin/Site.php:543
msgid "Discover followers/followings from contacts"
msgstr ""
-#: src/Module/Admin/Site.php:548
+#: src/Module/Admin/Site.php:543
msgid ""
"If enabled, contacts are checked for their followers and following contacts."
msgstr ""
-#: src/Module/Admin/Site.php:549
+#: src/Module/Admin/Site.php:544
msgid "None - deactivated"
msgstr ""
-#: src/Module/Admin/Site.php:550
+#: src/Module/Admin/Site.php:545
msgid ""
"Local contacts - contacts of our local contacts are discovered for their "
"followers/followings."
msgstr ""
-#: src/Module/Admin/Site.php:551
+#: src/Module/Admin/Site.php:546
msgid ""
"Interactors - contacts of our local contacts and contacts who interacted on "
"locally visible postings are discovered for their followers/followings."
msgstr ""
-#: src/Module/Admin/Site.php:553
+#: src/Module/Admin/Site.php:548
msgid "Only update contacts/servers with local data"
msgstr ""
-#: src/Module/Admin/Site.php:553
+#: src/Module/Admin/Site.php:548
msgid ""
"If enabled, the system will only look for changes in contacts and servers "
"that engaged on this system by either being in a contact list of a user or "
"when posts or comments exists from the contact on this system."
msgstr ""
-#: src/Module/Admin/Site.php:554
+#: src/Module/Admin/Site.php:549
msgid "Synchronize the contacts with the directory server"
msgstr ""
-#: src/Module/Admin/Site.php:554
+#: src/Module/Admin/Site.php:549
msgid ""
"if enabled, the system will check periodically for new contacts on the "
"defined directory server."
msgstr ""
-#: src/Module/Admin/Site.php:556
+#: src/Module/Admin/Site.php:551
msgid "Discover contacts from other servers"
msgstr ""
-#: src/Module/Admin/Site.php:556
+#: src/Module/Admin/Site.php:551
msgid ""
"Periodically query other servers for contacts and servers that they know of."
" The system queries Friendica, Mastodon and Hubzilla servers. Keep it "
"deactivated on small machines to decrease the database size and load."
msgstr ""
-#: src/Module/Admin/Site.php:557
+#: src/Module/Admin/Site.php:552
msgid "Days between requery"
msgstr ""
-#: src/Module/Admin/Site.php:557
+#: src/Module/Admin/Site.php:552
msgid ""
"Number of days after which a server is requeried for their contacts and "
"servers it knows of. This is only used when the discovery is activated."
msgstr ""
-#: src/Module/Admin/Site.php:558
+#: src/Module/Admin/Site.php:553
msgid "Search the local directory"
msgstr ""
-#: src/Module/Admin/Site.php:558
+#: src/Module/Admin/Site.php:553
msgid ""
"Search the local directory instead of the global directory. When searching "
"locally, every search will be executed on the global directory in the "
"background. This improves the search results when the search is repeated."
msgstr ""
-#: src/Module/Admin/Site.php:560
+#: src/Module/Admin/Site.php:555
msgid "Publish server information"
msgstr ""
-#: src/Module/Admin/Site.php:560
+#: src/Module/Admin/Site.php:555
msgid ""
"If enabled, general server and usage data will be published. The data "
"contains the name and version of the server, number of users with public "
@@ -5245,50 +5252,50 @@ msgid ""
" href=\"http://the-federation.info/\">the-federation.info for details."
msgstr ""
-#: src/Module/Admin/Site.php:562
+#: src/Module/Admin/Site.php:557
msgid "Check upstream version"
msgstr ""
-#: src/Module/Admin/Site.php:562
+#: src/Module/Admin/Site.php:557
msgid ""
"Enables checking for new Friendica versions at github. If there is a new "
"version, you will be informed in the admin panel overview."
msgstr ""
-#: src/Module/Admin/Site.php:563
+#: src/Module/Admin/Site.php:558
msgid "Suppress Tags"
msgstr ""
-#: src/Module/Admin/Site.php:563
+#: src/Module/Admin/Site.php:558
msgid "Suppress showing a list of hashtags at the end of the posting."
msgstr ""
-#: src/Module/Admin/Site.php:564
+#: src/Module/Admin/Site.php:559
msgid "Clean database"
msgstr ""
-#: src/Module/Admin/Site.php:564
+#: src/Module/Admin/Site.php:559
msgid ""
"Remove old remote items, orphaned database records and old content from some"
" other helper tables."
msgstr ""
-#: src/Module/Admin/Site.php:565
+#: src/Module/Admin/Site.php:560
msgid "Lifespan of remote items"
msgstr "Líftími fjartengdra atriða"
-#: src/Module/Admin/Site.php:565
+#: src/Module/Admin/Site.php:560
msgid ""
"When the database cleanup is enabled, this defines the days after which "
"remote items will be deleted. Own items, and marked or filed items are "
"always kept. 0 disables this behaviour."
msgstr ""
-#: src/Module/Admin/Site.php:566
+#: src/Module/Admin/Site.php:561
msgid "Lifespan of unclaimed items"
msgstr ""
-#: src/Module/Admin/Site.php:566
+#: src/Module/Admin/Site.php:561
msgid ""
"When the database cleanup is enabled, this defines the days after which "
"unclaimed remote items (mostly content from the relay) will be deleted. "
@@ -5296,175 +5303,184 @@ msgid ""
"items if set to 0."
msgstr ""
-#: src/Module/Admin/Site.php:567
+#: src/Module/Admin/Site.php:562
msgid "Lifespan of raw conversation data"
msgstr ""
-#: src/Module/Admin/Site.php:567
+#: src/Module/Admin/Site.php:562
msgid ""
-"The conversation data is used for ActivityPub and OStatus, as well as for "
-"debug purposes. It should be safe to remove it after 14 days, default is 90 "
-"days."
+"The conversation data is used for ActivityPub, as well as for debug "
+"purposes. It should be safe to remove it after 14 days, default is 90 days."
msgstr ""
-#: src/Module/Admin/Site.php:568
+#: src/Module/Admin/Site.php:563
msgid "Maximum numbers of comments per post"
msgstr ""
-#: src/Module/Admin/Site.php:568
+#: src/Module/Admin/Site.php:563
msgid "How much comments should be shown for each post? Default value is 100."
msgstr ""
-#: src/Module/Admin/Site.php:569
+#: src/Module/Admin/Site.php:564
msgid "Maximum numbers of comments per post on the display page"
msgstr ""
-#: src/Module/Admin/Site.php:569
+#: src/Module/Admin/Site.php:564
msgid ""
"How many comments should be shown on the single view for each post? Default "
"value is 1000."
msgstr ""
-#: src/Module/Admin/Site.php:570
+#: src/Module/Admin/Site.php:565
msgid "Items per page"
msgstr ""
-#: src/Module/Admin/Site.php:570
+#: src/Module/Admin/Site.php:565
msgid ""
"Number of items per page in stream pages (network, community, "
"profile/contact statuses, search)."
msgstr ""
-#: src/Module/Admin/Site.php:571
+#: src/Module/Admin/Site.php:566
msgid "Items per page for mobile devices"
msgstr ""
-#: src/Module/Admin/Site.php:571
+#: src/Module/Admin/Site.php:566
msgid ""
"Number of items per page in stream pages (network, community, "
"profile/contact statuses, search) for mobile devices."
msgstr ""
-#: src/Module/Admin/Site.php:572
+#: src/Module/Admin/Site.php:567
msgid "Temp path"
msgstr ""
-#: src/Module/Admin/Site.php:572
+#: src/Module/Admin/Site.php:567
msgid ""
"If you have a restricted system where the webserver can't access the system "
"temp path, enter another path here."
msgstr ""
-#: src/Module/Admin/Site.php:573
+#: src/Module/Admin/Site.php:568
msgid "Only search in tags"
msgstr ""
-#: src/Module/Admin/Site.php:573
+#: src/Module/Admin/Site.php:568
msgid "On large systems the text search can slow down the system extremely."
msgstr ""
-#: src/Module/Admin/Site.php:574
+#: src/Module/Admin/Site.php:569
+msgid "Limited search scope"
+msgstr ""
+
+#: src/Module/Admin/Site.php:569
+msgid ""
+"If enabled, searches will only be performed in the data used for the "
+"channels and not in all posts."
+msgstr ""
+
+#: src/Module/Admin/Site.php:570
msgid "Maximum age of items in the search table"
msgstr ""
-#: src/Module/Admin/Site.php:574
+#: src/Module/Admin/Site.php:570
msgid ""
"Maximum age of items in the search table in days. Lower values will increase"
" the performance and reduce disk usage. 0 means no age restriction."
msgstr ""
-#: src/Module/Admin/Site.php:575
+#: src/Module/Admin/Site.php:571
msgid "Generate counts per contact circle when calculating network count"
msgstr ""
-#: src/Module/Admin/Site.php:575
+#: src/Module/Admin/Site.php:571
msgid ""
"On systems with users that heavily use contact circles the query can be very"
" expensive."
msgstr ""
-#: src/Module/Admin/Site.php:576
+#: src/Module/Admin/Site.php:572
msgid "Process \"view\" activities"
msgstr ""
-#: src/Module/Admin/Site.php:576
+#: src/Module/Admin/Site.php:572
msgid ""
"\"view\" activities are mostly geberated by Peertube systems. Per default "
"they are not processed for performance reasons. Only activate this option on"
" performant system."
msgstr ""
-#: src/Module/Admin/Site.php:577
+#: src/Module/Admin/Site.php:573
msgid "Days, after which a contact is archived"
msgstr ""
-#: src/Module/Admin/Site.php:577
+#: src/Module/Admin/Site.php:573
msgid ""
"Number of days that we try to deliver content or to update the contact data "
"before we archive a contact."
msgstr ""
-#: src/Module/Admin/Site.php:579
+#: src/Module/Admin/Site.php:575
msgid "Maximum number of parallel workers"
msgstr ""
-#: src/Module/Admin/Site.php:579
+#: src/Module/Admin/Site.php:575
#, php-format
msgid ""
"On shared hosters set this to %d. On larger systems, values of %d are great."
" Default value is %d."
msgstr ""
-#: src/Module/Admin/Site.php:580
+#: src/Module/Admin/Site.php:576
msgid "Maximum load for workers"
msgstr ""
-#: src/Module/Admin/Site.php:580
+#: src/Module/Admin/Site.php:576
msgid "Maximum load that causes a cooldown before each worker function call."
msgstr ""
-#: src/Module/Admin/Site.php:581
+#: src/Module/Admin/Site.php:577
msgid "Enable fastlane"
msgstr ""
-#: src/Module/Admin/Site.php:581
+#: src/Module/Admin/Site.php:577
msgid ""
"When enabed, the fastlane mechanism starts an additional worker if processes"
" with higher priority are blocked by processes of lower priority."
msgstr ""
-#: src/Module/Admin/Site.php:582
+#: src/Module/Admin/Site.php:578
msgid "Decoupled receiver"
msgstr ""
-#: src/Module/Admin/Site.php:582
+#: src/Module/Admin/Site.php:578
msgid ""
"Decouple incoming ActivityPub posts by processing them in the background via"
" a worker process. Only enable this on fast systems."
msgstr ""
-#: src/Module/Admin/Site.php:583
+#: src/Module/Admin/Site.php:579
msgid "Cron interval"
msgstr ""
-#: src/Module/Admin/Site.php:583
+#: src/Module/Admin/Site.php:579
msgid "Minimal period in minutes between two calls of the \"Cron\" worker job."
msgstr ""
-#: src/Module/Admin/Site.php:584
+#: src/Module/Admin/Site.php:580
msgid "Worker defer limit"
msgstr ""
-#: src/Module/Admin/Site.php:584
+#: src/Module/Admin/Site.php:580
msgid ""
"Per default the systems tries delivering for 15 times before dropping it."
msgstr ""
-#: src/Module/Admin/Site.php:585
+#: src/Module/Admin/Site.php:581
msgid "Worker fetch limit"
msgstr ""
-#: src/Module/Admin/Site.php:585
+#: src/Module/Admin/Site.php:581
msgid ""
"Number of worker tasks that are fetched in a single query. Higher values "
"should increase the performance, too high values will mostly likely decrease"
@@ -5472,214 +5488,214 @@ msgid ""
"system."
msgstr ""
-#: src/Module/Admin/Site.php:587
+#: src/Module/Admin/Site.php:583
msgid "Direct relay transfer"
msgstr ""
-#: src/Module/Admin/Site.php:587
+#: src/Module/Admin/Site.php:583
msgid ""
"Enables the direct transfer to other servers without using the relay servers"
msgstr ""
-#: src/Module/Admin/Site.php:588
+#: src/Module/Admin/Site.php:584
msgid "Relay scope"
msgstr ""
-#: src/Module/Admin/Site.php:588
+#: src/Module/Admin/Site.php:584
msgid ""
"Can be \"all\" or \"tags\". \"all\" means that every public post should be "
"received. \"tags\" means that only posts with selected tags should be "
"received."
msgstr ""
-#: src/Module/Admin/Site.php:588 src/Module/Contact/Profile.php:314
-#: src/Module/Settings/TwoFactor/Index.php:146
+#: src/Module/Admin/Site.php:584 src/Module/Contact/Profile.php:314
+#: src/Module/Settings/TwoFactor/Index.php:132
msgid "Disabled"
msgstr "Óvirkt"
-#: src/Module/Admin/Site.php:588
+#: src/Module/Admin/Site.php:584
msgid "all"
msgstr "allt"
-#: src/Module/Admin/Site.php:588
+#: src/Module/Admin/Site.php:584
msgid "tags"
msgstr "merki"
-#: src/Module/Admin/Site.php:589
+#: src/Module/Admin/Site.php:585
msgid "Server tags"
msgstr ""
-#: src/Module/Admin/Site.php:589
+#: src/Module/Admin/Site.php:585
msgid "Comma separated list of tags for the \"tags\" subscription."
msgstr ""
-#: src/Module/Admin/Site.php:590
+#: src/Module/Admin/Site.php:586
msgid "Deny Server tags"
msgstr ""
-#: src/Module/Admin/Site.php:590
+#: src/Module/Admin/Site.php:586
msgid "Comma separated list of tags that are rejected."
msgstr ""
-#: src/Module/Admin/Site.php:591
+#: src/Module/Admin/Site.php:587
msgid "Maximum amount of tags"
msgstr ""
-#: src/Module/Admin/Site.php:591
+#: src/Module/Admin/Site.php:587
msgid ""
"Maximum amount of tags in a post before it is rejected as spam. The post has"
" to contain at least one link. Posts from subscribed accounts will not be "
"rejected."
msgstr ""
-#: src/Module/Admin/Site.php:592
+#: src/Module/Admin/Site.php:588
msgid "Allow user tags"
msgstr ""
-#: src/Module/Admin/Site.php:592
+#: src/Module/Admin/Site.php:588
msgid ""
"If enabled, the tags from the saved searches will used for the \"tags\" "
"subscription in addition to the \"relay_server_tags\"."
msgstr ""
-#: src/Module/Admin/Site.php:593
+#: src/Module/Admin/Site.php:589
msgid "Deny undetected languages"
msgstr ""
-#: src/Module/Admin/Site.php:593
+#: src/Module/Admin/Site.php:589
msgid "If enabled, posts with undetected languages will be rejected."
msgstr ""
-#: src/Module/Admin/Site.php:594
+#: src/Module/Admin/Site.php:590
msgid "Language Quality"
msgstr ""
-#: src/Module/Admin/Site.php:594
+#: src/Module/Admin/Site.php:590
msgid "The minimum language quality that is required to accept the post."
msgstr ""
-#: src/Module/Admin/Site.php:595
+#: src/Module/Admin/Site.php:591
msgid "Number of languages for the language detection"
msgstr ""
-#: src/Module/Admin/Site.php:595
+#: src/Module/Admin/Site.php:591
msgid ""
"The system detects a list of languages per post. Only if the desired "
"languages are in the list, the message will be accepted. The higher the "
"number, the more posts will be falsely detected."
msgstr ""
-#: src/Module/Admin/Site.php:597
+#: src/Module/Admin/Site.php:593
msgid "Maximum age of channel"
msgstr ""
-#: src/Module/Admin/Site.php:597
+#: src/Module/Admin/Site.php:593
msgid ""
"This defines the maximum age in hours of items that should be displayed in "
"channels. This affects the channel performance."
msgstr ""
-#: src/Module/Admin/Site.php:598
+#: src/Module/Admin/Site.php:594
msgid "Maximum number of channel posts"
msgstr ""
-#: src/Module/Admin/Site.php:598
+#: src/Module/Admin/Site.php:594
msgid ""
"For performance reasons, the channels use a dedicated table to store "
"content. The higher the value the slower the channels."
msgstr ""
-#: src/Module/Admin/Site.php:599
+#: src/Module/Admin/Site.php:595
msgid "Interaction score days"
msgstr ""
-#: src/Module/Admin/Site.php:599
+#: src/Module/Admin/Site.php:595
msgid "Number of days that are used to calculate the interaction score."
msgstr ""
-#: src/Module/Admin/Site.php:600
+#: src/Module/Admin/Site.php:596
msgid "Maximum number of posts per author"
msgstr ""
-#: src/Module/Admin/Site.php:600
+#: src/Module/Admin/Site.php:596
msgid ""
"Maximum number of posts per page by author if the contact frequency is set "
"to \"Display only few posts\". If there are more posts, then the post with "
"the most interactions will be displayed."
msgstr ""
-#: src/Module/Admin/Site.php:601
+#: src/Module/Admin/Site.php:597
msgid "Sharer interaction days"
msgstr ""
-#: src/Module/Admin/Site.php:601
+#: src/Module/Admin/Site.php:597
msgid ""
"Number of days of the last interaction that are used to define which sharers"
" are used for the \"sharers of sharers\" channel."
msgstr ""
-#: src/Module/Admin/Site.php:604
+#: src/Module/Admin/Site.php:600
msgid "Start Relocation"
msgstr ""
-#: src/Module/Admin/Storage.php:46
+#: src/Module/Admin/Storage.php:32
#, php-format
msgid "Storage backend, %s is invalid."
msgstr ""
-#: src/Module/Admin/Storage.php:73
+#: src/Module/Admin/Storage.php:59
#, php-format
msgid "Storage backend %s error: %s"
msgstr ""
-#: src/Module/Admin/Storage.php:84 src/Module/Admin/Storage.php:87
+#: src/Module/Admin/Storage.php:70 src/Module/Admin/Storage.php:73
msgid "Invalid storage backend setting value."
msgstr ""
-#: src/Module/Admin/Storage.php:139
+#: src/Module/Admin/Storage.php:125
msgid "Current Storage Backend"
msgstr ""
-#: src/Module/Admin/Storage.php:140
+#: src/Module/Admin/Storage.php:126
msgid "Storage Configuration"
msgstr ""
-#: src/Module/Admin/Storage.php:141 src/Module/BaseAdmin.php:91
+#: src/Module/Admin/Storage.php:127 src/Module/BaseAdmin.php:77
msgid "Storage"
msgstr ""
-#: src/Module/Admin/Storage.php:143
+#: src/Module/Admin/Storage.php:129
msgid "Save & Use storage backend"
msgstr ""
-#: src/Module/Admin/Storage.php:144
+#: src/Module/Admin/Storage.php:130
msgid "Use storage backend"
msgstr ""
-#: src/Module/Admin/Storage.php:145
+#: src/Module/Admin/Storage.php:131
msgid "Save & Reload"
msgstr ""
-#: src/Module/Admin/Storage.php:146
+#: src/Module/Admin/Storage.php:132
msgid "This backend doesn't have custom settings"
msgstr ""
-#: src/Module/Admin/Storage.php:148
+#: src/Module/Admin/Storage.php:134
msgid ""
"Changing the current backend is prohibited because it is set by an "
"environment variable"
msgstr ""
-#: src/Module/Admin/Storage.php:150
+#: src/Module/Admin/Storage.php:136
msgid "Database (legacy)"
msgstr ""
-#: src/Module/Admin/Summary.php:55
+#: src/Module/Admin/Summary.php:41
#, php-format
msgid "Template engine (%s) error: %s"
msgstr ""
-#: src/Module/Admin/Summary.php:59
+#: src/Module/Admin/Summary.php:45
#, php-format
msgid ""
"Your DB still runs with MyISAM tables. You should change the engine type to "
@@ -5690,7 +5706,7 @@ msgid ""
" an automatic conversion.The server domain pattern syntax is case-insensitive shell wildcard, comprising the following special characters:
\n" "This file can be downloaded from the /friendica
path of any "
"Friendica server.
debug.store_source
config key is set in "
"config/local.config.php
for future items to have sources."
msgstr ""
-#: src/Module/Moderation/Item/Source.php:92
+#: src/Module/Moderation/Item/Source.php:84
msgid "Item Guid"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:95
+#: src/Module/Moderation/Report/Create.php:81
msgid "Contact not found or their server is already blocked on this node."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:136
+#: src/Module/Moderation/Report/Create.php:122
msgid "Please login to access this page."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:165
-#: src/Module/Moderation/Report/Create.php:180
-#: src/Module/Moderation/Report/Create.php:208
-#: src/Module/Moderation/Report/Create.php:260
-#: src/Module/Moderation/Report/Create.php:279
+#: src/Module/Moderation/Report/Create.php:151
+#: src/Module/Moderation/Report/Create.php:166
+#: src/Module/Moderation/Report/Create.php:194
+#: src/Module/Moderation/Report/Create.php:246
+#: src/Module/Moderation/Report/Create.php:265
msgid "Create Moderation Report"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:166
+#: src/Module/Moderation/Report/Create.php:152
msgid "Pick Contact"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:167
+#: src/Module/Moderation/Report/Create.php:153
msgid ""
"Please enter below the contact address or profile URL you would like to "
"create a moderation report about."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:171
+#: src/Module/Moderation/Report/Create.php:157
msgid "Contact address/URL"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:181
+#: src/Module/Moderation/Report/Create.php:167
msgid "Pick Category"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:182
+#: src/Module/Moderation/Report/Create.php:168
msgid "Please pick below the category of your report."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:186
-#: src/Module/Moderation/Report/Create.php:311
+#: src/Module/Moderation/Report/Create.php:172
+#: src/Module/Moderation/Report/Create.php:297
msgid "Spam"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:186
+#: src/Module/Moderation/Report/Create.php:172
msgid ""
"This contact is publishing many repeated/overly long posts/replies or "
"advertising their product/websites in otherwise irrelevant conversations."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:187
-#: src/Module/Moderation/Report/Create.php:312
+#: src/Module/Moderation/Report/Create.php:173
+#: src/Module/Moderation/Report/Create.php:298
msgid "Illegal Content"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:187
+#: src/Module/Moderation/Report/Create.php:173
msgid ""
"This contact is publishing content that is considered illegal in this node's"
" hosting juridiction."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:188
-#: src/Module/Moderation/Report/Create.php:313
+#: src/Module/Moderation/Report/Create.php:174
+#: src/Module/Moderation/Report/Create.php:299
msgid "Community Safety"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:188
+#: src/Module/Moderation/Report/Create.php:174
msgid ""
"This contact aggravated you or other people, by being provocative or "
"insensitive, intentionally or not. This includes disclosing people's private"
@@ -8454,12 +8462,12 @@ msgid ""
"replies."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:189
-#: src/Module/Moderation/Report/Create.php:314
+#: src/Module/Moderation/Report/Create.php:175
+#: src/Module/Moderation/Report/Create.php:300
msgid "Unwanted Content/Behavior"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:189
+#: src/Module/Moderation/Report/Create.php:175
msgid ""
"This contact has repeatedly published content irrelevant to the node's theme"
" or is openly criticizing the node's administration/moderation without "
@@ -8467,89 +8475,89 @@ msgid ""
"nitpicking on a sensitive topic."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:190
-#: src/Module/Moderation/Report/Create.php:315
+#: src/Module/Moderation/Report/Create.php:176
+#: src/Module/Moderation/Report/Create.php:301
msgid "Rules Violation"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:190
+#: src/Module/Moderation/Report/Create.php:176
msgid ""
"This contact violated one or more rules of this node. You will be able to "
"pick which one(s) in the next step."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:191
+#: src/Module/Moderation/Report/Create.php:177
msgid ""
"Please elaborate below why you submitted this report. The more details you "
"provide, the better your report can be handled."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:193
+#: src/Module/Moderation/Report/Create.php:179
msgid "Additional Information"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:193
+#: src/Module/Moderation/Report/Create.php:179
msgid ""
"Please provide any additional information relevant to this particular "
"report. You will be able to attach posts by this contact in the next step, "
"but any context is welcome."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:209
+#: src/Module/Moderation/Report/Create.php:195
msgid "Pick Rules"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:210
+#: src/Module/Moderation/Report/Create.php:196
msgid "Please pick below the node rules you believe this contact violated."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:261
+#: src/Module/Moderation/Report/Create.php:247
msgid "Pick Posts"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:262
+#: src/Module/Moderation/Report/Create.php:248
msgid "Please optionally pick posts to attach to your report."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:281
+#: src/Module/Moderation/Report/Create.php:267
msgid "Submit Report"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:282
+#: src/Module/Moderation/Report/Create.php:268
msgid "Further Action"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:283
+#: src/Module/Moderation/Report/Create.php:269
msgid ""
"You can also perform one of the following action on the contact you "
"reported:"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:291
+#: src/Module/Moderation/Report/Create.php:277
msgid "Nothing"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:292
+#: src/Module/Moderation/Report/Create.php:278
msgid "Collapse contact"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:292
+#: src/Module/Moderation/Report/Create.php:278
msgid ""
"Their posts and replies will keep appearing in your Network page but their "
"content will be collapsed by default."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:293
+#: src/Module/Moderation/Report/Create.php:279
msgid ""
"Their posts won't appear in your Network page anymore, but their replies can"
" appear in forum threads. They still can follow you."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:294
+#: src/Module/Moderation/Report/Create.php:280
msgid "Block contact"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:294
+#: src/Module/Moderation/Report/Create.php:280
msgid ""
"Their posts won't appear in your Network page anymore, but their replies can"
" appear in forum threads, with their content collapsed by default. They "
@@ -8557,708 +8565,694 @@ msgid ""
"means."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:297
+#: src/Module/Moderation/Report/Create.php:283
msgid "Forward report"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:297
+#: src/Module/Moderation/Report/Create.php:283
msgid "Would you ike to forward this report to the remote server?"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:330
+#: src/Module/Moderation/Report/Create.php:316
msgid "1. Pick a contact"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:331
+#: src/Module/Moderation/Report/Create.php:317
msgid "2. Pick a category"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:332
+#: src/Module/Moderation/Report/Create.php:318
msgid "2a. Pick rules"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:333
+#: src/Module/Moderation/Report/Create.php:319
msgid "2b. Add comment"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:334
+#: src/Module/Moderation/Report/Create.php:320
msgid "3. Pick posts"
msgstr ""
-#: src/Module/Moderation/Reports.php:105
+#: src/Module/Moderation/Reports.php:97
msgid "List of reports"
msgstr ""
-#: src/Module/Moderation/Reports.php:106
+#: src/Module/Moderation/Reports.php:98
msgid "This page display reports created by our or remote users."
msgstr ""
-#: src/Module/Moderation/Reports.php:107
+#: src/Module/Moderation/Reports.php:99
msgid "No report exists at this node."
msgstr ""
-#: src/Module/Moderation/Reports.php:110
+#: src/Module/Moderation/Reports.php:102
msgid "Category"
msgstr ""
-#: src/Module/Moderation/Reports.php:114
+#: src/Module/Moderation/Reports.php:106
#, php-format
msgid "%s total report"
msgid_plural "%s total reports"
msgstr[0] ""
msgstr[1] ""
-#: src/Module/Moderation/Reports.php:117
+#: src/Module/Moderation/Reports.php:109
msgid "URL of the reported contact."
msgstr ""
-#: src/Module/Moderation/Summary.php:57 src/Module/Settings/Account.php:431
+#: src/Module/Moderation/Summary.php:43 src/Module/Settings/Account.php:422
msgid "Channel Relay"
msgstr ""
-#: src/Module/Moderation/Summary.php:77
+#: src/Module/Moderation/Summary.php:63
msgid "Registered users"
msgstr "Skráðir notendur"
-#: src/Module/Moderation/Summary.php:79
+#: src/Module/Moderation/Summary.php:65
msgid "Pending registrations"
msgstr "Nýskráningar í bið"
-#: src/Module/Moderation/Users/Active.php:43
-#: src/Module/Moderation/Users/Index.php:43
+#: src/Module/Moderation/Users/Active.php:29
+#: src/Module/Moderation/Users/Index.php:29
#, php-format
msgid "%s user blocked"
msgid_plural "%s users blocked"
msgstr[0] ""
msgstr[1] ""
-#: src/Module/Moderation/Users/Active.php:51
-#: src/Module/Moderation/Users/Active.php:85
-#: src/Module/Moderation/Users/Blocked.php:51
-#: src/Module/Moderation/Users/Blocked.php:85
-#: src/Module/Moderation/Users/Index.php:58
-#: src/Module/Moderation/Users/Index.php:92
+#: src/Module/Moderation/Users/Active.php:37
+#: src/Module/Moderation/Users/Active.php:71
+#: src/Module/Moderation/Users/Blocked.php:37
+#: src/Module/Moderation/Users/Blocked.php:71
+#: src/Module/Moderation/Users/Index.php:44
+#: src/Module/Moderation/Users/Index.php:78
msgid "You can't remove yourself"
msgstr ""
-#: src/Module/Moderation/Users/Active.php:55
-#: src/Module/Moderation/Users/Blocked.php:55
-#: src/Module/Moderation/Users/Index.php:62
+#: src/Module/Moderation/Users/Active.php:41
+#: src/Module/Moderation/Users/Blocked.php:41
+#: src/Module/Moderation/Users/Index.php:48
#, php-format
msgid "%s user deleted"
msgid_plural "%s users deleted"
msgstr[0] "%s notanda eytt"
msgstr[1] "%s notendum eytt"
-#: src/Module/Moderation/Users/Active.php:83
-#: src/Module/Moderation/Users/Blocked.php:83
-#: src/Module/Moderation/Users/Index.php:90
+#: src/Module/Moderation/Users/Active.php:69
+#: src/Module/Moderation/Users/Blocked.php:69
+#: src/Module/Moderation/Users/Index.php:76
#, php-format
msgid "User \"%s\" deleted"
msgstr ""
-#: src/Module/Moderation/Users/Active.php:93
-#: src/Module/Moderation/Users/Index.php:100
+#: src/Module/Moderation/Users/Active.php:79
+#: src/Module/Moderation/Users/Index.php:86
#, php-format
msgid "User \"%s\" blocked"
msgstr ""
-#: src/Module/Moderation/Users/Active.php:126
-#: src/Module/Moderation/Users/Blocked.php:126
-#: src/Module/Moderation/Users/Deleted.php:83
-#: src/Module/Moderation/Users/Index.php:140
-#: src/Module/Moderation/Users/Index.php:160
+#: src/Module/Moderation/Users/Active.php:112
+#: src/Module/Moderation/Users/Blocked.php:112
+#: src/Module/Moderation/Users/Deleted.php:69
+#: src/Module/Moderation/Users/Index.php:126
+#: src/Module/Moderation/Users/Index.php:146
msgid "Register date"
msgstr "Skráningardagur"
-#: src/Module/Moderation/Users/Active.php:126
-#: src/Module/Moderation/Users/Blocked.php:126
-#: src/Module/Moderation/Users/Deleted.php:83
-#: src/Module/Moderation/Users/Index.php:140
-#: src/Module/Moderation/Users/Index.php:160
+#: src/Module/Moderation/Users/Active.php:112
+#: src/Module/Moderation/Users/Blocked.php:112
+#: src/Module/Moderation/Users/Deleted.php:69
+#: src/Module/Moderation/Users/Index.php:126
+#: src/Module/Moderation/Users/Index.php:146
msgid "Last login"
msgstr "Síðast innskráður"
-#: src/Module/Moderation/Users/Active.php:126
-#: src/Module/Moderation/Users/Blocked.php:126
-#: src/Module/Moderation/Users/Deleted.php:83
-#: src/Module/Moderation/Users/Index.php:140
-#: src/Module/Moderation/Users/Index.php:160
+#: src/Module/Moderation/Users/Active.php:112
+#: src/Module/Moderation/Users/Blocked.php:112
+#: src/Module/Moderation/Users/Deleted.php:69
+#: src/Module/Moderation/Users/Index.php:126
+#: src/Module/Moderation/Users/Index.php:146
msgid "Last public item"
msgstr ""
-#: src/Module/Moderation/Users/Active.php:134
+#: src/Module/Moderation/Users/Active.php:120
msgid "Active Accounts"
msgstr ""
-#: src/Module/Moderation/Users/Active.php:138
-#: src/Module/Moderation/Users/Blocked.php:137
-#: src/Module/Moderation/Users/Index.php:153
+#: src/Module/Moderation/Users/Active.php:124
+#: src/Module/Moderation/Users/Blocked.php:123
+#: src/Module/Moderation/Users/Index.php:139
msgid "User blocked"
msgstr ""
-#: src/Module/Moderation/Users/Active.php:139
-#: src/Module/Moderation/Users/Blocked.php:139
-#: src/Module/Moderation/Users/Index.php:155
+#: src/Module/Moderation/Users/Active.php:125
+#: src/Module/Moderation/Users/Blocked.php:125
+#: src/Module/Moderation/Users/Index.php:141
msgid "Site admin"
msgstr "Vefstjóri"
-#: src/Module/Moderation/Users/Active.php:140
-#: src/Module/Moderation/Users/Blocked.php:140
-#: src/Module/Moderation/Users/Index.php:156
+#: src/Module/Moderation/Users/Active.php:126
+#: src/Module/Moderation/Users/Blocked.php:126
+#: src/Module/Moderation/Users/Index.php:142
msgid "Account expired"
msgstr "Notandaaðgangur útrunninn"
-#: src/Module/Moderation/Users/Active.php:141
-#: src/Module/Moderation/Users/Index.php:159
+#: src/Module/Moderation/Users/Active.php:127
+#: src/Module/Moderation/Users/Index.php:145
msgid "Create a new user"
msgstr ""
-#: src/Module/Moderation/Users/Active.php:147
-#: src/Module/Moderation/Users/Blocked.php:146
-#: src/Module/Moderation/Users/Index.php:165
+#: src/Module/Moderation/Users/Active.php:133
+#: src/Module/Moderation/Users/Blocked.php:132
+#: src/Module/Moderation/Users/Index.php:151
msgid ""
"Selected users will be deleted!\\n\\nEverything these users had posted on "
"this site will be permanently deleted!\\n\\nAre you sure?"
msgstr "Valdir notendur verður eytt!\\n\\nAllt sem þessir notendur hafa deilt á þessum vef verður varanlega eytt!\\n\\nErtu alveg viss?"
-#: src/Module/Moderation/Users/Active.php:148
-#: src/Module/Moderation/Users/Blocked.php:147
-#: src/Module/Moderation/Users/Index.php:166
+#: src/Module/Moderation/Users/Active.php:134
+#: src/Module/Moderation/Users/Blocked.php:133
+#: src/Module/Moderation/Users/Index.php:152
msgid ""
"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
"site will be permanently deleted!\\n\\nAre you sure?"
msgstr "Notandinn {0} verður eytt!\\n\\nAllt sem þessi notandi hefur deilt á þessum vef veður varanlega eytt!\\n\\nErtu alveg viss?"
-#: src/Module/Moderation/Users/Blocked.php:43
-#: src/Module/Moderation/Users/Index.php:50
+#: src/Module/Moderation/Users/Blocked.php:29
+#: src/Module/Moderation/Users/Index.php:36
#, php-format
msgid "%s user unblocked"
msgid_plural "%s users unblocked"
msgstr[0] ""
msgstr[1] ""
-#: src/Module/Moderation/Users/Blocked.php:92
-#: src/Module/Moderation/Users/Index.php:106
+#: src/Module/Moderation/Users/Blocked.php:78
+#: src/Module/Moderation/Users/Index.php:92
#, php-format
msgid "User \"%s\" unblocked"
msgstr ""
-#: src/Module/Moderation/Users/Blocked.php:134
+#: src/Module/Moderation/Users/Blocked.php:120
msgid "Blocked Users"
msgstr ""
-#: src/Module/Moderation/Users/Create.php:62
+#: src/Module/Moderation/Users/Create.php:48
msgid "New User"
msgstr "Nýr notandi"
-#: src/Module/Moderation/Users/Create.php:63
+#: src/Module/Moderation/Users/Create.php:49
msgid "Add User"
msgstr "Bæta við notanda"
-#: src/Module/Moderation/Users/Create.php:70
+#: src/Module/Moderation/Users/Create.php:56
msgid "Name of the new user."
msgstr ""
-#: src/Module/Moderation/Users/Create.php:71
+#: src/Module/Moderation/Users/Create.php:57
msgid "Nickname"
msgstr "Stuttnefni"
-#: src/Module/Moderation/Users/Create.php:71
+#: src/Module/Moderation/Users/Create.php:57
msgid "Nickname of the new user."
msgstr ""
-#: src/Module/Moderation/Users/Create.php:72
+#: src/Module/Moderation/Users/Create.php:58
msgid "Email address of the new user."
msgstr ""
-#: src/Module/Moderation/Users/Deleted.php:81
+#: src/Module/Moderation/Users/Deleted.php:67
msgid "Users awaiting permanent deletion"
msgstr ""
-#: src/Module/Moderation/Users/Deleted.php:83
-#: src/Module/Moderation/Users/Index.php:160
+#: src/Module/Moderation/Users/Deleted.php:69
+#: src/Module/Moderation/Users/Index.php:146
msgid "Permanent deletion"
msgstr ""
-#: src/Module/Moderation/Users/Index.php:150
+#: src/Module/Moderation/Users/Index.php:136
msgid "User waiting for permanent deletion"
msgstr ""
-#: src/Module/Moderation/Users/Pending.php:44
+#: src/Module/Moderation/Users/Pending.php:30
#, php-format
msgid "%s user approved"
msgid_plural "%s users approved"
msgstr[0] ""
msgstr[1] ""
-#: src/Module/Moderation/Users/Pending.php:51
+#: src/Module/Moderation/Users/Pending.php:37
#, php-format
msgid "%s registration revoked"
msgid_plural "%s registrations revoked"
msgstr[0] ""
msgstr[1] ""
-#: src/Module/Moderation/Users/Pending.php:76
+#: src/Module/Moderation/Users/Pending.php:62
msgid "Account approved."
msgstr "Notandi samþykktur."
-#: src/Module/Moderation/Users/Pending.php:82
+#: src/Module/Moderation/Users/Pending.php:68
msgid "Registration revoked"
msgstr ""
-#: src/Module/Moderation/Users/Pending.php:97
+#: src/Module/Moderation/Users/Pending.php:83
msgid "User registrations awaiting review"
msgstr ""
-#: src/Module/Moderation/Users/Pending.php:99
+#: src/Module/Moderation/Users/Pending.php:85
msgid "Request date"
msgstr "Dagsetning beiðnar"
-#: src/Module/Moderation/Users/Pending.php:100
+#: src/Module/Moderation/Users/Pending.php:86
msgid "No registrations."
msgstr "Engin skráning"
-#: src/Module/Moderation/Users/Pending.php:101
+#: src/Module/Moderation/Users/Pending.php:87
msgid "Note from the user"
msgstr ""
-#: src/Module/Moderation/Users/Pending.php:103
+#: src/Module/Moderation/Users/Pending.php:89
msgid "Deny"
msgstr "Hafnað"
-#: src/Module/Notifications/Introductions.php:99
+#: src/Module/Notifications/Introductions.php:91
msgid "Show Ignored Requests"
msgstr "Sýna hunsaðar beiðnir"
-#: src/Module/Notifications/Introductions.php:99
+#: src/Module/Notifications/Introductions.php:91
msgid "Hide Ignored Requests"
msgstr "Fela hunsaðar beiðnir"
-#: src/Module/Notifications/Introductions.php:115
-#: src/Module/Notifications/Introductions.php:178
+#: src/Module/Notifications/Introductions.php:107
+#: src/Module/Notifications/Introductions.php:170
msgid "Notification type:"
msgstr ""
-#: src/Module/Notifications/Introductions.php:118
+#: src/Module/Notifications/Introductions.php:110
msgid "Suggested by:"
msgstr ""
-#: src/Module/Notifications/Introductions.php:143
+#: src/Module/Notifications/Introductions.php:135
msgid "Claims to be known to you: "
msgstr "Þykist þekkja þig:"
-#: src/Module/Notifications/Introductions.php:152
+#: src/Module/Notifications/Introductions.php:144
msgid "Shall your connection be bidirectional or not?"
msgstr ""
-#: src/Module/Notifications/Introductions.php:153
+#: src/Module/Notifications/Introductions.php:145
#, php-format
msgid ""
"Accepting %s as a friend allows %s to subscribe to your posts, and you will "
"also receive updates from them in your news feed."
msgstr ""
-#: src/Module/Notifications/Introductions.php:154
+#: src/Module/Notifications/Introductions.php:146
#, php-format
msgid ""
"Accepting %s as a subscriber allows them to subscribe to your posts, but you"
" will not receive updates from them in your news feed."
msgstr ""
-#: src/Module/Notifications/Introductions.php:156
+#: src/Module/Notifications/Introductions.php:148
msgid "Friend"
msgstr "Vin"
-#: src/Module/Notifications/Introductions.php:157
+#: src/Module/Notifications/Introductions.php:149
msgid "Subscriber"
msgstr "Áskrifandi"
-#: src/Module/Notifications/Introductions.php:216
+#: src/Module/Notifications/Introductions.php:208
msgid "No introductions."
msgstr "Engar kynningar."
-#: src/Module/Notifications/Introductions.php:217
-#: src/Module/Notifications/Notifications.php:135
+#: src/Module/Notifications/Introductions.php:209
+#: src/Module/Notifications/Notifications.php:127
#, php-format
msgid "No more %s notifications."
msgstr "Ekki fleiri %s tilkynningar."
-#: src/Module/Notifications/Notification.php:135
+#: src/Module/Notifications/Notification.php:121
msgid "You must be logged in to show this page."
msgstr ""
-#: src/Module/Notifications/Notifications.php:66
+#: src/Module/Notifications/Notifications.php:52
msgid "Network Notifications"
msgstr "Tilkynningar á neti"
-#: src/Module/Notifications/Notifications.php:72
+#: src/Module/Notifications/Notifications.php:58
msgid "System Notifications"
msgstr "Kerfistilkynningar"
-#: src/Module/Notifications/Notifications.php:78
+#: src/Module/Notifications/Notifications.php:64
msgid "Personal Notifications"
msgstr "Einkatilkynningar."
-#: src/Module/Notifications/Notifications.php:84
+#: src/Module/Notifications/Notifications.php:70
msgid "Home Notifications"
msgstr "Tilkynningar frá heimasvæði"
-#: src/Module/Notifications/Notifications.php:140
+#: src/Module/Notifications/Notifications.php:132
msgid "Show unread"
msgstr "Birta ólesið"
-#: src/Module/Notifications/Ping.php:220
+#: src/Module/Notifications/Ping.php:206
msgid "{0} requested registration"
msgstr "{0} óskaði eftir skráningu"
-#: src/Module/Notifications/Ping.php:229
+#: src/Module/Notifications/Ping.php:215
#, php-format
msgid "{0} and %d others requested registration"
msgstr ""
-#: src/Module/OAuth/Acknowledge.php:51
+#: src/Module/OAuth/Acknowledge.php:37
msgid "Authorize application connection"
msgstr "Leyfa forriti að tengjast"
-#: src/Module/OAuth/Acknowledge.php:53
+#: src/Module/OAuth/Acknowledge.php:39
msgid ""
"Do you want to authorize this application to access your posts and contacts,"
" and/or create new posts for you?"
msgstr "Vilt þú leyfa þessu forriti að hafa aðgang að færslum og tengiliðum, og/eða stofna nýjar færslur fyrir þig?"
-#: src/Module/OAuth/Authorize.php:54
+#: src/Module/OAuth/Authorize.php:40
msgid "Unsupported or missing response type"
msgstr ""
-#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:75
+#: src/Module/OAuth/Authorize.php:45 src/Module/OAuth/Token.php:61
msgid "Incomplete request data"
msgstr ""
-#: src/Module/OAuth/Authorize.php:106
+#: src/Module/OAuth/Authorize.php:92
#, php-format
msgid ""
"Please copy the following authentication code into your application and "
"close this window: %s"
msgstr ""
-#: src/Module/OAuth/Token.php:80
+#: src/Module/OAuth/Token.php:66
msgid "Invalid data or unknown client"
msgstr ""
-#: src/Module/OAuth/Token.php:105
+#: src/Module/OAuth/Token.php:91
msgid "Unsupported or missing grant type"
msgstr ""
-#: src/Module/OStatus/Repair.php:83
-msgid "Resubscribing to OStatus contacts"
-msgstr ""
-
-#: src/Module/OStatus/Repair.php:84 src/Module/OStatus/Subscribe.php:160
-msgid "Keep this window open until done."
-msgstr "Halda þessum glugga opnum þar til öllu er lokið."
-
-#: src/Module/OStatus/Repair.php:85
-msgid "✔ Done"
-msgstr ""
-
-#: src/Module/OStatus/Repair.php:86
-msgid "No OStatus contacts to resubscribe to."
-msgstr ""
-
-#: src/Module/OStatus/Subscribe.php:72
+#: src/Module/OStatus/Subscribe.php:58
msgid "Subscribing to contacts"
msgstr ""
-#: src/Module/OStatus/Subscribe.php:81
+#: src/Module/OStatus/Subscribe.php:67
msgid "No contact provided."
msgstr "Enginn tengiliður uppgefinn."
-#: src/Module/OStatus/Subscribe.php:87
+#: src/Module/OStatus/Subscribe.php:73
msgid "Couldn't fetch information for contact."
msgstr ""
-#: src/Module/OStatus/Subscribe.php:98
+#: src/Module/OStatus/Subscribe.php:84
msgid "Couldn't fetch friends for contact."
msgstr ""
-#: src/Module/OStatus/Subscribe.php:104 src/Module/OStatus/Subscribe.php:115
+#: src/Module/OStatus/Subscribe.php:90 src/Module/OStatus/Subscribe.php:101
msgid "Couldn't fetch following contacts."
msgstr ""
-#: src/Module/OStatus/Subscribe.php:110
+#: src/Module/OStatus/Subscribe.php:96
msgid "Couldn't fetch remote profile."
msgstr ""
-#: src/Module/OStatus/Subscribe.php:120
+#: src/Module/OStatus/Subscribe.php:106
msgid "Unsupported network"
msgstr ""
-#: src/Module/OStatus/Subscribe.php:136
+#: src/Module/OStatus/Subscribe.php:122
msgid "Done"
msgstr "Lokið"
-#: src/Module/OStatus/Subscribe.php:150
+#: src/Module/OStatus/Subscribe.php:136
msgid "success"
msgstr "tókst"
-#: src/Module/OStatus/Subscribe.php:152
+#: src/Module/OStatus/Subscribe.php:138
msgid "failed"
msgstr "mistókst"
-#: src/Module/OStatus/Subscribe.php:155
+#: src/Module/OStatus/Subscribe.php:141
msgid "ignored"
msgstr "hunsað"
-#: src/Module/Photo.php:124
+#: src/Module/OStatus/Subscribe.php:146
+msgid "Keep this window open until done."
+msgstr "Halda þessum glugga opnum þar til öllu er lokið."
+
+#: src/Module/Photo.php:108
msgid "The Photo is not available."
msgstr ""
-#: src/Module/Photo.php:149
+#: src/Module/Photo.php:133
#, php-format
msgid "The Photo with id %s is not available."
msgstr ""
-#: src/Module/Photo.php:190
+#: src/Module/Photo.php:174
#, php-format
msgid "Invalid external resource with url %s."
msgstr ""
-#: src/Module/Photo.php:192
+#: src/Module/Photo.php:176
#, php-format
msgid "Invalid photo with id %s."
msgstr ""
-#: src/Module/Post/Edit.php:82 src/Module/Post/Edit.php:96
+#: src/Module/Post/Edit.php:68 src/Module/Post/Edit.php:82
msgid "Post not found."
msgstr ""
-#: src/Module/Post/Edit.php:102
+#: src/Module/Post/Edit.php:88
msgid "Edit post"
msgstr "Breyta skilaboðum"
-#: src/Module/Post/Edit.php:136
+#: src/Module/Post/Edit.php:122
msgid "web link"
msgstr "vefslóð"
-#: src/Module/Post/Edit.php:137
+#: src/Module/Post/Edit.php:123
msgid "Insert video link"
msgstr "Setja inn slóð á myndskeið"
-#: src/Module/Post/Edit.php:138
+#: src/Module/Post/Edit.php:124
msgid "video link"
msgstr "slóð á myndskeið"
-#: src/Module/Post/Edit.php:139
+#: src/Module/Post/Edit.php:125
msgid "Insert audio link"
msgstr "Setja inn slóð á hljóðskrá"
-#: src/Module/Post/Edit.php:140
+#: src/Module/Post/Edit.php:126
msgid "audio link"
msgstr "slóð á hljóðskrá"
-#: src/Module/Post/Tag/Remove.php:106
+#: src/Module/Post/Tag/Remove.php:92
msgid "Remove Item Tag"
msgstr "Fjarlægja merki "
-#: src/Module/Post/Tag/Remove.php:107
+#: src/Module/Post/Tag/Remove.php:93
msgid "Select a tag to remove: "
msgstr "Veldu merki til að fjarlægja:"
-#: src/Module/Post/Tag/Remove.php:108
-#: src/Module/Settings/TwoFactor/Trusted.php:147
+#: src/Module/Post/Tag/Remove.php:94
+#: src/Module/Settings/TwoFactor/Trusted.php:133
msgid "Remove"
msgstr "Fjarlægja"
-#: src/Module/Privacy/PermissionTooltip.php:71
+#: src/Module/Privacy/PermissionTooltip.php:57
#, php-format
msgid "Wrong type \"%s\", expected one of: %s"
msgstr ""
-#: src/Module/Privacy/PermissionTooltip.php:101
+#: src/Module/Privacy/PermissionTooltip.php:87
msgid "Model not found"
msgstr ""
-#: src/Module/Privacy/PermissionTooltip.php:118
+#: src/Module/Privacy/PermissionTooltip.php:104
msgid "Unlisted"
msgstr ""
-#: src/Module/Privacy/PermissionTooltip.php:124
+#: src/Module/Privacy/PermissionTooltip.php:110
msgid "Remote privacy information not available."
msgstr "Persónuverndarupplýsingar ekki fyrir hendi á fjartengdum vefþjóni."
-#: src/Module/Privacy/PermissionTooltip.php:131
+#: src/Module/Privacy/PermissionTooltip.php:117
msgid "Visible to:"
msgstr "Sýnilegt eftirfarandi:"
-#: src/Module/Privacy/PermissionTooltip.php:133
+#: src/Module/Privacy/PermissionTooltip.php:119
msgid "CC:"
msgstr ""
-#: src/Module/Privacy/PermissionTooltip.php:134
+#: src/Module/Privacy/PermissionTooltip.php:120
msgid "BCC:"
msgstr ""
-#: src/Module/Privacy/PermissionTooltip.php:135
+#: src/Module/Privacy/PermissionTooltip.php:121
msgid "Audience:"
msgstr ""
-#: src/Module/Privacy/PermissionTooltip.php:136
+#: src/Module/Privacy/PermissionTooltip.php:122
msgid "Attributed To:"
msgstr ""
-#: src/Module/Privacy/PermissionTooltip.php:234
+#: src/Module/Privacy/PermissionTooltip.php:220
#, php-format
msgid "Collection (%s)"
msgstr ""
-#: src/Module/Privacy/PermissionTooltip.php:238
+#: src/Module/Privacy/PermissionTooltip.php:224
#, php-format
msgid "Followers (%s)"
msgstr ""
-#: src/Module/Privacy/PermissionTooltip.php:255
+#: src/Module/Privacy/PermissionTooltip.php:241
#, php-format
msgid "%d more"
msgstr ""
-#: src/Module/Profile/Contacts.php:159
+#: src/Module/Profile/Contacts.php:145
msgid "No contacts."
msgstr "Enginn tengiliður"
-#: src/Module/Profile/Conversations.php:106
-#: src/Module/Profile/Conversations.php:109 src/Module/Profile/Profile.php:351
-#: src/Module/Profile/Profile.php:354 src/Protocol/Feed.php:1095
-#: src/Protocol/OStatus.php:1011
-#, php-format
-msgid "%s's timeline"
-msgstr "Tímalína fyrir %s"
-
-#: src/Module/Profile/Conversations.php:107 src/Module/Profile/Profile.php:352
-#: src/Protocol/Feed.php:1099 src/Protocol/OStatus.php:1016
+#: src/Module/Profile/Conversations.php:92 src/Module/Profile/Profile.php:339
+#: src/Protocol/Feed.php:1097
#, php-format
msgid "%s's posts"
msgstr "Færslur frá %s"
-#: src/Module/Profile/Conversations.php:108 src/Module/Profile/Profile.php:353
-#: src/Protocol/Feed.php:1102 src/Protocol/OStatus.php:1020
+#: src/Module/Profile/Conversations.php:93 src/Module/Profile/Profile.php:340
+#: src/Protocol/Feed.php:1100
#, php-format
msgid "%s's comments"
msgstr "Athugasemdir frá %s"
-#: src/Module/Profile/Photos.php:164 src/Module/Profile/Photos.php:167
-#: src/Module/Profile/Photos.php:192
-#: src/Module/Settings/Profile/Photo/Index.php:58
+#: src/Module/Profile/Conversations.php:94 src/Module/Profile/Profile.php:341
+#: src/Protocol/Feed.php:1093
+#, php-format
+msgid "%s's timeline"
+msgstr "Tímalína fyrir %s"
+
+#: src/Module/Profile/Photos.php:150 src/Module/Profile/Photos.php:153
+#: src/Module/Profile/Photos.php:178
+#: src/Module/Settings/Profile/Photo/Index.php:44
#, php-format
msgid "Image exceeds size limit of %s"
msgstr ""
-#: src/Module/Profile/Photos.php:170
+#: src/Module/Profile/Photos.php:156
msgid "Image upload didn't complete, please try again"
msgstr ""
-#: src/Module/Profile/Photos.php:173
+#: src/Module/Profile/Photos.php:159
msgid "Image file is missing"
msgstr "Myndskrá vantar"
-#: src/Module/Profile/Photos.php:178
+#: src/Module/Profile/Photos.php:164
msgid ""
"Server can't accept new file upload at this time, please contact your "
"administrator"
msgstr ""
-#: src/Module/Profile/Photos.php:200
+#: src/Module/Profile/Photos.php:186
msgid "Image file is empty."
msgstr "Mynda skrá er tóm."
-#: src/Module/Profile/Photos.php:352
+#: src/Module/Profile/Photos.php:338
msgid "View Album"
msgstr "Skoða myndabók"
-#: src/Module/Profile/Profile.php:112 src/Module/Profile/Restricted.php:50
+#: src/Module/Profile/Profile.php:100 src/Module/Profile/Restricted.php:36
msgid "Profile not found."
msgstr "Forsíða fannst ekki."
-#: src/Module/Profile/Profile.php:158
+#: src/Module/Profile/Profile.php:146
#, php-format
msgid ""
"You're currently viewing your profile as %s Cancel"
msgstr ""
-#: src/Module/Profile/Profile.php:167
+#: src/Module/Profile/Profile.php:155
msgid "Full Name:"
msgstr "Fullt nafn:"
-#: src/Module/Profile/Profile.php:172
+#: src/Module/Profile/Profile.php:160
msgid "Member since:"
msgstr "Meðlimur síðan:"
-#: src/Module/Profile/Profile.php:178
+#: src/Module/Profile/Profile.php:166
msgid "j F, Y"
msgstr "j F, Y"
-#: src/Module/Profile/Profile.php:179
+#: src/Module/Profile/Profile.php:167
msgid "j F"
msgstr "j F"
-#: src/Module/Profile/Profile.php:187 src/Util/Temporal.php:168
+#: src/Module/Profile/Profile.php:175 src/Util/Temporal.php:154
msgid "Birthday:"
msgstr "Afmælisdagur:"
-#: src/Module/Profile/Profile.php:190
-#: src/Module/Settings/Profile/Index.php:291 src/Util/Temporal.php:170
+#: src/Module/Profile/Profile.php:178
+#: src/Module/Settings/Profile/Index.php:282 src/Util/Temporal.php:156
msgid "Age: "
msgstr "Aldur: "
-#: src/Module/Profile/Profile.php:190
-#: src/Module/Settings/Profile/Index.php:291 src/Util/Temporal.php:170
+#: src/Module/Profile/Profile.php:178
+#: src/Module/Settings/Profile/Index.php:282 src/Util/Temporal.php:156
#, php-format
msgid "%d year old"
msgid_plural "%d years old"
msgstr[0] ""
msgstr[1] ""
-#: src/Module/Profile/Profile.php:195
-#: src/Module/Settings/Profile/Index.php:284
+#: src/Module/Profile/Profile.php:183
+#: src/Module/Settings/Profile/Index.php:275
msgid "Description:"
msgstr "Lýsing:"
-#: src/Module/Profile/Profile.php:261
+#: src/Module/Profile/Profile.php:249
msgid "Groups:"
msgstr ""
-#: src/Module/Profile/Profile.php:273
+#: src/Module/Profile/Profile.php:261
msgid "View profile as:"
msgstr ""
-#: src/Module/Profile/Profile.php:290
+#: src/Module/Profile/Profile.php:278
msgid "View as"
msgstr ""
-#: src/Module/Profile/RemoteFollow.php:82
+#: src/Module/Profile/RemoteFollow.php:68
msgid "Profile unavailable."
msgstr "Ekki hægt að sækja forsíðu"
-#: src/Module/Profile/RemoteFollow.php:88
+#: src/Module/Profile/RemoteFollow.php:74
msgid "Invalid locator"
msgstr "Ógild staðsetning"
-#: src/Module/Profile/RemoteFollow.php:95
+#: src/Module/Profile/RemoteFollow.php:81
msgid "The provided profile link doesn't seem to be valid"
msgstr ""
-#: src/Module/Profile/RemoteFollow.php:100
+#: src/Module/Profile/RemoteFollow.php:86
msgid ""
"Remote subscription can't be done for your network. Please subscribe "
"directly on your system."
msgstr ""
-#: src/Module/Profile/RemoteFollow.php:128
+#: src/Module/Profile/RemoteFollow.php:114
msgid "Friend/Connection Request"
msgstr "Vinabeiðni/Tengibeiðni"
-#: src/Module/Profile/RemoteFollow.php:129
+#: src/Module/Profile/RemoteFollow.php:115
#, php-format
msgid ""
"Enter your Webfinger address (user@domain.tld) or profile URL here. If this "
@@ -9266,579 +9260,579 @@ msgid ""
" or %s directly on your system."
msgstr ""
-#: src/Module/Profile/RemoteFollow.php:130
+#: src/Module/Profile/RemoteFollow.php:116
#, php-format
msgid ""
"If you are not yet a member of the free social web, follow "
"this link to find a public Friendica node and join us today."
msgstr ""
-#: src/Module/Profile/RemoteFollow.php:131
+#: src/Module/Profile/RemoteFollow.php:117
msgid "Your Webfinger address or profile URL:"
msgstr ""
-#: src/Module/Profile/Restricted.php:59
+#: src/Module/Profile/Restricted.php:45
msgid "Restricted profile"
msgstr ""
-#: src/Module/Profile/Restricted.php:60
+#: src/Module/Profile/Restricted.php:46
msgid ""
"This profile has been restricted which prevents access to their public "
"content from anonymous visitors."
msgstr ""
-#: src/Module/Profile/Schedule.php:83
+#: src/Module/Profile/Schedule.php:69
msgid "Scheduled"
msgstr ""
-#: src/Module/Profile/Schedule.php:84
+#: src/Module/Profile/Schedule.php:70
msgid "Content"
msgstr ""
-#: src/Module/Profile/Schedule.php:85
+#: src/Module/Profile/Schedule.php:71
msgid "Remove post"
msgstr ""
-#: src/Module/Register.php:85
+#: src/Module/Register.php:77
msgid "Only parent users can create additional accounts."
msgstr ""
-#: src/Module/Register.php:100 src/Module/User/Import.php:112
+#: src/Module/Register.php:92 src/Module/User/Import.php:98
msgid ""
"This site has exceeded the number of allowed daily account registrations. "
"Please try again tomorrow."
msgstr "Þessi vefur hefur náð hámarks fjölda daglegra nýskráninga. Reyndu aftur á morgun."
-#: src/Module/Register.php:117
+#: src/Module/Register.php:109
msgid ""
"You may (optionally) fill in this form via OpenID by supplying your OpenID "
"and clicking \"Register\"."
msgstr ""
-#: src/Module/Register.php:118
+#: src/Module/Register.php:110
msgid ""
"If you are not familiar with OpenID, please leave that field blank and fill "
"in the rest of the items."
msgstr "Ef þú veist ekki hvað OpenID er, skildu þá þetta svæði eftir tómt en fylltu í restin af svæðunum."
-#: src/Module/Register.php:119
+#: src/Module/Register.php:111
msgid "Your OpenID (optional): "
msgstr "Þitt OpenID (valfrjálst):"
-#: src/Module/Register.php:128
+#: src/Module/Register.php:120
msgid "Include your profile in member directory?"
msgstr "Á forsíðan þín að sjást í notendalistanum?"
-#: src/Module/Register.php:149
+#: src/Module/Register.php:141
msgid "Note for the admin"
msgstr ""
-#: src/Module/Register.php:149
+#: src/Module/Register.php:141
msgid "Leave a message for the admin, why you want to join this node"
msgstr ""
-#: src/Module/Register.php:150
+#: src/Module/Register.php:142
msgid "Membership on this site is by invitation only."
msgstr "Aðild að þessum vef er "
-#: src/Module/Register.php:151
+#: src/Module/Register.php:143
msgid "Your invitation code: "
msgstr ""
-#: src/Module/Register.php:159
+#: src/Module/Register.php:151
msgid "Your Display Name (as you would like it to be displayed on this system"
msgstr ""
-#: src/Module/Register.php:160
+#: src/Module/Register.php:152
msgid ""
"Your Email Address: (Initial information will be send there, so this has to "
"be an existing address.)"
msgstr ""
-#: src/Module/Register.php:161
+#: src/Module/Register.php:153
msgid "Please repeat your e-mail address:"
msgstr ""
-#: src/Module/Register.php:163 src/Module/Security/PasswordTooLong.php:100
-#: src/Module/Settings/Account.php:564
+#: src/Module/Register.php:155 src/Module/Security/PasswordTooLong.php:86
+#: src/Module/Settings/Account.php:555
msgid "New Password:"
msgstr "Nýtt aðgangsorð:"
-#: src/Module/Register.php:163
+#: src/Module/Register.php:155
msgid "Leave empty for an auto generated password."
msgstr ""
-#: src/Module/Register.php:164 src/Module/Security/PasswordTooLong.php:101
-#: src/Module/Settings/Account.php:565
+#: src/Module/Register.php:156 src/Module/Security/PasswordTooLong.php:87
+#: src/Module/Settings/Account.php:556
msgid "Confirm:"
msgstr "Staðfesta:"
-#: src/Module/Register.php:165
+#: src/Module/Register.php:157
#, php-format
msgid ""
"Choose a profile nickname. This must begin with a text character. Your "
"profile address on this site will then be \"nickname@%s\"."
msgstr ""
-#: src/Module/Register.php:166
+#: src/Module/Register.php:158
msgid "Choose a nickname: "
msgstr "Veldu gælunafn:"
-#: src/Module/Register.php:174 src/Module/User/Import.php:118
+#: src/Module/Register.php:166 src/Module/User/Import.php:104
msgid "Import"
msgstr "Flytja inn"
-#: src/Module/Register.php:175
+#: src/Module/Register.php:167
msgid "Import your profile to this friendica instance"
msgstr ""
-#: src/Module/Register.php:182
+#: src/Module/Register.php:174
msgid "Note: This node explicitly contains adult content"
msgstr ""
-#: src/Module/Register.php:184 src/Module/Settings/Delegation.php:181
+#: src/Module/Register.php:176 src/Module/Settings/Delegation.php:167
msgid "Parent Password:"
msgstr ""
-#: src/Module/Register.php:184 src/Module/Settings/Delegation.php:181
+#: src/Module/Register.php:176 src/Module/Settings/Delegation.php:167
msgid ""
"Please enter the password of the parent account to legitimize your request."
msgstr ""
-#: src/Module/Register.php:213
+#: src/Module/Register.php:205
msgid "Password doesn't match."
msgstr ""
-#: src/Module/Register.php:219
+#: src/Module/Register.php:211
msgid "Please enter your password."
msgstr ""
-#: src/Module/Register.php:261
+#: src/Module/Register.php:253
msgid "You have entered too much information."
msgstr ""
-#: src/Module/Register.php:284
+#: src/Module/Register.php:276
msgid "Please enter the identical mail address in the second field."
msgstr ""
-#: src/Module/Register.php:292
+#: src/Module/Register.php:284
msgid "Nickname cannot start with a digit."
msgstr ""
-#: src/Module/Register.php:294
+#: src/Module/Register.php:286
msgid "Nickname can only contain US-ASCII characters."
msgstr ""
-#: src/Module/Register.php:323
+#: src/Module/Register.php:315
msgid "The additional account was created."
msgstr ""
-#: src/Module/Register.php:348
+#: src/Module/Register.php:340
msgid ""
"Registration successful. Please check your email for further instructions."
msgstr "Nýskráning tóks. Frekari fyrirmæli voru send í tölvupósti."
-#: src/Module/Register.php:355
+#: src/Module/Register.php:347
#, php-format
msgid ""
"Failed to send email message. Here your accout details:You can enter one of your one-time recovery codes in case you lost access" " to your mobile device.
" msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:101 +#: src/Module/Security/TwoFactor/Recovery.php:87 #, php-format msgid "Don’t have your phone? Enter a two-factor recovery code" msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:102 +#: src/Module/Security/TwoFactor/Recovery.php:88 msgid "Please enter a recovery code" msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:103 +#: src/Module/Security/TwoFactor/Recovery.php:89 msgid "Submit recovery code and complete login" msgstr "" -#: src/Module/Security/TwoFactor/SignOut.php:122 +#: src/Module/Security/TwoFactor/SignOut.php:108 msgid "Sign out of this browser?" msgstr "" -#: src/Module/Security/TwoFactor/SignOut.php:123 +#: src/Module/Security/TwoFactor/SignOut.php:109 msgid "" "If you trust this browser, you will not be asked for verification code " "the next time you sign in.
" msgstr "" -#: src/Module/Security/TwoFactor/SignOut.php:124 +#: src/Module/Security/TwoFactor/SignOut.php:110 msgid "Sign out" msgstr "" -#: src/Module/Security/TwoFactor/SignOut.php:126 +#: src/Module/Security/TwoFactor/SignOut.php:112 msgid "Trust and sign out" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:96 +#: src/Module/Security/TwoFactor/Trust.php:82 msgid "Couldn't save browser to Cookie." msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:141 +#: src/Module/Security/TwoFactor/Trust.php:127 msgid "Trust this browser?" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:142 +#: src/Module/Security/TwoFactor/Trust.php:128 msgid "" "If you choose to trust this browser, you will not be asked for a " "verification code the next time you sign in.
" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:143 +#: src/Module/Security/TwoFactor/Trust.php:129 msgid "Not now" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:144 +#: src/Module/Security/TwoFactor/Trust.php:130 msgid "Don't trust" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:145 +#: src/Module/Security/TwoFactor/Trust.php:131 msgid "Trust" msgstr "" -#: src/Module/Security/TwoFactor/Verify.php:97 +#: src/Module/Security/TwoFactor/Verify.php:83 msgid "" "Open the two-factor authentication app on your device to get an " "authentication code and verify your identity.
" msgstr "" -#: src/Module/Security/TwoFactor/Verify.php:100 +#: src/Module/Security/TwoFactor/Verify.php:86 #, php-format msgid "" "If you do not have access to your authentication code you can use a two-factor recovery code." msgstr "" -#: src/Module/Security/TwoFactor/Verify.php:101 -#: src/Module/Settings/TwoFactor/Verify.php:158 +#: src/Module/Security/TwoFactor/Verify.php:87 +#: src/Module/Settings/TwoFactor/Verify.php:144 msgid "Please enter a code from your authentication app" msgstr "" -#: src/Module/Security/TwoFactor/Verify.php:102 +#: src/Module/Security/TwoFactor/Verify.php:88 msgid "Verify code and complete login" msgstr "" -#: src/Module/Settings/Account.php:96 +#: src/Module/Settings/Account.php:82 msgid "Please use a shorter name." msgstr "" -#: src/Module/Settings/Account.php:99 +#: src/Module/Settings/Account.php:85 msgid "Name too short." msgstr "" -#: src/Module/Settings/Account.php:108 +#: src/Module/Settings/Account.php:94 msgid "Wrong Password." msgstr "" -#: src/Module/Settings/Account.php:113 +#: src/Module/Settings/Account.php:99 msgid "Invalid email." msgstr "Ógilt tölvupóstfang." -#: src/Module/Settings/Account.php:117 +#: src/Module/Settings/Account.php:103 msgid "Cannot change to that email." msgstr "" -#: src/Module/Settings/Account.php:146 src/Module/Settings/Account.php:195 -#: src/Module/Settings/Account.php:216 src/Module/Settings/Account.php:300 -#: src/Module/Settings/Account.php:329 +#: src/Module/Settings/Account.php:132 src/Module/Settings/Account.php:181 +#: src/Module/Settings/Account.php:202 src/Module/Settings/Account.php:286 +#: src/Module/Settings/Account.php:315 msgid "Settings were not updated." msgstr "" -#: src/Module/Settings/Account.php:342 +#: src/Module/Settings/Account.php:333 msgid "Contact CSV file upload error" msgstr "" -#: src/Module/Settings/Account.php:361 +#: src/Module/Settings/Account.php:352 msgid "Importing Contacts done" msgstr "" -#: src/Module/Settings/Account.php:374 +#: src/Module/Settings/Account.php:365 msgid "Relocate message has been send to your contacts" msgstr "" -#: src/Module/Settings/Account.php:391 +#: src/Module/Settings/Account.php:382 msgid "Unable to find your profile. Please contact your admin." msgstr "" -#: src/Module/Settings/Account.php:433 +#: src/Module/Settings/Account.php:424 msgid "" "Account for a service that automatically shares content based on user " "defined channels." msgstr "" -#: src/Module/Settings/Account.php:443 +#: src/Module/Settings/Account.php:434 msgid "Personal Page Subtypes" msgstr "" -#: src/Module/Settings/Account.php:444 +#: src/Module/Settings/Account.php:435 msgid "Community Group Subtypes" msgstr "" -#: src/Module/Settings/Account.php:455 +#: src/Module/Settings/Account.php:446 msgid "Account for a personal profile." msgstr "" -#: src/Module/Settings/Account.php:462 +#: src/Module/Settings/Account.php:453 msgid "" "Account for an organisation that automatically approves contact requests as " "\"Followers\"." msgstr "" -#: src/Module/Settings/Account.php:469 +#: src/Module/Settings/Account.php:460 msgid "" "Account for a news reflector that automatically approves contact requests as" " \"Followers\"." msgstr "" -#: src/Module/Settings/Account.php:476 +#: src/Module/Settings/Account.php:467 msgid "Account for community discussions." msgstr "" -#: src/Module/Settings/Account.php:484 +#: src/Module/Settings/Account.php:475 msgid "" "Account for a regular personal profile that requires manual approval of " "\"Friends\" and \"Followers\"." msgstr "" -#: src/Module/Settings/Account.php:491 +#: src/Module/Settings/Account.php:482 msgid "" "Account for a public profile that automatically approves contact requests as" " \"Followers\"." msgstr "" -#: src/Module/Settings/Account.php:498 +#: src/Module/Settings/Account.php:489 msgid "Automatically approves all contact requests." msgstr "" -#: src/Module/Settings/Account.php:505 +#: src/Module/Settings/Account.php:496 msgid "Contact requests have to be manually approved." msgstr "" -#: src/Module/Settings/Account.php:512 +#: src/Module/Settings/Account.php:503 msgid "" "Account for a popular profile that automatically approves contact requests " "as \"Friends\"." msgstr "" -#: src/Module/Settings/Account.php:517 +#: src/Module/Settings/Account.php:508 msgid "Private Group [Experimental]" msgstr "" -#: src/Module/Settings/Account.php:519 +#: src/Module/Settings/Account.php:510 msgid "Requires manual approval of contact requests." msgstr "" -#: src/Module/Settings/Account.php:528 +#: src/Module/Settings/Account.php:519 msgid "OpenID:" msgstr "OpenID:" -#: src/Module/Settings/Account.php:528 +#: src/Module/Settings/Account.php:519 msgid "(Optional) Allow this OpenID to login to this account." msgstr "(Valfrjálst) Leyfa þessu OpenID til að auðkennast sem þessi notandi." -#: src/Module/Settings/Account.php:536 +#: src/Module/Settings/Account.php:527 msgid "Publish your profile in your local site directory?" msgstr "" -#: src/Module/Settings/Account.php:536 +#: src/Module/Settings/Account.php:527 #, php-format msgid "" "Your profile will be published in this node's local " @@ -9846,94 +9840,94 @@ msgid "" " system settings." msgstr "" -#: src/Module/Settings/Account.php:542 +#: src/Module/Settings/Account.php:533 #, php-format msgid "" "Your profile will also be published in the global friendica directories " "(e.g. %s)." msgstr "" -#: src/Module/Settings/Account.php:555 +#: src/Module/Settings/Account.php:546 msgid "Account Settings" msgstr "Stillingar aðgangs" -#: src/Module/Settings/Account.php:556 +#: src/Module/Settings/Account.php:547 #, php-format msgid "Your Identity Address is '%s' or '%s'." msgstr "" -#: src/Module/Settings/Account.php:563 +#: src/Module/Settings/Account.php:554 msgid "Password Settings" msgstr "Stillingar aðgangsorða" -#: src/Module/Settings/Account.php:565 +#: src/Module/Settings/Account.php:556 msgid "Leave password fields blank unless changing" msgstr "Hafðu aðgangsorða svæði tóm nema þegar verið er að breyta" -#: src/Module/Settings/Account.php:567 +#: src/Module/Settings/Account.php:558 msgid "Password:" msgstr "Lykilorð:" -#: src/Module/Settings/Account.php:567 +#: src/Module/Settings/Account.php:558 msgid "Your current password to confirm the changes of the email address" msgstr "" -#: src/Module/Settings/Account.php:570 +#: src/Module/Settings/Account.php:561 msgid "Delete OpenID URL" msgstr "" -#: src/Module/Settings/Account.php:572 +#: src/Module/Settings/Account.php:563 msgid "Basic Settings" msgstr "Grunnstillingar" -#: src/Module/Settings/Account.php:573 -#: src/Module/Settings/Profile/Index.php:283 +#: src/Module/Settings/Account.php:564 +#: src/Module/Settings/Profile/Index.php:274 msgid "Display name:" msgstr "" -#: src/Module/Settings/Account.php:574 +#: src/Module/Settings/Account.php:565 msgid "Email Address:" msgstr "Tölvupóstfang:" -#: src/Module/Settings/Account.php:575 +#: src/Module/Settings/Account.php:566 msgid "Your Timezone:" msgstr "Þitt tímabelti:" -#: src/Module/Settings/Account.php:576 +#: src/Module/Settings/Account.php:567 msgid "Your Language:" msgstr "Tungumálið þitt:" -#: src/Module/Settings/Account.php:576 +#: src/Module/Settings/Account.php:567 msgid "" "Set the language we use to show you friendica interface and to send you " "emails" msgstr "" -#: src/Module/Settings/Account.php:577 +#: src/Module/Settings/Account.php:568 msgid "Default Post Location:" msgstr "Sjálfgefin staðsetning færslu:" -#: src/Module/Settings/Account.php:578 +#: src/Module/Settings/Account.php:569 msgid "Use Browser Location:" msgstr "Nota vafra staðsetningu:" -#: src/Module/Settings/Account.php:580 +#: src/Module/Settings/Account.php:571 msgid "Security and Privacy Settings" msgstr "Öryggis og friðhelgistillingar" -#: src/Module/Settings/Account.php:582 +#: src/Module/Settings/Account.php:573 msgid "Maximum Friend Requests/Day:" msgstr "Hámarks vinabeiðnir á dag:" -#: src/Module/Settings/Account.php:582 +#: src/Module/Settings/Account.php:573 msgid "(to prevent spam abuse)" msgstr "(til að koma í veg fyrir rusl misnotkun)" -#: src/Module/Settings/Account.php:584 +#: src/Module/Settings/Account.php:575 msgid "Allow your profile to be searchable globally?" msgstr "" -#: src/Module/Settings/Account.php:584 +#: src/Module/Settings/Account.php:575 msgid "" "Activate this setting if you want others to easily find and follow you. Your" " profile will be searchable on remote systems. This setting also determines " @@ -9941,43 +9935,43 @@ msgid "" "indexed or not." msgstr "" -#: src/Module/Settings/Account.php:585 +#: src/Module/Settings/Account.php:576 msgid "Hide your contact/friend list from viewers of your profile?" msgstr "" -#: src/Module/Settings/Account.php:585 +#: src/Module/Settings/Account.php:576 msgid "" "A list of your contacts is displayed on your profile page. Activate this " "option to disable the display of your contact list." msgstr "" -#: src/Module/Settings/Account.php:586 +#: src/Module/Settings/Account.php:577 msgid "Hide your public content from anonymous viewers" msgstr "" -#: src/Module/Settings/Account.php:586 +#: src/Module/Settings/Account.php:577 msgid "" "Anonymous visitors will only see your basic profile details. Your public " "posts and replies will still be freely accessible on the remote servers of " "your followers and through relays." msgstr "" -#: src/Module/Settings/Account.php:587 +#: src/Module/Settings/Account.php:578 msgid "Make public posts unlisted" msgstr "" -#: src/Module/Settings/Account.php:587 +#: src/Module/Settings/Account.php:578 msgid "" "Your public posts will not appear on the community pages or in search " "results, nor be sent to relay servers. However they can still appear on " "public feeds on remote servers." msgstr "" -#: src/Module/Settings/Account.php:588 +#: src/Module/Settings/Account.php:579 msgid "Make all posted pictures accessible" msgstr "" -#: src/Module/Settings/Account.php:588 +#: src/Module/Settings/Account.php:579 msgid "" "This option makes every posted picture accessible via the direct link. This " "is a workaround for the problem that most other networks can't handle " @@ -9985,352 +9979,352 @@ msgid "" "public on your photo albums though." msgstr "" -#: src/Module/Settings/Account.php:589 +#: src/Module/Settings/Account.php:580 msgid "Allow friends to post to your profile page?" msgstr "Leyfa vinum að deila á forsíðuna þína?" -#: src/Module/Settings/Account.php:589 +#: src/Module/Settings/Account.php:580 msgid "" "Your contacts may write posts on your profile wall. These posts will be " "distributed to your contacts" msgstr "" -#: src/Module/Settings/Account.php:590 +#: src/Module/Settings/Account.php:581 msgid "Allow friends to tag your posts?" msgstr "Leyfa vinum að merkja færslurnar þínar?" -#: src/Module/Settings/Account.php:590 +#: src/Module/Settings/Account.php:581 msgid "Your contacts can add additional tags to your posts." msgstr "" -#: src/Module/Settings/Account.php:591 +#: src/Module/Settings/Account.php:582 msgid "Default privacy circle for new contacts" msgstr "" -#: src/Module/Settings/Account.php:592 +#: src/Module/Settings/Account.php:583 msgid "Default privacy circle for new group contacts" msgstr "" -#: src/Module/Settings/Account.php:593 +#: src/Module/Settings/Account.php:584 msgid "Default Post Permissions" msgstr "Sjálfgefnar aðgangstýring á færslum" -#: src/Module/Settings/Account.php:597 +#: src/Module/Settings/Account.php:588 msgid "Expiration settings" msgstr "" -#: src/Module/Settings/Account.php:598 +#: src/Module/Settings/Account.php:589 msgid "Automatically expire posts after this many days:" msgstr "Sjálfkrafa fyrna færslu eftir hvað marga daga:" -#: src/Module/Settings/Account.php:598 +#: src/Module/Settings/Account.php:589 msgid "If empty, posts will not expire. Expired posts will be deleted" msgstr "Tómar færslur renna ekki út. Útrunnum færslum er eytt" -#: src/Module/Settings/Account.php:599 +#: src/Module/Settings/Account.php:590 msgid "Expire posts" msgstr "" -#: src/Module/Settings/Account.php:599 +#: src/Module/Settings/Account.php:590 msgid "When activated, posts and comments will be expired." msgstr "" -#: src/Module/Settings/Account.php:600 +#: src/Module/Settings/Account.php:591 msgid "Expire personal notes" msgstr "" -#: src/Module/Settings/Account.php:600 +#: src/Module/Settings/Account.php:591 msgid "" "When activated, the personal notes on your profile page will be expired." msgstr "" -#: src/Module/Settings/Account.php:601 +#: src/Module/Settings/Account.php:592 msgid "Expire starred posts" msgstr "" -#: src/Module/Settings/Account.php:601 +#: src/Module/Settings/Account.php:592 msgid "" "Starring posts keeps them from being expired. That behaviour is overwritten " "by this setting." msgstr "" -#: src/Module/Settings/Account.php:602 +#: src/Module/Settings/Account.php:593 msgid "Only expire posts by others" msgstr "" -#: src/Module/Settings/Account.php:602 +#: src/Module/Settings/Account.php:593 msgid "" "When activated, your own posts never expire. Then the settings above are " "only valid for posts you received." msgstr "" -#: src/Module/Settings/Account.php:605 +#: src/Module/Settings/Account.php:596 msgid "Notification Settings" msgstr "Stillingar á tilkynningum" -#: src/Module/Settings/Account.php:606 +#: src/Module/Settings/Account.php:597 msgid "Send a notification email when:" msgstr "Senda tilkynningapóst þegar:" -#: src/Module/Settings/Account.php:607 +#: src/Module/Settings/Account.php:598 msgid "You receive an introduction" msgstr "Þú færð kynningu" -#: src/Module/Settings/Account.php:608 +#: src/Module/Settings/Account.php:599 msgid "Your introductions are confirmed" msgstr "Kynningarnar þínar eru samþykktar" -#: src/Module/Settings/Account.php:609 +#: src/Module/Settings/Account.php:600 msgid "Someone writes on your profile wall" msgstr "Einhver skrifar á vegginn þinn" -#: src/Module/Settings/Account.php:610 +#: src/Module/Settings/Account.php:601 msgid "Someone writes a followup comment" msgstr "Einhver skrifar athugasemd á færslu hjá þér" -#: src/Module/Settings/Account.php:611 +#: src/Module/Settings/Account.php:602 msgid "You receive a private message" msgstr "Þú færð einkaskilaboð" -#: src/Module/Settings/Account.php:612 +#: src/Module/Settings/Account.php:603 msgid "You receive a friend suggestion" msgstr "Þér hefur borist vina uppástunga" -#: src/Module/Settings/Account.php:613 +#: src/Module/Settings/Account.php:604 msgid "You are tagged in a post" msgstr "Þú varst merkt(ur) í færslu" -#: src/Module/Settings/Account.php:615 +#: src/Module/Settings/Account.php:606 msgid "Create a desktop notification when:" msgstr "" -#: src/Module/Settings/Account.php:616 +#: src/Module/Settings/Account.php:607 msgid "Someone tagged you" msgstr "" -#: src/Module/Settings/Account.php:617 +#: src/Module/Settings/Account.php:608 msgid "Someone directly commented on your post" msgstr "" -#: src/Module/Settings/Account.php:618 +#: src/Module/Settings/Account.php:609 msgid "Someone liked your content" msgstr "" -#: src/Module/Settings/Account.php:618 src/Module/Settings/Account.php:619 +#: src/Module/Settings/Account.php:609 src/Module/Settings/Account.php:610 msgid "Can only be enabled, when the direct comment notification is enabled." msgstr "" -#: src/Module/Settings/Account.php:619 +#: src/Module/Settings/Account.php:610 msgid "Someone shared your content" msgstr "" -#: src/Module/Settings/Account.php:620 +#: src/Module/Settings/Account.php:611 msgid "Someone commented in your thread" msgstr "" -#: src/Module/Settings/Account.php:621 +#: src/Module/Settings/Account.php:612 msgid "Someone commented in a thread where you commented" msgstr "" -#: src/Module/Settings/Account.php:622 +#: src/Module/Settings/Account.php:613 msgid "Someone commented in a thread where you interacted" msgstr "" -#: src/Module/Settings/Account.php:624 +#: src/Module/Settings/Account.php:615 msgid "Activate desktop notifications" msgstr "" -#: src/Module/Settings/Account.php:624 +#: src/Module/Settings/Account.php:615 msgid "Show desktop popup on new notifications" msgstr "" -#: src/Module/Settings/Account.php:628 +#: src/Module/Settings/Account.php:619 msgid "Text-only notification emails" msgstr "" -#: src/Module/Settings/Account.php:630 +#: src/Module/Settings/Account.php:621 msgid "Send text only notification emails, without the html part" msgstr "" -#: src/Module/Settings/Account.php:634 +#: src/Module/Settings/Account.php:625 msgid "Show detailled notifications" msgstr "" -#: src/Module/Settings/Account.php:636 +#: src/Module/Settings/Account.php:627 msgid "" "Per default, notifications are condensed to a single notification per item. " "When enabled every notification is displayed." msgstr "" -#: src/Module/Settings/Account.php:640 +#: src/Module/Settings/Account.php:631 msgid "Show notifications of ignored contacts" msgstr "" -#: src/Module/Settings/Account.php:642 +#: src/Module/Settings/Account.php:633 msgid "" "You don't see posts from ignored contacts. But you still see their comments." " This setting controls if you want to still receive regular notifications " "that are caused by ignored contacts or not." msgstr "" -#: src/Module/Settings/Account.php:645 +#: src/Module/Settings/Account.php:636 msgid "Advanced Account/Page Type Settings" msgstr "" -#: src/Module/Settings/Account.php:646 +#: src/Module/Settings/Account.php:637 msgid "Change the behaviour of this account for special situations" msgstr "" -#: src/Module/Settings/Account.php:649 +#: src/Module/Settings/Account.php:640 msgid "Import Contacts" msgstr "" -#: src/Module/Settings/Account.php:650 +#: src/Module/Settings/Account.php:641 msgid "" "Upload a CSV file that contains the handle of your followed accounts in the " "first column you exported from the old account." msgstr "" -#: src/Module/Settings/Account.php:651 +#: src/Module/Settings/Account.php:642 msgid "Upload File" msgstr "" -#: src/Module/Settings/Account.php:654 +#: src/Module/Settings/Account.php:645 msgid "Relocate" msgstr "Endurstaðsetja" -#: src/Module/Settings/Account.php:655 +#: src/Module/Settings/Account.php:646 msgid "" "If you have moved this profile from another server, and some of your " "contacts don't receive your updates, try pushing this button." msgstr "" -#: src/Module/Settings/Account.php:656 +#: src/Module/Settings/Account.php:647 msgid "Resend relocate message to contacts" msgstr "" -#: src/Module/Settings/Addons.php:86 +#: src/Module/Settings/Addons.php:72 msgid "Addon Settings" msgstr "" -#: src/Module/Settings/Addons.php:87 +#: src/Module/Settings/Addons.php:73 msgid "No Addon settings configured" msgstr "" -#: src/Module/Settings/Channels.php:148 +#: src/Module/Settings/Channels.php:134 msgid "" "This page can be used to define the channels that will automatically be " "reshared by your account." msgstr "" -#: src/Module/Settings/Channels.php:153 +#: src/Module/Settings/Channels.php:139 msgid "This page can be used to define your own channels." msgstr "" -#: src/Module/Settings/Channels.php:182 +#: src/Module/Settings/Channels.php:168 msgid "Publish" msgstr "" -#: src/Module/Settings/Channels.php:182 +#: src/Module/Settings/Channels.php:168 msgid "" "When selected, the channel results are reshared. This only works for public " "ActivityPub posts from the public timeline or the user defined circles." msgstr "" -#: src/Module/Settings/Channels.php:190 src/Module/Settings/Channels.php:211 -#: src/Module/Settings/Display.php:338 +#: src/Module/Settings/Channels.php:176 src/Module/Settings/Channels.php:197 +#: src/Module/Settings/Display.php:324 msgid "Label" msgstr "" -#: src/Module/Settings/Channels.php:191 src/Module/Settings/Channels.php:212 -#: src/Module/Settings/Display.php:339 -#: src/Module/Settings/TwoFactor/AppSpecific.php:137 +#: src/Module/Settings/Channels.php:177 src/Module/Settings/Channels.php:198 +#: src/Module/Settings/Display.php:325 +#: src/Module/Settings/TwoFactor/AppSpecific.php:123 msgid "Description" msgstr "" -#: src/Module/Settings/Channels.php:192 src/Module/Settings/Channels.php:213 +#: src/Module/Settings/Channels.php:178 src/Module/Settings/Channels.php:199 msgid "Access Key" msgstr "" -#: src/Module/Settings/Channels.php:193 src/Module/Settings/Channels.php:214 +#: src/Module/Settings/Channels.php:179 src/Module/Settings/Channels.php:200 msgid "Circle/Channel" msgstr "" -#: src/Module/Settings/Channels.php:194 src/Module/Settings/Channels.php:215 +#: src/Module/Settings/Channels.php:180 src/Module/Settings/Channels.php:201 msgid "Include Tags" msgstr "" -#: src/Module/Settings/Channels.php:195 src/Module/Settings/Channels.php:216 +#: src/Module/Settings/Channels.php:181 src/Module/Settings/Channels.php:202 msgid "Exclude Tags" msgstr "" -#: src/Module/Settings/Channels.php:196 src/Module/Settings/Channels.php:217 +#: src/Module/Settings/Channels.php:182 src/Module/Settings/Channels.php:203 msgid "Minimum Size" msgstr "" -#: src/Module/Settings/Channels.php:197 src/Module/Settings/Channels.php:218 +#: src/Module/Settings/Channels.php:183 src/Module/Settings/Channels.php:204 msgid "Maximum Size" msgstr "" -#: src/Module/Settings/Channels.php:198 src/Module/Settings/Channels.php:219 +#: src/Module/Settings/Channels.php:184 src/Module/Settings/Channels.php:205 msgid "Full Text Search" msgstr "" -#: src/Module/Settings/Channels.php:202 src/Module/Settings/Channels.php:223 +#: src/Module/Settings/Channels.php:188 src/Module/Settings/Channels.php:209 msgid "Select all languages that you want to see in this channel." msgstr "" -#: src/Module/Settings/Channels.php:204 +#: src/Module/Settings/Channels.php:190 msgid "Delete channel" msgstr "" -#: src/Module/Settings/Channels.php:204 +#: src/Module/Settings/Channels.php:190 msgid "Check to delete this entry from the channel list" msgstr "" -#: src/Module/Settings/Channels.php:211 +#: src/Module/Settings/Channels.php:197 msgid "Short name for the channel. It is displayed on the channels widget." msgstr "" -#: src/Module/Settings/Channels.php:212 +#: src/Module/Settings/Channels.php:198 msgid "This should describe the content of the channel in a few word." msgstr "" -#: src/Module/Settings/Channels.php:213 +#: src/Module/Settings/Channels.php:199 msgid "" "When you want to access this channel via an access key, you can define it " "here. Pay attention to not use an already used one." msgstr "" -#: src/Module/Settings/Channels.php:214 +#: src/Module/Settings/Channels.php:200 msgid "Select a circle or channel, that your channel should be based on." msgstr "" -#: src/Module/Settings/Channels.php:215 +#: src/Module/Settings/Channels.php:201 msgid "" "Comma separated list of tags. A post will be used when it contains any of " "the listed tags." msgstr "" -#: src/Module/Settings/Channels.php:216 +#: src/Module/Settings/Channels.php:202 msgid "" "Comma separated list of tags. If a post contain any of these tags, then it " "will not be part of nthis channel." msgstr "" -#: src/Module/Settings/Channels.php:217 +#: src/Module/Settings/Channels.php:203 msgid "" "Minimum post size. Leave empty for no minimum size. The size is calculated " "without links, attached posts, mentions or hashtags." msgstr "" -#: src/Module/Settings/Channels.php:218 +#: src/Module/Settings/Channels.php:204 msgid "" "Maximum post size. Leave empty for no maximum size. The size is calculated " "without links, attached posts, mentions or hashtags." msgstr "" -#: src/Module/Settings/Channels.php:219 +#: src/Module/Settings/Channels.php:205 #, php-format msgid "" "Search terms for the body, supports the \"boolean mode\" operators from " @@ -10338,576 +10332,589 @@ msgid "" "keywords: %s" msgstr "" -#: src/Module/Settings/Channels.php:220 +#: src/Module/Settings/Channels.php:206 msgid "Check to display images in the channel." msgstr "" -#: src/Module/Settings/Channels.php:221 +#: src/Module/Settings/Channels.php:207 msgid "Check to display videos in the channel." msgstr "" -#: src/Module/Settings/Channels.php:222 +#: src/Module/Settings/Channels.php:208 msgid "Check to display audio in the channel." msgstr "" -#: src/Module/Settings/Channels.php:227 +#: src/Module/Settings/Channels.php:213 msgid "Add new entry to the channel list" msgstr "" -#: src/Module/Settings/Channels.php:228 +#: src/Module/Settings/Channels.php:214 msgid "Add" msgstr "Bæta við" -#: src/Module/Settings/Channels.php:230 +#: src/Module/Settings/Channels.php:216 msgid "Current Entries in the channel list" msgstr "" -#: src/Module/Settings/Channels.php:233 +#: src/Module/Settings/Channels.php:219 msgid "Delete entry from the channel list" msgstr "" -#: src/Module/Settings/Channels.php:234 +#: src/Module/Settings/Channels.php:220 msgid "Delete entry from the channel list?" msgstr "" -#: src/Module/Settings/Connectors.php:120 +#: src/Module/Settings/Connectors.php:108 msgid "Failed to connect with email account using the settings provided." msgstr "Ekki tókst að tengjast við pósthólf með stillingum sem uppgefnar eru." -#: src/Module/Settings/Connectors.php:166 -#: src/Module/Settings/Connectors.php:167 +#: src/Module/Settings/Connectors.php:155 +#: src/Module/Settings/Connectors.php:156 msgid "Diaspora (Socialhome, Hubzilla)" msgstr "Diaspora (Socialhome, Hubzilla)" -#: src/Module/Settings/Connectors.php:166 -#: src/Module/Settings/Connectors.php:170 +#: src/Module/Settings/Connectors.php:155 #, php-format msgid "Built-in support for %s connectivity is enabled" msgstr "" -#: src/Module/Settings/Connectors.php:167 -#: src/Module/Settings/Connectors.php:169 +#: src/Module/Settings/Connectors.php:156 #, php-format msgid "Built-in support for %s connectivity is disabled" msgstr "" -#: src/Module/Settings/Connectors.php:169 -#: src/Module/Settings/Connectors.php:170 -msgid "OStatus (GNU Social)" -msgstr "" - -#: src/Module/Settings/Connectors.php:182 +#: src/Module/Settings/Connectors.php:167 msgid "Email access is disabled on this site." msgstr "Slökkt hefur verið á tölvupóst aðgang á þessum þjón." -#: src/Module/Settings/Connectors.php:197 -#: src/Module/Settings/Connectors.php:244 +#: src/Module/Settings/Connectors.php:182 +#: src/Module/Settings/Connectors.php:233 msgid "None" msgstr "Ekkert" -#: src/Module/Settings/Connectors.php:209 +#: src/Module/Settings/Connectors.php:186 +msgid "Default (Mastodon will display the title and a link to the post)" +msgstr "" + +#: src/Module/Settings/Connectors.php:187 +msgid "" +"Use the summary (Mastodon and some others will treat it as content warning)" +msgstr "" + +#: src/Module/Settings/Connectors.php:188 +msgid "Embed the title in the body" +msgstr "" + +#: src/Module/Settings/Connectors.php:199 msgid "General Social Media Settings" msgstr "Almennar stillingar samfélagsmiðla" -#: src/Module/Settings/Connectors.php:212 +#: src/Module/Settings/Connectors.php:202 msgid "Followed content scope" msgstr "" -#: src/Module/Settings/Connectors.php:214 +#: src/Module/Settings/Connectors.php:204 msgid "" "By default, conversations in which your follows participated but didn't " "start will be shown in your timeline. You can turn this behavior off, or " "expand it to the conversations in which your follows liked a post." msgstr "" -#: src/Module/Settings/Connectors.php:216 +#: src/Module/Settings/Connectors.php:206 msgid "Only conversations my follows started" msgstr "" -#: src/Module/Settings/Connectors.php:217 +#: src/Module/Settings/Connectors.php:207 msgid "Conversations my follows started or commented on (default)" msgstr "" -#: src/Module/Settings/Connectors.php:218 +#: src/Module/Settings/Connectors.php:208 msgid "Any conversation my follows interacted with, including likes" msgstr "" -#: src/Module/Settings/Connectors.php:221 +#: src/Module/Settings/Connectors.php:211 msgid "Collapse sensitive posts" msgstr "" -#: src/Module/Settings/Connectors.php:221 +#: src/Module/Settings/Connectors.php:211 msgid "" "If a post is marked as \"sensitive\", it will be displayed in a collapsed " "state, if this option is enabled." msgstr "" -#: src/Module/Settings/Connectors.php:222 +#: src/Module/Settings/Connectors.php:212 msgid "Enable intelligent shortening" msgstr "" -#: src/Module/Settings/Connectors.php:222 +#: src/Module/Settings/Connectors.php:212 msgid "" "Normally the system tries to find the best link to add to shortened posts. " "If disabled, every shortened post will always point to the original " "friendica post." msgstr "" -#: src/Module/Settings/Connectors.php:223 +#: src/Module/Settings/Connectors.php:213 msgid "Enable simple text shortening" msgstr "" -#: src/Module/Settings/Connectors.php:223 +#: src/Module/Settings/Connectors.php:213 msgid "" "Normally the system shortens posts at the next line feed. If this option is " "enabled then the system will shorten the text at the maximum character " "limit." msgstr "" -#: src/Module/Settings/Connectors.php:224 +#: src/Module/Settings/Connectors.php:214 msgid "Attach the link title" msgstr "" -#: src/Module/Settings/Connectors.php:224 +#: src/Module/Settings/Connectors.php:214 msgid "" "When activated, the title of the attached link will be added as a title on " "posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that" " share feed content." msgstr "" -#: src/Module/Settings/Connectors.php:225 +#: src/Module/Settings/Connectors.php:215 msgid "API: Use spoiler field as title" msgstr "" -#: src/Module/Settings/Connectors.php:225 +#: src/Module/Settings/Connectors.php:215 msgid "" "When activated, the \"spoiler_text\" field in the API will be used for the " "title on standalone posts. When deactivated it will be used for spoiler " "text. For comments it will always be used for spoiler text." msgstr "" -#: src/Module/Settings/Connectors.php:226 +#: src/Module/Settings/Connectors.php:216 msgid "API: Automatically links at the end of the post as attached posts" msgstr "" -#: src/Module/Settings/Connectors.php:226 +#: src/Module/Settings/Connectors.php:216 msgid "" "When activated, added links at the end of the post react the same way as " "added links in the web interface." msgstr "" -#: src/Module/Settings/Connectors.php:227 +#: src/Module/Settings/Connectors.php:217 +msgid "Article Mode" +msgstr "" + +#: src/Module/Settings/Connectors.php:217 +msgid "" +"Controls how posts with titles are transmitted. Mastodon and its forks don't" +" display the content of these posts if the post is created in the correct " +"(default) way." +msgstr "" + +#: src/Module/Settings/Connectors.php:218 msgid "Your legacy ActivityPub/GNU Social account" msgstr "" -#: src/Module/Settings/Connectors.php:227 +#: src/Module/Settings/Connectors.php:218 msgid "" "If you enter your old account name from an ActivityPub based system or your " "GNU Social/Statusnet account name here (in the format user@domain.tld), your" " contacts will be added automatically. The field will be emptied when done." msgstr "" -#: src/Module/Settings/Connectors.php:229 -msgid "Repair OStatus subscriptions" -msgstr "" - -#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Connectors.php:222 msgid "Email/Mailbox Setup" msgstr "Tölvupóstur stilling" -#: src/Module/Settings/Connectors.php:234 +#: src/Module/Settings/Connectors.php:223 msgid "" "If you wish to communicate with email contacts using this service " "(optional), please specify how to connect to your mailbox." msgstr "Ef þú villt hafa samskipti við tölvupóststengiliði með þessari þjónustu (valfrjálst), skilgreindu þá hvernig á að tengjast póstfanginu þínu." -#: src/Module/Settings/Connectors.php:235 +#: src/Module/Settings/Connectors.php:224 msgid "Last successful email check:" msgstr "Síðasta prófun á tölvupóstfangi:" -#: src/Module/Settings/Connectors.php:237 +#: src/Module/Settings/Connectors.php:226 msgid "IMAP server name:" msgstr "IMAP þjónn:" -#: src/Module/Settings/Connectors.php:238 +#: src/Module/Settings/Connectors.php:227 msgid "IMAP port:" msgstr "IMAP port:" -#: src/Module/Settings/Connectors.php:239 +#: src/Module/Settings/Connectors.php:228 msgid "Security:" msgstr "Öryggi:" -#: src/Module/Settings/Connectors.php:240 +#: src/Module/Settings/Connectors.php:229 msgid "Email login name:" msgstr "Notandanafn tölvupóstfangs:" -#: src/Module/Settings/Connectors.php:241 +#: src/Module/Settings/Connectors.php:230 msgid "Email password:" msgstr "Lykilorð tölvupóstfangs:" -#: src/Module/Settings/Connectors.php:242 +#: src/Module/Settings/Connectors.php:231 msgid "Reply-to address:" msgstr "Svarpóstfang:" -#: src/Module/Settings/Connectors.php:243 +#: src/Module/Settings/Connectors.php:232 msgid "Send public posts to all email contacts:" msgstr "Senda opinberar færslur á alla tölvupóst viðtakendur:" -#: src/Module/Settings/Connectors.php:244 +#: src/Module/Settings/Connectors.php:233 msgid "Action after import:" msgstr "" -#: src/Module/Settings/Connectors.php:244 +#: src/Module/Settings/Connectors.php:233 msgid "Move to folder" msgstr "Flytja yfir í skrásafn" -#: src/Module/Settings/Connectors.php:245 +#: src/Module/Settings/Connectors.php:234 msgid "Move to folder:" msgstr "Flytja yfir í skrásafn:" -#: src/Module/Settings/Delegation.php:73 +#: src/Module/Settings/Delegation.php:59 msgid "Delegation successfully granted." msgstr "" -#: src/Module/Settings/Delegation.php:75 +#: src/Module/Settings/Delegation.php:61 msgid "Parent user not found, unavailable or password doesn't match." msgstr "" -#: src/Module/Settings/Delegation.php:79 +#: src/Module/Settings/Delegation.php:65 msgid "Delegation successfully revoked." msgstr "" -#: src/Module/Settings/Delegation.php:98 -#: src/Module/Settings/Delegation.php:120 +#: src/Module/Settings/Delegation.php:84 +#: src/Module/Settings/Delegation.php:106 msgid "" "Delegated administrators can view but not change delegation permissions." msgstr "" -#: src/Module/Settings/Delegation.php:112 +#: src/Module/Settings/Delegation.php:98 msgid "Delegate user not found." msgstr "" -#: src/Module/Settings/Delegation.php:169 +#: src/Module/Settings/Delegation.php:155 msgid "No parent user" msgstr "" -#: src/Module/Settings/Delegation.php:180 -#: src/Module/Settings/Delegation.php:191 +#: src/Module/Settings/Delegation.php:166 +#: src/Module/Settings/Delegation.php:177 msgid "Parent User" msgstr "" -#: src/Module/Settings/Delegation.php:188 +#: src/Module/Settings/Delegation.php:174 msgid "Additional Accounts" msgstr "" -#: src/Module/Settings/Delegation.php:189 +#: src/Module/Settings/Delegation.php:175 msgid "" "Register additional accounts that are automatically connected to your " "existing account so you can manage them from this account." msgstr "" -#: src/Module/Settings/Delegation.php:190 +#: src/Module/Settings/Delegation.php:176 msgid "Register an additional account" msgstr "" -#: src/Module/Settings/Delegation.php:192 +#: src/Module/Settings/Delegation.php:178 msgid "" "Parent users have total control about this account, including the account " "settings. Please double check whom you give this access." msgstr "" -#: src/Module/Settings/Delegation.php:195 +#: src/Module/Settings/Delegation.php:181 msgid "Delegates" msgstr "" -#: src/Module/Settings/Delegation.php:196 +#: src/Module/Settings/Delegation.php:182 msgid "" "Delegates are able to manage all aspects of this account/page except for " "basic account settings. Please do not delegate your personal account to " "anybody that you do not trust completely." msgstr "" -#: src/Module/Settings/Delegation.php:197 +#: src/Module/Settings/Delegation.php:183 msgid "Existing Page Delegates" msgstr "" -#: src/Module/Settings/Delegation.php:198 +#: src/Module/Settings/Delegation.php:184 msgid "Potential Delegates" msgstr "" -#: src/Module/Settings/Delegation.php:199 +#: src/Module/Settings/Delegation.php:185 msgid "No entries." msgstr "Engar færslur." -#: src/Module/Settings/Display.php:183 +#: src/Module/Settings/Display.php:169 msgid "The theme you chose isn't available." msgstr "" -#: src/Module/Settings/Display.php:223 +#: src/Module/Settings/Display.php:209 #, php-format msgid "%s - (Unsupported)" msgstr "%s - (ekki stutt)" -#: src/Module/Settings/Display.php:260 +#: src/Module/Settings/Display.php:246 msgid "No preview" msgstr "" -#: src/Module/Settings/Display.php:261 +#: src/Module/Settings/Display.php:247 msgid "No image" msgstr "" -#: src/Module/Settings/Display.php:262 +#: src/Module/Settings/Display.php:248 msgid "Small Image" msgstr "" -#: src/Module/Settings/Display.php:263 +#: src/Module/Settings/Display.php:249 msgid "Large Image" msgstr "" -#: src/Module/Settings/Display.php:308 +#: src/Module/Settings/Display.php:294 msgid "Display Settings" msgstr "Birtingarstillingar" -#: src/Module/Settings/Display.php:310 +#: src/Module/Settings/Display.php:296 msgid "General Theme Settings" msgstr "" -#: src/Module/Settings/Display.php:311 +#: src/Module/Settings/Display.php:297 msgid "Custom Theme Settings" msgstr "" -#: src/Module/Settings/Display.php:312 +#: src/Module/Settings/Display.php:298 msgid "Content Settings" msgstr "Stillingar efnis" -#: src/Module/Settings/Display.php:313 view/theme/duepuntozero/config.php:86 -#: view/theme/frio/config.php:151 view/theme/quattro/config.php:88 -#: view/theme/vier/config.php:136 +#: src/Module/Settings/Display.php:299 view/theme/duepuntozero/config.php:74 +#: view/theme/frio/config.php:139 view/theme/quattro/config.php:76 +#: view/theme/vier/config.php:124 msgid "Theme settings" msgstr "Þemastillingar" -#: src/Module/Settings/Display.php:314 +#: src/Module/Settings/Display.php:300 msgid "Timelines" msgstr "" -#: src/Module/Settings/Display.php:321 +#: src/Module/Settings/Display.php:307 msgid "Display Theme:" msgstr "Útlits þema:" -#: src/Module/Settings/Display.php:322 +#: src/Module/Settings/Display.php:308 msgid "Mobile Theme:" msgstr "Farsímaþema" -#: src/Module/Settings/Display.php:325 +#: src/Module/Settings/Display.php:311 msgid "Number of items to display per page:" msgstr "" -#: src/Module/Settings/Display.php:325 src/Module/Settings/Display.php:326 +#: src/Module/Settings/Display.php:311 src/Module/Settings/Display.php:312 msgid "Maximum of 100 items" msgstr "" -#: src/Module/Settings/Display.php:326 +#: src/Module/Settings/Display.php:312 msgid "Number of items to display per page when viewed from mobile device:" msgstr "" -#: src/Module/Settings/Display.php:327 +#: src/Module/Settings/Display.php:313 msgid "Update browser every xx seconds" msgstr "Endurhlaða vefsíðu á xx sekúndu fresti" -#: src/Module/Settings/Display.php:327 +#: src/Module/Settings/Display.php:313 msgid "Minimum of 10 seconds. Enter -1 to disable it." msgstr "" -#: src/Module/Settings/Display.php:328 +#: src/Module/Settings/Display.php:314 msgid "Display emoticons" msgstr "" -#: src/Module/Settings/Display.php:328 +#: src/Module/Settings/Display.php:314 msgid "When enabled, emoticons are replaced with matching symbols." msgstr "" -#: src/Module/Settings/Display.php:329 +#: src/Module/Settings/Display.php:315 msgid "Infinite scroll" msgstr "" -#: src/Module/Settings/Display.php:329 +#: src/Module/Settings/Display.php:315 msgid "Automatic fetch new items when reaching the page end." msgstr "" -#: src/Module/Settings/Display.php:330 +#: src/Module/Settings/Display.php:316 msgid "Enable Smart Threading" msgstr "" -#: src/Module/Settings/Display.php:330 +#: src/Module/Settings/Display.php:316 msgid "Enable the automatic suppression of extraneous thread indentation." msgstr "" -#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/Display.php:317 msgid "Display the Dislike feature" msgstr "" -#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/Display.php:317 msgid "" "Display the Dislike button and dislike reactions on posts and comments." msgstr "" -#: src/Module/Settings/Display.php:332 +#: src/Module/Settings/Display.php:318 msgid "Display the resharer" msgstr "" -#: src/Module/Settings/Display.php:332 +#: src/Module/Settings/Display.php:318 msgid "Display the first resharer as icon and text on a reshared item." msgstr "" -#: src/Module/Settings/Display.php:333 +#: src/Module/Settings/Display.php:319 msgid "Stay local" msgstr "" -#: src/Module/Settings/Display.php:333 +#: src/Module/Settings/Display.php:319 msgid "Don't go to a remote system when following a contact link." msgstr "" -#: src/Module/Settings/Display.php:334 +#: src/Module/Settings/Display.php:320 msgid "Show the post deletion checkbox" msgstr "" -#: src/Module/Settings/Display.php:334 +#: src/Module/Settings/Display.php:320 msgid "Display the checkbox for the post deletion on the network page." msgstr "" -#: src/Module/Settings/Display.php:335 +#: src/Module/Settings/Display.php:321 msgid "DIsplay the event list" msgstr "" -#: src/Module/Settings/Display.php:335 +#: src/Module/Settings/Display.php:321 msgid "Display the birthday reminder and event list on the network page." msgstr "" -#: src/Module/Settings/Display.php:336 +#: src/Module/Settings/Display.php:322 msgid "Link preview mode" msgstr "" -#: src/Module/Settings/Display.php:336 +#: src/Module/Settings/Display.php:322 msgid "Appearance of the link preview that is added to each post with a link." msgstr "" -#: src/Module/Settings/Display.php:341 +#: src/Module/Settings/Display.php:327 msgid "Bookmark" msgstr "" -#: src/Module/Settings/Display.php:343 +#: src/Module/Settings/Display.php:329 msgid "" "Enable timelines that you want to see in the channels widget. Bookmark " "timelines that you want to see in the top menu." msgstr "" -#: src/Module/Settings/Display.php:345 +#: src/Module/Settings/Display.php:331 msgid "Channel languages:" msgstr "" -#: src/Module/Settings/Display.php:345 +#: src/Module/Settings/Display.php:331 msgid "Select all languages that you want to see in your channels." msgstr "" -#: src/Module/Settings/Display.php:347 +#: src/Module/Settings/Display.php:333 msgid "Beginning of week:" msgstr "Upphaf viku:" -#: src/Module/Settings/Display.php:348 +#: src/Module/Settings/Display.php:334 msgid "Default calendar view:" msgstr "" -#: src/Module/Settings/Features.php:73 +#: src/Module/Settings/Features.php:59 msgid "Additional Features" msgstr "Viðbótareiginleikar" -#: src/Module/Settings/OAuth.php:71 +#: src/Module/Settings/OAuth.php:57 msgid "Connected Apps" msgstr "Tengd forrit" -#: src/Module/Settings/OAuth.php:75 +#: src/Module/Settings/OAuth.php:61 msgid "Remove authorization" msgstr "Fjarlæga auðkenningu" -#: src/Module/Settings/Profile/Index.php:116 +#: src/Module/Settings/Profile/Index.php:102 msgid "Display Name is required." msgstr "" -#: src/Module/Settings/Profile/Index.php:167 +#: src/Module/Settings/Profile/Index.php:156 msgid "Profile couldn't be updated." msgstr "" -#: src/Module/Settings/Profile/Index.php:205 -#: src/Module/Settings/Profile/Index.php:226 +#: src/Module/Settings/Profile/Index.php:196 +#: src/Module/Settings/Profile/Index.php:217 msgid "Label:" msgstr "" -#: src/Module/Settings/Profile/Index.php:206 -#: src/Module/Settings/Profile/Index.php:227 +#: src/Module/Settings/Profile/Index.php:197 +#: src/Module/Settings/Profile/Index.php:218 msgid "Value:" msgstr "" -#: src/Module/Settings/Profile/Index.php:217 -#: src/Module/Settings/Profile/Index.php:238 +#: src/Module/Settings/Profile/Index.php:208 +#: src/Module/Settings/Profile/Index.php:229 msgid "Field Permissions" msgstr "" -#: src/Module/Settings/Profile/Index.php:218 -#: src/Module/Settings/Profile/Index.php:239 +#: src/Module/Settings/Profile/Index.php:209 +#: src/Module/Settings/Profile/Index.php:230 msgid "(click to open/close)" msgstr "(ýttu á til að opna/loka)" -#: src/Module/Settings/Profile/Index.php:224 +#: src/Module/Settings/Profile/Index.php:215 msgid "Add a new profile field" msgstr "" -#: src/Module/Settings/Profile/Index.php:247 +#: src/Module/Settings/Profile/Index.php:238 msgid "" "The homepage is verified. A rel=\"me\" link back to your Friendica profile " "page was found on the homepage." msgstr "" -#: src/Module/Settings/Profile/Index.php:249 +#: src/Module/Settings/Profile/Index.php:240 #, php-format msgid "" "To verify your homepage, add a rel=\"me\" link to it, pointing to your " "profile URL (%s)." msgstr "" -#: src/Module/Settings/Profile/Index.php:255 +#: src/Module/Settings/Profile/Index.php:246 msgid "Profile Actions" msgstr "" -#: src/Module/Settings/Profile/Index.php:256 +#: src/Module/Settings/Profile/Index.php:247 msgid "Edit Profile Details" msgstr "Breyta forsíðu upplýsingum" -#: src/Module/Settings/Profile/Index.php:258 +#: src/Module/Settings/Profile/Index.php:249 msgid "Change Profile Photo" msgstr "Breyta forsíðumynd" -#: src/Module/Settings/Profile/Index.php:261 +#: src/Module/Settings/Profile/Index.php:252 msgid "Profile picture" msgstr "Notandamynd" -#: src/Module/Settings/Profile/Index.php:262 +#: src/Module/Settings/Profile/Index.php:253 msgid "Location" msgstr "Staðsetning" -#: src/Module/Settings/Profile/Index.php:263 src/Util/Temporal.php:97 -#: src/Util/Temporal.php:99 +#: src/Module/Settings/Profile/Index.php:254 src/Util/Temporal.php:83 +#: src/Util/Temporal.php:85 msgid "Miscellaneous" msgstr "Ýmislegt" -#: src/Module/Settings/Profile/Index.php:264 +#: src/Module/Settings/Profile/Index.php:255 msgid "Custom Profile Fields" msgstr "" -#: src/Module/Settings/Profile/Index.php:265 src/Module/Welcome.php:58 +#: src/Module/Settings/Profile/Index.php:256 src/Module/Welcome.php:44 msgid "Upload Profile Photo" msgstr "Hlaða upp forsíðu mynd" -#: src/Module/Settings/Profile/Index.php:266 +#: src/Module/Settings/Profile/Index.php:257 #, php-format msgid "" "Custom fields appear on your profile page.
\n" @@ -10917,396 +10924,396 @@ msgid "" "\t\t\t\tNon-public fields can only be seen by the selected Friendica contacts or the Friendica contacts in the selected circles.
" msgstr "" -#: src/Module/Settings/Profile/Index.php:286 +#: src/Module/Settings/Profile/Index.php:277 msgid "Street Address:" msgstr "Gata:" -#: src/Module/Settings/Profile/Index.php:287 +#: src/Module/Settings/Profile/Index.php:278 msgid "Locality/City:" msgstr "Bær/Borg:" -#: src/Module/Settings/Profile/Index.php:288 +#: src/Module/Settings/Profile/Index.php:279 msgid "Region/State:" msgstr "Svæði/Sýsla" -#: src/Module/Settings/Profile/Index.php:289 +#: src/Module/Settings/Profile/Index.php:280 msgid "Postal/Zip Code:" msgstr "Póstnúmer:" -#: src/Module/Settings/Profile/Index.php:290 +#: src/Module/Settings/Profile/Index.php:281 msgid "Country:" msgstr "Land:" -#: src/Module/Settings/Profile/Index.php:292 +#: src/Module/Settings/Profile/Index.php:283 msgid "XMPP (Jabber) address:" msgstr "XMPP (Jabber) vistfang:" -#: src/Module/Settings/Profile/Index.php:292 +#: src/Module/Settings/Profile/Index.php:283 msgid "" "The XMPP address will be published so that people can follow you there." msgstr "" -#: src/Module/Settings/Profile/Index.php:293 +#: src/Module/Settings/Profile/Index.php:284 msgid "Matrix (Element) address:" msgstr "" -#: src/Module/Settings/Profile/Index.php:293 +#: src/Module/Settings/Profile/Index.php:284 msgid "" "The Matrix address will be published so that people can follow you there." msgstr "" -#: src/Module/Settings/Profile/Index.php:294 +#: src/Module/Settings/Profile/Index.php:285 msgid "Homepage URL:" msgstr "Slóð heimasíðu:" -#: src/Module/Settings/Profile/Index.php:295 +#: src/Module/Settings/Profile/Index.php:286 msgid "Public Keywords:" msgstr "Opinber leitarorð:" -#: src/Module/Settings/Profile/Index.php:295 +#: src/Module/Settings/Profile/Index.php:286 msgid "(Used for suggesting potential friends, can be seen by others)" msgstr "(Notað til að stinga uppá mögulegum vinum, aðrir geta séð)" -#: src/Module/Settings/Profile/Index.php:296 +#: src/Module/Settings/Profile/Index.php:287 msgid "Private Keywords:" msgstr "Einka leitarorð:" -#: src/Module/Settings/Profile/Index.php:296 +#: src/Module/Settings/Profile/Index.php:287 msgid "(Used for searching profiles, never shown to others)" msgstr "(Notað við leit að öðrum notendum, aldrei sýnt öðrum)" -#: src/Module/Settings/Profile/Photo/Crop.php:107 -#: src/Module/Settings/Profile/Photo/Crop.php:125 -#: src/Module/Settings/Profile/Photo/Crop.php:143 -#: src/Module/Settings/Profile/Photo/Index.php:100 +#: src/Module/Settings/Profile/Photo/Crop.php:93 +#: src/Module/Settings/Profile/Photo/Crop.php:111 +#: src/Module/Settings/Profile/Photo/Crop.php:129 +#: src/Module/Settings/Profile/Photo/Index.php:86 #, php-format msgid "Image size reduction [%s] failed." msgstr "Myndar minnkun [%s] tókst ekki." -#: src/Module/Settings/Profile/Photo/Crop.php:150 +#: src/Module/Settings/Profile/Photo/Crop.php:136 msgid "" "Shift-reload the page or clear browser cache if the new photo does not " "display immediately." msgstr "Ýta þarf á " -#: src/Module/Settings/Profile/Photo/Crop.php:155 +#: src/Module/Settings/Profile/Photo/Crop.php:141 msgid "Unable to process image" msgstr "Ekki tókst að vinna mynd" -#: src/Module/Settings/Profile/Photo/Crop.php:174 +#: src/Module/Settings/Profile/Photo/Crop.php:160 msgid "Photo not found." msgstr "" -#: src/Module/Settings/Profile/Photo/Crop.php:196 +#: src/Module/Settings/Profile/Photo/Crop.php:182 msgid "Profile picture successfully updated." msgstr "" -#: src/Module/Settings/Profile/Photo/Crop.php:222 -#: src/Module/Settings/Profile/Photo/Crop.php:226 +#: src/Module/Settings/Profile/Photo/Crop.php:208 +#: src/Module/Settings/Profile/Photo/Crop.php:212 msgid "Crop Image" msgstr "Skera af mynd" -#: src/Module/Settings/Profile/Photo/Crop.php:223 +#: src/Module/Settings/Profile/Photo/Crop.php:209 msgid "Please adjust the image cropping for optimum viewing." msgstr "Stilltu afskurð fyrir besta birtingu." -#: src/Module/Settings/Profile/Photo/Crop.php:225 +#: src/Module/Settings/Profile/Photo/Crop.php:211 msgid "Use Image As Is" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:46 +#: src/Module/Settings/Profile/Photo/Index.php:32 msgid "Missing uploaded image." msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:123 +#: src/Module/Settings/Profile/Photo/Index.php:109 msgid "Profile Picture Settings" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:124 +#: src/Module/Settings/Profile/Photo/Index.php:110 msgid "Current Profile Picture" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:125 +#: src/Module/Settings/Profile/Photo/Index.php:111 msgid "Upload Profile Picture" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:126 +#: src/Module/Settings/Profile/Photo/Index.php:112 msgid "Upload Picture:" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:131 +#: src/Module/Settings/Profile/Photo/Index.php:117 msgid "or" msgstr "eða" -#: src/Module/Settings/Profile/Photo/Index.php:133 +#: src/Module/Settings/Profile/Photo/Index.php:119 msgid "skip this step" msgstr "sleppa þessu skrefi" -#: src/Module/Settings/Profile/Photo/Index.php:135 +#: src/Module/Settings/Profile/Photo/Index.php:121 msgid "select a photo from your photo albums" msgstr "velja mynd í myndabókum" -#: src/Module/Settings/RemoveMe.php:76 +#: src/Module/Settings/RemoveMe.php:62 msgid "" "There was a validation error, please make sure you're logged in with the " "account you want to remove and try again." msgstr "" -#: src/Module/Settings/RemoveMe.php:76 +#: src/Module/Settings/RemoveMe.php:62 msgid "If this error persists, please contact your administrator." msgstr "" -#: src/Module/Settings/RemoveMe.php:90 -#: src/Navigation/Notifications/Repository/Notify.php:471 -#: src/Navigation/Notifications/Repository/Notify.php:492 +#: src/Module/Settings/RemoveMe.php:76 +#: src/Navigation/Notifications/Repository/Notify.php:457 +#: src/Navigation/Notifications/Repository/Notify.php:478 msgid "[Friendica System Notify]" msgstr "" -#: src/Module/Settings/RemoveMe.php:90 +#: src/Module/Settings/RemoveMe.php:76 msgid "User deleted their account" msgstr "" -#: src/Module/Settings/RemoveMe.php:91 +#: src/Module/Settings/RemoveMe.php:77 msgid "" "On your Friendica node an user deleted their account. Please ensure that " "their data is removed from the backups." msgstr "" -#: src/Module/Settings/RemoveMe.php:92 +#: src/Module/Settings/RemoveMe.php:78 #, php-format msgid "The user id is %d" msgstr "" -#: src/Module/Settings/RemoveMe.php:105 +#: src/Module/Settings/RemoveMe.php:91 msgid "Your account has been successfully removed. Bye bye!" msgstr "" -#: src/Module/Settings/RemoveMe.php:130 +#: src/Module/Settings/RemoveMe.php:116 msgid "Remove My Account" msgstr "Eyða þessum notanda" -#: src/Module/Settings/RemoveMe.php:131 +#: src/Module/Settings/RemoveMe.php:117 msgid "" "This will completely remove your account. Once this has been done it is not " "recoverable." msgstr "Þetta mun algjörlega eyða notandanum. Þegar þetta hefur verið gert er þetta ekki afturkræft." -#: src/Module/Settings/RemoveMe.php:136 +#: src/Module/Settings/RemoveMe.php:122 msgid "Please enter your password for verification:" msgstr "Sláðu inn aðgangsorð yðar:" -#: src/Module/Settings/Server/Action.php:60 +#: src/Module/Settings/Server/Action.php:46 msgid "Do you want to ignore this server?" msgstr "" -#: src/Module/Settings/Server/Action.php:64 +#: src/Module/Settings/Server/Action.php:50 msgid "Do you want to unignore this server?" msgstr "" -#: src/Module/Settings/Server/Action.php:74 -#: src/Module/Settings/Server/Index.php:104 +#: src/Module/Settings/Server/Action.php:60 +#: src/Module/Settings/Server/Index.php:90 msgid "Remote server settings" msgstr "" -#: src/Module/Settings/Server/Action.php:77 +#: src/Module/Settings/Server/Action.php:63 msgid "Server URL" msgstr "" -#: src/Module/Settings/Server/Index.php:78 +#: src/Module/Settings/Server/Index.php:64 msgid "Settings saved" msgstr "" -#: src/Module/Settings/Server/Index.php:105 +#: src/Module/Settings/Server/Index.php:91 msgid "" "Here you can find all the remote servers you have taken individual " "moderation actions against. For a list of servers your node has blocked, " "please check out the Information page." msgstr "" -#: src/Module/Settings/Server/Index.php:110 +#: src/Module/Settings/Server/Index.php:96 msgid "Delete all your settings for the remote server" msgstr "" -#: src/Module/Settings/Server/Index.php:111 +#: src/Module/Settings/Server/Index.php:97 msgid "Save changes" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:69 -#: src/Module/Settings/TwoFactor/Recovery.php:67 -#: src/Module/Settings/TwoFactor/Trusted.php:70 -#: src/Module/Settings/TwoFactor/Verify.php:72 +#: src/Module/Settings/TwoFactor/AppSpecific.php:55 +#: src/Module/Settings/TwoFactor/Recovery.php:53 +#: src/Module/Settings/TwoFactor/Trusted.php:56 +#: src/Module/Settings/TwoFactor/Verify.php:58 msgid "Please enter your password to access this page." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:87 +#: src/Module/Settings/TwoFactor/AppSpecific.php:73 msgid "App-specific password generation failed: The description is empty." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:90 +#: src/Module/Settings/TwoFactor/AppSpecific.php:76 msgid "" "App-specific password generation failed: This description already exists." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:94 +#: src/Module/Settings/TwoFactor/AppSpecific.php:80 msgid "New app-specific password generated." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:100 +#: src/Module/Settings/TwoFactor/AppSpecific.php:86 msgid "App-specific passwords successfully revoked." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:110 +#: src/Module/Settings/TwoFactor/AppSpecific.php:96 msgid "App-specific password successfully revoked." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:131 +#: src/Module/Settings/TwoFactor/AppSpecific.php:117 msgid "Two-factor app-specific passwords" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:133 +#: src/Module/Settings/TwoFactor/AppSpecific.php:119 msgid "" "App-specific passwords are randomly generated passwords used instead your" " regular password to authenticate your account on third-party applications " "that don't support two-factor authentication.
" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:134 +#: src/Module/Settings/TwoFactor/AppSpecific.php:120 msgid "" "Make sure to copy your new app-specific password now. You won’t be able to " "see it again!" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:138 +#: src/Module/Settings/TwoFactor/AppSpecific.php:124 msgid "Last Used" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:139 +#: src/Module/Settings/TwoFactor/AppSpecific.php:125 msgid "Revoke" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:140 +#: src/Module/Settings/TwoFactor/AppSpecific.php:126 msgid "Revoke All" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:143 +#: src/Module/Settings/TwoFactor/AppSpecific.php:129 msgid "" "When you generate a new app-specific password, you must use it right away, " "it will be shown to you once after you generate it." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:144 +#: src/Module/Settings/TwoFactor/AppSpecific.php:130 msgid "Generate new app-specific password" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:145 +#: src/Module/Settings/TwoFactor/AppSpecific.php:131 msgid "Friendiqa on my Fairphone 2..." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:146 +#: src/Module/Settings/TwoFactor/AppSpecific.php:132 msgid "Generate" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:88 +#: src/Module/Settings/TwoFactor/Index.php:74 msgid "Two-factor authentication successfully disabled." msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:141 +#: src/Module/Settings/TwoFactor/Index.php:127 msgid "" "Use an application on a mobile device to get two-factor authentication " "codes when prompted on login.
" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:145 +#: src/Module/Settings/TwoFactor/Index.php:131 msgid "Authenticator app" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:146 +#: src/Module/Settings/TwoFactor/Index.php:132 msgid "Configured" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:146 +#: src/Module/Settings/TwoFactor/Index.php:132 msgid "Not Configured" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:147 +#: src/Module/Settings/TwoFactor/Index.php:133 msgid "You haven't finished configuring your authenticator app.
" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:148 +#: src/Module/Settings/TwoFactor/Index.php:134 msgid "Your authenticator app is correctly configured.
" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:150 +#: src/Module/Settings/TwoFactor/Index.php:136 msgid "Recovery codes" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:151 +#: src/Module/Settings/TwoFactor/Index.php:137 msgid "Remaining valid codes" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:153 +#: src/Module/Settings/TwoFactor/Index.php:139 msgid "" "These one-use codes can replace an authenticator app code in case you " "have lost access to it.
" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:155 +#: src/Module/Settings/TwoFactor/Index.php:141 msgid "App-specific passwords" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:156 +#: src/Module/Settings/TwoFactor/Index.php:142 msgid "Generated app-specific passwords" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:158 +#: src/Module/Settings/TwoFactor/Index.php:144 msgid "" "These randomly generated passwords allow you to authenticate on apps not " "supporting two-factor authentication.
" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:161 +#: src/Module/Settings/TwoFactor/Index.php:147 msgid "Current password:" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:161 +#: src/Module/Settings/TwoFactor/Index.php:147 msgid "" "You need to provide your current password to change two-factor " "authentication settings." msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:162 +#: src/Module/Settings/TwoFactor/Index.php:148 msgid "Enable two-factor authentication" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:163 +#: src/Module/Settings/TwoFactor/Index.php:149 msgid "Disable two-factor authentication" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:164 +#: src/Module/Settings/TwoFactor/Index.php:150 msgid "Show recovery codes" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:165 +#: src/Module/Settings/TwoFactor/Index.php:151 msgid "Manage app-specific passwords" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:166 +#: src/Module/Settings/TwoFactor/Index.php:152 msgid "Manage trusted browsers" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:167 +#: src/Module/Settings/TwoFactor/Index.php:153 msgid "Finish app configuration" msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:83 +#: src/Module/Settings/TwoFactor/Recovery.php:69 msgid "New recovery codes successfully generated." msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:109 +#: src/Module/Settings/TwoFactor/Recovery.php:95 msgid "Two-factor recovery codes" msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:111 +#: src/Module/Settings/TwoFactor/Recovery.php:97 msgid "" "Recovery codes can be used to access your account in the event you lose " "access to your device and cannot receive two-factor authentication " @@ -11315,68 +11322,68 @@ msgid "" "account.
" msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:113 +#: src/Module/Settings/TwoFactor/Recovery.php:99 msgid "" "When you generate new recovery codes, you must copy the new codes. Your old " "codes won’t work anymore." msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:114 +#: src/Module/Settings/TwoFactor/Recovery.php:100 msgid "Generate new recovery codes" msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:116 +#: src/Module/Settings/TwoFactor/Recovery.php:102 msgid "Next: Verification" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:87 +#: src/Module/Settings/TwoFactor/Trusted.php:73 msgid "Trusted browsers successfully removed." msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:97 +#: src/Module/Settings/TwoFactor/Trusted.php:83 msgid "Trusted browser successfully removed." msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:139 +#: src/Module/Settings/TwoFactor/Trusted.php:125 msgid "Two-factor Trusted Browsers" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:140 +#: src/Module/Settings/TwoFactor/Trusted.php:126 msgid "" "Trusted browsers are individual browsers you chose to skip two-factor " "authentication to access Friendica. Please use this feature sparingly, as it" " can negate the benefit of two-factor authentication." msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:141 +#: src/Module/Settings/TwoFactor/Trusted.php:127 msgid "Device" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:142 +#: src/Module/Settings/TwoFactor/Trusted.php:128 msgid "OS" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:144 +#: src/Module/Settings/TwoFactor/Trusted.php:130 msgid "Trusted" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:145 +#: src/Module/Settings/TwoFactor/Trusted.php:131 msgid "Created At" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:146 +#: src/Module/Settings/TwoFactor/Trusted.php:132 msgid "Last Use" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:148 +#: src/Module/Settings/TwoFactor/Trusted.php:134 msgid "Remove All" msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:94 +#: src/Module/Settings/TwoFactor/Verify.php:80 msgid "Two-factor authentication successfully activated." msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:128 +#: src/Module/Settings/TwoFactor/Verify.php:114 #, php-format msgid "" "Or you can submit the authentication settings manually:
\n" @@ -11396,105 +11403,105 @@ msgid "" "" msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:148 +#: src/Module/Settings/TwoFactor/Verify.php:134 msgid "Two-factor code verification" msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:150 +#: src/Module/Settings/TwoFactor/Verify.php:136 msgid "" "Please scan this QR Code with your authenticator app and submit the " "provided code.
" msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:152 +#: src/Module/Settings/TwoFactor/Verify.php:138 #, php-format msgid "" "Or you can open the following URL in your mobile device:
" msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:159 +#: src/Module/Settings/TwoFactor/Verify.php:145 msgid "Verify code and enable two-factor authentication" msgstr "" -#: src/Module/Settings/UserExport.php:90 +#: src/Module/Settings/UserExport.php:76 msgid "Export account" msgstr "Flytja út notandaaðgang" -#: src/Module/Settings/UserExport.php:90 +#: src/Module/Settings/UserExport.php:76 msgid "" "Export your account info and contacts. Use this to make a backup of your " "account and/or to move it to another server." msgstr "" -#: src/Module/Settings/UserExport.php:91 +#: src/Module/Settings/UserExport.php:77 msgid "Export all" msgstr "Flytja út allt" -#: src/Module/Settings/UserExport.php:91 +#: src/Module/Settings/UserExport.php:77 msgid "" "Export your account info, contacts and all your items as json. Could be a " "very big file, and could take a lot of time. Use this to make a full backup " "of your account (photos are not exported)" msgstr "" -#: src/Module/Settings/UserExport.php:92 +#: src/Module/Settings/UserExport.php:78 msgid "Export Contacts to CSV" msgstr "" -#: src/Module/Settings/UserExport.php:92 +#: src/Module/Settings/UserExport.php:78 msgid "" "Export the list of the accounts you are following as CSV file. Compatible to" " e.g. Mastodon." msgstr "" -#: src/Module/Special/DisplayNotFound.php:35 +#: src/Module/Special/DisplayNotFound.php:21 msgid "The top-level post isn't visible." msgstr "" -#: src/Module/Special/DisplayNotFound.php:36 +#: src/Module/Special/DisplayNotFound.php:22 msgid "The top-level post was deleted." msgstr "" -#: src/Module/Special/DisplayNotFound.php:37 +#: src/Module/Special/DisplayNotFound.php:23 msgid "" "This node has blocked the top-level author or the author of the shared post." msgstr "" -#: src/Module/Special/DisplayNotFound.php:38 +#: src/Module/Special/DisplayNotFound.php:24 msgid "" "You have ignored or blocked the top-level author or the author of the shared" " post." msgstr "" -#: src/Module/Special/DisplayNotFound.php:39 +#: src/Module/Special/DisplayNotFound.php:25 msgid "" "You have ignored the top-level author's server or the shared post author's " "server." msgstr "" -#: src/Module/Special/DisplayNotFound.php:45 +#: src/Module/Special/DisplayNotFound.php:31 msgid "Conversation Not Found" msgstr "" -#: src/Module/Special/DisplayNotFound.php:46 +#: src/Module/Special/DisplayNotFound.php:32 msgid "Unfortunately, the requested conversation isn't available to you." msgstr "" -#: src/Module/Special/DisplayNotFound.php:47 +#: src/Module/Special/DisplayNotFound.php:33 msgid "Possible reasons include:" msgstr "" -#: src/Module/Special/HTTPException.php:78 +#: src/Module/Special/HTTPException.php:64 msgid "Stack trace:" msgstr "" -#: src/Module/Special/HTTPException.php:83 +#: src/Module/Special/HTTPException.php:69 #, php-format msgid "Exception thrown in %s:%d" msgstr "" -#: src/Module/Tos.php:58 src/Module/Tos.php:107 +#: src/Module/Tos.php:44 src/Module/Tos.php:93 msgid "" "At the time of registration, and for providing communications between the " "user account and their contacts, the user has to provide a display name (pen" @@ -11507,14 +11514,14 @@ msgid "" "settings, it is not necessary for communication." msgstr "" -#: src/Module/Tos.php:59 src/Module/Tos.php:108 +#: src/Module/Tos.php:45 src/Module/Tos.php:94 msgid "" "This data is required for communication and is passed on to the nodes of the" " communication partners and is stored there. Users can enter additional " "private data that may be transmitted to the communication partners accounts." msgstr "" -#: src/Module/Tos.php:60 src/Module/Tos.php:109 +#: src/Module/Tos.php:46 src/Module/Tos.php:95 #, php-format msgid "" "At any point in time a logged in user can export their account data from the" @@ -11525,121 +11532,121 @@ msgid "" "from the nodes of the communication partners." msgstr "" -#: src/Module/Tos.php:63 src/Module/Tos.php:106 +#: src/Module/Tos.php:49 src/Module/Tos.php:92 msgid "Privacy Statement" msgstr "Yfirlýsing um gagnaleynd" -#: src/Module/Tos.php:103 +#: src/Module/Tos.php:89 msgid "Rules" msgstr "" -#: src/Module/Update/Display.php:45 +#: src/Module/Update/Display.php:31 msgid "Parameter uri_id is missing." msgstr "" -#: src/Module/Update/Display.php:55 +#: src/Module/Update/Display.php:41 msgid "The requested item doesn't exist or has been deleted." msgstr "" -#: src/Module/User/Delegation.php:146 +#: src/Module/User/Delegation.php:132 #, php-format msgid "You are now logged in as %s" msgstr "" -#: src/Module/User/Delegation.php:185 +#: src/Module/User/Delegation.php:171 msgid "Switch between your accounts" msgstr "" -#: src/Module/User/Delegation.php:186 +#: src/Module/User/Delegation.php:172 msgid "Manage your accounts" msgstr "" -#: src/Module/User/Delegation.php:187 +#: src/Module/User/Delegation.php:173 msgid "" "Toggle between different identities or community/group pages which share " "your account details or which you have been granted \"manage\" permissions" msgstr "Skipta á milli auðkenna eða hópa- / stjörnunotanda sem deila þínum aðgangs upplýsingum eða þér verið úthlutað \"umsýslu\" réttindum." -#: src/Module/User/Delegation.php:188 +#: src/Module/User/Delegation.php:174 msgid "Select an identity to manage: " msgstr "Veldu notanda til að sýsla með:" -#: src/Module/User/Import.php:104 +#: src/Module/User/Import.php:90 msgid "User imports on closed servers can only be done by an administrator." msgstr "" -#: src/Module/User/Import.php:120 +#: src/Module/User/Import.php:106 msgid "Move account" msgstr "Flytja aðgang" -#: src/Module/User/Import.php:121 +#: src/Module/User/Import.php:107 msgid "You can import an account from another Friendica server." msgstr "Þú getur flutt inn notandaaðgang frá öðrum Friendica-þjóni." -#: src/Module/User/Import.php:122 +#: src/Module/User/Import.php:108 msgid "" "You need to export your account from the old server and upload it here. We " "will recreate your old account here with all your contacts. We will try also" " to inform your friends that you moved here." msgstr "" -#: src/Module/User/Import.php:123 +#: src/Module/User/Import.php:109 msgid "" "This feature is experimental. We can't import contacts from the OStatus " "network (GNU Social/Statusnet) or from Diaspora" msgstr "" -#: src/Module/User/Import.php:124 +#: src/Module/User/Import.php:110 msgid "Account file" msgstr "Notandaaðgangsskrá" -#: src/Module/User/Import.php:124 +#: src/Module/User/Import.php:110 msgid "" "To export your account, go to \"Settings->Export your personal data\" and " "select \"Export account\"" msgstr "" -#: src/Module/User/Import.php:218 +#: src/Module/User/Import.php:204 msgid "Error decoding account file" msgstr "" -#: src/Module/User/Import.php:223 +#: src/Module/User/Import.php:209 msgid "Error! No version data in file! This is not a Friendica account file?" msgstr "" -#: src/Module/User/Import.php:231 +#: src/Module/User/Import.php:217 #, php-format msgid "User '%s' already exists on this server!" msgstr "" -#: src/Module/User/Import.php:268 +#: src/Module/User/Import.php:254 msgid "User creation error" msgstr "" -#: src/Module/User/Import.php:317 +#: src/Module/User/Import.php:303 #, php-format msgid "%d contact not imported" msgid_plural "%d contacts not imported" msgstr[0] "" msgstr[1] "" -#: src/Module/User/Import.php:366 +#: src/Module/User/Import.php:352 msgid "User profile creation error" msgstr "" -#: src/Module/User/Import.php:417 +#: src/Module/User/Import.php:403 msgid "Done. You can now login with your username and password" msgstr "" -#: src/Module/Welcome.php:44 +#: src/Module/Welcome.php:30 msgid "Welcome to Friendica" msgstr "Velkomin(n) á Friendica" -#: src/Module/Welcome.php:45 +#: src/Module/Welcome.php:31 msgid "New Member Checklist" msgstr "Gátlisti nýs notanda" -#: src/Module/Welcome.php:46 +#: src/Module/Welcome.php:32 msgid "" "We would like to offer some tips and links to help make your experience " "enjoyable. Click any item to visit the relevant page. A link to this page " @@ -11647,33 +11654,33 @@ msgid "" "registration and then will quietly disappear." msgstr "" -#: src/Module/Welcome.php:48 +#: src/Module/Welcome.php:34 msgid "Getting Started" msgstr "Til að komast í gang" -#: src/Module/Welcome.php:49 +#: src/Module/Welcome.php:35 msgid "Friendica Walk-Through" msgstr "Leiðarvísir Friendica" -#: src/Module/Welcome.php:50 +#: src/Module/Welcome.php:36 msgid "" "On your Quick Start page - find a brief introduction to your " "profile and network tabs, make some new connections, and find some groups to" " join." msgstr "" -#: src/Module/Welcome.php:53 +#: src/Module/Welcome.php:39 msgid "Go to Your Settings" msgstr "Farðu í stillingarnar þínar" -#: src/Module/Welcome.php:54 +#: src/Module/Welcome.php:40 msgid "" "On your Settings page - change your initial password. Also make a " "note of your Identity Address. This looks just like an email address - and " "will be useful in making friends on the free social web." msgstr "" -#: src/Module/Welcome.php:55 +#: src/Module/Welcome.php:41 msgid "" "Review the other settings, particularly the privacy settings. An unpublished" " directory listing is like having an unlisted phone number. In general, you " @@ -11681,77 +11688,77 @@ msgid "" "potential friends know exactly how to find you." msgstr "Yfirfarðu aðrar stillingar, sérstaklega gagnaleyndarstillingar. Óútgefin forsíða er einsog óskráð símanúmer. Sem þýðir að líklega viltu gefa út forsíðuna þína - nema að allir vinir þínir og tilvonandi vinir viti nákvæmlega hvernig á að finna þig." -#: src/Module/Welcome.php:59 +#: src/Module/Welcome.php:45 msgid "" "Upload a profile photo if you have not done so already. Studies have shown " "that people with real photos of themselves are ten times more likely to make" " friends than people who do not." msgstr "Að hlaða upp forsíðu mynd ef þú hefur ekki þegar gert það. Rannsóknir sýna að fólk sem hefur alvöru mynd af sér er tíu sinnum líklegra til að eignast vini en fólk sem ekki hefur mynd." -#: src/Module/Welcome.php:60 +#: src/Module/Welcome.php:46 msgid "Edit Your Profile" msgstr "Breyta forsíðunni þinni" -#: src/Module/Welcome.php:61 +#: src/Module/Welcome.php:47 msgid "" "Edit your default profile to your liking. Review the " "settings for hiding your list of friends and hiding the profile from unknown" " visitors." msgstr "Breyttu sjálfgefnu forsíðunni einsog þú villt. Yfirfarðu stillingu til að fela vinalista á forsíðu og stillingu til að fela forsíðu fyrir ókunnum." -#: src/Module/Welcome.php:62 +#: src/Module/Welcome.php:48 msgid "Profile Keywords" msgstr "Stikkorð notandans" -#: src/Module/Welcome.php:63 +#: src/Module/Welcome.php:49 msgid "" "Set some public keywords for your profile which describe your interests. We " "may be able to find other people with similar interests and suggest " "friendships." msgstr "" -#: src/Module/Welcome.php:65 +#: src/Module/Welcome.php:51 msgid "Connecting" msgstr "Tengist" -#: src/Module/Welcome.php:67 +#: src/Module/Welcome.php:53 msgid "Importing Emails" msgstr "Flyt inn pósta" -#: src/Module/Welcome.php:68 +#: src/Module/Welcome.php:54 msgid "" "Enter your email access information on your Connector Settings page if you " "wish to import and interact with friends or mailing lists from your email " "INBOX" msgstr "Fylltu út aðgangsupplýsingar póstfangsins þíns á Tengistillingasíðunni ef þú vilt sækja tölvupóst og eiga samskipti við vini eða póstlista úr innhólfi tölvupóstsins þíns" -#: src/Module/Welcome.php:69 +#: src/Module/Welcome.php:55 msgid "Go to Your Contacts Page" msgstr "Fara yfir á tengiliðasíðuna" -#: src/Module/Welcome.php:70 +#: src/Module/Welcome.php:56 msgid "" "Your Contacts page is your gateway to managing friendships and connecting " "with friends on other networks. Typically you enter their address or site " "URL in the Add New Contact dialog." msgstr "Tengiliðasíðan er gáttin þín til að sýsla með vinasambönd og tengjast við vini á öðrum netum. Oftast setur þú vistfang eða slóð þeirra í Bæta við tengilið glugganum." -#: src/Module/Welcome.php:71 +#: src/Module/Welcome.php:57 msgid "Go to Your Site's Directory" msgstr "" -#: src/Module/Welcome.php:72 +#: src/Module/Welcome.php:58 msgid "" "The Directory page lets you find other people in this network or other " "federated sites. Look for a Connect or Follow link on " "their profile page. Provide your own Identity Address if requested." msgstr "Tengiliðalistinn er góð leit til að finna fólk á samfélagsnetinu eða öðrum sambandsnetum. Leitaðu að Tengjast/Connect eða Fylgja/Follow tenglum á forsíðunni þeirra. Mögulega þarftu að gefa upp auðkennisslóðina þína." -#: src/Module/Welcome.php:73 +#: src/Module/Welcome.php:59 msgid "Finding New People" msgstr "Finna nýtt fólk" -#: src/Module/Welcome.php:74 +#: src/Module/Welcome.php:60 msgid "" "On the side panel of the Contacts page are several tools to find new " "friends. We can match people by interest, look up people by name or " @@ -11760,412 +11767,408 @@ msgid "" "hours." msgstr "" -#: src/Module/Welcome.php:77 +#: src/Module/Welcome.php:63 msgid "Add Your Contacts To Circle" msgstr "" -#: src/Module/Welcome.php:78 +#: src/Module/Welcome.php:64 msgid "" "Once you have made some friends, organize them into private conversation " "circles from the sidebar of your Contacts page and then you can interact " "with each circle privately on your Network page." msgstr "" -#: src/Module/Welcome.php:80 +#: src/Module/Welcome.php:66 msgid "Why Aren't My Posts Public?" msgstr "Hvers vegna eru færslurnar mínar ekki opinberar?" -#: src/Module/Welcome.php:81 +#: src/Module/Welcome.php:67 msgid "" "Friendica respects your privacy. By default, your posts will only show up to" " people you've added as friends. For more information, see the help section " "from the link above." msgstr "Friendica virðir gagnaleynd þína. Sjálfgefið er að færslurnar þínar birtast einungis þeim sem þú hefur bætt við sem vinum. Til að sjá nánari upplýsingar, skoðaðu þá hjálparhlutann með því að smella á tengilinn hér fyrir ofan." -#: src/Module/Welcome.php:83 +#: src/Module/Welcome.php:69 msgid "Getting Help" msgstr "Til að fá hjálp" -#: src/Module/Welcome.php:84 +#: src/Module/Welcome.php:70 msgid "Go to the Help Section" msgstr "Fara í hjálparhlutann" -#: src/Module/Welcome.php:85 +#: src/Module/Welcome.php:71 msgid "" "Our help pages may be consulted for detail on other program" " features and resources." msgstr "Hægt er að styðjast við Hjálp síðuna til að fá leiðbeiningar um aðra eiginleika." -#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:161 +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:147 msgid "{0} wants to follow you" msgstr "" -#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:163 +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:149 msgid "{0} has started following you" msgstr "" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:96 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:82 #, php-format msgid "%s liked %s's post" msgstr "%s líkaði færsla hjá %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:108 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:94 #, php-format msgid "%s disliked %s's post" msgstr "%s mislíkaði færsla hjá %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:120 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:106 #, php-format msgid "%s is attending %s's event" msgstr "" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:132 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:118 #, php-format msgid "%s is not attending %s's event" msgstr "" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:144 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:130 #, php-format msgid "%s may attending %s's event" msgstr "" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:174 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:160 #, php-format msgid "%s is now friends with %s" msgstr "%s er nú vinur %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:341 -#: src/Navigation/Notifications/Factory/FormattedNotify.php:379 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:327 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:365 #, php-format msgid "%s commented on %s's post" msgstr "%s athugasemd við %s's færslu" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:378 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:364 #, php-format msgid "%s created a new post" msgstr "%s bjó til færslu" -#: src/Navigation/Notifications/Factory/Introduction.php:132 +#: src/Navigation/Notifications/Factory/Introduction.php:118 msgid "Friend Suggestion" msgstr "Vina tillaga" -#: src/Navigation/Notifications/Factory/Introduction.php:158 +#: src/Navigation/Notifications/Factory/Introduction.php:144 msgid "Friend/Connect Request" msgstr "Vinabeiðni/Tengibeiðni" -#: src/Navigation/Notifications/Factory/Introduction.php:158 -msgid "New Follower" -msgstr "Nýr fylgjandi" - -#: src/Navigation/Notifications/Factory/Notification.php:134 +#: src/Navigation/Notifications/Factory/Notification.php:120 #, php-format msgid "%1$s wants to follow you" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:136 +#: src/Navigation/Notifications/Factory/Notification.php:122 #, php-format msgid "%1$s has started following you" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:208 +#: src/Navigation/Notifications/Factory/Notification.php:194 #, php-format msgid "%1$s liked your comment on %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:211 +#: src/Navigation/Notifications/Factory/Notification.php:197 #, php-format msgid "%1$s liked your post %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:218 +#: src/Navigation/Notifications/Factory/Notification.php:204 #, php-format msgid "%1$s disliked your comment on %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:221 +#: src/Navigation/Notifications/Factory/Notification.php:207 #, php-format msgid "%1$s disliked your post %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:228 +#: src/Navigation/Notifications/Factory/Notification.php:214 #, php-format msgid "%1$s shared your comment %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:231 -#: src/Navigation/Notifications/Factory/Notification.php:316 +#: src/Navigation/Notifications/Factory/Notification.php:217 +#: src/Navigation/Notifications/Factory/Notification.php:302 #, php-format msgid "%1$s shared your post %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:235 -#: src/Navigation/Notifications/Factory/Notification.php:305 +#: src/Navigation/Notifications/Factory/Notification.php:221 +#: src/Navigation/Notifications/Factory/Notification.php:291 #, php-format msgid "%1$s shared the post %2$s from %3$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:237 -#: src/Navigation/Notifications/Factory/Notification.php:307 +#: src/Navigation/Notifications/Factory/Notification.php:223 +#: src/Navigation/Notifications/Factory/Notification.php:293 #, php-format msgid "%1$s shared a post from %3$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:239 -#: src/Navigation/Notifications/Factory/Notification.php:309 +#: src/Navigation/Notifications/Factory/Notification.php:225 +#: src/Navigation/Notifications/Factory/Notification.php:295 #, php-format msgid "%1$s shared the post %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:241 -#: src/Navigation/Notifications/Factory/Notification.php:311 +#: src/Navigation/Notifications/Factory/Notification.php:227 +#: src/Navigation/Notifications/Factory/Notification.php:297 #, php-format msgid "%1$s shared a post" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:249 +#: src/Navigation/Notifications/Factory/Notification.php:235 #, php-format msgid "%1$s wants to attend your event %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:256 +#: src/Navigation/Notifications/Factory/Notification.php:242 #, php-format msgid "%1$s does not want to attend your event %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:263 +#: src/Navigation/Notifications/Factory/Notification.php:249 #, php-format msgid "%1$s maybe wants to attend your event %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:270 +#: src/Navigation/Notifications/Factory/Notification.php:256 #, php-format msgid "%1$s tagged you on %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:274 +#: src/Navigation/Notifications/Factory/Notification.php:260 #, php-format msgid "%1$s replied to you on %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:278 +#: src/Navigation/Notifications/Factory/Notification.php:264 #, php-format msgid "%1$s commented in your thread %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:282 +#: src/Navigation/Notifications/Factory/Notification.php:268 #, php-format msgid "%1$s commented on your comment %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:289 +#: src/Navigation/Notifications/Factory/Notification.php:275 #, php-format msgid "%1$s commented in their thread %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:291 +#: src/Navigation/Notifications/Factory/Notification.php:277 #, php-format msgid "%1$s commented in their thread" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:293 +#: src/Navigation/Notifications/Factory/Notification.php:279 #, php-format msgid "%1$s commented in the thread %2$s from %3$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:295 +#: src/Navigation/Notifications/Factory/Notification.php:281 #, php-format msgid "%1$s commented in the thread from %3$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:300 +#: src/Navigation/Notifications/Factory/Notification.php:286 #, php-format msgid "%1$s commented on your thread %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:225 -#: src/Navigation/Notifications/Repository/Notify.php:754 +#: src/Navigation/Notifications/Repository/Notify.php:211 +#: src/Navigation/Notifications/Repository/Notify.php:740 msgid "[Friendica:Notify]" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:293 +#: src/Navigation/Notifications/Repository/Notify.php:279 #, php-format msgid "%s New mail received at %s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:295 +#: src/Navigation/Notifications/Repository/Notify.php:281 #, php-format msgid "%1$s sent you a new private message at %2$s." msgstr "%1$s sendi þér ný einkaskilaboð %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:296 +#: src/Navigation/Notifications/Repository/Notify.php:282 msgid "a private message" msgstr "einkaskilaboð" -#: src/Navigation/Notifications/Repository/Notify.php:296 +#: src/Navigation/Notifications/Repository/Notify.php:282 #, php-format msgid "%1$s sent you %2$s." msgstr "%1$s sendi þér %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:298 +#: src/Navigation/Notifications/Repository/Notify.php:284 #, php-format msgid "Please visit %s to view and/or reply to your private messages." msgstr "Farðu á %s til að skoða og/eða svara einkaskilaboðunum þínum." -#: src/Navigation/Notifications/Repository/Notify.php:328 +#: src/Navigation/Notifications/Repository/Notify.php:314 #, php-format msgid "%1$s commented on %2$s's %3$s %4$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:333 +#: src/Navigation/Notifications/Repository/Notify.php:319 #, php-format msgid "%1$s commented on your %2$s %3$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:337 +#: src/Navigation/Notifications/Repository/Notify.php:323 #, php-format msgid "%1$s commented on their %2$s %3$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:341 -#: src/Navigation/Notifications/Repository/Notify.php:788 +#: src/Navigation/Notifications/Repository/Notify.php:327 +#: src/Navigation/Notifications/Repository/Notify.php:774 #, php-format msgid "%1$s Comment to conversation #%2$d by %3$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:343 +#: src/Navigation/Notifications/Repository/Notify.php:329 #, php-format msgid "%s commented on an item/conversation you have been following." msgstr "%s skrifaði athugasemd á færslu/samtal sem þú ert að fylgja." -#: src/Navigation/Notifications/Repository/Notify.php:347 -#: src/Navigation/Notifications/Repository/Notify.php:362 -#: src/Navigation/Notifications/Repository/Notify.php:814 +#: src/Navigation/Notifications/Repository/Notify.php:333 +#: src/Navigation/Notifications/Repository/Notify.php:348 +#: src/Navigation/Notifications/Repository/Notify.php:800 #, php-format msgid "Please visit %s to view and/or reply to the conversation." msgstr "Farðu á %s til að skoða og/eða svara samtali." -#: src/Navigation/Notifications/Repository/Notify.php:354 +#: src/Navigation/Notifications/Repository/Notify.php:340 #, php-format msgid "%s %s posted to your profile wall" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:356 +#: src/Navigation/Notifications/Repository/Notify.php:342 #, php-format msgid "%1$s posted to your profile wall at %2$s" msgstr "%1$s skrifaði á vegginn þinn %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:357 +#: src/Navigation/Notifications/Repository/Notify.php:343 #, php-format msgid "%1$s posted to [url=%2$s]your wall[/url]" msgstr "%1$s skrifaði á [url=%2$s]vegginn þinn[/url]" -#: src/Navigation/Notifications/Repository/Notify.php:370 +#: src/Navigation/Notifications/Repository/Notify.php:356 #, php-format msgid "%s Introduction received" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:372 +#: src/Navigation/Notifications/Repository/Notify.php:358 #, php-format msgid "You've received an introduction from '%1$s' at %2$s" msgstr "Þú tókst við kynningu frá '%1$s', %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:373 +#: src/Navigation/Notifications/Repository/Notify.php:359 #, php-format msgid "You've received [url=%1$s]an introduction[/url] from %2$s." msgstr "Þú tókst við [url=%1$s]kynningu[/url] frá %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:378 -#: src/Navigation/Notifications/Repository/Notify.php:424 +#: src/Navigation/Notifications/Repository/Notify.php:364 +#: src/Navigation/Notifications/Repository/Notify.php:410 #, php-format msgid "You may visit their profile at %s" msgstr "Þú getur heimsótt síðuna þeirra á %s" -#: src/Navigation/Notifications/Repository/Notify.php:380 +#: src/Navigation/Notifications/Repository/Notify.php:366 #, php-format msgid "Please visit %s to approve or reject the introduction." msgstr "Farðu á %s til að samþykkja eða hunsa þessa kynningu." -#: src/Navigation/Notifications/Repository/Notify.php:387 +#: src/Navigation/Notifications/Repository/Notify.php:373 #, php-format msgid "%s A new person is sharing with you" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:389 -#: src/Navigation/Notifications/Repository/Notify.php:390 +#: src/Navigation/Notifications/Repository/Notify.php:375 +#: src/Navigation/Notifications/Repository/Notify.php:376 #, php-format msgid "%1$s is sharing with you at %2$s" msgstr "%1$s er að deila með þér, %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:397 +#: src/Navigation/Notifications/Repository/Notify.php:383 #, php-format msgid "%s You have a new follower" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:399 -#: src/Navigation/Notifications/Repository/Notify.php:400 +#: src/Navigation/Notifications/Repository/Notify.php:385 +#: src/Navigation/Notifications/Repository/Notify.php:386 #, php-format msgid "You have a new follower at %2$s : %1$s" msgstr "Þú hefur nýjan fylgjanda á %2$s : %1$s" -#: src/Navigation/Notifications/Repository/Notify.php:413 +#: src/Navigation/Notifications/Repository/Notify.php:399 #, php-format msgid "%s Friend suggestion received" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:415 +#: src/Navigation/Notifications/Repository/Notify.php:401 #, php-format msgid "You've received a friend suggestion from '%1$s' at %2$s" msgstr "Þér hefur borist uppástunga um vin frá '%1$s' kl. %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:416 +#: src/Navigation/Notifications/Repository/Notify.php:402 #, php-format msgid "" "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." msgstr "Þér hefur borist [url=%1$s]uppástunga um vin[/url] fyrir %2$s frá %3$s." -#: src/Navigation/Notifications/Repository/Notify.php:422 +#: src/Navigation/Notifications/Repository/Notify.php:408 msgid "Name:" msgstr "Nafn:" -#: src/Navigation/Notifications/Repository/Notify.php:423 +#: src/Navigation/Notifications/Repository/Notify.php:409 msgid "Photo:" msgstr "Mynd:" -#: src/Navigation/Notifications/Repository/Notify.php:426 +#: src/Navigation/Notifications/Repository/Notify.php:412 #, php-format msgid "Please visit %s to approve or reject the suggestion." msgstr "Farðu á %s til að samþykkja eða hunsa þessa uppástungu." -#: src/Navigation/Notifications/Repository/Notify.php:434 -#: src/Navigation/Notifications/Repository/Notify.php:449 +#: src/Navigation/Notifications/Repository/Notify.php:420 +#: src/Navigation/Notifications/Repository/Notify.php:435 #, php-format msgid "%s Connection accepted" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:436 -#: src/Navigation/Notifications/Repository/Notify.php:451 +#: src/Navigation/Notifications/Repository/Notify.php:422 +#: src/Navigation/Notifications/Repository/Notify.php:437 #, php-format msgid "'%1$s' has accepted your connection request at %2$s" msgstr "'%1$s' samþykkti tengibeiðni þína %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:437 -#: src/Navigation/Notifications/Repository/Notify.php:452 +#: src/Navigation/Notifications/Repository/Notify.php:423 +#: src/Navigation/Notifications/Repository/Notify.php:438 #, php-format msgid "%2$s has accepted your [url=%1$s]connection request[/url]." msgstr "%2$s samþykkti [url=%1$s]tengibeiðni þína[/url]." -#: src/Navigation/Notifications/Repository/Notify.php:442 +#: src/Navigation/Notifications/Repository/Notify.php:428 msgid "" "You are now mutual friends and may exchange status updates, photos, and " "email without restriction." msgstr "Þið eruð núna gagnkvæmir vinir og getið skipst á stöðuuppfærslum, myndum og tölvupósti án hindrana." -#: src/Navigation/Notifications/Repository/Notify.php:444 +#: src/Navigation/Notifications/Repository/Notify.php:430 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:457 +#: src/Navigation/Notifications/Repository/Notify.php:443 #, php-format msgid "" "'%1$s' has chosen to accept you a fan, which restricts some forms of " @@ -12174,34 +12177,34 @@ msgid "" "automatically." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:459 +#: src/Navigation/Notifications/Repository/Notify.php:445 #, php-format msgid "" "'%1$s' may choose to extend this into a two-way or more permissive " "relationship in the future." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:461 +#: src/Navigation/Notifications/Repository/Notify.php:447 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:471 +#: src/Navigation/Notifications/Repository/Notify.php:457 msgid "registration request" msgstr "beiðni um skráningu" -#: src/Navigation/Notifications/Repository/Notify.php:473 +#: src/Navigation/Notifications/Repository/Notify.php:459 #, php-format msgid "You've received a registration request from '%1$s' at %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:474 +#: src/Navigation/Notifications/Repository/Notify.php:460 #, php-format msgid "You've received a [url=%1$s]registration request[/url] from %2$s." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:479 -#: src/Navigation/Notifications/Repository/Notify.php:500 +#: src/Navigation/Notifications/Repository/Notify.php:465 +#: src/Navigation/Notifications/Repository/Notify.php:486 #, php-format msgid "" "Display Name:\t%s\n" @@ -12209,768 +12212,755 @@ msgid "" "Login Name:\t%s (%s)" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:485 +#: src/Navigation/Notifications/Repository/Notify.php:471 #, php-format msgid "Please visit %s to approve or reject the request." msgstr "Farðu á %s til að samþykkja eða hunsa þessa beiðni." -#: src/Navigation/Notifications/Repository/Notify.php:492 +#: src/Navigation/Notifications/Repository/Notify.php:478 msgid "new registration" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:494 +#: src/Navigation/Notifications/Repository/Notify.php:480 #, php-format msgid "You've received a new registration from '%1$s' at %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:495 +#: src/Navigation/Notifications/Repository/Notify.php:481 #, php-format msgid "You've received a [url=%1$s]new registration[/url] from %2$s." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:506 +#: src/Navigation/Notifications/Repository/Notify.php:492 #, php-format msgid "Please visit %s to have a look at the new registration." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:782 +#: src/Navigation/Notifications/Repository/Notify.php:768 #, php-format msgid "%s %s tagged you" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:785 +#: src/Navigation/Notifications/Repository/Notify.php:771 #, php-format msgid "%s %s shared a new post" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:793 +#: src/Navigation/Notifications/Repository/Notify.php:779 #, php-format msgid "%1$s %2$s liked your post #%3$d" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:796 +#: src/Navigation/Notifications/Repository/Notify.php:782 #, php-format msgid "%1$s %2$s liked your comment on #%3$d" msgstr "" -#: src/Object/EMail/ItemCCEMail.php:42 +#: src/Object/EMail/ItemCCEMail.php:28 #, php-format msgid "" "This message was sent to you by %s, a member of the Friendica social " "network." msgstr "Skilaboðið sendi %s, notandi á Friendica samfélagsnetinu." -#: src/Object/EMail/ItemCCEMail.php:44 +#: src/Object/EMail/ItemCCEMail.php:30 #, php-format msgid "You may visit them online at %s" msgstr "Þú getur heimsótt þau á netinu á %s" -#: src/Object/EMail/ItemCCEMail.php:45 +#: src/Object/EMail/ItemCCEMail.php:31 msgid "" "Please contact the sender by replying to this post if you do not wish to " "receive these messages." msgstr "Hafðu samband við sendanda með því að svara á þessari færslu ef þú villt ekki fá þessi skilaboð." -#: src/Object/EMail/ItemCCEMail.php:49 +#: src/Object/EMail/ItemCCEMail.php:35 #, php-format msgid "%s posted an update." msgstr "%s hefur sent uppfærslu." -#: src/Object/Post.php:138 +#: src/Object/Post.php:124 msgid "Private Message" msgstr "Einkaskilaboð" -#: src/Object/Post.php:142 +#: src/Object/Post.php:128 msgid "Public Message" msgstr "" -#: src/Object/Post.php:146 +#: src/Object/Post.php:132 msgid "Unlisted Message" msgstr "" -#: src/Object/Post.php:182 +#: src/Object/Post.php:168 msgid "This entry was edited" msgstr "Þessari færslu var breytt" -#: src/Object/Post.php:210 +#: src/Object/Post.php:196 msgid "Connector Message" msgstr "" -#: src/Object/Post.php:239 src/Object/Post.php:241 +#: src/Object/Post.php:225 src/Object/Post.php:227 msgid "Edit" msgstr "Breyta" -#: src/Object/Post.php:275 +#: src/Object/Post.php:261 msgid "Delete globally" msgstr "" -#: src/Object/Post.php:275 +#: src/Object/Post.php:261 msgid "Remove locally" msgstr "" -#: src/Object/Post.php:282 +#: src/Object/Post.php:268 #, php-format msgid "Block %s" msgstr "" -#: src/Object/Post.php:287 +#: src/Object/Post.php:273 #, php-format msgid "Ignore %s" msgstr "" -#: src/Object/Post.php:292 +#: src/Object/Post.php:278 #, php-format msgid "Collapse %s" msgstr "" -#: src/Object/Post.php:296 +#: src/Object/Post.php:282 msgid "Report post" msgstr "" -#: src/Object/Post.php:307 +#: src/Object/Post.php:293 msgid "Save to folder" msgstr "" -#: src/Object/Post.php:347 +#: src/Object/Post.php:333 msgid "I will attend" msgstr "Ég mæti" -#: src/Object/Post.php:347 +#: src/Object/Post.php:333 msgid "I will not attend" msgstr "Ég mæti ekki" -#: src/Object/Post.php:347 +#: src/Object/Post.php:333 msgid "I might attend" msgstr "Ég gæti mætt" -#: src/Object/Post.php:394 +#: src/Object/Post.php:380 msgid "Ignore thread" msgstr "" -#: src/Object/Post.php:395 +#: src/Object/Post.php:381 msgid "Unignore thread" msgstr "" -#: src/Object/Post.php:396 +#: src/Object/Post.php:382 msgid "Toggle ignore status" msgstr "" -#: src/Object/Post.php:406 +#: src/Object/Post.php:392 msgid "Add star" msgstr "" -#: src/Object/Post.php:407 +#: src/Object/Post.php:393 msgid "Remove star" msgstr "" -#: src/Object/Post.php:408 +#: src/Object/Post.php:394 msgid "Toggle star status" msgstr "" -#: src/Object/Post.php:419 +#: src/Object/Post.php:405 msgid "Pin" msgstr "" -#: src/Object/Post.php:420 +#: src/Object/Post.php:406 msgid "Unpin" msgstr "" -#: src/Object/Post.php:421 +#: src/Object/Post.php:407 msgid "Toggle pin status" msgstr "" -#: src/Object/Post.php:424 +#: src/Object/Post.php:410 msgid "Pinned" msgstr "" -#: src/Object/Post.php:429 +#: src/Object/Post.php:415 msgid "Add tag" msgstr "" -#: src/Object/Post.php:444 +#: src/Object/Post.php:430 msgid "Quote share this" msgstr "" -#: src/Object/Post.php:444 +#: src/Object/Post.php:430 msgid "Quote Share" msgstr "" -#: src/Object/Post.php:447 +#: src/Object/Post.php:433 msgid "Reshare this" msgstr "" -#: src/Object/Post.php:447 +#: src/Object/Post.php:433 msgid "Reshare" msgstr "" -#: src/Object/Post.php:448 +#: src/Object/Post.php:434 msgid "Cancel your Reshare" msgstr "" -#: src/Object/Post.php:448 +#: src/Object/Post.php:434 msgid "Unshare" msgstr "" -#: src/Object/Post.php:492 +#: src/Object/Post.php:478 #, php-format msgid "%s (Received %s)" msgstr "" -#: src/Object/Post.php:498 +#: src/Object/Post.php:484 msgid "Comment this item on your system" msgstr "" -#: src/Object/Post.php:498 +#: src/Object/Post.php:484 msgid "Remote comment" msgstr "" -#: src/Object/Post.php:520 +#: src/Object/Post.php:506 msgid "Share via ..." msgstr "" -#: src/Object/Post.php:520 +#: src/Object/Post.php:506 msgid "Share via external services" msgstr "" -#: src/Object/Post.php:527 +#: src/Object/Post.php:513 msgid "Unknown parent" msgstr "" -#: src/Object/Post.php:531 +#: src/Object/Post.php:517 #, php-format msgid "in reply to %s" msgstr "" -#: src/Object/Post.php:533 +#: src/Object/Post.php:519 msgid "Parent is probably private or not federated." msgstr "" -#: src/Object/Post.php:557 +#: src/Object/Post.php:543 msgid "to" msgstr "við" -#: src/Object/Post.php:558 +#: src/Object/Post.php:544 msgid "via" msgstr "gegnum" -#: src/Object/Post.php:559 +#: src/Object/Post.php:545 msgid "Wall-to-Wall" msgstr "vegg við vegg" -#: src/Object/Post.php:560 +#: src/Object/Post.php:546 msgid "via Wall-To-Wall:" msgstr "gegnum vegg við vegg" -#: src/Object/Post.php:613 +#: src/Object/Post.php:599 #, php-format msgid "Reply to %s" msgstr "" -#: src/Object/Post.php:616 +#: src/Object/Post.php:602 msgid "More" msgstr "" -#: src/Object/Post.php:635 +#: src/Object/Post.php:621 msgid "Notifier task is pending" msgstr "" -#: src/Object/Post.php:636 +#: src/Object/Post.php:622 msgid "Delivery to remote servers is pending" msgstr "" -#: src/Object/Post.php:637 +#: src/Object/Post.php:623 msgid "Delivery to remote servers is underway" msgstr "" -#: src/Object/Post.php:638 +#: src/Object/Post.php:624 msgid "Delivery to remote servers is mostly done" msgstr "" -#: src/Object/Post.php:639 +#: src/Object/Post.php:625 msgid "Delivery to remote servers is done" msgstr "" -#: src/Object/Post.php:661 +#: src/Object/Post.php:647 #, php-format msgid "%d comment" msgid_plural "%d comments" msgstr[0] "%d ummæli" msgstr[1] "%d ummæli" -#: src/Object/Post.php:662 +#: src/Object/Post.php:648 msgid "Show more" msgstr "" -#: src/Object/Post.php:663 +#: src/Object/Post.php:649 msgid "Show fewer" msgstr "" -#: src/Object/Post.php:700 +#: src/Object/Post.php:686 #, php-format msgid "Reshared by: %s" msgstr "" -#: src/Object/Post.php:705 +#: src/Object/Post.php:691 #, php-format msgid "Viewed by: %s" msgstr "" -#: src/Object/Post.php:710 +#: src/Object/Post.php:696 #, php-format msgid "Read by: %s" msgstr "" -#: src/Object/Post.php:715 +#: src/Object/Post.php:701 #, php-format msgid "Liked by: %s" msgstr "" -#: src/Object/Post.php:720 +#: src/Object/Post.php:706 #, php-format msgid "Disliked by: %s" msgstr "" -#: src/Object/Post.php:725 +#: src/Object/Post.php:711 #, php-format msgid "Attended by: %s" msgstr "" -#: src/Object/Post.php:730 +#: src/Object/Post.php:716 #, php-format msgid "Maybe attended by: %s" msgstr "" -#: src/Object/Post.php:735 +#: src/Object/Post.php:721 #, php-format msgid "Not attended by: %s" msgstr "" -#: src/Object/Post.php:740 +#: src/Object/Post.php:726 #, php-format msgid "Commented by: %s" msgstr "" -#: src/Object/Post.php:745 +#: src/Object/Post.php:731 #, php-format msgid "Reacted with %s by: %s" msgstr "" -#: src/Object/Post.php:768 +#: src/Object/Post.php:754 #, php-format msgid "Quote shared by: %s" msgstr "" -#: src/Protocol/ActivityPub/Receiver.php:568 +#: src/Protocol/ActivityPub/Receiver.php:557 msgid "Chat" msgstr "" -#: src/Protocol/Delivery.php:544 +#: src/Protocol/Delivery.php:530 msgid "(no subject)" msgstr "" -#: src/Protocol/OStatus.php:1392 -#, php-format -msgid "%s is now following %s." -msgstr "%s fylgist núna með %s." - -#: src/Protocol/OStatus.php:1393 -msgid "following" -msgstr "fylgist með" - -#: src/Protocol/OStatus.php:1396 -#, php-format -msgid "%s stopped following %s." -msgstr "" - -#: src/Protocol/OStatus.php:1397 -msgid "stopped following" -msgstr "hætt að fylgja" - -#: src/Render/FriendicaSmartyEngine.php:56 +#: src/Render/FriendicaSmartyEngine.php:42 #, php-format msgid "The folder %s must be writable by webserver." msgstr "" -#: src/Security/Authentication.php:216 +#: src/Security/Authentication.php:200 msgid "Login failed." msgstr "Innskráning mistókst." -#: src/Security/Authentication.php:261 +#: src/Security/Authentication.php:245 msgid "Login failed. Please check your credentials." msgstr "" -#: src/Security/Authentication.php:375 +#: src/Security/Authentication.php:359 #, php-format msgid "Welcome %s" msgstr "" -#: src/Security/Authentication.php:376 +#: src/Security/Authentication.php:360 msgid "Please upload a profile photo." msgstr "Gerðu svo vel að hlaða inn forsíðumynd." -#: src/Util/EMailer/MailBuilder.php:260 +#: src/Security/OpenWebAuth.php:149 +#, php-format +msgid "OpenWebAuth: %1$s welcomes %2$s" +msgstr "" + +#: src/Util/EMailer/MailBuilder.php:246 msgid "Friendica Notification" msgstr "" -#: src/Util/EMailer/NotifyMailBuilder.php:78 -#: src/Util/EMailer/SystemMailBuilder.php:54 +#: src/Util/EMailer/NotifyMailBuilder.php:64 +#: src/Util/EMailer/SystemMailBuilder.php:40 #, php-format msgid "%1$s, %2$s Administrator" msgstr "" -#: src/Util/EMailer/NotifyMailBuilder.php:80 -#: src/Util/EMailer/SystemMailBuilder.php:56 +#: src/Util/EMailer/NotifyMailBuilder.php:66 +#: src/Util/EMailer/SystemMailBuilder.php:42 #, php-format msgid "%s Administrator" msgstr "" -#: src/Util/EMailer/NotifyMailBuilder.php:193 -#: src/Util/EMailer/NotifyMailBuilder.php:217 -#: src/Util/EMailer/SystemMailBuilder.php:101 -#: src/Util/EMailer/SystemMailBuilder.php:118 +#: src/Util/EMailer/NotifyMailBuilder.php:179 +#: src/Util/EMailer/NotifyMailBuilder.php:203 +#: src/Util/EMailer/SystemMailBuilder.php:87 +#: src/Util/EMailer/SystemMailBuilder.php:104 msgid "thanks" msgstr "" -#: src/Util/Temporal.php:172 +#: src/Util/Temporal.php:158 msgid "YYYY-MM-DD or MM-DD" msgstr "" -#: src/Util/Temporal.php:280 +#: src/Util/Temporal.php:266 #, php-format msgid "Time zone: %s Change in Settings" msgstr "" -#: src/Util/Temporal.php:320 src/Util/Temporal.php:329 +#: src/Util/Temporal.php:306 src/Util/Temporal.php:315 msgid "never" msgstr "" -#: src/Util/Temporal.php:343 +#: src/Util/Temporal.php:329 msgid "less than a second ago" msgstr "" -#: src/Util/Temporal.php:352 +#: src/Util/Temporal.php:338 msgid "year" msgstr "" -#: src/Util/Temporal.php:352 +#: src/Util/Temporal.php:338 msgid "years" msgstr "" -#: src/Util/Temporal.php:353 +#: src/Util/Temporal.php:339 msgid "months" msgstr "" -#: src/Util/Temporal.php:354 +#: src/Util/Temporal.php:340 msgid "weeks" msgstr "" -#: src/Util/Temporal.php:355 +#: src/Util/Temporal.php:341 msgid "days" msgstr "" -#: src/Util/Temporal.php:356 +#: src/Util/Temporal.php:342 msgid "hour" msgstr "" -#: src/Util/Temporal.php:356 +#: src/Util/Temporal.php:342 msgid "hours" msgstr "" -#: src/Util/Temporal.php:357 +#: src/Util/Temporal.php:343 msgid "minute" msgstr "" -#: src/Util/Temporal.php:357 +#: src/Util/Temporal.php:343 msgid "minutes" msgstr "" -#: src/Util/Temporal.php:358 +#: src/Util/Temporal.php:344 msgid "second" msgstr "" -#: src/Util/Temporal.php:358 +#: src/Util/Temporal.php:344 msgid "seconds" msgstr "" -#: src/Util/Temporal.php:367 +#: src/Util/Temporal.php:353 #, php-format msgid "in %1$d %2$s" msgstr "" -#: src/Util/Temporal.php:370 +#: src/Util/Temporal.php:356 #, php-format msgid "%1$d %2$s ago" msgstr "" -#: src/Worker/PushSubscription.php:110 +#: src/Worker/PushSubscription.php:96 msgid "Notification from Friendica" msgstr "" -#: src/Worker/PushSubscription.php:111 +#: src/Worker/PushSubscription.php:97 msgid "Empty Post" msgstr "" -#: view/theme/duepuntozero/config.php:68 +#: view/theme/duepuntozero/config.php:56 msgid "default" msgstr "" -#: view/theme/duepuntozero/config.php:69 +#: view/theme/duepuntozero/config.php:57 msgid "greenzero" msgstr "" -#: view/theme/duepuntozero/config.php:70 +#: view/theme/duepuntozero/config.php:58 msgid "purplezero" msgstr "" -#: view/theme/duepuntozero/config.php:71 +#: view/theme/duepuntozero/config.php:59 msgid "easterbunny" msgstr "" -#: view/theme/duepuntozero/config.php:72 +#: view/theme/duepuntozero/config.php:60 msgid "darkzero" msgstr "" -#: view/theme/duepuntozero/config.php:73 +#: view/theme/duepuntozero/config.php:61 msgid "comix" msgstr "" -#: view/theme/duepuntozero/config.php:74 +#: view/theme/duepuntozero/config.php:62 msgid "slackr" msgstr "" -#: view/theme/duepuntozero/config.php:87 +#: view/theme/duepuntozero/config.php:75 msgid "Variations" msgstr "" -#: view/theme/frio/config.php:146 +#: view/theme/frio/config.php:134 msgid "Note" msgstr "" -#: view/theme/frio/config.php:146 +#: view/theme/frio/config.php:134 msgid "Check image permissions if all users are allowed to see the image" msgstr "" -#: view/theme/frio/config.php:152 +#: view/theme/frio/config.php:140 msgid "Appearance" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Accent color" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Blue" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Red" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Purple" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Green" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Pink" msgstr "" -#: view/theme/frio/config.php:154 +#: view/theme/frio/config.php:142 msgid "Copy or paste schemestring" msgstr "" -#: view/theme/frio/config.php:154 +#: view/theme/frio/config.php:142 msgid "" "You can copy this string to share your theme with others. Pasting here " "applies the schemestring" msgstr "" -#: view/theme/frio/config.php:155 +#: view/theme/frio/config.php:143 msgid "Navigation bar background color" msgstr "" -#: view/theme/frio/config.php:156 +#: view/theme/frio/config.php:144 msgid "Navigation bar icon color " msgstr "" -#: view/theme/frio/config.php:157 +#: view/theme/frio/config.php:145 msgid "Link color" msgstr "" -#: view/theme/frio/config.php:158 +#: view/theme/frio/config.php:146 msgid "Set the background color" msgstr "" -#: view/theme/frio/config.php:159 +#: view/theme/frio/config.php:147 msgid "Content background opacity" msgstr "" -#: view/theme/frio/config.php:160 +#: view/theme/frio/config.php:148 msgid "Set the background image" msgstr "" -#: view/theme/frio/config.php:161 +#: view/theme/frio/config.php:149 msgid "Background image style" msgstr "" -#: view/theme/frio/config.php:164 +#: view/theme/frio/config.php:152 msgid "Always open Compose page" msgstr "" -#: view/theme/frio/config.php:164 +#: view/theme/frio/config.php:152 msgid "" "The New Post button always open the Compose page " "instead of the modal form. When this is disabled, the Compose page can be " "accessed with a middle click on the link or from the modal." msgstr "" -#: view/theme/frio/config.php:168 +#: view/theme/frio/config.php:156 msgid "Login page background image" msgstr "" -#: view/theme/frio/config.php:172 +#: view/theme/frio/config.php:160 msgid "Login page background color" msgstr "" -#: view/theme/frio/config.php:172 +#: view/theme/frio/config.php:160 msgid "Leave background image and color empty for theme defaults" msgstr "" -#: view/theme/frio/php/Image.php:39 +#: view/theme/frio/php/Image.php:27 msgid "Top Banner" msgstr "" -#: view/theme/frio/php/Image.php:39 +#: view/theme/frio/php/Image.php:27 msgid "" "Resize image to the width of the screen and show background color below on " "long pages." msgstr "" -#: view/theme/frio/php/Image.php:40 +#: view/theme/frio/php/Image.php:28 msgid "Full screen" msgstr "" -#: view/theme/frio/php/Image.php:40 +#: view/theme/frio/php/Image.php:28 msgid "" "Resize image to fill entire screen, clipping either the right or the bottom." msgstr "" -#: view/theme/frio/php/Image.php:41 +#: view/theme/frio/php/Image.php:29 msgid "Single row mosaic" msgstr "" -#: view/theme/frio/php/Image.php:41 +#: view/theme/frio/php/Image.php:29 msgid "" "Resize image to repeat it on a single row, either vertical or horizontal." msgstr "" -#: view/theme/frio/php/Image.php:42 +#: view/theme/frio/php/Image.php:30 msgid "Mosaic" msgstr "" -#: view/theme/frio/php/Image.php:42 +#: view/theme/frio/php/Image.php:30 msgid "Repeat image to fill the screen." msgstr "" -#: view/theme/frio/php/default.php:82 view/theme/frio/php/standard.php:40 +#: view/theme/frio/php/default.php:70 view/theme/frio/php/standard.php:28 msgid "Skip to main content" msgstr "" -#: view/theme/frio/php/default.php:153 view/theme/frio/php/standard.php:75 +#: view/theme/frio/php/default.php:141 view/theme/frio/php/standard.php:63 msgid "Back to top" msgstr "" -#: view/theme/frio/php/scheme.php:105 +#: view/theme/frio/php/scheme.php:93 msgid "Light" msgstr "" -#: view/theme/frio/php/scheme.php:106 +#: view/theme/frio/php/scheme.php:94 msgid "Dark" msgstr "" -#: view/theme/frio/php/scheme.php:107 +#: view/theme/frio/php/scheme.php:95 msgid "Black" msgstr "" -#: view/theme/frio/php/scheme.php:118 +#: view/theme/frio/php/scheme.php:106 msgid "Custom" msgstr "" -#: view/theme/frio/theme.php:214 +#: view/theme/frio/theme.php:202 msgid "Guest" msgstr "" -#: view/theme/frio/theme.php:217 +#: view/theme/frio/theme.php:205 msgid "Visitor" msgstr "" -#: view/theme/quattro/config.php:89 +#: view/theme/quattro/config.php:77 msgid "Alignment" msgstr "" -#: view/theme/quattro/config.php:89 +#: view/theme/quattro/config.php:77 msgid "Left" msgstr "" -#: view/theme/quattro/config.php:89 +#: view/theme/quattro/config.php:77 msgid "Center" msgstr "" -#: view/theme/quattro/config.php:90 +#: view/theme/quattro/config.php:78 msgid "Color scheme" msgstr "" -#: view/theme/quattro/config.php:91 +#: view/theme/quattro/config.php:79 msgid "Posts font size" msgstr "" -#: view/theme/quattro/config.php:92 +#: view/theme/quattro/config.php:80 msgid "Textareas font size" msgstr "" -#: view/theme/vier/config.php:91 +#: view/theme/vier/config.php:79 msgid "Comma separated list of helper groups" msgstr "" -#: view/theme/vier/config.php:131 +#: view/theme/vier/config.php:119 msgid "don't show" msgstr "" -#: view/theme/vier/config.php:131 +#: view/theme/vier/config.php:119 msgid "show" msgstr "" -#: view/theme/vier/config.php:137 +#: view/theme/vier/config.php:125 msgid "Set style" msgstr "" -#: view/theme/vier/config.php:138 +#: view/theme/vier/config.php:126 msgid "Community Pages" msgstr "" -#: view/theme/vier/config.php:139 view/theme/vier/theme.php:148 +#: view/theme/vier/config.php:127 view/theme/vier/theme.php:136 msgid "Community Profiles" msgstr "" -#: view/theme/vier/config.php:140 +#: view/theme/vier/config.php:128 msgid "Help or @NewHere ?" msgstr "" -#: view/theme/vier/config.php:141 view/theme/vier/theme.php:319 +#: view/theme/vier/config.php:129 view/theme/vier/theme.php:307 msgid "Connect Services" msgstr "" -#: view/theme/vier/config.php:142 +#: view/theme/vier/config.php:130 msgid "Find Friends" msgstr "" -#: view/theme/vier/config.php:143 view/theme/vier/theme.php:175 +#: view/theme/vier/config.php:131 view/theme/vier/theme.php:163 msgid "Last users" msgstr "" -#: view/theme/vier/theme.php:234 +#: view/theme/vier/theme.php:222 msgid "Quick Start" msgstr "" diff --git a/view/lang/is/strings.php b/view/lang/is/strings.php index 543421ade4..99fec903a3 100644 --- a/view/lang/is/strings.php +++ b/view/lang/is/strings.php @@ -365,7 +365,6 @@ $a->strings['The profile address specified does not provide adequate information $a->strings['No compatible communication protocols or feeds were discovered.'] = 'Engir samhæfðir samskiptastaðlar né fréttastraumar fundust.'; $a->strings['An author or name was not found.'] = 'Höfundur eða nafn fannst ekki.'; $a->strings['No browser URL could be matched to this address.'] = 'Engin vefslóð passaði við þetta vistfang.'; -$a->strings['The profile address specified belongs to a network which has been disabled on this site.'] = 'Þessi forsíðu slóð tilheyrir neti sem er bannað á þessum vef.'; $a->strings['Limited profile. This person will be unable to receive direct/personal notifications from you.'] = 'Takmörkuð forsíða. Þessi tengiliður mun ekki getað tekið á móti beinum/einka tilkynningum frá þér.'; $a->strings['Unable to retrieve contact information.'] = 'Ekki hægt að sækja tengiliðs upplýsingar.'; $a->strings['Starts:'] = 'Byrjar:'; @@ -747,12 +746,12 @@ $a->strings['Show unread'] = 'Birta ólesið'; $a->strings['{0} requested registration'] = '{0} óskaði eftir skráningu'; $a->strings['Authorize application connection'] = 'Leyfa forriti að tengjast'; $a->strings['Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?'] = 'Vilt þú leyfa þessu forriti að hafa aðgang að færslum og tengiliðum, og/eða stofna nýjar færslur fyrir þig?'; -$a->strings['Keep this window open until done.'] = 'Halda þessum glugga opnum þar til öllu er lokið.'; $a->strings['No contact provided.'] = 'Enginn tengiliður uppgefinn.'; $a->strings['Done'] = 'Lokið'; $a->strings['success'] = 'tókst'; $a->strings['failed'] = 'mistókst'; $a->strings['ignored'] = 'hunsað'; +$a->strings['Keep this window open until done.'] = 'Halda þessum glugga opnum þar til öllu er lokið.'; $a->strings['Edit post'] = 'Breyta skilaboðum'; $a->strings['web link'] = 'vefslóð'; $a->strings['Insert video link'] = 'Setja inn slóð á myndskeið'; @@ -765,9 +764,9 @@ $a->strings['Remove'] = 'Fjarlægja'; $a->strings['Remote privacy information not available.'] = 'Persónuverndarupplýsingar ekki fyrir hendi á fjartengdum vefþjóni.'; $a->strings['Visible to:'] = 'Sýnilegt eftirfarandi:'; $a->strings['No contacts.'] = 'Enginn tengiliður'; -$a->strings['%s\'s timeline'] = 'Tímalína fyrir %s'; $a->strings['%s\'s posts'] = 'Færslur frá %s'; $a->strings['%s\'s comments'] = 'Athugasemdir frá %s'; +$a->strings['%s\'s timeline'] = 'Tímalína fyrir %s'; $a->strings['Image file is missing'] = 'Myndskrá vantar'; $a->strings['Image file is empty.'] = 'Mynda skrá er tóm.'; $a->strings['View Album'] = 'Skoða myndabók'; @@ -936,7 +935,6 @@ $a->strings['%s commented on %s\'s post'] = '%s athugasemd við %s\'s færslu'; $a->strings['%s created a new post'] = '%s bjó til færslu'; $a->strings['Friend Suggestion'] = 'Vina tillaga'; $a->strings['Friend/Connect Request'] = 'Vinabeiðni/Tengibeiðni'; -$a->strings['New Follower'] = 'Nýr fylgjandi'; $a->strings['%1$s sent you a new private message at %2$s.'] = '%1$s sendi þér ný einkaskilaboð %2$s.'; $a->strings['a private message'] = 'einkaskilaboð'; $a->strings['%1$s sent you %2$s.'] = '%1$s sendi þér %2$s.'; @@ -979,8 +977,5 @@ $a->strings['%d comment'] = [ 0 => '%d ummæli', 1 => '%d ummæli', ]; -$a->strings['%s is now following %s.'] = '%s fylgist núna með %s.'; -$a->strings['following'] = 'fylgist með'; -$a->strings['stopped following'] = 'hætt að fylgja'; $a->strings['Login failed.'] = 'Innskráning mistókst.'; $a->strings['Please upload a profile photo.'] = 'Gerðu svo vel að hlaða inn forsíðumynd.'; diff --git a/view/lang/it/messages.po b/view/lang/it/messages.po index 19086dfbef..a3c3009baf 100644 --- a/view/lang/it/messages.po +++ b/view/lang/it/messages.po @@ -1,8 +1,7 @@ # FRIENDICA Distributed Social Network -# SPDX-FileCopyrightText: Copyright (C) 2010-2024, the Friendica project -# -# SPDX-License-Identifier: AGPL-3.0-or-later -# +# Copyright (C) 2010-2024, the Friendica project +# This file is distributed under the same license as the Friendica package. +# # Translators: # Elenaupload_max_filesize
is set to %s (%s byte)"
msgstr ""
-#: src/Module/Admin/Site.php:497
+#: src/Module/Admin/Site.php:489
msgid "Maximum image length"
msgstr "Massima lunghezza immagine"
-#: src/Module/Admin/Site.php:497
+#: src/Module/Admin/Site.php:489
msgid ""
"Maximum length in pixels of the longest side of uploaded images. Default is "
"-1, which means no limits."
msgstr "Massima lunghezza in pixel del lato più lungo delle immagini caricate. Predefinito a -1, ovvero nessun limite."
-#: src/Module/Admin/Site.php:498
+#: src/Module/Admin/Site.php:490
msgid "JPEG image quality"
msgstr "Qualità immagini JPEG"
-#: src/Module/Admin/Site.php:498
+#: src/Module/Admin/Site.php:490
msgid ""
"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
"100, which is full quality."
msgstr "Le immagini JPEG caricate verranno salvate con questa qualità [0-100]. Predefinito è 100, ovvero qualità piena."
-#: src/Module/Admin/Site.php:500
+#: src/Module/Admin/Site.php:491
+msgid "Maximum media file size"
+msgstr ""
+
+#: src/Module/Admin/Site.php:491
+#, php-format
+msgid ""
+"Maximum size in bytes of uploaded media files. Default is 0, which means no limits. You can put k, m, or g behind the desired value for KiB, MiB, GiB, respectively.\n"
+"\t\t\t\t\t\t\t\t\t\t\t\t\tThe value of upload_max_filesize
in your PHP.ini
needs be set to at least the desired limit.\n"
+"\t\t\t\t\t\t\t\t\t\t\t\t\tCurrently upload_max_filesize
is set to %s (%s byte)"
+msgstr ""
+
+#: src/Module/Admin/Site.php:496
msgid "Register policy"
msgstr "Politica di registrazione"
-#: src/Module/Admin/Site.php:501
+#: src/Module/Admin/Site.php:497
msgid "Maximum Users"
msgstr ""
-#: src/Module/Admin/Site.php:501
+#: src/Module/Admin/Site.php:497
msgid ""
"If defined, the register policy is automatically closed when the given "
"number of users is reached and reopens the registry when the number drops "
@@ -4766,167 +4783,167 @@ msgid ""
"not when the policy is set to approval."
msgstr ""
-#: src/Module/Admin/Site.php:502
+#: src/Module/Admin/Site.php:498
msgid "Maximum Daily Registrations"
msgstr "Massime registrazioni giornaliere"
-#: src/Module/Admin/Site.php:502
+#: src/Module/Admin/Site.php:498
msgid ""
"If registration is permitted above, this sets the maximum number of new user"
" registrations to accept per day. If register is set to closed, this "
"setting has no effect."
msgstr "Se la registrazione è permessa, qui si definisce il massimo numero di nuovi utenti registrati da accettare giornalmente. Se la registrazione è chiusa, questa impostazione non ha effetto."
-#: src/Module/Admin/Site.php:503
+#: src/Module/Admin/Site.php:499
msgid "Register text"
msgstr "Testo registrazione"
-#: src/Module/Admin/Site.php:503
+#: src/Module/Admin/Site.php:499
msgid ""
"Will be displayed prominently on the registration page. You can use BBCode "
"here."
msgstr "Sarà mostrato ben visibile nella pagina di registrazione. Puoi usare BBCode."
-#: src/Module/Admin/Site.php:504
+#: src/Module/Admin/Site.php:500
msgid "Forbidden Nicknames"
msgstr "Nomi utente Vietati"
-#: src/Module/Admin/Site.php:504
+#: src/Module/Admin/Site.php:500
msgid ""
"Comma separated list of nicknames that are forbidden from registration. "
"Preset is a list of role names according RFC 2142."
msgstr "Lista separata da virgola di nomi utente che sono vietati nella registrazione. Il valore preimpostato è una lista di nomi di ruoli secondo RFC 2142."
-#: src/Module/Admin/Site.php:505
+#: src/Module/Admin/Site.php:501
msgid "Accounts abandoned after x days"
msgstr "Account abbandonati dopo x giorni"
-#: src/Module/Admin/Site.php:505
+#: src/Module/Admin/Site.php:501
msgid ""
"Will not waste system resources polling external sites for abandonded "
"accounts. Enter 0 for no time limit."
msgstr "Non spreca risorse di sistema controllando siti esterni per gli account abbandonati. Immettere 0 per nessun limite di tempo."
-#: src/Module/Admin/Site.php:506
+#: src/Module/Admin/Site.php:502
msgid "Allowed friend domains"
msgstr "Domini amici consentiti"
-#: src/Module/Admin/Site.php:506
+#: src/Module/Admin/Site.php:502
msgid ""
"Comma separated list of domains which are allowed to establish friendships "
"with this site. Wildcards are accepted. Empty to allow any domains"
msgstr "Elenco separato da virgola dei domini che possono stabilire amicizie con questo sito. Sono accettati caratteri jolly. Vuoto per accettare qualsiasi dominio."
-#: src/Module/Admin/Site.php:507
+#: src/Module/Admin/Site.php:503
msgid "Allowed email domains"
msgstr "Domini email consentiti"
-#: src/Module/Admin/Site.php:507
+#: src/Module/Admin/Site.php:503
msgid ""
"Comma separated list of domains which are allowed in email addresses for "
"registrations to this site. Wildcards are accepted. Empty to allow any "
"domains"
msgstr "Elenco separato da virgola dei domini permessi come indirizzi email in fase di registrazione a questo sito. Sono accettati caratteri jolly. Lascalo vuoto per accettare qualsiasi dominio."
-#: src/Module/Admin/Site.php:508
+#: src/Module/Admin/Site.php:504
msgid "Disallowed email domains"
msgstr ""
-#: src/Module/Admin/Site.php:508
+#: src/Module/Admin/Site.php:504
msgid ""
"Comma separated list of domains which are rejected as email addresses for "
"registrations to this site. Wildcards are accepted."
msgstr ""
-#: src/Module/Admin/Site.php:509
+#: src/Module/Admin/Site.php:505
msgid "No OEmbed rich content"
msgstr "Nessun contenuto ricco da OEmbed"
-#: src/Module/Admin/Site.php:509
+#: src/Module/Admin/Site.php:505
msgid ""
"Don't show the rich content (e.g. embedded PDF), except from the domains "
"listed below."
msgstr "Non mostrare il contenuto ricco (p.e. PDF), tranne che dai domini elencati di seguito."
-#: src/Module/Admin/Site.php:510
+#: src/Module/Admin/Site.php:506
msgid "Trusted third-party domains"
msgstr "Domini fidati di terze parti"
-#: src/Module/Admin/Site.php:510
+#: src/Module/Admin/Site.php:506
msgid ""
"Comma separated list of domains from which content is allowed to be embedded"
" in posts like with OEmbed. All sub-domains of the listed domains are "
"allowed as well."
msgstr "Elenco separato da virgola di domini per i quali è consentita l'incorporazione del loro contenuto in messaggi come OEmbed. Anche tutti i sottodomini dei domini elencati sono consentiti."
-#: src/Module/Admin/Site.php:511
+#: src/Module/Admin/Site.php:507
msgid "Block public"
msgstr "Blocca pagine pubbliche"
-#: src/Module/Admin/Site.php:511
+#: src/Module/Admin/Site.php:507
msgid ""
"Check to block public access to all otherwise public personal pages on this "
"site unless you are currently logged in."
msgstr "Seleziona per bloccare l'accesso pubblico a tutte le pagine personali di questo sito, a meno di essere loggato."
-#: src/Module/Admin/Site.php:512
+#: src/Module/Admin/Site.php:508
msgid "Force publish"
msgstr "Forza pubblicazione"
-#: src/Module/Admin/Site.php:512
+#: src/Module/Admin/Site.php:508
msgid ""
"Check to force all profiles on this site to be listed in the site directory."
msgstr "Seleziona per forzare tutti i profili di questo sito ad essere compresi nell'elenco di questo sito."
-#: src/Module/Admin/Site.php:512
+#: src/Module/Admin/Site.php:508
msgid "Enabling this may violate privacy laws like the GDPR"
msgstr "Abilitare questo potrebbe violare leggi sulla privacy come il GDPR"
-#: src/Module/Admin/Site.php:513
+#: src/Module/Admin/Site.php:509
msgid "Global directory URL"
msgstr "URL della directory globale"
-#: src/Module/Admin/Site.php:513
+#: src/Module/Admin/Site.php:509
msgid ""
"URL to the global directory. If this is not set, the global directory is "
"completely unavailable to the application."
msgstr "URL dell'elenco globale. Se vuoto, l'elenco globale sarà completamente disabilitato."
-#: src/Module/Admin/Site.php:514
+#: src/Module/Admin/Site.php:510
msgid "Private posts by default for new users"
msgstr "Messaggi privati come impostazioni predefinita per i nuovi utenti"
-#: src/Module/Admin/Site.php:514
+#: src/Module/Admin/Site.php:510
msgid ""
"Set default post permissions for all new members to the default privacy "
"circle rather than public."
msgstr ""
-#: src/Module/Admin/Site.php:515
+#: src/Module/Admin/Site.php:511
msgid "Don't include post content in email notifications"
msgstr "Non includere il contenuto dei messaggi nelle notifiche via email"
-#: src/Module/Admin/Site.php:515
+#: src/Module/Admin/Site.php:511
msgid ""
"Don't include the content of a post/comment/private message/etc. in the "
"email notifications that are sent out from this site, as a privacy measure."
msgstr "Non include il contenuti del messaggio/commento/messaggio privato/etc. nelle notifiche email che sono inviate da questo sito, per privacy"
-#: src/Module/Admin/Site.php:516
+#: src/Module/Admin/Site.php:512
msgid "Disallow public access to addons listed in the apps menu."
msgstr "Disabilita l'accesso pubblico ai plugin raccolti nel menu apps."
-#: src/Module/Admin/Site.php:516
+#: src/Module/Admin/Site.php:512
msgid ""
"Checking this box will restrict addons listed in the apps menu to members "
"only."
msgstr "Selezionando questo box si limiterà ai soli membri l'accesso ai componenti aggiuntivi nel menu applicazioni"
-#: src/Module/Admin/Site.php:517
+#: src/Module/Admin/Site.php:513
msgid "Don't embed private images in posts"
msgstr "Non inglobare immagini private nei messaggi"
-#: src/Module/Admin/Site.php:517
+#: src/Module/Admin/Site.php:513
msgid ""
"Don't replace locally-hosted private photos in posts with an embedded copy "
"of the image. This means that contacts who receive posts containing private "
@@ -4934,11 +4951,11 @@ msgid ""
"while."
msgstr "Non sostituire le foto locali nei messaggi con una copia incorporata dell'immagine. Questo significa che i contatti che riceveranno i messaggi contenenti foto private dovranno autenticarsi e caricare ogni immagine, cosa che può richiedere un po' di tempo."
-#: src/Module/Admin/Site.php:518
+#: src/Module/Admin/Site.php:514
msgid "Explicit Content"
msgstr "Contenuto Esplicito"
-#: src/Module/Admin/Site.php:518
+#: src/Module/Admin/Site.php:514
msgid ""
"Set this to announce that your node is used mostly for explicit content that"
" might not be suited for minors. This information will be published in the "
@@ -4947,329 +4964,319 @@ msgid ""
"will be shown at the user registration page."
msgstr "Imposta questo per avvisare che il tuo noto è usato principalmente per contenuto esplicito che potrebbe non essere adatto a minori. Questa informazione sarà pubblicata nella pagina di informazioni sul noto e potrà essere usata, per esempio nella directory globale, per filtrare il tuo nodo dalla lista di nodi su cui registrarsi. In più, una nota sarà mostrata nella pagina di registrazione."
-#: src/Module/Admin/Site.php:519
+#: src/Module/Admin/Site.php:515
msgid "Only local search"
msgstr ""
-#: src/Module/Admin/Site.php:519
+#: src/Module/Admin/Site.php:515
msgid ""
"Blocks search for users who are not logged in to prevent crawlers from "
"blocking your system."
msgstr ""
-#: src/Module/Admin/Site.php:520
+#: src/Module/Admin/Site.php:516
msgid "Blocked tags for trending tags"
msgstr ""
-#: src/Module/Admin/Site.php:520
+#: src/Module/Admin/Site.php:516
msgid ""
"Comma separated list of hashtags that shouldn't be displayed in the trending"
" tags."
msgstr ""
-#: src/Module/Admin/Site.php:521
+#: src/Module/Admin/Site.php:517
msgid "Cache contact avatars"
msgstr ""
-#: src/Module/Admin/Site.php:521
+#: src/Module/Admin/Site.php:517
msgid ""
"Locally store the avatar pictures of the contacts. This uses a lot of "
"storage space but it increases the performance."
msgstr ""
-#: src/Module/Admin/Site.php:522
+#: src/Module/Admin/Site.php:518
msgid "Allow Users to set remote_self"
msgstr "Permetti agli utenti di impostare 'io remoto'"
-#: src/Module/Admin/Site.php:522
+#: src/Module/Admin/Site.php:518
msgid ""
"With checking this, every user is allowed to mark every contact as a "
"remote_self in the repair contact dialog. Setting this flag on a contact "
"causes mirroring every posting of that contact in the users stream."
msgstr "Selezionando questo, a tutti gli utenti sarà permesso di impostare qualsiasi contatto come 'io remoto' nella pagina di modifica del contatto. Impostare questa opzione fa si che tutti i messaggi di quel contatto vengano ripetuti nello stream dell'utente."
-#: src/Module/Admin/Site.php:523
+#: src/Module/Admin/Site.php:519
msgid "Allow Users to set up relay channels"
msgstr ""
-#: src/Module/Admin/Site.php:523
+#: src/Module/Admin/Site.php:519
msgid ""
"If enabled, it is possible to create relay users that are used to reshare "
"content based on user defined channels."
msgstr ""
-#: src/Module/Admin/Site.php:524
+#: src/Module/Admin/Site.php:520
msgid "Adjust the feed poll frequency"
msgstr ""
-#: src/Module/Admin/Site.php:524
+#: src/Module/Admin/Site.php:520
msgid "Automatically detect and set the best feed poll frequency."
msgstr ""
-#: src/Module/Admin/Site.php:525
+#: src/Module/Admin/Site.php:521
msgid "Minimum poll interval"
msgstr ""
-#: src/Module/Admin/Site.php:525
+#: src/Module/Admin/Site.php:521
msgid ""
"Minimal distance in minutes between two polls for mail and feed contacts. "
"Reasonable values are between 1 and 59."
msgstr ""
-#: src/Module/Admin/Site.php:526
+#: src/Module/Admin/Site.php:522
msgid "Enable multiple registrations"
msgstr ""
-#: src/Module/Admin/Site.php:526
+#: src/Module/Admin/Site.php:522
msgid "Enable users to register additional accounts for use as pages."
msgstr ""
-#: src/Module/Admin/Site.php:527
+#: src/Module/Admin/Site.php:523
msgid "Enable OpenID"
msgstr ""
-#: src/Module/Admin/Site.php:527
+#: src/Module/Admin/Site.php:523
msgid "Enable OpenID support for registration and logins."
msgstr ""
-#: src/Module/Admin/Site.php:528
+#: src/Module/Admin/Site.php:524
msgid "Enable full name check"
msgstr ""
-#: src/Module/Admin/Site.php:528
+#: src/Module/Admin/Site.php:524
msgid ""
"Prevents users from registering with a display name with fewer than two "
"parts separated by spaces."
msgstr ""
-#: src/Module/Admin/Site.php:529
+#: src/Module/Admin/Site.php:525
msgid "Email administrators on new registration"
msgstr ""
-#: src/Module/Admin/Site.php:529
+#: src/Module/Admin/Site.php:525
msgid ""
"If enabled and the system is set to an open registration, an email for each "
"new registration is sent to the administrators."
msgstr ""
-#: src/Module/Admin/Site.php:530
+#: src/Module/Admin/Site.php:526
msgid "Community pages for visitors"
msgstr "Pagina comunità per i visitatori"
-#: src/Module/Admin/Site.php:530
+#: src/Module/Admin/Site.php:526
msgid ""
"Which community pages should be available for visitors. Local users always "
"see both pages."
msgstr "Quale pagina comunità verrà mostrata ai visitatori. Gli utenti locali vedranno sempre entrambe le pagine."
-#: src/Module/Admin/Site.php:531
+#: src/Module/Admin/Site.php:527
msgid "Posts per user on community page"
msgstr "Messaggi per utente nella pagina Comunità"
-#: src/Module/Admin/Site.php:531
+#: src/Module/Admin/Site.php:527
msgid ""
"The maximum number of posts per user on the local community page. This is "
"useful, when a single user floods the local community page."
msgstr ""
-#: src/Module/Admin/Site.php:532
+#: src/Module/Admin/Site.php:528
msgid "Posts per server on community page"
msgstr ""
-#: src/Module/Admin/Site.php:532
+#: src/Module/Admin/Site.php:528
msgid ""
"The maximum number of posts per server on the global community page. This is"
" useful, when posts from a single server flood the global community page."
msgstr ""
-#: src/Module/Admin/Site.php:534
+#: src/Module/Admin/Site.php:530
msgid "Enable Mail support"
msgstr ""
-#: src/Module/Admin/Site.php:534
+#: src/Module/Admin/Site.php:530
msgid ""
"Enable built-in mail support to poll IMAP folders and to reply via mail."
msgstr ""
-#: src/Module/Admin/Site.php:535
+#: src/Module/Admin/Site.php:531
msgid ""
"Mail support can't be enabled because the PHP IMAP module is not installed."
msgstr ""
-#: src/Module/Admin/Site.php:536
-msgid "Enable OStatus support"
-msgstr ""
-
-#: src/Module/Admin/Site.php:536
-msgid ""
-"Enable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
-"communications in OStatus are public."
-msgstr ""
-
-#: src/Module/Admin/Site.php:538
+#: src/Module/Admin/Site.php:533
msgid ""
"Diaspora support can't be enabled because Friendica was installed into a sub"
" directory."
msgstr "Il supporto a Diaspora non può essere abilitato perché Friendica è stato installato in una sottocartella."
-#: src/Module/Admin/Site.php:539
+#: src/Module/Admin/Site.php:534
msgid "Enable Diaspora support"
msgstr "Abilita il supporto a Diaspora"
-#: src/Module/Admin/Site.php:539
+#: src/Module/Admin/Site.php:534
msgid ""
"Enable built-in Diaspora network compatibility for communicating with "
"diaspora servers."
msgstr ""
-#: src/Module/Admin/Site.php:540
+#: src/Module/Admin/Site.php:535
msgid "Verify SSL"
msgstr "Verifica SSL"
-#: src/Module/Admin/Site.php:540
+#: src/Module/Admin/Site.php:535
msgid ""
"If you wish, you can turn on strict certificate checking. This will mean you"
" cannot connect (at all) to self-signed SSL sites."
msgstr "Se vuoi, puoi abilitare il controllo rigoroso dei certificati.Questo significa che non potrai collegarti (del tutto) con siti con certificati SSL auto-firmati."
-#: src/Module/Admin/Site.php:541
+#: src/Module/Admin/Site.php:536
msgid "Proxy user"
msgstr "Utente Proxy"
-#: src/Module/Admin/Site.php:541
+#: src/Module/Admin/Site.php:536
msgid "User name for the proxy server."
msgstr ""
-#: src/Module/Admin/Site.php:542
+#: src/Module/Admin/Site.php:537
msgid "Proxy URL"
msgstr "URL Proxy"
-#: src/Module/Admin/Site.php:542
+#: src/Module/Admin/Site.php:537
msgid ""
"If you want to use a proxy server that Friendica should use to connect to "
"the network, put the URL of the proxy here."
msgstr ""
-#: src/Module/Admin/Site.php:543
+#: src/Module/Admin/Site.php:538
msgid "Network timeout"
msgstr "Timeout rete"
-#: src/Module/Admin/Site.php:543
+#: src/Module/Admin/Site.php:538
msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
msgstr "Valore in secondi. Imposta a 0 per illimitato (non raccomandato)."
-#: src/Module/Admin/Site.php:544
+#: src/Module/Admin/Site.php:539
msgid "Maximum Load Average"
msgstr "Massimo carico medio"
-#: src/Module/Admin/Site.php:544
+#: src/Module/Admin/Site.php:539
#, php-format
msgid ""
"Maximum system load before delivery and poll processes are deferred - "
"default %d."
msgstr "Carico massimo del sistema prima che i processi di invio e richiesta siano rinviati - predefinito %d."
-#: src/Module/Admin/Site.php:545
+#: src/Module/Admin/Site.php:540
msgid "Minimal Memory"
msgstr "Memoria Minima"
-#: src/Module/Admin/Site.php:545
+#: src/Module/Admin/Site.php:540
msgid ""
"Minimal free memory in MB for the worker. Needs access to /proc/meminfo - "
"default 0 (deactivated)."
msgstr "Minima memoria libera in MB per il worker. Necessita di avere accesso a /proc/meminfo - default 0 (disabilitato)."
-#: src/Module/Admin/Site.php:546
+#: src/Module/Admin/Site.php:541
msgid "Periodically optimize tables"
msgstr "Ottimizza le tabelle periodicamente"
-#: src/Module/Admin/Site.php:546
+#: src/Module/Admin/Site.php:541
msgid "Periodically optimize tables like the cache and the workerqueue"
msgstr "Ottimizza periodicamente le tabelle come la cache e la coda dei worker"
-#: src/Module/Admin/Site.php:548
+#: src/Module/Admin/Site.php:543
msgid "Discover followers/followings from contacts"
msgstr "Scopri seguiti/seguaci dai contatti"
-#: src/Module/Admin/Site.php:548
+#: src/Module/Admin/Site.php:543
msgid ""
"If enabled, contacts are checked for their followers and following contacts."
msgstr "Se abilitato, ad ogni contatto saranno controllati i propri seguaci e le persone seguite."
-#: src/Module/Admin/Site.php:549
+#: src/Module/Admin/Site.php:544
msgid "None - deactivated"
msgstr "Nessuno - disattivato"
-#: src/Module/Admin/Site.php:550
+#: src/Module/Admin/Site.php:545
msgid ""
"Local contacts - contacts of our local contacts are discovered for their "
"followers/followings."
msgstr "Contatti locali - contatti che i nostri contatti locali hanno scoperto con i loro seguaci/persone seguite."
-#: src/Module/Admin/Site.php:551
+#: src/Module/Admin/Site.php:546
msgid ""
"Interactors - contacts of our local contacts and contacts who interacted on "
"locally visible postings are discovered for their followers/followings."
msgstr "Interlocutori - contatti dei tuoi contatti locali e contatti che hanno interagito sui messaggi visibili localmente saranno analizzati per i loro seguaci/seguiti"
-#: src/Module/Admin/Site.php:553
+#: src/Module/Admin/Site.php:548
msgid "Only update contacts/servers with local data"
msgstr ""
-#: src/Module/Admin/Site.php:553
+#: src/Module/Admin/Site.php:548
msgid ""
"If enabled, the system will only look for changes in contacts and servers "
"that engaged on this system by either being in a contact list of a user or "
"when posts or comments exists from the contact on this system."
msgstr ""
-#: src/Module/Admin/Site.php:554
+#: src/Module/Admin/Site.php:549
msgid "Synchronize the contacts with the directory server"
msgstr "Sincronizza i contatti con il server directory"
-#: src/Module/Admin/Site.php:554
+#: src/Module/Admin/Site.php:549
msgid ""
"if enabled, the system will check periodically for new contacts on the "
"defined directory server."
msgstr "Se abilitato, il sistema controllerà periodicamente nuovi contatti sulle directory server indicate."
-#: src/Module/Admin/Site.php:556
+#: src/Module/Admin/Site.php:551
msgid "Discover contacts from other servers"
msgstr "Trova contatti dagli altri server"
-#: src/Module/Admin/Site.php:556
+#: src/Module/Admin/Site.php:551
msgid ""
"Periodically query other servers for contacts and servers that they know of."
" The system queries Friendica, Mastodon and Hubzilla servers. Keep it "
"deactivated on small machines to decrease the database size and load."
msgstr ""
-#: src/Module/Admin/Site.php:557
+#: src/Module/Admin/Site.php:552
msgid "Days between requery"
msgstr "Giorni tra le richieste"
-#: src/Module/Admin/Site.php:557
+#: src/Module/Admin/Site.php:552
msgid ""
"Number of days after which a server is requeried for their contacts and "
"servers it knows of. This is only used when the discovery is activated."
msgstr ""
-#: src/Module/Admin/Site.php:558
+#: src/Module/Admin/Site.php:553
msgid "Search the local directory"
msgstr "Cerca la directory locale"
-#: src/Module/Admin/Site.php:558
+#: src/Module/Admin/Site.php:553
msgid ""
"Search the local directory instead of the global directory. When searching "
"locally, every search will be executed on the global directory in the "
"background. This improves the search results when the search is repeated."
msgstr "Cerca nella directory locale invece che nella directory globale. Durante la ricerca a livello locale, ogni ricerca verrà eseguita sulla directory globale in background. Ciò migliora i risultati della ricerca quando la ricerca viene ripetuta."
-#: src/Module/Admin/Site.php:560
+#: src/Module/Admin/Site.php:555
msgid "Publish server information"
msgstr "Pubblica informazioni server"
-#: src/Module/Admin/Site.php:560
+#: src/Module/Admin/Site.php:555
msgid ""
"If enabled, general server and usage data will be published. The data "
"contains the name and version of the server, number of users with public "
@@ -5277,50 +5284,50 @@ msgid ""
" href=\"http://the-federation.info/\">the-federation.info for details."
msgstr "Se abilitato, saranno pubblicate le informazioni sul server e i dati di utilizzo. Le informazioni contengono nome e versione del server, numero di utenti con profilo pubblico, numero di messaggi e quali protocolli e connettori sono stati attivati.\nVedi the-federation.info per dettagli."
-#: src/Module/Admin/Site.php:562
+#: src/Module/Admin/Site.php:557
msgid "Check upstream version"
msgstr "Controlla versione upstream"
-#: src/Module/Admin/Site.php:562
+#: src/Module/Admin/Site.php:557
msgid ""
"Enables checking for new Friendica versions at github. If there is a new "
"version, you will be informed in the admin panel overview."
msgstr "Abilita il controllo di nuove versioni di Friendica su Github. Se sono disponibili nuove versioni, ne sarai informato nel pannello Panoramica dell'amministrazione."
-#: src/Module/Admin/Site.php:563
+#: src/Module/Admin/Site.php:558
msgid "Suppress Tags"
msgstr "Sopprimi Tags"
-#: src/Module/Admin/Site.php:563
+#: src/Module/Admin/Site.php:558
msgid "Suppress showing a list of hashtags at the end of the posting."
msgstr "Non mostra la lista di hashtag in coda al messaggio"
-#: src/Module/Admin/Site.php:564
+#: src/Module/Admin/Site.php:559
msgid "Clean database"
msgstr "Pulisci database"
-#: src/Module/Admin/Site.php:564
+#: src/Module/Admin/Site.php:559
msgid ""
"Remove old remote items, orphaned database records and old content from some"
" other helper tables."
msgstr "Rimuove i i vecchi elementi remoti, i record del database orfani e il vecchio contenuto da alcune tabelle di supporto."
-#: src/Module/Admin/Site.php:565
+#: src/Module/Admin/Site.php:560
msgid "Lifespan of remote items"
msgstr "Durata della vita di oggetti remoti"
-#: src/Module/Admin/Site.php:565
+#: src/Module/Admin/Site.php:560
msgid ""
"When the database cleanup is enabled, this defines the days after which "
"remote items will be deleted. Own items, and marked or filed items are "
"always kept. 0 disables this behaviour."
msgstr "Quando la pulizia del database è abilitata, questa impostazione definisce quali elementi remoti saranno cancellati. I propri elementi e quelli marcati preferiti o salvati in cartelle saranno sempre mantenuti. Il valore 0 disabilita questa funzionalità."
-#: src/Module/Admin/Site.php:566
+#: src/Module/Admin/Site.php:561
msgid "Lifespan of unclaimed items"
msgstr "Durata della vita di oggetti non reclamati"
-#: src/Module/Admin/Site.php:566
+#: src/Module/Admin/Site.php:561
msgid ""
"When the database cleanup is enabled, this defines the days after which "
"unclaimed remote items (mostly content from the relay) will be deleted. "
@@ -5328,175 +5335,184 @@ msgid ""
"items if set to 0."
msgstr "Quando la pulizia del database è abilitata, questa impostazione definisce dopo quanti giorni gli elementi remoti non reclamanti (principalmente il contenuto dai relay) sarà cancellato. Il valore di default è 90 giorni. Se impostato a 0, verrà utilizzato il valore della durata della vita degli elementi remoti."
-#: src/Module/Admin/Site.php:567
+#: src/Module/Admin/Site.php:562
msgid "Lifespan of raw conversation data"
msgstr "Durata della vita di dati di conversazione grezzi"
-#: src/Module/Admin/Site.php:567
+#: src/Module/Admin/Site.php:562
msgid ""
-"The conversation data is used for ActivityPub and OStatus, as well as for "
-"debug purposes. It should be safe to remove it after 14 days, default is 90 "
-"days."
-msgstr "I dati di conversazione sono usati per ActivityPub e OStatus, come anche per necessità di debug. Dovrebbe essere sicuro rimuoverli dopo 14 giorni. Il default è 90 giorni."
+"The conversation data is used for ActivityPub, as well as for debug "
+"purposes. It should be safe to remove it after 14 days, default is 90 days."
+msgstr ""
-#: src/Module/Admin/Site.php:568
+#: src/Module/Admin/Site.php:563
msgid "Maximum numbers of comments per post"
msgstr "Numero massimo di commenti per messaggio"
-#: src/Module/Admin/Site.php:568
+#: src/Module/Admin/Site.php:563
msgid "How much comments should be shown for each post? Default value is 100."
msgstr "Quanti commenti devono essere mostrati per ogni messaggio? Default : 100."
-#: src/Module/Admin/Site.php:569
+#: src/Module/Admin/Site.php:564
msgid "Maximum numbers of comments per post on the display page"
msgstr "Numero massimo di commenti per messaggio sulla pagina di visualizzazione"
-#: src/Module/Admin/Site.php:569
+#: src/Module/Admin/Site.php:564
msgid ""
"How many comments should be shown on the single view for each post? Default "
"value is 1000."
msgstr "Quanti commenti devono essere mostrati sulla pagina dedicata per ogni messaggio? Il valore predefinito è 1000."
-#: src/Module/Admin/Site.php:570
+#: src/Module/Admin/Site.php:565
msgid "Items per page"
msgstr ""
-#: src/Module/Admin/Site.php:570
+#: src/Module/Admin/Site.php:565
msgid ""
"Number of items per page in stream pages (network, community, "
"profile/contact statuses, search)."
msgstr ""
-#: src/Module/Admin/Site.php:571
+#: src/Module/Admin/Site.php:566
msgid "Items per page for mobile devices"
msgstr ""
-#: src/Module/Admin/Site.php:571
+#: src/Module/Admin/Site.php:566
msgid ""
"Number of items per page in stream pages (network, community, "
"profile/contact statuses, search) for mobile devices."
msgstr ""
-#: src/Module/Admin/Site.php:572
+#: src/Module/Admin/Site.php:567
msgid "Temp path"
msgstr "Percorso file temporanei"
-#: src/Module/Admin/Site.php:572
+#: src/Module/Admin/Site.php:567
msgid ""
"If you have a restricted system where the webserver can't access the system "
"temp path, enter another path here."
msgstr "Se si dispone di un sistema ristretto in cui il server web non può accedere al percorso temporaneo di sistema, inserire un altro percorso qui."
-#: src/Module/Admin/Site.php:573
+#: src/Module/Admin/Site.php:568
msgid "Only search in tags"
msgstr "Cerca solo nei tag"
-#: src/Module/Admin/Site.php:573
+#: src/Module/Admin/Site.php:568
msgid "On large systems the text search can slow down the system extremely."
msgstr "Su server con molti dati, la ricerca nel testo può estremamente rallentare il sistema."
-#: src/Module/Admin/Site.php:574
+#: src/Module/Admin/Site.php:569
+msgid "Limited search scope"
+msgstr ""
+
+#: src/Module/Admin/Site.php:569
+msgid ""
+"If enabled, searches will only be performed in the data used for the "
+"channels and not in all posts."
+msgstr ""
+
+#: src/Module/Admin/Site.php:570
msgid "Maximum age of items in the search table"
msgstr ""
-#: src/Module/Admin/Site.php:574
+#: src/Module/Admin/Site.php:570
msgid ""
"Maximum age of items in the search table in days. Lower values will increase"
" the performance and reduce disk usage. 0 means no age restriction."
msgstr ""
-#: src/Module/Admin/Site.php:575
+#: src/Module/Admin/Site.php:571
msgid "Generate counts per contact circle when calculating network count"
msgstr ""
-#: src/Module/Admin/Site.php:575
+#: src/Module/Admin/Site.php:571
msgid ""
"On systems with users that heavily use contact circles the query can be very"
" expensive."
msgstr ""
-#: src/Module/Admin/Site.php:576
+#: src/Module/Admin/Site.php:572
msgid "Process \"view\" activities"
msgstr ""
-#: src/Module/Admin/Site.php:576
+#: src/Module/Admin/Site.php:572
msgid ""
"\"view\" activities are mostly geberated by Peertube systems. Per default "
"they are not processed for performance reasons. Only activate this option on"
" performant system."
msgstr ""
-#: src/Module/Admin/Site.php:577
+#: src/Module/Admin/Site.php:573
msgid "Days, after which a contact is archived"
msgstr ""
-#: src/Module/Admin/Site.php:577
+#: src/Module/Admin/Site.php:573
msgid ""
"Number of days that we try to deliver content or to update the contact data "
"before we archive a contact."
msgstr ""
-#: src/Module/Admin/Site.php:579
+#: src/Module/Admin/Site.php:575
msgid "Maximum number of parallel workers"
msgstr "Massimo numero di lavori in parallelo"
-#: src/Module/Admin/Site.php:579
+#: src/Module/Admin/Site.php:575
#, php-format
msgid ""
"On shared hosters set this to %d. On larger systems, values of %d are great."
" Default value is %d."
msgstr "Con hosting condiviso, imposta a %d. Su sistemi più grandi, vanno bene valori come %d. Il valore di default è %d."
-#: src/Module/Admin/Site.php:580
+#: src/Module/Admin/Site.php:576
msgid "Maximum load for workers"
msgstr ""
-#: src/Module/Admin/Site.php:580
+#: src/Module/Admin/Site.php:576
msgid "Maximum load that causes a cooldown before each worker function call."
msgstr ""
-#: src/Module/Admin/Site.php:581
+#: src/Module/Admin/Site.php:577
msgid "Enable fastlane"
msgstr "Abilita fastlane"
-#: src/Module/Admin/Site.php:581
+#: src/Module/Admin/Site.php:577
msgid ""
"When enabed, the fastlane mechanism starts an additional worker if processes"
" with higher priority are blocked by processes of lower priority."
msgstr "Quando abilitato, il meccanismo di fastlane avvia processi aggiuntivi se processi con priorità più alta sono bloccati da processi con priorità più bassa."
-#: src/Module/Admin/Site.php:582
+#: src/Module/Admin/Site.php:578
msgid "Decoupled receiver"
msgstr ""
-#: src/Module/Admin/Site.php:582
+#: src/Module/Admin/Site.php:578
msgid ""
"Decouple incoming ActivityPub posts by processing them in the background via"
" a worker process. Only enable this on fast systems."
msgstr ""
-#: src/Module/Admin/Site.php:583
+#: src/Module/Admin/Site.php:579
msgid "Cron interval"
msgstr ""
-#: src/Module/Admin/Site.php:583
+#: src/Module/Admin/Site.php:579
msgid "Minimal period in minutes between two calls of the \"Cron\" worker job."
msgstr ""
-#: src/Module/Admin/Site.php:584
+#: src/Module/Admin/Site.php:580
msgid "Worker defer limit"
msgstr ""
-#: src/Module/Admin/Site.php:584
+#: src/Module/Admin/Site.php:580
msgid ""
"Per default the systems tries delivering for 15 times before dropping it."
msgstr ""
-#: src/Module/Admin/Site.php:585
+#: src/Module/Admin/Site.php:581
msgid "Worker fetch limit"
msgstr ""
-#: src/Module/Admin/Site.php:585
+#: src/Module/Admin/Site.php:581
msgid ""
"Number of worker tasks that are fetched in a single query. Higher values "
"should increase the performance, too high values will mostly likely decrease"
@@ -5504,214 +5520,214 @@ msgid ""
"system."
msgstr ""
-#: src/Module/Admin/Site.php:587
+#: src/Module/Admin/Site.php:583
msgid "Direct relay transfer"
msgstr "Trasferimento relay diretto"
-#: src/Module/Admin/Site.php:587
+#: src/Module/Admin/Site.php:583
msgid ""
"Enables the direct transfer to other servers without using the relay servers"
msgstr "Abilita il trasferimento diretto agli altri server senza utilizzare i server relay."
-#: src/Module/Admin/Site.php:588
+#: src/Module/Admin/Site.php:584
msgid "Relay scope"
msgstr "Ambito del relay"
-#: src/Module/Admin/Site.php:588
+#: src/Module/Admin/Site.php:584
msgid ""
"Can be \"all\" or \"tags\". \"all\" means that every public post should be "
"received. \"tags\" means that only posts with selected tags should be "
"received."
msgstr "Può essere \"tutto\" o \"etichette\". \"tutto\" significa che ogni messaggio pubblico può essere ricevuto. \"etichette\" significa che solo i messaggi con le etichette selezionate saranno ricevuti."
-#: src/Module/Admin/Site.php:588 src/Module/Contact/Profile.php:314
-#: src/Module/Settings/TwoFactor/Index.php:146
+#: src/Module/Admin/Site.php:584 src/Module/Contact/Profile.php:314
+#: src/Module/Settings/TwoFactor/Index.php:132
msgid "Disabled"
msgstr "Disabilitato"
-#: src/Module/Admin/Site.php:588
+#: src/Module/Admin/Site.php:584
msgid "all"
msgstr "tutti"
-#: src/Module/Admin/Site.php:588
+#: src/Module/Admin/Site.php:584
msgid "tags"
msgstr "tags"
-#: src/Module/Admin/Site.php:589
+#: src/Module/Admin/Site.php:585
msgid "Server tags"
msgstr "Tags server"
-#: src/Module/Admin/Site.php:589
+#: src/Module/Admin/Site.php:585
msgid "Comma separated list of tags for the \"tags\" subscription."
msgstr "Lista separata da virgola di etichette per la sottoscrizione \"etichette\"."
-#: src/Module/Admin/Site.php:590
+#: src/Module/Admin/Site.php:586
msgid "Deny Server tags"
msgstr "Etichette Negate del Server"
-#: src/Module/Admin/Site.php:590
+#: src/Module/Admin/Site.php:586
msgid "Comma separated list of tags that are rejected."
msgstr "Lista separata da virgola di etichette che vengono rifiutate."
-#: src/Module/Admin/Site.php:591
+#: src/Module/Admin/Site.php:587
msgid "Maximum amount of tags"
msgstr ""
-#: src/Module/Admin/Site.php:591
+#: src/Module/Admin/Site.php:587
msgid ""
"Maximum amount of tags in a post before it is rejected as spam. The post has"
" to contain at least one link. Posts from subscribed accounts will not be "
"rejected."
msgstr ""
-#: src/Module/Admin/Site.php:592
+#: src/Module/Admin/Site.php:588
msgid "Allow user tags"
msgstr "Permetti tag utente"
-#: src/Module/Admin/Site.php:592
+#: src/Module/Admin/Site.php:588
msgid ""
"If enabled, the tags from the saved searches will used for the \"tags\" "
"subscription in addition to the \"relay_server_tags\"."
msgstr "Se abilitato, le etichette delle ricerche salvate saranno usate per la sottoscrizione \"etichette\" in aggiunta ai \"server_etichette\"."
-#: src/Module/Admin/Site.php:593
+#: src/Module/Admin/Site.php:589
msgid "Deny undetected languages"
msgstr ""
-#: src/Module/Admin/Site.php:593
+#: src/Module/Admin/Site.php:589
msgid "If enabled, posts with undetected languages will be rejected."
msgstr ""
-#: src/Module/Admin/Site.php:594
+#: src/Module/Admin/Site.php:590
msgid "Language Quality"
msgstr ""
-#: src/Module/Admin/Site.php:594
+#: src/Module/Admin/Site.php:590
msgid "The minimum language quality that is required to accept the post."
msgstr ""
-#: src/Module/Admin/Site.php:595
+#: src/Module/Admin/Site.php:591
msgid "Number of languages for the language detection"
msgstr ""
-#: src/Module/Admin/Site.php:595
+#: src/Module/Admin/Site.php:591
msgid ""
"The system detects a list of languages per post. Only if the desired "
"languages are in the list, the message will be accepted. The higher the "
"number, the more posts will be falsely detected."
msgstr ""
-#: src/Module/Admin/Site.php:597
+#: src/Module/Admin/Site.php:593
msgid "Maximum age of channel"
msgstr ""
-#: src/Module/Admin/Site.php:597
+#: src/Module/Admin/Site.php:593
msgid ""
"This defines the maximum age in hours of items that should be displayed in "
"channels. This affects the channel performance."
msgstr ""
-#: src/Module/Admin/Site.php:598
+#: src/Module/Admin/Site.php:594
msgid "Maximum number of channel posts"
msgstr ""
-#: src/Module/Admin/Site.php:598
+#: src/Module/Admin/Site.php:594
msgid ""
"For performance reasons, the channels use a dedicated table to store "
"content. The higher the value the slower the channels."
msgstr ""
-#: src/Module/Admin/Site.php:599
+#: src/Module/Admin/Site.php:595
msgid "Interaction score days"
msgstr ""
-#: src/Module/Admin/Site.php:599
+#: src/Module/Admin/Site.php:595
msgid "Number of days that are used to calculate the interaction score."
msgstr ""
-#: src/Module/Admin/Site.php:600
+#: src/Module/Admin/Site.php:596
msgid "Maximum number of posts per author"
msgstr ""
-#: src/Module/Admin/Site.php:600
+#: src/Module/Admin/Site.php:596
msgid ""
"Maximum number of posts per page by author if the contact frequency is set "
"to \"Display only few posts\". If there are more posts, then the post with "
"the most interactions will be displayed."
msgstr ""
-#: src/Module/Admin/Site.php:601
+#: src/Module/Admin/Site.php:597
msgid "Sharer interaction days"
msgstr ""
-#: src/Module/Admin/Site.php:601
+#: src/Module/Admin/Site.php:597
msgid ""
"Number of days of the last interaction that are used to define which sharers"
" are used for the \"sharers of sharers\" channel."
msgstr ""
-#: src/Module/Admin/Site.php:604
+#: src/Module/Admin/Site.php:600
msgid "Start Relocation"
msgstr "Inizia il Trasloco"
-#: src/Module/Admin/Storage.php:46
+#: src/Module/Admin/Storage.php:32
#, php-format
msgid "Storage backend, %s is invalid."
msgstr ""
-#: src/Module/Admin/Storage.php:73
+#: src/Module/Admin/Storage.php:59
#, php-format
msgid "Storage backend %s error: %s"
msgstr ""
-#: src/Module/Admin/Storage.php:84 src/Module/Admin/Storage.php:87
+#: src/Module/Admin/Storage.php:70 src/Module/Admin/Storage.php:73
msgid "Invalid storage backend setting value."
msgstr "Valore dell'impostazione del backend di archiviazione non valido"
-#: src/Module/Admin/Storage.php:139
+#: src/Module/Admin/Storage.php:125
msgid "Current Storage Backend"
msgstr ""
-#: src/Module/Admin/Storage.php:140
+#: src/Module/Admin/Storage.php:126
msgid "Storage Configuration"
msgstr ""
-#: src/Module/Admin/Storage.php:141 src/Module/BaseAdmin.php:91
+#: src/Module/Admin/Storage.php:127 src/Module/BaseAdmin.php:77
msgid "Storage"
msgstr ""
-#: src/Module/Admin/Storage.php:143
+#: src/Module/Admin/Storage.php:129
msgid "Save & Use storage backend"
msgstr ""
-#: src/Module/Admin/Storage.php:144
+#: src/Module/Admin/Storage.php:130
msgid "Use storage backend"
msgstr ""
-#: src/Module/Admin/Storage.php:145
+#: src/Module/Admin/Storage.php:131
msgid "Save & Reload"
msgstr ""
-#: src/Module/Admin/Storage.php:146
+#: src/Module/Admin/Storage.php:132
msgid "This backend doesn't have custom settings"
msgstr ""
-#: src/Module/Admin/Storage.php:148
+#: src/Module/Admin/Storage.php:134
msgid ""
"Changing the current backend is prohibited because it is set by an "
"environment variable"
msgstr ""
-#: src/Module/Admin/Storage.php:150
+#: src/Module/Admin/Storage.php:136
msgid "Database (legacy)"
msgstr "Database (legacy)"
-#: src/Module/Admin/Summary.php:55
+#: src/Module/Admin/Summary.php:41
#, php-format
msgid "Template engine (%s) error: %s"
msgstr "Errore del motore di modelli (%s): %s"
-#: src/Module/Admin/Summary.php:59
+#: src/Module/Admin/Summary.php:45
#, php-format
msgid ""
"Your DB still runs with MyISAM tables. You should change the engine type to "
@@ -5722,7 +5738,7 @@ msgid ""
" an automatic conversion..htconfig.php
. Vedi la pagina della guida sulla Configurazione per avere aiuto con la transizione."
-#: src/Module/Admin/Summary.php:118
+#: src/Module/Admin/Summary.php:104
#, php-format
msgid ""
"Friendica's configuration now is stored in config/local.config.php, please "
@@ -5798,7 +5814,7 @@ msgid ""
"page for help with the transition."
msgstr "La configurazione di Friendica è adesso salvata in config/local.config.php: copia config/local-sample.config.php e sposta la tua configurazione da config/local.ini.php
. Vedi la pagina della guida sulla Configurazione per avere aiuto con la transizione."
-#: src/Module/Admin/Summary.php:124
+#: src/Module/Admin/Summary.php:110
#, php-format
msgid ""
"%s is not reachable on your system. This is a severe "
@@ -5806,107 +5822,107 @@ msgid ""
"href=\"%s\">the installation page for help."
msgstr "%s non è raggiungibile sul tuo sistema. È un grave problema di configurazione che impedisce la comunicazione da server a server. Vedi la pagina sull'installazione per un aiuto."
-#: src/Module/Admin/Summary.php:148
+#: src/Module/Admin/Summary.php:134
#, php-format
msgid ""
"Friendica's system.basepath was updated from '%s' to '%s'. Please remove the"
" system.basepath from your db to avoid differences."
msgstr "La system.basepath di Friendica è stata aggiornata da '%s' a '%s'. Per favore rimuovi la system.basepath dal tuo db per evitare differenze."
-#: src/Module/Admin/Summary.php:156
+#: src/Module/Admin/Summary.php:142
#, php-format
msgid ""
"Friendica's current system.basepath '%s' is wrong and the config file '%s' "
"isn't used."
msgstr "L'attuale system.basepath di Friendica '%s' è errata e il file di configurazione '%s' non è utilizzato."
-#: src/Module/Admin/Summary.php:164
+#: src/Module/Admin/Summary.php:150
#, php-format
msgid ""
"Friendica's current system.basepath '%s' is not equal to the config file "
"'%s'. Please fix your configuration."
msgstr "L'attuale system.basepath di Friendica '%s' non è uguale a quella del file di configurazione '%s'. Per favore correggi la tua configurazione."
-#: src/Module/Admin/Summary.php:175
+#: src/Module/Admin/Summary.php:161
msgid "Message queues"
msgstr "Code messaggi"
-#: src/Module/Admin/Summary.php:181
+#: src/Module/Admin/Summary.php:167
msgid "Server Settings"
msgstr "Impostazioni Server"
-#: src/Module/Admin/Summary.php:199
+#: src/Module/Admin/Summary.php:185
msgid "Version"
msgstr "Versione"
-#: src/Module/Admin/Summary.php:203
+#: src/Module/Admin/Summary.php:189
msgid "Active addons"
msgstr "Componenti aggiuntivi attivi"
-#: src/Module/Admin/Themes/Details.php:57 src/Module/Admin/Themes/Index.php:65
+#: src/Module/Admin/Themes/Details.php:49 src/Module/Admin/Themes/Index.php:57
#, php-format
msgid "Theme %s disabled."
msgstr "Tema %s disabilitato."
-#: src/Module/Admin/Themes/Details.php:59 src/Module/Admin/Themes/Index.php:67
+#: src/Module/Admin/Themes/Details.php:51 src/Module/Admin/Themes/Index.php:59
#, php-format
msgid "Theme %s successfully enabled."
msgstr "Tema %s abilitato con successo."
-#: src/Module/Admin/Themes/Details.php:61 src/Module/Admin/Themes/Index.php:69
+#: src/Module/Admin/Themes/Details.php:53 src/Module/Admin/Themes/Index.php:61
#, php-format
msgid "Theme %s failed to install."
msgstr "Installazione del tema %s non riuscita."
-#: src/Module/Admin/Themes/Details.php:83
+#: src/Module/Admin/Themes/Details.php:75
msgid "Screenshot"
msgstr "Anteprima"
-#: src/Module/Admin/Themes/Details.php:91
-#: src/Module/Admin/Themes/Index.php:112 src/Module/BaseAdmin.php:93
+#: src/Module/Admin/Themes/Details.php:83
+#: src/Module/Admin/Themes/Index.php:104 src/Module/BaseAdmin.php:79
msgid "Themes"
msgstr "Temi"
-#: src/Module/Admin/Themes/Embed.php:80
+#: src/Module/Admin/Themes/Embed.php:66
msgid "Unknown theme."
msgstr "Tema sconosciuto."
-#: src/Module/Admin/Themes/Index.php:51
+#: src/Module/Admin/Themes/Index.php:43
msgid "Themes reloaded"
msgstr "Temi ricaricati"
-#: src/Module/Admin/Themes/Index.php:114
+#: src/Module/Admin/Themes/Index.php:106
msgid "Reload active themes"
msgstr "Ricarica i temi attivi"
-#: src/Module/Admin/Themes/Index.php:118
+#: src/Module/Admin/Themes/Index.php:110
#, php-format
msgid "No themes found on the system. They should be placed in %1$s"
msgstr "Non sono stati trovati temi sul tuo sistema. Dovrebbero essere in %1$s"
-#: src/Module/Admin/Themes/Index.php:119
+#: src/Module/Admin/Themes/Index.php:111
msgid "[Experimental]"
msgstr "[Sperimentale]"
-#: src/Module/Admin/Themes/Index.php:120
+#: src/Module/Admin/Themes/Index.php:112
msgid "[Unsupported]"
msgstr "[Non supportato]"
-#: src/Module/Admin/Tos.php:79
+#: src/Module/Admin/Tos.php:65
msgid "Display Terms of Service"
msgstr "Mostra i Termini di Servizio"
-#: src/Module/Admin/Tos.php:79
+#: src/Module/Admin/Tos.php:65
msgid ""
"Enable the Terms of Service page. If this is enabled a link to the terms "
"will be added to the registration form and the general information page."
msgstr "Abilita la pagina dei Termini di Servizio. Se abilitato, un collegamento ai termini sarà aggiunto alla pagina di registrazione e nella pagina delle informazioni generali."
-#: src/Module/Admin/Tos.php:80
+#: src/Module/Admin/Tos.php:66
msgid "Display Privacy Statement"
msgstr "Visualizza l'Informativa sulla Privacy"
-#: src/Module/Admin/Tos.php:80
+#: src/Module/Admin/Tos.php:66
#, php-format
msgid ""
"Show some informations regarding the needed information to operate the node "
@@ -5914,160 +5930,160 @@ msgid ""
"noreferrer\">EU-GDPR."
msgstr "Mostra alcune informazioni richieste per gestire il nodo in accordo, per esempio, al GDPR."
-#: src/Module/Admin/Tos.php:81
+#: src/Module/Admin/Tos.php:67
msgid "Privacy Statement Preview"
msgstr "Anteprima Informativa sulla Privacy"
-#: src/Module/Admin/Tos.php:83
+#: src/Module/Admin/Tos.php:69
msgid "The Terms of Service"
msgstr "I Termini di Servizio"
-#: src/Module/Admin/Tos.php:83
+#: src/Module/Admin/Tos.php:69
msgid ""
"Enter the Terms of Service for your node here. You can use BBCode. Headers "
"of sections should be [h2] and below."
msgstr "Inserisci i Termini di Servizio del tuo nodo qui. Puoi usare BBCode. Le intestazioni delle sezioni dovrebbero partire da [h2]."
-#: src/Module/Admin/Tos.php:84
+#: src/Module/Admin/Tos.php:70
msgid "The rules"
msgstr ""
-#: src/Module/Admin/Tos.php:84
+#: src/Module/Admin/Tos.php:70
msgid "Enter your system rules here. Each line represents one rule."
msgstr ""
-#: src/Module/Api/ApiResponse.php:293
+#: src/Module/Api/ApiResponse.php:279
#, php-format
msgid "API endpoint %s %s is not implemented but might be in the future."
msgstr ""
-#: src/Module/Api/Mastodon/Apps.php:73
+#: src/Module/Api/Mastodon/Apps.php:59
msgid "Missing parameters"
msgstr "Parametri mancanti"
-#: src/Module/Api/Mastodon/Statuses/Bookmark.php:50
+#: src/Module/Api/Mastodon/Statuses/Bookmark.php:36
msgid "Only starting posts can be bookmarked"
msgstr "Solo i messaggi iniziali possono essere aggiunti ai preferiti"
-#: src/Module/Api/Mastodon/Statuses/Mute.php:51
+#: src/Module/Api/Mastodon/Statuses/Mute.php:37
msgid "Only starting posts can be muted"
msgstr "Solo i messaggi iniziali possono essere silenziati"
-#: src/Module/Api/Mastodon/Statuses/Reblog.php:58
+#: src/Module/Api/Mastodon/Statuses/Reblog.php:44
#, php-format
msgid "Posts from %s can't be shared"
msgstr "I messaggi da %s non possono essere condivisi"
-#: src/Module/Api/Mastodon/Statuses/Unbookmark.php:51
+#: src/Module/Api/Mastodon/Statuses/Unbookmark.php:37
msgid "Only starting posts can be unbookmarked"
msgstr "Solo i messaggi iniziali possono essere rimossi dai preferiti"
-#: src/Module/Api/Mastodon/Statuses/Unmute.php:51
+#: src/Module/Api/Mastodon/Statuses/Unmute.php:37
msgid "Only starting posts can be unmuted"
msgstr "Solo i messaggi iniziali possono essere de-silenziati"
-#: src/Module/Api/Mastodon/Statuses/Unreblog.php:64
+#: src/Module/Api/Mastodon/Statuses/Unreblog.php:50
#, php-format
msgid "Posts from %s can't be unshared"
msgstr "I messaggi da %snon possono essere condivisi"
-#: src/Module/Api/Twitter/ContactEndpoint.php:66
+#: src/Module/Api/Twitter/ContactEndpoint.php:52
msgid "Contact not found"
msgstr "Contatto non trovato"
-#: src/Module/Apps.php:62
+#: src/Module/Apps.php:48
msgid "No installed applications."
msgstr "Nessuna applicazione installata."
-#: src/Module/Apps.php:67
+#: src/Module/Apps.php:53
msgid "Applications"
msgstr "Applicazioni"
-#: src/Module/Attach.php:49 src/Module/Attach.php:61
+#: src/Module/Attach.php:35 src/Module/Attach.php:47
msgid "Item was not found."
msgstr "Oggetto non trovato."
-#: src/Module/BaseAdmin.php:54 src/Module/BaseAdmin.php:58
-#: src/Module/BaseModeration.php:77 src/Module/BaseModeration.php:81
+#: src/Module/BaseAdmin.php:40 src/Module/BaseAdmin.php:44
+#: src/Module/BaseModeration.php:63 src/Module/BaseModeration.php:67
msgid "Please login to continue."
msgstr "Effettua il login per continuare."
-#: src/Module/BaseAdmin.php:63
+#: src/Module/BaseAdmin.php:49
msgid "You don't have access to administration pages."
msgstr "Non hai accesso alle pagine di amministrazione."
-#: src/Module/BaseAdmin.php:67
+#: src/Module/BaseAdmin.php:53
msgid ""
"Submanaged account can't access the administration pages. Please log back in"
" as the main account."
msgstr "Account sottogestiti non possono accedere alle pagine di amministrazione. Per favore autenticati con l'account principale."
-#: src/Module/BaseAdmin.php:86 src/Module/BaseModeration.php:109
+#: src/Module/BaseAdmin.php:72 src/Module/BaseModeration.php:95
msgid "Overview"
msgstr "Panoramica"
-#: src/Module/BaseAdmin.php:89 src/Module/BaseModeration.php:112
+#: src/Module/BaseAdmin.php:75 src/Module/BaseModeration.php:98
msgid "Configuration"
msgstr "Configurazione"
-#: src/Module/BaseAdmin.php:94 src/Module/BaseSettings.php:110
+#: src/Module/BaseAdmin.php:80 src/Module/BaseSettings.php:96
msgid "Additional features"
msgstr "Funzionalità aggiuntive"
-#: src/Module/BaseAdmin.php:97
+#: src/Module/BaseAdmin.php:83
msgid "Database"
msgstr "Database"
-#: src/Module/BaseAdmin.php:98
+#: src/Module/BaseAdmin.php:84
msgid "DB updates"
msgstr "Aggiornamenti Database"
-#: src/Module/BaseAdmin.php:99
+#: src/Module/BaseAdmin.php:85
msgid "Inspect Deferred Workers"
msgstr "Analizza i lavori rinviati"
-#: src/Module/BaseAdmin.php:100
+#: src/Module/BaseAdmin.php:86
msgid "Inspect worker Queue"
msgstr "Analizza coda lavori"
-#: src/Module/BaseAdmin.php:106 src/Module/BaseModeration.php:120
+#: src/Module/BaseAdmin.php:92 src/Module/BaseModeration.php:106
msgid "Diagnostics"
msgstr "Diagnostiche"
-#: src/Module/BaseAdmin.php:107
+#: src/Module/BaseAdmin.php:93
msgid "PHP Info"
msgstr "Info PHP"
-#: src/Module/BaseAdmin.php:108
+#: src/Module/BaseAdmin.php:94
msgid "probe address"
msgstr "controlla indirizzo"
-#: src/Module/BaseAdmin.php:109
+#: src/Module/BaseAdmin.php:95
msgid "check webfinger"
msgstr "verifica webfinger"
-#: src/Module/BaseAdmin.php:110
+#: src/Module/BaseAdmin.php:96
msgid "Babel"
msgstr "Babel"
-#: src/Module/BaseAdmin.php:111 src/Module/Debug/ActivityPubConversion.php:137
+#: src/Module/BaseAdmin.php:97 src/Module/Debug/ActivityPubConversion.php:129
msgid "ActivityPub Conversion"
msgstr "Conversione ActivityPub"
-#: src/Module/BaseAdmin.php:120
+#: src/Module/BaseAdmin.php:106
msgid "Addon Features"
msgstr "Funzionalità Componenti Aggiuntivi"
-#: src/Module/BaseAdmin.php:121 src/Module/BaseModeration.php:129
+#: src/Module/BaseAdmin.php:107 src/Module/BaseModeration.php:115
msgid "User registrations waiting for confirmation"
msgstr "Utenti registrati in attesa di conferma"
-#: src/Module/BaseApi.php:455 src/Module/BaseApi.php:471
-#: src/Module/BaseApi.php:487
+#: src/Module/BaseApi.php:441 src/Module/BaseApi.php:457
+#: src/Module/BaseApi.php:473
msgid "Too Many Requests"
msgstr ""
-#: src/Module/BaseApi.php:456
+#: src/Module/BaseApi.php:442
#, php-format
msgid "Daily posting limit of %d post reached. The post was rejected."
msgid_plural "Daily posting limit of %d posts reached. The post was rejected."
@@ -6075,7 +6091,7 @@ msgstr[0] "Limite giornaliero di %d messaggio raggiunto. Il messaggio è stato r
msgstr[1] "Limite giornaliero di %d messaggi raggiunto. Il messaggio è stato rifiutato."
msgstr[2] "Limite giornaliero di %d messaggi raggiunto. Il messaggio è stato rifiutato."
-#: src/Module/BaseApi.php:472
+#: src/Module/BaseApi.php:458
#, php-format
msgid "Weekly posting limit of %d post reached. The post was rejected."
msgid_plural ""
@@ -6084,7 +6100,7 @@ msgstr[0] "Limite settimanale di %d messaggio raggiunto. Il messaggio è stato r
msgstr[1] "Limite settimanale di %d messaggi raggiunto. Il messaggio è stato rifiutato."
msgstr[2] "Limite settimanale di %d messaggi raggiunto. Il messaggio è stato rifiutato."
-#: src/Module/BaseApi.php:488
+#: src/Module/BaseApi.php:474
#, php-format
msgid "Monthly posting limit of %d post reached. The post was rejected."
msgid_plural ""
@@ -6093,84 +6109,84 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: src/Module/BaseModeration.php:86
+#: src/Module/BaseModeration.php:72
msgid "You don't have access to moderation pages."
msgstr ""
-#: src/Module/BaseModeration.php:90
+#: src/Module/BaseModeration.php:76
msgid ""
"Submanaged account can't access the moderation pages. Please log back in as "
"the main account."
msgstr ""
-#: src/Module/BaseModeration.php:110 src/Module/Moderation/Reports.php:109
+#: src/Module/BaseModeration.php:96 src/Module/Moderation/Reports.php:101
msgid "Reports"
msgstr ""
-#: src/Module/BaseModeration.php:113 src/Module/Moderation/Users/Index.php:148
-#: src/Module/Moderation/Users/Index.php:158
+#: src/Module/BaseModeration.php:99 src/Module/Moderation/Users/Index.php:134
+#: src/Module/Moderation/Users/Index.php:144
msgid "Users"
msgstr "Utenti"
-#: src/Module/BaseModeration.php:115
+#: src/Module/BaseModeration.php:101
msgid "Tools"
msgstr "Strumenti"
-#: src/Module/BaseModeration.php:116
+#: src/Module/BaseModeration.php:102
msgid "Contact Blocklist"
msgstr "Blocklist Contatti"
-#: src/Module/BaseModeration.php:117
+#: src/Module/BaseModeration.php:103
msgid "Server Blocklist"
msgstr "Server Blocklist"
-#: src/Module/BaseModeration.php:118 src/Module/Moderation/Item/Delete.php:62
+#: src/Module/BaseModeration.php:104 src/Module/Moderation/Item/Delete.php:48
msgid "Delete Item"
msgstr "Rimuovi elemento"
-#: src/Module/BaseModeration.php:121 src/Module/Moderation/Item/Source.php:76
+#: src/Module/BaseModeration.php:107 src/Module/Moderation/Item/Source.php:68
msgid "Item Source"
msgstr "Sorgente Oggetto"
-#: src/Module/BaseProfile.php:52 src/Module/Contact.php:506
+#: src/Module/BaseProfile.php:38 src/Module/Contact.php:488
msgid "Profile Details"
msgstr "Dettagli del profilo"
-#: src/Module/BaseProfile.php:60
+#: src/Module/BaseProfile.php:46
msgid "Conversations started"
msgstr ""
-#: src/Module/BaseProfile.php:111
+#: src/Module/BaseProfile.php:97
msgid "Only You Can See This"
msgstr "Solo tu puoi vedere questo"
-#: src/Module/BaseProfile.php:116 src/Module/Profile/Schedule.php:81
+#: src/Module/BaseProfile.php:102 src/Module/Profile/Schedule.php:67
msgid "Scheduled Posts"
msgstr ""
-#: src/Module/BaseProfile.php:119
+#: src/Module/BaseProfile.php:105
msgid "Posts that are scheduled for publishing"
msgstr ""
-#: src/Module/BaseProfile.php:138 src/Module/BaseProfile.php:141
+#: src/Module/BaseProfile.php:124 src/Module/BaseProfile.php:127
msgid "Tips for New Members"
msgstr "Consigli per i Nuovi Utenti"
-#: src/Module/BaseSearch.php:71
+#: src/Module/BaseSearch.php:57
#, php-format
msgid "People Search - %s"
msgstr "Cerca persone - %s"
-#: src/Module/BaseSearch.php:75
+#: src/Module/BaseSearch.php:61
#, php-format
msgid "Group Search - %s"
msgstr ""
-#: src/Module/BaseSearch.php:121 src/Module/Contact/MatchInterests.php:140
+#: src/Module/BaseSearch.php:107 src/Module/Contact/MatchInterests.php:136
msgid "No matches"
msgstr "Nessun risultato"
-#: src/Module/BaseSearch.php:147
+#: src/Module/BaseSearch.php:133
#, php-format
msgid ""
"%d result was filtered out because your node blocks the domain it is "
@@ -6184,267 +6200,267 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: src/Module/BaseSettings.php:78
+#: src/Module/BaseSettings.php:64
msgid "Account"
msgstr "Account"
-#: src/Module/BaseSettings.php:85 src/Module/Security/TwoFactor/Verify.php:96
-#: src/Module/Settings/TwoFactor/Index.php:138
+#: src/Module/BaseSettings.php:71 src/Module/Security/TwoFactor/Verify.php:82
+#: src/Module/Settings/TwoFactor/Index.php:124
msgid "Two-factor authentication"
msgstr "Autenticazione a due fattori"
-#: src/Module/BaseSettings.php:118
+#: src/Module/BaseSettings.php:104
msgid "Display"
msgstr "Visualizzazione"
-#: src/Module/BaseSettings.php:132 src/Module/Settings/Connectors.php:204
+#: src/Module/BaseSettings.php:118 src/Module/Settings/Connectors.php:195
msgid "Social Networks"
msgstr "Social Networks"
-#: src/Module/BaseSettings.php:146 src/Module/Settings/Delegation.php:194
+#: src/Module/BaseSettings.php:132 src/Module/Settings/Delegation.php:180
msgid "Manage Accounts"
msgstr "Gestisci Account"
-#: src/Module/BaseSettings.php:153
+#: src/Module/BaseSettings.php:139
msgid "Connected apps"
msgstr "Applicazioni collegate"
-#: src/Module/BaseSettings.php:160
+#: src/Module/BaseSettings.php:146
msgid "Remote servers"
msgstr ""
-#: src/Module/BaseSettings.php:167 src/Module/Settings/UserExport.php:98
+#: src/Module/BaseSettings.php:153 src/Module/Settings/UserExport.php:84
msgid "Export personal data"
msgstr "Esporta dati personali"
-#: src/Module/BaseSettings.php:174
+#: src/Module/BaseSettings.php:160
msgid "Remove account"
msgstr "Rimuovi account"
-#: src/Module/Bookmarklet.php:54
+#: src/Module/Bookmarklet.php:40
msgid "This page is missing a url parameter."
msgstr "A questa pagina manca il parametro url."
-#: src/Module/Bookmarklet.php:66
+#: src/Module/Bookmarklet.php:52
msgid "The post was created"
msgstr "Il messaggio è stato creato"
-#: src/Module/Calendar/Event/API.php:100 src/Module/Calendar/Event/API.php:135
-#: src/Module/Calendar/Event/Form.php:80
+#: src/Module/Calendar/Event/API.php:86 src/Module/Calendar/Event/API.php:121
+#: src/Module/Calendar/Event/Form.php:66
msgid "Invalid Request"
msgstr ""
-#: src/Module/Calendar/Event/API.php:109
+#: src/Module/Calendar/Event/API.php:95
msgid "Event id is missing."
msgstr ""
-#: src/Module/Calendar/Event/API.php:131
+#: src/Module/Calendar/Event/API.php:117
msgid "Failed to remove event"
msgstr "Rimozione evento fallita."
-#: src/Module/Calendar/Event/API.php:187 src/Module/Calendar/Event/API.php:189
+#: src/Module/Calendar/Event/API.php:173 src/Module/Calendar/Event/API.php:175
msgid "Event can not end before it has started."
msgstr "Un evento non può finire prima di iniziare."
-#: src/Module/Calendar/Event/API.php:196 src/Module/Calendar/Event/API.php:198
+#: src/Module/Calendar/Event/API.php:182 src/Module/Calendar/Event/API.php:184
msgid "Event title and start time are required."
msgstr "Titolo e ora di inizio dell'evento sono richiesti."
-#: src/Module/Calendar/Event/Form.php:208
+#: src/Module/Calendar/Event/Form.php:194
msgid "Starting date and Title are required."
msgstr "La data di inizio e il titolo sono richiesti."
-#: src/Module/Calendar/Event/Form.php:209
-#: src/Module/Calendar/Event/Form.php:214
+#: src/Module/Calendar/Event/Form.php:195
+#: src/Module/Calendar/Event/Form.php:200
msgid "Event Starts:"
msgstr "L'evento inizia:"
-#: src/Module/Calendar/Event/Form.php:209
-#: src/Module/Calendar/Event/Form.php:237 src/Module/Debug/Probe.php:59
-#: src/Module/Install.php:201 src/Module/Install.php:227
-#: src/Module/Install.php:232 src/Module/Install.php:246
-#: src/Module/Install.php:255 src/Module/Install.php:260
-#: src/Module/Install.php:266 src/Module/Install.php:271
-#: src/Module/Install.php:285 src/Module/Install.php:298
-#: src/Module/Install.php:325
-#: src/Module/Moderation/Blocklist/Server/Add.php:136
-#: src/Module/Moderation/Blocklist/Server/Add.php:138
-#: src/Module/Moderation/Blocklist/Server/Import.php:129
-#: src/Module/Moderation/Blocklist/Server/Index.php:86
-#: src/Module/Moderation/Blocklist/Server/Index.php:87
-#: src/Module/Moderation/Blocklist/Server/Index.php:115
-#: src/Module/Moderation/Blocklist/Server/Index.php:116
-#: src/Module/Moderation/Item/Delete.php:67 src/Module/Register.php:149
-#: src/Module/Security/TwoFactor/Verify.php:101
-#: src/Module/Settings/Channels.php:190 src/Module/Settings/Channels.php:211
-#: src/Module/Settings/TwoFactor/Index.php:161
-#: src/Module/Settings/TwoFactor/Verify.php:158
+#: src/Module/Calendar/Event/Form.php:195
+#: src/Module/Calendar/Event/Form.php:223 src/Module/Debug/Probe.php:45
+#: src/Module/Install.php:187 src/Module/Install.php:213
+#: src/Module/Install.php:218 src/Module/Install.php:232
+#: src/Module/Install.php:241 src/Module/Install.php:246
+#: src/Module/Install.php:252 src/Module/Install.php:257
+#: src/Module/Install.php:271 src/Module/Install.php:284
+#: src/Module/Install.php:311
+#: src/Module/Moderation/Blocklist/Server/Add.php:122
+#: src/Module/Moderation/Blocklist/Server/Add.php:124
+#: src/Module/Moderation/Blocklist/Server/Import.php:113
+#: src/Module/Moderation/Blocklist/Server/Index.php:72
+#: src/Module/Moderation/Blocklist/Server/Index.php:73
+#: src/Module/Moderation/Blocklist/Server/Index.php:101
+#: src/Module/Moderation/Blocklist/Server/Index.php:102
+#: src/Module/Moderation/Item/Delete.php:53 src/Module/Register.php:141
+#: src/Module/Security/TwoFactor/Verify.php:87
+#: src/Module/Settings/Channels.php:176 src/Module/Settings/Channels.php:197
+#: src/Module/Settings/TwoFactor/Index.php:147
+#: src/Module/Settings/TwoFactor/Verify.php:144
msgid "Required"
msgstr "Richiesto"
-#: src/Module/Calendar/Event/Form.php:223
-#: src/Module/Calendar/Event/Form.php:247
+#: src/Module/Calendar/Event/Form.php:209
+#: src/Module/Calendar/Event/Form.php:233
msgid "Finish date/time is not known or not relevant"
msgstr "La data/ora di fine non è definita"
-#: src/Module/Calendar/Event/Form.php:225
-#: src/Module/Calendar/Event/Form.php:230
+#: src/Module/Calendar/Event/Form.php:211
+#: src/Module/Calendar/Event/Form.php:216
msgid "Event Finishes:"
msgstr "L'evento finisce:"
-#: src/Module/Calendar/Event/Form.php:237
-#: src/Module/Calendar/Event/Form.php:243
+#: src/Module/Calendar/Event/Form.php:223
+#: src/Module/Calendar/Event/Form.php:229
msgid "Title (BBCode not allowed)"
msgstr ""
-#: src/Module/Calendar/Event/Form.php:239
+#: src/Module/Calendar/Event/Form.php:225
msgid "Description (BBCode allowed)"
msgstr ""
-#: src/Module/Calendar/Event/Form.php:241
+#: src/Module/Calendar/Event/Form.php:227
msgid "Location (BBCode not allowed)"
msgstr ""
-#: src/Module/Calendar/Event/Form.php:244
-#: src/Module/Calendar/Event/Form.php:245
+#: src/Module/Calendar/Event/Form.php:230
+#: src/Module/Calendar/Event/Form.php:231
msgid "Share this event"
msgstr "Condividi questo evento"
-#: src/Module/Calendar/Event/Form.php:251 src/Module/Profile/Profile.php:275
+#: src/Module/Calendar/Event/Form.php:237 src/Module/Profile/Profile.php:263
msgid "Basic"
msgstr "Base"
-#: src/Module/Calendar/Export.php:94
+#: src/Module/Calendar/Export.php:80
msgid "This calendar format is not supported"
msgstr "Questo formato di calendario non è supportato"
-#: src/Module/Calendar/Export.php:96
+#: src/Module/Calendar/Export.php:82
msgid "No exportable data found"
msgstr "Nessun dato esportabile trovato"
-#: src/Module/Calendar/Export.php:113
+#: src/Module/Calendar/Export.php:99
msgid "calendar"
msgstr "calendario"
-#: src/Module/Calendar/Show.php:124
+#: src/Module/Calendar/Show.php:110
msgid "Events"
msgstr "Eventi"
-#: src/Module/Calendar/Show.php:125
+#: src/Module/Calendar/Show.php:111
msgid "View"
msgstr "Mostra"
-#: src/Module/Calendar/Show.php:126
+#: src/Module/Calendar/Show.php:112
msgid "Create New Event"
msgstr "Crea un nuovo evento"
-#: src/Module/Calendar/Show.php:132 src/Module/Settings/Display.php:297
+#: src/Module/Calendar/Show.php:118 src/Module/Settings/Display.php:283
msgid "list"
msgstr "lista"
-#: src/Module/Circle.php:57
+#: src/Module/Circle.php:43
msgid "Could not create circle."
msgstr ""
-#: src/Module/Circle.php:68 src/Module/Circle.php:216
-#: src/Module/Circle.php:240
+#: src/Module/Circle.php:54 src/Module/Circle.php:202
+#: src/Module/Circle.php:226
msgid "Circle not found."
msgstr ""
-#: src/Module/Circle.php:74
+#: src/Module/Circle.php:60
msgid "Circle name was not changed."
msgstr ""
-#: src/Module/Circle.php:92
+#: src/Module/Circle.php:78
msgid "Unknown circle."
msgstr ""
-#: src/Module/Circle.php:98 src/Module/Circle.php:107
-#: src/Module/Contact/Advanced.php:70 src/Module/Contact/Advanced.php:109
-#: src/Module/Contact/Contacts.php:71 src/Module/Contact/Conversations.php:86
-#: src/Module/Contact/Conversations.php:91
-#: src/Module/Contact/Conversations.php:96 src/Module/Contact/Media.php:61
-#: src/Module/Contact/Posts.php:78 src/Module/Contact/Posts.php:83
-#: src/Module/Contact/Posts.php:88 src/Module/Contact/Profile.php:159
-#: src/Module/Contact/Profile.php:164 src/Module/Contact/Profile.php:169
-#: src/Module/Contact/Redir.php:95 src/Module/Contact/Redir.php:141
-#: src/Module/FriendSuggest.php:71 src/Module/FriendSuggest.php:109
+#: src/Module/Circle.php:84 src/Module/Circle.php:93
+#: src/Module/Contact/Advanced.php:56 src/Module/Contact/Advanced.php:95
+#: src/Module/Contact/Contacts.php:57 src/Module/Contact/Conversations.php:72
+#: src/Module/Contact/Conversations.php:77
+#: src/Module/Contact/Conversations.php:82 src/Module/Contact/Media.php:47
+#: src/Module/Contact/Posts.php:64 src/Module/Contact/Posts.php:69
+#: src/Module/Contact/Posts.php:74 src/Module/Contact/Profile.php:145
+#: src/Module/Contact/Profile.php:150 src/Module/Contact/Profile.php:169
+#: src/Module/Contact/Redir.php:77 src/Module/Contact/Redir.php:131
+#: src/Module/FriendSuggest.php:57 src/Module/FriendSuggest.php:95
msgid "Contact not found."
msgstr "Contatto non trovato."
-#: src/Module/Circle.php:102 src/Module/Contact/Contacts.php:66
+#: src/Module/Circle.php:88 src/Module/Contact/Contacts.php:52
msgid "Invalid contact."
msgstr "Contatto non valido."
-#: src/Module/Circle.php:111 src/Module/Contact/Revoke.php:73
+#: src/Module/Circle.php:97 src/Module/Contact/Revoke.php:56
msgid "Contact is deleted."
msgstr "Contatto eliminato."
-#: src/Module/Circle.php:117
+#: src/Module/Circle.php:103
msgid "Unable to add the contact to the circle."
msgstr ""
-#: src/Module/Circle.php:120
+#: src/Module/Circle.php:106
msgid "Contact successfully added to circle."
msgstr ""
-#: src/Module/Circle.php:124
+#: src/Module/Circle.php:110
msgid "Unable to remove the contact from the circle."
msgstr ""
-#: src/Module/Circle.php:127
+#: src/Module/Circle.php:113
msgid "Contact successfully removed from circle."
msgstr ""
-#: src/Module/Circle.php:131
+#: src/Module/Circle.php:117
msgid "Bad request."
msgstr "Richiesta sbagliata."
-#: src/Module/Circle.php:172
+#: src/Module/Circle.php:158
msgid "Save Circle"
msgstr ""
-#: src/Module/Circle.php:173
+#: src/Module/Circle.php:159
msgid "Filter"
msgstr "Filtro"
-#: src/Module/Circle.php:179
+#: src/Module/Circle.php:165
msgid "Create a circle of contacts/friends."
msgstr ""
-#: src/Module/Circle.php:221
+#: src/Module/Circle.php:207
msgid "Unable to remove circle."
msgstr ""
-#: src/Module/Circle.php:272
+#: src/Module/Circle.php:258
msgid "Delete Circle"
msgstr ""
-#: src/Module/Circle.php:282
+#: src/Module/Circle.php:268
msgid "Edit Circle Name"
msgstr ""
-#: src/Module/Circle.php:292
+#: src/Module/Circle.php:278
msgid "Members"
msgstr "Membri"
-#: src/Module/Circle.php:295
+#: src/Module/Circle.php:281
msgid "Circle is empty"
msgstr ""
-#: src/Module/Circle.php:311
+#: src/Module/Circle.php:297
msgid "Remove contact from circle"
msgstr ""
-#: src/Module/Circle.php:334
+#: src/Module/Circle.php:320
msgid "Click on a contact to add or remove."
msgstr "Clicca su un contatto per aggiungerlo o rimuoverlo."
-#: src/Module/Circle.php:351
+#: src/Module/Circle.php:337
msgid "Add contact to circle"
msgstr ""
-#: src/Module/Contact.php:96
+#: src/Module/Contact.php:88
#, php-format
msgid "%d contact edited."
msgid_plural "%d contacts edited."
@@ -6452,192 +6468,192 @@ msgstr[0] "%d contatto modificato."
msgstr[1] "%d contatti modificati"
msgstr[2] "%d contatti modificati"
-#: src/Module/Contact.php:347
+#: src/Module/Contact.php:328
msgid "Show all contacts"
msgstr "Mostra tutti i contatti"
-#: src/Module/Contact.php:352 src/Module/Contact.php:431
-#: src/Module/Moderation/BaseUsers.php:85
+#: src/Module/Contact.php:333 src/Module/Contact.php:412
+#: src/Module/Moderation/BaseUsers.php:72
msgid "Pending"
msgstr "In sospeso"
-#: src/Module/Contact.php:355
+#: src/Module/Contact.php:336
msgid "Only show pending contacts"
msgstr "Mostra solo contatti in sospeso"
-#: src/Module/Contact.php:360 src/Module/Contact.php:434
-#: src/Module/Moderation/BaseUsers.php:93
+#: src/Module/Contact.php:341 src/Module/Contact.php:415
+#: src/Module/Moderation/BaseUsers.php:80
msgid "Blocked"
msgstr "Bloccato"
-#: src/Module/Contact.php:363
+#: src/Module/Contact.php:344
msgid "Only show blocked contacts"
msgstr "Mostra solo contatti bloccati"
-#: src/Module/Contact.php:368 src/Module/Contact.php:440
-#: src/Module/Settings/Server/Index.php:107 src/Object/Post.php:399
+#: src/Module/Contact.php:349 src/Module/Contact.php:421
+#: src/Module/Settings/Server/Index.php:93 src/Object/Post.php:385
msgid "Ignored"
msgstr "Ignorato"
-#: src/Module/Contact.php:371
+#: src/Module/Contact.php:352
msgid "Only show ignored contacts"
msgstr "Mostra solo contatti ignorati"
-#: src/Module/Contact.php:376 src/Module/Contact.php:443
+#: src/Module/Contact.php:357 src/Module/Contact.php:424
msgid "Collapsed"
msgstr ""
-#: src/Module/Contact.php:379
+#: src/Module/Contact.php:360
msgid "Only show collapsed contacts"
msgstr ""
-#: src/Module/Contact.php:384 src/Module/Contact.php:446
+#: src/Module/Contact.php:365 src/Module/Contact.php:427
msgid "Archived"
msgstr "Archiviato"
-#: src/Module/Contact.php:387
+#: src/Module/Contact.php:368
msgid "Only show archived contacts"
msgstr "Mostra solo contatti archiviati"
-#: src/Module/Contact.php:392 src/Module/Contact.php:437
+#: src/Module/Contact.php:373 src/Module/Contact.php:418
msgid "Hidden"
msgstr "Nascosto"
-#: src/Module/Contact.php:395
+#: src/Module/Contact.php:376
msgid "Only show hidden contacts"
msgstr "Mostra solo contatti nascosti"
-#: src/Module/Contact.php:403
+#: src/Module/Contact.php:384
msgid "Organize your contact circles"
msgstr ""
-#: src/Module/Contact.php:458
+#: src/Module/Contact.php:439
msgid "Search your contacts"
msgstr "Cerca nei tuoi contatti"
-#: src/Module/Contact.php:459 src/Module/Search/Index.php:207
+#: src/Module/Contact.php:440 src/Module/Search/Index.php:193
#, php-format
msgid "Results for: %s"
msgstr "Risultati per: %s"
-#: src/Module/Contact.php:466
+#: src/Module/Contact.php:448
msgid "Update"
msgstr "Aggiorna"
-#: src/Module/Contact.php:467 src/Module/Contact/Profile.php:518
-#: src/Module/Moderation/Blocklist/Contact.php:117
-#: src/Module/Moderation/Users/Blocked.php:138
-#: src/Module/Moderation/Users/Index.php:154
+#: src/Module/Contact.php:449 src/Module/Contact/Profile.php:518
+#: src/Module/Moderation/Blocklist/Contact.php:103
+#: src/Module/Moderation/Users/Blocked.php:124
+#: src/Module/Moderation/Users/Index.php:140
msgid "Unblock"
msgstr "Sblocca"
-#: src/Module/Contact.php:468 src/Module/Contact/Profile.php:526
+#: src/Module/Contact.php:450 src/Module/Contact/Profile.php:526
msgid "Unignore"
msgstr "Non ignorare"
-#: src/Module/Contact.php:469 src/Module/Contact/Profile.php:534
+#: src/Module/Contact.php:451 src/Module/Contact/Profile.php:534
msgid "Uncollapse"
msgstr ""
-#: src/Module/Contact.php:471
+#: src/Module/Contact.php:453
msgid "Batch Actions"
msgstr "Azioni Batch"
-#: src/Module/Contact.php:514
+#: src/Module/Contact.php:496
msgid "Conversations started by this contact"
msgstr "Conversazioni iniziate da questo contatto"
-#: src/Module/Contact.php:519
+#: src/Module/Contact.php:501
msgid "Posts and Comments"
msgstr "Messaggi e Commenti"
-#: src/Module/Contact.php:522
+#: src/Module/Contact.php:504
msgid "Individual Posts and Replies"
msgstr ""
-#: src/Module/Contact.php:530
+#: src/Module/Contact.php:512
msgid "Posts containing media objects"
msgstr ""
-#: src/Module/Contact.php:538
+#: src/Module/Contact.php:520
msgid "View all known contacts"
msgstr "Vedi tutti i contatti conosciuti"
-#: src/Module/Contact.php:549
+#: src/Module/Contact.php:531
msgid "Advanced Contact Settings"
msgstr "Impostazioni avanzate Contatto"
-#: src/Module/Contact.php:585
+#: src/Module/Contact.php:567
msgid "Mutual Friendship"
msgstr "Amicizia reciproca"
-#: src/Module/Contact.php:589
+#: src/Module/Contact.php:571
msgid "is a fan of yours"
msgstr "è un tuo fan"
-#: src/Module/Contact.php:593
+#: src/Module/Contact.php:575
msgid "you are a fan of"
msgstr "sei un fan di"
-#: src/Module/Contact.php:611
+#: src/Module/Contact.php:593
msgid "Pending outgoing contact request"
msgstr "Richiesta di contatto in uscita in sospeso"
-#: src/Module/Contact.php:613
+#: src/Module/Contact.php:595
msgid "Pending incoming contact request"
msgstr "Richiesta di contatto in arrivo in sospeso"
-#: src/Module/Contact.php:626 src/Module/Contact/Profile.php:377
+#: src/Module/Contact.php:608 src/Module/Contact/Profile.php:377
#, php-format
msgid "Visit %s's profile [%s]"
msgstr "Visita il profilo di %s [%s]"
-#: src/Module/Contact/Advanced.php:99
+#: src/Module/Contact/Advanced.php:85
msgid "Contact update failed."
msgstr "Le modifiche al contatto non sono state salvate."
-#: src/Module/Contact/Advanced.php:130
+#: src/Module/Contact/Advanced.php:116
msgid "Return to contact editor"
msgstr "Ritorna alla modifica contatto"
-#: src/Module/Contact/Advanced.php:134
-#: src/Module/Moderation/Blocklist/Contact.php:122
-#: src/Module/Moderation/Reports.php:110
-#: src/Module/Moderation/Users/Active.php:126
-#: src/Module/Moderation/Users/Blocked.php:126
-#: src/Module/Moderation/Users/Create.php:70
-#: src/Module/Moderation/Users/Deleted.php:83
-#: src/Module/Moderation/Users/Index.php:140
-#: src/Module/Moderation/Users/Index.php:160
-#: src/Module/Moderation/Users/Pending.php:99 src/Module/Settings/OAuth.php:72
+#: src/Module/Contact/Advanced.php:120
+#: src/Module/Moderation/Blocklist/Contact.php:108
+#: src/Module/Moderation/Reports.php:102
+#: src/Module/Moderation/Users/Active.php:112
+#: src/Module/Moderation/Users/Blocked.php:112
+#: src/Module/Moderation/Users/Create.php:56
+#: src/Module/Moderation/Users/Deleted.php:69
+#: src/Module/Moderation/Users/Index.php:126
+#: src/Module/Moderation/Users/Index.php:146
+#: src/Module/Moderation/Users/Pending.php:85 src/Module/Settings/OAuth.php:58
msgid "Name"
msgstr "Nome"
-#: src/Module/Contact/Advanced.php:135
+#: src/Module/Contact/Advanced.php:121
msgid "Account Nickname"
msgstr "Nome utente"
-#: src/Module/Contact/Advanced.php:136
+#: src/Module/Contact/Advanced.php:122
msgid "Account URL"
msgstr "URL dell'utente"
-#: src/Module/Contact/Advanced.php:137
+#: src/Module/Contact/Advanced.php:123
msgid "Poll/Feed URL"
msgstr "URL Feed"
-#: src/Module/Contact/Advanced.php:138
+#: src/Module/Contact/Advanced.php:124
msgid "New photo from this URL"
msgstr "Nuova foto da questo URL"
-#: src/Module/Contact/Contacts.php:89
+#: src/Module/Contact/Contacts.php:75
msgid "No known contacts."
msgstr "Nessun contatto conosciuto."
-#: src/Module/Contact/Contacts.php:103 src/Module/Profile/Common.php:128
+#: src/Module/Contact/Contacts.php:89 src/Module/Profile/Common.php:114
msgid "No common contacts."
msgstr "Nessun contatto in comune."
-#: src/Module/Contact/Contacts.php:115 src/Module/Profile/Contacts.php:135
+#: src/Module/Contact/Contacts.php:101 src/Module/Profile/Contacts.php:121
#, php-format
msgid "Follower (%s)"
msgid_plural "Followers (%s)"
@@ -6645,7 +6661,7 @@ msgstr[0] "Seguace (%s)"
msgstr[1] "Seguaci (%s)"
msgstr[2] "Seguaci (%s)"
-#: src/Module/Contact/Contacts.php:119 src/Module/Profile/Contacts.php:138
+#: src/Module/Contact/Contacts.php:105 src/Module/Profile/Contacts.php:124
#, php-format
msgid "Following (%s)"
msgid_plural "Following (%s)"
@@ -6653,7 +6669,7 @@ msgstr[0] "Seguendo (%s)"
msgstr[1] "Seguendo (%s)"
msgstr[2] "Seguendo (%s)"
-#: src/Module/Contact/Contacts.php:123 src/Module/Profile/Contacts.php:141
+#: src/Module/Contact/Contacts.php:109 src/Module/Profile/Contacts.php:127
#, php-format
msgid "Mutual friend (%s)"
msgid_plural "Mutual friends (%s)"
@@ -6661,12 +6677,12 @@ msgstr[0] "Amico reciproco (%s)"
msgstr[1] "Amici reciproci (%s)"
msgstr[2] "Amici reciproci (%s)"
-#: src/Module/Contact/Contacts.php:125 src/Module/Profile/Contacts.php:143
+#: src/Module/Contact/Contacts.php:111 src/Module/Profile/Contacts.php:129
#, php-format
msgid "These contacts both follow and are followed by %s."
msgstr "Questi contatti seguono e sono seguiti da %s."
-#: src/Module/Contact/Contacts.php:131 src/Module/Profile/Common.php:116
+#: src/Module/Contact/Contacts.php:117 src/Module/Profile/Common.php:102
#, php-format
msgid "Common contact (%s)"
msgid_plural "Common contacts (%s)"
@@ -6674,14 +6690,14 @@ msgstr[0] "Contatto in comune (%s)"
msgstr[1] "Contatti in comune (%s)"
msgstr[2] "Contatti in comune (%s)"
-#: src/Module/Contact/Contacts.php:133 src/Module/Profile/Common.php:118
+#: src/Module/Contact/Contacts.php:119 src/Module/Profile/Common.php:104
#, php-format
msgid ""
"Both %s and yourself have publicly interacted with these "
"contacts (follow, comment or likes on public posts)."
msgstr "Sia tu che %s avete pubblicamente interagito con questi contatti (seguendo, commentando o mettendo mi piace su messaggi pubblici)."
-#: src/Module/Contact/Contacts.php:139 src/Module/Profile/Contacts.php:149
+#: src/Module/Contact/Contacts.php:125 src/Module/Profile/Contacts.php:135
#, php-format
msgid "Contact (%s)"
msgid_plural "Contacts (%s)"
@@ -6689,95 +6705,91 @@ msgstr[0] "Contatto (%s)"
msgstr[1] "Contatti (%s)"
msgstr[2] "Contatti (%s)"
-#: src/Module/Contact/Follow.php:70 src/Module/Contact/Redir.php:63
-#: src/Module/Contact/Redir.php:223 src/Module/Conversation/Community.php:166
-#: src/Module/Debug/ItemBody.php:38 src/Module/Diaspora/Receive.php:57
-#: src/Module/Item/Display.php:96 src/Module/Item/Feed.php:59
-#: src/Module/Item/Follow.php:41 src/Module/Item/Ignore.php:41
-#: src/Module/Item/Language.php:53 src/Module/Item/Pin.php:41
-#: src/Module/Item/Pin.php:56 src/Module/Item/Searchtext.php:53
-#: src/Module/Item/Star.php:42 src/Module/Update/Display.php:37
+#: src/Module/Contact/Follow.php:56 src/Module/Contact/Redir.php:45
+#: src/Module/Contact/Redir.php:206 src/Module/Conversation/Community.php:154
+#: src/Module/Debug/ItemBody.php:24 src/Module/Diaspora/Receive.php:45
+#: src/Module/Item/Display.php:82 src/Module/Item/Feed.php:45
+#: src/Module/Item/Follow.php:27 src/Module/Item/Ignore.php:27
+#: src/Module/Item/Language.php:39 src/Module/Item/Pin.php:27
+#: src/Module/Item/Pin.php:42 src/Module/Item/Searchtext.php:39
+#: src/Module/Item/Star.php:28 src/Module/Update/Display.php:23
msgid "Access denied."
msgstr "Accesso negato."
-#: src/Module/Contact/Follow.php:105 src/Module/Contact/Unfollow.php:125
-#: src/Module/Profile/RemoteFollow.php:133
+#: src/Module/Contact/Follow.php:91 src/Module/Contact/Unfollow.php:111
+#: src/Module/Profile/RemoteFollow.php:119
msgid "Submit Request"
msgstr "Invia richiesta"
-#: src/Module/Contact/Follow.php:115
+#: src/Module/Contact/Follow.php:101
msgid "You already added this contact."
msgstr "Hai già aggiunto questo contatto."
-#: src/Module/Contact/Follow.php:130
+#: src/Module/Contact/Follow.php:116
msgid "The network type couldn't be detected. Contact can't be added."
msgstr "Non è possibile rilevare il tipo di rete. Il contatto non può essere aggiunto."
-#: src/Module/Contact/Follow.php:138
+#: src/Module/Contact/Follow.php:124
msgid "Diaspora support isn't enabled. Contact can't be added."
msgstr "Il supporto Diaspora non è abilitato. Il contatto non può essere aggiunto."
-#: src/Module/Contact/Follow.php:143
-msgid "OStatus support is disabled. Contact can't be added."
-msgstr "Il supporto OStatus non è abilitato. Il contatto non può essere aggiunto."
-
-#: src/Module/Contact/Follow.php:168 src/Module/Profile/RemoteFollow.php:132
+#: src/Module/Contact/Follow.php:149 src/Module/Profile/RemoteFollow.php:118
msgid "Please answer the following:"
msgstr "Rispondi:"
-#: src/Module/Contact/Follow.php:169 src/Module/Contact/Unfollow.php:123
+#: src/Module/Contact/Follow.php:150 src/Module/Contact/Unfollow.php:109
msgid "Your Identity Address:"
msgstr "L'indirizzo della tua identità:"
-#: src/Module/Contact/Follow.php:170 src/Module/Contact/Profile.php:408
-#: src/Module/Contact/Unfollow.php:129
-#: src/Module/Moderation/Blocklist/Contact.php:131
-#: src/Module/Moderation/Reports.php:117
-#: src/Module/Notifications/Introductions.php:129
-#: src/Module/Notifications/Introductions.php:198
+#: src/Module/Contact/Follow.php:151 src/Module/Contact/Profile.php:408
+#: src/Module/Contact/Unfollow.php:115
+#: src/Module/Moderation/Blocklist/Contact.php:117
+#: src/Module/Moderation/Reports.php:109
+#: src/Module/Notifications/Introductions.php:121
+#: src/Module/Notifications/Introductions.php:190
msgid "Profile URL"
msgstr "URL Profilo"
-#: src/Module/Contact/Follow.php:171 src/Module/Contact/Profile.php:420
-#: src/Module/Notifications/Introductions.php:191
-#: src/Module/Profile/Profile.php:234
+#: src/Module/Contact/Follow.php:152 src/Module/Contact/Profile.php:420
+#: src/Module/Notifications/Introductions.php:183
+#: src/Module/Profile/Profile.php:222
msgid "Tags:"
msgstr "Tag:"
-#: src/Module/Contact/Follow.php:182
+#: src/Module/Contact/Follow.php:163
#, php-format
msgid "%s knows you"
msgstr "%s ti conosce"
-#: src/Module/Contact/Follow.php:183
+#: src/Module/Contact/Follow.php:164
msgid "Add a personal note:"
msgstr "Aggiungi una nota personale:"
-#: src/Module/Contact/Follow.php:192 src/Module/Contact/Unfollow.php:138
+#: src/Module/Contact/Follow.php:173 src/Module/Contact/Unfollow.php:124
msgid "Posts and Replies"
msgstr ""
-#: src/Module/Contact/Follow.php:221
+#: src/Module/Contact/Follow.php:202
msgid "The contact could not be added."
msgstr "Il contatto non può essere aggiunto."
-#: src/Module/Contact/MatchInterests.php:95
-#: src/Module/Media/Attachment/Upload.php:77
-#: src/Module/Media/Attachment/Upload.php:82
-#: src/Module/Media/Photo/Upload.php:81 src/Module/Media/Photo/Upload.php:86
-#: src/Module/Media/Photo/Upload.php:135
+#: src/Module/Contact/MatchInterests.php:81
+#: src/Module/Media/Attachment/Upload.php:63
+#: src/Module/Media/Attachment/Upload.php:68
+#: src/Module/Media/Photo/Upload.php:67 src/Module/Media/Photo/Upload.php:72
+#: src/Module/Media/Photo/Upload.php:121
msgid "Invalid request."
msgstr "Richiesta non valida."
-#: src/Module/Contact/MatchInterests.php:102
+#: src/Module/Contact/MatchInterests.php:88
msgid "No keywords to match. Please add keywords to your profile."
msgstr "Nessuna parola chiave corrisponde. Per favore aggiungi parole chiave al tuo profilo."
-#: src/Module/Contact/MatchInterests.php:145
+#: src/Module/Contact/MatchInterests.php:141
msgid "Profile Match"
msgstr "Profili corrispondenti"
-#: src/Module/Contact/Profile.php:145
+#: src/Module/Contact/Profile.php:131
msgid "Failed to update contact record."
msgstr "Errore nell'aggiornamento del contatto."
@@ -6915,7 +6927,7 @@ msgid "Block/Unblock contact"
msgstr "Blocca/Sblocca contatto"
#: src/Module/Contact/Profile.php:379
-#: src/Module/Moderation/Report/Create.php:293
+#: src/Module/Moderation/Report/Create.php:279
msgid "Ignore contact"
msgstr "Ignora il contatto"
@@ -6960,7 +6972,7 @@ msgid "Manage remote servers"
msgstr ""
#: src/Module/Contact/Profile.php:400
-#: src/Module/Notifications/Introductions.php:192
+#: src/Module/Notifications/Introductions.php:184
msgid "Hide this contact from others"
msgstr "Nascondi questo contatto agli altri"
@@ -6988,12 +7000,12 @@ msgid ""
msgstr "Lista separata da virgola di parole chiave che non dovranno essere convertite in hashtag, quando \"Recupera informazioni e parole chiave\" è selezionato"
#: src/Module/Contact/Profile.php:421
-#: src/Module/Settings/TwoFactor/Index.php:160
+#: src/Module/Settings/TwoFactor/Index.php:146
msgid "Actions"
msgstr "Azioni"
#: src/Module/Contact/Profile.php:423
-#: src/Module/Settings/TwoFactor/Index.php:140 view/theme/frio/theme.php:232
+#: src/Module/Settings/TwoFactor/Index.php:126 view/theme/frio/theme.php:220
msgid "Status"
msgstr "Stato"
@@ -7068,8 +7080,8 @@ msgstr ""
#: src/Module/Contact/Profile.php:441
msgid ""
-"If enabled, posts from this contact will only appear in channels, but not in"
-" the network stream."
+"If enabled, posts from this contact will only appear in channels and network"
+" streams in circles, but not in the general network stream."
msgstr ""
#: src/Module/Contact/Profile.php:509
@@ -7088,7 +7100,7 @@ msgstr "Inverti stato \"Ignora\""
msgid "Toggle Collapsed status"
msgstr ""
-#: src/Module/Contact/Profile.php:543 src/Module/Contact/Revoke.php:106
+#: src/Module/Contact/Profile.php:543 src/Module/Contact/Revoke.php:89
msgid "Revoke Follow"
msgstr ""
@@ -7096,640 +7108,636 @@ msgstr ""
msgid "Revoke the follow from this contact"
msgstr ""
-#: src/Module/Contact/Redir.php:135 src/Module/Contact/Redir.php:187
+#: src/Module/Contact/Redir.php:125
msgid "Bad Request."
msgstr "Richiesta Errata."
-#: src/Module/Contact/Revoke.php:63
-msgid "Unknown contact."
-msgstr ""
-
-#: src/Module/Contact/Revoke.php:77
+#: src/Module/Contact/Revoke.php:60
msgid "Contact is being deleted."
msgstr ""
-#: src/Module/Contact/Revoke.php:91
+#: src/Module/Contact/Revoke.php:74
msgid "Follow was successfully revoked."
msgstr ""
-#: src/Module/Contact/Revoke.php:107
+#: src/Module/Contact/Revoke.php:90
msgid ""
"Do you really want to revoke this contact's follow? This cannot be undone "
"and they will have to manually follow you back again."
msgstr ""
-#: src/Module/Contact/Suggestions.php:62
+#: src/Module/Contact/Suggestions.php:48
msgid ""
"No suggestions available. If this is a new site, please try again in 24 "
"hours."
msgstr "Nessun suggerimento disponibile. Se questo è un sito nuovo, riprova tra 24 ore."
-#: src/Module/Contact/Unfollow.php:98 src/Module/Contact/Unfollow.php:167
+#: src/Module/Contact/Unfollow.php:84 src/Module/Contact/Unfollow.php:153
msgid "You aren't following this contact."
msgstr "Non stai seguendo questo contatto."
-#: src/Module/Contact/Unfollow.php:103
+#: src/Module/Contact/Unfollow.php:89
msgid "Unfollowing is currently not supported by your network."
msgstr "Smettere di seguire non è al momento supportato dalla tua rete."
-#: src/Module/Contact/Unfollow.php:121
+#: src/Module/Contact/Unfollow.php:107
msgid "Disconnect/Unfollow"
msgstr "Disconnetti/Non Seguire"
-#: src/Module/Contact/Unfollow.php:175
+#: src/Module/Contact/Unfollow.php:161
msgid "Contact was successfully unfollowed"
msgstr "Il contatto non è più seguito"
-#: src/Module/Contact/Unfollow.php:178
+#: src/Module/Contact/Unfollow.php:164
msgid "Unable to unfollow this contact, please contact your administrator"
msgstr "Impossibile smettere di seguire questo contatto, contatta il tuo amministratore"
-#: src/Module/Conversation/Channel.php:139
-#: src/Module/Conversation/Community.php:126 src/Module/Search/Index.php:152
-#: src/Module/Search/Index.php:194
+#: src/Module/Conversation/Channel.php:125
+#: src/Module/Conversation/Community.php:114 src/Module/Search/Index.php:138
+#: src/Module/Search/Index.php:180
msgid "No results."
msgstr "Nessun risultato."
-#: src/Module/Conversation/Channel.php:177
+#: src/Module/Conversation/Channel.php:163
msgid "Channel not available."
msgstr ""
-#: src/Module/Conversation/Community.php:92
+#: src/Module/Conversation/Community.php:80
msgid ""
"This community stream shows all public posts received by this node. They may"
" not reflect the opinions of this node’s users."
msgstr "Questa pagina comunità mostra tutti i messaggi pubblici ricevuti da questo nodo. Potrebbero non riflettere le opinioni degli utenti di questo nodo."
-#: src/Module/Conversation/Community.php:180
+#: src/Module/Conversation/Community.php:168
msgid "Community option not available."
msgstr "Opzione Comunità non disponibile"
-#: src/Module/Conversation/Community.php:196
+#: src/Module/Conversation/Community.php:184
msgid "Not available."
msgstr "Non disponibile."
-#: src/Module/Conversation/Network.php:214
+#: src/Module/Conversation/Network.php:202
msgid "No such circle"
msgstr ""
-#: src/Module/Conversation/Network.php:218
+#: src/Module/Conversation/Network.php:206
#, php-format
msgid "Circle: %s"
msgstr ""
-#: src/Module/Conversation/Network.php:237
+#: src/Module/Conversation/Network.php:226
#, php-format
msgid "Error %d (%s) while fetching the timeline."
msgstr ""
-#: src/Module/Conversation/Network.php:314
+#: src/Module/Conversation/Network.php:304
msgid "Network feed not available."
msgstr ""
-#: src/Module/Conversation/Timeline.php:203
+#: src/Module/Conversation/Timeline.php:190
msgid "Include"
msgstr "Includi"
-#: src/Module/Conversation/Timeline.php:204
+#: src/Module/Conversation/Timeline.php:191
msgid "Hide"
msgstr "Nascondi"
-#: src/Module/Credits.php:44
+#: src/Module/Credits.php:30
msgid "Credits"
msgstr "Crediti"
-#: src/Module/Credits.php:45
+#: src/Module/Credits.php:31
msgid ""
"Friendica is a community project, that would not be possible without the "
"help of many people. Here is a list of those who have contributed to the "
"code or the translation of Friendica. Thank you all!"
msgstr "Friendica è un progetto comunitario, che non sarebbe stato possibile realizzare senza l'aiuto di molte persone.\nQuesta è una lista di chi ha contribuito al codice o alle traduzioni di Friendica. Grazie a tutti!"
-#: src/Module/Debug/ActivityPubConversion.php:53
+#: src/Module/Debug/ActivityPubConversion.php:45
msgid "Formatted"
msgstr "Formattato"
-#: src/Module/Debug/ActivityPubConversion.php:65
+#: src/Module/Debug/ActivityPubConversion.php:57
msgid "Activity"
msgstr "Attività"
-#: src/Module/Debug/ActivityPubConversion.php:117
+#: src/Module/Debug/ActivityPubConversion.php:109
msgid "Object data"
msgstr "Dati dell'oggetto"
-#: src/Module/Debug/ActivityPubConversion.php:124
+#: src/Module/Debug/ActivityPubConversion.php:116
msgid "Result Item"
msgstr "Oggetto Ritornato"
-#: src/Module/Debug/ActivityPubConversion.php:129
-#: src/Module/Debug/Babel.php:294 src/Module/Moderation/Item/Source.php:87
-#: src/Module/Security/TwoFactor/Verify.php:98
+#: src/Module/Debug/ActivityPubConversion.php:121
+#: src/Module/Debug/Babel.php:286 src/Module/Moderation/Item/Source.php:79
+#: src/Module/Security/TwoFactor/Verify.php:84
msgid "Error"
msgid_plural "Errors"
msgstr[0] "Errori"
msgstr[1] "Errori"
msgstr[2] "Errori"
-#: src/Module/Debug/ActivityPubConversion.php:138
+#: src/Module/Debug/ActivityPubConversion.php:130
msgid "Source activity"
msgstr "Sorgente attività"
-#: src/Module/Debug/Babel.php:52
+#: src/Module/Debug/Babel.php:44
msgid "Source input"
msgstr "Sorgente"
-#: src/Module/Debug/Babel.php:58
+#: src/Module/Debug/Babel.php:50
msgid "BBCode::toPlaintext"
msgstr "BBCode::toPlaintext"
-#: src/Module/Debug/Babel.php:64
+#: src/Module/Debug/Babel.php:56
msgid "BBCode::convert (raw HTML)"
msgstr "BBCode::convert (raw HTML)"
-#: src/Module/Debug/Babel.php:69
+#: src/Module/Debug/Babel.php:61
msgid "BBCode::convert (hex)"
msgstr "BBCode::convert (hex)"
-#: src/Module/Debug/Babel.php:74
+#: src/Module/Debug/Babel.php:66
msgid "BBCode::convert"
msgstr "BBCode::convert"
-#: src/Module/Debug/Babel.php:80
+#: src/Module/Debug/Babel.php:72
msgid "BBCode::convert => HTML::toBBCode"
msgstr "BBCode::convert => HTML::toBBCode"
-#: src/Module/Debug/Babel.php:86
+#: src/Module/Debug/Babel.php:78
msgid "BBCode::toMarkdown"
msgstr "BBCode::toMarkdown"
-#: src/Module/Debug/Babel.php:92
+#: src/Module/Debug/Babel.php:84
msgid "BBCode::toMarkdown => Markdown::convert (raw HTML)"
msgstr "BBCode::toMarkdown => Markdown::convert (raw HTML)"
-#: src/Module/Debug/Babel.php:96
+#: src/Module/Debug/Babel.php:88
msgid "BBCode::toMarkdown => Markdown::convert"
msgstr "BBCode::toMarkdown => Markdown::convert"
-#: src/Module/Debug/Babel.php:102
+#: src/Module/Debug/Babel.php:94
msgid "BBCode::toMarkdown => Markdown::toBBCode"
msgstr "BBCode::toMarkdown => Markdown::toBBCode"
-#: src/Module/Debug/Babel.php:108
+#: src/Module/Debug/Babel.php:100
msgid "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode"
msgstr "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode"
-#: src/Module/Debug/Babel.php:116
+#: src/Module/Debug/Babel.php:108
msgid "Item Body"
msgstr "Item Body"
-#: src/Module/Debug/Babel.php:120
+#: src/Module/Debug/Babel.php:112
msgid "Item Tags"
msgstr "Item Tags"
-#: src/Module/Debug/Babel.php:126
+#: src/Module/Debug/Babel.php:118
msgid "PageInfo::appendToBody"
msgstr "PageInfo::appendToBody"
-#: src/Module/Debug/Babel.php:131
+#: src/Module/Debug/Babel.php:123
msgid "PageInfo::appendToBody => BBCode::convert (raw HTML)"
msgstr "PageInfo::appendToBody => BBCode::convert (raw HTML)"
-#: src/Module/Debug/Babel.php:135
+#: src/Module/Debug/Babel.php:127
msgid "PageInfo::appendToBody => BBCode::convert"
msgstr "PageInfo::appendToBody => BBCode::convert"
-#: src/Module/Debug/Babel.php:142
+#: src/Module/Debug/Babel.php:134
msgid "Source input (Diaspora format)"
msgstr "Source input (Diaspora format)"
-#: src/Module/Debug/Babel.php:151
+#: src/Module/Debug/Babel.php:143
msgid "Source input (Markdown)"
msgstr "Sorgente (Markdown)"
-#: src/Module/Debug/Babel.php:157
+#: src/Module/Debug/Babel.php:149
msgid "Markdown::convert (raw HTML)"
msgstr "Markdown::convert (raw HTML)"
-#: src/Module/Debug/Babel.php:162
+#: src/Module/Debug/Babel.php:154
msgid "Markdown::convert"
msgstr "Markdown::convert"
-#: src/Module/Debug/Babel.php:168
+#: src/Module/Debug/Babel.php:160
msgid "Markdown::toBBCode"
msgstr "Markdown::toBBCode"
-#: src/Module/Debug/Babel.php:175
+#: src/Module/Debug/Babel.php:167
msgid "Raw HTML input"
msgstr "Sorgente HTML grezzo"
-#: src/Module/Debug/Babel.php:180
+#: src/Module/Debug/Babel.php:172
msgid "HTML Input"
msgstr "Sorgente HTML"
-#: src/Module/Debug/Babel.php:187
+#: src/Module/Debug/Babel.php:179
msgid "HTML Purified (raw)"
msgstr "HTML Purificato (raw)"
-#: src/Module/Debug/Babel.php:192
+#: src/Module/Debug/Babel.php:184
msgid "HTML Purified (hex)"
msgstr "HTML Purificato (hex)"
-#: src/Module/Debug/Babel.php:197
+#: src/Module/Debug/Babel.php:189
msgid "HTML Purified"
msgstr "HTML Purificato"
-#: src/Module/Debug/Babel.php:203
+#: src/Module/Debug/Babel.php:195
msgid "HTML::toBBCode"
msgstr "HTML::toBBCode"
-#: src/Module/Debug/Babel.php:209
+#: src/Module/Debug/Babel.php:201
msgid "HTML::toBBCode => BBCode::convert"
msgstr "HTML::toBBCode => BBCode::convert"
-#: src/Module/Debug/Babel.php:214
+#: src/Module/Debug/Babel.php:206
msgid "HTML::toBBCode => BBCode::convert (raw HTML)"
msgstr "HTML::toBBCode => BBCode::convert (raw HTML)"
-#: src/Module/Debug/Babel.php:220
+#: src/Module/Debug/Babel.php:212
msgid "HTML::toBBCode => BBCode::toPlaintext"
msgstr "HTML::toBBCode => BBCode::toPlaintext"
-#: src/Module/Debug/Babel.php:226
+#: src/Module/Debug/Babel.php:218
msgid "HTML::toMarkdown"
msgstr "HTML::toMarkdown"
-#: src/Module/Debug/Babel.php:232
+#: src/Module/Debug/Babel.php:224
msgid "HTML::toPlaintext"
msgstr "HTML::toPlaintext"
-#: src/Module/Debug/Babel.php:238
+#: src/Module/Debug/Babel.php:230
msgid "HTML::toPlaintext (compact)"
msgstr "HTML::toPlaintext (compatto)"
-#: src/Module/Debug/Babel.php:256
+#: src/Module/Debug/Babel.php:248
msgid "Decoded post"
msgstr "Messaggio decodificato"
-#: src/Module/Debug/Babel.php:277
+#: src/Module/Debug/Babel.php:269
msgid "Post array before expand entities"
msgstr "Pubblica array prima di espandere le entità"
-#: src/Module/Debug/Babel.php:284
+#: src/Module/Debug/Babel.php:276
msgid "Post converted"
msgstr "Messaggio convertito"
-#: src/Module/Debug/Babel.php:289
+#: src/Module/Debug/Babel.php:281
msgid "Converted body"
msgstr "Corpo del testo convertito"
-#: src/Module/Debug/Babel.php:295
+#: src/Module/Debug/Babel.php:287
msgid "Twitter addon is absent from the addon/ folder."
msgstr "Il componente aggiuntivo Twitter è assente dalla cartella addon/ ."
-#: src/Module/Debug/Babel.php:305
+#: src/Module/Debug/Babel.php:297
msgid "Babel Diagnostic"
msgstr "Diagnostica Babel"
-#: src/Module/Debug/Babel.php:307
+#: src/Module/Debug/Babel.php:299
msgid "Source text"
msgstr "Testo sorgente"
-#: src/Module/Debug/Babel.php:308
+#: src/Module/Debug/Babel.php:300
msgid "BBCode"
msgstr "BBCode"
-#: src/Module/Debug/Babel.php:310
+#: src/Module/Debug/Babel.php:302
msgid "Markdown"
msgstr "Markdown"
-#: src/Module/Debug/Babel.php:311
+#: src/Module/Debug/Babel.php:303
msgid "HTML"
msgstr "HTML"
-#: src/Module/Debug/Babel.php:313
+#: src/Module/Debug/Babel.php:305
msgid "Twitter Source / Tweet URL (requires API key)"
msgstr "Sorgente Twitter / URL Tweet (richiede chiave API)"
-#: src/Module/Debug/Feed.php:53 src/Module/Filer/SaveTag.php:47
-#: src/Module/Settings/Profile/Index.php:177
+#: src/Module/Debug/Feed.php:39 src/Module/Filer/SaveTag.php:33
+#: src/Module/Settings/Profile/Index.php:166
msgid "You must be logged in to use this module"
msgstr "Devi aver essere autenticato per usare questo modulo"
-#: src/Module/Debug/Feed.php:78
+#: src/Module/Debug/Feed.php:64
msgid "Source URL"
msgstr "URL Sorgente"
-#: src/Module/Debug/Localtime.php:49
+#: src/Module/Debug/Localtime.php:35
msgid "Time Conversion"
msgstr "Conversione Ora"
-#: src/Module/Debug/Localtime.php:50
+#: src/Module/Debug/Localtime.php:36
msgid ""
"Friendica provides this service for sharing events with other networks and "
"friends in unknown timezones."
msgstr "Friendica fornisce questo servizio per la condivisione di eventi con altre reti e amici in fusi orari sconosciuti."
-#: src/Module/Debug/Localtime.php:51
+#: src/Module/Debug/Localtime.php:37
#, php-format
msgid "UTC time: %s"
msgstr "Ora UTC: %s"
-#: src/Module/Debug/Localtime.php:54
+#: src/Module/Debug/Localtime.php:40
#, php-format
msgid "Current timezone: %s"
msgstr "Fuso orario corrente: %s"
-#: src/Module/Debug/Localtime.php:58
+#: src/Module/Debug/Localtime.php:44
#, php-format
msgid "Converted localtime: %s"
msgstr "Ora locale convertita: %s"
-#: src/Module/Debug/Localtime.php:62
+#: src/Module/Debug/Localtime.php:48
msgid "Please select your timezone:"
msgstr "Selezionare il tuo fuso orario:"
-#: src/Module/Debug/Probe.php:38 src/Module/Debug/WebFinger.php:37
+#: src/Module/Debug/Probe.php:24 src/Module/Debug/WebFinger.php:23
msgid "Only logged in users are permitted to perform a probing."
msgstr "Solo agli utenti loggati è permesso effettuare un probe."
-#: src/Module/Debug/Probe.php:52
+#: src/Module/Debug/Probe.php:38
msgid "Probe Diagnostic"
msgstr "Interroga Diagnostica"
-#: src/Module/Debug/Probe.php:53
+#: src/Module/Debug/Probe.php:39
msgid "Output"
msgstr "Risultato"
-#: src/Module/Debug/Probe.php:56
+#: src/Module/Debug/Probe.php:42
msgid "Lookup address"
msgstr "Indirizzo di consultazione"
-#: src/Module/Debug/WebFinger.php:50
+#: src/Module/Debug/WebFinger.php:36
msgid "Webfinger Diagnostic"
msgstr "Diagnostica Webfinger"
-#: src/Module/Debug/WebFinger.php:52
+#: src/Module/Debug/WebFinger.php:38
msgid "Lookup address:"
msgstr "Indirizzo di consultazione:"
-#: src/Module/Directory.php:74
+#: src/Module/Directory.php:61
msgid "No entries (some entries may be hidden)."
msgstr "Nessuna voce (qualche voce potrebbe essere nascosta)."
-#: src/Module/Directory.php:90
+#: src/Module/Directory.php:77
msgid "Find on this site"
msgstr "Cerca nel sito"
-#: src/Module/Directory.php:92
+#: src/Module/Directory.php:79
msgid "Results for:"
msgstr "Risultati per:"
-#: src/Module/Directory.php:94
+#: src/Module/Directory.php:81
msgid "Site Directory"
msgstr "Elenco del sito"
-#: src/Module/Filer/RemoveTag.php:105
+#: src/Module/Filer/RemoveTag.php:91
msgid "Item was not deleted"
msgstr "L'oggetto non è stato eliminato"
-#: src/Module/Filer/RemoveTag.php:115
+#: src/Module/Filer/RemoveTag.php:101
msgid "Item was not removed"
msgstr "L'oggetto non è stato rimosso"
-#: src/Module/Filer/SaveTag.php:73
+#: src/Module/Filer/SaveTag.php:59
msgid "- select -"
msgstr "- seleziona -"
-#: src/Module/FriendSuggest.php:82
+#: src/Module/FriendSuggest.php:68
msgid "Suggested contact not found."
msgstr "Contatto suggerito non trovato."
-#: src/Module/FriendSuggest.php:100
+#: src/Module/FriendSuggest.php:86
msgid "Friend suggestion sent."
msgstr "Suggerimento di amicizia inviato."
-#: src/Module/FriendSuggest.php:137
+#: src/Module/FriendSuggest.php:123
msgid "Suggest Friends"
msgstr "Suggerisci amici"
-#: src/Module/FriendSuggest.php:140
+#: src/Module/FriendSuggest.php:126
#, php-format
msgid "Suggest a friend for %s"
msgstr "Suggerisci un amico a %s"
-#: src/Module/Friendica.php:81
+#: src/Module/Friendica.php:67
msgid "Installed addons/apps:"
msgstr "Componenti aggiuntivi/applicazioni installate:"
-#: src/Module/Friendica.php:86
+#: src/Module/Friendica.php:72
msgid "No installed addons/apps"
msgstr "Nessun componente aggiuntivo/applicazione installata"
-#: src/Module/Friendica.php:91
+#: src/Module/Friendica.php:77
#, php-format
msgid "Read about the Terms of Service of this node."
msgstr "Leggi i Termini di Servizio di questo nodo."
-#: src/Module/Friendica.php:98
+#: src/Module/Friendica.php:84
msgid "On this server the following remote servers are blocked."
msgstr "In questo server i seguenti server remoti sono bloccati."
-#: src/Module/Friendica.php:101
-#: src/Module/Moderation/Blocklist/Server/Index.php:87
-#: src/Module/Moderation/Blocklist/Server/Index.php:111
-#: src/Module/Settings/Channels.php:232
+#: src/Module/Friendica.php:87
+#: src/Module/Moderation/Blocklist/Server/Index.php:73
+#: src/Module/Moderation/Blocklist/Server/Index.php:97
+#: src/Module/Settings/Channels.php:218
msgid "Reason for the block"
msgstr "Motivazione del blocco"
-#: src/Module/Friendica.php:103
+#: src/Module/Friendica.php:89
msgid "Download this list in CSV format"
msgstr ""
-#: src/Module/Friendica.php:117
+#: src/Module/Friendica.php:103
#, php-format
msgid ""
"This is Friendica, version %s that is running at the web location %s. The "
"database version is %s, the post update version is %s."
msgstr "Questo è Friendica, versione %s in esecuzione all'indirizzo web %s. La versione del database è %s, la versione post-aggiornamento è %s."
-#: src/Module/Friendica.php:122
+#: src/Module/Friendica.php:108
msgid ""
"Please visit Friendi.ca to learn more "
"about the Friendica project."
msgstr "Visita Friendi.ca per saperne di più sul progetto Friendica."
-#: src/Module/Friendica.php:123
+#: src/Module/Friendica.php:109
msgid "Bug reports and issues: please visit"
msgstr "Segnalazioni di bug e problemi: visita"
-#: src/Module/Friendica.php:123
+#: src/Module/Friendica.php:109
msgid "the bugtracker at github"
msgstr "il bugtracker su github"
-#: src/Module/Friendica.php:124
+#: src/Module/Friendica.php:110
msgid "Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca"
msgstr "Per suggerimenti, lodi, ecc., invia una mail a info chiocciola friendi punto ca"
-#: src/Module/HCard.php:45
+#: src/Module/HCard.php:31
msgid "No profile"
msgstr "Nessun profilo"
-#: src/Module/HTTPException/MethodNotAllowed.php:31
+#: src/Module/HTTPException/MethodNotAllowed.php:17
msgid "Method Not Allowed."
msgstr "Metodo Non Consentito."
-#: src/Module/Help.php:60
+#: src/Module/Help.php:46
msgid "Help:"
msgstr "Guida:"
-#: src/Module/Home.php:63
+#: src/Module/Home.php:52
#, php-format
msgid "Welcome to %s"
msgstr "Benvenuto su %s"
-#: src/Module/Install.php:189
+#: src/Module/Install.php:175
msgid "Friendica Communications Server - Setup"
msgstr "Friendica Comunicazione Server - Installazione"
-#: src/Module/Install.php:200
+#: src/Module/Install.php:186
msgid "System check"
msgstr "Controllo sistema"
-#: src/Module/Install.php:202 src/Module/Install.php:247
-#: src/Module/Install.php:326
+#: src/Module/Install.php:188 src/Module/Install.php:233
+#: src/Module/Install.php:312
msgid "Requirement not satisfied"
msgstr "Requisiti non soddisfatti"
-#: src/Module/Install.php:203
+#: src/Module/Install.php:189
msgid "Optional requirement not satisfied"
msgstr "Requisiti opzionali non soddisfatti"
-#: src/Module/Install.php:204
+#: src/Module/Install.php:190
msgid "OK"
msgstr "OK"
-#: src/Module/Install.php:208
+#: src/Module/Install.php:194
msgid "Next"
msgstr "Successivo"
-#: src/Module/Install.php:209
+#: src/Module/Install.php:195
msgid "Check again"
msgstr "Controlla ancora"
-#: src/Module/Install.php:222
+#: src/Module/Install.php:208
msgid "Base settings"
msgstr "Impostazioni base"
-#: src/Module/Install.php:224
+#: src/Module/Install.php:210
msgid "Base path to installation"
msgstr "Percorso base all'installazione"
-#: src/Module/Install.php:226
+#: src/Module/Install.php:212
msgid ""
"If the system cannot detect the correct path to your installation, enter the"
" correct path here. This setting should only be set if you are using a "
"restricted system and symbolic links to your webroot."
msgstr "Se il sistema non è in grado di rilevare il percorso corretto per l'installazione, immettere il percorso corretto qui. Questa impostazione deve essere inserita solo se si utilizza un sistema limitato e/o collegamenti simbolici al tuo webroot."
-#: src/Module/Install.php:229
+#: src/Module/Install.php:215
msgid "The Friendica system URL"
msgstr ""
-#: src/Module/Install.php:231
+#: src/Module/Install.php:217
msgid ""
"Overwrite this field in case the system URL determination isn't right, "
"otherwise leave it as is."
msgstr ""
-#: src/Module/Install.php:242
+#: src/Module/Install.php:228
msgid "Database connection"
msgstr "Connessione al database"
-#: src/Module/Install.php:243
+#: src/Module/Install.php:229
msgid ""
"In order to install Friendica we need to know how to connect to your "
"database."
msgstr "Per installare Friendica dobbiamo sapere come collegarci al tuo database."
-#: src/Module/Install.php:244
+#: src/Module/Install.php:230
msgid ""
"Please contact your hosting provider or site administrator if you have "
"questions about these settings."
msgstr "Contatta il tuo fornitore di hosting o l'amministratore del sito se hai domande su queste impostazioni."
-#: src/Module/Install.php:245
+#: src/Module/Install.php:231
msgid ""
"The database you specify below should already exist. If it does not, please "
"create it before continuing."
msgstr "Il database dovrà già esistere. Se non esiste, crealo prima di continuare."
-#: src/Module/Install.php:252
+#: src/Module/Install.php:238
msgid "Database Server Name"
msgstr "Nome del database server"
-#: src/Module/Install.php:257
+#: src/Module/Install.php:243
msgid "Database Login Name"
msgstr "Nome utente database"
-#: src/Module/Install.php:263
+#: src/Module/Install.php:249
msgid "Database Login Password"
msgstr "Password utente database"
-#: src/Module/Install.php:265
+#: src/Module/Install.php:251
msgid "For security reasons the password must not be empty"
msgstr "Per motivi di sicurezza la password non può essere vuota."
-#: src/Module/Install.php:268
+#: src/Module/Install.php:254
msgid "Database Name"
msgstr "Nome database"
-#: src/Module/Install.php:272 src/Module/Install.php:300
+#: src/Module/Install.php:258 src/Module/Install.php:286
msgid "Please select a default timezone for your website"
msgstr "Seleziona il fuso orario predefinito per il tuo sito web"
-#: src/Module/Install.php:287
+#: src/Module/Install.php:273
msgid "Site settings"
msgstr "Impostazioni sito"
-#: src/Module/Install.php:295
+#: src/Module/Install.php:281
msgid "Site administrator email address"
msgstr "Indirizzo email dell'amministratore del sito"
-#: src/Module/Install.php:297
+#: src/Module/Install.php:283
msgid ""
"Your account email address must match this in order to use the web admin "
"panel."
msgstr "Il tuo indirizzo email deve corrispondere a questo per poter usare il pannello di amministrazione web."
-#: src/Module/Install.php:304
+#: src/Module/Install.php:290
msgid "System Language:"
msgstr "Lingua di Sistema:"
-#: src/Module/Install.php:306
+#: src/Module/Install.php:292
msgid ""
"Set the default language for your Friendica installation interface and to "
"send emails."
msgstr "Imposta la lingua di default per l'interfaccia e l'invio delle email."
-#: src/Module/Install.php:318
+#: src/Module/Install.php:304
msgid "Your Friendica site database has been installed."
msgstr "Il tuo Friendica è stato installato."
-#: src/Module/Install.php:328
+#: src/Module/Install.php:314
msgid "Installation finished"
msgstr "Installazione completata"
-#: src/Module/Install.php:348
+#: src/Module/Install.php:334
msgid "The server domain pattern syntax is case-insensitive shell wildcard, comprising the following special characters:
\n" "La sintassi dello schema di dominio server usa i caratteri jolly e non tiene conto di maiuscole e minuscole, e comprende i seguenti caratteri speciali:
\n*
: Qualsiasi numero di caratteri?
: Qualsiasi singolo carattereThis file can be downloaded from the /friendica
path of any "
"Friendica server.
debug.store_source
config key is set in "
"config/local.config.php
for future items to have sources."
msgstr ""
-#: src/Module/Moderation/Item/Source.php:92
+#: src/Module/Moderation/Item/Source.php:84
msgid "Item Guid"
msgstr "Item Guid"
-#: src/Module/Moderation/Report/Create.php:95
+#: src/Module/Moderation/Report/Create.php:81
msgid "Contact not found or their server is already blocked on this node."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:136
+#: src/Module/Moderation/Report/Create.php:122
msgid "Please login to access this page."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:165
-#: src/Module/Moderation/Report/Create.php:180
-#: src/Module/Moderation/Report/Create.php:208
-#: src/Module/Moderation/Report/Create.php:260
-#: src/Module/Moderation/Report/Create.php:279
+#: src/Module/Moderation/Report/Create.php:151
+#: src/Module/Moderation/Report/Create.php:166
+#: src/Module/Moderation/Report/Create.php:194
+#: src/Module/Moderation/Report/Create.php:246
+#: src/Module/Moderation/Report/Create.php:265
msgid "Create Moderation Report"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:166
+#: src/Module/Moderation/Report/Create.php:152
msgid "Pick Contact"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:167
+#: src/Module/Moderation/Report/Create.php:153
msgid ""
"Please enter below the contact address or profile URL you would like to "
"create a moderation report about."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:171
+#: src/Module/Moderation/Report/Create.php:157
msgid "Contact address/URL"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:181
+#: src/Module/Moderation/Report/Create.php:167
msgid "Pick Category"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:182
+#: src/Module/Moderation/Report/Create.php:168
msgid "Please pick below the category of your report."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:186
-#: src/Module/Moderation/Report/Create.php:311
+#: src/Module/Moderation/Report/Create.php:172
+#: src/Module/Moderation/Report/Create.php:297
msgid "Spam"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:186
+#: src/Module/Moderation/Report/Create.php:172
msgid ""
"This contact is publishing many repeated/overly long posts/replies or "
"advertising their product/websites in otherwise irrelevant conversations."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:187
-#: src/Module/Moderation/Report/Create.php:312
+#: src/Module/Moderation/Report/Create.php:173
+#: src/Module/Moderation/Report/Create.php:298
msgid "Illegal Content"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:187
+#: src/Module/Moderation/Report/Create.php:173
msgid ""
"This contact is publishing content that is considered illegal in this node's"
" hosting juridiction."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:188
-#: src/Module/Moderation/Report/Create.php:313
+#: src/Module/Moderation/Report/Create.php:174
+#: src/Module/Moderation/Report/Create.php:299
msgid "Community Safety"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:188
+#: src/Module/Moderation/Report/Create.php:174
msgid ""
"This contact aggravated you or other people, by being provocative or "
"insensitive, intentionally or not. This includes disclosing people's private"
@@ -8505,12 +8513,12 @@ msgid ""
"replies."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:189
-#: src/Module/Moderation/Report/Create.php:314
+#: src/Module/Moderation/Report/Create.php:175
+#: src/Module/Moderation/Report/Create.php:300
msgid "Unwanted Content/Behavior"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:189
+#: src/Module/Moderation/Report/Create.php:175
msgid ""
"This contact has repeatedly published content irrelevant to the node's theme"
" or is openly criticizing the node's administration/moderation without "
@@ -8518,89 +8526,89 @@ msgid ""
"nitpicking on a sensitive topic."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:190
-#: src/Module/Moderation/Report/Create.php:315
+#: src/Module/Moderation/Report/Create.php:176
+#: src/Module/Moderation/Report/Create.php:301
msgid "Rules Violation"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:190
+#: src/Module/Moderation/Report/Create.php:176
msgid ""
"This contact violated one or more rules of this node. You will be able to "
"pick which one(s) in the next step."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:191
+#: src/Module/Moderation/Report/Create.php:177
msgid ""
"Please elaborate below why you submitted this report. The more details you "
"provide, the better your report can be handled."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:193
+#: src/Module/Moderation/Report/Create.php:179
msgid "Additional Information"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:193
+#: src/Module/Moderation/Report/Create.php:179
msgid ""
"Please provide any additional information relevant to this particular "
"report. You will be able to attach posts by this contact in the next step, "
"but any context is welcome."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:209
+#: src/Module/Moderation/Report/Create.php:195
msgid "Pick Rules"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:210
+#: src/Module/Moderation/Report/Create.php:196
msgid "Please pick below the node rules you believe this contact violated."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:261
+#: src/Module/Moderation/Report/Create.php:247
msgid "Pick Posts"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:262
+#: src/Module/Moderation/Report/Create.php:248
msgid "Please optionally pick posts to attach to your report."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:281
+#: src/Module/Moderation/Report/Create.php:267
msgid "Submit Report"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:282
+#: src/Module/Moderation/Report/Create.php:268
msgid "Further Action"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:283
+#: src/Module/Moderation/Report/Create.php:269
msgid ""
"You can also perform one of the following action on the contact you "
"reported:"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:291
+#: src/Module/Moderation/Report/Create.php:277
msgid "Nothing"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:292
+#: src/Module/Moderation/Report/Create.php:278
msgid "Collapse contact"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:292
+#: src/Module/Moderation/Report/Create.php:278
msgid ""
"Their posts and replies will keep appearing in your Network page but their "
"content will be collapsed by default."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:293
+#: src/Module/Moderation/Report/Create.php:279
msgid ""
"Their posts won't appear in your Network page anymore, but their replies can"
" appear in forum threads. They still can follow you."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:294
+#: src/Module/Moderation/Report/Create.php:280
msgid "Block contact"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:294
+#: src/Module/Moderation/Report/Create.php:280
msgid ""
"Their posts won't appear in your Network page anymore, but their replies can"
" appear in forum threads, with their content collapsed by default. They "
@@ -8608,51 +8616,51 @@ msgid ""
"means."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:297
+#: src/Module/Moderation/Report/Create.php:283
msgid "Forward report"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:297
+#: src/Module/Moderation/Report/Create.php:283
msgid "Would you ike to forward this report to the remote server?"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:330
+#: src/Module/Moderation/Report/Create.php:316
msgid "1. Pick a contact"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:331
+#: src/Module/Moderation/Report/Create.php:317
msgid "2. Pick a category"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:332
+#: src/Module/Moderation/Report/Create.php:318
msgid "2a. Pick rules"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:333
+#: src/Module/Moderation/Report/Create.php:319
msgid "2b. Add comment"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:334
+#: src/Module/Moderation/Report/Create.php:320
msgid "3. Pick posts"
msgstr ""
-#: src/Module/Moderation/Reports.php:105
+#: src/Module/Moderation/Reports.php:97
msgid "List of reports"
msgstr ""
-#: src/Module/Moderation/Reports.php:106
+#: src/Module/Moderation/Reports.php:98
msgid "This page display reports created by our or remote users."
msgstr ""
-#: src/Module/Moderation/Reports.php:107
+#: src/Module/Moderation/Reports.php:99
msgid "No report exists at this node."
msgstr ""
-#: src/Module/Moderation/Reports.php:110
+#: src/Module/Moderation/Reports.php:102
msgid "Category"
msgstr ""
-#: src/Module/Moderation/Reports.php:114
+#: src/Module/Moderation/Reports.php:106
#, php-format
msgid "%s total report"
msgid_plural "%s total reports"
@@ -8660,24 +8668,24 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: src/Module/Moderation/Reports.php:117
+#: src/Module/Moderation/Reports.php:109
msgid "URL of the reported contact."
msgstr ""
-#: src/Module/Moderation/Summary.php:57 src/Module/Settings/Account.php:431
+#: src/Module/Moderation/Summary.php:43 src/Module/Settings/Account.php:422
msgid "Channel Relay"
msgstr ""
-#: src/Module/Moderation/Summary.php:77
+#: src/Module/Moderation/Summary.php:63
msgid "Registered users"
msgstr "Utenti registrati"
-#: src/Module/Moderation/Summary.php:79
+#: src/Module/Moderation/Summary.php:65
msgid "Pending registrations"
msgstr "Registrazioni in attesa"
-#: src/Module/Moderation/Users/Active.php:43
-#: src/Module/Moderation/Users/Index.php:43
+#: src/Module/Moderation/Users/Active.php:29
+#: src/Module/Moderation/Users/Index.php:29
#, php-format
msgid "%s user blocked"
msgid_plural "%s users blocked"
@@ -8685,18 +8693,18 @@ msgstr[0] "%s utente bloccato"
msgstr[1] "%s utenti bloccati"
msgstr[2] "%s utenti bloccati"
-#: src/Module/Moderation/Users/Active.php:51
-#: src/Module/Moderation/Users/Active.php:85
-#: src/Module/Moderation/Users/Blocked.php:51
-#: src/Module/Moderation/Users/Blocked.php:85
-#: src/Module/Moderation/Users/Index.php:58
-#: src/Module/Moderation/Users/Index.php:92
+#: src/Module/Moderation/Users/Active.php:37
+#: src/Module/Moderation/Users/Active.php:71
+#: src/Module/Moderation/Users/Blocked.php:37
+#: src/Module/Moderation/Users/Blocked.php:71
+#: src/Module/Moderation/Users/Index.php:44
+#: src/Module/Moderation/Users/Index.php:78
msgid "You can't remove yourself"
msgstr "Non puoi rimuovere te stesso"
-#: src/Module/Moderation/Users/Active.php:55
-#: src/Module/Moderation/Users/Blocked.php:55
-#: src/Module/Moderation/Users/Index.php:62
+#: src/Module/Moderation/Users/Active.php:41
+#: src/Module/Moderation/Users/Blocked.php:41
+#: src/Module/Moderation/Users/Index.php:48
#, php-format
msgid "%s user deleted"
msgid_plural "%s users deleted"
@@ -8704,88 +8712,88 @@ msgstr[0] "%s utente cancellato"
msgstr[1] "%s utenti cancellati"
msgstr[2] "%s utenti cancellati"
-#: src/Module/Moderation/Users/Active.php:83
-#: src/Module/Moderation/Users/Blocked.php:83
-#: src/Module/Moderation/Users/Index.php:90
+#: src/Module/Moderation/Users/Active.php:69
+#: src/Module/Moderation/Users/Blocked.php:69
+#: src/Module/Moderation/Users/Index.php:76
#, php-format
msgid "User \"%s\" deleted"
msgstr "Utente \"%s\" eliminato"
-#: src/Module/Moderation/Users/Active.php:93
-#: src/Module/Moderation/Users/Index.php:100
+#: src/Module/Moderation/Users/Active.php:79
+#: src/Module/Moderation/Users/Index.php:86
#, php-format
msgid "User \"%s\" blocked"
msgstr "Utente \"%s\" bloccato"
-#: src/Module/Moderation/Users/Active.php:126
-#: src/Module/Moderation/Users/Blocked.php:126
-#: src/Module/Moderation/Users/Deleted.php:83
-#: src/Module/Moderation/Users/Index.php:140
-#: src/Module/Moderation/Users/Index.php:160
+#: src/Module/Moderation/Users/Active.php:112
+#: src/Module/Moderation/Users/Blocked.php:112
+#: src/Module/Moderation/Users/Deleted.php:69
+#: src/Module/Moderation/Users/Index.php:126
+#: src/Module/Moderation/Users/Index.php:146
msgid "Register date"
msgstr "Data registrazione"
-#: src/Module/Moderation/Users/Active.php:126
-#: src/Module/Moderation/Users/Blocked.php:126
-#: src/Module/Moderation/Users/Deleted.php:83
-#: src/Module/Moderation/Users/Index.php:140
-#: src/Module/Moderation/Users/Index.php:160
+#: src/Module/Moderation/Users/Active.php:112
+#: src/Module/Moderation/Users/Blocked.php:112
+#: src/Module/Moderation/Users/Deleted.php:69
+#: src/Module/Moderation/Users/Index.php:126
+#: src/Module/Moderation/Users/Index.php:146
msgid "Last login"
msgstr "Ultimo accesso"
-#: src/Module/Moderation/Users/Active.php:126
-#: src/Module/Moderation/Users/Blocked.php:126
-#: src/Module/Moderation/Users/Deleted.php:83
-#: src/Module/Moderation/Users/Index.php:140
-#: src/Module/Moderation/Users/Index.php:160
+#: src/Module/Moderation/Users/Active.php:112
+#: src/Module/Moderation/Users/Blocked.php:112
+#: src/Module/Moderation/Users/Deleted.php:69
+#: src/Module/Moderation/Users/Index.php:126
+#: src/Module/Moderation/Users/Index.php:146
msgid "Last public item"
msgstr "Ultimo elemento pubblico"
-#: src/Module/Moderation/Users/Active.php:134
+#: src/Module/Moderation/Users/Active.php:120
msgid "Active Accounts"
msgstr "Account attivi"
-#: src/Module/Moderation/Users/Active.php:138
-#: src/Module/Moderation/Users/Blocked.php:137
-#: src/Module/Moderation/Users/Index.php:153
+#: src/Module/Moderation/Users/Active.php:124
+#: src/Module/Moderation/Users/Blocked.php:123
+#: src/Module/Moderation/Users/Index.php:139
msgid "User blocked"
msgstr "Utente bloccato"
-#: src/Module/Moderation/Users/Active.php:139
-#: src/Module/Moderation/Users/Blocked.php:139
-#: src/Module/Moderation/Users/Index.php:155
+#: src/Module/Moderation/Users/Active.php:125
+#: src/Module/Moderation/Users/Blocked.php:125
+#: src/Module/Moderation/Users/Index.php:141
msgid "Site admin"
msgstr "Amministrazione sito"
-#: src/Module/Moderation/Users/Active.php:140
-#: src/Module/Moderation/Users/Blocked.php:140
-#: src/Module/Moderation/Users/Index.php:156
+#: src/Module/Moderation/Users/Active.php:126
+#: src/Module/Moderation/Users/Blocked.php:126
+#: src/Module/Moderation/Users/Index.php:142
msgid "Account expired"
msgstr "Account scaduto"
-#: src/Module/Moderation/Users/Active.php:141
-#: src/Module/Moderation/Users/Index.php:159
+#: src/Module/Moderation/Users/Active.php:127
+#: src/Module/Moderation/Users/Index.php:145
msgid "Create a new user"
msgstr "Crea un nuovo utente"
-#: src/Module/Moderation/Users/Active.php:147
-#: src/Module/Moderation/Users/Blocked.php:146
-#: src/Module/Moderation/Users/Index.php:165
+#: src/Module/Moderation/Users/Active.php:133
+#: src/Module/Moderation/Users/Blocked.php:132
+#: src/Module/Moderation/Users/Index.php:151
msgid ""
"Selected users will be deleted!\\n\\nEverything these users had posted on "
"this site will be permanently deleted!\\n\\nAre you sure?"
msgstr "Gli utenti selezionati saranno cancellati!\\n\\nTutto quello che gli utenti hanno inviato su questo sito sarà permanentemente canellato!\\n\\nSei sicuro?"
-#: src/Module/Moderation/Users/Active.php:148
-#: src/Module/Moderation/Users/Blocked.php:147
-#: src/Module/Moderation/Users/Index.php:166
+#: src/Module/Moderation/Users/Active.php:134
+#: src/Module/Moderation/Users/Blocked.php:133
+#: src/Module/Moderation/Users/Index.php:152
msgid ""
"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
"site will be permanently deleted!\\n\\nAre you sure?"
msgstr "L'utente {0} sarà cancellato!\\n\\nTutto quello che ha inviato su questo sito sarà permanentemente cancellato!\\n\\nSei sicuro?"
-#: src/Module/Moderation/Users/Blocked.php:43
-#: src/Module/Moderation/Users/Index.php:50
+#: src/Module/Moderation/Users/Blocked.php:29
+#: src/Module/Moderation/Users/Index.php:36
#, php-format
msgid "%s user unblocked"
msgid_plural "%s users unblocked"
@@ -8793,54 +8801,54 @@ msgstr[0] "%s utente sbloccato"
msgstr[1] "%s utenti sbloccati"
msgstr[2] "%s utenti sbloccati"
-#: src/Module/Moderation/Users/Blocked.php:92
-#: src/Module/Moderation/Users/Index.php:106
+#: src/Module/Moderation/Users/Blocked.php:78
+#: src/Module/Moderation/Users/Index.php:92
#, php-format
msgid "User \"%s\" unblocked"
msgstr "Utente \"%s\" sbloccato"
-#: src/Module/Moderation/Users/Blocked.php:134
+#: src/Module/Moderation/Users/Blocked.php:120
msgid "Blocked Users"
msgstr "Utenti bloccati"
-#: src/Module/Moderation/Users/Create.php:62
+#: src/Module/Moderation/Users/Create.php:48
msgid "New User"
msgstr "Nuovo Utente"
-#: src/Module/Moderation/Users/Create.php:63
+#: src/Module/Moderation/Users/Create.php:49
msgid "Add User"
msgstr "Aggiungi utente"
-#: src/Module/Moderation/Users/Create.php:70
+#: src/Module/Moderation/Users/Create.php:56
msgid "Name of the new user."
msgstr "Nome del nuovo utente."
-#: src/Module/Moderation/Users/Create.php:71
+#: src/Module/Moderation/Users/Create.php:57
msgid "Nickname"
msgstr "Nome utente"
-#: src/Module/Moderation/Users/Create.php:71
+#: src/Module/Moderation/Users/Create.php:57
msgid "Nickname of the new user."
msgstr "Nome utente del nuovo utente."
-#: src/Module/Moderation/Users/Create.php:72
+#: src/Module/Moderation/Users/Create.php:58
msgid "Email address of the new user."
msgstr "Indirizzo Email del nuovo utente."
-#: src/Module/Moderation/Users/Deleted.php:81
+#: src/Module/Moderation/Users/Deleted.php:67
msgid "Users awaiting permanent deletion"
msgstr "Utenti in attesa della cancellazione definitiva"
-#: src/Module/Moderation/Users/Deleted.php:83
-#: src/Module/Moderation/Users/Index.php:160
+#: src/Module/Moderation/Users/Deleted.php:69
+#: src/Module/Moderation/Users/Index.php:146
msgid "Permanent deletion"
msgstr "Cancellazione permanente"
-#: src/Module/Moderation/Users/Index.php:150
+#: src/Module/Moderation/Users/Index.php:136
msgid "User waiting for permanent deletion"
msgstr "Utente in attesa di cancellazione definitiva"
-#: src/Module/Moderation/Users/Pending.php:44
+#: src/Module/Moderation/Users/Pending.php:30
#, php-format
msgid "%s user approved"
msgid_plural "%s users approved"
@@ -8848,7 +8856,7 @@ msgstr[0] "%s utente approvato"
msgstr[1] "%s utenti approvati"
msgstr[2] "%s utenti approvati"
-#: src/Module/Moderation/Users/Pending.php:51
+#: src/Module/Moderation/Users/Pending.php:37
#, php-format
msgid "%s registration revoked"
msgid_plural "%s registrations revoked"
@@ -8856,420 +8864,406 @@ msgstr[0] "%s registrazione revocata"
msgstr[1] "%s registrazioni revocate"
msgstr[2] "%s registrazioni revocate"
-#: src/Module/Moderation/Users/Pending.php:76
+#: src/Module/Moderation/Users/Pending.php:62
msgid "Account approved."
msgstr "Account approvato."
-#: src/Module/Moderation/Users/Pending.php:82
+#: src/Module/Moderation/Users/Pending.php:68
msgid "Registration revoked"
msgstr "Registrazione revocata"
-#: src/Module/Moderation/Users/Pending.php:97
+#: src/Module/Moderation/Users/Pending.php:83
msgid "User registrations awaiting review"
msgstr "Registrazioni utente in attesa di verifica"
-#: src/Module/Moderation/Users/Pending.php:99
+#: src/Module/Moderation/Users/Pending.php:85
msgid "Request date"
msgstr "Data richiesta"
-#: src/Module/Moderation/Users/Pending.php:100
+#: src/Module/Moderation/Users/Pending.php:86
msgid "No registrations."
msgstr "Nessuna registrazione."
-#: src/Module/Moderation/Users/Pending.php:101
+#: src/Module/Moderation/Users/Pending.php:87
msgid "Note from the user"
msgstr "Nota dall'utente"
-#: src/Module/Moderation/Users/Pending.php:103
+#: src/Module/Moderation/Users/Pending.php:89
msgid "Deny"
msgstr "Nega"
-#: src/Module/Notifications/Introductions.php:99
+#: src/Module/Notifications/Introductions.php:91
msgid "Show Ignored Requests"
msgstr "Mostra richieste ignorate"
-#: src/Module/Notifications/Introductions.php:99
+#: src/Module/Notifications/Introductions.php:91
msgid "Hide Ignored Requests"
msgstr "Nascondi richieste ignorate"
-#: src/Module/Notifications/Introductions.php:115
-#: src/Module/Notifications/Introductions.php:178
+#: src/Module/Notifications/Introductions.php:107
+#: src/Module/Notifications/Introductions.php:170
msgid "Notification type:"
msgstr "Tipo di notifica:"
-#: src/Module/Notifications/Introductions.php:118
+#: src/Module/Notifications/Introductions.php:110
msgid "Suggested by:"
msgstr "Suggerito da:"
-#: src/Module/Notifications/Introductions.php:143
+#: src/Module/Notifications/Introductions.php:135
msgid "Claims to be known to you: "
msgstr "Dice di conoscerti: "
-#: src/Module/Notifications/Introductions.php:152
+#: src/Module/Notifications/Introductions.php:144
msgid "Shall your connection be bidirectional or not?"
msgstr "La connessione dovrà essere bidirezionale o no?"
-#: src/Module/Notifications/Introductions.php:153
+#: src/Module/Notifications/Introductions.php:145
#, php-format
msgid ""
"Accepting %s as a friend allows %s to subscribe to your posts, and you will "
"also receive updates from them in your news feed."
msgstr "Accettando %s come amico permette a %s di seguire i tuoi messaggi, e a te di riceverne gli aggiornamenti."
-#: src/Module/Notifications/Introductions.php:154
+#: src/Module/Notifications/Introductions.php:146
#, php-format
msgid ""
"Accepting %s as a subscriber allows them to subscribe to your posts, but you"
" will not receive updates from them in your news feed."
msgstr "Accettando %s come abbonato gli permetti di abbonarsi ai tuoi messaggi, ma tu non riceverai aggiornamenti da lui."
-#: src/Module/Notifications/Introductions.php:156
+#: src/Module/Notifications/Introductions.php:148
msgid "Friend"
msgstr "Amico"
-#: src/Module/Notifications/Introductions.php:157
+#: src/Module/Notifications/Introductions.php:149
msgid "Subscriber"
msgstr "Abbonato"
-#: src/Module/Notifications/Introductions.php:216
+#: src/Module/Notifications/Introductions.php:208
msgid "No introductions."
msgstr "Nessuna presentazione."
-#: src/Module/Notifications/Introductions.php:217
-#: src/Module/Notifications/Notifications.php:135
+#: src/Module/Notifications/Introductions.php:209
+#: src/Module/Notifications/Notifications.php:127
#, php-format
msgid "No more %s notifications."
msgstr "Nessun'altra notifica %s."
-#: src/Module/Notifications/Notification.php:135
+#: src/Module/Notifications/Notification.php:121
msgid "You must be logged in to show this page."
msgstr "Devi essere autenticato per vedere questa pagina."
-#: src/Module/Notifications/Notifications.php:66
+#: src/Module/Notifications/Notifications.php:52
msgid "Network Notifications"
msgstr "Notifiche dalla rete"
-#: src/Module/Notifications/Notifications.php:72
+#: src/Module/Notifications/Notifications.php:58
msgid "System Notifications"
msgstr "Notifiche di sistema"
-#: src/Module/Notifications/Notifications.php:78
+#: src/Module/Notifications/Notifications.php:64
msgid "Personal Notifications"
msgstr "Notifiche personali"
-#: src/Module/Notifications/Notifications.php:84
+#: src/Module/Notifications/Notifications.php:70
msgid "Home Notifications"
msgstr "Notifiche bacheca"
-#: src/Module/Notifications/Notifications.php:140
+#: src/Module/Notifications/Notifications.php:132
msgid "Show unread"
msgstr "Mostra non letti"
-#: src/Module/Notifications/Ping.php:220
+#: src/Module/Notifications/Ping.php:206
msgid "{0} requested registration"
msgstr "{0} chiede la registrazione"
-#: src/Module/Notifications/Ping.php:229
+#: src/Module/Notifications/Ping.php:215
#, php-format
msgid "{0} and %d others requested registration"
msgstr "{0} e %d altre registrazioni richieste"
-#: src/Module/OAuth/Acknowledge.php:51
+#: src/Module/OAuth/Acknowledge.php:37
msgid "Authorize application connection"
msgstr "Autorizza la connessione dell'applicazione"
-#: src/Module/OAuth/Acknowledge.php:53
+#: src/Module/OAuth/Acknowledge.php:39
msgid ""
"Do you want to authorize this application to access your posts and contacts,"
" and/or create new posts for you?"
msgstr "Vuoi autorizzare questa applicazione per accedere ai messaggi e ai contatti, e / o creare nuovi messaggi per te?"
-#: src/Module/OAuth/Authorize.php:54
+#: src/Module/OAuth/Authorize.php:40
msgid "Unsupported or missing response type"
msgstr "Tipo di risposta mancante o non supportato"
-#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:75
+#: src/Module/OAuth/Authorize.php:45 src/Module/OAuth/Token.php:61
msgid "Incomplete request data"
msgstr "Dati richiesta incompleti"
-#: src/Module/OAuth/Authorize.php:106
+#: src/Module/OAuth/Authorize.php:92
#, php-format
msgid ""
"Please copy the following authentication code into your application and "
"close this window: %s"
msgstr ""
-#: src/Module/OAuth/Token.php:80
+#: src/Module/OAuth/Token.php:66
msgid "Invalid data or unknown client"
msgstr ""
-#: src/Module/OAuth/Token.php:105
+#: src/Module/OAuth/Token.php:91
msgid "Unsupported or missing grant type"
msgstr "Tipo di concessione mancante o non supportato"
-#: src/Module/OStatus/Repair.php:83
-msgid "Resubscribing to OStatus contacts"
-msgstr "Risottoscrivi i contatti OStatus"
-
-#: src/Module/OStatus/Repair.php:84 src/Module/OStatus/Subscribe.php:160
-msgid "Keep this window open until done."
-msgstr "Tieni questa finestra aperta fino a che ha finito."
-
-#: src/Module/OStatus/Repair.php:85
-msgid "✔ Done"
-msgstr ""
-
-#: src/Module/OStatus/Repair.php:86
-msgid "No OStatus contacts to resubscribe to."
-msgstr ""
-
-#: src/Module/OStatus/Subscribe.php:72
+#: src/Module/OStatus/Subscribe.php:58
msgid "Subscribing to contacts"
msgstr "Iscrizione a contatti"
-#: src/Module/OStatus/Subscribe.php:81
+#: src/Module/OStatus/Subscribe.php:67
msgid "No contact provided."
msgstr "Nessun contatto disponibile."
-#: src/Module/OStatus/Subscribe.php:87
+#: src/Module/OStatus/Subscribe.php:73
msgid "Couldn't fetch information for contact."
msgstr "Non è stato possibile recuperare le informazioni del contatto."
-#: src/Module/OStatus/Subscribe.php:98
+#: src/Module/OStatus/Subscribe.php:84
msgid "Couldn't fetch friends for contact."
msgstr "Non è stato possibile recuperare gli amici del contatto."
-#: src/Module/OStatus/Subscribe.php:104 src/Module/OStatus/Subscribe.php:115
+#: src/Module/OStatus/Subscribe.php:90 src/Module/OStatus/Subscribe.php:101
msgid "Couldn't fetch following contacts."
msgstr "Non è stato possibile recuperare i contatti seguiti."
-#: src/Module/OStatus/Subscribe.php:110
+#: src/Module/OStatus/Subscribe.php:96
msgid "Couldn't fetch remote profile."
msgstr "Non è stato possibile recuperare il profilo remoto."
-#: src/Module/OStatus/Subscribe.php:120
+#: src/Module/OStatus/Subscribe.php:106
msgid "Unsupported network"
msgstr "Rete non supportata"
-#: src/Module/OStatus/Subscribe.php:136
+#: src/Module/OStatus/Subscribe.php:122
msgid "Done"
msgstr "Fatto"
-#: src/Module/OStatus/Subscribe.php:150
+#: src/Module/OStatus/Subscribe.php:136
msgid "success"
msgstr "successo"
-#: src/Module/OStatus/Subscribe.php:152
+#: src/Module/OStatus/Subscribe.php:138
msgid "failed"
msgstr "fallito"
-#: src/Module/OStatus/Subscribe.php:155
+#: src/Module/OStatus/Subscribe.php:141
msgid "ignored"
msgstr "ignorato"
-#: src/Module/Photo.php:124
+#: src/Module/OStatus/Subscribe.php:146
+msgid "Keep this window open until done."
+msgstr "Tieni questa finestra aperta fino a che ha finito."
+
+#: src/Module/Photo.php:108
msgid "The Photo is not available."
msgstr ""
-#: src/Module/Photo.php:149
+#: src/Module/Photo.php:133
#, php-format
msgid "The Photo with id %s is not available."
msgstr "La Foto con id %s non è disponibile."
-#: src/Module/Photo.php:190
+#: src/Module/Photo.php:174
#, php-format
msgid "Invalid external resource with url %s."
msgstr ""
-#: src/Module/Photo.php:192
+#: src/Module/Photo.php:176
#, php-format
msgid "Invalid photo with id %s."
msgstr "Foto con id %s non valida."
-#: src/Module/Post/Edit.php:82 src/Module/Post/Edit.php:96
+#: src/Module/Post/Edit.php:68 src/Module/Post/Edit.php:82
msgid "Post not found."
msgstr ""
-#: src/Module/Post/Edit.php:102
+#: src/Module/Post/Edit.php:88
msgid "Edit post"
msgstr "Modifica messaggio"
-#: src/Module/Post/Edit.php:136
+#: src/Module/Post/Edit.php:122
msgid "web link"
msgstr "collegamento web"
-#: src/Module/Post/Edit.php:137
+#: src/Module/Post/Edit.php:123
msgid "Insert video link"
msgstr "Inserire collegamento video"
-#: src/Module/Post/Edit.php:138
+#: src/Module/Post/Edit.php:124
msgid "video link"
msgstr "collegamento video"
-#: src/Module/Post/Edit.php:139
+#: src/Module/Post/Edit.php:125
msgid "Insert audio link"
msgstr "Inserisci collegamento audio"
-#: src/Module/Post/Edit.php:140
+#: src/Module/Post/Edit.php:126
msgid "audio link"
msgstr "collegamento audio"
-#: src/Module/Post/Tag/Remove.php:106
+#: src/Module/Post/Tag/Remove.php:92
msgid "Remove Item Tag"
msgstr "Rimuovi il tag"
-#: src/Module/Post/Tag/Remove.php:107
+#: src/Module/Post/Tag/Remove.php:93
msgid "Select a tag to remove: "
msgstr "Seleziona un tag da rimuovere: "
-#: src/Module/Post/Tag/Remove.php:108
-#: src/Module/Settings/TwoFactor/Trusted.php:147
+#: src/Module/Post/Tag/Remove.php:94
+#: src/Module/Settings/TwoFactor/Trusted.php:133
msgid "Remove"
msgstr "Rimuovi"
-#: src/Module/Privacy/PermissionTooltip.php:71
+#: src/Module/Privacy/PermissionTooltip.php:57
#, php-format
msgid "Wrong type \"%s\", expected one of: %s"
msgstr "Tipo \"%s\" errato, ci si aspettava uno di: %s"
-#: src/Module/Privacy/PermissionTooltip.php:101
+#: src/Module/Privacy/PermissionTooltip.php:87
msgid "Model not found"
msgstr "Modello non trovato"
-#: src/Module/Privacy/PermissionTooltip.php:118
+#: src/Module/Privacy/PermissionTooltip.php:104
msgid "Unlisted"
msgstr ""
-#: src/Module/Privacy/PermissionTooltip.php:124
+#: src/Module/Privacy/PermissionTooltip.php:110
msgid "Remote privacy information not available."
msgstr "Informazioni remote sulla privacy non disponibili."
-#: src/Module/Privacy/PermissionTooltip.php:131
+#: src/Module/Privacy/PermissionTooltip.php:117
msgid "Visible to:"
msgstr "Visibile a:"
-#: src/Module/Privacy/PermissionTooltip.php:133
+#: src/Module/Privacy/PermissionTooltip.php:119
msgid "CC:"
msgstr ""
-#: src/Module/Privacy/PermissionTooltip.php:134
+#: src/Module/Privacy/PermissionTooltip.php:120
msgid "BCC:"
msgstr ""
-#: src/Module/Privacy/PermissionTooltip.php:135
+#: src/Module/Privacy/PermissionTooltip.php:121
msgid "Audience:"
msgstr ""
-#: src/Module/Privacy/PermissionTooltip.php:136
+#: src/Module/Privacy/PermissionTooltip.php:122
msgid "Attributed To:"
msgstr ""
-#: src/Module/Privacy/PermissionTooltip.php:234
+#: src/Module/Privacy/PermissionTooltip.php:220
#, php-format
msgid "Collection (%s)"
msgstr ""
-#: src/Module/Privacy/PermissionTooltip.php:238
+#: src/Module/Privacy/PermissionTooltip.php:224
#, php-format
msgid "Followers (%s)"
msgstr ""
-#: src/Module/Privacy/PermissionTooltip.php:255
+#: src/Module/Privacy/PermissionTooltip.php:241
#, php-format
msgid "%d more"
msgstr ""
-#: src/Module/Profile/Contacts.php:159
+#: src/Module/Profile/Contacts.php:145
msgid "No contacts."
msgstr "Nessun contatto."
-#: src/Module/Profile/Conversations.php:106
-#: src/Module/Profile/Conversations.php:109 src/Module/Profile/Profile.php:351
-#: src/Module/Profile/Profile.php:354 src/Protocol/Feed.php:1095
-#: src/Protocol/OStatus.php:1011
-#, php-format
-msgid "%s's timeline"
-msgstr "la timeline di %s"
-
-#: src/Module/Profile/Conversations.php:107 src/Module/Profile/Profile.php:352
-#: src/Protocol/Feed.php:1099 src/Protocol/OStatus.php:1016
+#: src/Module/Profile/Conversations.php:92 src/Module/Profile/Profile.php:339
+#: src/Protocol/Feed.php:1097
#, php-format
msgid "%s's posts"
msgstr "il messaggio di %s"
-#: src/Module/Profile/Conversations.php:108 src/Module/Profile/Profile.php:353
-#: src/Protocol/Feed.php:1102 src/Protocol/OStatus.php:1020
+#: src/Module/Profile/Conversations.php:93 src/Module/Profile/Profile.php:340
+#: src/Protocol/Feed.php:1100
#, php-format
msgid "%s's comments"
msgstr "il commento di %s"
-#: src/Module/Profile/Photos.php:164 src/Module/Profile/Photos.php:167
-#: src/Module/Profile/Photos.php:192
-#: src/Module/Settings/Profile/Photo/Index.php:58
+#: src/Module/Profile/Conversations.php:94 src/Module/Profile/Profile.php:341
+#: src/Protocol/Feed.php:1093
+#, php-format
+msgid "%s's timeline"
+msgstr "la timeline di %s"
+
+#: src/Module/Profile/Photos.php:150 src/Module/Profile/Photos.php:153
+#: src/Module/Profile/Photos.php:178
+#: src/Module/Settings/Profile/Photo/Index.php:44
#, php-format
msgid "Image exceeds size limit of %s"
msgstr "La dimensione dell'immagine supera il limite di %s"
-#: src/Module/Profile/Photos.php:170
+#: src/Module/Profile/Photos.php:156
msgid "Image upload didn't complete, please try again"
msgstr "Caricamento dell'immagine non completato. Prova di nuovo."
-#: src/Module/Profile/Photos.php:173
+#: src/Module/Profile/Photos.php:159
msgid "Image file is missing"
msgstr "Il file dell'immagine è mancante"
-#: src/Module/Profile/Photos.php:178
+#: src/Module/Profile/Photos.php:164
msgid ""
"Server can't accept new file upload at this time, please contact your "
"administrator"
msgstr "Il server non può accettare il caricamento di un nuovo file in questo momento, contattare l'amministratore"
-#: src/Module/Profile/Photos.php:200
+#: src/Module/Profile/Photos.php:186
msgid "Image file is empty."
msgstr "Il file dell'immagine è vuoto."
-#: src/Module/Profile/Photos.php:352
+#: src/Module/Profile/Photos.php:338
msgid "View Album"
msgstr "Sfoglia l'album"
-#: src/Module/Profile/Profile.php:112 src/Module/Profile/Restricted.php:50
+#: src/Module/Profile/Profile.php:100 src/Module/Profile/Restricted.php:36
msgid "Profile not found."
msgstr "Profilo non trovato."
-#: src/Module/Profile/Profile.php:158
+#: src/Module/Profile/Profile.php:146
#, php-format
msgid ""
"You're currently viewing your profile as %s Cancel"
msgstr "Attualmente stai vedendo il tuo profilo come %s Annulla"
-#: src/Module/Profile/Profile.php:167
+#: src/Module/Profile/Profile.php:155
msgid "Full Name:"
msgstr "Nome completo:"
-#: src/Module/Profile/Profile.php:172
+#: src/Module/Profile/Profile.php:160
msgid "Member since:"
msgstr "Membro dal:"
-#: src/Module/Profile/Profile.php:178
+#: src/Module/Profile/Profile.php:166
msgid "j F, Y"
msgstr "j F Y"
-#: src/Module/Profile/Profile.php:179
+#: src/Module/Profile/Profile.php:167
msgid "j F"
msgstr "j F"
-#: src/Module/Profile/Profile.php:187 src/Util/Temporal.php:168
+#: src/Module/Profile/Profile.php:175 src/Util/Temporal.php:154
msgid "Birthday:"
msgstr "Compleanno:"
-#: src/Module/Profile/Profile.php:190
-#: src/Module/Settings/Profile/Index.php:291 src/Util/Temporal.php:170
+#: src/Module/Profile/Profile.php:178
+#: src/Module/Settings/Profile/Index.php:282 src/Util/Temporal.php:156
msgid "Age: "
msgstr "Età : "
-#: src/Module/Profile/Profile.php:190
-#: src/Module/Settings/Profile/Index.php:291 src/Util/Temporal.php:170
+#: src/Module/Profile/Profile.php:178
+#: src/Module/Settings/Profile/Index.php:282 src/Util/Temporal.php:156
#, php-format
msgid "%d year old"
msgid_plural "%d years old"
@@ -9277,46 +9271,46 @@ msgstr[0] "%d anno"
msgstr[1] "%d anni"
msgstr[2] "%d anni"
-#: src/Module/Profile/Profile.php:195
-#: src/Module/Settings/Profile/Index.php:284
+#: src/Module/Profile/Profile.php:183
+#: src/Module/Settings/Profile/Index.php:275
msgid "Description:"
msgstr "Descrizione:"
-#: src/Module/Profile/Profile.php:261
+#: src/Module/Profile/Profile.php:249
msgid "Groups:"
msgstr ""
-#: src/Module/Profile/Profile.php:273
+#: src/Module/Profile/Profile.php:261
msgid "View profile as:"
msgstr "Vedi il tuo profilo come:"
-#: src/Module/Profile/Profile.php:290
+#: src/Module/Profile/Profile.php:278
msgid "View as"
msgstr "Vedi come"
-#: src/Module/Profile/RemoteFollow.php:82
+#: src/Module/Profile/RemoteFollow.php:68
msgid "Profile unavailable."
msgstr "Profilo non disponibile."
-#: src/Module/Profile/RemoteFollow.php:88
+#: src/Module/Profile/RemoteFollow.php:74
msgid "Invalid locator"
msgstr "Indirizzo non valido"
-#: src/Module/Profile/RemoteFollow.php:95
+#: src/Module/Profile/RemoteFollow.php:81
msgid "The provided profile link doesn't seem to be valid"
msgstr "Il collegamento al profilo fornito non sembra essere valido"
-#: src/Module/Profile/RemoteFollow.php:100
+#: src/Module/Profile/RemoteFollow.php:86
msgid ""
"Remote subscription can't be done for your network. Please subscribe "
"directly on your system."
msgstr "La richiesta di connessione remota non può essere effettuata per la tua rete. Invia la richiesta direttamente sul nostro sistema."
-#: src/Module/Profile/RemoteFollow.php:128
+#: src/Module/Profile/RemoteFollow.php:114
msgid "Friend/Connection Request"
msgstr "Richieste di amicizia/connessione"
-#: src/Module/Profile/RemoteFollow.php:129
+#: src/Module/Profile/RemoteFollow.php:115
#, php-format
msgid ""
"Enter your Webfinger address (user@domain.tld) or profile URL here. If this "
@@ -9324,579 +9318,579 @@ msgid ""
" or %s directly on your system."
msgstr "Inserisci il tuo indirizzo Webfinger (utente@dominio.tld) o l'URL del profilo qui. Se non è supportato dal tuo sistema, devi abbonarti a %s o %s direttamente sul tuo sistema."
-#: src/Module/Profile/RemoteFollow.php:130
+#: src/Module/Profile/RemoteFollow.php:116
#, php-format
msgid ""
"If you are not yet a member of the free social web, follow "
"this link to find a public Friendica node and join us today."
msgstr "Non sei ancora un membro del social network libero, segui questo collegamento per trovare un nodo pubblico Friendica e unisciti a noi oggi."
-#: src/Module/Profile/RemoteFollow.php:131
+#: src/Module/Profile/RemoteFollow.php:117
msgid "Your Webfinger address or profile URL:"
msgstr "Il tuo indirizzo Webfinger o l'URL del profilo:"
-#: src/Module/Profile/Restricted.php:59
+#: src/Module/Profile/Restricted.php:45
msgid "Restricted profile"
msgstr ""
-#: src/Module/Profile/Restricted.php:60
+#: src/Module/Profile/Restricted.php:46
msgid ""
"This profile has been restricted which prevents access to their public "
"content from anonymous visitors."
msgstr ""
-#: src/Module/Profile/Schedule.php:83
+#: src/Module/Profile/Schedule.php:69
msgid "Scheduled"
msgstr ""
-#: src/Module/Profile/Schedule.php:84
+#: src/Module/Profile/Schedule.php:70
msgid "Content"
msgstr ""
-#: src/Module/Profile/Schedule.php:85
+#: src/Module/Profile/Schedule.php:71
msgid "Remove post"
msgstr ""
-#: src/Module/Register.php:85
+#: src/Module/Register.php:77
msgid "Only parent users can create additional accounts."
msgstr "Solo gli utenti principali possono creare account aggiuntivi."
-#: src/Module/Register.php:100 src/Module/User/Import.php:112
+#: src/Module/Register.php:92 src/Module/User/Import.php:98
msgid ""
"This site has exceeded the number of allowed daily account registrations. "
"Please try again tomorrow."
msgstr "Questo sito ha superato il numero di registrazioni giornaliere consentite. Prova di nuovo domani."
-#: src/Module/Register.php:117
+#: src/Module/Register.php:109
msgid ""
"You may (optionally) fill in this form via OpenID by supplying your OpenID "
"and clicking \"Register\"."
msgstr "Se vuoi, puoi riempire questo modulo tramite OpenID, inserendo il tuo OpenID e cliccando \"Registra\"."
-#: src/Module/Register.php:118
+#: src/Module/Register.php:110
msgid ""
"If you are not familiar with OpenID, please leave that field blank and fill "
"in the rest of the items."
msgstr "Se non hai familiarità con OpenID, lascia il campo vuoto e riempi il resto della maschera."
-#: src/Module/Register.php:119
+#: src/Module/Register.php:111
msgid "Your OpenID (optional): "
msgstr "Il tuo OpenID (opzionale): "
-#: src/Module/Register.php:128
+#: src/Module/Register.php:120
msgid "Include your profile in member directory?"
msgstr "Includi il tuo profilo nell'elenco pubblico?"
-#: src/Module/Register.php:149
+#: src/Module/Register.php:141
msgid "Note for the admin"
msgstr "Nota per l'amministratore"
-#: src/Module/Register.php:149
+#: src/Module/Register.php:141
msgid "Leave a message for the admin, why you want to join this node"
msgstr "Lascia un messaggio per l'amministratore, per esempio perché vuoi registrarti su questo nodo"
-#: src/Module/Register.php:150
+#: src/Module/Register.php:142
msgid "Membership on this site is by invitation only."
msgstr "La registrazione su questo sito è solo su invito."
-#: src/Module/Register.php:151
+#: src/Module/Register.php:143
msgid "Your invitation code: "
msgstr "Il tuo codice di invito:"
-#: src/Module/Register.php:159
+#: src/Module/Register.php:151
msgid "Your Display Name (as you would like it to be displayed on this system"
msgstr ""
-#: src/Module/Register.php:160
+#: src/Module/Register.php:152
msgid ""
"Your Email Address: (Initial information will be send there, so this has to "
"be an existing address.)"
msgstr "Il tuo indirizzo email: (Le informazioni iniziali verranno inviate lì, quindi questo deve essere un indirizzo esistente.)"
-#: src/Module/Register.php:161
+#: src/Module/Register.php:153
msgid "Please repeat your e-mail address:"
msgstr "Per favore ripeti il tuo indirizzo email:"
-#: src/Module/Register.php:163 src/Module/Security/PasswordTooLong.php:100
-#: src/Module/Settings/Account.php:564
+#: src/Module/Register.php:155 src/Module/Security/PasswordTooLong.php:86
+#: src/Module/Settings/Account.php:555
msgid "New Password:"
msgstr "Nuova password:"
-#: src/Module/Register.php:163
+#: src/Module/Register.php:155
msgid "Leave empty for an auto generated password."
msgstr "Lascia vuoto per generare automaticamente una password."
-#: src/Module/Register.php:164 src/Module/Security/PasswordTooLong.php:101
-#: src/Module/Settings/Account.php:565
+#: src/Module/Register.php:156 src/Module/Security/PasswordTooLong.php:87
+#: src/Module/Settings/Account.php:556
msgid "Confirm:"
msgstr "Conferma:"
-#: src/Module/Register.php:165
+#: src/Module/Register.php:157
#, php-format
msgid ""
"Choose a profile nickname. This must begin with a text character. Your "
"profile address on this site will then be \"nickname@%s\"."
msgstr "Scegli un nome utente. Deve cominciare con una lettera. L'indirizzo del tuo profilo sarà \"nomeutente@%s\"."
-#: src/Module/Register.php:166
+#: src/Module/Register.php:158
msgid "Choose a nickname: "
msgstr "Scegli un nome utente: "
-#: src/Module/Register.php:174 src/Module/User/Import.php:118
+#: src/Module/Register.php:166 src/Module/User/Import.php:104
msgid "Import"
msgstr "Importa"
-#: src/Module/Register.php:175
+#: src/Module/Register.php:167
msgid "Import your profile to this friendica instance"
msgstr "Importa il tuo profilo in questo server friendica"
-#: src/Module/Register.php:182
+#: src/Module/Register.php:174
msgid "Note: This node explicitly contains adult content"
msgstr "Nota: Questo nodo contiene esplicitamente contenuti per adulti"
-#: src/Module/Register.php:184 src/Module/Settings/Delegation.php:181
+#: src/Module/Register.php:176 src/Module/Settings/Delegation.php:167
msgid "Parent Password:"
msgstr "Password Principale:"
-#: src/Module/Register.php:184 src/Module/Settings/Delegation.php:181
+#: src/Module/Register.php:176 src/Module/Settings/Delegation.php:167
msgid ""
"Please enter the password of the parent account to legitimize your request."
msgstr "Inserisci la password dell'account principale per autorizzare la tua richiesta."
-#: src/Module/Register.php:213
+#: src/Module/Register.php:205
msgid "Password doesn't match."
msgstr "Le password non corrispondono."
-#: src/Module/Register.php:219
+#: src/Module/Register.php:211
msgid "Please enter your password."
msgstr "Per favore inserisci la tua password."
-#: src/Module/Register.php:261
+#: src/Module/Register.php:253
msgid "You have entered too much information."
msgstr "Hai inserito troppe informazioni."
-#: src/Module/Register.php:284
+#: src/Module/Register.php:276
msgid "Please enter the identical mail address in the second field."
msgstr "Per favore inserisci lo stesso indirizzo email nel secondo campo."
-#: src/Module/Register.php:292
+#: src/Module/Register.php:284
msgid "Nickname cannot start with a digit."
msgstr ""
-#: src/Module/Register.php:294
+#: src/Module/Register.php:286
msgid "Nickname can only contain US-ASCII characters."
msgstr ""
-#: src/Module/Register.php:323
+#: src/Module/Register.php:315
msgid "The additional account was created."
msgstr "L'account aggiuntivo è stato creato."
-#: src/Module/Register.php:348
+#: src/Module/Register.php:340
msgid ""
"Registration successful. Please check your email for further instructions."
msgstr "Registrazione completata. Controlla la tua mail per ulteriori informazioni."
-#: src/Module/Register.php:355
+#: src/Module/Register.php:347
#, php-format
msgid ""
"Failed to send email message. Here your accout details:You can enter one of your one-time recovery codes in case you lost access" " to your mobile device.
" msgstr "Puoi inserire uno dei tuoi codici di recupero usa e getta nel caso tu perda l'accesso al tuo dispositivo mobile.
" -#: src/Module/Security/TwoFactor/Recovery.php:101 +#: src/Module/Security/TwoFactor/Recovery.php:87 #, php-format msgid "Don’t have your phone? Enter a two-factor recovery code" msgstr "Non hai il tuo telefono? Inserisci il codice di recupero a due fattori" -#: src/Module/Security/TwoFactor/Recovery.php:102 +#: src/Module/Security/TwoFactor/Recovery.php:88 msgid "Please enter a recovery code" msgstr "Per favore inserisci un codice di recupero" -#: src/Module/Security/TwoFactor/Recovery.php:103 +#: src/Module/Security/TwoFactor/Recovery.php:89 msgid "Submit recovery code and complete login" msgstr "Inserisci il codice di recupero e completa l'accesso" -#: src/Module/Security/TwoFactor/SignOut.php:122 +#: src/Module/Security/TwoFactor/SignOut.php:108 msgid "Sign out of this browser?" msgstr "" -#: src/Module/Security/TwoFactor/SignOut.php:123 +#: src/Module/Security/TwoFactor/SignOut.php:109 msgid "" "If you trust this browser, you will not be asked for verification code " "the next time you sign in.
" msgstr "" -#: src/Module/Security/TwoFactor/SignOut.php:124 +#: src/Module/Security/TwoFactor/SignOut.php:110 msgid "Sign out" msgstr "" -#: src/Module/Security/TwoFactor/SignOut.php:126 +#: src/Module/Security/TwoFactor/SignOut.php:112 msgid "Trust and sign out" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:96 +#: src/Module/Security/TwoFactor/Trust.php:82 msgid "Couldn't save browser to Cookie." msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:141 +#: src/Module/Security/TwoFactor/Trust.php:127 msgid "Trust this browser?" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:142 +#: src/Module/Security/TwoFactor/Trust.php:128 msgid "" "If you choose to trust this browser, you will not be asked for a " "verification code the next time you sign in.
" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:143 +#: src/Module/Security/TwoFactor/Trust.php:129 msgid "Not now" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:144 +#: src/Module/Security/TwoFactor/Trust.php:130 msgid "Don't trust" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:145 +#: src/Module/Security/TwoFactor/Trust.php:131 msgid "Trust" msgstr "" -#: src/Module/Security/TwoFactor/Verify.php:97 +#: src/Module/Security/TwoFactor/Verify.php:83 msgid "" "Open the two-factor authentication app on your device to get an " "authentication code and verify your identity.
" msgstr "Apri l'app di autenticazione a due fattori sul tuo dispositivo per ottenere un codice di autenticazione e verificare la tua identità.
" -#: src/Module/Security/TwoFactor/Verify.php:100 +#: src/Module/Security/TwoFactor/Verify.php:86 #, php-format msgid "" "If you do not have access to your authentication code you can use a two-factor recovery code." msgstr "" -#: src/Module/Security/TwoFactor/Verify.php:101 -#: src/Module/Settings/TwoFactor/Verify.php:158 +#: src/Module/Security/TwoFactor/Verify.php:87 +#: src/Module/Settings/TwoFactor/Verify.php:144 msgid "Please enter a code from your authentication app" msgstr "Per favore inserisci il codice dalla tua app di autenticazione" -#: src/Module/Security/TwoFactor/Verify.php:102 +#: src/Module/Security/TwoFactor/Verify.php:88 msgid "Verify code and complete login" msgstr "Verifica codice e completa l'accesso" -#: src/Module/Settings/Account.php:96 +#: src/Module/Settings/Account.php:82 msgid "Please use a shorter name." msgstr "Per favore utilizza un nome più corto." -#: src/Module/Settings/Account.php:99 +#: src/Module/Settings/Account.php:85 msgid "Name too short." msgstr "Nome troppo corto." -#: src/Module/Settings/Account.php:108 +#: src/Module/Settings/Account.php:94 msgid "Wrong Password." msgstr "Password Sbagliata." -#: src/Module/Settings/Account.php:113 +#: src/Module/Settings/Account.php:99 msgid "Invalid email." msgstr "Email non valida." -#: src/Module/Settings/Account.php:117 +#: src/Module/Settings/Account.php:103 msgid "Cannot change to that email." msgstr "Non puoi usare quella email." -#: src/Module/Settings/Account.php:146 src/Module/Settings/Account.php:195 -#: src/Module/Settings/Account.php:216 src/Module/Settings/Account.php:300 -#: src/Module/Settings/Account.php:329 +#: src/Module/Settings/Account.php:132 src/Module/Settings/Account.php:181 +#: src/Module/Settings/Account.php:202 src/Module/Settings/Account.php:286 +#: src/Module/Settings/Account.php:315 msgid "Settings were not updated." msgstr "Le impostazioni non sono state aggiornate." -#: src/Module/Settings/Account.php:342 +#: src/Module/Settings/Account.php:333 msgid "Contact CSV file upload error" msgstr "Errore nel caricamento del file CSV dei contatti" -#: src/Module/Settings/Account.php:361 +#: src/Module/Settings/Account.php:352 msgid "Importing Contacts done" msgstr "Importazione dei Contatti riuscita" -#: src/Module/Settings/Account.php:374 +#: src/Module/Settings/Account.php:365 msgid "Relocate message has been send to your contacts" msgstr "Il messaggio di trasloco è stato inviato ai tuoi contatti" -#: src/Module/Settings/Account.php:391 +#: src/Module/Settings/Account.php:382 msgid "Unable to find your profile. Please contact your admin." msgstr "Impossibile trovare il tuo profilo. Contatta il tuo amministratore." -#: src/Module/Settings/Account.php:433 +#: src/Module/Settings/Account.php:424 msgid "" "Account for a service that automatically shares content based on user " "defined channels." msgstr "" -#: src/Module/Settings/Account.php:443 +#: src/Module/Settings/Account.php:434 msgid "Personal Page Subtypes" msgstr "Sottotipi di Pagine Personali" -#: src/Module/Settings/Account.php:444 +#: src/Module/Settings/Account.php:435 msgid "Community Group Subtypes" msgstr "" -#: src/Module/Settings/Account.php:455 +#: src/Module/Settings/Account.php:446 msgid "Account for a personal profile." msgstr "Account per profilo personale." -#: src/Module/Settings/Account.php:462 +#: src/Module/Settings/Account.php:453 msgid "" "Account for an organisation that automatically approves contact requests as " "\"Followers\"." msgstr "Account per un'organizzazione, che automaticamente approva le richieste di contatto come \"Follower\"." -#: src/Module/Settings/Account.php:469 +#: src/Module/Settings/Account.php:460 msgid "" "Account for a news reflector that automatically approves contact requests as" " \"Followers\"." msgstr "Account per notizie, che automaticamente approva le richieste di contatto come \"Follower\"" -#: src/Module/Settings/Account.php:476 +#: src/Module/Settings/Account.php:467 msgid "Account for community discussions." msgstr "Account per discussioni comunitarie." -#: src/Module/Settings/Account.php:484 +#: src/Module/Settings/Account.php:475 msgid "" "Account for a regular personal profile that requires manual approval of " "\"Friends\" and \"Followers\"." msgstr "Account per un profilo personale, che richiede l'approvazione delle richieste di contatto come \"Amico\" o \"Follower\"." -#: src/Module/Settings/Account.php:491 +#: src/Module/Settings/Account.php:482 msgid "" "Account for a public profile that automatically approves contact requests as" " \"Followers\"." msgstr "Account per un profilo publico, che automaticamente approva le richieste di contatto come \"Follower\"." -#: src/Module/Settings/Account.php:498 +#: src/Module/Settings/Account.php:489 msgid "Automatically approves all contact requests." msgstr "Approva automaticamente tutte le richieste di contatto." -#: src/Module/Settings/Account.php:505 +#: src/Module/Settings/Account.php:496 msgid "Contact requests have to be manually approved." msgstr "" -#: src/Module/Settings/Account.php:512 +#: src/Module/Settings/Account.php:503 msgid "" "Account for a popular profile that automatically approves contact requests " "as \"Friends\"." msgstr "Account per un profilo popolare, che automaticamente approva le richieste di contatto come \"Amici\"." -#: src/Module/Settings/Account.php:517 +#: src/Module/Settings/Account.php:508 msgid "Private Group [Experimental]" msgstr "" -#: src/Module/Settings/Account.php:519 +#: src/Module/Settings/Account.php:510 msgid "Requires manual approval of contact requests." msgstr "Richiede l'approvazione manuale delle richieste di contatto." -#: src/Module/Settings/Account.php:528 +#: src/Module/Settings/Account.php:519 msgid "OpenID:" msgstr "OpenID:" -#: src/Module/Settings/Account.php:528 +#: src/Module/Settings/Account.php:519 msgid "(Optional) Allow this OpenID to login to this account." msgstr "(Opzionale) Consente di loggarti in questo account con questo OpenID" -#: src/Module/Settings/Account.php:536 +#: src/Module/Settings/Account.php:527 msgid "Publish your profile in your local site directory?" msgstr "Pubblica il tuo profilo nell'elenco locale del tuo sito?" -#: src/Module/Settings/Account.php:536 +#: src/Module/Settings/Account.php:527 #, php-format msgid "" "Your profile will be published in this node's local " @@ -9904,94 +9898,94 @@ msgid "" " system settings." msgstr "Il tuo profilo verrà pubblicato nella directory locale di questo nodo. I dettagli del tuo profilo potrebbero essere visibili pubblicamente a seconda delle impostazioni di sistema." -#: src/Module/Settings/Account.php:542 +#: src/Module/Settings/Account.php:533 #, php-format msgid "" "Your profile will also be published in the global friendica directories " "(e.g. %s)." msgstr "Il tuo profilo sarà anche pubblicato nelle directory globali di friendica (es. %s)." -#: src/Module/Settings/Account.php:555 +#: src/Module/Settings/Account.php:546 msgid "Account Settings" msgstr "Impostazioni account" -#: src/Module/Settings/Account.php:556 +#: src/Module/Settings/Account.php:547 #, php-format msgid "Your Identity Address is '%s' or '%s'." msgstr "L'indirizzo della tua identità è '%s' or '%s'." -#: src/Module/Settings/Account.php:563 +#: src/Module/Settings/Account.php:554 msgid "Password Settings" msgstr "Impostazioni password" -#: src/Module/Settings/Account.php:565 +#: src/Module/Settings/Account.php:556 msgid "Leave password fields blank unless changing" msgstr "Lascia questi campi in bianco per non effettuare variazioni alla password" -#: src/Module/Settings/Account.php:567 +#: src/Module/Settings/Account.php:558 msgid "Password:" msgstr "Password:" -#: src/Module/Settings/Account.php:567 +#: src/Module/Settings/Account.php:558 msgid "Your current password to confirm the changes of the email address" msgstr "La tua password attuale per confermare il cambio di indirizzo email" -#: src/Module/Settings/Account.php:570 +#: src/Module/Settings/Account.php:561 msgid "Delete OpenID URL" msgstr "Elimina URL OpenID" -#: src/Module/Settings/Account.php:572 +#: src/Module/Settings/Account.php:563 msgid "Basic Settings" msgstr "Impostazioni base" -#: src/Module/Settings/Account.php:573 -#: src/Module/Settings/Profile/Index.php:283 +#: src/Module/Settings/Account.php:564 +#: src/Module/Settings/Profile/Index.php:274 msgid "Display name:" msgstr "Nome visualizzato:" -#: src/Module/Settings/Account.php:574 +#: src/Module/Settings/Account.php:565 msgid "Email Address:" msgstr "Indirizzo Email:" -#: src/Module/Settings/Account.php:575 +#: src/Module/Settings/Account.php:566 msgid "Your Timezone:" msgstr "Il tuo fuso orario:" -#: src/Module/Settings/Account.php:576 +#: src/Module/Settings/Account.php:567 msgid "Your Language:" msgstr "La tua lingua:" -#: src/Module/Settings/Account.php:576 +#: src/Module/Settings/Account.php:567 msgid "" "Set the language we use to show you friendica interface and to send you " "emails" msgstr "Imposta la lingua che sarà usata per mostrarti l'interfaccia di Friendica e per inviarti le email" -#: src/Module/Settings/Account.php:577 +#: src/Module/Settings/Account.php:568 msgid "Default Post Location:" msgstr "Località predefinita:" -#: src/Module/Settings/Account.php:578 +#: src/Module/Settings/Account.php:569 msgid "Use Browser Location:" msgstr "Usa la località rilevata dal browser:" -#: src/Module/Settings/Account.php:580 +#: src/Module/Settings/Account.php:571 msgid "Security and Privacy Settings" msgstr "Impostazioni di sicurezza e privacy" -#: src/Module/Settings/Account.php:582 +#: src/Module/Settings/Account.php:573 msgid "Maximum Friend Requests/Day:" msgstr "Numero massimo di richieste di amicizia al giorno:" -#: src/Module/Settings/Account.php:582 +#: src/Module/Settings/Account.php:573 msgid "(to prevent spam abuse)" msgstr "(per prevenire lo spam)" -#: src/Module/Settings/Account.php:584 +#: src/Module/Settings/Account.php:575 msgid "Allow your profile to be searchable globally?" msgstr "Vuoi che il tuo profilo sia ricercabile globalmente?" -#: src/Module/Settings/Account.php:584 +#: src/Module/Settings/Account.php:575 msgid "" "Activate this setting if you want others to easily find and follow you. Your" " profile will be searchable on remote systems. This setting also determines " @@ -9999,43 +9993,43 @@ msgid "" "indexed or not." msgstr "Attiva questa impostazione se vuoi che gli altri ti trovino facilmente e ti seguano. Il tuo profilo sarà ricercabile da sistemi remoti. Questa impostazione determina anche se Friendica informerà i motori di ricerca che il tuo profilo sia indicizzabile o meno." -#: src/Module/Settings/Account.php:585 +#: src/Module/Settings/Account.php:576 msgid "Hide your contact/friend list from viewers of your profile?" msgstr "Nascondere la lista dei tuo contatti/amici dai visitatori del tuo profilo?" -#: src/Module/Settings/Account.php:585 +#: src/Module/Settings/Account.php:576 msgid "" "A list of your contacts is displayed on your profile page. Activate this " "option to disable the display of your contact list." msgstr "La lista dei tuoi contatti è mostrata sulla tua pagina di profilo. Attiva questa opzione per disabilitare la visualizzazione del tuo elenco contatti." -#: src/Module/Settings/Account.php:586 +#: src/Module/Settings/Account.php:577 msgid "Hide your public content from anonymous viewers" msgstr "" -#: src/Module/Settings/Account.php:586 +#: src/Module/Settings/Account.php:577 msgid "" "Anonymous visitors will only see your basic profile details. Your public " "posts and replies will still be freely accessible on the remote servers of " "your followers and through relays." msgstr "" -#: src/Module/Settings/Account.php:587 +#: src/Module/Settings/Account.php:578 msgid "Make public posts unlisted" msgstr "Rendi messaggi pubblici non elencati" -#: src/Module/Settings/Account.php:587 +#: src/Module/Settings/Account.php:578 msgid "" "Your public posts will not appear on the community pages or in search " "results, nor be sent to relay servers. However they can still appear on " "public feeds on remote servers." msgstr "I tuoi messaggi pubblici non appariranno sulle pagine della comunità o nei risultati di ricerca, e non saranno inviati ai server relay. Comunque appariranno sui feed pubblici su server remoti." -#: src/Module/Settings/Account.php:588 +#: src/Module/Settings/Account.php:579 msgid "Make all posted pictures accessible" msgstr "Rendi tutte le immagini pubblicate accessibili" -#: src/Module/Settings/Account.php:588 +#: src/Module/Settings/Account.php:579 msgid "" "This option makes every posted picture accessible via the direct link. This " "is a workaround for the problem that most other networks can't handle " @@ -10043,352 +10037,352 @@ msgid "" "public on your photo albums though." msgstr "Questa opzione rende ogni immagine pubblicata accessibile attraverso il collegamento diretto. Questo è una soluzione alternativa al problema che la maggior parte delle altre reti non gestiscono i permessi sulle immagini. Le immagini non pubbliche non saranno visibili al pubblico nei tuoi album fotografici comunque." -#: src/Module/Settings/Account.php:589 +#: src/Module/Settings/Account.php:580 msgid "Allow friends to post to your profile page?" msgstr "Permetti agli amici di scrivere sulla tua pagina profilo?" -#: src/Module/Settings/Account.php:589 +#: src/Module/Settings/Account.php:580 msgid "" "Your contacts may write posts on your profile wall. These posts will be " "distributed to your contacts" msgstr "I tuoi contatti possono scrivere messaggi sulla tua pagina di profilo. Questi messaggi saranno distribuiti a tutti i tuoi contatti." -#: src/Module/Settings/Account.php:590 +#: src/Module/Settings/Account.php:581 msgid "Allow friends to tag your posts?" msgstr "Permetti agli amici di aggiungere tag ai tuoi messaggi?" -#: src/Module/Settings/Account.php:590 +#: src/Module/Settings/Account.php:581 msgid "Your contacts can add additional tags to your posts." msgstr "I tuoi contatti possono aggiungere tag aggiuntivi ai tuoi messaggi." -#: src/Module/Settings/Account.php:591 +#: src/Module/Settings/Account.php:582 msgid "Default privacy circle for new contacts" msgstr "" -#: src/Module/Settings/Account.php:592 +#: src/Module/Settings/Account.php:583 msgid "Default privacy circle for new group contacts" msgstr "" -#: src/Module/Settings/Account.php:593 +#: src/Module/Settings/Account.php:584 msgid "Default Post Permissions" msgstr "Permessi predefiniti per i messaggi" -#: src/Module/Settings/Account.php:597 +#: src/Module/Settings/Account.php:588 msgid "Expiration settings" msgstr "Impostazioni di scadenza" -#: src/Module/Settings/Account.php:598 +#: src/Module/Settings/Account.php:589 msgid "Automatically expire posts after this many days:" msgstr "Fai scadere i messaggi automaticamente dopo x giorni:" -#: src/Module/Settings/Account.php:598 +#: src/Module/Settings/Account.php:589 msgid "If empty, posts will not expire. Expired posts will be deleted" msgstr "Se lasciato vuoto, i messaggi non verranno cancellati." -#: src/Module/Settings/Account.php:599 +#: src/Module/Settings/Account.php:590 msgid "Expire posts" msgstr "Fai scadere i messaggi" -#: src/Module/Settings/Account.php:599 +#: src/Module/Settings/Account.php:590 msgid "When activated, posts and comments will be expired." msgstr "Quando attivato, i messaggi e i commenti scadranno." -#: src/Module/Settings/Account.php:600 +#: src/Module/Settings/Account.php:591 msgid "Expire personal notes" msgstr "Fai scadere le note personali" -#: src/Module/Settings/Account.php:600 +#: src/Module/Settings/Account.php:591 msgid "" "When activated, the personal notes on your profile page will be expired." msgstr "Quando attivato, le note personali sulla tua pagina del profilo scadranno." -#: src/Module/Settings/Account.php:601 +#: src/Module/Settings/Account.php:592 msgid "Expire starred posts" msgstr "Fai scadere i messaggi speciali" -#: src/Module/Settings/Account.php:601 +#: src/Module/Settings/Account.php:592 msgid "" "Starring posts keeps them from being expired. That behaviour is overwritten " "by this setting." msgstr "Inserire i messaggi negli speciali evita di farli scadere. Questo comportamento viene scavalcato da questa impostazione." -#: src/Module/Settings/Account.php:602 +#: src/Module/Settings/Account.php:593 msgid "Only expire posts by others" msgstr "Fai scadere solo i messaggi degli altri" -#: src/Module/Settings/Account.php:602 +#: src/Module/Settings/Account.php:593 msgid "" "When activated, your own posts never expire. Then the settings above are " "only valid for posts you received." msgstr "Quando attivato, i tuoi messaggi non scadranno mai. Quindi le impostazioni qui sopra saranno valide solo per i messaggi che hai ricevuto." -#: src/Module/Settings/Account.php:605 +#: src/Module/Settings/Account.php:596 msgid "Notification Settings" msgstr "Impostazioni notifiche" -#: src/Module/Settings/Account.php:606 +#: src/Module/Settings/Account.php:597 msgid "Send a notification email when:" msgstr "Invia una mail di notifica quando:" -#: src/Module/Settings/Account.php:607 +#: src/Module/Settings/Account.php:598 msgid "You receive an introduction" msgstr "Ricevi una presentazione" -#: src/Module/Settings/Account.php:608 +#: src/Module/Settings/Account.php:599 msgid "Your introductions are confirmed" msgstr "Le tue presentazioni sono confermate" -#: src/Module/Settings/Account.php:609 +#: src/Module/Settings/Account.php:600 msgid "Someone writes on your profile wall" msgstr "Qualcuno scrive sulla bacheca del tuo profilo" -#: src/Module/Settings/Account.php:610 +#: src/Module/Settings/Account.php:601 msgid "Someone writes a followup comment" msgstr "Qualcuno scrive un commento a un tuo messaggio" -#: src/Module/Settings/Account.php:611 +#: src/Module/Settings/Account.php:602 msgid "You receive a private message" msgstr "Ricevi un messaggio privato" -#: src/Module/Settings/Account.php:612 +#: src/Module/Settings/Account.php:603 msgid "You receive a friend suggestion" msgstr "Hai ricevuto un suggerimento di amicizia" -#: src/Module/Settings/Account.php:613 +#: src/Module/Settings/Account.php:604 msgid "You are tagged in a post" msgstr "Sei stato taggato in un messaggio" -#: src/Module/Settings/Account.php:615 +#: src/Module/Settings/Account.php:606 msgid "Create a desktop notification when:" msgstr "Crea una notifica desktop quando:" -#: src/Module/Settings/Account.php:616 +#: src/Module/Settings/Account.php:607 msgid "Someone tagged you" msgstr "" -#: src/Module/Settings/Account.php:617 +#: src/Module/Settings/Account.php:608 msgid "Someone directly commented on your post" msgstr "" -#: src/Module/Settings/Account.php:618 +#: src/Module/Settings/Account.php:609 msgid "Someone liked your content" msgstr "Qualcuno ha messo mi piace a un tuo contenuto" -#: src/Module/Settings/Account.php:618 src/Module/Settings/Account.php:619 +#: src/Module/Settings/Account.php:609 src/Module/Settings/Account.php:610 msgid "Can only be enabled, when the direct comment notification is enabled." msgstr "" -#: src/Module/Settings/Account.php:619 +#: src/Module/Settings/Account.php:610 msgid "Someone shared your content" msgstr "Qualcuno ha condiviso un tuo contenuto" -#: src/Module/Settings/Account.php:620 +#: src/Module/Settings/Account.php:611 msgid "Someone commented in your thread" msgstr "" -#: src/Module/Settings/Account.php:621 +#: src/Module/Settings/Account.php:612 msgid "Someone commented in a thread where you commented" msgstr "" -#: src/Module/Settings/Account.php:622 +#: src/Module/Settings/Account.php:613 msgid "Someone commented in a thread where you interacted" msgstr "" -#: src/Module/Settings/Account.php:624 +#: src/Module/Settings/Account.php:615 msgid "Activate desktop notifications" msgstr "Attiva notifiche desktop" -#: src/Module/Settings/Account.php:624 +#: src/Module/Settings/Account.php:615 msgid "Show desktop popup on new notifications" msgstr "Mostra un popup di notifica sul desktop all'arrivo di nuove notifiche" -#: src/Module/Settings/Account.php:628 +#: src/Module/Settings/Account.php:619 msgid "Text-only notification emails" msgstr "Email di notifica in solo testo" -#: src/Module/Settings/Account.php:630 +#: src/Module/Settings/Account.php:621 msgid "Send text only notification emails, without the html part" msgstr "Invia le email di notifica in solo testo, senza la parte in html" -#: src/Module/Settings/Account.php:634 +#: src/Module/Settings/Account.php:625 msgid "Show detailled notifications" msgstr "Mostra notifiche dettagliate" -#: src/Module/Settings/Account.php:636 +#: src/Module/Settings/Account.php:627 msgid "" "Per default, notifications are condensed to a single notification per item. " "When enabled every notification is displayed." msgstr "Per impostazione predefinita, le notifiche sono raggruppate in una singola notifica per articolo. Se abilitato, viene visualizzate tutte le notifiche." -#: src/Module/Settings/Account.php:640 +#: src/Module/Settings/Account.php:631 msgid "Show notifications of ignored contacts" msgstr "Mostra notifiche dai contatti ignorati" -#: src/Module/Settings/Account.php:642 +#: src/Module/Settings/Account.php:633 msgid "" "You don't see posts from ignored contacts. But you still see their comments." " This setting controls if you want to still receive regular notifications " "that are caused by ignored contacts or not." msgstr "Non vedi i messaggi da contatti ignorati. Ma puoi ancora vedere i loro commenti. Questa impostazione controlla se vuoi o meno continuare a ricevere notifiche regolari che sono causate dai contatti ignorati." -#: src/Module/Settings/Account.php:645 +#: src/Module/Settings/Account.php:636 msgid "Advanced Account/Page Type Settings" msgstr "Impostazioni avanzate Account/Tipo di pagina" -#: src/Module/Settings/Account.php:646 +#: src/Module/Settings/Account.php:637 msgid "Change the behaviour of this account for special situations" msgstr "Modifica il comportamento di questo account in situazioni speciali" -#: src/Module/Settings/Account.php:649 +#: src/Module/Settings/Account.php:640 msgid "Import Contacts" msgstr "Importa Contatti" -#: src/Module/Settings/Account.php:650 +#: src/Module/Settings/Account.php:641 msgid "" "Upload a CSV file that contains the handle of your followed accounts in the " "first column you exported from the old account." msgstr "Carica un file CSV che contiene gli indirizzi dei tuoi account seguiti nella prima colonna che hai esportato dal vecchio account." -#: src/Module/Settings/Account.php:651 +#: src/Module/Settings/Account.php:642 msgid "Upload File" msgstr "Carica File" -#: src/Module/Settings/Account.php:654 +#: src/Module/Settings/Account.php:645 msgid "Relocate" msgstr "Trasloca" -#: src/Module/Settings/Account.php:655 +#: src/Module/Settings/Account.php:646 msgid "" "If you have moved this profile from another server, and some of your " "contacts don't receive your updates, try pushing this button." msgstr "Se hai spostato questo profilo da un'altro server, e alcuni dei tuoi contatti non ricevono i tuoi aggiornamenti, prova a premere questo bottone." -#: src/Module/Settings/Account.php:656 +#: src/Module/Settings/Account.php:647 msgid "Resend relocate message to contacts" msgstr "Invia nuovamente il messaggio di trasloco ai contatti" -#: src/Module/Settings/Addons.php:86 +#: src/Module/Settings/Addons.php:72 msgid "Addon Settings" msgstr "Impostazioni Componenti Aggiuntivi" -#: src/Module/Settings/Addons.php:87 +#: src/Module/Settings/Addons.php:73 msgid "No Addon settings configured" msgstr "Nessun componente aggiuntivo ha impostazioni modificabili" -#: src/Module/Settings/Channels.php:148 +#: src/Module/Settings/Channels.php:134 msgid "" "This page can be used to define the channels that will automatically be " "reshared by your account." msgstr "" -#: src/Module/Settings/Channels.php:153 +#: src/Module/Settings/Channels.php:139 msgid "This page can be used to define your own channels." msgstr "" -#: src/Module/Settings/Channels.php:182 +#: src/Module/Settings/Channels.php:168 msgid "Publish" msgstr "" -#: src/Module/Settings/Channels.php:182 +#: src/Module/Settings/Channels.php:168 msgid "" "When selected, the channel results are reshared. This only works for public " "ActivityPub posts from the public timeline or the user defined circles." msgstr "" -#: src/Module/Settings/Channels.php:190 src/Module/Settings/Channels.php:211 -#: src/Module/Settings/Display.php:338 +#: src/Module/Settings/Channels.php:176 src/Module/Settings/Channels.php:197 +#: src/Module/Settings/Display.php:324 msgid "Label" msgstr "" -#: src/Module/Settings/Channels.php:191 src/Module/Settings/Channels.php:212 -#: src/Module/Settings/Display.php:339 -#: src/Module/Settings/TwoFactor/AppSpecific.php:137 +#: src/Module/Settings/Channels.php:177 src/Module/Settings/Channels.php:198 +#: src/Module/Settings/Display.php:325 +#: src/Module/Settings/TwoFactor/AppSpecific.php:123 msgid "Description" msgstr "Descrizione" -#: src/Module/Settings/Channels.php:192 src/Module/Settings/Channels.php:213 +#: src/Module/Settings/Channels.php:178 src/Module/Settings/Channels.php:199 msgid "Access Key" msgstr "" -#: src/Module/Settings/Channels.php:193 src/Module/Settings/Channels.php:214 +#: src/Module/Settings/Channels.php:179 src/Module/Settings/Channels.php:200 msgid "Circle/Channel" msgstr "" -#: src/Module/Settings/Channels.php:194 src/Module/Settings/Channels.php:215 +#: src/Module/Settings/Channels.php:180 src/Module/Settings/Channels.php:201 msgid "Include Tags" msgstr "" -#: src/Module/Settings/Channels.php:195 src/Module/Settings/Channels.php:216 +#: src/Module/Settings/Channels.php:181 src/Module/Settings/Channels.php:202 msgid "Exclude Tags" msgstr "" -#: src/Module/Settings/Channels.php:196 src/Module/Settings/Channels.php:217 +#: src/Module/Settings/Channels.php:182 src/Module/Settings/Channels.php:203 msgid "Minimum Size" msgstr "" -#: src/Module/Settings/Channels.php:197 src/Module/Settings/Channels.php:218 +#: src/Module/Settings/Channels.php:183 src/Module/Settings/Channels.php:204 msgid "Maximum Size" msgstr "" -#: src/Module/Settings/Channels.php:198 src/Module/Settings/Channels.php:219 +#: src/Module/Settings/Channels.php:184 src/Module/Settings/Channels.php:205 msgid "Full Text Search" msgstr "" -#: src/Module/Settings/Channels.php:202 src/Module/Settings/Channels.php:223 +#: src/Module/Settings/Channels.php:188 src/Module/Settings/Channels.php:209 msgid "Select all languages that you want to see in this channel." msgstr "" -#: src/Module/Settings/Channels.php:204 +#: src/Module/Settings/Channels.php:190 msgid "Delete channel" msgstr "" -#: src/Module/Settings/Channels.php:204 +#: src/Module/Settings/Channels.php:190 msgid "Check to delete this entry from the channel list" msgstr "" -#: src/Module/Settings/Channels.php:211 +#: src/Module/Settings/Channels.php:197 msgid "Short name for the channel. It is displayed on the channels widget." msgstr "" -#: src/Module/Settings/Channels.php:212 +#: src/Module/Settings/Channels.php:198 msgid "This should describe the content of the channel in a few word." msgstr "" -#: src/Module/Settings/Channels.php:213 +#: src/Module/Settings/Channels.php:199 msgid "" "When you want to access this channel via an access key, you can define it " "here. Pay attention to not use an already used one." msgstr "" -#: src/Module/Settings/Channels.php:214 +#: src/Module/Settings/Channels.php:200 msgid "Select a circle or channel, that your channel should be based on." msgstr "" -#: src/Module/Settings/Channels.php:215 +#: src/Module/Settings/Channels.php:201 msgid "" "Comma separated list of tags. A post will be used when it contains any of " "the listed tags." msgstr "" -#: src/Module/Settings/Channels.php:216 +#: src/Module/Settings/Channels.php:202 msgid "" "Comma separated list of tags. If a post contain any of these tags, then it " "will not be part of nthis channel." msgstr "" -#: src/Module/Settings/Channels.php:217 +#: src/Module/Settings/Channels.php:203 msgid "" "Minimum post size. Leave empty for no minimum size. The size is calculated " "without links, attached posts, mentions or hashtags." msgstr "" -#: src/Module/Settings/Channels.php:218 +#: src/Module/Settings/Channels.php:204 msgid "" "Maximum post size. Leave empty for no maximum size. The size is calculated " "without links, attached posts, mentions or hashtags." msgstr "" -#: src/Module/Settings/Channels.php:219 +#: src/Module/Settings/Channels.php:205 #, php-format msgid "" "Search terms for the body, supports the \"boolean mode\" operators from " @@ -10396,576 +10390,589 @@ msgid "" "keywords: %s" msgstr "" -#: src/Module/Settings/Channels.php:220 +#: src/Module/Settings/Channels.php:206 msgid "Check to display images in the channel." msgstr "" -#: src/Module/Settings/Channels.php:221 +#: src/Module/Settings/Channels.php:207 msgid "Check to display videos in the channel." msgstr "" -#: src/Module/Settings/Channels.php:222 +#: src/Module/Settings/Channels.php:208 msgid "Check to display audio in the channel." msgstr "" -#: src/Module/Settings/Channels.php:227 +#: src/Module/Settings/Channels.php:213 msgid "Add new entry to the channel list" msgstr "" -#: src/Module/Settings/Channels.php:228 +#: src/Module/Settings/Channels.php:214 msgid "Add" msgstr "Aggiungi" -#: src/Module/Settings/Channels.php:230 +#: src/Module/Settings/Channels.php:216 msgid "Current Entries in the channel list" msgstr "" -#: src/Module/Settings/Channels.php:233 +#: src/Module/Settings/Channels.php:219 msgid "Delete entry from the channel list" msgstr "" -#: src/Module/Settings/Channels.php:234 +#: src/Module/Settings/Channels.php:220 msgid "Delete entry from the channel list?" msgstr "" -#: src/Module/Settings/Connectors.php:120 +#: src/Module/Settings/Connectors.php:108 msgid "Failed to connect with email account using the settings provided." msgstr "Impossibile collegarsi all'account email con i parametri forniti." -#: src/Module/Settings/Connectors.php:166 -#: src/Module/Settings/Connectors.php:167 +#: src/Module/Settings/Connectors.php:155 +#: src/Module/Settings/Connectors.php:156 msgid "Diaspora (Socialhome, Hubzilla)" msgstr "Diaspora (Socialhome, Hubzilla)" -#: src/Module/Settings/Connectors.php:166 -#: src/Module/Settings/Connectors.php:170 +#: src/Module/Settings/Connectors.php:155 #, php-format msgid "Built-in support for %s connectivity is enabled" msgstr "" -#: src/Module/Settings/Connectors.php:167 -#: src/Module/Settings/Connectors.php:169 +#: src/Module/Settings/Connectors.php:156 #, php-format msgid "Built-in support for %s connectivity is disabled" msgstr "" -#: src/Module/Settings/Connectors.php:169 -#: src/Module/Settings/Connectors.php:170 -msgid "OStatus (GNU Social)" -msgstr "OStatus (GNU Social)" - -#: src/Module/Settings/Connectors.php:182 +#: src/Module/Settings/Connectors.php:167 msgid "Email access is disabled on this site." msgstr "L'accesso email è disabilitato su questo sito." -#: src/Module/Settings/Connectors.php:197 -#: src/Module/Settings/Connectors.php:244 +#: src/Module/Settings/Connectors.php:182 +#: src/Module/Settings/Connectors.php:233 msgid "None" msgstr "Nessuna" -#: src/Module/Settings/Connectors.php:209 +#: src/Module/Settings/Connectors.php:186 +msgid "Default (Mastodon will display the title and a link to the post)" +msgstr "" + +#: src/Module/Settings/Connectors.php:187 +msgid "" +"Use the summary (Mastodon and some others will treat it as content warning)" +msgstr "" + +#: src/Module/Settings/Connectors.php:188 +msgid "Embed the title in the body" +msgstr "" + +#: src/Module/Settings/Connectors.php:199 msgid "General Social Media Settings" msgstr "Impostazioni Media Sociali" -#: src/Module/Settings/Connectors.php:212 +#: src/Module/Settings/Connectors.php:202 msgid "Followed content scope" msgstr "" -#: src/Module/Settings/Connectors.php:214 +#: src/Module/Settings/Connectors.php:204 msgid "" "By default, conversations in which your follows participated but didn't " "start will be shown in your timeline. You can turn this behavior off, or " "expand it to the conversations in which your follows liked a post." msgstr "" -#: src/Module/Settings/Connectors.php:216 +#: src/Module/Settings/Connectors.php:206 msgid "Only conversations my follows started" msgstr "" -#: src/Module/Settings/Connectors.php:217 +#: src/Module/Settings/Connectors.php:207 msgid "Conversations my follows started or commented on (default)" msgstr "" -#: src/Module/Settings/Connectors.php:218 +#: src/Module/Settings/Connectors.php:208 msgid "Any conversation my follows interacted with, including likes" msgstr "" -#: src/Module/Settings/Connectors.php:221 +#: src/Module/Settings/Connectors.php:211 msgid "Collapse sensitive posts" msgstr "" -#: src/Module/Settings/Connectors.php:221 +#: src/Module/Settings/Connectors.php:211 msgid "" "If a post is marked as \"sensitive\", it will be displayed in a collapsed " "state, if this option is enabled." msgstr "" -#: src/Module/Settings/Connectors.php:222 +#: src/Module/Settings/Connectors.php:212 msgid "Enable intelligent shortening" msgstr "Abilita accorciamento intelligente" -#: src/Module/Settings/Connectors.php:222 +#: src/Module/Settings/Connectors.php:212 msgid "" "Normally the system tries to find the best link to add to shortened posts. " "If disabled, every shortened post will always point to the original " "friendica post." msgstr "Normalmente il sistema tenta di trovare il collegamento migliore da aggiungere ad un messaggio accorciato. Se questa opzione è disabilitata, ogni messaggio accorciato conterrà sempre un collegamento al messaggio originale su Friendica." -#: src/Module/Settings/Connectors.php:223 +#: src/Module/Settings/Connectors.php:213 msgid "Enable simple text shortening" msgstr "Abilita accorciamento semplice del testo" -#: src/Module/Settings/Connectors.php:223 +#: src/Module/Settings/Connectors.php:213 msgid "" "Normally the system shortens posts at the next line feed. If this option is " "enabled then the system will shorten the text at the maximum character " "limit." msgstr "Normalmente il sistema accorcia i messaggi alla successiva interruzione di linea. Se questa opzione è abilitata il sistema accorcerà il testo al raggiungimento del limite massimo di caratteri." -#: src/Module/Settings/Connectors.php:224 +#: src/Module/Settings/Connectors.php:214 msgid "Attach the link title" msgstr "Allega il titolo del collegamento" -#: src/Module/Settings/Connectors.php:224 +#: src/Module/Settings/Connectors.php:214 msgid "" "When activated, the title of the attached link will be added as a title on " "posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that" " share feed content." msgstr "Quando attivato, il titolo del collegamento allegato sarà aggiunto come titolo dei messaggi su Diaspora. Questo è più che altro utile con i contatti \"remoti di sè stessi\" che condividono il contenuto del flusso." -#: src/Module/Settings/Connectors.php:225 +#: src/Module/Settings/Connectors.php:215 msgid "API: Use spoiler field as title" msgstr "" -#: src/Module/Settings/Connectors.php:225 +#: src/Module/Settings/Connectors.php:215 msgid "" "When activated, the \"spoiler_text\" field in the API will be used for the " "title on standalone posts. When deactivated it will be used for spoiler " "text. For comments it will always be used for spoiler text." msgstr "" -#: src/Module/Settings/Connectors.php:226 +#: src/Module/Settings/Connectors.php:216 msgid "API: Automatically links at the end of the post as attached posts" msgstr "" -#: src/Module/Settings/Connectors.php:226 +#: src/Module/Settings/Connectors.php:216 msgid "" "When activated, added links at the end of the post react the same way as " "added links in the web interface." msgstr "" -#: src/Module/Settings/Connectors.php:227 +#: src/Module/Settings/Connectors.php:217 +msgid "Article Mode" +msgstr "" + +#: src/Module/Settings/Connectors.php:217 +msgid "" +"Controls how posts with titles are transmitted. Mastodon and its forks don't" +" display the content of these posts if the post is created in the correct " +"(default) way." +msgstr "" + +#: src/Module/Settings/Connectors.php:218 msgid "Your legacy ActivityPub/GNU Social account" msgstr "Il tuo vecchio account ActivityPub/GNU Social " -#: src/Module/Settings/Connectors.php:227 +#: src/Module/Settings/Connectors.php:218 msgid "" "If you enter your old account name from an ActivityPub based system or your " "GNU Social/Statusnet account name here (in the format user@domain.tld), your" " contacts will be added automatically. The field will be emptied when done." msgstr "Se inserisci il nome del tuo vecchio account su un sistema basato su ActivityPub o del tuo vecchio account GNU Social/Statusnet (nel formato utente@dominio.tld), i tuoi contatti verranno importati automaticamente. Il campo verrà svuotato una volta terminata l'operazione." -#: src/Module/Settings/Connectors.php:229 -msgid "Repair OStatus subscriptions" -msgstr "Ripara le iscrizioni OStatus" - -#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Connectors.php:222 msgid "Email/Mailbox Setup" msgstr "Impostazioni email" -#: src/Module/Settings/Connectors.php:234 +#: src/Module/Settings/Connectors.php:223 msgid "" "If you wish to communicate with email contacts using this service " "(optional), please specify how to connect to your mailbox." msgstr "Se vuoi comunicare con i contatti email usando questo servizio, specifica come collegarti alla tua casella di posta. (opzionale)" -#: src/Module/Settings/Connectors.php:235 +#: src/Module/Settings/Connectors.php:224 msgid "Last successful email check:" msgstr "Ultimo controllo email eseguito con successo:" -#: src/Module/Settings/Connectors.php:237 +#: src/Module/Settings/Connectors.php:226 msgid "IMAP server name:" msgstr "Nome server IMAP:" -#: src/Module/Settings/Connectors.php:238 +#: src/Module/Settings/Connectors.php:227 msgid "IMAP port:" msgstr "Porta IMAP:" -#: src/Module/Settings/Connectors.php:239 +#: src/Module/Settings/Connectors.php:228 msgid "Security:" msgstr "Sicurezza:" -#: src/Module/Settings/Connectors.php:240 +#: src/Module/Settings/Connectors.php:229 msgid "Email login name:" msgstr "Nome utente email:" -#: src/Module/Settings/Connectors.php:241 +#: src/Module/Settings/Connectors.php:230 msgid "Email password:" msgstr "Password email:" -#: src/Module/Settings/Connectors.php:242 +#: src/Module/Settings/Connectors.php:231 msgid "Reply-to address:" msgstr "Indirizzo di risposta:" -#: src/Module/Settings/Connectors.php:243 +#: src/Module/Settings/Connectors.php:232 msgid "Send public posts to all email contacts:" msgstr "Invia i messaggi pubblici ai contatti email:" -#: src/Module/Settings/Connectors.php:244 +#: src/Module/Settings/Connectors.php:233 msgid "Action after import:" msgstr "Azione dopo importazione:" -#: src/Module/Settings/Connectors.php:244 +#: src/Module/Settings/Connectors.php:233 msgid "Move to folder" msgstr "Sposta nella cartella" -#: src/Module/Settings/Connectors.php:245 +#: src/Module/Settings/Connectors.php:234 msgid "Move to folder:" msgstr "Sposta nella cartella:" -#: src/Module/Settings/Delegation.php:73 +#: src/Module/Settings/Delegation.php:59 msgid "Delegation successfully granted." msgstr "Delega concessa con successo." -#: src/Module/Settings/Delegation.php:75 +#: src/Module/Settings/Delegation.php:61 msgid "Parent user not found, unavailable or password doesn't match." msgstr "Utente principale non trovato, non disponibile o la password non corrisponde." -#: src/Module/Settings/Delegation.php:79 +#: src/Module/Settings/Delegation.php:65 msgid "Delegation successfully revoked." msgstr "Delega revocata con successo." -#: src/Module/Settings/Delegation.php:98 -#: src/Module/Settings/Delegation.php:120 +#: src/Module/Settings/Delegation.php:84 +#: src/Module/Settings/Delegation.php:106 msgid "" "Delegated administrators can view but not change delegation permissions." msgstr "Amministratori delegati possono vedere ma non cambiare i permessi di delega." -#: src/Module/Settings/Delegation.php:112 +#: src/Module/Settings/Delegation.php:98 msgid "Delegate user not found." msgstr "Utente delegato non trovato." -#: src/Module/Settings/Delegation.php:169 +#: src/Module/Settings/Delegation.php:155 msgid "No parent user" msgstr "Nessun utente principale" -#: src/Module/Settings/Delegation.php:180 -#: src/Module/Settings/Delegation.php:191 +#: src/Module/Settings/Delegation.php:166 +#: src/Module/Settings/Delegation.php:177 msgid "Parent User" msgstr "Utente Principale" -#: src/Module/Settings/Delegation.php:188 +#: src/Module/Settings/Delegation.php:174 msgid "Additional Accounts" msgstr "Account Aggiuntivi" -#: src/Module/Settings/Delegation.php:189 +#: src/Module/Settings/Delegation.php:175 msgid "" "Register additional accounts that are automatically connected to your " "existing account so you can manage them from this account." msgstr "Registra account aggiuntivi che saranno automaticamente connessi al tuo account esistente così potrai gestirli da questo account." -#: src/Module/Settings/Delegation.php:190 +#: src/Module/Settings/Delegation.php:176 msgid "Register an additional account" msgstr "Registra un account aggiuntivo" -#: src/Module/Settings/Delegation.php:192 +#: src/Module/Settings/Delegation.php:178 msgid "" "Parent users have total control about this account, including the account " "settings. Please double check whom you give this access." msgstr "Gli utenti principali hanno il controllo totale su questo account, comprese le impostazioni. Assicurati di controllare due volte a chi stai fornendo questo accesso." -#: src/Module/Settings/Delegation.php:195 +#: src/Module/Settings/Delegation.php:181 msgid "Delegates" msgstr "Delegati" -#: src/Module/Settings/Delegation.php:196 +#: src/Module/Settings/Delegation.php:182 msgid "" "Delegates are able to manage all aspects of this account/page except for " "basic account settings. Please do not delegate your personal account to " "anybody that you do not trust completely." msgstr "I Delegati sono in grado di gestire tutti gli aspetti di questa pagina, tranne per le impostazioni di base dell'account. Non delegare il tuo account personale a nessuno di cui non ti fidi ciecamente." -#: src/Module/Settings/Delegation.php:197 +#: src/Module/Settings/Delegation.php:183 msgid "Existing Page Delegates" msgstr "Delegati Pagina Esistenti" -#: src/Module/Settings/Delegation.php:198 +#: src/Module/Settings/Delegation.php:184 msgid "Potential Delegates" msgstr "Delegati Potenziali" -#: src/Module/Settings/Delegation.php:199 +#: src/Module/Settings/Delegation.php:185 msgid "No entries." msgstr "Nessuna voce." -#: src/Module/Settings/Display.php:183 +#: src/Module/Settings/Display.php:169 msgid "The theme you chose isn't available." msgstr "Il tema che hai scelto non è disponibile." -#: src/Module/Settings/Display.php:223 +#: src/Module/Settings/Display.php:209 #, php-format msgid "%s - (Unsupported)" msgstr "%s - (Non supportato)" -#: src/Module/Settings/Display.php:260 +#: src/Module/Settings/Display.php:246 msgid "No preview" msgstr "" -#: src/Module/Settings/Display.php:261 +#: src/Module/Settings/Display.php:247 msgid "No image" msgstr "" -#: src/Module/Settings/Display.php:262 +#: src/Module/Settings/Display.php:248 msgid "Small Image" msgstr "" -#: src/Module/Settings/Display.php:263 +#: src/Module/Settings/Display.php:249 msgid "Large Image" msgstr "" -#: src/Module/Settings/Display.php:308 +#: src/Module/Settings/Display.php:294 msgid "Display Settings" msgstr "Impostazioni Grafiche" -#: src/Module/Settings/Display.php:310 +#: src/Module/Settings/Display.php:296 msgid "General Theme Settings" msgstr "Opzioni Generali Tema" -#: src/Module/Settings/Display.php:311 +#: src/Module/Settings/Display.php:297 msgid "Custom Theme Settings" msgstr "Opzioni Personalizzate Tema" -#: src/Module/Settings/Display.php:312 +#: src/Module/Settings/Display.php:298 msgid "Content Settings" msgstr "Opzioni Contenuto" -#: src/Module/Settings/Display.php:313 view/theme/duepuntozero/config.php:86 -#: view/theme/frio/config.php:151 view/theme/quattro/config.php:88 -#: view/theme/vier/config.php:136 +#: src/Module/Settings/Display.php:299 view/theme/duepuntozero/config.php:74 +#: view/theme/frio/config.php:139 view/theme/quattro/config.php:76 +#: view/theme/vier/config.php:124 msgid "Theme settings" msgstr "Impostazioni tema" -#: src/Module/Settings/Display.php:314 +#: src/Module/Settings/Display.php:300 msgid "Timelines" msgstr "" -#: src/Module/Settings/Display.php:321 +#: src/Module/Settings/Display.php:307 msgid "Display Theme:" msgstr "Tema:" -#: src/Module/Settings/Display.php:322 +#: src/Module/Settings/Display.php:308 msgid "Mobile Theme:" msgstr "Tema mobile:" -#: src/Module/Settings/Display.php:325 +#: src/Module/Settings/Display.php:311 msgid "Number of items to display per page:" msgstr "Numero di elementi da mostrare per pagina:" -#: src/Module/Settings/Display.php:325 src/Module/Settings/Display.php:326 +#: src/Module/Settings/Display.php:311 src/Module/Settings/Display.php:312 msgid "Maximum of 100 items" msgstr "Massimo 100 voci" -#: src/Module/Settings/Display.php:326 +#: src/Module/Settings/Display.php:312 msgid "Number of items to display per page when viewed from mobile device:" msgstr "Numero di voci da visualizzare per pagina quando si utilizza un dispositivo mobile:" -#: src/Module/Settings/Display.php:327 +#: src/Module/Settings/Display.php:313 msgid "Update browser every xx seconds" msgstr "Aggiorna il browser ogni x secondi" -#: src/Module/Settings/Display.php:327 +#: src/Module/Settings/Display.php:313 msgid "Minimum of 10 seconds. Enter -1 to disable it." msgstr "Minimo 10 secondi. Inserisci -1 per disabilitarlo" -#: src/Module/Settings/Display.php:328 +#: src/Module/Settings/Display.php:314 msgid "Display emoticons" msgstr "" -#: src/Module/Settings/Display.php:328 +#: src/Module/Settings/Display.php:314 msgid "When enabled, emoticons are replaced with matching symbols." msgstr "" -#: src/Module/Settings/Display.php:329 +#: src/Module/Settings/Display.php:315 msgid "Infinite scroll" msgstr "Scroll infinito" -#: src/Module/Settings/Display.php:329 +#: src/Module/Settings/Display.php:315 msgid "Automatic fetch new items when reaching the page end." msgstr "Recupero automatico di nuovi oggetti quando viene raggiunta la fine della pagina." -#: src/Module/Settings/Display.php:330 +#: src/Module/Settings/Display.php:316 msgid "Enable Smart Threading" msgstr "" -#: src/Module/Settings/Display.php:330 +#: src/Module/Settings/Display.php:316 msgid "Enable the automatic suppression of extraneous thread indentation." msgstr "" -#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/Display.php:317 msgid "Display the Dislike feature" msgstr "" -#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/Display.php:317 msgid "" "Display the Dislike button and dislike reactions on posts and comments." msgstr "" -#: src/Module/Settings/Display.php:332 +#: src/Module/Settings/Display.php:318 msgid "Display the resharer" msgstr "Mostra chi ha condiviso" -#: src/Module/Settings/Display.php:332 +#: src/Module/Settings/Display.php:318 msgid "Display the first resharer as icon and text on a reshared item." msgstr "Mostra chi ha condiviso per primo come icona e testo su un oggetto ricondiviso." -#: src/Module/Settings/Display.php:333 +#: src/Module/Settings/Display.php:319 msgid "Stay local" msgstr "Rimani in locale" -#: src/Module/Settings/Display.php:333 +#: src/Module/Settings/Display.php:319 msgid "Don't go to a remote system when following a contact link." msgstr "Non andare sul sistema remoto mentre segui il collegamento di un contatto." -#: src/Module/Settings/Display.php:334 +#: src/Module/Settings/Display.php:320 msgid "Show the post deletion checkbox" msgstr "" -#: src/Module/Settings/Display.php:334 +#: src/Module/Settings/Display.php:320 msgid "Display the checkbox for the post deletion on the network page." msgstr "" -#: src/Module/Settings/Display.php:335 +#: src/Module/Settings/Display.php:321 msgid "DIsplay the event list" msgstr "" -#: src/Module/Settings/Display.php:335 +#: src/Module/Settings/Display.php:321 msgid "Display the birthday reminder and event list on the network page." msgstr "" -#: src/Module/Settings/Display.php:336 +#: src/Module/Settings/Display.php:322 msgid "Link preview mode" msgstr "" -#: src/Module/Settings/Display.php:336 +#: src/Module/Settings/Display.php:322 msgid "Appearance of the link preview that is added to each post with a link." msgstr "" -#: src/Module/Settings/Display.php:341 +#: src/Module/Settings/Display.php:327 msgid "Bookmark" msgstr "" -#: src/Module/Settings/Display.php:343 +#: src/Module/Settings/Display.php:329 msgid "" "Enable timelines that you want to see in the channels widget. Bookmark " "timelines that you want to see in the top menu." msgstr "" -#: src/Module/Settings/Display.php:345 +#: src/Module/Settings/Display.php:331 msgid "Channel languages:" msgstr "" -#: src/Module/Settings/Display.php:345 +#: src/Module/Settings/Display.php:331 msgid "Select all languages that you want to see in your channels." msgstr "" -#: src/Module/Settings/Display.php:347 +#: src/Module/Settings/Display.php:333 msgid "Beginning of week:" msgstr "Inizio della settimana:" -#: src/Module/Settings/Display.php:348 +#: src/Module/Settings/Display.php:334 msgid "Default calendar view:" msgstr "" -#: src/Module/Settings/Features.php:73 +#: src/Module/Settings/Features.php:59 msgid "Additional Features" msgstr "Funzionalità aggiuntive" -#: src/Module/Settings/OAuth.php:71 +#: src/Module/Settings/OAuth.php:57 msgid "Connected Apps" msgstr "Applicazioni Collegate" -#: src/Module/Settings/OAuth.php:75 +#: src/Module/Settings/OAuth.php:61 msgid "Remove authorization" msgstr "Rimuovi l'autorizzazione" -#: src/Module/Settings/Profile/Index.php:116 +#: src/Module/Settings/Profile/Index.php:102 msgid "Display Name is required." msgstr "" -#: src/Module/Settings/Profile/Index.php:167 +#: src/Module/Settings/Profile/Index.php:156 msgid "Profile couldn't be updated." msgstr "Il Profilo non può essere aggiornato." -#: src/Module/Settings/Profile/Index.php:205 -#: src/Module/Settings/Profile/Index.php:226 +#: src/Module/Settings/Profile/Index.php:196 +#: src/Module/Settings/Profile/Index.php:217 msgid "Label:" msgstr "Etichetta:" -#: src/Module/Settings/Profile/Index.php:206 -#: src/Module/Settings/Profile/Index.php:227 +#: src/Module/Settings/Profile/Index.php:197 +#: src/Module/Settings/Profile/Index.php:218 msgid "Value:" msgstr "Valore:" -#: src/Module/Settings/Profile/Index.php:217 -#: src/Module/Settings/Profile/Index.php:238 +#: src/Module/Settings/Profile/Index.php:208 +#: src/Module/Settings/Profile/Index.php:229 msgid "Field Permissions" msgstr "Permessi del campo" -#: src/Module/Settings/Profile/Index.php:218 -#: src/Module/Settings/Profile/Index.php:239 +#: src/Module/Settings/Profile/Index.php:209 +#: src/Module/Settings/Profile/Index.php:230 msgid "(click to open/close)" msgstr "(clicca per aprire/chiudere)" -#: src/Module/Settings/Profile/Index.php:224 +#: src/Module/Settings/Profile/Index.php:215 msgid "Add a new profile field" msgstr "Aggiungi nuovo campo del profilo" -#: src/Module/Settings/Profile/Index.php:247 +#: src/Module/Settings/Profile/Index.php:238 msgid "" "The homepage is verified. A rel=\"me\" link back to your Friendica profile " "page was found on the homepage." msgstr "" -#: src/Module/Settings/Profile/Index.php:249 +#: src/Module/Settings/Profile/Index.php:240 #, php-format msgid "" "To verify your homepage, add a rel=\"me\" link to it, pointing to your " "profile URL (%s)." msgstr "" -#: src/Module/Settings/Profile/Index.php:255 +#: src/Module/Settings/Profile/Index.php:246 msgid "Profile Actions" msgstr "Azioni Profilo" -#: src/Module/Settings/Profile/Index.php:256 +#: src/Module/Settings/Profile/Index.php:247 msgid "Edit Profile Details" msgstr "Modifica i dettagli del profilo" -#: src/Module/Settings/Profile/Index.php:258 +#: src/Module/Settings/Profile/Index.php:249 msgid "Change Profile Photo" msgstr "Cambia la foto del profilo" -#: src/Module/Settings/Profile/Index.php:261 +#: src/Module/Settings/Profile/Index.php:252 msgid "Profile picture" msgstr "Immagine del profilo" -#: src/Module/Settings/Profile/Index.php:262 +#: src/Module/Settings/Profile/Index.php:253 msgid "Location" msgstr "Posizione" -#: src/Module/Settings/Profile/Index.php:263 src/Util/Temporal.php:97 -#: src/Util/Temporal.php:99 +#: src/Module/Settings/Profile/Index.php:254 src/Util/Temporal.php:83 +#: src/Util/Temporal.php:85 msgid "Miscellaneous" msgstr "Varie" -#: src/Module/Settings/Profile/Index.php:264 +#: src/Module/Settings/Profile/Index.php:255 msgid "Custom Profile Fields" msgstr "Campi Profilo Personalizzati" -#: src/Module/Settings/Profile/Index.php:265 src/Module/Welcome.php:58 +#: src/Module/Settings/Profile/Index.php:256 src/Module/Welcome.php:44 msgid "Upload Profile Photo" msgstr "Carica la foto del profilo" -#: src/Module/Settings/Profile/Index.php:266 +#: src/Module/Settings/Profile/Index.php:257 #, php-format msgid "" "Custom fields appear on your profile page.
\n" @@ -10975,396 +10982,396 @@ msgid "" "\t\t\t\tNon-public fields can only be seen by the selected Friendica contacts or the Friendica contacts in the selected circles.
" msgstr "" -#: src/Module/Settings/Profile/Index.php:286 +#: src/Module/Settings/Profile/Index.php:277 msgid "Street Address:" msgstr "Indirizzo (via/piazza):" -#: src/Module/Settings/Profile/Index.php:287 +#: src/Module/Settings/Profile/Index.php:278 msgid "Locality/City:" msgstr "Località:" -#: src/Module/Settings/Profile/Index.php:288 +#: src/Module/Settings/Profile/Index.php:279 msgid "Region/State:" msgstr "Regione/Stato:" -#: src/Module/Settings/Profile/Index.php:289 +#: src/Module/Settings/Profile/Index.php:280 msgid "Postal/Zip Code:" msgstr "CAP:" -#: src/Module/Settings/Profile/Index.php:290 +#: src/Module/Settings/Profile/Index.php:281 msgid "Country:" msgstr "Nazione:" -#: src/Module/Settings/Profile/Index.php:292 +#: src/Module/Settings/Profile/Index.php:283 msgid "XMPP (Jabber) address:" msgstr "Indirizzo XMPP (Jabber):" -#: src/Module/Settings/Profile/Index.php:292 +#: src/Module/Settings/Profile/Index.php:283 msgid "" "The XMPP address will be published so that people can follow you there." msgstr "" -#: src/Module/Settings/Profile/Index.php:293 +#: src/Module/Settings/Profile/Index.php:284 msgid "Matrix (Element) address:" msgstr "" -#: src/Module/Settings/Profile/Index.php:293 +#: src/Module/Settings/Profile/Index.php:284 msgid "" "The Matrix address will be published so that people can follow you there." msgstr "" -#: src/Module/Settings/Profile/Index.php:294 +#: src/Module/Settings/Profile/Index.php:285 msgid "Homepage URL:" msgstr "Homepage:" -#: src/Module/Settings/Profile/Index.php:295 +#: src/Module/Settings/Profile/Index.php:286 msgid "Public Keywords:" msgstr "Parole chiave visibili a tutti:" -#: src/Module/Settings/Profile/Index.php:295 +#: src/Module/Settings/Profile/Index.php:286 msgid "(Used for suggesting potential friends, can be seen by others)" msgstr "(E' utilizzato per suggerire potenziali amici, può essere visto da altri)" -#: src/Module/Settings/Profile/Index.php:296 +#: src/Module/Settings/Profile/Index.php:287 msgid "Private Keywords:" msgstr "Parole chiave private:" -#: src/Module/Settings/Profile/Index.php:296 +#: src/Module/Settings/Profile/Index.php:287 msgid "(Used for searching profiles, never shown to others)" msgstr "(Usato per cercare tra i profili, non è mai visibile agli altri)" -#: src/Module/Settings/Profile/Photo/Crop.php:107 -#: src/Module/Settings/Profile/Photo/Crop.php:125 -#: src/Module/Settings/Profile/Photo/Crop.php:143 -#: src/Module/Settings/Profile/Photo/Index.php:100 +#: src/Module/Settings/Profile/Photo/Crop.php:93 +#: src/Module/Settings/Profile/Photo/Crop.php:111 +#: src/Module/Settings/Profile/Photo/Crop.php:129 +#: src/Module/Settings/Profile/Photo/Index.php:86 #, php-format msgid "Image size reduction [%s] failed." msgstr "Il ridimensionamento dell'immagine [%s] è fallito." -#: src/Module/Settings/Profile/Photo/Crop.php:150 +#: src/Module/Settings/Profile/Photo/Crop.php:136 msgid "" "Shift-reload the page or clear browser cache if the new photo does not " "display immediately." msgstr "Ricarica la pagina con shift+F5 o cancella la cache del browser se la nuova foto non viene mostrata immediatamente." -#: src/Module/Settings/Profile/Photo/Crop.php:155 +#: src/Module/Settings/Profile/Photo/Crop.php:141 msgid "Unable to process image" msgstr "Impossibile elaborare l'immagine" -#: src/Module/Settings/Profile/Photo/Crop.php:174 +#: src/Module/Settings/Profile/Photo/Crop.php:160 msgid "Photo not found." msgstr "Foto non trovata." -#: src/Module/Settings/Profile/Photo/Crop.php:196 +#: src/Module/Settings/Profile/Photo/Crop.php:182 msgid "Profile picture successfully updated." msgstr "Immagine di profilo aggiornata con successo." -#: src/Module/Settings/Profile/Photo/Crop.php:222 -#: src/Module/Settings/Profile/Photo/Crop.php:226 +#: src/Module/Settings/Profile/Photo/Crop.php:208 +#: src/Module/Settings/Profile/Photo/Crop.php:212 msgid "Crop Image" msgstr "Ritaglia immagine" -#: src/Module/Settings/Profile/Photo/Crop.php:223 +#: src/Module/Settings/Profile/Photo/Crop.php:209 msgid "Please adjust the image cropping for optimum viewing." msgstr "Ritaglia l'immagine per una visualizzazione migliore." -#: src/Module/Settings/Profile/Photo/Crop.php:225 +#: src/Module/Settings/Profile/Photo/Crop.php:211 msgid "Use Image As Is" msgstr "Usa immagine così com'è" -#: src/Module/Settings/Profile/Photo/Index.php:46 +#: src/Module/Settings/Profile/Photo/Index.php:32 msgid "Missing uploaded image." msgstr "Immagine caricata mancante." -#: src/Module/Settings/Profile/Photo/Index.php:123 +#: src/Module/Settings/Profile/Photo/Index.php:109 msgid "Profile Picture Settings" msgstr "Impostazioni Immagine di Profilo" -#: src/Module/Settings/Profile/Photo/Index.php:124 +#: src/Module/Settings/Profile/Photo/Index.php:110 msgid "Current Profile Picture" msgstr "Immagine del profilo attuale" -#: src/Module/Settings/Profile/Photo/Index.php:125 +#: src/Module/Settings/Profile/Photo/Index.php:111 msgid "Upload Profile Picture" msgstr "Carica la foto del profilo" -#: src/Module/Settings/Profile/Photo/Index.php:126 +#: src/Module/Settings/Profile/Photo/Index.php:112 msgid "Upload Picture:" msgstr "Carica Foto:" -#: src/Module/Settings/Profile/Photo/Index.php:131 +#: src/Module/Settings/Profile/Photo/Index.php:117 msgid "or" msgstr "o" -#: src/Module/Settings/Profile/Photo/Index.php:133 +#: src/Module/Settings/Profile/Photo/Index.php:119 msgid "skip this step" msgstr "salta questo passaggio" -#: src/Module/Settings/Profile/Photo/Index.php:135 +#: src/Module/Settings/Profile/Photo/Index.php:121 msgid "select a photo from your photo albums" msgstr "seleziona una foto dai tuoi album" -#: src/Module/Settings/RemoveMe.php:76 +#: src/Module/Settings/RemoveMe.php:62 msgid "" "There was a validation error, please make sure you're logged in with the " "account you want to remove and try again." msgstr "" -#: src/Module/Settings/RemoveMe.php:76 +#: src/Module/Settings/RemoveMe.php:62 msgid "If this error persists, please contact your administrator." msgstr "" -#: src/Module/Settings/RemoveMe.php:90 -#: src/Navigation/Notifications/Repository/Notify.php:471 -#: src/Navigation/Notifications/Repository/Notify.php:492 +#: src/Module/Settings/RemoveMe.php:76 +#: src/Navigation/Notifications/Repository/Notify.php:457 +#: src/Navigation/Notifications/Repository/Notify.php:478 msgid "[Friendica System Notify]" msgstr "[Notifica di Sistema di Friendica]" -#: src/Module/Settings/RemoveMe.php:90 +#: src/Module/Settings/RemoveMe.php:76 msgid "User deleted their account" msgstr "L'utente ha cancellato il suo account" -#: src/Module/Settings/RemoveMe.php:91 +#: src/Module/Settings/RemoveMe.php:77 msgid "" "On your Friendica node an user deleted their account. Please ensure that " "their data is removed from the backups." msgstr "Sul tuo nodo Friendica un utente ha cancellato il suo account. Assicurati che i suoi dati siano rimossi dai backup." -#: src/Module/Settings/RemoveMe.php:92 +#: src/Module/Settings/RemoveMe.php:78 #, php-format msgid "The user id is %d" msgstr "L'id utente è %d" -#: src/Module/Settings/RemoveMe.php:105 +#: src/Module/Settings/RemoveMe.php:91 msgid "Your account has been successfully removed. Bye bye!" msgstr "" -#: src/Module/Settings/RemoveMe.php:130 +#: src/Module/Settings/RemoveMe.php:116 msgid "Remove My Account" msgstr "Rimuovi il mio account" -#: src/Module/Settings/RemoveMe.php:131 +#: src/Module/Settings/RemoveMe.php:117 msgid "" "This will completely remove your account. Once this has been done it is not " "recoverable." msgstr "Questo comando rimuoverà completamente il tuo account. Una volta rimosso non potrai più recuperarlo." -#: src/Module/Settings/RemoveMe.php:136 +#: src/Module/Settings/RemoveMe.php:122 msgid "Please enter your password for verification:" msgstr "Inserisci la tua password per verifica:" -#: src/Module/Settings/Server/Action.php:60 +#: src/Module/Settings/Server/Action.php:46 msgid "Do you want to ignore this server?" msgstr "" -#: src/Module/Settings/Server/Action.php:64 +#: src/Module/Settings/Server/Action.php:50 msgid "Do you want to unignore this server?" msgstr "" -#: src/Module/Settings/Server/Action.php:74 -#: src/Module/Settings/Server/Index.php:104 +#: src/Module/Settings/Server/Action.php:60 +#: src/Module/Settings/Server/Index.php:90 msgid "Remote server settings" msgstr "" -#: src/Module/Settings/Server/Action.php:77 +#: src/Module/Settings/Server/Action.php:63 msgid "Server URL" msgstr "" -#: src/Module/Settings/Server/Index.php:78 +#: src/Module/Settings/Server/Index.php:64 msgid "Settings saved" msgstr "" -#: src/Module/Settings/Server/Index.php:105 +#: src/Module/Settings/Server/Index.php:91 msgid "" "Here you can find all the remote servers you have taken individual " "moderation actions against. For a list of servers your node has blocked, " "please check out the Information page." msgstr "" -#: src/Module/Settings/Server/Index.php:110 +#: src/Module/Settings/Server/Index.php:96 msgid "Delete all your settings for the remote server" msgstr "" -#: src/Module/Settings/Server/Index.php:111 +#: src/Module/Settings/Server/Index.php:97 msgid "Save changes" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:69 -#: src/Module/Settings/TwoFactor/Recovery.php:67 -#: src/Module/Settings/TwoFactor/Trusted.php:70 -#: src/Module/Settings/TwoFactor/Verify.php:72 +#: src/Module/Settings/TwoFactor/AppSpecific.php:55 +#: src/Module/Settings/TwoFactor/Recovery.php:53 +#: src/Module/Settings/TwoFactor/Trusted.php:56 +#: src/Module/Settings/TwoFactor/Verify.php:58 msgid "Please enter your password to access this page." msgstr "Per favore inserisci la tua password per accedere a questa pagina." -#: src/Module/Settings/TwoFactor/AppSpecific.php:87 +#: src/Module/Settings/TwoFactor/AppSpecific.php:73 msgid "App-specific password generation failed: The description is empty." msgstr "Generazione della password specifica per l'app non riuscita: La descrizione è vuota." -#: src/Module/Settings/TwoFactor/AppSpecific.php:90 +#: src/Module/Settings/TwoFactor/AppSpecific.php:76 msgid "" "App-specific password generation failed: This description already exists." msgstr "Generazione della password specifica per l'app non riuscita: La descrizione esiste già." -#: src/Module/Settings/TwoFactor/AppSpecific.php:94 +#: src/Module/Settings/TwoFactor/AppSpecific.php:80 msgid "New app-specific password generated." msgstr "Nuova password specifica per app generata." -#: src/Module/Settings/TwoFactor/AppSpecific.php:100 +#: src/Module/Settings/TwoFactor/AppSpecific.php:86 msgid "App-specific passwords successfully revoked." msgstr "Password specifiche per le app revocate con successo." -#: src/Module/Settings/TwoFactor/AppSpecific.php:110 +#: src/Module/Settings/TwoFactor/AppSpecific.php:96 msgid "App-specific password successfully revoked." msgstr "Password specifica per l'app revocata con successo." -#: src/Module/Settings/TwoFactor/AppSpecific.php:131 +#: src/Module/Settings/TwoFactor/AppSpecific.php:117 msgid "Two-factor app-specific passwords" msgstr "Password specifiche per app a due fattori" -#: src/Module/Settings/TwoFactor/AppSpecific.php:133 +#: src/Module/Settings/TwoFactor/AppSpecific.php:119 msgid "" "App-specific passwords are randomly generated passwords used instead your" " regular password to authenticate your account on third-party applications " "that don't support two-factor authentication.
" msgstr "Password specifiche per le app sono generate casualmente e vengono usate al posto della tua password dell'account per autenticarti con applicazioni di terze parti che non supportano l'autenticazione a due fattori.
" -#: src/Module/Settings/TwoFactor/AppSpecific.php:134 +#: src/Module/Settings/TwoFactor/AppSpecific.php:120 msgid "" "Make sure to copy your new app-specific password now. You won’t be able to " "see it again!" msgstr "Assicurati di copiare la tua nuova password specifica per l'app ora. Non sarai in grado di vederla un'altra volta!" -#: src/Module/Settings/TwoFactor/AppSpecific.php:138 +#: src/Module/Settings/TwoFactor/AppSpecific.php:124 msgid "Last Used" msgstr "Ultimo Utilizzo" -#: src/Module/Settings/TwoFactor/AppSpecific.php:139 +#: src/Module/Settings/TwoFactor/AppSpecific.php:125 msgid "Revoke" msgstr "Revoca" -#: src/Module/Settings/TwoFactor/AppSpecific.php:140 +#: src/Module/Settings/TwoFactor/AppSpecific.php:126 msgid "Revoke All" msgstr "Revoca Tutti" -#: src/Module/Settings/TwoFactor/AppSpecific.php:143 +#: src/Module/Settings/TwoFactor/AppSpecific.php:129 msgid "" "When you generate a new app-specific password, you must use it right away, " "it will be shown to you once after you generate it." msgstr "Quando generi una nuova password specifica per l'app, devi utilizzarla immediatamente, ti sarà mostrata una volta generata." -#: src/Module/Settings/TwoFactor/AppSpecific.php:144 +#: src/Module/Settings/TwoFactor/AppSpecific.php:130 msgid "Generate new app-specific password" msgstr "Genera nuova password specifica per app" -#: src/Module/Settings/TwoFactor/AppSpecific.php:145 +#: src/Module/Settings/TwoFactor/AppSpecific.php:131 msgid "Friendiqa on my Fairphone 2..." msgstr "Friendiqa sul mio Fairphone 2..." -#: src/Module/Settings/TwoFactor/AppSpecific.php:146 +#: src/Module/Settings/TwoFactor/AppSpecific.php:132 msgid "Generate" msgstr "Genera" -#: src/Module/Settings/TwoFactor/Index.php:88 +#: src/Module/Settings/TwoFactor/Index.php:74 msgid "Two-factor authentication successfully disabled." msgstr "Autenticazione a due fattori disabilitata con successo." -#: src/Module/Settings/TwoFactor/Index.php:141 +#: src/Module/Settings/TwoFactor/Index.php:127 msgid "" "Use an application on a mobile device to get two-factor authentication " "codes when prompted on login.
" msgstr "Usa un'applicazione su un dispositivo mobile per generare codici di autenticazione a due fattori quando richiesto all'accesso.
" -#: src/Module/Settings/TwoFactor/Index.php:145 +#: src/Module/Settings/TwoFactor/Index.php:131 msgid "Authenticator app" msgstr "App di autenticazione" -#: src/Module/Settings/TwoFactor/Index.php:146 +#: src/Module/Settings/TwoFactor/Index.php:132 msgid "Configured" msgstr "Configurata" -#: src/Module/Settings/TwoFactor/Index.php:146 +#: src/Module/Settings/TwoFactor/Index.php:132 msgid "Not Configured" msgstr "Non Configurata" -#: src/Module/Settings/TwoFactor/Index.php:147 +#: src/Module/Settings/TwoFactor/Index.php:133 msgid "You haven't finished configuring your authenticator app.
" msgstr "Non hai terminato la configurazione della tua app di autenticazione.
" -#: src/Module/Settings/TwoFactor/Index.php:148 +#: src/Module/Settings/TwoFactor/Index.php:134 msgid "Your authenticator app is correctly configured.
" msgstr "La tua app di autenticazione è correttamente configurata.
" -#: src/Module/Settings/TwoFactor/Index.php:150 +#: src/Module/Settings/TwoFactor/Index.php:136 msgid "Recovery codes" msgstr "Codici di recupero" -#: src/Module/Settings/TwoFactor/Index.php:151 +#: src/Module/Settings/TwoFactor/Index.php:137 msgid "Remaining valid codes" msgstr "Codici validi rimanenti" -#: src/Module/Settings/TwoFactor/Index.php:153 +#: src/Module/Settings/TwoFactor/Index.php:139 msgid "" "These one-use codes can replace an authenticator app code in case you " "have lost access to it.
" msgstr "Questi codici monouso possono sostituire l'app di autenticazione nel caso avessi perso il suo accesso.
" -#: src/Module/Settings/TwoFactor/Index.php:155 +#: src/Module/Settings/TwoFactor/Index.php:141 msgid "App-specific passwords" msgstr "Password specifiche per app" -#: src/Module/Settings/TwoFactor/Index.php:156 +#: src/Module/Settings/TwoFactor/Index.php:142 msgid "Generated app-specific passwords" msgstr "Genera password specifiche per app" -#: src/Module/Settings/TwoFactor/Index.php:158 +#: src/Module/Settings/TwoFactor/Index.php:144 msgid "" "These randomly generated passwords allow you to authenticate on apps not " "supporting two-factor authentication.
" msgstr "Queste password generate casualmente ti consentono di autenticarti con app che non supportano l'autenticazione a due fattori.
" -#: src/Module/Settings/TwoFactor/Index.php:161 +#: src/Module/Settings/TwoFactor/Index.php:147 msgid "Current password:" msgstr "Password attuale:" -#: src/Module/Settings/TwoFactor/Index.php:161 +#: src/Module/Settings/TwoFactor/Index.php:147 msgid "" "You need to provide your current password to change two-factor " "authentication settings." msgstr "Devi inserire la tua password attuale per cambiare le impostazioni di autenticazione a due fattori." -#: src/Module/Settings/TwoFactor/Index.php:162 +#: src/Module/Settings/TwoFactor/Index.php:148 msgid "Enable two-factor authentication" msgstr "Abilita autenticazione a due fattori" -#: src/Module/Settings/TwoFactor/Index.php:163 +#: src/Module/Settings/TwoFactor/Index.php:149 msgid "Disable two-factor authentication" msgstr "Disabilita autenticazione a due fattori" -#: src/Module/Settings/TwoFactor/Index.php:164 +#: src/Module/Settings/TwoFactor/Index.php:150 msgid "Show recovery codes" msgstr "Mostra codici di recupero" -#: src/Module/Settings/TwoFactor/Index.php:165 +#: src/Module/Settings/TwoFactor/Index.php:151 msgid "Manage app-specific passwords" msgstr "Gestisci password specifiche per app" -#: src/Module/Settings/TwoFactor/Index.php:166 +#: src/Module/Settings/TwoFactor/Index.php:152 msgid "Manage trusted browsers" msgstr "Gestisci browser fidàti" -#: src/Module/Settings/TwoFactor/Index.php:167 +#: src/Module/Settings/TwoFactor/Index.php:153 msgid "Finish app configuration" msgstr "Completa configurazione dell'app" -#: src/Module/Settings/TwoFactor/Recovery.php:83 +#: src/Module/Settings/TwoFactor/Recovery.php:69 msgid "New recovery codes successfully generated." msgstr "Nuovi codici di recupero generati con successo." -#: src/Module/Settings/TwoFactor/Recovery.php:109 +#: src/Module/Settings/TwoFactor/Recovery.php:95 msgid "Two-factor recovery codes" msgstr "Codici di recupero a due fattori" -#: src/Module/Settings/TwoFactor/Recovery.php:111 +#: src/Module/Settings/TwoFactor/Recovery.php:97 msgid "" "Recovery codes can be used to access your account in the event you lose " "access to your device and cannot receive two-factor authentication " @@ -11373,68 +11380,68 @@ msgid "" "account.
" msgstr "I codici di recupero possono essere utilizzati per accedere al tuo account nel caso tu perda l'accesso al tuo dispositivo e non possa ricevere i codici di autenticazione a due fattori.
Salvali in un posto sicuro! Se dovessi perdere il tuo dispositivo e non hai i codici di recupero perderai l'accesso al tuo account.
" -#: src/Module/Settings/TwoFactor/Recovery.php:113 +#: src/Module/Settings/TwoFactor/Recovery.php:99 msgid "" "When you generate new recovery codes, you must copy the new codes. Your old " "codes won’t work anymore." msgstr "Quando generi nuovi codici di recupero, dovrai copiare i nuovi codici. I codici precedenti non funzioneranno più." -#: src/Module/Settings/TwoFactor/Recovery.php:114 +#: src/Module/Settings/TwoFactor/Recovery.php:100 msgid "Generate new recovery codes" msgstr "Genera nuovi codici di recupero" -#: src/Module/Settings/TwoFactor/Recovery.php:116 +#: src/Module/Settings/TwoFactor/Recovery.php:102 msgid "Next: Verification" msgstr "Successivo: Verifica" -#: src/Module/Settings/TwoFactor/Trusted.php:87 +#: src/Module/Settings/TwoFactor/Trusted.php:73 msgid "Trusted browsers successfully removed." msgstr "Browser fidàti rimossi con successo." -#: src/Module/Settings/TwoFactor/Trusted.php:97 +#: src/Module/Settings/TwoFactor/Trusted.php:83 msgid "Trusted browser successfully removed." msgstr "Browser fidato rimosso con successo." -#: src/Module/Settings/TwoFactor/Trusted.php:139 +#: src/Module/Settings/TwoFactor/Trusted.php:125 msgid "Two-factor Trusted Browsers" msgstr "Browser fidàti a due fattori" -#: src/Module/Settings/TwoFactor/Trusted.php:140 +#: src/Module/Settings/TwoFactor/Trusted.php:126 msgid "" "Trusted browsers are individual browsers you chose to skip two-factor " "authentication to access Friendica. Please use this feature sparingly, as it" " can negate the benefit of two-factor authentication." msgstr "Browser fidàti sono browser sui quali hai schelto di saltare l'autenticazione a due fattori per accedere a Friendica. Per favore utilizza questa funzionalità con parsimonia, visto che può annullare i benefici dell'autenticazione a due fattori." -#: src/Module/Settings/TwoFactor/Trusted.php:141 +#: src/Module/Settings/TwoFactor/Trusted.php:127 msgid "Device" msgstr "Dispositivo" -#: src/Module/Settings/TwoFactor/Trusted.php:142 +#: src/Module/Settings/TwoFactor/Trusted.php:128 msgid "OS" msgstr "SO" -#: src/Module/Settings/TwoFactor/Trusted.php:144 +#: src/Module/Settings/TwoFactor/Trusted.php:130 msgid "Trusted" msgstr "Fidato" -#: src/Module/Settings/TwoFactor/Trusted.php:145 +#: src/Module/Settings/TwoFactor/Trusted.php:131 msgid "Created At" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:146 +#: src/Module/Settings/TwoFactor/Trusted.php:132 msgid "Last Use" msgstr "Ultimo Utilizzo" -#: src/Module/Settings/TwoFactor/Trusted.php:148 +#: src/Module/Settings/TwoFactor/Trusted.php:134 msgid "Remove All" msgstr "Rimuovi Tutto" -#: src/Module/Settings/TwoFactor/Verify.php:94 +#: src/Module/Settings/TwoFactor/Verify.php:80 msgid "Two-factor authentication successfully activated." msgstr "Autenticazione a due fattori abilitata con successo." -#: src/Module/Settings/TwoFactor/Verify.php:128 +#: src/Module/Settings/TwoFactor/Verify.php:114 #, php-format msgid "" "Or you can submit the authentication settings manually:
\n" @@ -11454,105 +11461,105 @@ msgid "" "" msgstr "Oppure puoi inserire le impostazioni di autenticazione manualmente:
\nPlease scan this QR Code with your authenticator app and submit the " "provided code.
" msgstr "Per favore scansione questo Codice QR con la tua app di autenticazione e invia il codice fornito.
" -#: src/Module/Settings/TwoFactor/Verify.php:152 +#: src/Module/Settings/TwoFactor/Verify.php:138 #, php-format msgid "" "Or you can open the following URL in your mobile device:
" msgstr "O puoi aprire il seguente indiririzzo sul tuo dispositivo mobile:
" -#: src/Module/Settings/TwoFactor/Verify.php:159 +#: src/Module/Settings/TwoFactor/Verify.php:145 msgid "Verify code and enable two-factor authentication" msgstr "Verifica codice e abilita l'autenticazione a due fattori" -#: src/Module/Settings/UserExport.php:90 +#: src/Module/Settings/UserExport.php:76 msgid "Export account" msgstr "Esporta account" -#: src/Module/Settings/UserExport.php:90 +#: src/Module/Settings/UserExport.php:76 msgid "" "Export your account info and contacts. Use this to make a backup of your " "account and/or to move it to another server." msgstr "Esporta le informazioni del tuo account e dei contatti. Usa questa funzione per fare un backup del tuo account o per spostarlo in un altro server." -#: src/Module/Settings/UserExport.php:91 +#: src/Module/Settings/UserExport.php:77 msgid "Export all" msgstr "Esporta tutto" -#: src/Module/Settings/UserExport.php:91 +#: src/Module/Settings/UserExport.php:77 msgid "" "Export your account info, contacts and all your items as json. Could be a " "very big file, and could take a lot of time. Use this to make a full backup " "of your account (photos are not exported)" msgstr "Esporta le informazioni del tuo account, i tuoi contatti e tutti i tuoi elementi in json. Può diventare un file veramente molto grosso e metterci un sacco di tempo. Usa questa funzione per fare un backup completo del tuo account (le foto non sono esportate)" -#: src/Module/Settings/UserExport.php:92 +#: src/Module/Settings/UserExport.php:78 msgid "Export Contacts to CSV" msgstr "Esporta Contatti come CSV" -#: src/Module/Settings/UserExport.php:92 +#: src/Module/Settings/UserExport.php:78 msgid "" "Export the list of the accounts you are following as CSV file. Compatible to" " e.g. Mastodon." msgstr "Esporta la lista degli account che segui come file CSV. Compatibile per esempio con Mastodon." -#: src/Module/Special/DisplayNotFound.php:35 +#: src/Module/Special/DisplayNotFound.php:21 msgid "The top-level post isn't visible." msgstr "" -#: src/Module/Special/DisplayNotFound.php:36 +#: src/Module/Special/DisplayNotFound.php:22 msgid "The top-level post was deleted." msgstr "" -#: src/Module/Special/DisplayNotFound.php:37 +#: src/Module/Special/DisplayNotFound.php:23 msgid "" "This node has blocked the top-level author or the author of the shared post." msgstr "" -#: src/Module/Special/DisplayNotFound.php:38 +#: src/Module/Special/DisplayNotFound.php:24 msgid "" "You have ignored or blocked the top-level author or the author of the shared" " post." msgstr "" -#: src/Module/Special/DisplayNotFound.php:39 +#: src/Module/Special/DisplayNotFound.php:25 msgid "" "You have ignored the top-level author's server or the shared post author's " "server." msgstr "" -#: src/Module/Special/DisplayNotFound.php:45 +#: src/Module/Special/DisplayNotFound.php:31 msgid "Conversation Not Found" msgstr "" -#: src/Module/Special/DisplayNotFound.php:46 +#: src/Module/Special/DisplayNotFound.php:32 msgid "Unfortunately, the requested conversation isn't available to you." msgstr "" -#: src/Module/Special/DisplayNotFound.php:47 +#: src/Module/Special/DisplayNotFound.php:33 msgid "Possible reasons include:" msgstr "" -#: src/Module/Special/HTTPException.php:78 +#: src/Module/Special/HTTPException.php:64 msgid "Stack trace:" msgstr "Traccia dello stack:" -#: src/Module/Special/HTTPException.php:83 +#: src/Module/Special/HTTPException.php:69 #, php-format msgid "Exception thrown in %s:%d" msgstr "Eccezione lanciata in %s:%d" -#: src/Module/Tos.php:58 src/Module/Tos.php:107 +#: src/Module/Tos.php:44 src/Module/Tos.php:93 msgid "" "At the time of registration, and for providing communications between the " "user account and their contacts, the user has to provide a display name (pen" @@ -11565,14 +11572,14 @@ msgid "" "settings, it is not necessary for communication." msgstr "Al momento della registrazione, e per fornire le comunicazioni tra l'account dell'utente e i suoi contatti, l'utente deve fornire un nome da visualizzare (pseudonimo), un nome utente (soprannome) e un indirizzo email funzionante. I nomi saranno accessibili sulla pagina profilo dell'account da parte di qualsiasi visitatore, anche quando altri dettagli del profilo non sono mostrati. L'indirizzo email sarà usato solo per inviare notifiche riguardo l'interazione coi contatti, ma non sarà mostrato. L'inserimento dell'account nella rubrica degli utenti del nodo o nella rubrica globale è opzionale, può essere impostato nelle impostazioni dell'utente, e non è necessario ai fini delle comunicazioni." -#: src/Module/Tos.php:59 src/Module/Tos.php:108 +#: src/Module/Tos.php:45 src/Module/Tos.php:94 msgid "" "This data is required for communication and is passed on to the nodes of the" " communication partners and is stored there. Users can enter additional " "private data that may be transmitted to the communication partners accounts." msgstr "Queste informazioni sono richiesta per la comunicazione e sono inviate ai nodi che partecipano alla comunicazione dove sono salvati. Gli utenti possono inserire aggiuntive informazioni private che potrebbero essere trasmesse agli account che partecipano alla comunicazione." -#: src/Module/Tos.php:60 src/Module/Tos.php:109 +#: src/Module/Tos.php:46 src/Module/Tos.php:95 #, php-format msgid "" "At any point in time a logged in user can export their account data from the" @@ -11583,98 +11590,98 @@ msgid "" "from the nodes of the communication partners." msgstr "" -#: src/Module/Tos.php:63 src/Module/Tos.php:106 +#: src/Module/Tos.php:49 src/Module/Tos.php:92 msgid "Privacy Statement" msgstr "Note sulla Privacy" -#: src/Module/Tos.php:103 +#: src/Module/Tos.php:89 msgid "Rules" msgstr "" -#: src/Module/Update/Display.php:45 +#: src/Module/Update/Display.php:31 msgid "Parameter uri_id is missing." msgstr "" -#: src/Module/Update/Display.php:55 +#: src/Module/Update/Display.php:41 msgid "The requested item doesn't exist or has been deleted." msgstr "L'oggetto richiesto non esiste o è stato eliminato." -#: src/Module/User/Delegation.php:146 +#: src/Module/User/Delegation.php:132 #, php-format msgid "You are now logged in as %s" msgstr "" -#: src/Module/User/Delegation.php:185 +#: src/Module/User/Delegation.php:171 msgid "Switch between your accounts" msgstr "Passa da un account all'altro" -#: src/Module/User/Delegation.php:186 +#: src/Module/User/Delegation.php:172 msgid "Manage your accounts" msgstr "Gestisci i tuoi account" -#: src/Module/User/Delegation.php:187 +#: src/Module/User/Delegation.php:173 msgid "" "Toggle between different identities or community/group pages which share " "your account details or which you have been granted \"manage\" permissions" msgstr "Cambia tra differenti identità o pagine comunità/gruppi che condividono il tuo account o per cui hai i permessi di gestione" -#: src/Module/User/Delegation.php:188 +#: src/Module/User/Delegation.php:174 msgid "Select an identity to manage: " msgstr "Seleziona un'identità da gestire:" -#: src/Module/User/Import.php:104 +#: src/Module/User/Import.php:90 msgid "User imports on closed servers can only be done by an administrator." msgstr "L'importazione di utenti su server chiusi può essere effettuata solo da un amministratore." -#: src/Module/User/Import.php:120 +#: src/Module/User/Import.php:106 msgid "Move account" msgstr "Muovi account" -#: src/Module/User/Import.php:121 +#: src/Module/User/Import.php:107 msgid "You can import an account from another Friendica server." msgstr "Puoi importare un account da un altro server Friendica." -#: src/Module/User/Import.php:122 +#: src/Module/User/Import.php:108 msgid "" "You need to export your account from the old server and upload it here. We " "will recreate your old account here with all your contacts. We will try also" " to inform your friends that you moved here." msgstr "Devi esportare il tuo account dal vecchio server e caricarlo qui. Noi ricreeremo il tuo vecchio account qui, con tutti i tuoi contatti. Proveremo anche a informare i tuoi amici che ti sei spostato qui." -#: src/Module/User/Import.php:123 +#: src/Module/User/Import.php:109 msgid "" "This feature is experimental. We can't import contacts from the OStatus " "network (GNU Social/Statusnet) or from Diaspora" msgstr "Questa funzione è sperimentale. Non possiamo importare i contatti dalla rete OStatus (GNU Social/Statusnet) o da Diaspora" -#: src/Module/User/Import.php:124 +#: src/Module/User/Import.php:110 msgid "Account file" msgstr "File account" -#: src/Module/User/Import.php:124 +#: src/Module/User/Import.php:110 msgid "" "To export your account, go to \"Settings->Export your personal data\" and " "select \"Export account\"" msgstr "Per esportare il tuo account, vai su \"Impostazioni -> Esporta i tuoi dati personali\" e seleziona \"Esporta account\"" -#: src/Module/User/Import.php:218 +#: src/Module/User/Import.php:204 msgid "Error decoding account file" msgstr "Errore decodificando il file account" -#: src/Module/User/Import.php:223 +#: src/Module/User/Import.php:209 msgid "Error! No version data in file! This is not a Friendica account file?" msgstr "Errore! Nessuna informazione di versione nel file! Potrebbe non essere un file account di Friendica?" -#: src/Module/User/Import.php:231 +#: src/Module/User/Import.php:217 #, php-format msgid "User '%s' already exists on this server!" msgstr "L'utente '%s' esiste già su questo server!" -#: src/Module/User/Import.php:268 +#: src/Module/User/Import.php:254 msgid "User creation error" msgstr "Errore creando l'utente" -#: src/Module/User/Import.php:317 +#: src/Module/User/Import.php:303 #, php-format msgid "%d contact not imported" msgid_plural "%d contacts not imported" @@ -11682,23 +11689,23 @@ msgstr[0] "%d contatto non importato" msgstr[1] "%d contatti non importati" msgstr[2] "%d contatti non importati" -#: src/Module/User/Import.php:366 +#: src/Module/User/Import.php:352 msgid "User profile creation error" msgstr "Errore durante la creazione del profilo dell'utente" -#: src/Module/User/Import.php:417 +#: src/Module/User/Import.php:403 msgid "Done. You can now login with your username and password" msgstr "Fatto. Ora puoi entrare con il tuo nome utente e la tua password" -#: src/Module/Welcome.php:44 +#: src/Module/Welcome.php:30 msgid "Welcome to Friendica" msgstr "Benvenuto su Friendica" -#: src/Module/Welcome.php:45 +#: src/Module/Welcome.php:31 msgid "New Member Checklist" msgstr "Cose da fare per i Nuovi Utenti" -#: src/Module/Welcome.php:46 +#: src/Module/Welcome.php:32 msgid "" "We would like to offer some tips and links to help make your experience " "enjoyable. Click any item to visit the relevant page. A link to this page " @@ -11706,33 +11713,33 @@ msgid "" "registration and then will quietly disappear." msgstr "Vorremmo offrirti qualche trucco e dei collegamenti alla guida per aiutarti ad avere un'esperienza divertente. Clicca su un qualsiasi elemento per visitare la relativa pagina. Un collegamento a questa pagina sarà visibile nella tua home per due settimane dopo la tua registrazione." -#: src/Module/Welcome.php:48 +#: src/Module/Welcome.php:34 msgid "Getting Started" msgstr "Come Iniziare" -#: src/Module/Welcome.php:49 +#: src/Module/Welcome.php:35 msgid "Friendica Walk-Through" msgstr "Friendica Passo-Passo" -#: src/Module/Welcome.php:50 +#: src/Module/Welcome.php:36 msgid "" "On your Quick Start page - find a brief introduction to your " "profile and network tabs, make some new connections, and find some groups to" " join." msgstr "Sulla tua pagina Quick Start - veloce introduzione alla tua pagina profilo e alla pagina Rete, fai qualche nuova amicizia, e trova qualche gruppo a cui unirti." -#: src/Module/Welcome.php:53 +#: src/Module/Welcome.php:39 msgid "Go to Your Settings" msgstr "Vai alle tue Impostazioni" -#: src/Module/Welcome.php:54 +#: src/Module/Welcome.php:40 msgid "" "On your Settings page - change your initial password. Also make a " "note of your Identity Address. This looks just like an email address - and " "will be useful in making friends on the free social web." msgstr "Nella tua pagina Impostazioni - cambia la tua password iniziale. Prendi anche nota del tuo Indirizzo Identità. Assomiglia a un indirizzo email e sarà utile per stringere amicizie nel web sociale libero." -#: src/Module/Welcome.php:55 +#: src/Module/Welcome.php:41 msgid "" "Review the other settings, particularly the privacy settings. An unpublished" " directory listing is like having an unlisted phone number. In general, you " @@ -11740,77 +11747,77 @@ msgid "" "potential friends know exactly how to find you." msgstr "Guarda le altre impostazioni, in particolare le impostazioni della privacy. Un profilo non pubblicato è come un numero di telefono non in elenco. In genere, dovresti pubblicare il tuo profilo - a meno che tutti i tuoi amici e potenziali tali sappiano esattamente come trovarti." -#: src/Module/Welcome.php:59 +#: src/Module/Welcome.php:45 msgid "" "Upload a profile photo if you have not done so already. Studies have shown " "that people with real photos of themselves are ten times more likely to make" " friends than people who do not." msgstr "Carica una foto del profilo se non l'hai ancora fatto. Studi hanno mostrato che persone che hanno vere foto di se stessi hanno dieci volte più probabilità di fare amicizie rispetto alle persone che non ce l'hanno." -#: src/Module/Welcome.php:60 +#: src/Module/Welcome.php:46 msgid "Edit Your Profile" msgstr "Modifica il tuo Profilo" -#: src/Module/Welcome.php:61 +#: src/Module/Welcome.php:47 msgid "" "Edit your default profile to your liking. Review the " "settings for hiding your list of friends and hiding the profile from unknown" " visitors." msgstr "Modifica il tuo profilo predefinito a piacimento. Rivedi le impostazioni per nascondere la tua lista di amici e nascondere il profilo ai visitatori sconosciuti." -#: src/Module/Welcome.php:62 +#: src/Module/Welcome.php:48 msgid "Profile Keywords" msgstr "Parole chiave del profilo" -#: src/Module/Welcome.php:63 +#: src/Module/Welcome.php:49 msgid "" "Set some public keywords for your profile which describe your interests. We " "may be able to find other people with similar interests and suggest " "friendships." msgstr "Inserisci qualche parola chiave pubblica nel tuo profilo che descriva i tuoi interessi. Potremmo essere in grado di trovare altre persone con interessi similari e suggerirti delle amicizie." -#: src/Module/Welcome.php:65 +#: src/Module/Welcome.php:51 msgid "Connecting" msgstr "Collegarsi" -#: src/Module/Welcome.php:67 +#: src/Module/Welcome.php:53 msgid "Importing Emails" msgstr "Importare le Email" -#: src/Module/Welcome.php:68 +#: src/Module/Welcome.php:54 msgid "" "Enter your email access information on your Connector Settings page if you " "wish to import and interact with friends or mailing lists from your email " "INBOX" msgstr "Inserisci i tuoi dati di accesso all'email nella tua pagina Impostazioni Connettori se vuoi importare e interagire con amici o mailing list dalla tua casella di posta in arrivo" -#: src/Module/Welcome.php:69 +#: src/Module/Welcome.php:55 msgid "Go to Your Contacts Page" msgstr "Vai alla tua pagina Contatti" -#: src/Module/Welcome.php:70 +#: src/Module/Welcome.php:56 msgid "" "Your Contacts page is your gateway to managing friendships and connecting " "with friends on other networks. Typically you enter their address or site " "URL in the Add New Contact dialog." msgstr "La tua pagina Contatti è il mezzo per gestire le amicizie e collegarsi con amici su altre reti. Di solito, basta inserire l'indirizzo nel campo Aggiungi Nuovo Contatto" -#: src/Module/Welcome.php:71 +#: src/Module/Welcome.php:57 msgid "Go to Your Site's Directory" msgstr "Vai all'Elenco del tuo sito" -#: src/Module/Welcome.php:72 +#: src/Module/Welcome.php:58 msgid "" "The Directory page lets you find other people in this network or other " "federated sites. Look for a Connect or Follow link on " "their profile page. Provide your own Identity Address if requested." msgstr "La pagina Elenco ti permette di trovare altre persone in questa rete o in altri siti. Cerca un collegamento Connetti o Segui nella loro pagina del profilo. Inserisci il tuo Indirizzo Identità, se richiesto." -#: src/Module/Welcome.php:73 +#: src/Module/Welcome.php:59 msgid "Finding New People" msgstr "Trova nuove persone" -#: src/Module/Welcome.php:74 +#: src/Module/Welcome.php:60 msgid "" "On the side panel of the Contacts page are several tools to find new " "friends. We can match people by interest, look up people by name or " @@ -11819,412 +11826,408 @@ msgid "" "hours." msgstr "Nel pannello laterale nella pagina \"Contatti\", ci sono diversi strumenti per trovare nuovi amici. Possiamo confrontare le persone per interessi, cercare le persone per nome e fornire suggerimenti basati sui tuoi contatti esistenti. Su un sito nuovo, i suggerimenti sono di solito presenti dopo 24 ore." -#: src/Module/Welcome.php:77 +#: src/Module/Welcome.php:63 msgid "Add Your Contacts To Circle" msgstr "" -#: src/Module/Welcome.php:78 +#: src/Module/Welcome.php:64 msgid "" "Once you have made some friends, organize them into private conversation " "circles from the sidebar of your Contacts page and then you can interact " "with each circle privately on your Network page." msgstr "" -#: src/Module/Welcome.php:80 +#: src/Module/Welcome.php:66 msgid "Why Aren't My Posts Public?" msgstr "Perchè i miei messaggi non sono pubblici?" -#: src/Module/Welcome.php:81 +#: src/Module/Welcome.php:67 msgid "" "Friendica respects your privacy. By default, your posts will only show up to" " people you've added as friends. For more information, see the help section " "from the link above." msgstr "Friendica rispetta la tua privacy. Per impostazione predefinita, i tuoi messaggi sono mostrati solo alle persone che hai aggiunto come amici. Per maggiori informazioni guarda la sezione della guida dal collegamento qui sopra." -#: src/Module/Welcome.php:83 +#: src/Module/Welcome.php:69 msgid "Getting Help" msgstr "Ottenere Aiuto" -#: src/Module/Welcome.php:84 +#: src/Module/Welcome.php:70 msgid "Go to the Help Section" msgstr "Vai alla sezione Guida" -#: src/Module/Welcome.php:85 +#: src/Module/Welcome.php:71 msgid "" "Our help pages may be consulted for detail on other program" " features and resources." msgstr "Le nostre pagine della guida possono essere consultate per avere dettagli su altre caratteristiche del programma e altre risorse." -#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:161 +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:147 msgid "{0} wants to follow you" msgstr "" -#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:163 +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:149 msgid "{0} has started following you" msgstr "" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:96 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:82 #, php-format msgid "%s liked %s's post" msgstr "a %s è piaciuto il messaggio di %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:108 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:94 #, php-format msgid "%s disliked %s's post" msgstr "a %s non è piaciuto il messaggio di %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:120 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:106 #, php-format msgid "%s is attending %s's event" msgstr "%s partecipa all'evento di %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:132 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:118 #, php-format msgid "%s is not attending %s's event" msgstr "%s non partecipa all'evento di %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:144 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:130 #, php-format msgid "%s may attending %s's event" msgstr "%s potrebbe partecipare all'evento di %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:174 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:160 #, php-format msgid "%s is now friends with %s" msgstr "%s è ora amico di %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:341 -#: src/Navigation/Notifications/Factory/FormattedNotify.php:379 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:327 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:365 #, php-format msgid "%s commented on %s's post" msgstr "%s ha commentato il messaggio di %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:378 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:364 #, php-format msgid "%s created a new post" msgstr "%s a creato un nuovo messaggio" -#: src/Navigation/Notifications/Factory/Introduction.php:132 +#: src/Navigation/Notifications/Factory/Introduction.php:118 msgid "Friend Suggestion" msgstr "Amico suggerito" -#: src/Navigation/Notifications/Factory/Introduction.php:158 +#: src/Navigation/Notifications/Factory/Introduction.php:144 msgid "Friend/Connect Request" msgstr "Richiesta amicizia/connessione" -#: src/Navigation/Notifications/Factory/Introduction.php:158 -msgid "New Follower" -msgstr "Qualcuno inizia a seguirti" - -#: src/Navigation/Notifications/Factory/Notification.php:134 +#: src/Navigation/Notifications/Factory/Notification.php:120 #, php-format msgid "%1$s wants to follow you" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:136 +#: src/Navigation/Notifications/Factory/Notification.php:122 #, php-format msgid "%1$s has started following you" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:208 +#: src/Navigation/Notifications/Factory/Notification.php:194 #, php-format msgid "%1$s liked your comment on %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:211 +#: src/Navigation/Notifications/Factory/Notification.php:197 #, php-format msgid "%1$s liked your post %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:218 +#: src/Navigation/Notifications/Factory/Notification.php:204 #, php-format msgid "%1$s disliked your comment on %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:221 +#: src/Navigation/Notifications/Factory/Notification.php:207 #, php-format msgid "%1$s disliked your post %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:228 +#: src/Navigation/Notifications/Factory/Notification.php:214 #, php-format msgid "%1$s shared your comment %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:231 -#: src/Navigation/Notifications/Factory/Notification.php:316 +#: src/Navigation/Notifications/Factory/Notification.php:217 +#: src/Navigation/Notifications/Factory/Notification.php:302 #, php-format msgid "%1$s shared your post %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:235 -#: src/Navigation/Notifications/Factory/Notification.php:305 +#: src/Navigation/Notifications/Factory/Notification.php:221 +#: src/Navigation/Notifications/Factory/Notification.php:291 #, php-format msgid "%1$s shared the post %2$s from %3$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:237 -#: src/Navigation/Notifications/Factory/Notification.php:307 +#: src/Navigation/Notifications/Factory/Notification.php:223 +#: src/Navigation/Notifications/Factory/Notification.php:293 #, php-format msgid "%1$s shared a post from %3$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:239 -#: src/Navigation/Notifications/Factory/Notification.php:309 +#: src/Navigation/Notifications/Factory/Notification.php:225 +#: src/Navigation/Notifications/Factory/Notification.php:295 #, php-format msgid "%1$s shared the post %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:241 -#: src/Navigation/Notifications/Factory/Notification.php:311 +#: src/Navigation/Notifications/Factory/Notification.php:227 +#: src/Navigation/Notifications/Factory/Notification.php:297 #, php-format msgid "%1$s shared a post" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:249 +#: src/Navigation/Notifications/Factory/Notification.php:235 #, php-format msgid "%1$s wants to attend your event %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:256 +#: src/Navigation/Notifications/Factory/Notification.php:242 #, php-format msgid "%1$s does not want to attend your event %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:263 +#: src/Navigation/Notifications/Factory/Notification.php:249 #, php-format msgid "%1$s maybe wants to attend your event %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:270 +#: src/Navigation/Notifications/Factory/Notification.php:256 #, php-format msgid "%1$s tagged you on %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:274 +#: src/Navigation/Notifications/Factory/Notification.php:260 #, php-format msgid "%1$s replied to you on %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:278 +#: src/Navigation/Notifications/Factory/Notification.php:264 #, php-format msgid "%1$s commented in your thread %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:282 +#: src/Navigation/Notifications/Factory/Notification.php:268 #, php-format msgid "%1$s commented on your comment %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:289 +#: src/Navigation/Notifications/Factory/Notification.php:275 #, php-format msgid "%1$s commented in their thread %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:291 +#: src/Navigation/Notifications/Factory/Notification.php:277 #, php-format msgid "%1$s commented in their thread" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:293 +#: src/Navigation/Notifications/Factory/Notification.php:279 #, php-format msgid "%1$s commented in the thread %2$s from %3$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:295 +#: src/Navigation/Notifications/Factory/Notification.php:281 #, php-format msgid "%1$s commented in the thread from %3$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:300 +#: src/Navigation/Notifications/Factory/Notification.php:286 #, php-format msgid "%1$s commented on your thread %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:225 -#: src/Navigation/Notifications/Repository/Notify.php:754 +#: src/Navigation/Notifications/Repository/Notify.php:211 +#: src/Navigation/Notifications/Repository/Notify.php:740 msgid "[Friendica:Notify]" msgstr "[Friendica:Notifica]" -#: src/Navigation/Notifications/Repository/Notify.php:293 +#: src/Navigation/Notifications/Repository/Notify.php:279 #, php-format msgid "%s New mail received at %s" msgstr "%s Nuova mail ricevuta su %s" -#: src/Navigation/Notifications/Repository/Notify.php:295 +#: src/Navigation/Notifications/Repository/Notify.php:281 #, php-format msgid "%1$s sent you a new private message at %2$s." msgstr "%1$s ti ha inviato un nuovo messaggio privato su %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:296 +#: src/Navigation/Notifications/Repository/Notify.php:282 msgid "a private message" msgstr "un messaggio privato" -#: src/Navigation/Notifications/Repository/Notify.php:296 +#: src/Navigation/Notifications/Repository/Notify.php:282 #, php-format msgid "%1$s sent you %2$s." msgstr "%1$s ti ha inviato %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:298 +#: src/Navigation/Notifications/Repository/Notify.php:284 #, php-format msgid "Please visit %s to view and/or reply to your private messages." msgstr "Visita %s per vedere e/o rispondere ai tuoi messaggi privati." -#: src/Navigation/Notifications/Repository/Notify.php:328 +#: src/Navigation/Notifications/Repository/Notify.php:314 #, php-format msgid "%1$s commented on %2$s's %3$s %4$s" msgstr "%1$s ha commentato il %3$s di %2$s %4$s" -#: src/Navigation/Notifications/Repository/Notify.php:333 +#: src/Navigation/Notifications/Repository/Notify.php:319 #, php-format msgid "%1$s commented on your %2$s %3$s" msgstr "%1$s ha commentato il tuo %2$s %3$s" -#: src/Navigation/Notifications/Repository/Notify.php:337 +#: src/Navigation/Notifications/Repository/Notify.php:323 #, php-format msgid "%1$s commented on their %2$s %3$s" msgstr "%1$s ha commentato il suo %2$s %3$s" -#: src/Navigation/Notifications/Repository/Notify.php:341 -#: src/Navigation/Notifications/Repository/Notify.php:788 +#: src/Navigation/Notifications/Repository/Notify.php:327 +#: src/Navigation/Notifications/Repository/Notify.php:774 #, php-format msgid "%1$s Comment to conversation #%2$d by %3$s" msgstr "%1$s Commento alla conversazione #%2$d di %3$s" -#: src/Navigation/Notifications/Repository/Notify.php:343 +#: src/Navigation/Notifications/Repository/Notify.php:329 #, php-format msgid "%s commented on an item/conversation you have been following." msgstr "%s ha commentato un elemento che stavi seguendo." -#: src/Navigation/Notifications/Repository/Notify.php:347 -#: src/Navigation/Notifications/Repository/Notify.php:362 -#: src/Navigation/Notifications/Repository/Notify.php:814 +#: src/Navigation/Notifications/Repository/Notify.php:333 +#: src/Navigation/Notifications/Repository/Notify.php:348 +#: src/Navigation/Notifications/Repository/Notify.php:800 #, php-format msgid "Please visit %s to view and/or reply to the conversation." msgstr "Visita %s per vedere e/o commentare la conversazione" -#: src/Navigation/Notifications/Repository/Notify.php:354 +#: src/Navigation/Notifications/Repository/Notify.php:340 #, php-format msgid "%s %s posted to your profile wall" msgstr "%s %s ha scritto sulla bacheca del tuo profilo" -#: src/Navigation/Notifications/Repository/Notify.php:356 +#: src/Navigation/Notifications/Repository/Notify.php:342 #, php-format msgid "%1$s posted to your profile wall at %2$s" msgstr "%1$s ha scritto sulla tua bacheca su %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:357 +#: src/Navigation/Notifications/Repository/Notify.php:343 #, php-format msgid "%1$s posted to [url=%2$s]your wall[/url]" msgstr "%1$s ha inviato un messaggio sulla [url=%2$s]tua bacheca[/url]" -#: src/Navigation/Notifications/Repository/Notify.php:370 +#: src/Navigation/Notifications/Repository/Notify.php:356 #, php-format msgid "%s Introduction received" msgstr "%s Introduzione ricevuta" -#: src/Navigation/Notifications/Repository/Notify.php:372 +#: src/Navigation/Notifications/Repository/Notify.php:358 #, php-format msgid "You've received an introduction from '%1$s' at %2$s" msgstr "Hai ricevuto un'introduzione da '%1$s' su %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:373 +#: src/Navigation/Notifications/Repository/Notify.php:359 #, php-format msgid "You've received [url=%1$s]an introduction[/url] from %2$s." msgstr "Hai ricevuto [url=%1$s]un'introduzione[/url] da %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:378 -#: src/Navigation/Notifications/Repository/Notify.php:424 +#: src/Navigation/Notifications/Repository/Notify.php:364 +#: src/Navigation/Notifications/Repository/Notify.php:410 #, php-format msgid "You may visit their profile at %s" msgstr "Puoi visitare il suo profilo presso %s" -#: src/Navigation/Notifications/Repository/Notify.php:380 +#: src/Navigation/Notifications/Repository/Notify.php:366 #, php-format msgid "Please visit %s to approve or reject the introduction." msgstr "Visita %s per approvare o rifiutare la presentazione." -#: src/Navigation/Notifications/Repository/Notify.php:387 +#: src/Navigation/Notifications/Repository/Notify.php:373 #, php-format msgid "%s A new person is sharing with you" msgstr "%s Una nuova persona sta condividendo con te" -#: src/Navigation/Notifications/Repository/Notify.php:389 -#: src/Navigation/Notifications/Repository/Notify.php:390 +#: src/Navigation/Notifications/Repository/Notify.php:375 +#: src/Navigation/Notifications/Repository/Notify.php:376 #, php-format msgid "%1$s is sharing with you at %2$s" msgstr "%1$s sta condividendo con te su %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:397 +#: src/Navigation/Notifications/Repository/Notify.php:383 #, php-format msgid "%s You have a new follower" msgstr "%s Hai un nuovo seguace" -#: src/Navigation/Notifications/Repository/Notify.php:399 -#: src/Navigation/Notifications/Repository/Notify.php:400 +#: src/Navigation/Notifications/Repository/Notify.php:385 +#: src/Navigation/Notifications/Repository/Notify.php:386 #, php-format msgid "You have a new follower at %2$s : %1$s" msgstr "Un nuovo utente ha iniziato a seguirti su %2$s : %1$s" -#: src/Navigation/Notifications/Repository/Notify.php:413 +#: src/Navigation/Notifications/Repository/Notify.php:399 #, php-format msgid "%s Friend suggestion received" msgstr "%s Suggerimento di amicizia ricevuto" -#: src/Navigation/Notifications/Repository/Notify.php:415 +#: src/Navigation/Notifications/Repository/Notify.php:401 #, php-format msgid "You've received a friend suggestion from '%1$s' at %2$s" msgstr "Hai ricevuto un suggerimento di amicizia da '%1$s' su %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:416 +#: src/Navigation/Notifications/Repository/Notify.php:402 #, php-format msgid "" "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." msgstr "Hai ricevuto [url=%1$s]un suggerimento di amicizia[/url] per %2$s su %3$s" -#: src/Navigation/Notifications/Repository/Notify.php:422 +#: src/Navigation/Notifications/Repository/Notify.php:408 msgid "Name:" msgstr "Nome:" -#: src/Navigation/Notifications/Repository/Notify.php:423 +#: src/Navigation/Notifications/Repository/Notify.php:409 msgid "Photo:" msgstr "Foto:" -#: src/Navigation/Notifications/Repository/Notify.php:426 +#: src/Navigation/Notifications/Repository/Notify.php:412 #, php-format msgid "Please visit %s to approve or reject the suggestion." msgstr "Visita %s per approvare o rifiutare il suggerimento." -#: src/Navigation/Notifications/Repository/Notify.php:434 -#: src/Navigation/Notifications/Repository/Notify.php:449 +#: src/Navigation/Notifications/Repository/Notify.php:420 +#: src/Navigation/Notifications/Repository/Notify.php:435 #, php-format msgid "%s Connection accepted" msgstr "%s Connessione accettata" -#: src/Navigation/Notifications/Repository/Notify.php:436 -#: src/Navigation/Notifications/Repository/Notify.php:451 +#: src/Navigation/Notifications/Repository/Notify.php:422 +#: src/Navigation/Notifications/Repository/Notify.php:437 #, php-format msgid "'%1$s' has accepted your connection request at %2$s" msgstr "'%1$s' ha accettato la tua richiesta di connessione su %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:437 -#: src/Navigation/Notifications/Repository/Notify.php:452 +#: src/Navigation/Notifications/Repository/Notify.php:423 +#: src/Navigation/Notifications/Repository/Notify.php:438 #, php-format msgid "%2$s has accepted your [url=%1$s]connection request[/url]." msgstr "%2$s ha accettato la tua [url=%1$s]richiesta di connessione[/url]" -#: src/Navigation/Notifications/Repository/Notify.php:442 +#: src/Navigation/Notifications/Repository/Notify.php:428 msgid "" "You are now mutual friends and may exchange status updates, photos, and " "email without restriction." msgstr "Ora siete amici reciproci e potete scambiarvi aggiornamenti di stato, foto e messaggi privati senza restrizioni." -#: src/Navigation/Notifications/Repository/Notify.php:444 +#: src/Navigation/Notifications/Repository/Notify.php:430 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "Visita %s se vuoi modificare questa relazione." -#: src/Navigation/Notifications/Repository/Notify.php:457 +#: src/Navigation/Notifications/Repository/Notify.php:443 #, php-format msgid "" "'%1$s' has chosen to accept you a fan, which restricts some forms of " @@ -12233,34 +12236,34 @@ msgid "" "automatically." msgstr "'%1$s' ha scelto di accettarti come \"fan\", il che limita alcune forme di comunicazione, come i messaggi privati, e alcune possibilità di interazione col profilo. Se è una pagina di una comunità o di una celebrità, queste impostazioni sono state applicate automaticamente." -#: src/Navigation/Notifications/Repository/Notify.php:459 +#: src/Navigation/Notifications/Repository/Notify.php:445 #, php-format msgid "" "'%1$s' may choose to extend this into a two-way or more permissive " "relationship in the future." msgstr "'%1$s' può scegliere di estendere questa relazione in una relazione più permissiva in futuro." -#: src/Navigation/Notifications/Repository/Notify.php:461 +#: src/Navigation/Notifications/Repository/Notify.php:447 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "Visita %s se desideri modificare questo collegamento." -#: src/Navigation/Notifications/Repository/Notify.php:471 +#: src/Navigation/Notifications/Repository/Notify.php:457 msgid "registration request" msgstr "richiesta di registrazione" -#: src/Navigation/Notifications/Repository/Notify.php:473 +#: src/Navigation/Notifications/Repository/Notify.php:459 #, php-format msgid "You've received a registration request from '%1$s' at %2$s" msgstr "Hai ricevuto una richiesta di registrazione da '%1$s' su %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:474 +#: src/Navigation/Notifications/Repository/Notify.php:460 #, php-format msgid "You've received a [url=%1$s]registration request[/url] from %2$s." msgstr "Hai ricevuto una [url=%1$s]richiesta di registrazione[/url] da %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:479 -#: src/Navigation/Notifications/Repository/Notify.php:500 +#: src/Navigation/Notifications/Repository/Notify.php:465 +#: src/Navigation/Notifications/Repository/Notify.php:486 #, php-format msgid "" "Display Name:\t%s\n" @@ -12268,288 +12271,288 @@ msgid "" "Login Name:\t%s (%s)" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:485 +#: src/Navigation/Notifications/Repository/Notify.php:471 #, php-format msgid "Please visit %s to approve or reject the request." msgstr "Visita %s per approvare o rifiutare la richiesta." -#: src/Navigation/Notifications/Repository/Notify.php:492 +#: src/Navigation/Notifications/Repository/Notify.php:478 msgid "new registration" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:494 +#: src/Navigation/Notifications/Repository/Notify.php:480 #, php-format msgid "You've received a new registration from '%1$s' at %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:495 +#: src/Navigation/Notifications/Repository/Notify.php:481 #, php-format msgid "You've received a [url=%1$s]new registration[/url] from %2$s." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:506 +#: src/Navigation/Notifications/Repository/Notify.php:492 #, php-format msgid "Please visit %s to have a look at the new registration." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:782 +#: src/Navigation/Notifications/Repository/Notify.php:768 #, php-format msgid "%s %s tagged you" msgstr "%s %s ti ha taggato" -#: src/Navigation/Notifications/Repository/Notify.php:785 +#: src/Navigation/Notifications/Repository/Notify.php:771 #, php-format msgid "%s %s shared a new post" msgstr "%s %s ha condiviso un nuovo messaggio" -#: src/Navigation/Notifications/Repository/Notify.php:793 +#: src/Navigation/Notifications/Repository/Notify.php:779 #, php-format msgid "%1$s %2$s liked your post #%3$d" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:796 +#: src/Navigation/Notifications/Repository/Notify.php:782 #, php-format msgid "%1$s %2$s liked your comment on #%3$d" msgstr "" -#: src/Object/EMail/ItemCCEMail.php:42 +#: src/Object/EMail/ItemCCEMail.php:28 #, php-format msgid "" "This message was sent to you by %s, a member of the Friendica social " "network." msgstr "Questo messaggio ti è stato inviato da %s, un membro del social network Friendica." -#: src/Object/EMail/ItemCCEMail.php:44 +#: src/Object/EMail/ItemCCEMail.php:30 #, php-format msgid "You may visit them online at %s" msgstr "Puoi visitarli online su %s" -#: src/Object/EMail/ItemCCEMail.php:45 +#: src/Object/EMail/ItemCCEMail.php:31 msgid "" "Please contact the sender by replying to this post if you do not wish to " "receive these messages." msgstr "Contatta il mittente rispondendo a questo messaggio se non vuoi ricevere questi messaggi." -#: src/Object/EMail/ItemCCEMail.php:49 +#: src/Object/EMail/ItemCCEMail.php:35 #, php-format msgid "%s posted an update." msgstr "%s ha inviato un aggiornamento." -#: src/Object/Post.php:138 +#: src/Object/Post.php:124 msgid "Private Message" msgstr "Messaggio privato" -#: src/Object/Post.php:142 +#: src/Object/Post.php:128 msgid "Public Message" msgstr "" -#: src/Object/Post.php:146 +#: src/Object/Post.php:132 msgid "Unlisted Message" msgstr "" -#: src/Object/Post.php:182 +#: src/Object/Post.php:168 msgid "This entry was edited" msgstr "Questa voce è stata modificata" -#: src/Object/Post.php:210 +#: src/Object/Post.php:196 msgid "Connector Message" msgstr "" -#: src/Object/Post.php:239 src/Object/Post.php:241 +#: src/Object/Post.php:225 src/Object/Post.php:227 msgid "Edit" msgstr "Modifica" -#: src/Object/Post.php:275 +#: src/Object/Post.php:261 msgid "Delete globally" msgstr "Rimuovi globalmente" -#: src/Object/Post.php:275 +#: src/Object/Post.php:261 msgid "Remove locally" msgstr "Rimuovi localmente" -#: src/Object/Post.php:282 +#: src/Object/Post.php:268 #, php-format msgid "Block %s" msgstr "Blocca %s" -#: src/Object/Post.php:287 +#: src/Object/Post.php:273 #, php-format msgid "Ignore %s" msgstr "" -#: src/Object/Post.php:292 +#: src/Object/Post.php:278 #, php-format msgid "Collapse %s" msgstr "" -#: src/Object/Post.php:296 +#: src/Object/Post.php:282 msgid "Report post" msgstr "" -#: src/Object/Post.php:307 +#: src/Object/Post.php:293 msgid "Save to folder" msgstr "Salva nella cartella" -#: src/Object/Post.php:347 +#: src/Object/Post.php:333 msgid "I will attend" msgstr "Parteciperò" -#: src/Object/Post.php:347 +#: src/Object/Post.php:333 msgid "I will not attend" msgstr "Non parteciperò" -#: src/Object/Post.php:347 +#: src/Object/Post.php:333 msgid "I might attend" msgstr "Forse parteciperò" -#: src/Object/Post.php:394 +#: src/Object/Post.php:380 msgid "Ignore thread" msgstr "Ignora la conversazione" -#: src/Object/Post.php:395 +#: src/Object/Post.php:381 msgid "Unignore thread" msgstr "Non ignorare la conversazione" -#: src/Object/Post.php:396 +#: src/Object/Post.php:382 msgid "Toggle ignore status" msgstr "Inverti stato ignora" -#: src/Object/Post.php:406 +#: src/Object/Post.php:392 msgid "Add star" msgstr "Aggiungi a preferiti" -#: src/Object/Post.php:407 +#: src/Object/Post.php:393 msgid "Remove star" msgstr "Rimuovi da preferiti" -#: src/Object/Post.php:408 +#: src/Object/Post.php:394 msgid "Toggle star status" msgstr "Inverti stato preferito" -#: src/Object/Post.php:419 +#: src/Object/Post.php:405 msgid "Pin" msgstr "Metti in evidenza" -#: src/Object/Post.php:420 +#: src/Object/Post.php:406 msgid "Unpin" msgstr "Togli da in evidenza" -#: src/Object/Post.php:421 +#: src/Object/Post.php:407 msgid "Toggle pin status" msgstr "Inverti stato in evidenza" -#: src/Object/Post.php:424 +#: src/Object/Post.php:410 msgid "Pinned" msgstr "In evidenza" -#: src/Object/Post.php:429 +#: src/Object/Post.php:415 msgid "Add tag" msgstr "Aggiungi tag" -#: src/Object/Post.php:444 +#: src/Object/Post.php:430 msgid "Quote share this" msgstr "Condividi citando questo" -#: src/Object/Post.php:444 +#: src/Object/Post.php:430 msgid "Quote Share" msgstr "Cita e Condividi" -#: src/Object/Post.php:447 +#: src/Object/Post.php:433 msgid "Reshare this" msgstr "Ricondividi questo" -#: src/Object/Post.php:447 +#: src/Object/Post.php:433 msgid "Reshare" msgstr "Ricondividi" -#: src/Object/Post.php:448 +#: src/Object/Post.php:434 msgid "Cancel your Reshare" msgstr "Annulla la tua Ricondivisione" -#: src/Object/Post.php:448 +#: src/Object/Post.php:434 msgid "Unshare" msgstr "Non ricondividere più" -#: src/Object/Post.php:492 +#: src/Object/Post.php:478 #, php-format msgid "%s (Received %s)" msgstr "%s (Ricevuto %s)" -#: src/Object/Post.php:498 +#: src/Object/Post.php:484 msgid "Comment this item on your system" msgstr "Commenta questo oggetto sul tuo sistema" -#: src/Object/Post.php:498 +#: src/Object/Post.php:484 msgid "Remote comment" msgstr "Commento remoto" -#: src/Object/Post.php:520 +#: src/Object/Post.php:506 msgid "Share via ..." msgstr "" -#: src/Object/Post.php:520 +#: src/Object/Post.php:506 msgid "Share via external services" msgstr "" -#: src/Object/Post.php:527 +#: src/Object/Post.php:513 msgid "Unknown parent" msgstr "" -#: src/Object/Post.php:531 +#: src/Object/Post.php:517 #, php-format msgid "in reply to %s" msgstr "" -#: src/Object/Post.php:533 +#: src/Object/Post.php:519 msgid "Parent is probably private or not federated." msgstr "" -#: src/Object/Post.php:557 +#: src/Object/Post.php:543 msgid "to" msgstr "a" -#: src/Object/Post.php:558 +#: src/Object/Post.php:544 msgid "via" msgstr "via" -#: src/Object/Post.php:559 +#: src/Object/Post.php:545 msgid "Wall-to-Wall" msgstr "Da bacheca a bacheca" -#: src/Object/Post.php:560 +#: src/Object/Post.php:546 msgid "via Wall-To-Wall:" msgstr "da bacheca a bacheca" -#: src/Object/Post.php:613 +#: src/Object/Post.php:599 #, php-format msgid "Reply to %s" msgstr "Rispondi a %s" -#: src/Object/Post.php:616 +#: src/Object/Post.php:602 msgid "More" msgstr "Mostra altro" -#: src/Object/Post.php:635 +#: src/Object/Post.php:621 msgid "Notifier task is pending" msgstr "L'attività di notifica è in attesa" -#: src/Object/Post.php:636 +#: src/Object/Post.php:622 msgid "Delivery to remote servers is pending" msgstr "La consegna ai server remoti è in attesa" -#: src/Object/Post.php:637 +#: src/Object/Post.php:623 msgid "Delivery to remote servers is underway" msgstr "La consegna ai server remoti è in corso" -#: src/Object/Post.php:638 +#: src/Object/Post.php:624 msgid "Delivery to remote servers is mostly done" msgstr "La consegna ai server remoti è quasi completata" -#: src/Object/Post.php:639 +#: src/Object/Post.php:625 msgid "Delivery to remote servers is done" msgstr "La consegna ai server remoti è completata" -#: src/Object/Post.php:661 +#: src/Object/Post.php:647 #, php-format msgid "%d comment" msgid_plural "%d comments" @@ -12557,480 +12560,467 @@ msgstr[0] "%d commento" msgstr[1] "%d commenti" msgstr[2] "%d commenti" -#: src/Object/Post.php:662 +#: src/Object/Post.php:648 msgid "Show more" msgstr "Mostra di più" -#: src/Object/Post.php:663 +#: src/Object/Post.php:649 msgid "Show fewer" msgstr "Mostra di meno" -#: src/Object/Post.php:700 +#: src/Object/Post.php:686 #, php-format msgid "Reshared by: %s" msgstr "" -#: src/Object/Post.php:705 +#: src/Object/Post.php:691 #, php-format msgid "Viewed by: %s" msgstr "" -#: src/Object/Post.php:710 +#: src/Object/Post.php:696 #, php-format msgid "Read by: %s" msgstr "" -#: src/Object/Post.php:715 +#: src/Object/Post.php:701 #, php-format msgid "Liked by: %s" msgstr "" -#: src/Object/Post.php:720 +#: src/Object/Post.php:706 #, php-format msgid "Disliked by: %s" msgstr "" -#: src/Object/Post.php:725 +#: src/Object/Post.php:711 #, php-format msgid "Attended by: %s" msgstr "" -#: src/Object/Post.php:730 +#: src/Object/Post.php:716 #, php-format msgid "Maybe attended by: %s" msgstr "" -#: src/Object/Post.php:735 +#: src/Object/Post.php:721 #, php-format msgid "Not attended by: %s" msgstr "" -#: src/Object/Post.php:740 +#: src/Object/Post.php:726 #, php-format msgid "Commented by: %s" msgstr "" -#: src/Object/Post.php:745 +#: src/Object/Post.php:731 #, php-format msgid "Reacted with %s by: %s" msgstr "" -#: src/Object/Post.php:768 +#: src/Object/Post.php:754 #, php-format msgid "Quote shared by: %s" msgstr "" -#: src/Protocol/ActivityPub/Receiver.php:568 +#: src/Protocol/ActivityPub/Receiver.php:557 msgid "Chat" msgstr "" -#: src/Protocol/Delivery.php:544 +#: src/Protocol/Delivery.php:530 msgid "(no subject)" msgstr "(nessun oggetto)" -#: src/Protocol/OStatus.php:1392 -#, php-format -msgid "%s is now following %s." -msgstr "%s sta seguendo %s" - -#: src/Protocol/OStatus.php:1393 -msgid "following" -msgstr "segue" - -#: src/Protocol/OStatus.php:1396 -#, php-format -msgid "%s stopped following %s." -msgstr "%s ha smesso di seguire %s" - -#: src/Protocol/OStatus.php:1397 -msgid "stopped following" -msgstr "tolto dai seguiti" - -#: src/Render/FriendicaSmartyEngine.php:56 +#: src/Render/FriendicaSmartyEngine.php:42 #, php-format msgid "The folder %s must be writable by webserver." msgstr "" -#: src/Security/Authentication.php:216 +#: src/Security/Authentication.php:200 msgid "Login failed." msgstr "Accesso fallito." -#: src/Security/Authentication.php:261 +#: src/Security/Authentication.php:245 msgid "Login failed. Please check your credentials." msgstr "Accesso non riuscito. Per favore controlla le tue credenziali." -#: src/Security/Authentication.php:375 +#: src/Security/Authentication.php:359 #, php-format msgid "Welcome %s" msgstr "Benvenuto %s" -#: src/Security/Authentication.php:376 +#: src/Security/Authentication.php:360 msgid "Please upload a profile photo." msgstr "Carica una foto per il profilo." -#: src/Util/EMailer/MailBuilder.php:260 +#: src/Security/OpenWebAuth.php:149 +#, php-format +msgid "OpenWebAuth: %1$s welcomes %2$s" +msgstr "OpenWebAuth: %1$s da il benvenuto a %2$s" + +#: src/Util/EMailer/MailBuilder.php:246 msgid "Friendica Notification" msgstr "Notifica Friendica" -#: src/Util/EMailer/NotifyMailBuilder.php:78 -#: src/Util/EMailer/SystemMailBuilder.php:54 +#: src/Util/EMailer/NotifyMailBuilder.php:64 +#: src/Util/EMailer/SystemMailBuilder.php:40 #, php-format msgid "%1$s, %2$s Administrator" msgstr "%1$s, %2$s Amministratore" -#: src/Util/EMailer/NotifyMailBuilder.php:80 -#: src/Util/EMailer/SystemMailBuilder.php:56 +#: src/Util/EMailer/NotifyMailBuilder.php:66 +#: src/Util/EMailer/SystemMailBuilder.php:42 #, php-format msgid "%s Administrator" msgstr "%s Amministratore" -#: src/Util/EMailer/NotifyMailBuilder.php:193 -#: src/Util/EMailer/NotifyMailBuilder.php:217 -#: src/Util/EMailer/SystemMailBuilder.php:101 -#: src/Util/EMailer/SystemMailBuilder.php:118 +#: src/Util/EMailer/NotifyMailBuilder.php:179 +#: src/Util/EMailer/NotifyMailBuilder.php:203 +#: src/Util/EMailer/SystemMailBuilder.php:87 +#: src/Util/EMailer/SystemMailBuilder.php:104 msgid "thanks" msgstr "grazie" -#: src/Util/Temporal.php:172 +#: src/Util/Temporal.php:158 msgid "YYYY-MM-DD or MM-DD" msgstr "AAAA-MM-GG o MM-GG" -#: src/Util/Temporal.php:280 +#: src/Util/Temporal.php:266 #, php-format msgid "Time zone: %s Change in Settings" msgstr "" -#: src/Util/Temporal.php:320 src/Util/Temporal.php:329 +#: src/Util/Temporal.php:306 src/Util/Temporal.php:315 msgid "never" msgstr "mai" -#: src/Util/Temporal.php:343 +#: src/Util/Temporal.php:329 msgid "less than a second ago" msgstr "meno di un secondo fa" -#: src/Util/Temporal.php:352 +#: src/Util/Temporal.php:338 msgid "year" msgstr "anno" -#: src/Util/Temporal.php:352 +#: src/Util/Temporal.php:338 msgid "years" msgstr "anni" -#: src/Util/Temporal.php:353 +#: src/Util/Temporal.php:339 msgid "months" msgstr "mesi" -#: src/Util/Temporal.php:354 +#: src/Util/Temporal.php:340 msgid "weeks" msgstr "settimane" -#: src/Util/Temporal.php:355 +#: src/Util/Temporal.php:341 msgid "days" msgstr "giorni" -#: src/Util/Temporal.php:356 +#: src/Util/Temporal.php:342 msgid "hour" msgstr "ora" -#: src/Util/Temporal.php:356 +#: src/Util/Temporal.php:342 msgid "hours" msgstr "ore" -#: src/Util/Temporal.php:357 +#: src/Util/Temporal.php:343 msgid "minute" msgstr "minuto" -#: src/Util/Temporal.php:357 +#: src/Util/Temporal.php:343 msgid "minutes" msgstr "minuti" -#: src/Util/Temporal.php:358 +#: src/Util/Temporal.php:344 msgid "second" msgstr "secondo" -#: src/Util/Temporal.php:358 +#: src/Util/Temporal.php:344 msgid "seconds" msgstr "secondi" -#: src/Util/Temporal.php:367 +#: src/Util/Temporal.php:353 #, php-format msgid "in %1$d %2$s" msgstr "in %1$d %2$s" -#: src/Util/Temporal.php:370 +#: src/Util/Temporal.php:356 #, php-format msgid "%1$d %2$s ago" msgstr "%1$d %2$s fa" -#: src/Worker/PushSubscription.php:110 +#: src/Worker/PushSubscription.php:96 msgid "Notification from Friendica" msgstr "" -#: src/Worker/PushSubscription.php:111 +#: src/Worker/PushSubscription.php:97 msgid "Empty Post" msgstr "" -#: view/theme/duepuntozero/config.php:68 +#: view/theme/duepuntozero/config.php:56 msgid "default" msgstr "predefinito" -#: view/theme/duepuntozero/config.php:69 +#: view/theme/duepuntozero/config.php:57 msgid "greenzero" msgstr "greenzero" -#: view/theme/duepuntozero/config.php:70 +#: view/theme/duepuntozero/config.php:58 msgid "purplezero" msgstr "purplezero" -#: view/theme/duepuntozero/config.php:71 +#: view/theme/duepuntozero/config.php:59 msgid "easterbunny" msgstr "easterbunny" -#: view/theme/duepuntozero/config.php:72 +#: view/theme/duepuntozero/config.php:60 msgid "darkzero" msgstr "darkzero" -#: view/theme/duepuntozero/config.php:73 +#: view/theme/duepuntozero/config.php:61 msgid "comix" msgstr "comix" -#: view/theme/duepuntozero/config.php:74 +#: view/theme/duepuntozero/config.php:62 msgid "slackr" msgstr "slackr" -#: view/theme/duepuntozero/config.php:87 +#: view/theme/duepuntozero/config.php:75 msgid "Variations" msgstr "Varianti" -#: view/theme/frio/config.php:146 +#: view/theme/frio/config.php:134 msgid "Note" msgstr "Note" -#: view/theme/frio/config.php:146 +#: view/theme/frio/config.php:134 msgid "Check image permissions if all users are allowed to see the image" msgstr "Controlla i permessi dell'immagine che tutti gli utenti possano vederla" -#: view/theme/frio/config.php:152 +#: view/theme/frio/config.php:140 msgid "Appearance" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Accent color" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Blue" msgstr "Blu" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Red" msgstr "Rosso" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Purple" msgstr "Viola" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Green" msgstr "Verde" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Pink" msgstr "Rosa" -#: view/theme/frio/config.php:154 +#: view/theme/frio/config.php:142 msgid "Copy or paste schemestring" msgstr "Copia o incolla stringa di schema" -#: view/theme/frio/config.php:154 +#: view/theme/frio/config.php:142 msgid "" "You can copy this string to share your theme with others. Pasting here " "applies the schemestring" msgstr "Puoi copiare questa stringa per condividere il tuo tema con altri. Incollarla qui applica la stringa di schema" -#: view/theme/frio/config.php:155 +#: view/theme/frio/config.php:143 msgid "Navigation bar background color" msgstr "Colore di sfondo barra di navigazione" -#: view/theme/frio/config.php:156 +#: view/theme/frio/config.php:144 msgid "Navigation bar icon color " msgstr "Colore icona barra di navigazione" -#: view/theme/frio/config.php:157 +#: view/theme/frio/config.php:145 msgid "Link color" msgstr "Colore collegamento" -#: view/theme/frio/config.php:158 +#: view/theme/frio/config.php:146 msgid "Set the background color" msgstr "Imposta il colore di sfondo" -#: view/theme/frio/config.php:159 +#: view/theme/frio/config.php:147 msgid "Content background opacity" msgstr "Trasparenza sfondo contenuto" -#: view/theme/frio/config.php:160 +#: view/theme/frio/config.php:148 msgid "Set the background image" msgstr "Imposta l'immagine di sfondo" -#: view/theme/frio/config.php:161 +#: view/theme/frio/config.php:149 msgid "Background image style" msgstr "Stile immagine di sfondo" -#: view/theme/frio/config.php:164 +#: view/theme/frio/config.php:152 msgid "Always open Compose page" msgstr "" -#: view/theme/frio/config.php:164 +#: view/theme/frio/config.php:152 msgid "" "The New Post button always open the Compose page " "instead of the modal form. When this is disabled, the Compose page can be " "accessed with a middle click on the link or from the modal." msgstr "" -#: view/theme/frio/config.php:168 +#: view/theme/frio/config.php:156 msgid "Login page background image" msgstr "Immagine di sfondo per la pagina di accesso" -#: view/theme/frio/config.php:172 +#: view/theme/frio/config.php:160 msgid "Login page background color" msgstr "Colore di sfondo della pagina di accesso" -#: view/theme/frio/config.php:172 +#: view/theme/frio/config.php:160 msgid "Leave background image and color empty for theme defaults" msgstr "Lascia l'immagine e il colore di sfondo vuoti per usare le impostazioni predefinite del tema" -#: view/theme/frio/php/Image.php:39 +#: view/theme/frio/php/Image.php:27 msgid "Top Banner" msgstr "Top Banner" -#: view/theme/frio/php/Image.php:39 +#: view/theme/frio/php/Image.php:27 msgid "" "Resize image to the width of the screen and show background color below on " "long pages." msgstr "Scala l'immagine alla larghezza dello schermo e mostra un colore di sfondo sulle pagine lunghe." -#: view/theme/frio/php/Image.php:40 +#: view/theme/frio/php/Image.php:28 msgid "Full screen" msgstr "Schermo intero" -#: view/theme/frio/php/Image.php:40 +#: view/theme/frio/php/Image.php:28 msgid "" "Resize image to fill entire screen, clipping either the right or the bottom." msgstr "Scala l'immagine a schermo intero, tagliando a destra o sotto." -#: view/theme/frio/php/Image.php:41 +#: view/theme/frio/php/Image.php:29 msgid "Single row mosaic" msgstr "Mosaico a riga singola" -#: view/theme/frio/php/Image.php:41 +#: view/theme/frio/php/Image.php:29 msgid "" "Resize image to repeat it on a single row, either vertical or horizontal." msgstr "Scala l'immagine per ripeterla in una singola riga, verticale o orizzontale." -#: view/theme/frio/php/Image.php:42 +#: view/theme/frio/php/Image.php:30 msgid "Mosaic" msgstr "Mosaico" -#: view/theme/frio/php/Image.php:42 +#: view/theme/frio/php/Image.php:30 msgid "Repeat image to fill the screen." msgstr "Ripete l'immagine per riempire lo schermo." -#: view/theme/frio/php/default.php:82 view/theme/frio/php/standard.php:40 +#: view/theme/frio/php/default.php:70 view/theme/frio/php/standard.php:28 msgid "Skip to main content" msgstr "Salta al contenuto principale" -#: view/theme/frio/php/default.php:153 view/theme/frio/php/standard.php:75 +#: view/theme/frio/php/default.php:141 view/theme/frio/php/standard.php:63 msgid "Back to top" msgstr "Torna all'inizio" -#: view/theme/frio/php/scheme.php:105 +#: view/theme/frio/php/scheme.php:93 msgid "Light" msgstr "" -#: view/theme/frio/php/scheme.php:106 +#: view/theme/frio/php/scheme.php:94 msgid "Dark" msgstr "" -#: view/theme/frio/php/scheme.php:107 +#: view/theme/frio/php/scheme.php:95 msgid "Black" msgstr "" -#: view/theme/frio/php/scheme.php:118 +#: view/theme/frio/php/scheme.php:106 msgid "Custom" msgstr "Personalizzato" -#: view/theme/frio/theme.php:214 +#: view/theme/frio/theme.php:202 msgid "Guest" msgstr "Ospite" -#: view/theme/frio/theme.php:217 +#: view/theme/frio/theme.php:205 msgid "Visitor" msgstr "Visitatore" -#: view/theme/quattro/config.php:89 +#: view/theme/quattro/config.php:77 msgid "Alignment" msgstr "Allineamento" -#: view/theme/quattro/config.php:89 +#: view/theme/quattro/config.php:77 msgid "Left" msgstr "Sinistra" -#: view/theme/quattro/config.php:89 +#: view/theme/quattro/config.php:77 msgid "Center" msgstr "Centrato" -#: view/theme/quattro/config.php:90 +#: view/theme/quattro/config.php:78 msgid "Color scheme" msgstr "Schema colori" -#: view/theme/quattro/config.php:91 +#: view/theme/quattro/config.php:79 msgid "Posts font size" msgstr "Dimensione carattere messaggi" -#: view/theme/quattro/config.php:92 +#: view/theme/quattro/config.php:80 msgid "Textareas font size" msgstr "Dimensione carattere nelle aree di testo" -#: view/theme/vier/config.php:91 +#: view/theme/vier/config.php:79 msgid "Comma separated list of helper groups" msgstr "" -#: view/theme/vier/config.php:131 +#: view/theme/vier/config.php:119 msgid "don't show" msgstr "non mostrare" -#: view/theme/vier/config.php:131 +#: view/theme/vier/config.php:119 msgid "show" msgstr "mostra" -#: view/theme/vier/config.php:137 +#: view/theme/vier/config.php:125 msgid "Set style" msgstr "Imposta stile" -#: view/theme/vier/config.php:138 +#: view/theme/vier/config.php:126 msgid "Community Pages" msgstr "Pagine della Comunità" -#: view/theme/vier/config.php:139 view/theme/vier/theme.php:148 +#: view/theme/vier/config.php:127 view/theme/vier/theme.php:136 msgid "Community Profiles" msgstr "Profili Comunità" -#: view/theme/vier/config.php:140 +#: view/theme/vier/config.php:128 msgid "Help or @NewHere ?" msgstr "Serve aiuto? Sei nuovo?" -#: view/theme/vier/config.php:141 view/theme/vier/theme.php:319 +#: view/theme/vier/config.php:129 view/theme/vier/theme.php:307 msgid "Connect Services" msgstr "Servizi Connessi" -#: view/theme/vier/config.php:142 +#: view/theme/vier/config.php:130 msgid "Find Friends" msgstr "Trova Amici" -#: view/theme/vier/config.php:143 view/theme/vier/theme.php:175 +#: view/theme/vier/config.php:131 view/theme/vier/theme.php:163 msgid "Last users" msgstr "Ultimi utenti" -#: view/theme/vier/theme.php:234 +#: view/theme/vier/theme.php:222 msgid "Quick Start" msgstr "Partenza Rapida" diff --git a/view/lang/it/strings.php b/view/lang/it/strings.php index 615f624a07..a5c1fffeea 100644 --- a/view/lang/it/strings.php +++ b/view/lang/it/strings.php @@ -660,7 +660,6 @@ $a->strings['An author or name was not found.'] = 'Non è stato trovato un nome $a->strings['No browser URL could be matched to this address.'] = 'Nessun URL può essere associato a questo indirizzo.'; $a->strings['Unable to match @-style Identity Address with a known protocol or email contact.'] = 'Impossibile l\'indirizzo identità con un protocollo conosciuto o con un contatto email.'; $a->strings['Use mailto: in front of address to force email check.'] = 'Usa "mailto:" davanti all\'indirizzo per forzare un controllo nelle email.'; -$a->strings['The profile address specified belongs to a network which has been disabled on this site.'] = 'L\'indirizzo del profilo specificato appartiene a un network che è stato disabilitato su questo sito.'; $a->strings['Limited profile. This person will be unable to receive direct/personal notifications from you.'] = 'Profilo limitato. Questa persona non sarà in grado di ricevere notifiche personali da te.'; $a->strings['Unable to retrieve contact information.'] = 'Impossibile recuperare informazioni sul contatto.'; $a->strings['l F d, Y \@ g:i A \G\M\TP (e)'] = 'l F d, Y \@ g:i A \G\M\TP (e)'; @@ -685,7 +684,6 @@ $a->strings['Show map'] = 'Mostra mappa'; $a->strings['Hide map'] = 'Nascondi mappa'; $a->strings['%s\'s birthday'] = 'Compleanno di %s'; $a->strings['Happy Birthday %s'] = 'Buon compleanno %s'; -$a->strings['Detected languages in this post:\n%s'] = 'Lingue rilevate in questo messaggio:\n%s'; $a->strings['activity'] = 'attività'; $a->strings['comment'] = 'commento'; $a->strings['post'] = 'messaggio'; @@ -706,7 +704,6 @@ $a->strings['g A l F d'] = 'g A l d F'; $a->strings['[No description]'] = '[Nessuna descrizione]'; $a->strings['Event Reminders'] = 'Promemoria'; $a->strings['Upcoming events the next 7 days:'] = 'Eventi dei prossimi 7 giorni:'; -$a->strings['OpenWebAuth: %1$s welcomes %2$s'] = 'OpenWebAuth: %1$s da il benvenuto a %2$s'; $a->strings['Hometown:'] = 'Paese natale:'; $a->strings['Marital Status:'] = 'Stato Coniugale:'; $a->strings['With:'] = 'Con:'; @@ -1005,7 +1002,6 @@ $a->strings['When the database cleanup is enabled, this defines the days after w $a->strings['Lifespan of unclaimed items'] = 'Durata della vita di oggetti non reclamati'; $a->strings['When the database cleanup is enabled, this defines the days after which unclaimed remote items (mostly content from the relay) will be deleted. Default value is 90 days. Defaults to the general lifespan value of remote items if set to 0.'] = 'Quando la pulizia del database è abilitata, questa impostazione definisce dopo quanti giorni gli elementi remoti non reclamanti (principalmente il contenuto dai relay) sarà cancellato. Il valore di default è 90 giorni. Se impostato a 0, verrà utilizzato il valore della durata della vita degli elementi remoti.'; $a->strings['Lifespan of raw conversation data'] = 'Durata della vita di dati di conversazione grezzi'; -$a->strings['The conversation data is used for ActivityPub and OStatus, as well as for debug purposes. It should be safe to remove it after 14 days, default is 90 days.'] = 'I dati di conversazione sono usati per ActivityPub e OStatus, come anche per necessità di debug. Dovrebbe essere sicuro rimuoverli dopo 14 giorni. Il default è 90 giorni.'; $a->strings['Maximum numbers of comments per post'] = 'Numero massimo di commenti per messaggio'; $a->strings['How much comments should be shown for each post? Default value is 100.'] = 'Quanti commenti devono essere mostrati per ogni messaggio? Default : 100.'; $a->strings['Maximum numbers of comments per post on the display page'] = 'Numero massimo di commenti per messaggio sulla pagina di visualizzazione'; @@ -1228,7 +1224,6 @@ $a->strings['Submit Request'] = 'Invia richiesta'; $a->strings['You already added this contact.'] = 'Hai già aggiunto questo contatto.'; $a->strings['The network type couldn\'t be detected. Contact can\'t be added.'] = 'Non è possibile rilevare il tipo di rete. Il contatto non può essere aggiunto.'; $a->strings['Diaspora support isn\'t enabled. Contact can\'t be added.'] = 'Il supporto Diaspora non è abilitato. Il contatto non può essere aggiunto.'; -$a->strings['OStatus support is disabled. Contact can\'t be added.'] = 'Il supporto OStatus non è abilitato. Il contatto non può essere aggiunto.'; $a->strings['Please answer the following:'] = 'Rispondi:'; $a->strings['Your Identity Address:'] = 'L\'indirizzo della tua identità:'; $a->strings['Profile URL'] = 'URL Profilo'; @@ -1659,8 +1654,6 @@ $a->strings['Do you want to authorize this application to access your posts and $a->strings['Unsupported or missing response type'] = 'Tipo di risposta mancante o non supportato'; $a->strings['Incomplete request data'] = 'Dati richiesta incompleti'; $a->strings['Unsupported or missing grant type'] = 'Tipo di concessione mancante o non supportato'; -$a->strings['Resubscribing to OStatus contacts'] = 'Risottoscrivi i contatti OStatus'; -$a->strings['Keep this window open until done.'] = 'Tieni questa finestra aperta fino a che ha finito.'; $a->strings['Subscribing to contacts'] = 'Iscrizione a contatti'; $a->strings['No contact provided.'] = 'Nessun contatto disponibile.'; $a->strings['Couldn\'t fetch information for contact.'] = 'Non è stato possibile recuperare le informazioni del contatto.'; @@ -1672,6 +1665,7 @@ $a->strings['Done'] = 'Fatto'; $a->strings['success'] = 'successo'; $a->strings['failed'] = 'fallito'; $a->strings['ignored'] = 'ignorato'; +$a->strings['Keep this window open until done.'] = 'Tieni questa finestra aperta fino a che ha finito.'; $a->strings['The Photo with id %s is not available.'] = 'La Foto con id %s non è disponibile.'; $a->strings['Invalid photo with id %s.'] = 'Foto con id %s non valida.'; $a->strings['Edit post'] = 'Modifica messaggio'; @@ -1688,9 +1682,9 @@ $a->strings['Model not found'] = 'Modello non trovato'; $a->strings['Remote privacy information not available.'] = 'Informazioni remote sulla privacy non disponibili.'; $a->strings['Visible to:'] = 'Visibile a:'; $a->strings['No contacts.'] = 'Nessun contatto.'; -$a->strings['%s\'s timeline'] = 'la timeline di %s'; $a->strings['%s\'s posts'] = 'il messaggio di %s'; $a->strings['%s\'s comments'] = 'il commento di %s'; +$a->strings['%s\'s timeline'] = 'la timeline di %s'; $a->strings['Image exceeds size limit of %s'] = 'La dimensione dell\'immagine supera il limite di %s'; $a->strings['Image upload didn\'t complete, please try again'] = 'Caricamento dell\'immagine non completato. Prova di nuovo.'; $a->strings['Image file is missing'] = 'Il file dell\'immagine è mancante'; @@ -1891,7 +1885,6 @@ $a->strings['Description'] = 'Descrizione'; $a->strings['Add'] = 'Aggiungi'; $a->strings['Failed to connect with email account using the settings provided.'] = 'Impossibile collegarsi all\'account email con i parametri forniti.'; $a->strings['Diaspora (Socialhome, Hubzilla)'] = 'Diaspora (Socialhome, Hubzilla)'; -$a->strings['OStatus (GNU Social)'] = 'OStatus (GNU Social)'; $a->strings['Email access is disabled on this site.'] = 'L\'accesso email è disabilitato su questo sito.'; $a->strings['None'] = 'Nessuna'; $a->strings['General Social Media Settings'] = 'Impostazioni Media Sociali'; @@ -1903,7 +1896,6 @@ $a->strings['Attach the link title'] = 'Allega il titolo del collegamento'; $a->strings['When activated, the title of the attached link will be added as a title on posts to Diaspora. This is mostly helpful with "remote-self" contacts that share feed content.'] = 'Quando attivato, il titolo del collegamento allegato sarà aggiunto come titolo dei messaggi su Diaspora. Questo è più che altro utile con i contatti "remoti di sè stessi" che condividono il contenuto del flusso.'; $a->strings['Your legacy ActivityPub/GNU Social account'] = 'Il tuo vecchio account ActivityPub/GNU Social '; $a->strings['If you enter your old account name from an ActivityPub based system or your GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done.'] = 'Se inserisci il nome del tuo vecchio account su un sistema basato su ActivityPub o del tuo vecchio account GNU Social/Statusnet (nel formato utente@dominio.tld), i tuoi contatti verranno importati automaticamente. Il campo verrà svuotato una volta terminata l\'operazione.'; -$a->strings['Repair OStatus subscriptions'] = 'Ripara le iscrizioni OStatus'; $a->strings['Email/Mailbox Setup'] = 'Impostazioni email'; $a->strings['If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox.'] = 'Se vuoi comunicare con i contatti email usando questo servizio, specifica come collegarti alla tua casella di posta. (opzionale)'; $a->strings['Last successful email check:'] = 'Ultimo controllo email eseguito con successo:'; @@ -2163,7 +2155,6 @@ $a->strings['%s commented on %s\'s post'] = '%s ha commentato il messaggio di %s $a->strings['%s created a new post'] = '%s a creato un nuovo messaggio'; $a->strings['Friend Suggestion'] = 'Amico suggerito'; $a->strings['Friend/Connect Request'] = 'Richiesta amicizia/connessione'; -$a->strings['New Follower'] = 'Qualcuno inizia a seguirti'; $a->strings['[Friendica:Notify]'] = '[Friendica:Notifica]'; $a->strings['%s New mail received at %s'] = '%s Nuova mail ricevuta su %s'; $a->strings['%1$s sent you a new private message at %2$s.'] = '%1$s ti ha inviato un nuovo messaggio privato su %2$s.'; @@ -2261,14 +2252,11 @@ $a->strings['%d comment'] = [ $a->strings['Show more'] = 'Mostra di più'; $a->strings['Show fewer'] = 'Mostra di meno'; $a->strings['(no subject)'] = '(nessun oggetto)'; -$a->strings['%s is now following %s.'] = '%s sta seguendo %s'; -$a->strings['following'] = 'segue'; -$a->strings['%s stopped following %s.'] = '%s ha smesso di seguire %s'; -$a->strings['stopped following'] = 'tolto dai seguiti'; $a->strings['Login failed.'] = 'Accesso fallito.'; $a->strings['Login failed. Please check your credentials.'] = 'Accesso non riuscito. Per favore controlla le tue credenziali.'; $a->strings['Welcome %s'] = 'Benvenuto %s'; $a->strings['Please upload a profile photo.'] = 'Carica una foto per il profilo.'; +$a->strings['OpenWebAuth: %1$s welcomes %2$s'] = 'OpenWebAuth: %1$s da il benvenuto a %2$s'; $a->strings['Friendica Notification'] = 'Notifica Friendica'; $a->strings['%1$s, %2$s Administrator'] = '%1$s, %2$s Amministratore'; $a->strings['%s Administrator'] = '%s Amministratore'; diff --git a/view/lang/ja/messages.po b/view/lang/ja/messages.po index 91064de916..3d6576e823 100644 --- a/view/lang/ja/messages.po +++ b/view/lang/ja/messages.po @@ -1,8 +1,7 @@ # FRIENDICA Distributed Social Network -# SPDX-FileCopyrightText: Copyright (C) 2010-2024, the Friendica project -# -# SPDX-License-Identifier: AGPL-3.0-or-later -# +# Copyright (C) 2010-2024, the Friendica project +# This file is distributed under the same license as the Friendica package. +# # Translators: # Antron Samuraiupload_max_filesize
is set to %s (%s byte)"
msgstr ""
-#: src/Module/Admin/Site.php:497
+#: src/Module/Admin/Site.php:489
msgid "Maximum image length"
msgstr "最大画像長"
-#: src/Module/Admin/Site.php:497
+#: src/Module/Admin/Site.php:489
msgid ""
"Maximum length in pixels of the longest side of uploaded images. Default is "
"-1, which means no limits."
msgstr "アップロードされた画像の最長辺のピクセル単位の最大長。デフォルトは-1で、制限がないことを意味します。"
-#: src/Module/Admin/Site.php:498
+#: src/Module/Admin/Site.php:490
msgid "JPEG image quality"
msgstr "JPEG画像品質"
-#: src/Module/Admin/Site.php:498
+#: src/Module/Admin/Site.php:490
msgid ""
"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
"100, which is full quality."
msgstr "アップロードされたJPEGSは、この品質設定[0-100]で保存されます。デフォルトは100で、完全な品質です。"
-#: src/Module/Admin/Site.php:500
+#: src/Module/Admin/Site.php:491
+msgid "Maximum media file size"
+msgstr ""
+
+#: src/Module/Admin/Site.php:491
+#, php-format
+msgid ""
+"Maximum size in bytes of uploaded media files. Default is 0, which means no limits. You can put k, m, or g behind the desired value for KiB, MiB, GiB, respectively.\n"
+"\t\t\t\t\t\t\t\t\t\t\t\t\tThe value of upload_max_filesize
in your PHP.ini
needs be set to at least the desired limit.\n"
+"\t\t\t\t\t\t\t\t\t\t\t\t\tCurrently upload_max_filesize
is set to %s (%s byte)"
+msgstr ""
+
+#: src/Module/Admin/Site.php:496
msgid "Register policy"
msgstr "登録ポリシー"
-#: src/Module/Admin/Site.php:501
+#: src/Module/Admin/Site.php:497
msgid "Maximum Users"
msgstr ""
-#: src/Module/Admin/Site.php:501
+#: src/Module/Admin/Site.php:497
msgid ""
"If defined, the register policy is automatically closed when the given "
"number of users is reached and reopens the registry when the number drops "
@@ -4700,167 +4717,167 @@ msgid ""
"not when the policy is set to approval."
msgstr ""
-#: src/Module/Admin/Site.php:502
+#: src/Module/Admin/Site.php:498
msgid "Maximum Daily Registrations"
msgstr "毎日の最大登録数"
-#: src/Module/Admin/Site.php:502
+#: src/Module/Admin/Site.php:498
msgid ""
"If registration is permitted above, this sets the maximum number of new user"
" registrations to accept per day. If register is set to closed, this "
"setting has no effect."
msgstr "上記で登録が許可されている場合、これは1日に受け入れる新しいユーザー登録の最大数を設定します。レジスタがクローズに設定されている場合、この設定は効果がありません。"
-#: src/Module/Admin/Site.php:503
+#: src/Module/Admin/Site.php:499
msgid "Register text"
msgstr "登録テキスト"
-#: src/Module/Admin/Site.php:503
+#: src/Module/Admin/Site.php:499
msgid ""
"Will be displayed prominently on the registration page. You can use BBCode "
"here."
msgstr "登録ページに目立つように表示されます。ここでBBCodeを使用できます。"
-#: src/Module/Admin/Site.php:504
+#: src/Module/Admin/Site.php:500
msgid "Forbidden Nicknames"
msgstr "禁止されたニックネーム"
-#: src/Module/Admin/Site.php:504
+#: src/Module/Admin/Site.php:500
msgid ""
"Comma separated list of nicknames that are forbidden from registration. "
"Preset is a list of role names according RFC 2142."
msgstr "登録が禁止されているニックネームのカンマ区切りリスト。プリセットは、RFC 2142に基づくロール名のリストです。"
-#: src/Module/Admin/Site.php:505
+#: src/Module/Admin/Site.php:501
msgid "Accounts abandoned after x days"
msgstr "x日の間 放置されたアカウント"
-#: src/Module/Admin/Site.php:505
+#: src/Module/Admin/Site.php:501
msgid ""
"Will not waste system resources polling external sites for abandonded "
"accounts. Enter 0 for no time limit."
msgstr "放置アカウントの外部サイトについてポーリングを停止しシステムリソースを節約します。時間制限なしの場合は0を入力します。"
-#: src/Module/Admin/Site.php:506
+#: src/Module/Admin/Site.php:502
msgid "Allowed friend domains"
msgstr "許可された友達ドメイン"
-#: src/Module/Admin/Site.php:506
+#: src/Module/Admin/Site.php:502
msgid ""
"Comma separated list of domains which are allowed to establish friendships "
"with this site. Wildcards are accepted. Empty to allow any domains"
msgstr "このサイトとの友達関係を確立できるドメインのカンマ区切りリスト。ワイルドカードが使用できます。すべてのドメインを許可するには空白にしてください。"
-#: src/Module/Admin/Site.php:507
+#: src/Module/Admin/Site.php:503
msgid "Allowed email domains"
msgstr "許可されたメールドメイン"
-#: src/Module/Admin/Site.php:507
+#: src/Module/Admin/Site.php:503
msgid ""
"Comma separated list of domains which are allowed in email addresses for "
"registrations to this site. Wildcards are accepted. Empty to allow any "
"domains"
msgstr "このサイトへの登録用の電子メールアドレスで許可されるドメインのカンマ区切りリスト。ワイルドカードが使用できます。すべてのドメインを許可するには空白にしてください。"
-#: src/Module/Admin/Site.php:508
+#: src/Module/Admin/Site.php:504
msgid "Disallowed email domains"
msgstr ""
-#: src/Module/Admin/Site.php:508
+#: src/Module/Admin/Site.php:504
msgid ""
"Comma separated list of domains which are rejected as email addresses for "
"registrations to this site. Wildcards are accepted."
msgstr ""
-#: src/Module/Admin/Site.php:509
+#: src/Module/Admin/Site.php:505
msgid "No OEmbed rich content"
msgstr "OEmbed リッチコンテンツなし"
-#: src/Module/Admin/Site.php:509
+#: src/Module/Admin/Site.php:505
msgid ""
"Don't show the rich content (e.g. embedded PDF), except from the domains "
"listed below."
msgstr "以下にリストされているドメインを除き、リッチコンテンツ(埋め込みPDFなど)を表示しないでください。"
-#: src/Module/Admin/Site.php:510
+#: src/Module/Admin/Site.php:506
msgid "Trusted third-party domains"
msgstr ""
-#: src/Module/Admin/Site.php:510
+#: src/Module/Admin/Site.php:506
msgid ""
"Comma separated list of domains from which content is allowed to be embedded"
" in posts like with OEmbed. All sub-domains of the listed domains are "
"allowed as well."
msgstr ""
-#: src/Module/Admin/Site.php:511
+#: src/Module/Admin/Site.php:507
msgid "Block public"
msgstr "一般公開をブロック"
-#: src/Module/Admin/Site.php:511
+#: src/Module/Admin/Site.php:507
msgid ""
"Check to block public access to all otherwise public personal pages on this "
"site unless you are currently logged in."
msgstr "このサイトの一般公開済み個人ページを除き、すべてのページで非ログイン状態のアクセスをブロックするには、ここをチェックします。"
-#: src/Module/Admin/Site.php:512
+#: src/Module/Admin/Site.php:508
msgid "Force publish"
msgstr "公開を強制する"
-#: src/Module/Admin/Site.php:512
+#: src/Module/Admin/Site.php:508
msgid ""
"Check to force all profiles on this site to be listed in the site directory."
msgstr "このサイトのすべてのプロフィールがサイトディレクトリにリストされるように強制するには、チェックします。"
-#: src/Module/Admin/Site.php:512
+#: src/Module/Admin/Site.php:508
msgid "Enabling this may violate privacy laws like the GDPR"
msgstr "これを有効にすると、GDPRなどのプライバシー法に違反する可能性があります。"
-#: src/Module/Admin/Site.php:513
+#: src/Module/Admin/Site.php:509
msgid "Global directory URL"
msgstr "グローバルディレクトリURL"
-#: src/Module/Admin/Site.php:513
+#: src/Module/Admin/Site.php:509
msgid ""
"URL to the global directory. If this is not set, the global directory is "
"completely unavailable to the application."
msgstr "グローバルディレクトリへのURL。これが設定されていない場合、グローバルディレクトリはアプリケーションで全く利用できなくなります。"
-#: src/Module/Admin/Site.php:514
+#: src/Module/Admin/Site.php:510
msgid "Private posts by default for new users"
msgstr "新規ユーザー向けの 既定のプライベート投稿"
-#: src/Module/Admin/Site.php:514
+#: src/Module/Admin/Site.php:510
msgid ""
"Set default post permissions for all new members to the default privacy "
"circle rather than public."
msgstr ""
-#: src/Module/Admin/Site.php:515
+#: src/Module/Admin/Site.php:511
msgid "Don't include post content in email notifications"
msgstr "メール通知に投稿本文を含めないでください"
-#: src/Module/Admin/Site.php:515
+#: src/Module/Admin/Site.php:511
msgid ""
"Don't include the content of a post/comment/private message/etc. in the "
"email notifications that are sent out from this site, as a privacy measure."
msgstr "プライバシー対策として、このサイトから送信されるメール通知に投稿/コメント/プライベートメッセージなどのコンテンツを含めないでください。"
-#: src/Module/Admin/Site.php:516
+#: src/Module/Admin/Site.php:512
msgid "Disallow public access to addons listed in the apps menu."
msgstr "アプリメニューにリストされているアドオンへの公開アクセスを許可しません。"
-#: src/Module/Admin/Site.php:516
+#: src/Module/Admin/Site.php:512
msgid ""
"Checking this box will restrict addons listed in the apps menu to members "
"only."
msgstr "このチェックボックスをオンにすると、アプリメニューにリストされているアドオンがメンバーのみに制限されます。"
-#: src/Module/Admin/Site.php:517
+#: src/Module/Admin/Site.php:513
msgid "Don't embed private images in posts"
msgstr "投稿にプライベート画像を埋め込まないでください"
-#: src/Module/Admin/Site.php:517
+#: src/Module/Admin/Site.php:513
msgid ""
"Don't replace locally-hosted private photos in posts with an embedded copy "
"of the image. This means that contacts who receive posts containing private "
@@ -4868,11 +4885,11 @@ msgid ""
"while."
msgstr "投稿内のローカルでホストされているプライベート写真を画像の埋め込みコピーで置き換えないでください。つまり、プライベート写真を含む投稿を受け取ったコンタクトは、各画像を認証して読み込む必要があり、時間がかかる場合があります。"
-#: src/Module/Admin/Site.php:518
+#: src/Module/Admin/Site.php:514
msgid "Explicit Content"
msgstr "明示的なコンテンツ"
-#: src/Module/Admin/Site.php:518
+#: src/Module/Admin/Site.php:514
msgid ""
"Set this to announce that your node is used mostly for explicit content that"
" might not be suited for minors. This information will be published in the "
@@ -4881,329 +4898,319 @@ msgid ""
"will be shown at the user registration page."
msgstr "これを設定して、このノードが主に未成年者には適さない可能性のある露骨なコンテンツを目的とすることを通知します。この情報はノード情報で公開され、たとえばグローバルディレクトリによって使用され、参加するノードのリストからノードをフィルタリングします。さらに、これに関するメモがユーザー登録ページに表示されます。"
-#: src/Module/Admin/Site.php:519
+#: src/Module/Admin/Site.php:515
msgid "Only local search"
msgstr ""
-#: src/Module/Admin/Site.php:519
+#: src/Module/Admin/Site.php:515
msgid ""
"Blocks search for users who are not logged in to prevent crawlers from "
"blocking your system."
msgstr ""
-#: src/Module/Admin/Site.php:520
+#: src/Module/Admin/Site.php:516
msgid "Blocked tags for trending tags"
msgstr ""
-#: src/Module/Admin/Site.php:520
+#: src/Module/Admin/Site.php:516
msgid ""
"Comma separated list of hashtags that shouldn't be displayed in the trending"
" tags."
msgstr ""
-#: src/Module/Admin/Site.php:521
+#: src/Module/Admin/Site.php:517
msgid "Cache contact avatars"
msgstr ""
-#: src/Module/Admin/Site.php:521
+#: src/Module/Admin/Site.php:517
msgid ""
"Locally store the avatar pictures of the contacts. This uses a lot of "
"storage space but it increases the performance."
msgstr ""
-#: src/Module/Admin/Site.php:522
+#: src/Module/Admin/Site.php:518
msgid "Allow Users to set remote_self"
msgstr "ユーザーがremote_selfを設定できるようにする"
-#: src/Module/Admin/Site.php:522
+#: src/Module/Admin/Site.php:518
msgid ""
"With checking this, every user is allowed to mark every contact as a "
"remote_self in the repair contact dialog. Setting this flag on a contact "
"causes mirroring every posting of that contact in the users stream."
msgstr "これをチェックすると、すべてのユーザーがコンタクトの修復ダイアログですべてのコンタクトをremote_selfとしてマークできます。コンタクトにこのフラグを設定すると、ユーザーストリームでそのコンタクトのすべての投稿がミラーリングされます。"
-#: src/Module/Admin/Site.php:523
+#: src/Module/Admin/Site.php:519
msgid "Allow Users to set up relay channels"
msgstr ""
-#: src/Module/Admin/Site.php:523
+#: src/Module/Admin/Site.php:519
msgid ""
"If enabled, it is possible to create relay users that are used to reshare "
"content based on user defined channels."
msgstr ""
-#: src/Module/Admin/Site.php:524
+#: src/Module/Admin/Site.php:520
msgid "Adjust the feed poll frequency"
msgstr ""
-#: src/Module/Admin/Site.php:524
+#: src/Module/Admin/Site.php:520
msgid "Automatically detect and set the best feed poll frequency."
msgstr ""
-#: src/Module/Admin/Site.php:525
+#: src/Module/Admin/Site.php:521
msgid "Minimum poll interval"
msgstr ""
-#: src/Module/Admin/Site.php:525
+#: src/Module/Admin/Site.php:521
msgid ""
"Minimal distance in minutes between two polls for mail and feed contacts. "
"Reasonable values are between 1 and 59."
msgstr ""
-#: src/Module/Admin/Site.php:526
+#: src/Module/Admin/Site.php:522
msgid "Enable multiple registrations"
msgstr ""
-#: src/Module/Admin/Site.php:526
+#: src/Module/Admin/Site.php:522
msgid "Enable users to register additional accounts for use as pages."
msgstr ""
-#: src/Module/Admin/Site.php:527
+#: src/Module/Admin/Site.php:523
msgid "Enable OpenID"
msgstr ""
-#: src/Module/Admin/Site.php:527
+#: src/Module/Admin/Site.php:523
msgid "Enable OpenID support for registration and logins."
msgstr ""
-#: src/Module/Admin/Site.php:528
+#: src/Module/Admin/Site.php:524
msgid "Enable full name check"
msgstr ""
-#: src/Module/Admin/Site.php:528
+#: src/Module/Admin/Site.php:524
msgid ""
"Prevents users from registering with a display name with fewer than two "
"parts separated by spaces."
msgstr ""
-#: src/Module/Admin/Site.php:529
+#: src/Module/Admin/Site.php:525
msgid "Email administrators on new registration"
msgstr ""
-#: src/Module/Admin/Site.php:529
+#: src/Module/Admin/Site.php:525
msgid ""
"If enabled and the system is set to an open registration, an email for each "
"new registration is sent to the administrators."
msgstr ""
-#: src/Module/Admin/Site.php:530
+#: src/Module/Admin/Site.php:526
msgid "Community pages for visitors"
msgstr "訪問者向けのコミュニティページ"
-#: src/Module/Admin/Site.php:530
+#: src/Module/Admin/Site.php:526
msgid ""
"Which community pages should be available for visitors. Local users always "
"see both pages."
msgstr "訪問者が利用できるコミュニティページ。ローカルユーザーには常に両方のページが表示されます。"
-#: src/Module/Admin/Site.php:531
+#: src/Module/Admin/Site.php:527
msgid "Posts per user on community page"
msgstr "コミュニティページのユーザーごとの投稿"
-#: src/Module/Admin/Site.php:531
+#: src/Module/Admin/Site.php:527
msgid ""
"The maximum number of posts per user on the local community page. This is "
"useful, when a single user floods the local community page."
msgstr ""
-#: src/Module/Admin/Site.php:532
+#: src/Module/Admin/Site.php:528
msgid "Posts per server on community page"
msgstr ""
-#: src/Module/Admin/Site.php:532
+#: src/Module/Admin/Site.php:528
msgid ""
"The maximum number of posts per server on the global community page. This is"
" useful, when posts from a single server flood the global community page."
msgstr ""
-#: src/Module/Admin/Site.php:534
+#: src/Module/Admin/Site.php:530
msgid "Enable Mail support"
msgstr ""
-#: src/Module/Admin/Site.php:534
+#: src/Module/Admin/Site.php:530
msgid ""
"Enable built-in mail support to poll IMAP folders and to reply via mail."
msgstr ""
-#: src/Module/Admin/Site.php:535
+#: src/Module/Admin/Site.php:531
msgid ""
"Mail support can't be enabled because the PHP IMAP module is not installed."
msgstr ""
-#: src/Module/Admin/Site.php:536
-msgid "Enable OStatus support"
-msgstr ""
-
-#: src/Module/Admin/Site.php:536
-msgid ""
-"Enable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
-"communications in OStatus are public."
-msgstr ""
-
-#: src/Module/Admin/Site.php:538
+#: src/Module/Admin/Site.php:533
msgid ""
"Diaspora support can't be enabled because Friendica was installed into a sub"
" directory."
msgstr "Friendicaがサブディレクトリにインストールされたため、Diasporaサポートを有効にできません。"
-#: src/Module/Admin/Site.php:539
+#: src/Module/Admin/Site.php:534
msgid "Enable Diaspora support"
msgstr "Diasporaサポートを有効にする"
-#: src/Module/Admin/Site.php:539
+#: src/Module/Admin/Site.php:534
msgid ""
"Enable built-in Diaspora network compatibility for communicating with "
"diaspora servers."
msgstr ""
-#: src/Module/Admin/Site.php:540
+#: src/Module/Admin/Site.php:535
msgid "Verify SSL"
msgstr "SSLを検証する"
-#: src/Module/Admin/Site.php:540
+#: src/Module/Admin/Site.php:535
msgid ""
"If you wish, you can turn on strict certificate checking. This will mean you"
" cannot connect (at all) to self-signed SSL sites."
msgstr "必要に応じて、厳密な証明書チェックをオンにすることができます。これは、自己署名SSLサイトに(まったく)接続できないことを意味します。"
-#: src/Module/Admin/Site.php:541
+#: src/Module/Admin/Site.php:536
msgid "Proxy user"
msgstr "プロキシユーザー"
-#: src/Module/Admin/Site.php:541
+#: src/Module/Admin/Site.php:536
msgid "User name for the proxy server."
msgstr ""
-#: src/Module/Admin/Site.php:542
+#: src/Module/Admin/Site.php:537
msgid "Proxy URL"
msgstr "プロキシURL"
-#: src/Module/Admin/Site.php:542
+#: src/Module/Admin/Site.php:537
msgid ""
"If you want to use a proxy server that Friendica should use to connect to "
"the network, put the URL of the proxy here."
msgstr ""
-#: src/Module/Admin/Site.php:543
+#: src/Module/Admin/Site.php:538
msgid "Network timeout"
msgstr "ネットワークタイムアウト"
-#: src/Module/Admin/Site.php:543
+#: src/Module/Admin/Site.php:538
msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
msgstr "値は秒単位です。無制限の場合は0に設定します(推奨されません)。"
-#: src/Module/Admin/Site.php:544
+#: src/Module/Admin/Site.php:539
msgid "Maximum Load Average"
msgstr "最大負荷平均"
-#: src/Module/Admin/Site.php:544
+#: src/Module/Admin/Site.php:539
#, php-format
msgid ""
"Maximum system load before delivery and poll processes are deferred - "
"default %d."
msgstr "このシステム 負荷/Load を超えると、配信・ポーリングプロセスの実行は延期されます。 - 既定の値は%dです。"
-#: src/Module/Admin/Site.php:545
+#: src/Module/Admin/Site.php:540
msgid "Minimal Memory"
msgstr "最小限のメモリ"
-#: src/Module/Admin/Site.php:545
+#: src/Module/Admin/Site.php:540
msgid ""
"Minimal free memory in MB for the worker. Needs access to /proc/meminfo - "
"default 0 (deactivated)."
msgstr "ワーカーの最小空きメモリ(MB)。 / proc / meminfoへのアクセスが必要-デフォルトは0(無効)。"
-#: src/Module/Admin/Site.php:546
+#: src/Module/Admin/Site.php:541
msgid "Periodically optimize tables"
msgstr ""
-#: src/Module/Admin/Site.php:546
+#: src/Module/Admin/Site.php:541
msgid "Periodically optimize tables like the cache and the workerqueue"
msgstr ""
-#: src/Module/Admin/Site.php:548
+#: src/Module/Admin/Site.php:543
msgid "Discover followers/followings from contacts"
msgstr ""
-#: src/Module/Admin/Site.php:548
+#: src/Module/Admin/Site.php:543
msgid ""
"If enabled, contacts are checked for their followers and following contacts."
msgstr ""
-#: src/Module/Admin/Site.php:549
+#: src/Module/Admin/Site.php:544
msgid "None - deactivated"
msgstr ""
-#: src/Module/Admin/Site.php:550
+#: src/Module/Admin/Site.php:545
msgid ""
"Local contacts - contacts of our local contacts are discovered for their "
"followers/followings."
msgstr ""
-#: src/Module/Admin/Site.php:551
+#: src/Module/Admin/Site.php:546
msgid ""
"Interactors - contacts of our local contacts and contacts who interacted on "
"locally visible postings are discovered for their followers/followings."
msgstr ""
-#: src/Module/Admin/Site.php:553
+#: src/Module/Admin/Site.php:548
msgid "Only update contacts/servers with local data"
msgstr ""
-#: src/Module/Admin/Site.php:553
+#: src/Module/Admin/Site.php:548
msgid ""
"If enabled, the system will only look for changes in contacts and servers "
"that engaged on this system by either being in a contact list of a user or "
"when posts or comments exists from the contact on this system."
msgstr ""
-#: src/Module/Admin/Site.php:554
+#: src/Module/Admin/Site.php:549
msgid "Synchronize the contacts with the directory server"
msgstr ""
-#: src/Module/Admin/Site.php:554
+#: src/Module/Admin/Site.php:549
msgid ""
"if enabled, the system will check periodically for new contacts on the "
"defined directory server."
msgstr ""
-#: src/Module/Admin/Site.php:556
+#: src/Module/Admin/Site.php:551
msgid "Discover contacts from other servers"
msgstr "他のサーバーからコンタクトを発見する"
-#: src/Module/Admin/Site.php:556
+#: src/Module/Admin/Site.php:551
msgid ""
"Periodically query other servers for contacts and servers that they know of."
" The system queries Friendica, Mastodon and Hubzilla servers. Keep it "
"deactivated on small machines to decrease the database size and load."
msgstr ""
-#: src/Module/Admin/Site.php:557
+#: src/Module/Admin/Site.php:552
msgid "Days between requery"
msgstr "再クエリの間隔"
-#: src/Module/Admin/Site.php:557
+#: src/Module/Admin/Site.php:552
msgid ""
"Number of days after which a server is requeried for their contacts and "
"servers it knows of. This is only used when the discovery is activated."
msgstr ""
-#: src/Module/Admin/Site.php:558
+#: src/Module/Admin/Site.php:553
msgid "Search the local directory"
msgstr "ローカルディレクトリを検索する"
-#: src/Module/Admin/Site.php:558
+#: src/Module/Admin/Site.php:553
msgid ""
"Search the local directory instead of the global directory. When searching "
"locally, every search will be executed on the global directory in the "
"background. This improves the search results when the search is repeated."
msgstr "グローバルディレクトリではなくローカルディレクトリを検索します。ローカルで検索する場合、すべての検索はバックグラウンドでグローバルディレクトリで実行されます。これにより、同じ検索を繰り返した場合の検索結果が改善されます。"
-#: src/Module/Admin/Site.php:560
+#: src/Module/Admin/Site.php:555
msgid "Publish server information"
msgstr "サーバー情報を公開する"
-#: src/Module/Admin/Site.php:560
+#: src/Module/Admin/Site.php:555
msgid ""
"If enabled, general server and usage data will be published. The data "
"contains the name and version of the server, number of users with public "
@@ -5211,50 +5218,50 @@ msgid ""
" href=\"http://the-federation.info/\">the-federation.info for details."
msgstr "有効にすると、一般的なサーバーと使用状況データが公開されます。データには、サーバーの名前とバージョン、パブリックプロフィールを持つユーザーの数、投稿の数、およびアクティブ化されたプロトコルとコネクタが含まれます。詳細については、 the-federation.info をご覧ください。"
-#: src/Module/Admin/Site.php:562
+#: src/Module/Admin/Site.php:557
msgid "Check upstream version"
msgstr "アップストリームバージョンを確認する"
-#: src/Module/Admin/Site.php:562
+#: src/Module/Admin/Site.php:557
msgid ""
"Enables checking for new Friendica versions at github. If there is a new "
"version, you will be informed in the admin panel overview."
msgstr "githubで新しいFriendicaバージョンのチェックを有効にします。新しいバージョンがある場合は、管理パネルの概要で通知されます。"
-#: src/Module/Admin/Site.php:563
+#: src/Module/Admin/Site.php:558
msgid "Suppress Tags"
msgstr "タグを非表示"
-#: src/Module/Admin/Site.php:563
+#: src/Module/Admin/Site.php:558
msgid "Suppress showing a list of hashtags at the end of the posting."
msgstr "投稿の最後にハッシュタグのリストを表示しないようにします。"
-#: src/Module/Admin/Site.php:564
+#: src/Module/Admin/Site.php:559
msgid "Clean database"
msgstr "データベースを消去"
-#: src/Module/Admin/Site.php:564
+#: src/Module/Admin/Site.php:559
msgid ""
"Remove old remote items, orphaned database records and old content from some"
" other helper tables."
msgstr "古いリモート項目、孤立したデータベースレコード、および古いコンテンツを他のヘルパーテーブルから削除します。"
-#: src/Module/Admin/Site.php:565
+#: src/Module/Admin/Site.php:560
msgid "Lifespan of remote items"
msgstr "リモート項目の寿命"
-#: src/Module/Admin/Site.php:565
+#: src/Module/Admin/Site.php:560
msgid ""
"When the database cleanup is enabled, this defines the days after which "
"remote items will be deleted. Own items, and marked or filed items are "
"always kept. 0 disables this behaviour."
msgstr "データベースのクリーンアップが有効な場合、これはリモート項目が削除されるまでの日数を定義します。自身の項目、およびマークまたはファイルされた項目は常に保持されます。 0はこの動作を無効にします。"
-#: src/Module/Admin/Site.php:566
+#: src/Module/Admin/Site.php:561
msgid "Lifespan of unclaimed items"
msgstr "請求されていない項目の寿命"
-#: src/Module/Admin/Site.php:566
+#: src/Module/Admin/Site.php:561
msgid ""
"When the database cleanup is enabled, this defines the days after which "
"unclaimed remote items (mostly content from the relay) will be deleted. "
@@ -5262,175 +5269,184 @@ msgid ""
"items if set to 0."
msgstr "データベースのクリーンアップが有効になっている場合、これは、要求されていないリモート項目(主に中継からのコンテンツ)が削除されるまでの日数を定義します。デフォルト値は90日です。 0に設定されている場合、リモート項目の一般的なライフスパン値がデフォルトになります。"
-#: src/Module/Admin/Site.php:567
+#: src/Module/Admin/Site.php:562
msgid "Lifespan of raw conversation data"
msgstr "Raw会話データの寿命"
-#: src/Module/Admin/Site.php:567
+#: src/Module/Admin/Site.php:562
msgid ""
-"The conversation data is used for ActivityPub and OStatus, as well as for "
-"debug purposes. It should be safe to remove it after 14 days, default is 90 "
-"days."
-msgstr "会話データは、ActivityPubおよびOStatusに使用されるほか、デバッグにも使用されます。 14日後に削除しても安全です。デフォルトは90日です。"
+"The conversation data is used for ActivityPub, as well as for debug "
+"purposes. It should be safe to remove it after 14 days, default is 90 days."
+msgstr ""
-#: src/Module/Admin/Site.php:568
+#: src/Module/Admin/Site.php:563
msgid "Maximum numbers of comments per post"
msgstr "投稿あたりのコメントの最大数"
-#: src/Module/Admin/Site.php:568
+#: src/Module/Admin/Site.php:563
msgid "How much comments should be shown for each post? Default value is 100."
msgstr "各投稿に表示されるコメントの数は?デフォルト値は100です。"
-#: src/Module/Admin/Site.php:569
+#: src/Module/Admin/Site.php:564
msgid "Maximum numbers of comments per post on the display page"
msgstr ""
-#: src/Module/Admin/Site.php:569
+#: src/Module/Admin/Site.php:564
msgid ""
"How many comments should be shown on the single view for each post? Default "
"value is 1000."
msgstr ""
-#: src/Module/Admin/Site.php:570
+#: src/Module/Admin/Site.php:565
msgid "Items per page"
msgstr ""
-#: src/Module/Admin/Site.php:570
+#: src/Module/Admin/Site.php:565
msgid ""
"Number of items per page in stream pages (network, community, "
"profile/contact statuses, search)."
msgstr ""
-#: src/Module/Admin/Site.php:571
+#: src/Module/Admin/Site.php:566
msgid "Items per page for mobile devices"
msgstr ""
-#: src/Module/Admin/Site.php:571
+#: src/Module/Admin/Site.php:566
msgid ""
"Number of items per page in stream pages (network, community, "
"profile/contact statuses, search) for mobile devices."
msgstr ""
-#: src/Module/Admin/Site.php:572
+#: src/Module/Admin/Site.php:567
msgid "Temp path"
msgstr "一時パス"
-#: src/Module/Admin/Site.php:572
+#: src/Module/Admin/Site.php:567
msgid ""
"If you have a restricted system where the webserver can't access the system "
"temp path, enter another path here."
msgstr "Webサーバーがシステムの一時パスにアクセスできない制限されたシステムがある場合は、ここに別のパスを入力します。"
-#: src/Module/Admin/Site.php:573
+#: src/Module/Admin/Site.php:568
msgid "Only search in tags"
msgstr "タグでのみ検索"
-#: src/Module/Admin/Site.php:573
+#: src/Module/Admin/Site.php:568
msgid "On large systems the text search can slow down the system extremely."
msgstr "大規模なシステムでは、テキスト検索によりシステムの速度が著しく低下する可能性があります。"
-#: src/Module/Admin/Site.php:574
+#: src/Module/Admin/Site.php:569
+msgid "Limited search scope"
+msgstr ""
+
+#: src/Module/Admin/Site.php:569
+msgid ""
+"If enabled, searches will only be performed in the data used for the "
+"channels and not in all posts."
+msgstr ""
+
+#: src/Module/Admin/Site.php:570
msgid "Maximum age of items in the search table"
msgstr ""
-#: src/Module/Admin/Site.php:574
+#: src/Module/Admin/Site.php:570
msgid ""
"Maximum age of items in the search table in days. Lower values will increase"
" the performance and reduce disk usage. 0 means no age restriction."
msgstr ""
-#: src/Module/Admin/Site.php:575
+#: src/Module/Admin/Site.php:571
msgid "Generate counts per contact circle when calculating network count"
msgstr ""
-#: src/Module/Admin/Site.php:575
+#: src/Module/Admin/Site.php:571
msgid ""
"On systems with users that heavily use contact circles the query can be very"
" expensive."
msgstr ""
-#: src/Module/Admin/Site.php:576
+#: src/Module/Admin/Site.php:572
msgid "Process \"view\" activities"
msgstr ""
-#: src/Module/Admin/Site.php:576
+#: src/Module/Admin/Site.php:572
msgid ""
"\"view\" activities are mostly geberated by Peertube systems. Per default "
"they are not processed for performance reasons. Only activate this option on"
" performant system."
msgstr ""
-#: src/Module/Admin/Site.php:577
+#: src/Module/Admin/Site.php:573
msgid "Days, after which a contact is archived"
msgstr ""
-#: src/Module/Admin/Site.php:577
+#: src/Module/Admin/Site.php:573
msgid ""
"Number of days that we try to deliver content or to update the contact data "
"before we archive a contact."
msgstr ""
-#: src/Module/Admin/Site.php:579
+#: src/Module/Admin/Site.php:575
msgid "Maximum number of parallel workers"
msgstr "並列ワーカーの最大数"
-#: src/Module/Admin/Site.php:579
+#: src/Module/Admin/Site.php:575
#, php-format
msgid ""
"On shared hosters set this to %d. On larger systems, values of %d are great."
" Default value is %d."
msgstr "共有ホスティング事業者では、これを%dに設定します。大規模なシステムでは、 %dの値は素晴らしいでしょう。既定の値は%dです。"
-#: src/Module/Admin/Site.php:580
+#: src/Module/Admin/Site.php:576
msgid "Maximum load for workers"
msgstr ""
-#: src/Module/Admin/Site.php:580
+#: src/Module/Admin/Site.php:576
msgid "Maximum load that causes a cooldown before each worker function call."
msgstr ""
-#: src/Module/Admin/Site.php:581
+#: src/Module/Admin/Site.php:577
msgid "Enable fastlane"
msgstr "fastlaneを有効にする"
-#: src/Module/Admin/Site.php:581
+#: src/Module/Admin/Site.php:577
msgid ""
"When enabed, the fastlane mechanism starts an additional worker if processes"
" with higher priority are blocked by processes of lower priority."
msgstr "有効にすると、優先度の高いプロセスが優先度の低いプロセスによってブロックされた場合、fastlaneメカニズムは追加のワーカーを開始します。"
-#: src/Module/Admin/Site.php:582
+#: src/Module/Admin/Site.php:578
msgid "Decoupled receiver"
msgstr ""
-#: src/Module/Admin/Site.php:582
+#: src/Module/Admin/Site.php:578
msgid ""
"Decouple incoming ActivityPub posts by processing them in the background via"
" a worker process. Only enable this on fast systems."
msgstr ""
-#: src/Module/Admin/Site.php:583
+#: src/Module/Admin/Site.php:579
msgid "Cron interval"
msgstr ""
-#: src/Module/Admin/Site.php:583
+#: src/Module/Admin/Site.php:579
msgid "Minimal period in minutes between two calls of the \"Cron\" worker job."
msgstr ""
-#: src/Module/Admin/Site.php:584
+#: src/Module/Admin/Site.php:580
msgid "Worker defer limit"
msgstr ""
-#: src/Module/Admin/Site.php:584
+#: src/Module/Admin/Site.php:580
msgid ""
"Per default the systems tries delivering for 15 times before dropping it."
msgstr ""
-#: src/Module/Admin/Site.php:585
+#: src/Module/Admin/Site.php:581
msgid "Worker fetch limit"
msgstr ""
-#: src/Module/Admin/Site.php:585
+#: src/Module/Admin/Site.php:581
msgid ""
"Number of worker tasks that are fetched in a single query. Higher values "
"should increase the performance, too high values will mostly likely decrease"
@@ -5438,214 +5454,214 @@ msgid ""
"system."
msgstr ""
-#: src/Module/Admin/Site.php:587
+#: src/Module/Admin/Site.php:583
msgid "Direct relay transfer"
msgstr "直接中継転送"
-#: src/Module/Admin/Site.php:587
+#: src/Module/Admin/Site.php:583
msgid ""
"Enables the direct transfer to other servers without using the relay servers"
msgstr "中継サーバーを使用せずに他のサーバーに直接転送できるようにします"
-#: src/Module/Admin/Site.php:588
+#: src/Module/Admin/Site.php:584
msgid "Relay scope"
msgstr "中継スコープ"
-#: src/Module/Admin/Site.php:588
+#: src/Module/Admin/Site.php:584
msgid ""
"Can be \"all\" or \"tags\". \"all\" means that every public post should be "
"received. \"tags\" means that only posts with selected tags should be "
"received."
msgstr "\"all \"または\"tags \"にすることができます。 「すべて」は、すべての一般公開投稿を受信することを意味します。 「タグ」は、選択したタグのある投稿のみを受信することを意味します。"
-#: src/Module/Admin/Site.php:588 src/Module/Contact/Profile.php:314
-#: src/Module/Settings/TwoFactor/Index.php:146
+#: src/Module/Admin/Site.php:584 src/Module/Contact/Profile.php:314
+#: src/Module/Settings/TwoFactor/Index.php:132
msgid "Disabled"
msgstr "無効"
-#: src/Module/Admin/Site.php:588
+#: src/Module/Admin/Site.php:584
msgid "all"
msgstr "すべて"
-#: src/Module/Admin/Site.php:588
+#: src/Module/Admin/Site.php:584
msgid "tags"
msgstr "タグ"
-#: src/Module/Admin/Site.php:589
+#: src/Module/Admin/Site.php:585
msgid "Server tags"
msgstr "サーバータグ"
-#: src/Module/Admin/Site.php:589
+#: src/Module/Admin/Site.php:585
msgid "Comma separated list of tags for the \"tags\" subscription."
msgstr "\"tags \"サブスクリプションのタグのコンマ区切りリスト。"
-#: src/Module/Admin/Site.php:590
+#: src/Module/Admin/Site.php:586
msgid "Deny Server tags"
msgstr ""
-#: src/Module/Admin/Site.php:590
+#: src/Module/Admin/Site.php:586
msgid "Comma separated list of tags that are rejected."
msgstr ""
-#: src/Module/Admin/Site.php:591
+#: src/Module/Admin/Site.php:587
msgid "Maximum amount of tags"
msgstr ""
-#: src/Module/Admin/Site.php:591
+#: src/Module/Admin/Site.php:587
msgid ""
"Maximum amount of tags in a post before it is rejected as spam. The post has"
" to contain at least one link. Posts from subscribed accounts will not be "
"rejected."
msgstr ""
-#: src/Module/Admin/Site.php:592
+#: src/Module/Admin/Site.php:588
msgid "Allow user tags"
msgstr "ユーザータグを許可する"
-#: src/Module/Admin/Site.php:592
+#: src/Module/Admin/Site.php:588
msgid ""
"If enabled, the tags from the saved searches will used for the \"tags\" "
"subscription in addition to the \"relay_server_tags\"."
msgstr "有効にすると、保存された検索のタグが、\"relay_server_tags \"に加えて\"tags \"サブスクリプションに使用されます。"
-#: src/Module/Admin/Site.php:593
+#: src/Module/Admin/Site.php:589
msgid "Deny undetected languages"
msgstr ""
-#: src/Module/Admin/Site.php:593
+#: src/Module/Admin/Site.php:589
msgid "If enabled, posts with undetected languages will be rejected."
msgstr ""
-#: src/Module/Admin/Site.php:594
+#: src/Module/Admin/Site.php:590
msgid "Language Quality"
msgstr ""
-#: src/Module/Admin/Site.php:594
+#: src/Module/Admin/Site.php:590
msgid "The minimum language quality that is required to accept the post."
msgstr ""
-#: src/Module/Admin/Site.php:595
+#: src/Module/Admin/Site.php:591
msgid "Number of languages for the language detection"
msgstr ""
-#: src/Module/Admin/Site.php:595
+#: src/Module/Admin/Site.php:591
msgid ""
"The system detects a list of languages per post. Only if the desired "
"languages are in the list, the message will be accepted. The higher the "
"number, the more posts will be falsely detected."
msgstr ""
-#: src/Module/Admin/Site.php:597
+#: src/Module/Admin/Site.php:593
msgid "Maximum age of channel"
msgstr ""
-#: src/Module/Admin/Site.php:597
+#: src/Module/Admin/Site.php:593
msgid ""
"This defines the maximum age in hours of items that should be displayed in "
"channels. This affects the channel performance."
msgstr ""
-#: src/Module/Admin/Site.php:598
+#: src/Module/Admin/Site.php:594
msgid "Maximum number of channel posts"
msgstr ""
-#: src/Module/Admin/Site.php:598
+#: src/Module/Admin/Site.php:594
msgid ""
"For performance reasons, the channels use a dedicated table to store "
"content. The higher the value the slower the channels."
msgstr ""
-#: src/Module/Admin/Site.php:599
+#: src/Module/Admin/Site.php:595
msgid "Interaction score days"
msgstr ""
-#: src/Module/Admin/Site.php:599
+#: src/Module/Admin/Site.php:595
msgid "Number of days that are used to calculate the interaction score."
msgstr ""
-#: src/Module/Admin/Site.php:600
+#: src/Module/Admin/Site.php:596
msgid "Maximum number of posts per author"
msgstr ""
-#: src/Module/Admin/Site.php:600
+#: src/Module/Admin/Site.php:596
msgid ""
"Maximum number of posts per page by author if the contact frequency is set "
"to \"Display only few posts\". If there are more posts, then the post with "
"the most interactions will be displayed."
msgstr ""
-#: src/Module/Admin/Site.php:601
+#: src/Module/Admin/Site.php:597
msgid "Sharer interaction days"
msgstr ""
-#: src/Module/Admin/Site.php:601
+#: src/Module/Admin/Site.php:597
msgid ""
"Number of days of the last interaction that are used to define which sharers"
" are used for the \"sharers of sharers\" channel."
msgstr ""
-#: src/Module/Admin/Site.php:604
+#: src/Module/Admin/Site.php:600
msgid "Start Relocation"
msgstr "再配置を開始"
-#: src/Module/Admin/Storage.php:46
+#: src/Module/Admin/Storage.php:32
#, php-format
msgid "Storage backend, %s is invalid."
msgstr ""
-#: src/Module/Admin/Storage.php:73
+#: src/Module/Admin/Storage.php:59
#, php-format
msgid "Storage backend %s error: %s"
msgstr ""
-#: src/Module/Admin/Storage.php:84 src/Module/Admin/Storage.php:87
+#: src/Module/Admin/Storage.php:70 src/Module/Admin/Storage.php:73
msgid "Invalid storage backend setting value."
msgstr "無効なストレージバックエンド設定値です。"
-#: src/Module/Admin/Storage.php:139
+#: src/Module/Admin/Storage.php:125
msgid "Current Storage Backend"
msgstr ""
-#: src/Module/Admin/Storage.php:140
+#: src/Module/Admin/Storage.php:126
msgid "Storage Configuration"
msgstr ""
-#: src/Module/Admin/Storage.php:141 src/Module/BaseAdmin.php:91
+#: src/Module/Admin/Storage.php:127 src/Module/BaseAdmin.php:77
msgid "Storage"
msgstr ""
-#: src/Module/Admin/Storage.php:143
+#: src/Module/Admin/Storage.php:129
msgid "Save & Use storage backend"
msgstr ""
-#: src/Module/Admin/Storage.php:144
+#: src/Module/Admin/Storage.php:130
msgid "Use storage backend"
msgstr ""
-#: src/Module/Admin/Storage.php:145
+#: src/Module/Admin/Storage.php:131
msgid "Save & Reload"
msgstr ""
-#: src/Module/Admin/Storage.php:146
+#: src/Module/Admin/Storage.php:132
msgid "This backend doesn't have custom settings"
msgstr ""
-#: src/Module/Admin/Storage.php:148
+#: src/Module/Admin/Storage.php:134
msgid ""
"Changing the current backend is prohibited because it is set by an "
"environment variable"
msgstr ""
-#: src/Module/Admin/Storage.php:150
+#: src/Module/Admin/Storage.php:136
msgid "Database (legacy)"
msgstr "データベース(レガシー)"
-#: src/Module/Admin/Summary.php:55
+#: src/Module/Admin/Summary.php:41
#, php-format
msgid "Template engine (%s) error: %s"
msgstr ""
-#: src/Module/Admin/Summary.php:59
+#: src/Module/Admin/Summary.php:45
#, php-format
msgid ""
"Your DB still runs with MyISAM tables. You should change the engine type to "
@@ -5656,7 +5672,7 @@ msgid ""
" an automatic conversion. .htconfig.php
から移動してください。移行のヘルプについては、 Configヘルプページをご覧ください。"
-#: src/Module/Admin/Summary.php:118
+#: src/Module/Admin/Summary.php:104
#, php-format
msgid ""
"Friendica's configuration now is stored in config/local.config.php, please "
@@ -5732,7 +5748,7 @@ msgid ""
"page for help with the transition."
msgstr "Friendicaの設定はconfig/local.config.phpに保存されるようになりました。config/ local-sample.config.phpをコピーして、設定を config / local.ini.php
から移動してください。移行のヘルプについては、 Configヘルプページをご覧ください。"
-#: src/Module/Admin/Summary.php:124
+#: src/Module/Admin/Summary.php:110
#, php-format
msgid ""
"%s is not reachable on your system. This is a severe "
@@ -5740,107 +5756,107 @@ msgid ""
"href=\"%s\">the installation page for help."
msgstr "システムで %s に到達できません。これは、サーバー間の通信を妨げる重大な構成の問題です。ヘルプについては、インストールページをご覧ください。"
-#: src/Module/Admin/Summary.php:148
+#: src/Module/Admin/Summary.php:134
#, php-format
msgid ""
"Friendica's system.basepath was updated from '%s' to '%s'. Please remove the"
" system.basepath from your db to avoid differences."
msgstr "Friendicaのsystem.basepathは '%s' から '%s' に更新されました。差異を避けるために、データベースからsystem.basepathを削除してください。"
-#: src/Module/Admin/Summary.php:156
+#: src/Module/Admin/Summary.php:142
#, php-format
msgid ""
"Friendica's current system.basepath '%s' is wrong and the config file '%s' "
"isn't used."
msgstr "Friendicaの現在のsystem.basepath '%s' は間違っています。構成ファイル '%s'は使用されていません。"
-#: src/Module/Admin/Summary.php:164
+#: src/Module/Admin/Summary.php:150
#, php-format
msgid ""
"Friendica's current system.basepath '%s' is not equal to the config file "
"'%s'. Please fix your configuration."
msgstr "Friendicaの現在のsystem.basepath '%s'は、構成ファイル '%s'と等しくありません。設定を修正してください。"
-#: src/Module/Admin/Summary.php:175
+#: src/Module/Admin/Summary.php:161
msgid "Message queues"
msgstr "メッセージキュー"
-#: src/Module/Admin/Summary.php:181
+#: src/Module/Admin/Summary.php:167
msgid "Server Settings"
msgstr "サーバー設定"
-#: src/Module/Admin/Summary.php:199
+#: src/Module/Admin/Summary.php:185
msgid "Version"
msgstr "バージョン"
-#: src/Module/Admin/Summary.php:203
+#: src/Module/Admin/Summary.php:189
msgid "Active addons"
msgstr "アクティブなアドオン"
-#: src/Module/Admin/Themes/Details.php:57 src/Module/Admin/Themes/Index.php:65
+#: src/Module/Admin/Themes/Details.php:49 src/Module/Admin/Themes/Index.php:57
#, php-format
msgid "Theme %s disabled."
msgstr "テーマ%sを無効にしました。"
-#: src/Module/Admin/Themes/Details.php:59 src/Module/Admin/Themes/Index.php:67
+#: src/Module/Admin/Themes/Details.php:51 src/Module/Admin/Themes/Index.php:59
#, php-format
msgid "Theme %s successfully enabled."
msgstr "テーマ%sが有効になりました。"
-#: src/Module/Admin/Themes/Details.php:61 src/Module/Admin/Themes/Index.php:69
+#: src/Module/Admin/Themes/Details.php:53 src/Module/Admin/Themes/Index.php:61
#, php-format
msgid "Theme %s failed to install."
msgstr "テーマ%sのインストールに失敗しました。"
-#: src/Module/Admin/Themes/Details.php:83
+#: src/Module/Admin/Themes/Details.php:75
msgid "Screenshot"
msgstr "スクリーンショット"
-#: src/Module/Admin/Themes/Details.php:91
-#: src/Module/Admin/Themes/Index.php:112 src/Module/BaseAdmin.php:93
+#: src/Module/Admin/Themes/Details.php:83
+#: src/Module/Admin/Themes/Index.php:104 src/Module/BaseAdmin.php:79
msgid "Themes"
msgstr "テーマ"
-#: src/Module/Admin/Themes/Embed.php:80
+#: src/Module/Admin/Themes/Embed.php:66
msgid "Unknown theme."
msgstr "不明なテーマ。"
-#: src/Module/Admin/Themes/Index.php:51
+#: src/Module/Admin/Themes/Index.php:43
msgid "Themes reloaded"
msgstr ""
-#: src/Module/Admin/Themes/Index.php:114
+#: src/Module/Admin/Themes/Index.php:106
msgid "Reload active themes"
msgstr "アクティブなテーマをリロードする"
-#: src/Module/Admin/Themes/Index.php:118
+#: src/Module/Admin/Themes/Index.php:110
#, php-format
msgid "No themes found on the system. They should be placed in %1$s"
msgstr "システムにテーマが見つかりません。 %1$sに配置する必要があります"
-#: src/Module/Admin/Themes/Index.php:119
+#: src/Module/Admin/Themes/Index.php:111
msgid "[Experimental]"
msgstr "[実験的]"
-#: src/Module/Admin/Themes/Index.php:120
+#: src/Module/Admin/Themes/Index.php:112
msgid "[Unsupported]"
msgstr "[サポートされていません]"
-#: src/Module/Admin/Tos.php:79
+#: src/Module/Admin/Tos.php:65
msgid "Display Terms of Service"
msgstr "利用規約を表示する"
-#: src/Module/Admin/Tos.php:79
+#: src/Module/Admin/Tos.php:65
msgid ""
"Enable the Terms of Service page. If this is enabled a link to the terms "
"will be added to the registration form and the general information page."
msgstr "利用規約ページを有効にします。これを有効にすると、登録フォームと一般情報ページに規約へのリンクが追加されます。"
-#: src/Module/Admin/Tos.php:80
+#: src/Module/Admin/Tos.php:66
msgid "Display Privacy Statement"
msgstr "プライバシーに関する声明を表示する"
-#: src/Module/Admin/Tos.php:80
+#: src/Module/Admin/Tos.php:66
#, php-format
msgid ""
"Show some informations regarding the needed information to operate the node "
@@ -5848,257 +5864,257 @@ msgid ""
"noreferrer\">EU-GDPR."
msgstr ""
-#: src/Module/Admin/Tos.php:81
+#: src/Module/Admin/Tos.php:67
msgid "Privacy Statement Preview"
msgstr "プライバシーに関する声明のプレビュー"
-#: src/Module/Admin/Tos.php:83
+#: src/Module/Admin/Tos.php:69
msgid "The Terms of Service"
msgstr "利用規約"
-#: src/Module/Admin/Tos.php:83
+#: src/Module/Admin/Tos.php:69
msgid ""
"Enter the Terms of Service for your node here. You can use BBCode. Headers "
"of sections should be [h2] and below."
msgstr "ここにノードの利用規約を入力します。 BBCodeを使用できます。セクションのヘッダーは[h2]以下である必要があります。"
-#: src/Module/Admin/Tos.php:84
+#: src/Module/Admin/Tos.php:70
msgid "The rules"
msgstr ""
-#: src/Module/Admin/Tos.php:84
+#: src/Module/Admin/Tos.php:70
msgid "Enter your system rules here. Each line represents one rule."
msgstr ""
-#: src/Module/Api/ApiResponse.php:293
+#: src/Module/Api/ApiResponse.php:279
#, php-format
msgid "API endpoint %s %s is not implemented but might be in the future."
msgstr ""
-#: src/Module/Api/Mastodon/Apps.php:73
+#: src/Module/Api/Mastodon/Apps.php:59
msgid "Missing parameters"
msgstr ""
-#: src/Module/Api/Mastodon/Statuses/Bookmark.php:50
+#: src/Module/Api/Mastodon/Statuses/Bookmark.php:36
msgid "Only starting posts can be bookmarked"
msgstr ""
-#: src/Module/Api/Mastodon/Statuses/Mute.php:51
+#: src/Module/Api/Mastodon/Statuses/Mute.php:37
msgid "Only starting posts can be muted"
msgstr ""
-#: src/Module/Api/Mastodon/Statuses/Reblog.php:58
+#: src/Module/Api/Mastodon/Statuses/Reblog.php:44
#, php-format
msgid "Posts from %s can't be shared"
msgstr ""
-#: src/Module/Api/Mastodon/Statuses/Unbookmark.php:51
+#: src/Module/Api/Mastodon/Statuses/Unbookmark.php:37
msgid "Only starting posts can be unbookmarked"
msgstr ""
-#: src/Module/Api/Mastodon/Statuses/Unmute.php:51
+#: src/Module/Api/Mastodon/Statuses/Unmute.php:37
msgid "Only starting posts can be unmuted"
msgstr ""
-#: src/Module/Api/Mastodon/Statuses/Unreblog.php:64
+#: src/Module/Api/Mastodon/Statuses/Unreblog.php:50
#, php-format
msgid "Posts from %s can't be unshared"
msgstr ""
-#: src/Module/Api/Twitter/ContactEndpoint.php:66
+#: src/Module/Api/Twitter/ContactEndpoint.php:52
msgid "Contact not found"
msgstr "コンタクトが見つかりません"
-#: src/Module/Apps.php:62
+#: src/Module/Apps.php:48
msgid "No installed applications."
msgstr "アプリケーションがインストールされていません。"
-#: src/Module/Apps.php:67
+#: src/Module/Apps.php:53
msgid "Applications"
msgstr "アプリケーション"
-#: src/Module/Attach.php:49 src/Module/Attach.php:61
+#: src/Module/Attach.php:35 src/Module/Attach.php:47
msgid "Item was not found."
msgstr "項目が見つかりませんでした。"
-#: src/Module/BaseAdmin.php:54 src/Module/BaseAdmin.php:58
-#: src/Module/BaseModeration.php:77 src/Module/BaseModeration.php:81
+#: src/Module/BaseAdmin.php:40 src/Module/BaseAdmin.php:44
+#: src/Module/BaseModeration.php:63 src/Module/BaseModeration.php:67
msgid "Please login to continue."
msgstr "この先に進むにはログインしてください。"
-#: src/Module/BaseAdmin.php:63
+#: src/Module/BaseAdmin.php:49
msgid "You don't have access to administration pages."
msgstr ""
-#: src/Module/BaseAdmin.php:67
+#: src/Module/BaseAdmin.php:53
msgid ""
"Submanaged account can't access the administration pages. Please log back in"
" as the main account."
msgstr ""
-#: src/Module/BaseAdmin.php:86 src/Module/BaseModeration.php:109
+#: src/Module/BaseAdmin.php:72 src/Module/BaseModeration.php:95
msgid "Overview"
msgstr "概要"
-#: src/Module/BaseAdmin.php:89 src/Module/BaseModeration.php:112
+#: src/Module/BaseAdmin.php:75 src/Module/BaseModeration.php:98
msgid "Configuration"
msgstr "構成"
-#: src/Module/BaseAdmin.php:94 src/Module/BaseSettings.php:110
+#: src/Module/BaseAdmin.php:80 src/Module/BaseSettings.php:96
msgid "Additional features"
msgstr "追加機能"
-#: src/Module/BaseAdmin.php:97
+#: src/Module/BaseAdmin.php:83
msgid "Database"
msgstr "データベース"
-#: src/Module/BaseAdmin.php:98
+#: src/Module/BaseAdmin.php:84
msgid "DB updates"
msgstr "DBの更新"
-#: src/Module/BaseAdmin.php:99
+#: src/Module/BaseAdmin.php:85
msgid "Inspect Deferred Workers"
msgstr "非同期実行ワーカーの検査"
-#: src/Module/BaseAdmin.php:100
+#: src/Module/BaseAdmin.php:86
msgid "Inspect worker Queue"
msgstr "ワーカーキューの検査"
-#: src/Module/BaseAdmin.php:106 src/Module/BaseModeration.php:120
+#: src/Module/BaseAdmin.php:92 src/Module/BaseModeration.php:106
msgid "Diagnostics"
msgstr "診断"
-#: src/Module/BaseAdmin.php:107
+#: src/Module/BaseAdmin.php:93
msgid "PHP Info"
msgstr "PHP情報"
-#: src/Module/BaseAdmin.php:108
+#: src/Module/BaseAdmin.php:94
msgid "probe address"
msgstr "プローブアドレス"
-#: src/Module/BaseAdmin.php:109
+#: src/Module/BaseAdmin.php:95
msgid "check webfinger"
msgstr "webfingerで診断"
-#: src/Module/BaseAdmin.php:110
+#: src/Module/BaseAdmin.php:96
msgid "Babel"
msgstr "Babel"
-#: src/Module/BaseAdmin.php:111 src/Module/Debug/ActivityPubConversion.php:137
+#: src/Module/BaseAdmin.php:97 src/Module/Debug/ActivityPubConversion.php:129
msgid "ActivityPub Conversion"
msgstr ""
-#: src/Module/BaseAdmin.php:120
+#: src/Module/BaseAdmin.php:106
msgid "Addon Features"
msgstr "アドオン機能"
-#: src/Module/BaseAdmin.php:121 src/Module/BaseModeration.php:129
+#: src/Module/BaseAdmin.php:107 src/Module/BaseModeration.php:115
msgid "User registrations waiting for confirmation"
msgstr "確認待ちのユーザー登録"
-#: src/Module/BaseApi.php:455 src/Module/BaseApi.php:471
-#: src/Module/BaseApi.php:487
+#: src/Module/BaseApi.php:441 src/Module/BaseApi.php:457
+#: src/Module/BaseApi.php:473
msgid "Too Many Requests"
msgstr ""
-#: src/Module/BaseApi.php:456
+#: src/Module/BaseApi.php:442
#, php-format
msgid "Daily posting limit of %d post reached. The post was rejected."
msgid_plural "Daily posting limit of %d posts reached. The post was rejected."
msgstr[0] "一日の最大投稿数 %d 件を超えたため、投稿できませんでした。"
-#: src/Module/BaseApi.php:472
+#: src/Module/BaseApi.php:458
#, php-format
msgid "Weekly posting limit of %d post reached. The post was rejected."
msgid_plural ""
"Weekly posting limit of %d posts reached. The post was rejected."
msgstr[0] "一週間の最大投稿数 %d 件を超えたため、投稿できませんでした。"
-#: src/Module/BaseApi.php:488
+#: src/Module/BaseApi.php:474
#, php-format
msgid "Monthly posting limit of %d post reached. The post was rejected."
msgid_plural ""
"Monthly posting limit of %d posts reached. The post was rejected."
msgstr[0] ""
-#: src/Module/BaseModeration.php:86
+#: src/Module/BaseModeration.php:72
msgid "You don't have access to moderation pages."
msgstr ""
-#: src/Module/BaseModeration.php:90
+#: src/Module/BaseModeration.php:76
msgid ""
"Submanaged account can't access the moderation pages. Please log back in as "
"the main account."
msgstr ""
-#: src/Module/BaseModeration.php:110 src/Module/Moderation/Reports.php:109
+#: src/Module/BaseModeration.php:96 src/Module/Moderation/Reports.php:101
msgid "Reports"
msgstr ""
-#: src/Module/BaseModeration.php:113 src/Module/Moderation/Users/Index.php:148
-#: src/Module/Moderation/Users/Index.php:158
+#: src/Module/BaseModeration.php:99 src/Module/Moderation/Users/Index.php:134
+#: src/Module/Moderation/Users/Index.php:144
msgid "Users"
msgstr "ユーザー"
-#: src/Module/BaseModeration.php:115
+#: src/Module/BaseModeration.php:101
msgid "Tools"
msgstr "ツール"
-#: src/Module/BaseModeration.php:116
+#: src/Module/BaseModeration.php:102
msgid "Contact Blocklist"
msgstr "コンタクトブロックリスト"
-#: src/Module/BaseModeration.php:117
+#: src/Module/BaseModeration.php:103
msgid "Server Blocklist"
msgstr "サーバーブロックリスト"
-#: src/Module/BaseModeration.php:118 src/Module/Moderation/Item/Delete.php:62
+#: src/Module/BaseModeration.php:104 src/Module/Moderation/Item/Delete.php:48
msgid "Delete Item"
msgstr "項目を削除"
-#: src/Module/BaseModeration.php:121 src/Module/Moderation/Item/Source.php:76
+#: src/Module/BaseModeration.php:107 src/Module/Moderation/Item/Source.php:68
msgid "Item Source"
msgstr "項目ソース"
-#: src/Module/BaseProfile.php:52 src/Module/Contact.php:506
+#: src/Module/BaseProfile.php:38 src/Module/Contact.php:488
msgid "Profile Details"
msgstr "プロフィールの詳細"
-#: src/Module/BaseProfile.php:60
+#: src/Module/BaseProfile.php:46
msgid "Conversations started"
msgstr ""
-#: src/Module/BaseProfile.php:111
+#: src/Module/BaseProfile.php:97
msgid "Only You Can See This"
msgstr "これしか見えない"
-#: src/Module/BaseProfile.php:116 src/Module/Profile/Schedule.php:81
+#: src/Module/BaseProfile.php:102 src/Module/Profile/Schedule.php:67
msgid "Scheduled Posts"
msgstr ""
-#: src/Module/BaseProfile.php:119
+#: src/Module/BaseProfile.php:105
msgid "Posts that are scheduled for publishing"
msgstr ""
-#: src/Module/BaseProfile.php:138 src/Module/BaseProfile.php:141
+#: src/Module/BaseProfile.php:124 src/Module/BaseProfile.php:127
msgid "Tips for New Members"
msgstr "新会員のためのヒント"
-#: src/Module/BaseSearch.php:71
+#: src/Module/BaseSearch.php:57
#, php-format
msgid "People Search - %s"
msgstr "人を検索- %s"
-#: src/Module/BaseSearch.php:75
+#: src/Module/BaseSearch.php:61
#, php-format
msgid "Group Search - %s"
msgstr ""
-#: src/Module/BaseSearch.php:121 src/Module/Contact/MatchInterests.php:140
+#: src/Module/BaseSearch.php:107 src/Module/Contact/MatchInterests.php:136
msgid "No matches"
msgstr "一致する項目がありません"
-#: src/Module/BaseSearch.php:147
+#: src/Module/BaseSearch.php:133
#, php-format
msgid ""
"%d result was filtered out because your node blocks the domain it is "
@@ -6110,588 +6126,584 @@ msgid_plural ""
"blocking in the About page."
msgstr[0] ""
-#: src/Module/BaseSettings.php:78
+#: src/Module/BaseSettings.php:64
msgid "Account"
msgstr "アカウント"
-#: src/Module/BaseSettings.php:85 src/Module/Security/TwoFactor/Verify.php:96
-#: src/Module/Settings/TwoFactor/Index.php:138
+#: src/Module/BaseSettings.php:71 src/Module/Security/TwoFactor/Verify.php:82
+#: src/Module/Settings/TwoFactor/Index.php:124
msgid "Two-factor authentication"
msgstr "二要素認証"
-#: src/Module/BaseSettings.php:118
+#: src/Module/BaseSettings.php:104
msgid "Display"
msgstr "表示"
-#: src/Module/BaseSettings.php:132 src/Module/Settings/Connectors.php:204
+#: src/Module/BaseSettings.php:118 src/Module/Settings/Connectors.php:195
msgid "Social Networks"
msgstr "ソーシャルネットワーク"
-#: src/Module/BaseSettings.php:146 src/Module/Settings/Delegation.php:194
+#: src/Module/BaseSettings.php:132 src/Module/Settings/Delegation.php:180
msgid "Manage Accounts"
msgstr "アカウントの管理"
-#: src/Module/BaseSettings.php:153
+#: src/Module/BaseSettings.php:139
msgid "Connected apps"
msgstr "接続されたアプリ"
-#: src/Module/BaseSettings.php:160
+#: src/Module/BaseSettings.php:146
msgid "Remote servers"
msgstr ""
-#: src/Module/BaseSettings.php:167 src/Module/Settings/UserExport.php:98
+#: src/Module/BaseSettings.php:153 src/Module/Settings/UserExport.php:84
msgid "Export personal data"
msgstr "個人データのエクスポート"
-#: src/Module/BaseSettings.php:174
+#: src/Module/BaseSettings.php:160
msgid "Remove account"
msgstr "アカウントを削除"
-#: src/Module/Bookmarklet.php:54
+#: src/Module/Bookmarklet.php:40
msgid "This page is missing a url parameter."
msgstr "このページにはurlパラメーターがありません。"
-#: src/Module/Bookmarklet.php:66
+#: src/Module/Bookmarklet.php:52
msgid "The post was created"
msgstr "投稿が作成されました"
-#: src/Module/Calendar/Event/API.php:100 src/Module/Calendar/Event/API.php:135
-#: src/Module/Calendar/Event/Form.php:80
+#: src/Module/Calendar/Event/API.php:86 src/Module/Calendar/Event/API.php:121
+#: src/Module/Calendar/Event/Form.php:66
msgid "Invalid Request"
msgstr ""
-#: src/Module/Calendar/Event/API.php:109
+#: src/Module/Calendar/Event/API.php:95
msgid "Event id is missing."
msgstr ""
-#: src/Module/Calendar/Event/API.php:131
+#: src/Module/Calendar/Event/API.php:117
msgid "Failed to remove event"
msgstr "イベントを削除できませんでした"
-#: src/Module/Calendar/Event/API.php:187 src/Module/Calendar/Event/API.php:189
+#: src/Module/Calendar/Event/API.php:173 src/Module/Calendar/Event/API.php:175
msgid "Event can not end before it has started."
msgstr "イベントは開始する前に終了できません。"
-#: src/Module/Calendar/Event/API.php:196 src/Module/Calendar/Event/API.php:198
+#: src/Module/Calendar/Event/API.php:182 src/Module/Calendar/Event/API.php:184
msgid "Event title and start time are required."
msgstr "イベントのタイトルと開始時間が必要です。"
-#: src/Module/Calendar/Event/Form.php:208
+#: src/Module/Calendar/Event/Form.php:194
msgid "Starting date and Title are required."
msgstr "開始日とタイトルが必要です。"
-#: src/Module/Calendar/Event/Form.php:209
-#: src/Module/Calendar/Event/Form.php:214
+#: src/Module/Calendar/Event/Form.php:195
+#: src/Module/Calendar/Event/Form.php:200
msgid "Event Starts:"
msgstr "イベント開始:"
-#: src/Module/Calendar/Event/Form.php:209
-#: src/Module/Calendar/Event/Form.php:237 src/Module/Debug/Probe.php:59
-#: src/Module/Install.php:201 src/Module/Install.php:227
-#: src/Module/Install.php:232 src/Module/Install.php:246
-#: src/Module/Install.php:255 src/Module/Install.php:260
-#: src/Module/Install.php:266 src/Module/Install.php:271
-#: src/Module/Install.php:285 src/Module/Install.php:298
-#: src/Module/Install.php:325
-#: src/Module/Moderation/Blocklist/Server/Add.php:136
-#: src/Module/Moderation/Blocklist/Server/Add.php:138
-#: src/Module/Moderation/Blocklist/Server/Import.php:129
-#: src/Module/Moderation/Blocklist/Server/Index.php:86
-#: src/Module/Moderation/Blocklist/Server/Index.php:87
-#: src/Module/Moderation/Blocklist/Server/Index.php:115
-#: src/Module/Moderation/Blocklist/Server/Index.php:116
-#: src/Module/Moderation/Item/Delete.php:67 src/Module/Register.php:149
-#: src/Module/Security/TwoFactor/Verify.php:101
-#: src/Module/Settings/Channels.php:190 src/Module/Settings/Channels.php:211
-#: src/Module/Settings/TwoFactor/Index.php:161
-#: src/Module/Settings/TwoFactor/Verify.php:158
+#: src/Module/Calendar/Event/Form.php:195
+#: src/Module/Calendar/Event/Form.php:223 src/Module/Debug/Probe.php:45
+#: src/Module/Install.php:187 src/Module/Install.php:213
+#: src/Module/Install.php:218 src/Module/Install.php:232
+#: src/Module/Install.php:241 src/Module/Install.php:246
+#: src/Module/Install.php:252 src/Module/Install.php:257
+#: src/Module/Install.php:271 src/Module/Install.php:284
+#: src/Module/Install.php:311
+#: src/Module/Moderation/Blocklist/Server/Add.php:122
+#: src/Module/Moderation/Blocklist/Server/Add.php:124
+#: src/Module/Moderation/Blocklist/Server/Import.php:113
+#: src/Module/Moderation/Blocklist/Server/Index.php:72
+#: src/Module/Moderation/Blocklist/Server/Index.php:73
+#: src/Module/Moderation/Blocklist/Server/Index.php:101
+#: src/Module/Moderation/Blocklist/Server/Index.php:102
+#: src/Module/Moderation/Item/Delete.php:53 src/Module/Register.php:141
+#: src/Module/Security/TwoFactor/Verify.php:87
+#: src/Module/Settings/Channels.php:176 src/Module/Settings/Channels.php:197
+#: src/Module/Settings/TwoFactor/Index.php:147
+#: src/Module/Settings/TwoFactor/Verify.php:144
msgid "Required"
msgstr "必須"
-#: src/Module/Calendar/Event/Form.php:223
-#: src/Module/Calendar/Event/Form.php:247
+#: src/Module/Calendar/Event/Form.php:209
+#: src/Module/Calendar/Event/Form.php:233
msgid "Finish date/time is not known or not relevant"
msgstr "終了日時が不明であるか、関連性がない"
-#: src/Module/Calendar/Event/Form.php:225
-#: src/Module/Calendar/Event/Form.php:230
+#: src/Module/Calendar/Event/Form.php:211
+#: src/Module/Calendar/Event/Form.php:216
msgid "Event Finishes:"
msgstr "イベント終了:"
-#: src/Module/Calendar/Event/Form.php:237
-#: src/Module/Calendar/Event/Form.php:243
+#: src/Module/Calendar/Event/Form.php:223
+#: src/Module/Calendar/Event/Form.php:229
msgid "Title (BBCode not allowed)"
msgstr ""
-#: src/Module/Calendar/Event/Form.php:239
+#: src/Module/Calendar/Event/Form.php:225
msgid "Description (BBCode allowed)"
msgstr ""
-#: src/Module/Calendar/Event/Form.php:241
+#: src/Module/Calendar/Event/Form.php:227
msgid "Location (BBCode not allowed)"
msgstr ""
-#: src/Module/Calendar/Event/Form.php:244
-#: src/Module/Calendar/Event/Form.php:245
+#: src/Module/Calendar/Event/Form.php:230
+#: src/Module/Calendar/Event/Form.php:231
msgid "Share this event"
msgstr "このイベントを共有する"
-#: src/Module/Calendar/Event/Form.php:251 src/Module/Profile/Profile.php:275
+#: src/Module/Calendar/Event/Form.php:237 src/Module/Profile/Profile.php:263
msgid "Basic"
msgstr "ベーシック"
-#: src/Module/Calendar/Export.php:94
+#: src/Module/Calendar/Export.php:80
msgid "This calendar format is not supported"
msgstr "このカレンダー形式はサポートされていません"
-#: src/Module/Calendar/Export.php:96
+#: src/Module/Calendar/Export.php:82
msgid "No exportable data found"
msgstr "エクスポート可能なデータが見つかりません"
-#: src/Module/Calendar/Export.php:113
+#: src/Module/Calendar/Export.php:99
msgid "calendar"
msgstr "カレンダー"
-#: src/Module/Calendar/Show.php:124
+#: src/Module/Calendar/Show.php:110
msgid "Events"
msgstr "イベント"
-#: src/Module/Calendar/Show.php:125
+#: src/Module/Calendar/Show.php:111
msgid "View"
msgstr "表示する"
-#: src/Module/Calendar/Show.php:126
+#: src/Module/Calendar/Show.php:112
msgid "Create New Event"
msgstr "新しいイベントを作成"
-#: src/Module/Calendar/Show.php:132 src/Module/Settings/Display.php:297
+#: src/Module/Calendar/Show.php:118 src/Module/Settings/Display.php:283
msgid "list"
msgstr "リスト"
-#: src/Module/Circle.php:57
+#: src/Module/Circle.php:43
msgid "Could not create circle."
msgstr ""
-#: src/Module/Circle.php:68 src/Module/Circle.php:216
-#: src/Module/Circle.php:240
+#: src/Module/Circle.php:54 src/Module/Circle.php:202
+#: src/Module/Circle.php:226
msgid "Circle not found."
msgstr ""
-#: src/Module/Circle.php:74
+#: src/Module/Circle.php:60
msgid "Circle name was not changed."
msgstr ""
-#: src/Module/Circle.php:92
+#: src/Module/Circle.php:78
msgid "Unknown circle."
msgstr ""
-#: src/Module/Circle.php:98 src/Module/Circle.php:107
-#: src/Module/Contact/Advanced.php:70 src/Module/Contact/Advanced.php:109
-#: src/Module/Contact/Contacts.php:71 src/Module/Contact/Conversations.php:86
-#: src/Module/Contact/Conversations.php:91
-#: src/Module/Contact/Conversations.php:96 src/Module/Contact/Media.php:61
-#: src/Module/Contact/Posts.php:78 src/Module/Contact/Posts.php:83
-#: src/Module/Contact/Posts.php:88 src/Module/Contact/Profile.php:159
-#: src/Module/Contact/Profile.php:164 src/Module/Contact/Profile.php:169
-#: src/Module/Contact/Redir.php:95 src/Module/Contact/Redir.php:141
-#: src/Module/FriendSuggest.php:71 src/Module/FriendSuggest.php:109
+#: src/Module/Circle.php:84 src/Module/Circle.php:93
+#: src/Module/Contact/Advanced.php:56 src/Module/Contact/Advanced.php:95
+#: src/Module/Contact/Contacts.php:57 src/Module/Contact/Conversations.php:72
+#: src/Module/Contact/Conversations.php:77
+#: src/Module/Contact/Conversations.php:82 src/Module/Contact/Media.php:47
+#: src/Module/Contact/Posts.php:64 src/Module/Contact/Posts.php:69
+#: src/Module/Contact/Posts.php:74 src/Module/Contact/Profile.php:145
+#: src/Module/Contact/Profile.php:150 src/Module/Contact/Profile.php:169
+#: src/Module/Contact/Redir.php:77 src/Module/Contact/Redir.php:131
+#: src/Module/FriendSuggest.php:57 src/Module/FriendSuggest.php:95
msgid "Contact not found."
msgstr "コンタクトが見つかりません。"
-#: src/Module/Circle.php:102 src/Module/Contact/Contacts.php:66
+#: src/Module/Circle.php:88 src/Module/Contact/Contacts.php:52
msgid "Invalid contact."
msgstr "無効なコンタクト。"
-#: src/Module/Circle.php:111 src/Module/Contact/Revoke.php:73
+#: src/Module/Circle.php:97 src/Module/Contact/Revoke.php:56
msgid "Contact is deleted."
msgstr "コンタクトが削除されます。"
-#: src/Module/Circle.php:117
+#: src/Module/Circle.php:103
msgid "Unable to add the contact to the circle."
msgstr ""
-#: src/Module/Circle.php:120
+#: src/Module/Circle.php:106
msgid "Contact successfully added to circle."
msgstr ""
-#: src/Module/Circle.php:124
+#: src/Module/Circle.php:110
msgid "Unable to remove the contact from the circle."
msgstr ""
-#: src/Module/Circle.php:127
+#: src/Module/Circle.php:113
msgid "Contact successfully removed from circle."
msgstr ""
-#: src/Module/Circle.php:131
+#: src/Module/Circle.php:117
msgid "Bad request."
msgstr "要求の形式が正しくありません。"
-#: src/Module/Circle.php:172
+#: src/Module/Circle.php:158
msgid "Save Circle"
msgstr ""
-#: src/Module/Circle.php:173
+#: src/Module/Circle.php:159
msgid "Filter"
msgstr "フィルタ"
-#: src/Module/Circle.php:179
+#: src/Module/Circle.php:165
msgid "Create a circle of contacts/friends."
msgstr ""
-#: src/Module/Circle.php:221
+#: src/Module/Circle.php:207
msgid "Unable to remove circle."
msgstr ""
-#: src/Module/Circle.php:272
+#: src/Module/Circle.php:258
msgid "Delete Circle"
msgstr ""
-#: src/Module/Circle.php:282
+#: src/Module/Circle.php:268
msgid "Edit Circle Name"
msgstr ""
-#: src/Module/Circle.php:292
+#: src/Module/Circle.php:278
msgid "Members"
msgstr "会員"
-#: src/Module/Circle.php:295
+#: src/Module/Circle.php:281
msgid "Circle is empty"
msgstr ""
-#: src/Module/Circle.php:311
+#: src/Module/Circle.php:297
msgid "Remove contact from circle"
msgstr ""
-#: src/Module/Circle.php:334
+#: src/Module/Circle.php:320
msgid "Click on a contact to add or remove."
msgstr "コンタクトをクリックして追加・削除"
-#: src/Module/Circle.php:351
+#: src/Module/Circle.php:337
msgid "Add contact to circle"
msgstr ""
-#: src/Module/Contact.php:96
+#: src/Module/Contact.php:88
#, php-format
msgid "%d contact edited."
msgid_plural "%d contacts edited."
msgstr[0] "%dコンタクトを編集しました。"
-#: src/Module/Contact.php:347
+#: src/Module/Contact.php:328
msgid "Show all contacts"
msgstr "すべてのコンタクトを表示"
-#: src/Module/Contact.php:352 src/Module/Contact.php:431
-#: src/Module/Moderation/BaseUsers.php:85
+#: src/Module/Contact.php:333 src/Module/Contact.php:412
+#: src/Module/Moderation/BaseUsers.php:72
msgid "Pending"
msgstr "保留"
-#: src/Module/Contact.php:355
+#: src/Module/Contact.php:336
msgid "Only show pending contacts"
msgstr "保留中のコンタクトのみを表示"
-#: src/Module/Contact.php:360 src/Module/Contact.php:434
-#: src/Module/Moderation/BaseUsers.php:93
+#: src/Module/Contact.php:341 src/Module/Contact.php:415
+#: src/Module/Moderation/BaseUsers.php:80
msgid "Blocked"
msgstr "ブロックされました"
-#: src/Module/Contact.php:363
+#: src/Module/Contact.php:344
msgid "Only show blocked contacts"
msgstr "ブロックされたコンタクトのみを表示"
-#: src/Module/Contact.php:368 src/Module/Contact.php:440
-#: src/Module/Settings/Server/Index.php:107 src/Object/Post.php:399
+#: src/Module/Contact.php:349 src/Module/Contact.php:421
+#: src/Module/Settings/Server/Index.php:93 src/Object/Post.php:385
msgid "Ignored"
msgstr "無視された"
-#: src/Module/Contact.php:371
+#: src/Module/Contact.php:352
msgid "Only show ignored contacts"
msgstr "無視されたコンタクトのみを表示"
-#: src/Module/Contact.php:376 src/Module/Contact.php:443
+#: src/Module/Contact.php:357 src/Module/Contact.php:424
msgid "Collapsed"
msgstr ""
-#: src/Module/Contact.php:379
+#: src/Module/Contact.php:360
msgid "Only show collapsed contacts"
msgstr ""
-#: src/Module/Contact.php:384 src/Module/Contact.php:446
+#: src/Module/Contact.php:365 src/Module/Contact.php:427
msgid "Archived"
msgstr "アーカイブ済み"
-#: src/Module/Contact.php:387
+#: src/Module/Contact.php:368
msgid "Only show archived contacts"
msgstr "アーカイブされたコンタクトのみを表示"
-#: src/Module/Contact.php:392 src/Module/Contact.php:437
+#: src/Module/Contact.php:373 src/Module/Contact.php:418
msgid "Hidden"
msgstr "非表示"
-#: src/Module/Contact.php:395
+#: src/Module/Contact.php:376
msgid "Only show hidden contacts"
msgstr "非表示のコンタクトのみを表示"
-#: src/Module/Contact.php:403
+#: src/Module/Contact.php:384
msgid "Organize your contact circles"
msgstr ""
-#: src/Module/Contact.php:458
+#: src/Module/Contact.php:439
msgid "Search your contacts"
msgstr "コンタクトを検索する"
-#: src/Module/Contact.php:459 src/Module/Search/Index.php:207
+#: src/Module/Contact.php:440 src/Module/Search/Index.php:193
#, php-format
msgid "Results for: %s"
msgstr "結果: %s"
-#: src/Module/Contact.php:466
+#: src/Module/Contact.php:448
msgid "Update"
msgstr "更新"
-#: src/Module/Contact.php:467 src/Module/Contact/Profile.php:518
-#: src/Module/Moderation/Blocklist/Contact.php:117
-#: src/Module/Moderation/Users/Blocked.php:138
-#: src/Module/Moderation/Users/Index.php:154
+#: src/Module/Contact.php:449 src/Module/Contact/Profile.php:518
+#: src/Module/Moderation/Blocklist/Contact.php:103
+#: src/Module/Moderation/Users/Blocked.php:124
+#: src/Module/Moderation/Users/Index.php:140
msgid "Unblock"
msgstr "ブロック解除"
-#: src/Module/Contact.php:468 src/Module/Contact/Profile.php:526
+#: src/Module/Contact.php:450 src/Module/Contact/Profile.php:526
msgid "Unignore"
msgstr "無視しない"
-#: src/Module/Contact.php:469 src/Module/Contact/Profile.php:534
+#: src/Module/Contact.php:451 src/Module/Contact/Profile.php:534
msgid "Uncollapse"
msgstr ""
-#: src/Module/Contact.php:471
+#: src/Module/Contact.php:453
msgid "Batch Actions"
msgstr "バッチアクション"
-#: src/Module/Contact.php:514
+#: src/Module/Contact.php:496
msgid "Conversations started by this contact"
msgstr "このコンタクトが開始した会話"
-#: src/Module/Contact.php:519
+#: src/Module/Contact.php:501
msgid "Posts and Comments"
msgstr "投稿とコメント"
-#: src/Module/Contact.php:522
+#: src/Module/Contact.php:504
msgid "Individual Posts and Replies"
msgstr ""
-#: src/Module/Contact.php:530
+#: src/Module/Contact.php:512
msgid "Posts containing media objects"
msgstr ""
-#: src/Module/Contact.php:538
+#: src/Module/Contact.php:520
msgid "View all known contacts"
msgstr ""
-#: src/Module/Contact.php:549
+#: src/Module/Contact.php:531
msgid "Advanced Contact Settings"
msgstr "高度なコンタクト設定"
-#: src/Module/Contact.php:585
+#: src/Module/Contact.php:567
msgid "Mutual Friendship"
msgstr "相互フォロー"
-#: src/Module/Contact.php:589
+#: src/Module/Contact.php:571
msgid "is a fan of yours"
msgstr "あなたのファンです"
-#: src/Module/Contact.php:593
+#: src/Module/Contact.php:575
msgid "you are a fan of"
msgstr "あなたはファンです"
-#: src/Module/Contact.php:611
+#: src/Module/Contact.php:593
msgid "Pending outgoing contact request"
msgstr "保留中の送信済みコンタクトリクエスト"
-#: src/Module/Contact.php:613
+#: src/Module/Contact.php:595
msgid "Pending incoming contact request"
msgstr "保留中の受信済みコンタクトリクエスト"
-#: src/Module/Contact.php:626 src/Module/Contact/Profile.php:377
+#: src/Module/Contact.php:608 src/Module/Contact/Profile.php:377
#, php-format
msgid "Visit %s's profile [%s]"
msgstr "%sのプロフィール[ %s ]を開く"
-#: src/Module/Contact/Advanced.php:99
+#: src/Module/Contact/Advanced.php:85
msgid "Contact update failed."
msgstr "コンタクトの更新に失敗しました。"
-#: src/Module/Contact/Advanced.php:130
+#: src/Module/Contact/Advanced.php:116
msgid "Return to contact editor"
msgstr "コンタクトエディターに戻る"
-#: src/Module/Contact/Advanced.php:134
-#: src/Module/Moderation/Blocklist/Contact.php:122
-#: src/Module/Moderation/Reports.php:110
-#: src/Module/Moderation/Users/Active.php:126
-#: src/Module/Moderation/Users/Blocked.php:126
-#: src/Module/Moderation/Users/Create.php:70
-#: src/Module/Moderation/Users/Deleted.php:83
-#: src/Module/Moderation/Users/Index.php:140
-#: src/Module/Moderation/Users/Index.php:160
-#: src/Module/Moderation/Users/Pending.php:99 src/Module/Settings/OAuth.php:72
+#: src/Module/Contact/Advanced.php:120
+#: src/Module/Moderation/Blocklist/Contact.php:108
+#: src/Module/Moderation/Reports.php:102
+#: src/Module/Moderation/Users/Active.php:112
+#: src/Module/Moderation/Users/Blocked.php:112
+#: src/Module/Moderation/Users/Create.php:56
+#: src/Module/Moderation/Users/Deleted.php:69
+#: src/Module/Moderation/Users/Index.php:126
+#: src/Module/Moderation/Users/Index.php:146
+#: src/Module/Moderation/Users/Pending.php:85 src/Module/Settings/OAuth.php:58
msgid "Name"
msgstr "名"
-#: src/Module/Contact/Advanced.php:135
+#: src/Module/Contact/Advanced.php:121
msgid "Account Nickname"
msgstr "アカウントのニックネーム"
-#: src/Module/Contact/Advanced.php:136
+#: src/Module/Contact/Advanced.php:122
msgid "Account URL"
msgstr "アカウントURL"
-#: src/Module/Contact/Advanced.php:137
+#: src/Module/Contact/Advanced.php:123
msgid "Poll/Feed URL"
msgstr "ポーリング/フィードURL"
-#: src/Module/Contact/Advanced.php:138
+#: src/Module/Contact/Advanced.php:124
msgid "New photo from this URL"
msgstr "このURLからの新しい写真"
-#: src/Module/Contact/Contacts.php:89
+#: src/Module/Contact/Contacts.php:75
msgid "No known contacts."
msgstr ""
-#: src/Module/Contact/Contacts.php:103 src/Module/Profile/Common.php:128
+#: src/Module/Contact/Contacts.php:89 src/Module/Profile/Common.php:114
msgid "No common contacts."
msgstr ""
-#: src/Module/Contact/Contacts.php:115 src/Module/Profile/Contacts.php:135
+#: src/Module/Contact/Contacts.php:101 src/Module/Profile/Contacts.php:121
#, php-format
msgid "Follower (%s)"
msgid_plural "Followers (%s)"
msgstr[0] "フォロワー( %s )"
-#: src/Module/Contact/Contacts.php:119 src/Module/Profile/Contacts.php:138
+#: src/Module/Contact/Contacts.php:105 src/Module/Profile/Contacts.php:124
#, php-format
msgid "Following (%s)"
msgid_plural "Following (%s)"
msgstr[0] "フォロー中( %s )"
-#: src/Module/Contact/Contacts.php:123 src/Module/Profile/Contacts.php:141
+#: src/Module/Contact/Contacts.php:109 src/Module/Profile/Contacts.php:127
#, php-format
msgid "Mutual friend (%s)"
msgid_plural "Mutual friends (%s)"
msgstr[0] "相互の友人( %s )"
-#: src/Module/Contact/Contacts.php:125 src/Module/Profile/Contacts.php:143
+#: src/Module/Contact/Contacts.php:111 src/Module/Profile/Contacts.php:129
#, php-format
msgid "These contacts both follow and are followed by %s."
msgstr ""
-#: src/Module/Contact/Contacts.php:131 src/Module/Profile/Common.php:116
+#: src/Module/Contact/Contacts.php:117 src/Module/Profile/Common.php:102
#, php-format
msgid "Common contact (%s)"
msgid_plural "Common contacts (%s)"
msgstr[0] ""
-#: src/Module/Contact/Contacts.php:133 src/Module/Profile/Common.php:118
+#: src/Module/Contact/Contacts.php:119 src/Module/Profile/Common.php:104
#, php-format
msgid ""
"Both %s and yourself have publicly interacted with these "
"contacts (follow, comment or likes on public posts)."
msgstr ""
-#: src/Module/Contact/Contacts.php:139 src/Module/Profile/Contacts.php:149
+#: src/Module/Contact/Contacts.php:125 src/Module/Profile/Contacts.php:135
#, php-format
msgid "Contact (%s)"
msgid_plural "Contacts (%s)"
msgstr[0] "コンタクト( %s )"
-#: src/Module/Contact/Follow.php:70 src/Module/Contact/Redir.php:63
-#: src/Module/Contact/Redir.php:223 src/Module/Conversation/Community.php:166
-#: src/Module/Debug/ItemBody.php:38 src/Module/Diaspora/Receive.php:57
-#: src/Module/Item/Display.php:96 src/Module/Item/Feed.php:59
-#: src/Module/Item/Follow.php:41 src/Module/Item/Ignore.php:41
-#: src/Module/Item/Language.php:53 src/Module/Item/Pin.php:41
-#: src/Module/Item/Pin.php:56 src/Module/Item/Searchtext.php:53
-#: src/Module/Item/Star.php:42 src/Module/Update/Display.php:37
+#: src/Module/Contact/Follow.php:56 src/Module/Contact/Redir.php:45
+#: src/Module/Contact/Redir.php:206 src/Module/Conversation/Community.php:154
+#: src/Module/Debug/ItemBody.php:24 src/Module/Diaspora/Receive.php:45
+#: src/Module/Item/Display.php:82 src/Module/Item/Feed.php:45
+#: src/Module/Item/Follow.php:27 src/Module/Item/Ignore.php:27
+#: src/Module/Item/Language.php:39 src/Module/Item/Pin.php:27
+#: src/Module/Item/Pin.php:42 src/Module/Item/Searchtext.php:39
+#: src/Module/Item/Star.php:28 src/Module/Update/Display.php:23
msgid "Access denied."
msgstr "アクセスが拒否されました。"
-#: src/Module/Contact/Follow.php:105 src/Module/Contact/Unfollow.php:125
-#: src/Module/Profile/RemoteFollow.php:133
+#: src/Module/Contact/Follow.php:91 src/Module/Contact/Unfollow.php:111
+#: src/Module/Profile/RemoteFollow.php:119
msgid "Submit Request"
msgstr "リクエストを送る"
-#: src/Module/Contact/Follow.php:115
+#: src/Module/Contact/Follow.php:101
msgid "You already added this contact."
msgstr "このコンタクトは既に追加されています。"
-#: src/Module/Contact/Follow.php:130
+#: src/Module/Contact/Follow.php:116
msgid "The network type couldn't be detected. Contact can't be added."
msgstr "ネットワークの種類を検出できませんでした。コンタクトを追加できません。"
-#: src/Module/Contact/Follow.php:138
+#: src/Module/Contact/Follow.php:124
msgid "Diaspora support isn't enabled. Contact can't be added."
msgstr "Diasporaのサポートは有効になっていません。コンタクトを追加できません。"
-#: src/Module/Contact/Follow.php:143
-msgid "OStatus support is disabled. Contact can't be added."
-msgstr "OStatusサポートは無効です。コンタクトを追加できません。"
-
-#: src/Module/Contact/Follow.php:168 src/Module/Profile/RemoteFollow.php:132
+#: src/Module/Contact/Follow.php:149 src/Module/Profile/RemoteFollow.php:118
msgid "Please answer the following:"
msgstr "以下に答えてください。"
-#: src/Module/Contact/Follow.php:169 src/Module/Contact/Unfollow.php:123
+#: src/Module/Contact/Follow.php:150 src/Module/Contact/Unfollow.php:109
msgid "Your Identity Address:"
msgstr "あなたのIdentityアドレス:"
-#: src/Module/Contact/Follow.php:170 src/Module/Contact/Profile.php:408
-#: src/Module/Contact/Unfollow.php:129
-#: src/Module/Moderation/Blocklist/Contact.php:131
-#: src/Module/Moderation/Reports.php:117
-#: src/Module/Notifications/Introductions.php:129
-#: src/Module/Notifications/Introductions.php:198
+#: src/Module/Contact/Follow.php:151 src/Module/Contact/Profile.php:408
+#: src/Module/Contact/Unfollow.php:115
+#: src/Module/Moderation/Blocklist/Contact.php:117
+#: src/Module/Moderation/Reports.php:109
+#: src/Module/Notifications/Introductions.php:121
+#: src/Module/Notifications/Introductions.php:190
msgid "Profile URL"
msgstr "プロフィールURL"
-#: src/Module/Contact/Follow.php:171 src/Module/Contact/Profile.php:420
-#: src/Module/Notifications/Introductions.php:191
-#: src/Module/Profile/Profile.php:234
+#: src/Module/Contact/Follow.php:152 src/Module/Contact/Profile.php:420
+#: src/Module/Notifications/Introductions.php:183
+#: src/Module/Profile/Profile.php:222
msgid "Tags:"
msgstr "タグ:"
-#: src/Module/Contact/Follow.php:182
+#: src/Module/Contact/Follow.php:163
#, php-format
msgid "%s knows you"
msgstr "%sはあなたを知っています"
-#: src/Module/Contact/Follow.php:183
+#: src/Module/Contact/Follow.php:164
msgid "Add a personal note:"
msgstr "個人メモを追加します。"
-#: src/Module/Contact/Follow.php:192 src/Module/Contact/Unfollow.php:138
+#: src/Module/Contact/Follow.php:173 src/Module/Contact/Unfollow.php:124
msgid "Posts and Replies"
msgstr ""
-#: src/Module/Contact/Follow.php:221
+#: src/Module/Contact/Follow.php:202
msgid "The contact could not be added."
msgstr "コンタクトを追加できませんでした。"
-#: src/Module/Contact/MatchInterests.php:95
-#: src/Module/Media/Attachment/Upload.php:77
-#: src/Module/Media/Attachment/Upload.php:82
-#: src/Module/Media/Photo/Upload.php:81 src/Module/Media/Photo/Upload.php:86
-#: src/Module/Media/Photo/Upload.php:135
+#: src/Module/Contact/MatchInterests.php:81
+#: src/Module/Media/Attachment/Upload.php:63
+#: src/Module/Media/Attachment/Upload.php:68
+#: src/Module/Media/Photo/Upload.php:67 src/Module/Media/Photo/Upload.php:72
+#: src/Module/Media/Photo/Upload.php:121
msgid "Invalid request."
msgstr "無効なリクエストです。"
-#: src/Module/Contact/MatchInterests.php:102
+#: src/Module/Contact/MatchInterests.php:88
msgid "No keywords to match. Please add keywords to your profile."
msgstr "合致するキーワードが有りません。あなたのプロフィールにキーワードを追加してください。"
-#: src/Module/Contact/MatchInterests.php:145
+#: src/Module/Contact/MatchInterests.php:141
msgid "Profile Match"
msgstr "一致するプロフィール"
-#: src/Module/Contact/Profile.php:145
+#: src/Module/Contact/Profile.php:131
msgid "Failed to update contact record."
msgstr "コンタクトレコードを更新できませんでした。"
@@ -6829,7 +6841,7 @@ msgid "Block/Unblock contact"
msgstr "コンタクトのブロック/ブロック解除"
#: src/Module/Contact/Profile.php:379
-#: src/Module/Moderation/Report/Create.php:293
+#: src/Module/Moderation/Report/Create.php:279
msgid "Ignore contact"
msgstr "コンタクトを無視"
@@ -6874,7 +6886,7 @@ msgid "Manage remote servers"
msgstr ""
#: src/Module/Contact/Profile.php:400
-#: src/Module/Notifications/Introductions.php:192
+#: src/Module/Notifications/Introductions.php:184
msgid "Hide this contact from others"
msgstr "このコンタクトを他の人から隠す"
@@ -6902,12 +6914,12 @@ msgid ""
msgstr "「情報とキーワードの取得」が選択されている場合、ハッシュタグに変換しないキーワードのカンマ区切りリスト"
#: src/Module/Contact/Profile.php:421
-#: src/Module/Settings/TwoFactor/Index.php:160
+#: src/Module/Settings/TwoFactor/Index.php:146
msgid "Actions"
msgstr "操作"
#: src/Module/Contact/Profile.php:423
-#: src/Module/Settings/TwoFactor/Index.php:140 view/theme/frio/theme.php:232
+#: src/Module/Settings/TwoFactor/Index.php:126 view/theme/frio/theme.php:220
msgid "Status"
msgstr "状態"
@@ -6982,8 +6994,8 @@ msgstr ""
#: src/Module/Contact/Profile.php:441
msgid ""
-"If enabled, posts from this contact will only appear in channels, but not in"
-" the network stream."
+"If enabled, posts from this contact will only appear in channels and network"
+" streams in circles, but not in the general network stream."
msgstr ""
#: src/Module/Contact/Profile.php:509
@@ -7002,7 +7014,7 @@ msgstr "無視ステータスの切り替え"
msgid "Toggle Collapsed status"
msgstr ""
-#: src/Module/Contact/Profile.php:543 src/Module/Contact/Revoke.php:106
+#: src/Module/Contact/Profile.php:543 src/Module/Contact/Revoke.php:89
msgid "Revoke Follow"
msgstr ""
@@ -7010,638 +7022,634 @@ msgstr ""
msgid "Revoke the follow from this contact"
msgstr ""
-#: src/Module/Contact/Redir.php:135 src/Module/Contact/Redir.php:187
+#: src/Module/Contact/Redir.php:125
msgid "Bad Request."
msgstr "要求の形式が正しくありません。"
-#: src/Module/Contact/Revoke.php:63
-msgid "Unknown contact."
-msgstr ""
-
-#: src/Module/Contact/Revoke.php:77
+#: src/Module/Contact/Revoke.php:60
msgid "Contact is being deleted."
msgstr ""
-#: src/Module/Contact/Revoke.php:91
+#: src/Module/Contact/Revoke.php:74
msgid "Follow was successfully revoked."
msgstr ""
-#: src/Module/Contact/Revoke.php:107
+#: src/Module/Contact/Revoke.php:90
msgid ""
"Do you really want to revoke this contact's follow? This cannot be undone "
"and they will have to manually follow you back again."
msgstr ""
-#: src/Module/Contact/Suggestions.php:62
+#: src/Module/Contact/Suggestions.php:48
msgid ""
"No suggestions available. If this is a new site, please try again in 24 "
"hours."
msgstr "利用可能な提案はありません。新しいサイトの場合は、24時間後にもう一度お試しください。"
-#: src/Module/Contact/Unfollow.php:98 src/Module/Contact/Unfollow.php:167
+#: src/Module/Contact/Unfollow.php:84 src/Module/Contact/Unfollow.php:153
msgid "You aren't following this contact."
msgstr "あなたはこのコンタクトをフォローしていません"
-#: src/Module/Contact/Unfollow.php:103
+#: src/Module/Contact/Unfollow.php:89
msgid "Unfollowing is currently not supported by your network."
msgstr "現在、フォロー解除はあなたのネットワークではサポートされていません"
-#: src/Module/Contact/Unfollow.php:121
+#: src/Module/Contact/Unfollow.php:107
msgid "Disconnect/Unfollow"
msgstr "接続・フォローを解除"
-#: src/Module/Contact/Unfollow.php:175
+#: src/Module/Contact/Unfollow.php:161
msgid "Contact was successfully unfollowed"
msgstr ""
-#: src/Module/Contact/Unfollow.php:178
+#: src/Module/Contact/Unfollow.php:164
msgid "Unable to unfollow this contact, please contact your administrator"
msgstr ""
-#: src/Module/Conversation/Channel.php:139
-#: src/Module/Conversation/Community.php:126 src/Module/Search/Index.php:152
-#: src/Module/Search/Index.php:194
+#: src/Module/Conversation/Channel.php:125
+#: src/Module/Conversation/Community.php:114 src/Module/Search/Index.php:138
+#: src/Module/Search/Index.php:180
msgid "No results."
msgstr "結果がありません。"
-#: src/Module/Conversation/Channel.php:177
+#: src/Module/Conversation/Channel.php:163
msgid "Channel not available."
msgstr ""
-#: src/Module/Conversation/Community.php:92
+#: src/Module/Conversation/Community.php:80
msgid ""
"This community stream shows all public posts received by this node. They may"
" not reflect the opinions of this node’s users."
msgstr "このコミュニティストリームには、このノードが受信したすべての一般公開投稿が表示されます。このノードのユーザーの意見を反映していない場合があります。"
-#: src/Module/Conversation/Community.php:180
+#: src/Module/Conversation/Community.php:168
msgid "Community option not available."
msgstr "コミュニティオプションは利用できません。"
-#: src/Module/Conversation/Community.php:196
+#: src/Module/Conversation/Community.php:184
msgid "Not available."
msgstr "利用不可。"
-#: src/Module/Conversation/Network.php:214
+#: src/Module/Conversation/Network.php:202
msgid "No such circle"
msgstr ""
-#: src/Module/Conversation/Network.php:218
+#: src/Module/Conversation/Network.php:206
#, php-format
msgid "Circle: %s"
msgstr ""
-#: src/Module/Conversation/Network.php:237
+#: src/Module/Conversation/Network.php:226
#, php-format
msgid "Error %d (%s) while fetching the timeline."
msgstr ""
-#: src/Module/Conversation/Network.php:314
+#: src/Module/Conversation/Network.php:304
msgid "Network feed not available."
msgstr ""
-#: src/Module/Conversation/Timeline.php:203
+#: src/Module/Conversation/Timeline.php:190
msgid "Include"
msgstr ""
-#: src/Module/Conversation/Timeline.php:204
+#: src/Module/Conversation/Timeline.php:191
msgid "Hide"
msgstr ""
-#: src/Module/Credits.php:44
+#: src/Module/Credits.php:30
msgid "Credits"
msgstr "クレジット"
-#: src/Module/Credits.php:45
+#: src/Module/Credits.php:31
msgid ""
"Friendica is a community project, that would not be possible without the "
"help of many people. Here is a list of those who have contributed to the "
"code or the translation of Friendica. Thank you all!"
msgstr "Friendicaはコミュニティプロジェクトであり、多くの人々の助けがなければ不可能です。以下は、Friendicaのコードまたは翻訳に貢献した人のリストです。皆さん、ありがとうございました!"
-#: src/Module/Debug/ActivityPubConversion.php:53
+#: src/Module/Debug/ActivityPubConversion.php:45
msgid "Formatted"
msgstr ""
-#: src/Module/Debug/ActivityPubConversion.php:65
+#: src/Module/Debug/ActivityPubConversion.php:57
msgid "Activity"
msgstr ""
-#: src/Module/Debug/ActivityPubConversion.php:117
+#: src/Module/Debug/ActivityPubConversion.php:109
msgid "Object data"
msgstr ""
-#: src/Module/Debug/ActivityPubConversion.php:124
+#: src/Module/Debug/ActivityPubConversion.php:116
msgid "Result Item"
msgstr ""
-#: src/Module/Debug/ActivityPubConversion.php:129
-#: src/Module/Debug/Babel.php:294 src/Module/Moderation/Item/Source.php:87
-#: src/Module/Security/TwoFactor/Verify.php:98
+#: src/Module/Debug/ActivityPubConversion.php:121
+#: src/Module/Debug/Babel.php:286 src/Module/Moderation/Item/Source.php:79
+#: src/Module/Security/TwoFactor/Verify.php:84
msgid "Error"
msgid_plural "Errors"
msgstr[0] "エラー"
-#: src/Module/Debug/ActivityPubConversion.php:138
+#: src/Module/Debug/ActivityPubConversion.php:130
msgid "Source activity"
msgstr ""
-#: src/Module/Debug/Babel.php:52
+#: src/Module/Debug/Babel.php:44
msgid "Source input"
msgstr "ソース入力"
-#: src/Module/Debug/Babel.php:58
+#: src/Module/Debug/Babel.php:50
msgid "BBCode::toPlaintext"
msgstr "BBCode :: toPlaintext"
-#: src/Module/Debug/Babel.php:64
+#: src/Module/Debug/Babel.php:56
msgid "BBCode::convert (raw HTML)"
msgstr "BBCode :: convert(生のHTML)"
-#: src/Module/Debug/Babel.php:69
+#: src/Module/Debug/Babel.php:61
msgid "BBCode::convert (hex)"
msgstr ""
-#: src/Module/Debug/Babel.php:74
+#: src/Module/Debug/Babel.php:66
msgid "BBCode::convert"
msgstr "BBCode :: convert"
-#: src/Module/Debug/Babel.php:80
+#: src/Module/Debug/Babel.php:72
msgid "BBCode::convert => HTML::toBBCode"
msgstr "BBCode :: convert => HTML :: toBBCode"
-#: src/Module/Debug/Babel.php:86
+#: src/Module/Debug/Babel.php:78
msgid "BBCode::toMarkdown"
msgstr "BBCode :: toMarkdown"
-#: src/Module/Debug/Babel.php:92
+#: src/Module/Debug/Babel.php:84
msgid "BBCode::toMarkdown => Markdown::convert (raw HTML)"
msgstr "BBCode::toMarkdown => Markdown::convert (raw HTML)"
-#: src/Module/Debug/Babel.php:96
+#: src/Module/Debug/Babel.php:88
msgid "BBCode::toMarkdown => Markdown::convert"
msgstr "BBCode :: toMarkdown => Markdown :: convert"
-#: src/Module/Debug/Babel.php:102
+#: src/Module/Debug/Babel.php:94
msgid "BBCode::toMarkdown => Markdown::toBBCode"
msgstr "BBCode :: toMarkdown => Markdown :: toBBCode"
-#: src/Module/Debug/Babel.php:108
+#: src/Module/Debug/Babel.php:100
msgid "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode"
msgstr "BBCode :: toMarkdown => Markdown :: convert => HTML :: toBBCode"
-#: src/Module/Debug/Babel.php:116
+#: src/Module/Debug/Babel.php:108
msgid "Item Body"
msgstr "項目本体"
-#: src/Module/Debug/Babel.php:120
+#: src/Module/Debug/Babel.php:112
msgid "Item Tags"
msgstr "項目タグ"
-#: src/Module/Debug/Babel.php:126
+#: src/Module/Debug/Babel.php:118
msgid "PageInfo::appendToBody"
msgstr ""
-#: src/Module/Debug/Babel.php:131
+#: src/Module/Debug/Babel.php:123
msgid "PageInfo::appendToBody => BBCode::convert (raw HTML)"
msgstr ""
-#: src/Module/Debug/Babel.php:135
+#: src/Module/Debug/Babel.php:127
msgid "PageInfo::appendToBody => BBCode::convert"
msgstr ""
-#: src/Module/Debug/Babel.php:142
+#: src/Module/Debug/Babel.php:134
msgid "Source input (Diaspora format)"
msgstr "ソース入力(Diaspora形式)"
-#: src/Module/Debug/Babel.php:151
+#: src/Module/Debug/Babel.php:143
msgid "Source input (Markdown)"
msgstr ""
-#: src/Module/Debug/Babel.php:157
+#: src/Module/Debug/Babel.php:149
msgid "Markdown::convert (raw HTML)"
msgstr "Markdown :: convert(生のHTML)"
-#: src/Module/Debug/Babel.php:162
+#: src/Module/Debug/Babel.php:154
msgid "Markdown::convert"
msgstr "Markdown :: convert"
-#: src/Module/Debug/Babel.php:168
+#: src/Module/Debug/Babel.php:160
msgid "Markdown::toBBCode"
msgstr "Markdown :: toBBCode"
-#: src/Module/Debug/Babel.php:175
+#: src/Module/Debug/Babel.php:167
msgid "Raw HTML input"
msgstr "生のHTML入力"
-#: src/Module/Debug/Babel.php:180
+#: src/Module/Debug/Babel.php:172
msgid "HTML Input"
msgstr "HTML入力"
-#: src/Module/Debug/Babel.php:187
+#: src/Module/Debug/Babel.php:179
msgid "HTML Purified (raw)"
msgstr ""
-#: src/Module/Debug/Babel.php:192
+#: src/Module/Debug/Babel.php:184
msgid "HTML Purified (hex)"
msgstr ""
-#: src/Module/Debug/Babel.php:197
+#: src/Module/Debug/Babel.php:189
msgid "HTML Purified"
msgstr ""
-#: src/Module/Debug/Babel.php:203
+#: src/Module/Debug/Babel.php:195
msgid "HTML::toBBCode"
msgstr "HTML :: toBBCode"
-#: src/Module/Debug/Babel.php:209
+#: src/Module/Debug/Babel.php:201
msgid "HTML::toBBCode => BBCode::convert"
msgstr "HTML :: toBBCode => BBCode :: convert"
-#: src/Module/Debug/Babel.php:214
+#: src/Module/Debug/Babel.php:206
msgid "HTML::toBBCode => BBCode::convert (raw HTML)"
msgstr "HTML :: toBBCode => BBCode :: convert(生のHTML)"
-#: src/Module/Debug/Babel.php:220
+#: src/Module/Debug/Babel.php:212
msgid "HTML::toBBCode => BBCode::toPlaintext"
msgstr "HTML :: toBBCode => BBCode :: toPlaintext"
-#: src/Module/Debug/Babel.php:226
+#: src/Module/Debug/Babel.php:218
msgid "HTML::toMarkdown"
msgstr "HTML :: toMarkdown"
-#: src/Module/Debug/Babel.php:232
+#: src/Module/Debug/Babel.php:224
msgid "HTML::toPlaintext"
msgstr "HTML :: toPlaintext"
-#: src/Module/Debug/Babel.php:238
+#: src/Module/Debug/Babel.php:230
msgid "HTML::toPlaintext (compact)"
msgstr "HTML :: toPlaintext(コンパクト)"
-#: src/Module/Debug/Babel.php:256
+#: src/Module/Debug/Babel.php:248
msgid "Decoded post"
msgstr ""
-#: src/Module/Debug/Babel.php:277
+#: src/Module/Debug/Babel.php:269
msgid "Post array before expand entities"
msgstr ""
-#: src/Module/Debug/Babel.php:284
+#: src/Module/Debug/Babel.php:276
msgid "Post converted"
msgstr ""
-#: src/Module/Debug/Babel.php:289
+#: src/Module/Debug/Babel.php:281
msgid "Converted body"
msgstr ""
-#: src/Module/Debug/Babel.php:295
+#: src/Module/Debug/Babel.php:287
msgid "Twitter addon is absent from the addon/ folder."
msgstr ""
-#: src/Module/Debug/Babel.php:305
+#: src/Module/Debug/Babel.php:297
msgid "Babel Diagnostic"
msgstr ""
-#: src/Module/Debug/Babel.php:307
+#: src/Module/Debug/Babel.php:299
msgid "Source text"
msgstr "ソーステキスト"
-#: src/Module/Debug/Babel.php:308
+#: src/Module/Debug/Babel.php:300
msgid "BBCode"
msgstr "BBCode"
-#: src/Module/Debug/Babel.php:310
+#: src/Module/Debug/Babel.php:302
msgid "Markdown"
msgstr "マークダウン"
-#: src/Module/Debug/Babel.php:311
+#: src/Module/Debug/Babel.php:303
msgid "HTML"
msgstr "HTML"
-#: src/Module/Debug/Babel.php:313
+#: src/Module/Debug/Babel.php:305
msgid "Twitter Source / Tweet URL (requires API key)"
msgstr ""
-#: src/Module/Debug/Feed.php:53 src/Module/Filer/SaveTag.php:47
-#: src/Module/Settings/Profile/Index.php:177
+#: src/Module/Debug/Feed.php:39 src/Module/Filer/SaveTag.php:33
+#: src/Module/Settings/Profile/Index.php:166
msgid "You must be logged in to use this module"
msgstr "このモジュールを使用するにはログインする必要があります"
-#: src/Module/Debug/Feed.php:78
+#: src/Module/Debug/Feed.php:64
msgid "Source URL"
msgstr "ソースURL"
-#: src/Module/Debug/Localtime.php:49
+#: src/Module/Debug/Localtime.php:35
msgid "Time Conversion"
msgstr "時間変換"
-#: src/Module/Debug/Localtime.php:50
+#: src/Module/Debug/Localtime.php:36
msgid ""
"Friendica provides this service for sharing events with other networks and "
"friends in unknown timezones."
msgstr "Friendicaは、未知のタイムゾーンで他のネットワークや友人とイベントを共有するためにこのサービスを提供します。"
-#: src/Module/Debug/Localtime.php:51
+#: src/Module/Debug/Localtime.php:37
#, php-format
msgid "UTC time: %s"
msgstr "UTC時間: %s"
-#: src/Module/Debug/Localtime.php:54
+#: src/Module/Debug/Localtime.php:40
#, php-format
msgid "Current timezone: %s"
msgstr "現在のタイムゾーン: %s"
-#: src/Module/Debug/Localtime.php:58
+#: src/Module/Debug/Localtime.php:44
#, php-format
msgid "Converted localtime: %s"
msgstr "変換された現地時間: %s"
-#: src/Module/Debug/Localtime.php:62
+#: src/Module/Debug/Localtime.php:48
msgid "Please select your timezone:"
msgstr "タイムゾーンを選択してください:"
-#: src/Module/Debug/Probe.php:38 src/Module/Debug/WebFinger.php:37
+#: src/Module/Debug/Probe.php:24 src/Module/Debug/WebFinger.php:23
msgid "Only logged in users are permitted to perform a probing."
msgstr "ログインしているユーザーのみがプローブを実行できます。"
-#: src/Module/Debug/Probe.php:52
+#: src/Module/Debug/Probe.php:38
msgid "Probe Diagnostic"
msgstr ""
-#: src/Module/Debug/Probe.php:53
+#: src/Module/Debug/Probe.php:39
msgid "Output"
msgstr "出力"
-#: src/Module/Debug/Probe.php:56
+#: src/Module/Debug/Probe.php:42
msgid "Lookup address"
msgstr "ルックアップアドレス"
-#: src/Module/Debug/WebFinger.php:50
+#: src/Module/Debug/WebFinger.php:36
msgid "Webfinger Diagnostic"
msgstr ""
-#: src/Module/Debug/WebFinger.php:52
+#: src/Module/Debug/WebFinger.php:38
msgid "Lookup address:"
msgstr ""
-#: src/Module/Directory.php:74
+#: src/Module/Directory.php:61
msgid "No entries (some entries may be hidden)."
msgstr "エントリなし(一部のエントリは非表示になる場合があります)"
-#: src/Module/Directory.php:90
+#: src/Module/Directory.php:77
msgid "Find on this site"
msgstr "このサイトで見つける"
-#: src/Module/Directory.php:92
+#: src/Module/Directory.php:79
msgid "Results for:"
msgstr "の結果:"
-#: src/Module/Directory.php:94
+#: src/Module/Directory.php:81
msgid "Site Directory"
msgstr "サイトディレクトリ"
-#: src/Module/Filer/RemoveTag.php:105
+#: src/Module/Filer/RemoveTag.php:91
msgid "Item was not deleted"
msgstr ""
-#: src/Module/Filer/RemoveTag.php:115
+#: src/Module/Filer/RemoveTag.php:101
msgid "Item was not removed"
msgstr ""
-#: src/Module/Filer/SaveTag.php:73
+#: src/Module/Filer/SaveTag.php:59
msgid "- select -"
msgstr "-選択-"
-#: src/Module/FriendSuggest.php:82
+#: src/Module/FriendSuggest.php:68
msgid "Suggested contact not found."
msgstr "推奨コンタクトが見つかりません。"
-#: src/Module/FriendSuggest.php:100
+#: src/Module/FriendSuggest.php:86
msgid "Friend suggestion sent."
msgstr "友達の提案が送信されました。"
-#: src/Module/FriendSuggest.php:137
+#: src/Module/FriendSuggest.php:123
msgid "Suggest Friends"
msgstr "友人を示唆しています"
-#: src/Module/FriendSuggest.php:140
+#: src/Module/FriendSuggest.php:126
#, php-format
msgid "Suggest a friend for %s"
msgstr "%s友達を提案する"
-#: src/Module/Friendica.php:81
+#: src/Module/Friendica.php:67
msgid "Installed addons/apps:"
msgstr "インストールされたアドオン/アプリ:"
-#: src/Module/Friendica.php:86
+#: src/Module/Friendica.php:72
msgid "No installed addons/apps"
msgstr "アドオン/アプリがインストールされていません"
-#: src/Module/Friendica.php:91
+#: src/Module/Friendica.php:77
#, php-format
msgid "Read about the Terms of Service of this node."
msgstr "このノードの利用規約について読んでください。"
-#: src/Module/Friendica.php:98
+#: src/Module/Friendica.php:84
msgid "On this server the following remote servers are blocked."
msgstr "このサーバーでは、次のリモートサーバーがブロックされています。"
-#: src/Module/Friendica.php:101
-#: src/Module/Moderation/Blocklist/Server/Index.php:87
-#: src/Module/Moderation/Blocklist/Server/Index.php:111
-#: src/Module/Settings/Channels.php:232
+#: src/Module/Friendica.php:87
+#: src/Module/Moderation/Blocklist/Server/Index.php:73
+#: src/Module/Moderation/Blocklist/Server/Index.php:97
+#: src/Module/Settings/Channels.php:218
msgid "Reason for the block"
msgstr "ブロックの理由"
-#: src/Module/Friendica.php:103
+#: src/Module/Friendica.php:89
msgid "Download this list in CSV format"
msgstr ""
-#: src/Module/Friendica.php:117
+#: src/Module/Friendica.php:103
#, php-format
msgid ""
"This is Friendica, version %s that is running at the web location %s. The "
"database version is %s, the post update version is %s."
msgstr "これは、Webロケーション%s実行されているFriendicaバージョン%sです。データベースのバージョンは%s 、更新後のバージョンは%sです。"
-#: src/Module/Friendica.php:122
+#: src/Module/Friendica.php:108
msgid ""
"Please visit Friendi.ca to learn more "
"about the Friendica project."
msgstr "Friendicaプロジェクトの詳細については、 Friendi.ca をご覧ください。"
-#: src/Module/Friendica.php:123
+#: src/Module/Friendica.php:109
msgid "Bug reports and issues: please visit"
msgstr "バグレポートと問題:こちらをご覧ください"
-#: src/Module/Friendica.php:123
+#: src/Module/Friendica.php:109
msgid "the bugtracker at github"
msgstr "githubのバグトラッカー"
-#: src/Module/Friendica.php:124
+#: src/Module/Friendica.php:110
msgid "Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca"
msgstr "提案、ファンレターなどを \"info \" at \"friendi - dot - ca\"でお待ちしております。"
-#: src/Module/HCard.php:45
+#: src/Module/HCard.php:31
msgid "No profile"
msgstr "プロフィールなし"
-#: src/Module/HTTPException/MethodNotAllowed.php:31
+#: src/Module/HTTPException/MethodNotAllowed.php:17
msgid "Method Not Allowed."
msgstr "そのメソッドは許可されていません。"
-#: src/Module/Help.php:60
+#: src/Module/Help.php:46
msgid "Help:"
msgstr "ヘルプ:"
-#: src/Module/Home.php:63
+#: src/Module/Home.php:52
#, php-format
msgid "Welcome to %s"
msgstr "%sへようこそ"
-#: src/Module/Install.php:189
+#: src/Module/Install.php:175
msgid "Friendica Communications Server - Setup"
msgstr "Friendica Communications Server-セットアップ"
-#: src/Module/Install.php:200
+#: src/Module/Install.php:186
msgid "System check"
msgstr "システムチェック"
-#: src/Module/Install.php:202 src/Module/Install.php:247
-#: src/Module/Install.php:326
+#: src/Module/Install.php:188 src/Module/Install.php:233
+#: src/Module/Install.php:312
msgid "Requirement not satisfied"
msgstr "要件を満たしていない"
-#: src/Module/Install.php:203
+#: src/Module/Install.php:189
msgid "Optional requirement not satisfied"
msgstr "オプションの要件を満たしていない"
-#: src/Module/Install.php:204
+#: src/Module/Install.php:190
msgid "OK"
msgstr ""
-#: src/Module/Install.php:208
+#: src/Module/Install.php:194
msgid "Next"
msgstr "次"
-#: src/Module/Install.php:209
+#: src/Module/Install.php:195
msgid "Check again"
msgstr "再び確かめる"
-#: src/Module/Install.php:222
+#: src/Module/Install.php:208
msgid "Base settings"
msgstr "基本設定"
-#: src/Module/Install.php:224
+#: src/Module/Install.php:210
msgid "Base path to installation"
msgstr "インストールへの基本パス"
-#: src/Module/Install.php:226
+#: src/Module/Install.php:212
msgid ""
"If the system cannot detect the correct path to your installation, enter the"
" correct path here. This setting should only be set if you are using a "
"restricted system and symbolic links to your webroot."
msgstr "システムがインストールへの正しいパスを検出できない場合は、ここに正しいパスを入力します。この設定は、制限されたシステムとWebルートへのシンボリックリンクを使用している場合にのみ設定する必要があります。"
-#: src/Module/Install.php:229
+#: src/Module/Install.php:215
msgid "The Friendica system URL"
msgstr ""
-#: src/Module/Install.php:231
+#: src/Module/Install.php:217
msgid ""
"Overwrite this field in case the system URL determination isn't right, "
"otherwise leave it as is."
msgstr ""
-#: src/Module/Install.php:242
+#: src/Module/Install.php:228
msgid "Database connection"
msgstr "データベース接続"
-#: src/Module/Install.php:243
+#: src/Module/Install.php:229
msgid ""
"In order to install Friendica we need to know how to connect to your "
"database."
msgstr "Friendicaをインストールするには、データベースへの接続方法を知る必要があります。"
-#: src/Module/Install.php:244
+#: src/Module/Install.php:230
msgid ""
"Please contact your hosting provider or site administrator if you have "
"questions about these settings."
msgstr "これらの設定について質問がある場合は、ホスティングプロバイダーまたはサイト管理者にお問い合わせください。"
-#: src/Module/Install.php:245
+#: src/Module/Install.php:231
msgid ""
"The database you specify below should already exist. If it does not, please "
"create it before continuing."
msgstr "以下で指定するデータベースはすでに存在している必要があります。存在しない場合は、続行する前に作成してください。"
-#: src/Module/Install.php:252
+#: src/Module/Install.php:238
msgid "Database Server Name"
msgstr "データベースサーバー名"
-#: src/Module/Install.php:257
+#: src/Module/Install.php:243
msgid "Database Login Name"
msgstr "データベースのログイン名"
-#: src/Module/Install.php:263
+#: src/Module/Install.php:249
msgid "Database Login Password"
msgstr "データベースログインパスワード"
-#: src/Module/Install.php:265
+#: src/Module/Install.php:251
msgid "For security reasons the password must not be empty"
msgstr "セキュリティ上の理由から、パスワードを空にしないでください"
-#: src/Module/Install.php:268
+#: src/Module/Install.php:254
msgid "Database Name"
msgstr "データベース名"
-#: src/Module/Install.php:272 src/Module/Install.php:300
+#: src/Module/Install.php:258 src/Module/Install.php:286
msgid "Please select a default timezone for your website"
msgstr "ウェブサイトのデフォルトのタイムゾーンを選択してください"
-#: src/Module/Install.php:287
+#: src/Module/Install.php:273
msgid "Site settings"
msgstr "サイト設定"
-#: src/Module/Install.php:295
+#: src/Module/Install.php:281
msgid "Site administrator email address"
msgstr "サイト管理者のメールアドレス"
-#: src/Module/Install.php:297
+#: src/Module/Install.php:283
msgid ""
"Your account email address must match this in order to use the web admin "
"panel."
msgstr "ウェブ管理パネルを使用するには、アカウントのメールアドレスがこれと一致する必要があります。"
-#: src/Module/Install.php:304
+#: src/Module/Install.php:290
msgid "System Language:"
msgstr "システムの言語:"
-#: src/Module/Install.php:306
+#: src/Module/Install.php:292
msgid ""
"Set the default language for your Friendica installation interface and to "
"send emails."
msgstr "Friendicaインストールインターフェイスのデフォルト言語を設定し、メールを送信します。"
-#: src/Module/Install.php:318
+#: src/Module/Install.php:304
msgid "Your Friendica site database has been installed."
msgstr "Friendicaサイトデータベースがインストールされました。"
-#: src/Module/Install.php:328
+#: src/Module/Install.php:314
msgid "Installation finished"
msgstr "インストール完了"
-#: src/Module/Install.php:348
+#: src/Module/Install.php:334
msgid "The server domain pattern syntax is case-insensitive shell wildcard, comprising the following special characters:
\n" "This file can be downloaded from the /friendica
path of any "
"Friendica server.
debug.store_source
config key is set in "
"config/local.config.php
for future items to have sources."
msgstr ""
-#: src/Module/Moderation/Item/Source.php:92
+#: src/Module/Moderation/Item/Source.php:84
msgid "Item Guid"
msgstr "項目GUID"
-#: src/Module/Moderation/Report/Create.php:95
+#: src/Module/Moderation/Report/Create.php:81
msgid "Contact not found or their server is already blocked on this node."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:136
+#: src/Module/Moderation/Report/Create.php:122
msgid "Please login to access this page."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:165
-#: src/Module/Moderation/Report/Create.php:180
-#: src/Module/Moderation/Report/Create.php:208
-#: src/Module/Moderation/Report/Create.php:260
-#: src/Module/Moderation/Report/Create.php:279
+#: src/Module/Moderation/Report/Create.php:151
+#: src/Module/Moderation/Report/Create.php:166
+#: src/Module/Moderation/Report/Create.php:194
+#: src/Module/Moderation/Report/Create.php:246
+#: src/Module/Moderation/Report/Create.php:265
msgid "Create Moderation Report"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:166
+#: src/Module/Moderation/Report/Create.php:152
msgid "Pick Contact"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:167
+#: src/Module/Moderation/Report/Create.php:153
msgid ""
"Please enter below the contact address or profile URL you would like to "
"create a moderation report about."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:171
+#: src/Module/Moderation/Report/Create.php:157
msgid "Contact address/URL"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:181
+#: src/Module/Moderation/Report/Create.php:167
msgid "Pick Category"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:182
+#: src/Module/Moderation/Report/Create.php:168
msgid "Please pick below the category of your report."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:186
-#: src/Module/Moderation/Report/Create.php:311
+#: src/Module/Moderation/Report/Create.php:172
+#: src/Module/Moderation/Report/Create.php:297
msgid "Spam"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:186
+#: src/Module/Moderation/Report/Create.php:172
msgid ""
"This contact is publishing many repeated/overly long posts/replies or "
"advertising their product/websites in otherwise irrelevant conversations."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:187
-#: src/Module/Moderation/Report/Create.php:312
+#: src/Module/Moderation/Report/Create.php:173
+#: src/Module/Moderation/Report/Create.php:298
msgid "Illegal Content"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:187
+#: src/Module/Moderation/Report/Create.php:173
msgid ""
"This contact is publishing content that is considered illegal in this node's"
" hosting juridiction."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:188
-#: src/Module/Moderation/Report/Create.php:313
+#: src/Module/Moderation/Report/Create.php:174
+#: src/Module/Moderation/Report/Create.php:299
msgid "Community Safety"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:188
+#: src/Module/Moderation/Report/Create.php:174
msgid ""
"This contact aggravated you or other people, by being provocative or "
"insensitive, intentionally or not. This includes disclosing people's private"
@@ -8401,12 +8409,12 @@ msgid ""
"replies."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:189
-#: src/Module/Moderation/Report/Create.php:314
+#: src/Module/Moderation/Report/Create.php:175
+#: src/Module/Moderation/Report/Create.php:300
msgid "Unwanted Content/Behavior"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:189
+#: src/Module/Moderation/Report/Create.php:175
msgid ""
"This contact has repeatedly published content irrelevant to the node's theme"
" or is openly criticizing the node's administration/moderation without "
@@ -8414,89 +8422,89 @@ msgid ""
"nitpicking on a sensitive topic."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:190
-#: src/Module/Moderation/Report/Create.php:315
+#: src/Module/Moderation/Report/Create.php:176
+#: src/Module/Moderation/Report/Create.php:301
msgid "Rules Violation"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:190
+#: src/Module/Moderation/Report/Create.php:176
msgid ""
"This contact violated one or more rules of this node. You will be able to "
"pick which one(s) in the next step."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:191
+#: src/Module/Moderation/Report/Create.php:177
msgid ""
"Please elaborate below why you submitted this report. The more details you "
"provide, the better your report can be handled."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:193
+#: src/Module/Moderation/Report/Create.php:179
msgid "Additional Information"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:193
+#: src/Module/Moderation/Report/Create.php:179
msgid ""
"Please provide any additional information relevant to this particular "
"report. You will be able to attach posts by this contact in the next step, "
"but any context is welcome."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:209
+#: src/Module/Moderation/Report/Create.php:195
msgid "Pick Rules"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:210
+#: src/Module/Moderation/Report/Create.php:196
msgid "Please pick below the node rules you believe this contact violated."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:261
+#: src/Module/Moderation/Report/Create.php:247
msgid "Pick Posts"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:262
+#: src/Module/Moderation/Report/Create.php:248
msgid "Please optionally pick posts to attach to your report."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:281
+#: src/Module/Moderation/Report/Create.php:267
msgid "Submit Report"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:282
+#: src/Module/Moderation/Report/Create.php:268
msgid "Further Action"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:283
+#: src/Module/Moderation/Report/Create.php:269
msgid ""
"You can also perform one of the following action on the contact you "
"reported:"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:291
+#: src/Module/Moderation/Report/Create.php:277
msgid "Nothing"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:292
+#: src/Module/Moderation/Report/Create.php:278
msgid "Collapse contact"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:292
+#: src/Module/Moderation/Report/Create.php:278
msgid ""
"Their posts and replies will keep appearing in your Network page but their "
"content will be collapsed by default."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:293
+#: src/Module/Moderation/Report/Create.php:279
msgid ""
"Their posts won't appear in your Network page anymore, but their replies can"
" appear in forum threads. They still can follow you."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:294
+#: src/Module/Moderation/Report/Create.php:280
msgid "Block contact"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:294
+#: src/Module/Moderation/Report/Create.php:280
msgid ""
"Their posts won't appear in your Network page anymore, but their replies can"
" appear in forum threads, with their content collapsed by default. They "
@@ -8504,701 +8512,687 @@ msgid ""
"means."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:297
+#: src/Module/Moderation/Report/Create.php:283
msgid "Forward report"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:297
+#: src/Module/Moderation/Report/Create.php:283
msgid "Would you ike to forward this report to the remote server?"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:330
+#: src/Module/Moderation/Report/Create.php:316
msgid "1. Pick a contact"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:331
+#: src/Module/Moderation/Report/Create.php:317
msgid "2. Pick a category"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:332
+#: src/Module/Moderation/Report/Create.php:318
msgid "2a. Pick rules"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:333
+#: src/Module/Moderation/Report/Create.php:319
msgid "2b. Add comment"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:334
+#: src/Module/Moderation/Report/Create.php:320
msgid "3. Pick posts"
msgstr ""
-#: src/Module/Moderation/Reports.php:105
+#: src/Module/Moderation/Reports.php:97
msgid "List of reports"
msgstr ""
-#: src/Module/Moderation/Reports.php:106
+#: src/Module/Moderation/Reports.php:98
msgid "This page display reports created by our or remote users."
msgstr ""
-#: src/Module/Moderation/Reports.php:107
+#: src/Module/Moderation/Reports.php:99
msgid "No report exists at this node."
msgstr ""
-#: src/Module/Moderation/Reports.php:110
+#: src/Module/Moderation/Reports.php:102
msgid "Category"
msgstr ""
-#: src/Module/Moderation/Reports.php:114
+#: src/Module/Moderation/Reports.php:106
#, php-format
msgid "%s total report"
msgid_plural "%s total reports"
msgstr[0] ""
-#: src/Module/Moderation/Reports.php:117
+#: src/Module/Moderation/Reports.php:109
msgid "URL of the reported contact."
msgstr ""
-#: src/Module/Moderation/Summary.php:57 src/Module/Settings/Account.php:431
+#: src/Module/Moderation/Summary.php:43 src/Module/Settings/Account.php:422
msgid "Channel Relay"
msgstr ""
-#: src/Module/Moderation/Summary.php:77
+#: src/Module/Moderation/Summary.php:63
msgid "Registered users"
msgstr "登録ユーザー"
-#: src/Module/Moderation/Summary.php:79
+#: src/Module/Moderation/Summary.php:65
msgid "Pending registrations"
msgstr "保留中の登録"
-#: src/Module/Moderation/Users/Active.php:43
-#: src/Module/Moderation/Users/Index.php:43
+#: src/Module/Moderation/Users/Active.php:29
+#: src/Module/Moderation/Users/Index.php:29
#, php-format
msgid "%s user blocked"
msgid_plural "%s users blocked"
msgstr[0] "%sユーザーがブロックされました"
-#: src/Module/Moderation/Users/Active.php:51
-#: src/Module/Moderation/Users/Active.php:85
-#: src/Module/Moderation/Users/Blocked.php:51
-#: src/Module/Moderation/Users/Blocked.php:85
-#: src/Module/Moderation/Users/Index.php:58
-#: src/Module/Moderation/Users/Index.php:92
+#: src/Module/Moderation/Users/Active.php:37
+#: src/Module/Moderation/Users/Active.php:71
+#: src/Module/Moderation/Users/Blocked.php:37
+#: src/Module/Moderation/Users/Blocked.php:71
+#: src/Module/Moderation/Users/Index.php:44
+#: src/Module/Moderation/Users/Index.php:78
msgid "You can't remove yourself"
msgstr "自分を削除することはできません"
-#: src/Module/Moderation/Users/Active.php:55
-#: src/Module/Moderation/Users/Blocked.php:55
-#: src/Module/Moderation/Users/Index.php:62
+#: src/Module/Moderation/Users/Active.php:41
+#: src/Module/Moderation/Users/Blocked.php:41
+#: src/Module/Moderation/Users/Index.php:48
#, php-format
msgid "%s user deleted"
msgid_plural "%s users deleted"
msgstr[0] "%sユーザーが削除されました"
-#: src/Module/Moderation/Users/Active.php:83
-#: src/Module/Moderation/Users/Blocked.php:83
-#: src/Module/Moderation/Users/Index.php:90
+#: src/Module/Moderation/Users/Active.php:69
+#: src/Module/Moderation/Users/Blocked.php:69
+#: src/Module/Moderation/Users/Index.php:76
#, php-format
msgid "User \"%s\" deleted"
msgstr "ユーザー\"%s\"が削除されました"
-#: src/Module/Moderation/Users/Active.php:93
-#: src/Module/Moderation/Users/Index.php:100
+#: src/Module/Moderation/Users/Active.php:79
+#: src/Module/Moderation/Users/Index.php:86
#, php-format
msgid "User \"%s\" blocked"
msgstr "ユーザー\"%s\"がブロックされました"
-#: src/Module/Moderation/Users/Active.php:126
-#: src/Module/Moderation/Users/Blocked.php:126
-#: src/Module/Moderation/Users/Deleted.php:83
-#: src/Module/Moderation/Users/Index.php:140
-#: src/Module/Moderation/Users/Index.php:160
+#: src/Module/Moderation/Users/Active.php:112
+#: src/Module/Moderation/Users/Blocked.php:112
+#: src/Module/Moderation/Users/Deleted.php:69
+#: src/Module/Moderation/Users/Index.php:126
+#: src/Module/Moderation/Users/Index.php:146
msgid "Register date"
msgstr "登録日"
-#: src/Module/Moderation/Users/Active.php:126
-#: src/Module/Moderation/Users/Blocked.php:126
-#: src/Module/Moderation/Users/Deleted.php:83
-#: src/Module/Moderation/Users/Index.php:140
-#: src/Module/Moderation/Users/Index.php:160
+#: src/Module/Moderation/Users/Active.php:112
+#: src/Module/Moderation/Users/Blocked.php:112
+#: src/Module/Moderation/Users/Deleted.php:69
+#: src/Module/Moderation/Users/Index.php:126
+#: src/Module/Moderation/Users/Index.php:146
msgid "Last login"
msgstr "前回のログイン"
-#: src/Module/Moderation/Users/Active.php:126
-#: src/Module/Moderation/Users/Blocked.php:126
-#: src/Module/Moderation/Users/Deleted.php:83
-#: src/Module/Moderation/Users/Index.php:140
-#: src/Module/Moderation/Users/Index.php:160
+#: src/Module/Moderation/Users/Active.php:112
+#: src/Module/Moderation/Users/Blocked.php:112
+#: src/Module/Moderation/Users/Deleted.php:69
+#: src/Module/Moderation/Users/Index.php:126
+#: src/Module/Moderation/Users/Index.php:146
msgid "Last public item"
msgstr ""
-#: src/Module/Moderation/Users/Active.php:134
+#: src/Module/Moderation/Users/Active.php:120
msgid "Active Accounts"
msgstr ""
-#: src/Module/Moderation/Users/Active.php:138
-#: src/Module/Moderation/Users/Blocked.php:137
-#: src/Module/Moderation/Users/Index.php:153
+#: src/Module/Moderation/Users/Active.php:124
+#: src/Module/Moderation/Users/Blocked.php:123
+#: src/Module/Moderation/Users/Index.php:139
msgid "User blocked"
msgstr "ユーザーがブロックされました"
-#: src/Module/Moderation/Users/Active.php:139
-#: src/Module/Moderation/Users/Blocked.php:139
-#: src/Module/Moderation/Users/Index.php:155
+#: src/Module/Moderation/Users/Active.php:125
+#: src/Module/Moderation/Users/Blocked.php:125
+#: src/Module/Moderation/Users/Index.php:141
msgid "Site admin"
msgstr "サイト管理者"
-#: src/Module/Moderation/Users/Active.php:140
-#: src/Module/Moderation/Users/Blocked.php:140
-#: src/Module/Moderation/Users/Index.php:156
+#: src/Module/Moderation/Users/Active.php:126
+#: src/Module/Moderation/Users/Blocked.php:126
+#: src/Module/Moderation/Users/Index.php:142
msgid "Account expired"
msgstr "アカウントの有効期限が切れました"
-#: src/Module/Moderation/Users/Active.php:141
-#: src/Module/Moderation/Users/Index.php:159
+#: src/Module/Moderation/Users/Active.php:127
+#: src/Module/Moderation/Users/Index.php:145
msgid "Create a new user"
msgstr ""
-#: src/Module/Moderation/Users/Active.php:147
-#: src/Module/Moderation/Users/Blocked.php:146
-#: src/Module/Moderation/Users/Index.php:165
+#: src/Module/Moderation/Users/Active.php:133
+#: src/Module/Moderation/Users/Blocked.php:132
+#: src/Module/Moderation/Users/Index.php:151
msgid ""
"Selected users will be deleted!\\n\\nEverything these users had posted on "
"this site will be permanently deleted!\\n\\nAre you sure?"
msgstr "選択したユーザーは削除されます!\n\nこれらのユーザーがこのサイトに投稿したものはすべて完全に削除されます!\n\nよろしいですか?"
-#: src/Module/Moderation/Users/Active.php:148
-#: src/Module/Moderation/Users/Blocked.php:147
-#: src/Module/Moderation/Users/Index.php:166
+#: src/Module/Moderation/Users/Active.php:134
+#: src/Module/Moderation/Users/Blocked.php:133
+#: src/Module/Moderation/Users/Index.php:152
msgid ""
"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
"site will be permanently deleted!\\n\\nAre you sure?"
msgstr "ユーザー{0}は削除されます!\n\nこのユーザーがこのサイトに投稿したものはすべて完全に削除されます!\n\nよろしいですか?"
-#: src/Module/Moderation/Users/Blocked.php:43
-#: src/Module/Moderation/Users/Index.php:50
+#: src/Module/Moderation/Users/Blocked.php:29
+#: src/Module/Moderation/Users/Index.php:36
#, php-format
msgid "%s user unblocked"
msgid_plural "%s users unblocked"
msgstr[0] "%sユーザーのブロックを解除しました"
-#: src/Module/Moderation/Users/Blocked.php:92
-#: src/Module/Moderation/Users/Index.php:106
+#: src/Module/Moderation/Users/Blocked.php:78
+#: src/Module/Moderation/Users/Index.php:92
#, php-format
msgid "User \"%s\" unblocked"
msgstr "ユーザー\"%s\"のブロックを解除しました"
-#: src/Module/Moderation/Users/Blocked.php:134
+#: src/Module/Moderation/Users/Blocked.php:120
msgid "Blocked Users"
msgstr ""
-#: src/Module/Moderation/Users/Create.php:62
+#: src/Module/Moderation/Users/Create.php:48
msgid "New User"
msgstr "新しいユーザー"
-#: src/Module/Moderation/Users/Create.php:63
+#: src/Module/Moderation/Users/Create.php:49
msgid "Add User"
msgstr "ユーザーを追加する"
-#: src/Module/Moderation/Users/Create.php:70
+#: src/Module/Moderation/Users/Create.php:56
msgid "Name of the new user."
msgstr "新しいユーザーの名前。"
-#: src/Module/Moderation/Users/Create.php:71
+#: src/Module/Moderation/Users/Create.php:57
msgid "Nickname"
msgstr "ニックネーム"
-#: src/Module/Moderation/Users/Create.php:71
+#: src/Module/Moderation/Users/Create.php:57
msgid "Nickname of the new user."
msgstr "新しいユーザーのニックネーム。"
-#: src/Module/Moderation/Users/Create.php:72
+#: src/Module/Moderation/Users/Create.php:58
msgid "Email address of the new user."
msgstr "新しいユーザーのメールアドレス。"
-#: src/Module/Moderation/Users/Deleted.php:81
+#: src/Module/Moderation/Users/Deleted.php:67
msgid "Users awaiting permanent deletion"
msgstr ""
-#: src/Module/Moderation/Users/Deleted.php:83
-#: src/Module/Moderation/Users/Index.php:160
+#: src/Module/Moderation/Users/Deleted.php:69
+#: src/Module/Moderation/Users/Index.php:146
msgid "Permanent deletion"
msgstr "永久削除"
-#: src/Module/Moderation/Users/Index.php:150
+#: src/Module/Moderation/Users/Index.php:136
msgid "User waiting for permanent deletion"
msgstr "永久削除を待っているユーザー"
-#: src/Module/Moderation/Users/Pending.php:44
+#: src/Module/Moderation/Users/Pending.php:30
#, php-format
msgid "%s user approved"
msgid_plural "%s users approved"
msgstr[0] ""
-#: src/Module/Moderation/Users/Pending.php:51
+#: src/Module/Moderation/Users/Pending.php:37
#, php-format
msgid "%s registration revoked"
msgid_plural "%s registrations revoked"
msgstr[0] ""
-#: src/Module/Moderation/Users/Pending.php:76
+#: src/Module/Moderation/Users/Pending.php:62
msgid "Account approved."
msgstr "アカウントが承認されました。"
-#: src/Module/Moderation/Users/Pending.php:82
+#: src/Module/Moderation/Users/Pending.php:68
msgid "Registration revoked"
msgstr ""
-#: src/Module/Moderation/Users/Pending.php:97
+#: src/Module/Moderation/Users/Pending.php:83
msgid "User registrations awaiting review"
msgstr ""
-#: src/Module/Moderation/Users/Pending.php:99
+#: src/Module/Moderation/Users/Pending.php:85
msgid "Request date"
msgstr "依頼日"
-#: src/Module/Moderation/Users/Pending.php:100
+#: src/Module/Moderation/Users/Pending.php:86
msgid "No registrations."
msgstr "登録なし。"
-#: src/Module/Moderation/Users/Pending.php:101
+#: src/Module/Moderation/Users/Pending.php:87
msgid "Note from the user"
msgstr "ユーザーからのメモ"
-#: src/Module/Moderation/Users/Pending.php:103
+#: src/Module/Moderation/Users/Pending.php:89
msgid "Deny"
msgstr "拒否する"
-#: src/Module/Notifications/Introductions.php:99
+#: src/Module/Notifications/Introductions.php:91
msgid "Show Ignored Requests"
msgstr "無視されたリクエストを表示"
-#: src/Module/Notifications/Introductions.php:99
+#: src/Module/Notifications/Introductions.php:91
msgid "Hide Ignored Requests"
msgstr "無視されたリクエストを隠す"
-#: src/Module/Notifications/Introductions.php:115
-#: src/Module/Notifications/Introductions.php:178
+#: src/Module/Notifications/Introductions.php:107
+#: src/Module/Notifications/Introductions.php:170
msgid "Notification type:"
msgstr "通知の種類:"
-#: src/Module/Notifications/Introductions.php:118
+#: src/Module/Notifications/Introductions.php:110
msgid "Suggested by:"
msgstr "によって提案されました:"
-#: src/Module/Notifications/Introductions.php:143
+#: src/Module/Notifications/Introductions.php:135
msgid "Claims to be known to you: "
msgstr "あなたに知られているという主張:"
-#: src/Module/Notifications/Introductions.php:152
+#: src/Module/Notifications/Introductions.php:144
msgid "Shall your connection be bidirectional or not?"
msgstr "つながりを相互フォローにしてもよいですか?"
-#: src/Module/Notifications/Introductions.php:153
+#: src/Module/Notifications/Introductions.php:145
#, php-format
msgid ""
"Accepting %s as a friend allows %s to subscribe to your posts, and you will "
"also receive updates from them in your news feed."
msgstr "%s を友達として受け入れた場合、%s はあなたの投稿を購読できます。また、あなたのニュースフィードにこのアカウントの投稿が表示されます。"
-#: src/Module/Notifications/Introductions.php:154
+#: src/Module/Notifications/Introductions.php:146
#, php-format
msgid ""
"Accepting %s as a subscriber allows them to subscribe to your posts, but you"
" will not receive updates from them in your news feed."
msgstr "%sを購読者として受け入れると、このアカウントはあなたの投稿を購読できますが、このアカウントからの投稿はあなたのニュースフィードに表示されません。"
-#: src/Module/Notifications/Introductions.php:156
+#: src/Module/Notifications/Introductions.php:148
msgid "Friend"
msgstr "ともだち"
-#: src/Module/Notifications/Introductions.php:157
+#: src/Module/Notifications/Introductions.php:149
msgid "Subscriber"
msgstr "購読者"
-#: src/Module/Notifications/Introductions.php:216
+#: src/Module/Notifications/Introductions.php:208
msgid "No introductions."
msgstr "招待はありません。"
-#: src/Module/Notifications/Introductions.php:217
-#: src/Module/Notifications/Notifications.php:135
+#: src/Module/Notifications/Introductions.php:209
+#: src/Module/Notifications/Notifications.php:127
#, php-format
msgid "No more %s notifications."
msgstr "これ以上%s通知はありません。"
-#: src/Module/Notifications/Notification.php:135
+#: src/Module/Notifications/Notification.php:121
msgid "You must be logged in to show this page."
msgstr "このページを表示するにはログインする必要があります"
-#: src/Module/Notifications/Notifications.php:66
+#: src/Module/Notifications/Notifications.php:52
msgid "Network Notifications"
msgstr "ネットワーク通知"
-#: src/Module/Notifications/Notifications.php:72
+#: src/Module/Notifications/Notifications.php:58
msgid "System Notifications"
msgstr "システム通知"
-#: src/Module/Notifications/Notifications.php:78
+#: src/Module/Notifications/Notifications.php:64
msgid "Personal Notifications"
msgstr "個人的な通知"
-#: src/Module/Notifications/Notifications.php:84
+#: src/Module/Notifications/Notifications.php:70
msgid "Home Notifications"
msgstr "ホーム通知"
-#: src/Module/Notifications/Notifications.php:140
+#: src/Module/Notifications/Notifications.php:132
msgid "Show unread"
msgstr "未読を表示"
-#: src/Module/Notifications/Ping.php:220
+#: src/Module/Notifications/Ping.php:206
msgid "{0} requested registration"
msgstr "{0}は登録をリクエストしました"
-#: src/Module/Notifications/Ping.php:229
+#: src/Module/Notifications/Ping.php:215
#, php-format
msgid "{0} and %d others requested registration"
msgstr ""
-#: src/Module/OAuth/Acknowledge.php:51
+#: src/Module/OAuth/Acknowledge.php:37
msgid "Authorize application connection"
msgstr "アプリからの接続を承認します"
-#: src/Module/OAuth/Acknowledge.php:53
+#: src/Module/OAuth/Acknowledge.php:39
msgid ""
"Do you want to authorize this application to access your posts and contacts,"
" and/or create new posts for you?"
msgstr "このアプリケーションによる、あなたの投稿・コンタクトの読み取りや、新しい投稿の作成を許可しますか?"
-#: src/Module/OAuth/Authorize.php:54
+#: src/Module/OAuth/Authorize.php:40
msgid "Unsupported or missing response type"
msgstr ""
-#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:75
+#: src/Module/OAuth/Authorize.php:45 src/Module/OAuth/Token.php:61
msgid "Incomplete request data"
msgstr ""
-#: src/Module/OAuth/Authorize.php:106
+#: src/Module/OAuth/Authorize.php:92
#, php-format
msgid ""
"Please copy the following authentication code into your application and "
"close this window: %s"
msgstr ""
-#: src/Module/OAuth/Token.php:80
+#: src/Module/OAuth/Token.php:66
msgid "Invalid data or unknown client"
msgstr ""
-#: src/Module/OAuth/Token.php:105
+#: src/Module/OAuth/Token.php:91
msgid "Unsupported or missing grant type"
msgstr ""
-#: src/Module/OStatus/Repair.php:83
-msgid "Resubscribing to OStatus contacts"
-msgstr "Ostatusコンタクトをもう一度購読します"
-
-#: src/Module/OStatus/Repair.php:84 src/Module/OStatus/Subscribe.php:160
-msgid "Keep this window open until done."
-msgstr "ウィンドウを閉じずにお待ちください…"
-
-#: src/Module/OStatus/Repair.php:85
-msgid "✔ Done"
-msgstr ""
-
-#: src/Module/OStatus/Repair.php:86
-msgid "No OStatus contacts to resubscribe to."
-msgstr ""
-
-#: src/Module/OStatus/Subscribe.php:72
+#: src/Module/OStatus/Subscribe.php:58
msgid "Subscribing to contacts"
msgstr ""
-#: src/Module/OStatus/Subscribe.php:81
+#: src/Module/OStatus/Subscribe.php:67
msgid "No contact provided."
msgstr "コンタクトは提供されていません。"
-#: src/Module/OStatus/Subscribe.php:87
+#: src/Module/OStatus/Subscribe.php:73
msgid "Couldn't fetch information for contact."
msgstr "コンタクトの情報を取得できませんでした。"
-#: src/Module/OStatus/Subscribe.php:98
+#: src/Module/OStatus/Subscribe.php:84
msgid "Couldn't fetch friends for contact."
msgstr "コンタクトの友達関係を取得できませんでした。"
-#: src/Module/OStatus/Subscribe.php:104 src/Module/OStatus/Subscribe.php:115
+#: src/Module/OStatus/Subscribe.php:90 src/Module/OStatus/Subscribe.php:101
msgid "Couldn't fetch following contacts."
msgstr ""
-#: src/Module/OStatus/Subscribe.php:110
+#: src/Module/OStatus/Subscribe.php:96
msgid "Couldn't fetch remote profile."
msgstr ""
-#: src/Module/OStatus/Subscribe.php:120
+#: src/Module/OStatus/Subscribe.php:106
msgid "Unsupported network"
msgstr ""
-#: src/Module/OStatus/Subscribe.php:136
+#: src/Module/OStatus/Subscribe.php:122
msgid "Done"
msgstr "完了"
-#: src/Module/OStatus/Subscribe.php:150
+#: src/Module/OStatus/Subscribe.php:136
msgid "success"
msgstr "成功"
-#: src/Module/OStatus/Subscribe.php:152
+#: src/Module/OStatus/Subscribe.php:138
msgid "failed"
msgstr "失敗"
-#: src/Module/OStatus/Subscribe.php:155
+#: src/Module/OStatus/Subscribe.php:141
msgid "ignored"
msgstr "無視"
-#: src/Module/Photo.php:124
+#: src/Module/OStatus/Subscribe.php:146
+msgid "Keep this window open until done."
+msgstr "ウィンドウを閉じずにお待ちください…"
+
+#: src/Module/Photo.php:108
msgid "The Photo is not available."
msgstr ""
-#: src/Module/Photo.php:149
+#: src/Module/Photo.php:133
#, php-format
msgid "The Photo with id %s is not available."
msgstr "ID%sの写真は利用できません"
-#: src/Module/Photo.php:190
+#: src/Module/Photo.php:174
#, php-format
msgid "Invalid external resource with url %s."
msgstr ""
-#: src/Module/Photo.php:192
+#: src/Module/Photo.php:176
#, php-format
msgid "Invalid photo with id %s."
msgstr "ID %s の写真が無効です。"
-#: src/Module/Post/Edit.php:82 src/Module/Post/Edit.php:96
+#: src/Module/Post/Edit.php:68 src/Module/Post/Edit.php:82
msgid "Post not found."
msgstr ""
-#: src/Module/Post/Edit.php:102
+#: src/Module/Post/Edit.php:88
msgid "Edit post"
msgstr "投稿を編集"
-#: src/Module/Post/Edit.php:136
+#: src/Module/Post/Edit.php:122
msgid "web link"
msgstr "ウェブリンク"
-#: src/Module/Post/Edit.php:137
+#: src/Module/Post/Edit.php:123
msgid "Insert video link"
msgstr "ビデオリンクを挿入"
-#: src/Module/Post/Edit.php:138
+#: src/Module/Post/Edit.php:124
msgid "video link"
msgstr "ビデオリンク"
-#: src/Module/Post/Edit.php:139
+#: src/Module/Post/Edit.php:125
msgid "Insert audio link"
msgstr "オーディオリンクを挿入"
-#: src/Module/Post/Edit.php:140
+#: src/Module/Post/Edit.php:126
msgid "audio link"
msgstr "オーディオリンク"
-#: src/Module/Post/Tag/Remove.php:106
+#: src/Module/Post/Tag/Remove.php:92
msgid "Remove Item Tag"
msgstr "タグの削除"
-#: src/Module/Post/Tag/Remove.php:107
+#: src/Module/Post/Tag/Remove.php:93
msgid "Select a tag to remove: "
msgstr "削除するタグを選択:"
-#: src/Module/Post/Tag/Remove.php:108
-#: src/Module/Settings/TwoFactor/Trusted.php:147
+#: src/Module/Post/Tag/Remove.php:94
+#: src/Module/Settings/TwoFactor/Trusted.php:133
msgid "Remove"
msgstr "削除"
-#: src/Module/Privacy/PermissionTooltip.php:71
+#: src/Module/Privacy/PermissionTooltip.php:57
#, php-format
msgid "Wrong type \"%s\", expected one of: %s"
msgstr ""
-#: src/Module/Privacy/PermissionTooltip.php:101
+#: src/Module/Privacy/PermissionTooltip.php:87
msgid "Model not found"
msgstr "モジュールが見つかりません"
-#: src/Module/Privacy/PermissionTooltip.php:118
+#: src/Module/Privacy/PermissionTooltip.php:104
msgid "Unlisted"
msgstr ""
-#: src/Module/Privacy/PermissionTooltip.php:124
+#: src/Module/Privacy/PermissionTooltip.php:110
msgid "Remote privacy information not available."
msgstr "リモートプライバシー情報は利用できません。"
-#: src/Module/Privacy/PermissionTooltip.php:131
+#: src/Module/Privacy/PermissionTooltip.php:117
msgid "Visible to:"
msgstr "表示先:"
-#: src/Module/Privacy/PermissionTooltip.php:133
+#: src/Module/Privacy/PermissionTooltip.php:119
msgid "CC:"
msgstr ""
-#: src/Module/Privacy/PermissionTooltip.php:134
+#: src/Module/Privacy/PermissionTooltip.php:120
msgid "BCC:"
msgstr ""
-#: src/Module/Privacy/PermissionTooltip.php:135
+#: src/Module/Privacy/PermissionTooltip.php:121
msgid "Audience:"
msgstr ""
-#: src/Module/Privacy/PermissionTooltip.php:136
+#: src/Module/Privacy/PermissionTooltip.php:122
msgid "Attributed To:"
msgstr ""
-#: src/Module/Privacy/PermissionTooltip.php:234
+#: src/Module/Privacy/PermissionTooltip.php:220
#, php-format
msgid "Collection (%s)"
msgstr ""
-#: src/Module/Privacy/PermissionTooltip.php:238
+#: src/Module/Privacy/PermissionTooltip.php:224
#, php-format
msgid "Followers (%s)"
msgstr ""
-#: src/Module/Privacy/PermissionTooltip.php:255
+#: src/Module/Privacy/PermissionTooltip.php:241
#, php-format
msgid "%d more"
msgstr ""
-#: src/Module/Profile/Contacts.php:159
+#: src/Module/Profile/Contacts.php:145
msgid "No contacts."
msgstr "コンタクトはありません。"
-#: src/Module/Profile/Conversations.php:106
-#: src/Module/Profile/Conversations.php:109 src/Module/Profile/Profile.php:351
-#: src/Module/Profile/Profile.php:354 src/Protocol/Feed.php:1095
-#: src/Protocol/OStatus.php:1011
-#, php-format
-msgid "%s's timeline"
-msgstr "%sのタイムライン"
-
-#: src/Module/Profile/Conversations.php:107 src/Module/Profile/Profile.php:352
-#: src/Protocol/Feed.php:1099 src/Protocol/OStatus.php:1016
+#: src/Module/Profile/Conversations.php:92 src/Module/Profile/Profile.php:339
+#: src/Protocol/Feed.php:1097
#, php-format
msgid "%s's posts"
msgstr "%sの投稿"
-#: src/Module/Profile/Conversations.php:108 src/Module/Profile/Profile.php:353
-#: src/Protocol/Feed.php:1102 src/Protocol/OStatus.php:1020
+#: src/Module/Profile/Conversations.php:93 src/Module/Profile/Profile.php:340
+#: src/Protocol/Feed.php:1100
#, php-format
msgid "%s's comments"
msgstr "%sのコメント"
-#: src/Module/Profile/Photos.php:164 src/Module/Profile/Photos.php:167
-#: src/Module/Profile/Photos.php:192
-#: src/Module/Settings/Profile/Photo/Index.php:58
+#: src/Module/Profile/Conversations.php:94 src/Module/Profile/Profile.php:341
+#: src/Protocol/Feed.php:1093
+#, php-format
+msgid "%s's timeline"
+msgstr "%sのタイムライン"
+
+#: src/Module/Profile/Photos.php:150 src/Module/Profile/Photos.php:153
+#: src/Module/Profile/Photos.php:178
+#: src/Module/Settings/Profile/Photo/Index.php:44
#, php-format
msgid "Image exceeds size limit of %s"
msgstr "画像サイズ上限 %s を超えています。"
-#: src/Module/Profile/Photos.php:170
+#: src/Module/Profile/Photos.php:156
msgid "Image upload didn't complete, please try again"
msgstr "画像のアップロードが完了しませんでした。もう一度お試しください"
-#: src/Module/Profile/Photos.php:173
+#: src/Module/Profile/Photos.php:159
msgid "Image file is missing"
msgstr "画像ファイルがありません"
-#: src/Module/Profile/Photos.php:178
+#: src/Module/Profile/Photos.php:164
msgid ""
"Server can't accept new file upload at this time, please contact your "
"administrator"
msgstr "サーバーは現在、新しいファイルのアップロードを受け入れられません。管理者に連絡してください"
-#: src/Module/Profile/Photos.php:200
+#: src/Module/Profile/Photos.php:186
msgid "Image file is empty."
msgstr "画像ファイルが空です。"
-#: src/Module/Profile/Photos.php:352
+#: src/Module/Profile/Photos.php:338
msgid "View Album"
msgstr "アルバムを見る"
-#: src/Module/Profile/Profile.php:112 src/Module/Profile/Restricted.php:50
+#: src/Module/Profile/Profile.php:100 src/Module/Profile/Restricted.php:36
msgid "Profile not found."
msgstr "プロフィールが見つかりません。"
-#: src/Module/Profile/Profile.php:158
+#: src/Module/Profile/Profile.php:146
#, php-format
msgid ""
"You're currently viewing your profile as %s Cancel"
msgstr ""
-#: src/Module/Profile/Profile.php:167
+#: src/Module/Profile/Profile.php:155
msgid "Full Name:"
msgstr "フルネーム:"
-#: src/Module/Profile/Profile.php:172
+#: src/Module/Profile/Profile.php:160
msgid "Member since:"
msgstr "以来のメンバー:"
-#: src/Module/Profile/Profile.php:178
+#: src/Module/Profile/Profile.php:166
msgid "j F, Y"
msgstr "j F, Y"
-#: src/Module/Profile/Profile.php:179
+#: src/Module/Profile/Profile.php:167
msgid "j F"
msgstr "j F"
-#: src/Module/Profile/Profile.php:187 src/Util/Temporal.php:168
+#: src/Module/Profile/Profile.php:175 src/Util/Temporal.php:154
msgid "Birthday:"
msgstr "お誕生日:"
-#: src/Module/Profile/Profile.php:190
-#: src/Module/Settings/Profile/Index.php:291 src/Util/Temporal.php:170
+#: src/Module/Profile/Profile.php:178
+#: src/Module/Settings/Profile/Index.php:282 src/Util/Temporal.php:156
msgid "Age: "
msgstr "年齢:"
-#: src/Module/Profile/Profile.php:190
-#: src/Module/Settings/Profile/Index.php:291 src/Util/Temporal.php:170
+#: src/Module/Profile/Profile.php:178
+#: src/Module/Settings/Profile/Index.php:282 src/Util/Temporal.php:156
#, php-format
msgid "%d year old"
msgid_plural "%d years old"
msgstr[0] "%d歳"
-#: src/Module/Profile/Profile.php:195
-#: src/Module/Settings/Profile/Index.php:284
+#: src/Module/Profile/Profile.php:183
+#: src/Module/Settings/Profile/Index.php:275
msgid "Description:"
msgstr "説明:"
-#: src/Module/Profile/Profile.php:261
+#: src/Module/Profile/Profile.php:249
msgid "Groups:"
msgstr ""
-#: src/Module/Profile/Profile.php:273
+#: src/Module/Profile/Profile.php:261
msgid "View profile as:"
msgstr ""
-#: src/Module/Profile/Profile.php:290
+#: src/Module/Profile/Profile.php:278
msgid "View as"
msgstr ""
-#: src/Module/Profile/RemoteFollow.php:82
+#: src/Module/Profile/RemoteFollow.php:68
msgid "Profile unavailable."
msgstr "プロフィールを利用できません。"
-#: src/Module/Profile/RemoteFollow.php:88
+#: src/Module/Profile/RemoteFollow.php:74
msgid "Invalid locator"
msgstr "無効なロケーター"
-#: src/Module/Profile/RemoteFollow.php:95
+#: src/Module/Profile/RemoteFollow.php:81
msgid "The provided profile link doesn't seem to be valid"
msgstr ""
-#: src/Module/Profile/RemoteFollow.php:100
+#: src/Module/Profile/RemoteFollow.php:86
msgid ""
"Remote subscription can't be done for your network. Please subscribe "
"directly on your system."
msgstr "あなたのネットワークではリモート購読ができません。あなたのシステム上で直接購読してください。"
-#: src/Module/Profile/RemoteFollow.php:128
+#: src/Module/Profile/RemoteFollow.php:114
msgid "Friend/Connection Request"
msgstr "友達/接続リクエスト"
-#: src/Module/Profile/RemoteFollow.php:129
+#: src/Module/Profile/RemoteFollow.php:115
#, php-format
msgid ""
"Enter your Webfinger address (user@domain.tld) or profile URL here. If this "
@@ -9206,579 +9200,579 @@ msgid ""
" or %s directly on your system."
msgstr ""
-#: src/Module/Profile/RemoteFollow.php:130
+#: src/Module/Profile/RemoteFollow.php:116
#, php-format
msgid ""
"If you are not yet a member of the free social web, follow "
"this link to find a public Friendica node and join us today."
msgstr "まだ'自由なソーシャルウェブ'のメンバーでない場合は、このリンクをクリックして、Friendicaの公開サイトを見つけて、今すぐ参加してください。"
-#: src/Module/Profile/RemoteFollow.php:131
+#: src/Module/Profile/RemoteFollow.php:117
msgid "Your Webfinger address or profile URL:"
msgstr ""
-#: src/Module/Profile/Restricted.php:59
+#: src/Module/Profile/Restricted.php:45
msgid "Restricted profile"
msgstr ""
-#: src/Module/Profile/Restricted.php:60
+#: src/Module/Profile/Restricted.php:46
msgid ""
"This profile has been restricted which prevents access to their public "
"content from anonymous visitors."
msgstr ""
-#: src/Module/Profile/Schedule.php:83
+#: src/Module/Profile/Schedule.php:69
msgid "Scheduled"
msgstr ""
-#: src/Module/Profile/Schedule.php:84
+#: src/Module/Profile/Schedule.php:70
msgid "Content"
msgstr ""
-#: src/Module/Profile/Schedule.php:85
+#: src/Module/Profile/Schedule.php:71
msgid "Remove post"
msgstr ""
-#: src/Module/Register.php:85
+#: src/Module/Register.php:77
msgid "Only parent users can create additional accounts."
msgstr "追加アカウントを作成できるのは親ユーザのみです。"
-#: src/Module/Register.php:100 src/Module/User/Import.php:112
+#: src/Module/Register.php:92 src/Module/User/Import.php:98
msgid ""
"This site has exceeded the number of allowed daily account registrations. "
"Please try again tomorrow."
msgstr "このサイトは、1日あたりに許可されているアカウント登録数の上限を超えています。 明日再度お試しください。"
-#: src/Module/Register.php:117
+#: src/Module/Register.php:109
msgid ""
"You may (optionally) fill in this form via OpenID by supplying your OpenID "
"and clicking \"Register\"."
msgstr "(オプションで)OpenIDを提供し、「登録」をクリックして、OpenIDを介してこのフォームに入力できます。"
-#: src/Module/Register.php:118
+#: src/Module/Register.php:110
msgid ""
"If you are not familiar with OpenID, please leave that field blank and fill "
"in the rest of the items."
msgstr "OpenIDに慣れていない場合は、そのフィールドを空白のままにして、残りの項目を入力してください。"
-#: src/Module/Register.php:119
+#: src/Module/Register.php:111
msgid "Your OpenID (optional): "
msgstr "OpenID(オプション):"
-#: src/Module/Register.php:128
+#: src/Module/Register.php:120
msgid "Include your profile in member directory?"
msgstr "メンバーディレクトリにプロフィールを含めますか?"
-#: src/Module/Register.php:149
+#: src/Module/Register.php:141
msgid "Note for the admin"
msgstr "管理者への注意"
-#: src/Module/Register.php:149
+#: src/Module/Register.php:141
msgid "Leave a message for the admin, why you want to join this node"
msgstr "このノードに参加する理由、管理者へのメッセージを残す"
-#: src/Module/Register.php:150
+#: src/Module/Register.php:142
msgid "Membership on this site is by invitation only."
msgstr "このサイトのメンバーシップは招待のみです。"
-#: src/Module/Register.php:151
+#: src/Module/Register.php:143
msgid "Your invitation code: "
msgstr "招待コード:"
-#: src/Module/Register.php:159
+#: src/Module/Register.php:151
msgid "Your Display Name (as you would like it to be displayed on this system"
msgstr ""
-#: src/Module/Register.php:160
+#: src/Module/Register.php:152
msgid ""
"Your Email Address: (Initial information will be send there, so this has to "
"be an existing address.)"
msgstr "あなたのメールアドレス:(初回の情報はそこに送信されますので、これは既存のアドレスでなければなりません。)"
-#: src/Module/Register.php:161
+#: src/Module/Register.php:153
msgid "Please repeat your e-mail address:"
msgstr "メールアドレスを再入力してください。"
-#: src/Module/Register.php:163 src/Module/Security/PasswordTooLong.php:100
-#: src/Module/Settings/Account.php:564
+#: src/Module/Register.php:155 src/Module/Security/PasswordTooLong.php:86
+#: src/Module/Settings/Account.php:555
msgid "New Password:"
msgstr "新しいパスワード:"
-#: src/Module/Register.php:163
+#: src/Module/Register.php:155
msgid "Leave empty for an auto generated password."
msgstr "自動生成されたパスワードの場合は空のままにします。"
-#: src/Module/Register.php:164 src/Module/Security/PasswordTooLong.php:101
-#: src/Module/Settings/Account.php:565
+#: src/Module/Register.php:156 src/Module/Security/PasswordTooLong.php:87
+#: src/Module/Settings/Account.php:556
msgid "Confirm:"
msgstr "確認:"
-#: src/Module/Register.php:165
+#: src/Module/Register.php:157
#, php-format
msgid ""
"Choose a profile nickname. This must begin with a text character. Your "
"profile address on this site will then be \"nickname@%s\"."
msgstr "プロフィールのニックネームを選択します。これはテキスト文字で始まる必要があります。このサイトのプロフィールアドレスは\" nickname@%s \"になります。"
-#: src/Module/Register.php:166
+#: src/Module/Register.php:158
msgid "Choose a nickname: "
msgstr "ニックネームを選択:"
-#: src/Module/Register.php:174 src/Module/User/Import.php:118
+#: src/Module/Register.php:166 src/Module/User/Import.php:104
msgid "Import"
msgstr "インポート"
-#: src/Module/Register.php:175
+#: src/Module/Register.php:167
msgid "Import your profile to this friendica instance"
msgstr "このfriendicaインスタンスにプロフィールをインポートします"
-#: src/Module/Register.php:182
+#: src/Module/Register.php:174
msgid "Note: This node explicitly contains adult content"
msgstr "注:このノードには、露骨なアダルトコンテンツが含まれています"
-#: src/Module/Register.php:184 src/Module/Settings/Delegation.php:181
+#: src/Module/Register.php:176 src/Module/Settings/Delegation.php:167
msgid "Parent Password:"
msgstr "親パスワード:"
-#: src/Module/Register.php:184 src/Module/Settings/Delegation.php:181
+#: src/Module/Register.php:176 src/Module/Settings/Delegation.php:167
msgid ""
"Please enter the password of the parent account to legitimize your request."
msgstr "リクエストの確認のため、親アカウントのパスワードを入力してください。"
-#: src/Module/Register.php:213
+#: src/Module/Register.php:205
msgid "Password doesn't match."
msgstr "パスワードが一致しません。"
-#: src/Module/Register.php:219
+#: src/Module/Register.php:211
msgid "Please enter your password."
msgstr "パスワードを入力してください。"
-#: src/Module/Register.php:261
+#: src/Module/Register.php:253
msgid "You have entered too much information."
msgstr "入力件数が多すぎます"
-#: src/Module/Register.php:284
+#: src/Module/Register.php:276
msgid "Please enter the identical mail address in the second field."
msgstr "2番目の入力欄に同じメールアドレスを再入力してください。"
-#: src/Module/Register.php:292
+#: src/Module/Register.php:284
msgid "Nickname cannot start with a digit."
msgstr ""
-#: src/Module/Register.php:294
+#: src/Module/Register.php:286
msgid "Nickname can only contain US-ASCII characters."
msgstr ""
-#: src/Module/Register.php:323
+#: src/Module/Register.php:315
msgid "The additional account was created."
msgstr "追加アカウントが作成されました。"
-#: src/Module/Register.php:348
+#: src/Module/Register.php:340
msgid ""
"Registration successful. Please check your email for further instructions."
msgstr "登録に成功。詳細については、メールを確認してください。"
-#: src/Module/Register.php:355
+#: src/Module/Register.php:347
#, php-format
msgid ""
"Failed to send email message. Here your accout details:You can enter one of your one-time recovery codes in case you lost access" " to your mobile device.
" msgstr "モバイルデバイスにアクセスできなくなった場合に備えて、ワンタイムリカバリコードのいずれかを入力できます。
" -#: src/Module/Security/TwoFactor/Recovery.php:101 +#: src/Module/Security/TwoFactor/Recovery.php:87 #, php-format msgid "Don’t have your phone? Enter a two-factor recovery code" msgstr "お使いの携帯電話を持ってませんか? 二要素認証の回復コードを入力" -#: src/Module/Security/TwoFactor/Recovery.php:102 +#: src/Module/Security/TwoFactor/Recovery.php:88 msgid "Please enter a recovery code" msgstr "復旧コードを入力してください" -#: src/Module/Security/TwoFactor/Recovery.php:103 +#: src/Module/Security/TwoFactor/Recovery.php:89 msgid "Submit recovery code and complete login" msgstr "復旧コードを送信してログインを完了する" -#: src/Module/Security/TwoFactor/SignOut.php:122 +#: src/Module/Security/TwoFactor/SignOut.php:108 msgid "Sign out of this browser?" msgstr "" -#: src/Module/Security/TwoFactor/SignOut.php:123 +#: src/Module/Security/TwoFactor/SignOut.php:109 msgid "" "If you trust this browser, you will not be asked for verification code " "the next time you sign in.
" msgstr "" -#: src/Module/Security/TwoFactor/SignOut.php:124 +#: src/Module/Security/TwoFactor/SignOut.php:110 msgid "Sign out" msgstr "" -#: src/Module/Security/TwoFactor/SignOut.php:126 +#: src/Module/Security/TwoFactor/SignOut.php:112 msgid "Trust and sign out" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:96 +#: src/Module/Security/TwoFactor/Trust.php:82 msgid "Couldn't save browser to Cookie." msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:141 +#: src/Module/Security/TwoFactor/Trust.php:127 msgid "Trust this browser?" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:142 +#: src/Module/Security/TwoFactor/Trust.php:128 msgid "" "If you choose to trust this browser, you will not be asked for a " "verification code the next time you sign in.
" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:143 +#: src/Module/Security/TwoFactor/Trust.php:129 msgid "Not now" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:144 +#: src/Module/Security/TwoFactor/Trust.php:130 msgid "Don't trust" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:145 +#: src/Module/Security/TwoFactor/Trust.php:131 msgid "Trust" msgstr "" -#: src/Module/Security/TwoFactor/Verify.php:97 +#: src/Module/Security/TwoFactor/Verify.php:83 msgid "" "Open the two-factor authentication app on your device to get an " "authentication code and verify your identity.
" msgstr "デバイスで二要素認証アプリを開き、認証コードを取得して本人確認を行います。
" -#: src/Module/Security/TwoFactor/Verify.php:100 +#: src/Module/Security/TwoFactor/Verify.php:86 #, php-format msgid "" "If you do not have access to your authentication code you can use a two-factor recovery code." msgstr "" -#: src/Module/Security/TwoFactor/Verify.php:101 -#: src/Module/Settings/TwoFactor/Verify.php:158 +#: src/Module/Security/TwoFactor/Verify.php:87 +#: src/Module/Settings/TwoFactor/Verify.php:144 msgid "Please enter a code from your authentication app" msgstr "認証アプリからコードを入力してください" -#: src/Module/Security/TwoFactor/Verify.php:102 +#: src/Module/Security/TwoFactor/Verify.php:88 msgid "Verify code and complete login" msgstr "コードを確認してログインを完了する" -#: src/Module/Settings/Account.php:96 +#: src/Module/Settings/Account.php:82 msgid "Please use a shorter name." msgstr "短い名前を使用してください。" -#: src/Module/Settings/Account.php:99 +#: src/Module/Settings/Account.php:85 msgid "Name too short." msgstr "名前が短すぎます。" -#: src/Module/Settings/Account.php:108 +#: src/Module/Settings/Account.php:94 msgid "Wrong Password." msgstr "パスワードが間違っています。" -#: src/Module/Settings/Account.php:113 +#: src/Module/Settings/Account.php:99 msgid "Invalid email." msgstr "無効なメール。" -#: src/Module/Settings/Account.php:117 +#: src/Module/Settings/Account.php:103 msgid "Cannot change to that email." msgstr "そのメールに変更できません。" -#: src/Module/Settings/Account.php:146 src/Module/Settings/Account.php:195 -#: src/Module/Settings/Account.php:216 src/Module/Settings/Account.php:300 -#: src/Module/Settings/Account.php:329 +#: src/Module/Settings/Account.php:132 src/Module/Settings/Account.php:181 +#: src/Module/Settings/Account.php:202 src/Module/Settings/Account.php:286 +#: src/Module/Settings/Account.php:315 msgid "Settings were not updated." msgstr "設定が更新されませんでした。" -#: src/Module/Settings/Account.php:342 +#: src/Module/Settings/Account.php:333 msgid "Contact CSV file upload error" msgstr "アップロードエラー:コンタクトCSVファイル" -#: src/Module/Settings/Account.php:361 +#: src/Module/Settings/Account.php:352 msgid "Importing Contacts done" msgstr "コンタクトのインポートが完了しました" -#: src/Module/Settings/Account.php:374 +#: src/Module/Settings/Account.php:365 msgid "Relocate message has been send to your contacts" msgstr "再配置メッセージがコンタクトに送信されました" -#: src/Module/Settings/Account.php:391 +#: src/Module/Settings/Account.php:382 msgid "Unable to find your profile. Please contact your admin." msgstr "プロフィールが見つかりません。管理者に連絡してください。" -#: src/Module/Settings/Account.php:433 +#: src/Module/Settings/Account.php:424 msgid "" "Account for a service that automatically shares content based on user " "defined channels." msgstr "" -#: src/Module/Settings/Account.php:443 +#: src/Module/Settings/Account.php:434 msgid "Personal Page Subtypes" msgstr "個人ページのサブタイプ" -#: src/Module/Settings/Account.php:444 +#: src/Module/Settings/Account.php:435 msgid "Community Group Subtypes" msgstr "" -#: src/Module/Settings/Account.php:455 +#: src/Module/Settings/Account.php:446 msgid "Account for a personal profile." msgstr "個人プロフィールを説明します。" -#: src/Module/Settings/Account.php:462 +#: src/Module/Settings/Account.php:453 msgid "" "Account for an organisation that automatically approves contact requests as " "\"Followers\"." msgstr "コンタクトリクエストを「フォロワー」として自動的に承認します。組織に適したアカウントです。" -#: src/Module/Settings/Account.php:469 +#: src/Module/Settings/Account.php:460 msgid "" "Account for a news reflector that automatically approves contact requests as" " \"Followers\"." msgstr "コンタクトのリクエストを「フォロワー」として自動的に承認します。ニュース再配信に適したアカウントです。" -#: src/Module/Settings/Account.php:476 +#: src/Module/Settings/Account.php:467 msgid "Account for community discussions." msgstr "コミュニティディスカッションのアカウント。" -#: src/Module/Settings/Account.php:484 +#: src/Module/Settings/Account.php:475 msgid "" "Account for a regular personal profile that requires manual approval of " "\"Friends\" and \"Followers\"." msgstr "\"Friends \"および\"Followers \"の手動承認を必要とする通常の個人プロフィールのアカウント。" -#: src/Module/Settings/Account.php:491 +#: src/Module/Settings/Account.php:482 msgid "" "Account for a public profile that automatically approves contact requests as" " \"Followers\"." msgstr "コンタクトリクエストを「フォロワー」として自動的に承認します。一般公開プロフィールのアカウントです。" -#: src/Module/Settings/Account.php:498 +#: src/Module/Settings/Account.php:489 msgid "Automatically approves all contact requests." msgstr "すべてのコンタクトリクエストを自動的に承認します。" -#: src/Module/Settings/Account.php:505 +#: src/Module/Settings/Account.php:496 msgid "Contact requests have to be manually approved." msgstr "" -#: src/Module/Settings/Account.php:512 +#: src/Module/Settings/Account.php:503 msgid "" "Account for a popular profile that automatically approves contact requests " "as \"Friends\"." msgstr "コンタクトのリクエストを「フレンド」として自動的に承認します。知名度のあるプロフィールに適したアカウントです。" -#: src/Module/Settings/Account.php:517 +#: src/Module/Settings/Account.php:508 msgid "Private Group [Experimental]" msgstr "" -#: src/Module/Settings/Account.php:519 +#: src/Module/Settings/Account.php:510 msgid "Requires manual approval of contact requests." msgstr "コンタクトリクエストの手動承認が必要です。" -#: src/Module/Settings/Account.php:528 +#: src/Module/Settings/Account.php:519 msgid "OpenID:" msgstr "OpenID:" -#: src/Module/Settings/Account.php:528 +#: src/Module/Settings/Account.php:519 msgid "(Optional) Allow this OpenID to login to this account." msgstr "(オプション)このOpenIDがこのアカウントにログインできるようにします。" -#: src/Module/Settings/Account.php:536 +#: src/Module/Settings/Account.php:527 msgid "Publish your profile in your local site directory?" msgstr "ローカルサイトディレクトリにプロフィールを公開しますか?" -#: src/Module/Settings/Account.php:536 +#: src/Module/Settings/Account.php:527 #, php-format msgid "" "Your profile will be published in this node's local " @@ -9786,94 +9780,94 @@ msgid "" " system settings." msgstr "プロフィールはこのノードのローカルディレクトリで公開されます。システム設定によっては、プロフィールの詳細が公開される場合があります。" -#: src/Module/Settings/Account.php:542 +#: src/Module/Settings/Account.php:533 #, php-format msgid "" "Your profile will also be published in the global friendica directories " "(e.g. %s)." msgstr "あなたのプロフィールはグローバルなFriendicaディレクトリに公開されます(例: %s )。" -#: src/Module/Settings/Account.php:555 +#: src/Module/Settings/Account.php:546 msgid "Account Settings" msgstr "アカウント設定" -#: src/Module/Settings/Account.php:556 +#: src/Module/Settings/Account.php:547 #, php-format msgid "Your Identity Address is '%s' or '%s'." msgstr "IDアドレスは ' %s ' または ' %s 'です。" -#: src/Module/Settings/Account.php:563 +#: src/Module/Settings/Account.php:554 msgid "Password Settings" msgstr "パスワード設定" -#: src/Module/Settings/Account.php:565 +#: src/Module/Settings/Account.php:556 msgid "Leave password fields blank unless changing" msgstr "変更しない限り、パスワードフィールドは空白のままにしてください" -#: src/Module/Settings/Account.php:567 +#: src/Module/Settings/Account.php:558 msgid "Password:" msgstr "パスワード:" -#: src/Module/Settings/Account.php:567 +#: src/Module/Settings/Account.php:558 msgid "Your current password to confirm the changes of the email address" msgstr "変更を確認するための電子メールアドレスの現在のパスワード" -#: src/Module/Settings/Account.php:570 +#: src/Module/Settings/Account.php:561 msgid "Delete OpenID URL" msgstr "OpenID URLを削除" -#: src/Module/Settings/Account.php:572 +#: src/Module/Settings/Account.php:563 msgid "Basic Settings" msgstr "基本設定" -#: src/Module/Settings/Account.php:573 -#: src/Module/Settings/Profile/Index.php:283 +#: src/Module/Settings/Account.php:564 +#: src/Module/Settings/Profile/Index.php:274 msgid "Display name:" msgstr "表示名:" -#: src/Module/Settings/Account.php:574 +#: src/Module/Settings/Account.php:565 msgid "Email Address:" msgstr "電子メールアドレス:" -#: src/Module/Settings/Account.php:575 +#: src/Module/Settings/Account.php:566 msgid "Your Timezone:" msgstr "あなたのタイムゾーン:" -#: src/Module/Settings/Account.php:576 +#: src/Module/Settings/Account.php:567 msgid "Your Language:" msgstr "あなたの言語:" -#: src/Module/Settings/Account.php:576 +#: src/Module/Settings/Account.php:567 msgid "" "Set the language we use to show you friendica interface and to send you " "emails" msgstr "friendicaインターフェイスを表示し、メールを送信するために使用する言語を設定します" -#: src/Module/Settings/Account.php:577 +#: src/Module/Settings/Account.php:568 msgid "Default Post Location:" msgstr "デフォルトの投稿場所:" -#: src/Module/Settings/Account.php:578 +#: src/Module/Settings/Account.php:569 msgid "Use Browser Location:" msgstr "ブラウザのロケーションを使用:" -#: src/Module/Settings/Account.php:580 +#: src/Module/Settings/Account.php:571 msgid "Security and Privacy Settings" msgstr "セキュリティとプライバシーの設定" -#: src/Module/Settings/Account.php:582 +#: src/Module/Settings/Account.php:573 msgid "Maximum Friend Requests/Day:" msgstr "1日あたりの友達リクエスト上限:" -#: src/Module/Settings/Account.php:582 +#: src/Module/Settings/Account.php:573 msgid "(to prevent spam abuse)" msgstr "(スパムの悪用を防ぐため)" -#: src/Module/Settings/Account.php:584 +#: src/Module/Settings/Account.php:575 msgid "Allow your profile to be searchable globally?" msgstr "自分のプロフィールを世界中で検索できるようにしますか?" -#: src/Module/Settings/Account.php:584 +#: src/Module/Settings/Account.php:575 msgid "" "Activate this setting if you want others to easily find and follow you. Your" " profile will be searchable on remote systems. This setting also determines " @@ -9881,43 +9875,43 @@ msgid "" "indexed or not." msgstr "他の人があなたを簡単に見つけてフォローできるようにしたい場合は、この設定を有効にしてください。あなたのプロフィールはリモートシステムで検索可能です。この設定は、Friendicaが検索エンジンにあなたのプロフィールをインデックス化するかどうかも決定します。" -#: src/Module/Settings/Account.php:585 +#: src/Module/Settings/Account.php:576 msgid "Hide your contact/friend list from viewers of your profile?" msgstr "プロフィールの閲覧者からコンタクト/友人リストを非表示にしますか?" -#: src/Module/Settings/Account.php:585 +#: src/Module/Settings/Account.php:576 msgid "" "A list of your contacts is displayed on your profile page. Activate this " "option to disable the display of your contact list." msgstr "自分のプロフィールページには、コンタクトリストが表示されます。このオプションを有効にすると、コンタクトリストの表示が無効になります。" -#: src/Module/Settings/Account.php:586 +#: src/Module/Settings/Account.php:577 msgid "Hide your public content from anonymous viewers" msgstr "" -#: src/Module/Settings/Account.php:586 +#: src/Module/Settings/Account.php:577 msgid "" "Anonymous visitors will only see your basic profile details. Your public " "posts and replies will still be freely accessible on the remote servers of " "your followers and through relays." msgstr "" -#: src/Module/Settings/Account.php:587 +#: src/Module/Settings/Account.php:578 msgid "Make public posts unlisted" msgstr "公開投稿を非表示にする" -#: src/Module/Settings/Account.php:587 +#: src/Module/Settings/Account.php:578 msgid "" "Your public posts will not appear on the community pages or in search " "results, nor be sent to relay servers. However they can still appear on " "public feeds on remote servers." msgstr "公開された投稿は、コミュニティページや検索結果には表示されず、中継サーバーにも送信されません。ただし、リモートサーバーの公開フィードには表示されます。" -#: src/Module/Settings/Account.php:588 +#: src/Module/Settings/Account.php:579 msgid "Make all posted pictures accessible" msgstr "投稿した写真は全てアクセス可能にする" -#: src/Module/Settings/Account.php:588 +#: src/Module/Settings/Account.php:579 msgid "" "This option makes every posted picture accessible via the direct link. This " "is a workaround for the problem that most other networks can't handle " @@ -9925,352 +9919,352 @@ msgid "" "public on your photo albums though." msgstr "このオプションは、投稿したすべての写真をダイレクトリンクでアクセスできるようにします。これは、他の多くのネットワークが写真のパーミッションを処理できないという問題を回避するためのものです。ただし、公開していない写真はフォトアルバムでは一般に公開されません。" -#: src/Module/Settings/Account.php:589 +#: src/Module/Settings/Account.php:580 msgid "Allow friends to post to your profile page?" msgstr "友人があなたのプロフィールページに投稿することを許可しますか?" -#: src/Module/Settings/Account.php:589 +#: src/Module/Settings/Account.php:580 msgid "" "Your contacts may write posts on your profile wall. These posts will be " "distributed to your contacts" msgstr "コンタクトは、プロフィールウォールに投稿を書くことができます。これらの投稿はコンタクトに配信されます" -#: src/Module/Settings/Account.php:590 +#: src/Module/Settings/Account.php:581 msgid "Allow friends to tag your posts?" msgstr "友達があなたの投稿にタグを付けることを許可しますか?" -#: src/Module/Settings/Account.php:590 +#: src/Module/Settings/Account.php:581 msgid "Your contacts can add additional tags to your posts." msgstr "コンタクトは、投稿にタグを追加できます。" -#: src/Module/Settings/Account.php:591 +#: src/Module/Settings/Account.php:582 msgid "Default privacy circle for new contacts" msgstr "" -#: src/Module/Settings/Account.php:592 +#: src/Module/Settings/Account.php:583 msgid "Default privacy circle for new group contacts" msgstr "" -#: src/Module/Settings/Account.php:593 +#: src/Module/Settings/Account.php:584 msgid "Default Post Permissions" msgstr "投稿の既定の権限" -#: src/Module/Settings/Account.php:597 +#: src/Module/Settings/Account.php:588 msgid "Expiration settings" msgstr "有効期限設定" -#: src/Module/Settings/Account.php:598 +#: src/Module/Settings/Account.php:589 msgid "Automatically expire posts after this many days:" msgstr "この数日後に投稿を自動的に期限切れにします:" -#: src/Module/Settings/Account.php:598 +#: src/Module/Settings/Account.php:589 msgid "If empty, posts will not expire. Expired posts will be deleted" msgstr "空の場合、投稿は期限切れになりません。期限切れの投稿は削除されます" -#: src/Module/Settings/Account.php:599 +#: src/Module/Settings/Account.php:590 msgid "Expire posts" msgstr "投稿の有効期限" -#: src/Module/Settings/Account.php:599 +#: src/Module/Settings/Account.php:590 msgid "When activated, posts and comments will be expired." msgstr "有効にすると、投稿とコメントは期限切れになるでしょう。" -#: src/Module/Settings/Account.php:600 +#: src/Module/Settings/Account.php:591 msgid "Expire personal notes" msgstr "個人メモの有効期限" -#: src/Module/Settings/Account.php:600 +#: src/Module/Settings/Account.php:591 msgid "" "When activated, the personal notes on your profile page will be expired." msgstr "有効にすると、プロフィールページ上の個人メモは期限切れになるでしょう。" -#: src/Module/Settings/Account.php:601 +#: src/Module/Settings/Account.php:592 msgid "Expire starred posts" msgstr "スター付き投稿の有効期限" -#: src/Module/Settings/Account.php:601 +#: src/Module/Settings/Account.php:592 msgid "" "Starring posts keeps them from being expired. That behaviour is overwritten " "by this setting." msgstr "投稿にスターを付けると、投稿が期限切れにならないようにします。動作はこの設定で上書きされます。" -#: src/Module/Settings/Account.php:602 +#: src/Module/Settings/Account.php:593 msgid "Only expire posts by others" msgstr "他のユーザーによる投稿のみを期限切れにする" -#: src/Module/Settings/Account.php:602 +#: src/Module/Settings/Account.php:593 msgid "" "When activated, your own posts never expire. Then the settings above are " "only valid for posts you received." msgstr "有効にすると、自分の投稿は期限切れになりません。そうすると、上記の設定は自分が受け取った投稿に対してのみ有効となります。" -#: src/Module/Settings/Account.php:605 +#: src/Module/Settings/Account.php:596 msgid "Notification Settings" msgstr "通知設定" -#: src/Module/Settings/Account.php:606 +#: src/Module/Settings/Account.php:597 msgid "Send a notification email when:" msgstr "次の場合に通知メールを送信します。" -#: src/Module/Settings/Account.php:607 +#: src/Module/Settings/Account.php:598 msgid "You receive an introduction" msgstr "招待を受けます" -#: src/Module/Settings/Account.php:608 +#: src/Module/Settings/Account.php:599 msgid "Your introductions are confirmed" msgstr "あなたの招待が確認されました" -#: src/Module/Settings/Account.php:609 +#: src/Module/Settings/Account.php:600 msgid "Someone writes on your profile wall" msgstr "誰かがあなたのプロフィールウォールに書き込みます" -#: src/Module/Settings/Account.php:610 +#: src/Module/Settings/Account.php:601 msgid "Someone writes a followup comment" msgstr "誰かがフォローアップコメントを書く" -#: src/Module/Settings/Account.php:611 +#: src/Module/Settings/Account.php:602 msgid "You receive a private message" msgstr "プライベートメッセージを受け取ります" -#: src/Module/Settings/Account.php:612 +#: src/Module/Settings/Account.php:603 msgid "You receive a friend suggestion" msgstr "友達の提案を受け取ります" -#: src/Module/Settings/Account.php:613 +#: src/Module/Settings/Account.php:604 msgid "You are tagged in a post" msgstr "あなたは投稿でタグ付けされています" -#: src/Module/Settings/Account.php:615 +#: src/Module/Settings/Account.php:606 msgid "Create a desktop notification when:" msgstr "" -#: src/Module/Settings/Account.php:616 +#: src/Module/Settings/Account.php:607 msgid "Someone tagged you" msgstr "" -#: src/Module/Settings/Account.php:617 +#: src/Module/Settings/Account.php:608 msgid "Someone directly commented on your post" msgstr "" -#: src/Module/Settings/Account.php:618 +#: src/Module/Settings/Account.php:609 msgid "Someone liked your content" msgstr "" -#: src/Module/Settings/Account.php:618 src/Module/Settings/Account.php:619 +#: src/Module/Settings/Account.php:609 src/Module/Settings/Account.php:610 msgid "Can only be enabled, when the direct comment notification is enabled." msgstr "" -#: src/Module/Settings/Account.php:619 +#: src/Module/Settings/Account.php:610 msgid "Someone shared your content" msgstr "" -#: src/Module/Settings/Account.php:620 +#: src/Module/Settings/Account.php:611 msgid "Someone commented in your thread" msgstr "" -#: src/Module/Settings/Account.php:621 +#: src/Module/Settings/Account.php:612 msgid "Someone commented in a thread where you commented" msgstr "" -#: src/Module/Settings/Account.php:622 +#: src/Module/Settings/Account.php:613 msgid "Someone commented in a thread where you interacted" msgstr "" -#: src/Module/Settings/Account.php:624 +#: src/Module/Settings/Account.php:615 msgid "Activate desktop notifications" msgstr "デスクトップ通知を有効にする" -#: src/Module/Settings/Account.php:624 +#: src/Module/Settings/Account.php:615 msgid "Show desktop popup on new notifications" msgstr "新しい通知にデスクトップポップアップを表示する" -#: src/Module/Settings/Account.php:628 +#: src/Module/Settings/Account.php:619 msgid "Text-only notification emails" msgstr "テキストのみの通知メール" -#: src/Module/Settings/Account.php:630 +#: src/Module/Settings/Account.php:621 msgid "Send text only notification emails, without the html part" msgstr "HTML部分なしで、テキストのみの通知メールを送信します" -#: src/Module/Settings/Account.php:634 +#: src/Module/Settings/Account.php:625 msgid "Show detailled notifications" msgstr "詳細な通知を表示" -#: src/Module/Settings/Account.php:636 +#: src/Module/Settings/Account.php:627 msgid "" "Per default, notifications are condensed to a single notification per item. " "When enabled every notification is displayed." msgstr "デフォルトでは、通知は項目ごとに1つの通知にまとめられます。有効にすると、すべての通知が表示されます。" -#: src/Module/Settings/Account.php:640 +#: src/Module/Settings/Account.php:631 msgid "Show notifications of ignored contacts" msgstr "無視されたコンタクトの通知を表示" -#: src/Module/Settings/Account.php:642 +#: src/Module/Settings/Account.php:633 msgid "" "You don't see posts from ignored contacts. But you still see their comments." " This setting controls if you want to still receive regular notifications " "that are caused by ignored contacts or not." msgstr "無視されたコンタクトからの投稿は表示されません。しかし、相手のコメントは表示されます。この設定では、無視されたコンタクトからの通知を定期的に受け取るかどうかを設定します。" -#: src/Module/Settings/Account.php:645 +#: src/Module/Settings/Account.php:636 msgid "Advanced Account/Page Type Settings" msgstr "アカウント/ページタイプの詳細設定" -#: src/Module/Settings/Account.php:646 +#: src/Module/Settings/Account.php:637 msgid "Change the behaviour of this account for special situations" msgstr "特別な状況でこのアカウントの動作を変更する" -#: src/Module/Settings/Account.php:649 +#: src/Module/Settings/Account.php:640 msgid "Import Contacts" msgstr "コンタクトをインポートする" -#: src/Module/Settings/Account.php:650 +#: src/Module/Settings/Account.php:641 msgid "" "Upload a CSV file that contains the handle of your followed accounts in the " "first column you exported from the old account." msgstr "古いアカウントからエクスポートしたCSVファイルをアップロードします。これは最初の列に、フォローしているアカウントのハンドルを含みます。" -#: src/Module/Settings/Account.php:651 +#: src/Module/Settings/Account.php:642 msgid "Upload File" msgstr "ファイルをアップロード" -#: src/Module/Settings/Account.php:654 +#: src/Module/Settings/Account.php:645 msgid "Relocate" msgstr "再配置" -#: src/Module/Settings/Account.php:655 +#: src/Module/Settings/Account.php:646 msgid "" "If you have moved this profile from another server, and some of your " "contacts don't receive your updates, try pushing this button." msgstr "このプロフィールを別のサーバーから移動し、コンタクトの一部が更新を受信しない場合は、このボタンを押してみてください。" -#: src/Module/Settings/Account.php:656 +#: src/Module/Settings/Account.php:647 msgid "Resend relocate message to contacts" msgstr "再配置メッセージをコンタクトに再送信する" -#: src/Module/Settings/Addons.php:86 +#: src/Module/Settings/Addons.php:72 msgid "Addon Settings" msgstr "アドオン設定" -#: src/Module/Settings/Addons.php:87 +#: src/Module/Settings/Addons.php:73 msgid "No Addon settings configured" msgstr "アドオン設定は構成されていません" -#: src/Module/Settings/Channels.php:148 +#: src/Module/Settings/Channels.php:134 msgid "" "This page can be used to define the channels that will automatically be " "reshared by your account." msgstr "" -#: src/Module/Settings/Channels.php:153 +#: src/Module/Settings/Channels.php:139 msgid "This page can be used to define your own channels." msgstr "" -#: src/Module/Settings/Channels.php:182 +#: src/Module/Settings/Channels.php:168 msgid "Publish" msgstr "" -#: src/Module/Settings/Channels.php:182 +#: src/Module/Settings/Channels.php:168 msgid "" "When selected, the channel results are reshared. This only works for public " "ActivityPub posts from the public timeline or the user defined circles." msgstr "" -#: src/Module/Settings/Channels.php:190 src/Module/Settings/Channels.php:211 -#: src/Module/Settings/Display.php:338 +#: src/Module/Settings/Channels.php:176 src/Module/Settings/Channels.php:197 +#: src/Module/Settings/Display.php:324 msgid "Label" msgstr "" -#: src/Module/Settings/Channels.php:191 src/Module/Settings/Channels.php:212 -#: src/Module/Settings/Display.php:339 -#: src/Module/Settings/TwoFactor/AppSpecific.php:137 +#: src/Module/Settings/Channels.php:177 src/Module/Settings/Channels.php:198 +#: src/Module/Settings/Display.php:325 +#: src/Module/Settings/TwoFactor/AppSpecific.php:123 msgid "Description" msgstr "説明" -#: src/Module/Settings/Channels.php:192 src/Module/Settings/Channels.php:213 +#: src/Module/Settings/Channels.php:178 src/Module/Settings/Channels.php:199 msgid "Access Key" msgstr "" -#: src/Module/Settings/Channels.php:193 src/Module/Settings/Channels.php:214 +#: src/Module/Settings/Channels.php:179 src/Module/Settings/Channels.php:200 msgid "Circle/Channel" msgstr "" -#: src/Module/Settings/Channels.php:194 src/Module/Settings/Channels.php:215 +#: src/Module/Settings/Channels.php:180 src/Module/Settings/Channels.php:201 msgid "Include Tags" msgstr "" -#: src/Module/Settings/Channels.php:195 src/Module/Settings/Channels.php:216 +#: src/Module/Settings/Channels.php:181 src/Module/Settings/Channels.php:202 msgid "Exclude Tags" msgstr "" -#: src/Module/Settings/Channels.php:196 src/Module/Settings/Channels.php:217 +#: src/Module/Settings/Channels.php:182 src/Module/Settings/Channels.php:203 msgid "Minimum Size" msgstr "" -#: src/Module/Settings/Channels.php:197 src/Module/Settings/Channels.php:218 +#: src/Module/Settings/Channels.php:183 src/Module/Settings/Channels.php:204 msgid "Maximum Size" msgstr "" -#: src/Module/Settings/Channels.php:198 src/Module/Settings/Channels.php:219 +#: src/Module/Settings/Channels.php:184 src/Module/Settings/Channels.php:205 msgid "Full Text Search" msgstr "" -#: src/Module/Settings/Channels.php:202 src/Module/Settings/Channels.php:223 +#: src/Module/Settings/Channels.php:188 src/Module/Settings/Channels.php:209 msgid "Select all languages that you want to see in this channel." msgstr "" -#: src/Module/Settings/Channels.php:204 +#: src/Module/Settings/Channels.php:190 msgid "Delete channel" msgstr "" -#: src/Module/Settings/Channels.php:204 +#: src/Module/Settings/Channels.php:190 msgid "Check to delete this entry from the channel list" msgstr "" -#: src/Module/Settings/Channels.php:211 +#: src/Module/Settings/Channels.php:197 msgid "Short name for the channel. It is displayed on the channels widget." msgstr "" -#: src/Module/Settings/Channels.php:212 +#: src/Module/Settings/Channels.php:198 msgid "This should describe the content of the channel in a few word." msgstr "" -#: src/Module/Settings/Channels.php:213 +#: src/Module/Settings/Channels.php:199 msgid "" "When you want to access this channel via an access key, you can define it " "here. Pay attention to not use an already used one." msgstr "" -#: src/Module/Settings/Channels.php:214 +#: src/Module/Settings/Channels.php:200 msgid "Select a circle or channel, that your channel should be based on." msgstr "" -#: src/Module/Settings/Channels.php:215 +#: src/Module/Settings/Channels.php:201 msgid "" "Comma separated list of tags. A post will be used when it contains any of " "the listed tags." msgstr "" -#: src/Module/Settings/Channels.php:216 +#: src/Module/Settings/Channels.php:202 msgid "" "Comma separated list of tags. If a post contain any of these tags, then it " "will not be part of nthis channel." msgstr "" -#: src/Module/Settings/Channels.php:217 +#: src/Module/Settings/Channels.php:203 msgid "" "Minimum post size. Leave empty for no minimum size. The size is calculated " "without links, attached posts, mentions or hashtags." msgstr "" -#: src/Module/Settings/Channels.php:218 +#: src/Module/Settings/Channels.php:204 msgid "" "Maximum post size. Leave empty for no maximum size. The size is calculated " "without links, attached posts, mentions or hashtags." msgstr "" -#: src/Module/Settings/Channels.php:219 +#: src/Module/Settings/Channels.php:205 #, php-format msgid "" "Search terms for the body, supports the \"boolean mode\" operators from " @@ -10278,576 +10272,589 @@ msgid "" "keywords: %s" msgstr "" -#: src/Module/Settings/Channels.php:220 +#: src/Module/Settings/Channels.php:206 msgid "Check to display images in the channel." msgstr "" -#: src/Module/Settings/Channels.php:221 +#: src/Module/Settings/Channels.php:207 msgid "Check to display videos in the channel." msgstr "" -#: src/Module/Settings/Channels.php:222 +#: src/Module/Settings/Channels.php:208 msgid "Check to display audio in the channel." msgstr "" -#: src/Module/Settings/Channels.php:227 +#: src/Module/Settings/Channels.php:213 msgid "Add new entry to the channel list" msgstr "" -#: src/Module/Settings/Channels.php:228 +#: src/Module/Settings/Channels.php:214 msgid "Add" msgstr "追加" -#: src/Module/Settings/Channels.php:230 +#: src/Module/Settings/Channels.php:216 msgid "Current Entries in the channel list" msgstr "" -#: src/Module/Settings/Channels.php:233 +#: src/Module/Settings/Channels.php:219 msgid "Delete entry from the channel list" msgstr "" -#: src/Module/Settings/Channels.php:234 +#: src/Module/Settings/Channels.php:220 msgid "Delete entry from the channel list?" msgstr "" -#: src/Module/Settings/Connectors.php:120 +#: src/Module/Settings/Connectors.php:108 msgid "Failed to connect with email account using the settings provided." msgstr "提供された設定を使用してメールアカウントに接続できませんでした。" -#: src/Module/Settings/Connectors.php:166 -#: src/Module/Settings/Connectors.php:167 +#: src/Module/Settings/Connectors.php:155 +#: src/Module/Settings/Connectors.php:156 msgid "Diaspora (Socialhome, Hubzilla)" msgstr "Diaspora(Socialhome、Hubzilla)" -#: src/Module/Settings/Connectors.php:166 -#: src/Module/Settings/Connectors.php:170 +#: src/Module/Settings/Connectors.php:155 #, php-format msgid "Built-in support for %s connectivity is enabled" msgstr "" -#: src/Module/Settings/Connectors.php:167 -#: src/Module/Settings/Connectors.php:169 +#: src/Module/Settings/Connectors.php:156 #, php-format msgid "Built-in support for %s connectivity is disabled" msgstr "" -#: src/Module/Settings/Connectors.php:169 -#: src/Module/Settings/Connectors.php:170 -msgid "OStatus (GNU Social)" -msgstr "OStatus (GNU Social)" - -#: src/Module/Settings/Connectors.php:182 +#: src/Module/Settings/Connectors.php:167 msgid "Email access is disabled on this site." msgstr "このサイトではメールアクセスが無効になっています。" -#: src/Module/Settings/Connectors.php:197 -#: src/Module/Settings/Connectors.php:244 +#: src/Module/Settings/Connectors.php:182 +#: src/Module/Settings/Connectors.php:233 msgid "None" msgstr "無し" -#: src/Module/Settings/Connectors.php:209 +#: src/Module/Settings/Connectors.php:186 +msgid "Default (Mastodon will display the title and a link to the post)" +msgstr "" + +#: src/Module/Settings/Connectors.php:187 +msgid "" +"Use the summary (Mastodon and some others will treat it as content warning)" +msgstr "" + +#: src/Module/Settings/Connectors.php:188 +msgid "Embed the title in the body" +msgstr "" + +#: src/Module/Settings/Connectors.php:199 msgid "General Social Media Settings" msgstr "一般的なソーシャルメディア設定" -#: src/Module/Settings/Connectors.php:212 +#: src/Module/Settings/Connectors.php:202 msgid "Followed content scope" msgstr "" -#: src/Module/Settings/Connectors.php:214 +#: src/Module/Settings/Connectors.php:204 msgid "" "By default, conversations in which your follows participated but didn't " "start will be shown in your timeline. You can turn this behavior off, or " "expand it to the conversations in which your follows liked a post." msgstr "" -#: src/Module/Settings/Connectors.php:216 +#: src/Module/Settings/Connectors.php:206 msgid "Only conversations my follows started" msgstr "" -#: src/Module/Settings/Connectors.php:217 +#: src/Module/Settings/Connectors.php:207 msgid "Conversations my follows started or commented on (default)" msgstr "" -#: src/Module/Settings/Connectors.php:218 +#: src/Module/Settings/Connectors.php:208 msgid "Any conversation my follows interacted with, including likes" msgstr "" -#: src/Module/Settings/Connectors.php:221 +#: src/Module/Settings/Connectors.php:211 msgid "Collapse sensitive posts" msgstr "" -#: src/Module/Settings/Connectors.php:221 +#: src/Module/Settings/Connectors.php:211 msgid "" "If a post is marked as \"sensitive\", it will be displayed in a collapsed " "state, if this option is enabled." msgstr "" -#: src/Module/Settings/Connectors.php:222 +#: src/Module/Settings/Connectors.php:212 msgid "Enable intelligent shortening" msgstr "" -#: src/Module/Settings/Connectors.php:222 +#: src/Module/Settings/Connectors.php:212 msgid "" "Normally the system tries to find the best link to add to shortened posts. " "If disabled, every shortened post will always point to the original " "friendica post." msgstr "" -#: src/Module/Settings/Connectors.php:223 +#: src/Module/Settings/Connectors.php:213 msgid "Enable simple text shortening" msgstr "" -#: src/Module/Settings/Connectors.php:223 +#: src/Module/Settings/Connectors.php:213 msgid "" "Normally the system shortens posts at the next line feed. If this option is " "enabled then the system will shorten the text at the maximum character " "limit." msgstr "" -#: src/Module/Settings/Connectors.php:224 +#: src/Module/Settings/Connectors.php:214 msgid "Attach the link title" msgstr "リンクの件名を添付します" -#: src/Module/Settings/Connectors.php:224 +#: src/Module/Settings/Connectors.php:214 msgid "" "When activated, the title of the attached link will be added as a title on " "posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that" " share feed content." msgstr "有効にすると、添付されたリンクのタイトルがDiasporaへの投稿のタイトルとして追加されます。 これは主に、フィードコンテンツを共有する「リモート セルフ」コンタクトで役立ちます。" -#: src/Module/Settings/Connectors.php:225 +#: src/Module/Settings/Connectors.php:215 msgid "API: Use spoiler field as title" msgstr "" -#: src/Module/Settings/Connectors.php:225 +#: src/Module/Settings/Connectors.php:215 msgid "" "When activated, the \"spoiler_text\" field in the API will be used for the " "title on standalone posts. When deactivated it will be used for spoiler " "text. For comments it will always be used for spoiler text." msgstr "" -#: src/Module/Settings/Connectors.php:226 +#: src/Module/Settings/Connectors.php:216 msgid "API: Automatically links at the end of the post as attached posts" msgstr "" -#: src/Module/Settings/Connectors.php:226 +#: src/Module/Settings/Connectors.php:216 msgid "" "When activated, added links at the end of the post react the same way as " "added links in the web interface." msgstr "" -#: src/Module/Settings/Connectors.php:227 +#: src/Module/Settings/Connectors.php:217 +msgid "Article Mode" +msgstr "" + +#: src/Module/Settings/Connectors.php:217 +msgid "" +"Controls how posts with titles are transmitted. Mastodon and its forks don't" +" display the content of these posts if the post is created in the correct " +"(default) way." +msgstr "" + +#: src/Module/Settings/Connectors.php:218 msgid "Your legacy ActivityPub/GNU Social account" msgstr "" -#: src/Module/Settings/Connectors.php:227 +#: src/Module/Settings/Connectors.php:218 msgid "" "If you enter your old account name from an ActivityPub based system or your " "GNU Social/Statusnet account name here (in the format user@domain.tld), your" " contacts will be added automatically. The field will be emptied when done." msgstr "" -#: src/Module/Settings/Connectors.php:229 -msgid "Repair OStatus subscriptions" -msgstr "OStatusサブスクリプションを修復する" - -#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Connectors.php:222 msgid "Email/Mailbox Setup" msgstr "メール/メールボックスのセットアップ" -#: src/Module/Settings/Connectors.php:234 +#: src/Module/Settings/Connectors.php:223 msgid "" "If you wish to communicate with email contacts using this service " "(optional), please specify how to connect to your mailbox." msgstr "このサービス(オプション)を使用してメールコンタクトと通信する場合は、メールボックスへの接続方法を指定してください。" -#: src/Module/Settings/Connectors.php:235 +#: src/Module/Settings/Connectors.php:224 msgid "Last successful email check:" msgstr "最後に成功したメールチェック:" -#: src/Module/Settings/Connectors.php:237 +#: src/Module/Settings/Connectors.php:226 msgid "IMAP server name:" msgstr "IMAPサーバー名:" -#: src/Module/Settings/Connectors.php:238 +#: src/Module/Settings/Connectors.php:227 msgid "IMAP port:" msgstr "IMAPポート:" -#: src/Module/Settings/Connectors.php:239 +#: src/Module/Settings/Connectors.php:228 msgid "Security:" msgstr "セキュリティ:" -#: src/Module/Settings/Connectors.php:240 +#: src/Module/Settings/Connectors.php:229 msgid "Email login name:" msgstr "メールのログイン名:" -#: src/Module/Settings/Connectors.php:241 +#: src/Module/Settings/Connectors.php:230 msgid "Email password:" msgstr "メールのパスワード:" -#: src/Module/Settings/Connectors.php:242 +#: src/Module/Settings/Connectors.php:231 msgid "Reply-to address:" msgstr "返信先アドレス:" -#: src/Module/Settings/Connectors.php:243 +#: src/Module/Settings/Connectors.php:232 msgid "Send public posts to all email contacts:" msgstr "すべてのメールコンタクトに一般公開投稿を送信します。" -#: src/Module/Settings/Connectors.php:244 +#: src/Module/Settings/Connectors.php:233 msgid "Action after import:" msgstr "インポート後のアクション:" -#: src/Module/Settings/Connectors.php:244 +#: src/Module/Settings/Connectors.php:233 msgid "Move to folder" msgstr "フォルダへ移動" -#: src/Module/Settings/Connectors.php:245 +#: src/Module/Settings/Connectors.php:234 msgid "Move to folder:" msgstr "フォルダへ移動:" -#: src/Module/Settings/Delegation.php:73 +#: src/Module/Settings/Delegation.php:59 msgid "Delegation successfully granted." msgstr "委任が正常に許可されました。" -#: src/Module/Settings/Delegation.php:75 +#: src/Module/Settings/Delegation.php:61 msgid "Parent user not found, unavailable or password doesn't match." msgstr "親ユーザーが見つからないか、利用できないか、パスワードが一致しません。" -#: src/Module/Settings/Delegation.php:79 +#: src/Module/Settings/Delegation.php:65 msgid "Delegation successfully revoked." msgstr "委任が正常に取り消されました。" -#: src/Module/Settings/Delegation.php:98 -#: src/Module/Settings/Delegation.php:120 +#: src/Module/Settings/Delegation.php:84 +#: src/Module/Settings/Delegation.php:106 msgid "" "Delegated administrators can view but not change delegation permissions." msgstr "委任された管理者は、委任権限を確認できますが、変更はできません。" -#: src/Module/Settings/Delegation.php:112 +#: src/Module/Settings/Delegation.php:98 msgid "Delegate user not found." msgstr "移譲ユーザーが見つかりません。" -#: src/Module/Settings/Delegation.php:169 +#: src/Module/Settings/Delegation.php:155 msgid "No parent user" msgstr "親となるユーザが存在しません。" -#: src/Module/Settings/Delegation.php:180 -#: src/Module/Settings/Delegation.php:191 +#: src/Module/Settings/Delegation.php:166 +#: src/Module/Settings/Delegation.php:177 msgid "Parent User" msgstr "親ユーザ" -#: src/Module/Settings/Delegation.php:188 +#: src/Module/Settings/Delegation.php:174 msgid "Additional Accounts" msgstr "追加のアカウント" -#: src/Module/Settings/Delegation.php:189 +#: src/Module/Settings/Delegation.php:175 msgid "" "Register additional accounts that are automatically connected to your " "existing account so you can manage them from this account." msgstr "既存のアカウントに自動的に接続される追加のアカウントを登録して、このアカウントから管理できるようにします。" -#: src/Module/Settings/Delegation.php:190 +#: src/Module/Settings/Delegation.php:176 msgid "Register an additional account" msgstr "追加アカウントの登録" -#: src/Module/Settings/Delegation.php:192 +#: src/Module/Settings/Delegation.php:178 msgid "" "Parent users have total control about this account, including the account " "settings. Please double check whom you give this access." msgstr "親ユーザは、このアカウントについてアカウント設定を含む全ての権限を持ちます。 このアクセスを許可するユーザ名を再確認してください。" -#: src/Module/Settings/Delegation.php:195 +#: src/Module/Settings/Delegation.php:181 msgid "Delegates" msgstr "移譲" -#: src/Module/Settings/Delegation.php:196 +#: src/Module/Settings/Delegation.php:182 msgid "" "Delegates are able to manage all aspects of this account/page except for " "basic account settings. Please do not delegate your personal account to " "anybody that you do not trust completely." msgstr "移譲された人は、このアカウント/ページの管理について、基本的なアカウント設定を除いた、すべての権限を得ます。 完全に信頼していない人には、あなたの個人アカウントを移譲しないでください。" -#: src/Module/Settings/Delegation.php:197 +#: src/Module/Settings/Delegation.php:183 msgid "Existing Page Delegates" msgstr "既存のページの移譲" -#: src/Module/Settings/Delegation.php:198 +#: src/Module/Settings/Delegation.php:184 msgid "Potential Delegates" msgstr "移譲先の候補" -#: src/Module/Settings/Delegation.php:199 +#: src/Module/Settings/Delegation.php:185 msgid "No entries." msgstr "エントリは有りません。" -#: src/Module/Settings/Display.php:183 +#: src/Module/Settings/Display.php:169 msgid "The theme you chose isn't available." msgstr "選択したテーマは使用できません。" -#: src/Module/Settings/Display.php:223 +#: src/Module/Settings/Display.php:209 #, php-format msgid "%s - (Unsupported)" msgstr "%s (サポートされていません)" -#: src/Module/Settings/Display.php:260 +#: src/Module/Settings/Display.php:246 msgid "No preview" msgstr "" -#: src/Module/Settings/Display.php:261 +#: src/Module/Settings/Display.php:247 msgid "No image" msgstr "" -#: src/Module/Settings/Display.php:262 +#: src/Module/Settings/Display.php:248 msgid "Small Image" msgstr "" -#: src/Module/Settings/Display.php:263 +#: src/Module/Settings/Display.php:249 msgid "Large Image" msgstr "" -#: src/Module/Settings/Display.php:308 +#: src/Module/Settings/Display.php:294 msgid "Display Settings" msgstr "ディスプレイの設定" -#: src/Module/Settings/Display.php:310 +#: src/Module/Settings/Display.php:296 msgid "General Theme Settings" msgstr "一般的なテーマ設定" -#: src/Module/Settings/Display.php:311 +#: src/Module/Settings/Display.php:297 msgid "Custom Theme Settings" msgstr "カスタムテーマ設定" -#: src/Module/Settings/Display.php:312 +#: src/Module/Settings/Display.php:298 msgid "Content Settings" msgstr "コンテンツ設定" -#: src/Module/Settings/Display.php:313 view/theme/duepuntozero/config.php:86 -#: view/theme/frio/config.php:151 view/theme/quattro/config.php:88 -#: view/theme/vier/config.php:136 +#: src/Module/Settings/Display.php:299 view/theme/duepuntozero/config.php:74 +#: view/theme/frio/config.php:139 view/theme/quattro/config.php:76 +#: view/theme/vier/config.php:124 msgid "Theme settings" msgstr "テーマ設定" -#: src/Module/Settings/Display.php:314 +#: src/Module/Settings/Display.php:300 msgid "Timelines" msgstr "" -#: src/Module/Settings/Display.php:321 +#: src/Module/Settings/Display.php:307 msgid "Display Theme:" msgstr "ディスプレイテーマ:" -#: src/Module/Settings/Display.php:322 +#: src/Module/Settings/Display.php:308 msgid "Mobile Theme:" msgstr "モバイルテーマ:" -#: src/Module/Settings/Display.php:325 +#: src/Module/Settings/Display.php:311 msgid "Number of items to display per page:" msgstr "ページごとに表示する項目の数:" -#: src/Module/Settings/Display.php:325 src/Module/Settings/Display.php:326 +#: src/Module/Settings/Display.php:311 src/Module/Settings/Display.php:312 msgid "Maximum of 100 items" msgstr "最大100項目" -#: src/Module/Settings/Display.php:326 +#: src/Module/Settings/Display.php:312 msgid "Number of items to display per page when viewed from mobile device:" msgstr "モバイルデバイスから表示したときにページごとに表示する項目の数:" -#: src/Module/Settings/Display.php:327 +#: src/Module/Settings/Display.php:313 msgid "Update browser every xx seconds" msgstr "xx秒ごとにブラウザーを更新する" -#: src/Module/Settings/Display.php:327 +#: src/Module/Settings/Display.php:313 msgid "Minimum of 10 seconds. Enter -1 to disable it." msgstr "10秒以上。 -1を入力して無効にします。" -#: src/Module/Settings/Display.php:328 +#: src/Module/Settings/Display.php:314 msgid "Display emoticons" msgstr "" -#: src/Module/Settings/Display.php:328 +#: src/Module/Settings/Display.php:314 msgid "When enabled, emoticons are replaced with matching symbols." msgstr "" -#: src/Module/Settings/Display.php:329 +#: src/Module/Settings/Display.php:315 msgid "Infinite scroll" msgstr "無限スクロール" -#: src/Module/Settings/Display.php:329 +#: src/Module/Settings/Display.php:315 msgid "Automatic fetch new items when reaching the page end." msgstr "ページの最後に到達したとき、新規項目を自動取得する" -#: src/Module/Settings/Display.php:330 +#: src/Module/Settings/Display.php:316 msgid "Enable Smart Threading" msgstr "" -#: src/Module/Settings/Display.php:330 +#: src/Module/Settings/Display.php:316 msgid "Enable the automatic suppression of extraneous thread indentation." msgstr "" -#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/Display.php:317 msgid "Display the Dislike feature" msgstr "" -#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/Display.php:317 msgid "" "Display the Dislike button and dislike reactions on posts and comments." msgstr "" -#: src/Module/Settings/Display.php:332 +#: src/Module/Settings/Display.php:318 msgid "Display the resharer" msgstr "" -#: src/Module/Settings/Display.php:332 +#: src/Module/Settings/Display.php:318 msgid "Display the first resharer as icon and text on a reshared item." msgstr "" -#: src/Module/Settings/Display.php:333 +#: src/Module/Settings/Display.php:319 msgid "Stay local" msgstr "" -#: src/Module/Settings/Display.php:333 +#: src/Module/Settings/Display.php:319 msgid "Don't go to a remote system when following a contact link." msgstr "" -#: src/Module/Settings/Display.php:334 +#: src/Module/Settings/Display.php:320 msgid "Show the post deletion checkbox" msgstr "" -#: src/Module/Settings/Display.php:334 +#: src/Module/Settings/Display.php:320 msgid "Display the checkbox for the post deletion on the network page." msgstr "" -#: src/Module/Settings/Display.php:335 +#: src/Module/Settings/Display.php:321 msgid "DIsplay the event list" msgstr "" -#: src/Module/Settings/Display.php:335 +#: src/Module/Settings/Display.php:321 msgid "Display the birthday reminder and event list on the network page." msgstr "" -#: src/Module/Settings/Display.php:336 +#: src/Module/Settings/Display.php:322 msgid "Link preview mode" msgstr "" -#: src/Module/Settings/Display.php:336 +#: src/Module/Settings/Display.php:322 msgid "Appearance of the link preview that is added to each post with a link." msgstr "" -#: src/Module/Settings/Display.php:341 +#: src/Module/Settings/Display.php:327 msgid "Bookmark" msgstr "" -#: src/Module/Settings/Display.php:343 +#: src/Module/Settings/Display.php:329 msgid "" "Enable timelines that you want to see in the channels widget. Bookmark " "timelines that you want to see in the top menu." msgstr "" -#: src/Module/Settings/Display.php:345 +#: src/Module/Settings/Display.php:331 msgid "Channel languages:" msgstr "" -#: src/Module/Settings/Display.php:345 +#: src/Module/Settings/Display.php:331 msgid "Select all languages that you want to see in your channels." msgstr "" -#: src/Module/Settings/Display.php:347 +#: src/Module/Settings/Display.php:333 msgid "Beginning of week:" msgstr "週の始まり:" -#: src/Module/Settings/Display.php:348 +#: src/Module/Settings/Display.php:334 msgid "Default calendar view:" msgstr "" -#: src/Module/Settings/Features.php:73 +#: src/Module/Settings/Features.php:59 msgid "Additional Features" msgstr "追加機能" -#: src/Module/Settings/OAuth.php:71 +#: src/Module/Settings/OAuth.php:57 msgid "Connected Apps" msgstr "接続されたアプリ" -#: src/Module/Settings/OAuth.php:75 +#: src/Module/Settings/OAuth.php:61 msgid "Remove authorization" msgstr "承認を削除" -#: src/Module/Settings/Profile/Index.php:116 +#: src/Module/Settings/Profile/Index.php:102 msgid "Display Name is required." msgstr "" -#: src/Module/Settings/Profile/Index.php:167 +#: src/Module/Settings/Profile/Index.php:156 msgid "Profile couldn't be updated." msgstr "" -#: src/Module/Settings/Profile/Index.php:205 -#: src/Module/Settings/Profile/Index.php:226 +#: src/Module/Settings/Profile/Index.php:196 +#: src/Module/Settings/Profile/Index.php:217 msgid "Label:" msgstr "" -#: src/Module/Settings/Profile/Index.php:206 -#: src/Module/Settings/Profile/Index.php:227 +#: src/Module/Settings/Profile/Index.php:197 +#: src/Module/Settings/Profile/Index.php:218 msgid "Value:" msgstr "" -#: src/Module/Settings/Profile/Index.php:217 -#: src/Module/Settings/Profile/Index.php:238 +#: src/Module/Settings/Profile/Index.php:208 +#: src/Module/Settings/Profile/Index.php:229 msgid "Field Permissions" msgstr "" -#: src/Module/Settings/Profile/Index.php:218 -#: src/Module/Settings/Profile/Index.php:239 +#: src/Module/Settings/Profile/Index.php:209 +#: src/Module/Settings/Profile/Index.php:230 msgid "(click to open/close)" msgstr "(クリックして開く・閉じる)" -#: src/Module/Settings/Profile/Index.php:224 +#: src/Module/Settings/Profile/Index.php:215 msgid "Add a new profile field" msgstr "" -#: src/Module/Settings/Profile/Index.php:247 +#: src/Module/Settings/Profile/Index.php:238 msgid "" "The homepage is verified. A rel=\"me\" link back to your Friendica profile " "page was found on the homepage." msgstr "" -#: src/Module/Settings/Profile/Index.php:249 +#: src/Module/Settings/Profile/Index.php:240 #, php-format msgid "" "To verify your homepage, add a rel=\"me\" link to it, pointing to your " "profile URL (%s)." msgstr "" -#: src/Module/Settings/Profile/Index.php:255 +#: src/Module/Settings/Profile/Index.php:246 msgid "Profile Actions" msgstr "プロフィールアクション" -#: src/Module/Settings/Profile/Index.php:256 +#: src/Module/Settings/Profile/Index.php:247 msgid "Edit Profile Details" msgstr "プロフィールの詳細を編集" -#: src/Module/Settings/Profile/Index.php:258 +#: src/Module/Settings/Profile/Index.php:249 msgid "Change Profile Photo" msgstr "プロフィール写真の変更" -#: src/Module/Settings/Profile/Index.php:261 +#: src/Module/Settings/Profile/Index.php:252 msgid "Profile picture" msgstr "プロフィールの写真" -#: src/Module/Settings/Profile/Index.php:262 +#: src/Module/Settings/Profile/Index.php:253 msgid "Location" msgstr "位置情報" -#: src/Module/Settings/Profile/Index.php:263 src/Util/Temporal.php:97 -#: src/Util/Temporal.php:99 +#: src/Module/Settings/Profile/Index.php:254 src/Util/Temporal.php:83 +#: src/Util/Temporal.php:85 msgid "Miscellaneous" msgstr "その他" -#: src/Module/Settings/Profile/Index.php:264 +#: src/Module/Settings/Profile/Index.php:255 msgid "Custom Profile Fields" msgstr "" -#: src/Module/Settings/Profile/Index.php:265 src/Module/Welcome.php:58 +#: src/Module/Settings/Profile/Index.php:256 src/Module/Welcome.php:44 msgid "Upload Profile Photo" msgstr "プロフィール写真をアップロード" -#: src/Module/Settings/Profile/Index.php:266 +#: src/Module/Settings/Profile/Index.php:257 #, php-format msgid "" "Custom fields appear on your profile page.
\n" @@ -10857,396 +10864,396 @@ msgid "" "\t\t\t\tNon-public fields can only be seen by the selected Friendica contacts or the Friendica contacts in the selected circles.
" msgstr "" -#: src/Module/Settings/Profile/Index.php:286 +#: src/Module/Settings/Profile/Index.php:277 msgid "Street Address:" msgstr "住所:" -#: src/Module/Settings/Profile/Index.php:287 +#: src/Module/Settings/Profile/Index.php:278 msgid "Locality/City:" msgstr "地域/市:" -#: src/Module/Settings/Profile/Index.php:288 +#: src/Module/Settings/Profile/Index.php:279 msgid "Region/State:" msgstr "地域/州:" -#: src/Module/Settings/Profile/Index.php:289 +#: src/Module/Settings/Profile/Index.php:280 msgid "Postal/Zip Code:" msgstr "郵便番号:" -#: src/Module/Settings/Profile/Index.php:290 +#: src/Module/Settings/Profile/Index.php:281 msgid "Country:" msgstr "国:" -#: src/Module/Settings/Profile/Index.php:292 +#: src/Module/Settings/Profile/Index.php:283 msgid "XMPP (Jabber) address:" msgstr "XMPP(Jabber)アドレス:" -#: src/Module/Settings/Profile/Index.php:292 +#: src/Module/Settings/Profile/Index.php:283 msgid "" "The XMPP address will be published so that people can follow you there." msgstr "" -#: src/Module/Settings/Profile/Index.php:293 +#: src/Module/Settings/Profile/Index.php:284 msgid "Matrix (Element) address:" msgstr "" -#: src/Module/Settings/Profile/Index.php:293 +#: src/Module/Settings/Profile/Index.php:284 msgid "" "The Matrix address will be published so that people can follow you there." msgstr "" -#: src/Module/Settings/Profile/Index.php:294 +#: src/Module/Settings/Profile/Index.php:285 msgid "Homepage URL:" msgstr "ホームページのURL:" -#: src/Module/Settings/Profile/Index.php:295 +#: src/Module/Settings/Profile/Index.php:286 msgid "Public Keywords:" msgstr "公開キーワード:" -#: src/Module/Settings/Profile/Index.php:295 +#: src/Module/Settings/Profile/Index.php:286 msgid "(Used for suggesting potential friends, can be seen by others)" msgstr "(友人を候補を提案するために使用ます。また他の人が見ることができます。)" -#: src/Module/Settings/Profile/Index.php:296 +#: src/Module/Settings/Profile/Index.php:287 msgid "Private Keywords:" msgstr "プライベートキーワード:" -#: src/Module/Settings/Profile/Index.php:296 +#: src/Module/Settings/Profile/Index.php:287 msgid "(Used for searching profiles, never shown to others)" msgstr "(プロフィールの検索に使用され、他のユーザーには表示されません)" -#: src/Module/Settings/Profile/Photo/Crop.php:107 -#: src/Module/Settings/Profile/Photo/Crop.php:125 -#: src/Module/Settings/Profile/Photo/Crop.php:143 -#: src/Module/Settings/Profile/Photo/Index.php:100 +#: src/Module/Settings/Profile/Photo/Crop.php:93 +#: src/Module/Settings/Profile/Photo/Crop.php:111 +#: src/Module/Settings/Profile/Photo/Crop.php:129 +#: src/Module/Settings/Profile/Photo/Index.php:86 #, php-format msgid "Image size reduction [%s] failed." msgstr "画像サイズの縮小[ %s ]に失敗しました。" -#: src/Module/Settings/Profile/Photo/Crop.php:150 +#: src/Module/Settings/Profile/Photo/Crop.php:136 msgid "" "Shift-reload the page or clear browser cache if the new photo does not " "display immediately." msgstr "新しい写真がすぐに表示されない場合は、Shiftキーを押しながらページをリロードするか、ブラウザーのキャッシュをクリアします。" -#: src/Module/Settings/Profile/Photo/Crop.php:155 +#: src/Module/Settings/Profile/Photo/Crop.php:141 msgid "Unable to process image" msgstr "画像を処理できません" -#: src/Module/Settings/Profile/Photo/Crop.php:174 +#: src/Module/Settings/Profile/Photo/Crop.php:160 msgid "Photo not found." msgstr "" -#: src/Module/Settings/Profile/Photo/Crop.php:196 +#: src/Module/Settings/Profile/Photo/Crop.php:182 msgid "Profile picture successfully updated." msgstr "" -#: src/Module/Settings/Profile/Photo/Crop.php:222 -#: src/Module/Settings/Profile/Photo/Crop.php:226 +#: src/Module/Settings/Profile/Photo/Crop.php:208 +#: src/Module/Settings/Profile/Photo/Crop.php:212 msgid "Crop Image" msgstr "クロップ画像" -#: src/Module/Settings/Profile/Photo/Crop.php:223 +#: src/Module/Settings/Profile/Photo/Crop.php:209 msgid "Please adjust the image cropping for optimum viewing." msgstr "最適な表示になるように画像のトリミングを調整してください。" -#: src/Module/Settings/Profile/Photo/Crop.php:225 +#: src/Module/Settings/Profile/Photo/Crop.php:211 msgid "Use Image As Is" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:46 +#: src/Module/Settings/Profile/Photo/Index.php:32 msgid "Missing uploaded image." msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:123 +#: src/Module/Settings/Profile/Photo/Index.php:109 msgid "Profile Picture Settings" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:124 +#: src/Module/Settings/Profile/Photo/Index.php:110 msgid "Current Profile Picture" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:125 +#: src/Module/Settings/Profile/Photo/Index.php:111 msgid "Upload Profile Picture" msgstr "プロフィール画像をアップロード" -#: src/Module/Settings/Profile/Photo/Index.php:126 +#: src/Module/Settings/Profile/Photo/Index.php:112 msgid "Upload Picture:" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:131 +#: src/Module/Settings/Profile/Photo/Index.php:117 msgid "or" msgstr "または" -#: src/Module/Settings/Profile/Photo/Index.php:133 +#: src/Module/Settings/Profile/Photo/Index.php:119 msgid "skip this step" msgstr "このステップを飛ばす" -#: src/Module/Settings/Profile/Photo/Index.php:135 +#: src/Module/Settings/Profile/Photo/Index.php:121 msgid "select a photo from your photo albums" msgstr "フォトアルバムから写真を選択する" -#: src/Module/Settings/RemoveMe.php:76 +#: src/Module/Settings/RemoveMe.php:62 msgid "" "There was a validation error, please make sure you're logged in with the " "account you want to remove and try again." msgstr "" -#: src/Module/Settings/RemoveMe.php:76 +#: src/Module/Settings/RemoveMe.php:62 msgid "If this error persists, please contact your administrator." msgstr "" -#: src/Module/Settings/RemoveMe.php:90 -#: src/Navigation/Notifications/Repository/Notify.php:471 -#: src/Navigation/Notifications/Repository/Notify.php:492 +#: src/Module/Settings/RemoveMe.php:76 +#: src/Navigation/Notifications/Repository/Notify.php:457 +#: src/Navigation/Notifications/Repository/Notify.php:478 msgid "[Friendica System Notify]" msgstr "[Friendica システム通知]" -#: src/Module/Settings/RemoveMe.php:90 +#: src/Module/Settings/RemoveMe.php:76 msgid "User deleted their account" msgstr "このユーザはアカウントを削除しました。" -#: src/Module/Settings/RemoveMe.php:91 +#: src/Module/Settings/RemoveMe.php:77 msgid "" "On your Friendica node an user deleted their account. Please ensure that " "their data is removed from the backups." msgstr "Friendicaノードで、ユーザーがアカウントを削除しました。 それらのデータがバックアップから削除されていることを確認してください。" -#: src/Module/Settings/RemoveMe.php:92 +#: src/Module/Settings/RemoveMe.php:78 #, php-format msgid "The user id is %d" msgstr "ユーザIDは %d です" -#: src/Module/Settings/RemoveMe.php:105 +#: src/Module/Settings/RemoveMe.php:91 msgid "Your account has been successfully removed. Bye bye!" msgstr "" -#: src/Module/Settings/RemoveMe.php:130 +#: src/Module/Settings/RemoveMe.php:116 msgid "Remove My Account" msgstr "自分のアカウントを削除します" -#: src/Module/Settings/RemoveMe.php:131 +#: src/Module/Settings/RemoveMe.php:117 msgid "" "This will completely remove your account. Once this has been done it is not " "recoverable." msgstr "これにより、アカウントが完全に削除されます。 これが完了すると、回復できなくなります。" -#: src/Module/Settings/RemoveMe.php:136 +#: src/Module/Settings/RemoveMe.php:122 msgid "Please enter your password for verification:" msgstr "確認のため、あなたのパスワードを入力してください。" -#: src/Module/Settings/Server/Action.php:60 +#: src/Module/Settings/Server/Action.php:46 msgid "Do you want to ignore this server?" msgstr "" -#: src/Module/Settings/Server/Action.php:64 +#: src/Module/Settings/Server/Action.php:50 msgid "Do you want to unignore this server?" msgstr "" -#: src/Module/Settings/Server/Action.php:74 -#: src/Module/Settings/Server/Index.php:104 +#: src/Module/Settings/Server/Action.php:60 +#: src/Module/Settings/Server/Index.php:90 msgid "Remote server settings" msgstr "" -#: src/Module/Settings/Server/Action.php:77 +#: src/Module/Settings/Server/Action.php:63 msgid "Server URL" msgstr "" -#: src/Module/Settings/Server/Index.php:78 +#: src/Module/Settings/Server/Index.php:64 msgid "Settings saved" msgstr "" -#: src/Module/Settings/Server/Index.php:105 +#: src/Module/Settings/Server/Index.php:91 msgid "" "Here you can find all the remote servers you have taken individual " "moderation actions against. For a list of servers your node has blocked, " "please check out the Information page." msgstr "" -#: src/Module/Settings/Server/Index.php:110 +#: src/Module/Settings/Server/Index.php:96 msgid "Delete all your settings for the remote server" msgstr "" -#: src/Module/Settings/Server/Index.php:111 +#: src/Module/Settings/Server/Index.php:97 msgid "Save changes" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:69 -#: src/Module/Settings/TwoFactor/Recovery.php:67 -#: src/Module/Settings/TwoFactor/Trusted.php:70 -#: src/Module/Settings/TwoFactor/Verify.php:72 +#: src/Module/Settings/TwoFactor/AppSpecific.php:55 +#: src/Module/Settings/TwoFactor/Recovery.php:53 +#: src/Module/Settings/TwoFactor/Trusted.php:56 +#: src/Module/Settings/TwoFactor/Verify.php:58 msgid "Please enter your password to access this page." msgstr "このページにアクセスするには、パスワードを入力してください。" -#: src/Module/Settings/TwoFactor/AppSpecific.php:87 +#: src/Module/Settings/TwoFactor/AppSpecific.php:73 msgid "App-specific password generation failed: The description is empty." msgstr "アプリ固有のパスワード生成に失敗しました:説明は空です。" -#: src/Module/Settings/TwoFactor/AppSpecific.php:90 +#: src/Module/Settings/TwoFactor/AppSpecific.php:76 msgid "" "App-specific password generation failed: This description already exists." msgstr "アプリ固有のパスワード生成に失敗しました:この説明は既に存在します。" -#: src/Module/Settings/TwoFactor/AppSpecific.php:94 +#: src/Module/Settings/TwoFactor/AppSpecific.php:80 msgid "New app-specific password generated." msgstr "新しいアプリ固有のパスワードが生成されました。" -#: src/Module/Settings/TwoFactor/AppSpecific.php:100 +#: src/Module/Settings/TwoFactor/AppSpecific.php:86 msgid "App-specific passwords successfully revoked." msgstr "アプリ固有のパスワードが正常に取り消されました。" -#: src/Module/Settings/TwoFactor/AppSpecific.php:110 +#: src/Module/Settings/TwoFactor/AppSpecific.php:96 msgid "App-specific password successfully revoked." msgstr "アプリ固有のパスワードが正常に取り消されました。" -#: src/Module/Settings/TwoFactor/AppSpecific.php:131 +#: src/Module/Settings/TwoFactor/AppSpecific.php:117 msgid "Two-factor app-specific passwords" msgstr "二要素アプリ固有のパスワード" -#: src/Module/Settings/TwoFactor/AppSpecific.php:133 +#: src/Module/Settings/TwoFactor/AppSpecific.php:119 msgid "" "App-specific passwords are randomly generated passwords used instead your" " regular password to authenticate your account on third-party applications " "that don't support two-factor authentication.
" msgstr "アプリ固有のパスワードは、二要素認証をサポートしないサードパーティアプリケーションでアカウントを認証するために、通常のパスワードの代わりに使用されるランダムに生成されたパスワードです。
" -#: src/Module/Settings/TwoFactor/AppSpecific.php:134 +#: src/Module/Settings/TwoFactor/AppSpecific.php:120 msgid "" "Make sure to copy your new app-specific password now. You won’t be able to " "see it again!" msgstr "今すぐ新しいアプリ固有のパスワードをコピーしてください。あなたは再びそれを見ることができなくなります!" -#: src/Module/Settings/TwoFactor/AppSpecific.php:138 +#: src/Module/Settings/TwoFactor/AppSpecific.php:124 msgid "Last Used" msgstr "最終使用" -#: src/Module/Settings/TwoFactor/AppSpecific.php:139 +#: src/Module/Settings/TwoFactor/AppSpecific.php:125 msgid "Revoke" msgstr "取り消す" -#: src/Module/Settings/TwoFactor/AppSpecific.php:140 +#: src/Module/Settings/TwoFactor/AppSpecific.php:126 msgid "Revoke All" msgstr "すべて取り消す" -#: src/Module/Settings/TwoFactor/AppSpecific.php:143 +#: src/Module/Settings/TwoFactor/AppSpecific.php:129 msgid "" "When you generate a new app-specific password, you must use it right away, " "it will be shown to you once after you generate it." msgstr "新しいアプリ固有のパスワードを生成するときは、すぐに使用する必要があります。生成後、一度表示されます。" -#: src/Module/Settings/TwoFactor/AppSpecific.php:144 +#: src/Module/Settings/TwoFactor/AppSpecific.php:130 msgid "Generate new app-specific password" msgstr "新しいアプリ固有のパスワードを生成する" -#: src/Module/Settings/TwoFactor/AppSpecific.php:145 +#: src/Module/Settings/TwoFactor/AppSpecific.php:131 msgid "Friendiqa on my Fairphone 2..." msgstr "フェアフォン2のFriendiqa ..." -#: src/Module/Settings/TwoFactor/AppSpecific.php:146 +#: src/Module/Settings/TwoFactor/AppSpecific.php:132 msgid "Generate" msgstr "生成する" -#: src/Module/Settings/TwoFactor/Index.php:88 +#: src/Module/Settings/TwoFactor/Index.php:74 msgid "Two-factor authentication successfully disabled." msgstr "二要素認証が正常に無効になりました。" -#: src/Module/Settings/TwoFactor/Index.php:141 +#: src/Module/Settings/TwoFactor/Index.php:127 msgid "" "Use an application on a mobile device to get two-factor authentication " "codes when prompted on login.
" msgstr "ログイン時にプロンプトが表示されたら、モバイルデバイスのアプリケーションを使用して二要素認証コードを取得します。
" -#: src/Module/Settings/TwoFactor/Index.php:145 +#: src/Module/Settings/TwoFactor/Index.php:131 msgid "Authenticator app" msgstr "認証アプリ" -#: src/Module/Settings/TwoFactor/Index.php:146 +#: src/Module/Settings/TwoFactor/Index.php:132 msgid "Configured" msgstr "設定済み" -#: src/Module/Settings/TwoFactor/Index.php:146 +#: src/Module/Settings/TwoFactor/Index.php:132 msgid "Not Configured" msgstr "設定されていません" -#: src/Module/Settings/TwoFactor/Index.php:147 +#: src/Module/Settings/TwoFactor/Index.php:133 msgid "You haven't finished configuring your authenticator app.
" msgstr "認証アプリの設定が完了していません。
" -#: src/Module/Settings/TwoFactor/Index.php:148 +#: src/Module/Settings/TwoFactor/Index.php:134 msgid "Your authenticator app is correctly configured.
" msgstr "認証アプリが正しく構成されています。
" -#: src/Module/Settings/TwoFactor/Index.php:150 +#: src/Module/Settings/TwoFactor/Index.php:136 msgid "Recovery codes" msgstr "回復コード" -#: src/Module/Settings/TwoFactor/Index.php:151 +#: src/Module/Settings/TwoFactor/Index.php:137 msgid "Remaining valid codes" msgstr "残りの有効なコード" -#: src/Module/Settings/TwoFactor/Index.php:153 +#: src/Module/Settings/TwoFactor/Index.php:139 msgid "" "These one-use codes can replace an authenticator app code in case you " "have lost access to it.
" msgstr "これらの使い捨てコードは、認証アプリのコードにアクセスできなくなった場合に、認証アプリのコードを置き換えることができます。
" -#: src/Module/Settings/TwoFactor/Index.php:155 +#: src/Module/Settings/TwoFactor/Index.php:141 msgid "App-specific passwords" msgstr "アプリ固有のパスワード" -#: src/Module/Settings/TwoFactor/Index.php:156 +#: src/Module/Settings/TwoFactor/Index.php:142 msgid "Generated app-specific passwords" msgstr "生成されたアプリ固有のパスワード" -#: src/Module/Settings/TwoFactor/Index.php:158 +#: src/Module/Settings/TwoFactor/Index.php:144 msgid "" "These randomly generated passwords allow you to authenticate on apps not " "supporting two-factor authentication.
" msgstr "これらのランダムに生成されたパスワードを使用すると、二要素認証をサポートしていないアプリで認証できます。
" -#: src/Module/Settings/TwoFactor/Index.php:161 +#: src/Module/Settings/TwoFactor/Index.php:147 msgid "Current password:" msgstr "現在のパスワード:" -#: src/Module/Settings/TwoFactor/Index.php:161 +#: src/Module/Settings/TwoFactor/Index.php:147 msgid "" "You need to provide your current password to change two-factor " "authentication settings." msgstr "二要素認証設定を変更するには、現在のパスワードを入力する必要があります。" -#: src/Module/Settings/TwoFactor/Index.php:162 +#: src/Module/Settings/TwoFactor/Index.php:148 msgid "Enable two-factor authentication" msgstr "二要素認証を有効にする" -#: src/Module/Settings/TwoFactor/Index.php:163 +#: src/Module/Settings/TwoFactor/Index.php:149 msgid "Disable two-factor authentication" msgstr "二要素認証を無効にする" -#: src/Module/Settings/TwoFactor/Index.php:164 +#: src/Module/Settings/TwoFactor/Index.php:150 msgid "Show recovery codes" msgstr "復旧コードを表示" -#: src/Module/Settings/TwoFactor/Index.php:165 +#: src/Module/Settings/TwoFactor/Index.php:151 msgid "Manage app-specific passwords" msgstr "アプリ固有のパスワードを管理する" -#: src/Module/Settings/TwoFactor/Index.php:166 +#: src/Module/Settings/TwoFactor/Index.php:152 msgid "Manage trusted browsers" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:167 +#: src/Module/Settings/TwoFactor/Index.php:153 msgid "Finish app configuration" msgstr "アプリの構成を完了する" -#: src/Module/Settings/TwoFactor/Recovery.php:83 +#: src/Module/Settings/TwoFactor/Recovery.php:69 msgid "New recovery codes successfully generated." msgstr "新しい回復コードが正常に生成されました。" -#: src/Module/Settings/TwoFactor/Recovery.php:109 +#: src/Module/Settings/TwoFactor/Recovery.php:95 msgid "Two-factor recovery codes" msgstr "二要素回復コード" -#: src/Module/Settings/TwoFactor/Recovery.php:111 +#: src/Module/Settings/TwoFactor/Recovery.php:97 msgid "" "Recovery codes can be used to access your account in the event you lose " "access to your device and cannot receive two-factor authentication " @@ -11255,68 +11262,68 @@ msgid "" "account.
" msgstr "リカバリコードは、デバイスへのアクセスを失い、二要素認証コードを受信できない場合にアカウントにアクセスするために使用できます。
これらを安全な場所に置いてください!デバイスを紛失し、復旧コードをお持ちでない場合、アカウントにアクセスできなくなります。
" -#: src/Module/Settings/TwoFactor/Recovery.php:113 +#: src/Module/Settings/TwoFactor/Recovery.php:99 msgid "" "When you generate new recovery codes, you must copy the new codes. Your old " "codes won’t work anymore." msgstr "新しい回復コードを生成する場合、新しいコードをコピーする必要があります。古いコードはもう機能しません。" -#: src/Module/Settings/TwoFactor/Recovery.php:114 +#: src/Module/Settings/TwoFactor/Recovery.php:100 msgid "Generate new recovery codes" msgstr "新しい回復コードを生成する" -#: src/Module/Settings/TwoFactor/Recovery.php:116 +#: src/Module/Settings/TwoFactor/Recovery.php:102 msgid "Next: Verification" msgstr "次:検証" -#: src/Module/Settings/TwoFactor/Trusted.php:87 +#: src/Module/Settings/TwoFactor/Trusted.php:73 msgid "Trusted browsers successfully removed." msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:97 +#: src/Module/Settings/TwoFactor/Trusted.php:83 msgid "Trusted browser successfully removed." msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:139 +#: src/Module/Settings/TwoFactor/Trusted.php:125 msgid "Two-factor Trusted Browsers" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:140 +#: src/Module/Settings/TwoFactor/Trusted.php:126 msgid "" "Trusted browsers are individual browsers you chose to skip two-factor " "authentication to access Friendica. Please use this feature sparingly, as it" " can negate the benefit of two-factor authentication." msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:141 +#: src/Module/Settings/TwoFactor/Trusted.php:127 msgid "Device" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:142 +#: src/Module/Settings/TwoFactor/Trusted.php:128 msgid "OS" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:144 +#: src/Module/Settings/TwoFactor/Trusted.php:130 msgid "Trusted" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:145 +#: src/Module/Settings/TwoFactor/Trusted.php:131 msgid "Created At" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:146 +#: src/Module/Settings/TwoFactor/Trusted.php:132 msgid "Last Use" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:148 +#: src/Module/Settings/TwoFactor/Trusted.php:134 msgid "Remove All" msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:94 +#: src/Module/Settings/TwoFactor/Verify.php:80 msgid "Two-factor authentication successfully activated." msgstr "二要素認証が正常にアクティブ化されました。" -#: src/Module/Settings/TwoFactor/Verify.php:128 +#: src/Module/Settings/TwoFactor/Verify.php:114 #, php-format msgid "" "Or you can submit the authentication settings manually:
\n" @@ -11336,105 +11343,105 @@ msgid "" "" msgstr "または認証設定を手動で送信できます:
Please scan this QR Code with your authenticator app and submit the " "provided code.
" msgstr "このQRコードを認証アプリでスキャンして、提供されたコードを送信してください。
" -#: src/Module/Settings/TwoFactor/Verify.php:152 +#: src/Module/Settings/TwoFactor/Verify.php:138 #, php-format msgid "" "Or you can open the following URL in your mobile device:
" msgstr "または、モバイルデバイスで次のURLを開くことができます。
" -#: src/Module/Settings/TwoFactor/Verify.php:159 +#: src/Module/Settings/TwoFactor/Verify.php:145 msgid "Verify code and enable two-factor authentication" msgstr "コードを確認し、二要素認証を有効にします" -#: src/Module/Settings/UserExport.php:90 +#: src/Module/Settings/UserExport.php:76 msgid "Export account" msgstr "アカウントのエクスポート" -#: src/Module/Settings/UserExport.php:90 +#: src/Module/Settings/UserExport.php:76 msgid "" "Export your account info and contacts. Use this to make a backup of your " "account and/or to move it to another server." msgstr "アカウント情報とコンタクトをエクスポートします。これを使用して、アカウントのバックアップを作成したり、別のサーバーに移動したりします。" -#: src/Module/Settings/UserExport.php:91 +#: src/Module/Settings/UserExport.php:77 msgid "Export all" msgstr "すべてエクスポート" -#: src/Module/Settings/UserExport.php:91 +#: src/Module/Settings/UserExport.php:77 msgid "" "Export your account info, contacts and all your items as json. Could be a " "very big file, and could take a lot of time. Use this to make a full backup " "of your account (photos are not exported)" msgstr "アカウント情報、コンタクト、すべてのアイテムをjsonとしてエクスポートします。非常に大きなファイルになる可能性があり、時間がかかる可能性があります。これを使用して、アカウントの完全バックアップを作成します(写真はエクスポートされません)" -#: src/Module/Settings/UserExport.php:92 +#: src/Module/Settings/UserExport.php:78 msgid "Export Contacts to CSV" msgstr "連絡先をCSV形式でエクスポート" -#: src/Module/Settings/UserExport.php:92 +#: src/Module/Settings/UserExport.php:78 msgid "" "Export the list of the accounts you are following as CSV file. Compatible to" " e.g. Mastodon." msgstr "フォローしているアカウントのリストをCSVファイルとしてエクスポートします。 マストドンなどに対応します。" -#: src/Module/Special/DisplayNotFound.php:35 +#: src/Module/Special/DisplayNotFound.php:21 msgid "The top-level post isn't visible." msgstr "" -#: src/Module/Special/DisplayNotFound.php:36 +#: src/Module/Special/DisplayNotFound.php:22 msgid "The top-level post was deleted." msgstr "" -#: src/Module/Special/DisplayNotFound.php:37 +#: src/Module/Special/DisplayNotFound.php:23 msgid "" "This node has blocked the top-level author or the author of the shared post." msgstr "" -#: src/Module/Special/DisplayNotFound.php:38 +#: src/Module/Special/DisplayNotFound.php:24 msgid "" "You have ignored or blocked the top-level author or the author of the shared" " post." msgstr "" -#: src/Module/Special/DisplayNotFound.php:39 +#: src/Module/Special/DisplayNotFound.php:25 msgid "" "You have ignored the top-level author's server or the shared post author's " "server." msgstr "" -#: src/Module/Special/DisplayNotFound.php:45 +#: src/Module/Special/DisplayNotFound.php:31 msgid "Conversation Not Found" msgstr "" -#: src/Module/Special/DisplayNotFound.php:46 +#: src/Module/Special/DisplayNotFound.php:32 msgid "Unfortunately, the requested conversation isn't available to you." msgstr "" -#: src/Module/Special/DisplayNotFound.php:47 +#: src/Module/Special/DisplayNotFound.php:33 msgid "Possible reasons include:" msgstr "" -#: src/Module/Special/HTTPException.php:78 +#: src/Module/Special/HTTPException.php:64 msgid "Stack trace:" msgstr "" -#: src/Module/Special/HTTPException.php:83 +#: src/Module/Special/HTTPException.php:69 #, php-format msgid "Exception thrown in %s:%d" msgstr "" -#: src/Module/Tos.php:58 src/Module/Tos.php:107 +#: src/Module/Tos.php:44 src/Module/Tos.php:93 msgid "" "At the time of registration, and for providing communications between the " "user account and their contacts, the user has to provide a display name (pen" @@ -11447,14 +11454,14 @@ msgid "" "settings, it is not necessary for communication." msgstr "登録時、およびユーザーアカウントとコンタクト間の通信を提供するために、ユーザーは表示名(ペンネーム)、ユーザー名(ニックネーム)、および有効な電子メールアドレスを提供する必要があります。\n他のプロフィールの詳細が表示されていなくても、ページの訪問者はアカウントのプロフィールページで名前にアクセスできます。\n電子メールアドレスは、インタラクションに関するユーザー通知の送信にのみ使用されますが、表示されることはありません。\nノードのユーザーディレクトリまたはグローバルユーザーディレクトリでのアカウントのリストはオプションであり、ユーザー設定で制御できます。通信には必要ありません。" -#: src/Module/Tos.php:59 src/Module/Tos.php:108 +#: src/Module/Tos.php:45 src/Module/Tos.php:94 msgid "" "This data is required for communication and is passed on to the nodes of the" " communication partners and is stored there. Users can enter additional " "private data that may be transmitted to the communication partners accounts." msgstr "このデータは通信に必要であり、通信パートナーのノードに渡されてそこに保存されます。ユーザーは、通信パートナーアカウントに送信される可能性のある追加のプライベートデータを入力できます。" -#: src/Module/Tos.php:60 src/Module/Tos.php:109 +#: src/Module/Tos.php:46 src/Module/Tos.php:95 #, php-format msgid "" "At any point in time a logged in user can export their account data from the" @@ -11465,120 +11472,120 @@ msgid "" "from the nodes of the communication partners." msgstr "" -#: src/Module/Tos.php:63 src/Module/Tos.php:106 +#: src/Module/Tos.php:49 src/Module/Tos.php:92 msgid "Privacy Statement" msgstr "プライバシーに関する声明" -#: src/Module/Tos.php:103 +#: src/Module/Tos.php:89 msgid "Rules" msgstr "" -#: src/Module/Update/Display.php:45 +#: src/Module/Update/Display.php:31 msgid "Parameter uri_id is missing." msgstr "" -#: src/Module/Update/Display.php:55 +#: src/Module/Update/Display.php:41 msgid "The requested item doesn't exist or has been deleted." msgstr "要求された項目は存在しないか、削除されました。" -#: src/Module/User/Delegation.php:146 +#: src/Module/User/Delegation.php:132 #, php-format msgid "You are now logged in as %s" msgstr "" -#: src/Module/User/Delegation.php:185 +#: src/Module/User/Delegation.php:171 msgid "Switch between your accounts" msgstr "" -#: src/Module/User/Delegation.php:186 +#: src/Module/User/Delegation.php:172 msgid "Manage your accounts" msgstr "" -#: src/Module/User/Delegation.php:187 +#: src/Module/User/Delegation.php:173 msgid "" "Toggle between different identities or community/group pages which share " "your account details or which you have been granted \"manage\" permissions" msgstr "アカウントの詳細を共有する、または「管理」権限が付与されているさまざまなIDまたはコミュニティ/グループページを切り替える" -#: src/Module/User/Delegation.php:188 +#: src/Module/User/Delegation.php:174 msgid "Select an identity to manage: " msgstr "管理するIDを選択します。" -#: src/Module/User/Import.php:104 +#: src/Module/User/Import.php:90 msgid "User imports on closed servers can only be done by an administrator." msgstr "クローズドなサーバでのユーザーインポートは、管理者のみが実行できます。" -#: src/Module/User/Import.php:120 +#: src/Module/User/Import.php:106 msgid "Move account" msgstr "アカウントの移動" -#: src/Module/User/Import.php:121 +#: src/Module/User/Import.php:107 msgid "You can import an account from another Friendica server." msgstr "別のFriendicaサーバーからアカウントをインポートできます。" -#: src/Module/User/Import.php:122 +#: src/Module/User/Import.php:108 msgid "" "You need to export your account from the old server and upload it here. We " "will recreate your old account here with all your contacts. We will try also" " to inform your friends that you moved here." msgstr "古いサーバからアカウントをエクスポートして、このサーバにアップロードする必要があります。 アップロード後、このサーバが、すべてのコンタクト・元のアカウントを再作成します。 また、あなたがこのサーバに移転したことを友人にお知らせします。" -#: src/Module/User/Import.php:123 +#: src/Module/User/Import.php:109 msgid "" "This feature is experimental. We can't import contacts from the OStatus " "network (GNU Social/Statusnet) or from Diaspora" msgstr "この機能はまだ実験的なものです。 OStatusネットワーク(GNU Social / Statusnet)またはDiasporaからのコンタクトはインポートできません。" -#: src/Module/User/Import.php:124 +#: src/Module/User/Import.php:110 msgid "Account file" msgstr "アカウントファイル" -#: src/Module/User/Import.php:124 +#: src/Module/User/Import.php:110 msgid "" "To export your account, go to \"Settings->Export your personal data\" and " "select \"Export account\"" msgstr "アカウントをエクスポートするには、「設定」->「個人データのエクスポート」に進み、「アカウントのエクスポート」を選択します" -#: src/Module/User/Import.php:218 +#: src/Module/User/Import.php:204 msgid "Error decoding account file" msgstr "アカウントファイルのデコードエラー" -#: src/Module/User/Import.php:223 +#: src/Module/User/Import.php:209 msgid "Error! No version data in file! This is not a Friendica account file?" msgstr "エラー!ファイルにバージョンデータがありません!これはFriendicaアカウントファイルではなさそうです。" -#: src/Module/User/Import.php:231 +#: src/Module/User/Import.php:217 #, php-format msgid "User '%s' already exists on this server!" msgstr "ユーザー '%s' はこのサーバーに既に存在します!" -#: src/Module/User/Import.php:268 +#: src/Module/User/Import.php:254 msgid "User creation error" msgstr "ユーザ作成エラー" -#: src/Module/User/Import.php:317 +#: src/Module/User/Import.php:303 #, php-format msgid "%d contact not imported" msgid_plural "%d contacts not imported" msgstr[0] "%dコンタクトはインポートされませんでした" -#: src/Module/User/Import.php:366 +#: src/Module/User/Import.php:352 msgid "User profile creation error" msgstr "ユーザープロフィール作成エラー" -#: src/Module/User/Import.php:417 +#: src/Module/User/Import.php:403 msgid "Done. You can now login with your username and password" msgstr "完了しました。これでであなたのユーザー名とパスワードでログインできます。 " -#: src/Module/Welcome.php:44 +#: src/Module/Welcome.php:30 msgid "Welcome to Friendica" msgstr "Friendicaへようこそ" -#: src/Module/Welcome.php:45 +#: src/Module/Welcome.php:31 msgid "New Member Checklist" msgstr "新しく参加した人のチェックリスト" -#: src/Module/Welcome.php:46 +#: src/Module/Welcome.php:32 msgid "" "We would like to offer some tips and links to help make your experience " "enjoyable. Click any item to visit the relevant page. A link to this page " @@ -11586,33 +11593,33 @@ msgid "" "registration and then will quietly disappear." msgstr "私たちはあなたの経験を楽しいものにするためのいくつかのヒントとリンクを提供したいと思います。項目をクリックして、関連するページにアクセスします。このページへのリンクは、最初の登録後2週間、ホームページから表示され、その後静かに消えます。" -#: src/Module/Welcome.php:48 +#: src/Module/Welcome.php:34 msgid "Getting Started" msgstr "はじめに" -#: src/Module/Welcome.php:49 +#: src/Module/Welcome.php:35 msgid "Friendica Walk-Through" msgstr "Friendica ウォークスルー" -#: src/Module/Welcome.php:50 +#: src/Module/Welcome.php:36 msgid "" "On your Quick Start page - find a brief introduction to your " "profile and network tabs, make some new connections, and find some groups to" " join." msgstr "クイックスタートページで、プロフィールとネットワークタブの簡単な紹介を見つけ、新しい接続を作成し、参加するグループを見つけます。" -#: src/Module/Welcome.php:53 +#: src/Module/Welcome.php:39 msgid "Go to Your Settings" msgstr "設定に移動" -#: src/Module/Welcome.php:54 +#: src/Module/Welcome.php:40 msgid "" "On your Settings page - change your initial password. Also make a " "note of your Identity Address. This looks just like an email address - and " "will be useful in making friends on the free social web." msgstr "[設定]ページで、初期パスワードを変更します。また、IDアドレスを書き留めます。これはメールアドレスのように見えます。無料のソーシャルウェブで友達を作るのに役立ちます。" -#: src/Module/Welcome.php:55 +#: src/Module/Welcome.php:41 msgid "" "Review the other settings, particularly the privacy settings. An unpublished" " directory listing is like having an unlisted phone number. In general, you " @@ -11620,77 +11627,77 @@ msgid "" "potential friends know exactly how to find you." msgstr "他の設定、特にプライバシー設定を確認してください。公開されていないディレクトリ一覧は、一覧にない電話番号を持っているようなものです。一般に、おそらくあなたのリストを公開する必要があります-あなたの友人や潜在的な友人全員があなたを見つける方法を正確に知っていない限り。" -#: src/Module/Welcome.php:59 +#: src/Module/Welcome.php:45 msgid "" "Upload a profile photo if you have not done so already. Studies have shown " "that people with real photos of themselves are ten times more likely to make" " friends than people who do not." msgstr "まだプロフィール写真をアップロードしていない場合はアップロードします。研究では、自分の実際の写真を持っている人は、持っていない人よりも友達を作る可能性が10倍高いことが示されています。" -#: src/Module/Welcome.php:60 +#: src/Module/Welcome.php:46 msgid "Edit Your Profile" msgstr "プロフィールを編集する" -#: src/Module/Welcome.php:61 +#: src/Module/Welcome.php:47 msgid "" "Edit your default profile to your liking. Review the " "settings for hiding your list of friends and hiding the profile from unknown" " visitors." msgstr "お好みに合わせて既定のプロフィールを編集します。友達のリストを非表示にし、未知の訪問者からプロフィールを非表示にするための設定を確認します。" -#: src/Module/Welcome.php:62 +#: src/Module/Welcome.php:48 msgid "Profile Keywords" msgstr "プロフィールキーワード" -#: src/Module/Welcome.php:63 +#: src/Module/Welcome.php:49 msgid "" "Set some public keywords for your profile which describe your interests. We " "may be able to find other people with similar interests and suggest " "friendships." msgstr "あなたの興味を説明するいくつかの公開キーワードをプロフィールに設定します。同様の興味を持つ他の人を見つけ、友情を提案することができるかもしれません。" -#: src/Module/Welcome.php:65 +#: src/Module/Welcome.php:51 msgid "Connecting" msgstr "接続中" -#: src/Module/Welcome.php:67 +#: src/Module/Welcome.php:53 msgid "Importing Emails" msgstr "メールのインポート" -#: src/Module/Welcome.php:68 +#: src/Module/Welcome.php:54 msgid "" "Enter your email access information on your Connector Settings page if you " "wish to import and interact with friends or mailing lists from your email " "INBOX" msgstr "メールの受信トレイから友人やメーリングリストをインポートしてやり取りする場合は、コネクタ設定ページでメールアクセス情報を入力します" -#: src/Module/Welcome.php:69 +#: src/Module/Welcome.php:55 msgid "Go to Your Contacts Page" msgstr "コンタクトページに移動します" -#: src/Module/Welcome.php:70 +#: src/Module/Welcome.php:56 msgid "" "Your Contacts page is your gateway to managing friendships and connecting " "with friends on other networks. Typically you enter their address or site " "URL in the Add New Contact dialog." msgstr "コンタクトページは、友情を管理し、他のネットワーク上の友だちとつながるための入り口です。通常、新しいコンタクトの追加ダイアログにアドレスまたはサイトのURLを入力します。" -#: src/Module/Welcome.php:71 +#: src/Module/Welcome.php:57 msgid "Go to Your Site's Directory" msgstr "サイトのディレクトリに移動します" -#: src/Module/Welcome.php:72 +#: src/Module/Welcome.php:58 msgid "" "The Directory page lets you find other people in this network or other " "federated sites. Look for a Connect or Follow link on " "their profile page. Provide your own Identity Address if requested." msgstr "ディレクトリ ページでは、このネットワークまたは他のフェデレーションサイト内の他のユーザーを検索できます。プロフィールページで接続またはフォローリンクを探します。要求された場合、独自のIdentityアドレスを提供します。" -#: src/Module/Welcome.php:73 +#: src/Module/Welcome.php:59 msgid "Finding New People" msgstr "新しい人を見つける" -#: src/Module/Welcome.php:74 +#: src/Module/Welcome.php:60 msgid "" "On the side panel of the Contacts page are several tools to find new " "friends. We can match people by interest, look up people by name or " @@ -11699,412 +11706,408 @@ msgid "" "hours." msgstr "コンタクトページのサイドパネルには、新しい友達を見つけるためのいくつかのツールがあります。関心ごとに人を照合し、名前または興味ごとに人を検索し、ネットワーク関係に基づいて提案を提供できます。新しいサイトでは、通常24時間以内に友人の提案が表示され始めます。" -#: src/Module/Welcome.php:77 +#: src/Module/Welcome.php:63 msgid "Add Your Contacts To Circle" msgstr "" -#: src/Module/Welcome.php:78 +#: src/Module/Welcome.php:64 msgid "" "Once you have made some friends, organize them into private conversation " "circles from the sidebar of your Contacts page and then you can interact " "with each circle privately on your Network page." msgstr "" -#: src/Module/Welcome.php:80 +#: src/Module/Welcome.php:66 msgid "Why Aren't My Posts Public?" msgstr "投稿が一般に公開されないのはなぜですか?" -#: src/Module/Welcome.php:81 +#: src/Module/Welcome.php:67 msgid "" "Friendica respects your privacy. By default, your posts will only show up to" " people you've added as friends. For more information, see the help section " "from the link above." msgstr "Friendicaはあなたのプライバシーを尊重します。デフォルトでは、投稿は友達として追加した人にのみ表示されます。詳細については、上記のリンクのヘルプセクションを参照してください。" -#: src/Module/Welcome.php:83 +#: src/Module/Welcome.php:69 msgid "Getting Help" msgstr "ヘルプを得る" -#: src/Module/Welcome.php:84 +#: src/Module/Welcome.php:70 msgid "Go to the Help Section" msgstr "ヘルプセクションに移動" -#: src/Module/Welcome.php:85 +#: src/Module/Welcome.php:71 msgid "" "Our help pages may be consulted for detail on other program" " features and resources." msgstr "プログラムのその他の機能やリソースの詳細については、ヘルプページをご覧ください。" -#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:161 +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:147 msgid "{0} wants to follow you" msgstr "" -#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:163 +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:149 msgid "{0} has started following you" msgstr "" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:96 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:82 #, php-format msgid "%s liked %s's post" msgstr "%sが%sの投稿を高く評価しました" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:108 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:94 #, php-format msgid "%s disliked %s's post" msgstr "%sは%sの投稿を好きではないようです" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:120 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:106 #, php-format msgid "%s is attending %s's event" msgstr "%sは%sのイベントに参加しています" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:132 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:118 #, php-format msgid "%s is not attending %s's event" msgstr "%sは%sのイベントを欠席します" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:144 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:130 #, php-format msgid "%s may attending %s's event" msgstr "" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:174 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:160 #, php-format msgid "%s is now friends with %s" msgstr "%sは%sと友達になりました" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:341 -#: src/Navigation/Notifications/Factory/FormattedNotify.php:379 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:327 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:365 #, php-format msgid "%s commented on %s's post" msgstr "%sが%sの投稿にコメントしました" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:378 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:364 #, php-format msgid "%s created a new post" msgstr "%sが新しい投稿を作成しました" -#: src/Navigation/Notifications/Factory/Introduction.php:132 +#: src/Navigation/Notifications/Factory/Introduction.php:118 msgid "Friend Suggestion" msgstr "友達の提案" -#: src/Navigation/Notifications/Factory/Introduction.php:158 +#: src/Navigation/Notifications/Factory/Introduction.php:144 msgid "Friend/Connect Request" msgstr "フレンド/接続リクエスト" -#: src/Navigation/Notifications/Factory/Introduction.php:158 -msgid "New Follower" -msgstr "新しいフォロワー" - -#: src/Navigation/Notifications/Factory/Notification.php:134 +#: src/Navigation/Notifications/Factory/Notification.php:120 #, php-format msgid "%1$s wants to follow you" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:136 +#: src/Navigation/Notifications/Factory/Notification.php:122 #, php-format msgid "%1$s has started following you" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:208 +#: src/Navigation/Notifications/Factory/Notification.php:194 #, php-format msgid "%1$s liked your comment on %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:211 +#: src/Navigation/Notifications/Factory/Notification.php:197 #, php-format msgid "%1$s liked your post %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:218 +#: src/Navigation/Notifications/Factory/Notification.php:204 #, php-format msgid "%1$s disliked your comment on %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:221 +#: src/Navigation/Notifications/Factory/Notification.php:207 #, php-format msgid "%1$s disliked your post %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:228 +#: src/Navigation/Notifications/Factory/Notification.php:214 #, php-format msgid "%1$s shared your comment %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:231 -#: src/Navigation/Notifications/Factory/Notification.php:316 +#: src/Navigation/Notifications/Factory/Notification.php:217 +#: src/Navigation/Notifications/Factory/Notification.php:302 #, php-format msgid "%1$s shared your post %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:235 -#: src/Navigation/Notifications/Factory/Notification.php:305 +#: src/Navigation/Notifications/Factory/Notification.php:221 +#: src/Navigation/Notifications/Factory/Notification.php:291 #, php-format msgid "%1$s shared the post %2$s from %3$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:237 -#: src/Navigation/Notifications/Factory/Notification.php:307 +#: src/Navigation/Notifications/Factory/Notification.php:223 +#: src/Navigation/Notifications/Factory/Notification.php:293 #, php-format msgid "%1$s shared a post from %3$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:239 -#: src/Navigation/Notifications/Factory/Notification.php:309 +#: src/Navigation/Notifications/Factory/Notification.php:225 +#: src/Navigation/Notifications/Factory/Notification.php:295 #, php-format msgid "%1$s shared the post %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:241 -#: src/Navigation/Notifications/Factory/Notification.php:311 +#: src/Navigation/Notifications/Factory/Notification.php:227 +#: src/Navigation/Notifications/Factory/Notification.php:297 #, php-format msgid "%1$s shared a post" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:249 +#: src/Navigation/Notifications/Factory/Notification.php:235 #, php-format msgid "%1$s wants to attend your event %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:256 +#: src/Navigation/Notifications/Factory/Notification.php:242 #, php-format msgid "%1$s does not want to attend your event %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:263 +#: src/Navigation/Notifications/Factory/Notification.php:249 #, php-format msgid "%1$s maybe wants to attend your event %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:270 +#: src/Navigation/Notifications/Factory/Notification.php:256 #, php-format msgid "%1$s tagged you on %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:274 +#: src/Navigation/Notifications/Factory/Notification.php:260 #, php-format msgid "%1$s replied to you on %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:278 +#: src/Navigation/Notifications/Factory/Notification.php:264 #, php-format msgid "%1$s commented in your thread %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:282 +#: src/Navigation/Notifications/Factory/Notification.php:268 #, php-format msgid "%1$s commented on your comment %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:289 +#: src/Navigation/Notifications/Factory/Notification.php:275 #, php-format msgid "%1$s commented in their thread %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:291 +#: src/Navigation/Notifications/Factory/Notification.php:277 #, php-format msgid "%1$s commented in their thread" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:293 +#: src/Navigation/Notifications/Factory/Notification.php:279 #, php-format msgid "%1$s commented in the thread %2$s from %3$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:295 +#: src/Navigation/Notifications/Factory/Notification.php:281 #, php-format msgid "%1$s commented in the thread from %3$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:300 +#: src/Navigation/Notifications/Factory/Notification.php:286 #, php-format msgid "%1$s commented on your thread %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:225 -#: src/Navigation/Notifications/Repository/Notify.php:754 +#: src/Navigation/Notifications/Repository/Notify.php:211 +#: src/Navigation/Notifications/Repository/Notify.php:740 msgid "[Friendica:Notify]" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:293 +#: src/Navigation/Notifications/Repository/Notify.php:279 #, php-format msgid "%s New mail received at %s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:295 +#: src/Navigation/Notifications/Repository/Notify.php:281 #, php-format msgid "%1$s sent you a new private message at %2$s." msgstr "%1$s さんが %2$s に あなたにプライベートメッセージを送りました" -#: src/Navigation/Notifications/Repository/Notify.php:296 +#: src/Navigation/Notifications/Repository/Notify.php:282 msgid "a private message" msgstr "プライベートメッセージ" -#: src/Navigation/Notifications/Repository/Notify.php:296 +#: src/Navigation/Notifications/Repository/Notify.php:282 #, php-format msgid "%1$s sent you %2$s." msgstr "%1$s があなたに %2$s を送りました" -#: src/Navigation/Notifications/Repository/Notify.php:298 +#: src/Navigation/Notifications/Repository/Notify.php:284 #, php-format msgid "Please visit %s to view and/or reply to your private messages." msgstr "%s を開いて、プライベートメッセージを確認・返信してください" -#: src/Navigation/Notifications/Repository/Notify.php:328 +#: src/Navigation/Notifications/Repository/Notify.php:314 #, php-format msgid "%1$s commented on %2$s's %3$s %4$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:333 +#: src/Navigation/Notifications/Repository/Notify.php:319 #, php-format msgid "%1$s commented on your %2$s %3$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:337 +#: src/Navigation/Notifications/Repository/Notify.php:323 #, php-format msgid "%1$s commented on their %2$s %3$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:341 -#: src/Navigation/Notifications/Repository/Notify.php:788 +#: src/Navigation/Notifications/Repository/Notify.php:327 +#: src/Navigation/Notifications/Repository/Notify.php:774 #, php-format msgid "%1$s Comment to conversation #%2$d by %3$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:343 +#: src/Navigation/Notifications/Repository/Notify.php:329 #, php-format msgid "%s commented on an item/conversation you have been following." msgstr "%s さんが、あなたがフォローしている項目/会話にコメントしました" -#: src/Navigation/Notifications/Repository/Notify.php:347 -#: src/Navigation/Notifications/Repository/Notify.php:362 -#: src/Navigation/Notifications/Repository/Notify.php:814 +#: src/Navigation/Notifications/Repository/Notify.php:333 +#: src/Navigation/Notifications/Repository/Notify.php:348 +#: src/Navigation/Notifications/Repository/Notify.php:800 #, php-format msgid "Please visit %s to view and/or reply to the conversation." msgstr " %s を開いて、コメントを確認・返信してください" -#: src/Navigation/Notifications/Repository/Notify.php:354 +#: src/Navigation/Notifications/Repository/Notify.php:340 #, php-format msgid "%s %s posted to your profile wall" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:356 +#: src/Navigation/Notifications/Repository/Notify.php:342 #, php-format msgid "%1$s posted to your profile wall at %2$s" msgstr "%1$s が %2$s に あなたのプロフィールウォールへ投稿しました" -#: src/Navigation/Notifications/Repository/Notify.php:357 +#: src/Navigation/Notifications/Repository/Notify.php:343 #, php-format msgid "%1$s posted to [url=%2$s]your wall[/url]" msgstr "%1$s が [url=%2$s]あなたのウォール[/url] に投稿しました" -#: src/Navigation/Notifications/Repository/Notify.php:370 +#: src/Navigation/Notifications/Repository/Notify.php:356 #, php-format msgid "%s Introduction received" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:372 +#: src/Navigation/Notifications/Repository/Notify.php:358 #, php-format msgid "You've received an introduction from '%1$s' at %2$s" msgstr "'%1$s' から %2$s に 招待が来ています" -#: src/Navigation/Notifications/Repository/Notify.php:373 +#: src/Navigation/Notifications/Repository/Notify.php:359 #, php-format msgid "You've received [url=%1$s]an introduction[/url] from %2$s." msgstr "[url=%1$s]招待[/url] が %2$s から来ています。" -#: src/Navigation/Notifications/Repository/Notify.php:378 -#: src/Navigation/Notifications/Repository/Notify.php:424 +#: src/Navigation/Notifications/Repository/Notify.php:364 +#: src/Navigation/Notifications/Repository/Notify.php:410 #, php-format msgid "You may visit their profile at %s" msgstr "彼らのプロフィールを %s にて開けるかもしれません。" -#: src/Navigation/Notifications/Repository/Notify.php:380 +#: src/Navigation/Notifications/Repository/Notify.php:366 #, php-format msgid "Please visit %s to approve or reject the introduction." msgstr " %s を開いて、招待を承諾・拒否してください。" -#: src/Navigation/Notifications/Repository/Notify.php:387 +#: src/Navigation/Notifications/Repository/Notify.php:373 #, php-format msgid "%s A new person is sharing with you" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:389 -#: src/Navigation/Notifications/Repository/Notify.php:390 +#: src/Navigation/Notifications/Repository/Notify.php:375 +#: src/Navigation/Notifications/Repository/Notify.php:376 #, php-format msgid "%1$s is sharing with you at %2$s" msgstr "%1$s さんが %2$s にて あなたの投稿を共有しました" -#: src/Navigation/Notifications/Repository/Notify.php:397 +#: src/Navigation/Notifications/Repository/Notify.php:383 #, php-format msgid "%s You have a new follower" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:399 -#: src/Navigation/Notifications/Repository/Notify.php:400 +#: src/Navigation/Notifications/Repository/Notify.php:385 +#: src/Navigation/Notifications/Repository/Notify.php:386 #, php-format msgid "You have a new follower at %2$s : %1$s" msgstr "新しいフォロワーです %2$s : %1$s" -#: src/Navigation/Notifications/Repository/Notify.php:413 +#: src/Navigation/Notifications/Repository/Notify.php:399 #, php-format msgid "%s Friend suggestion received" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:415 +#: src/Navigation/Notifications/Repository/Notify.php:401 #, php-format msgid "You've received a friend suggestion from '%1$s' at %2$s" msgstr "'%1$s' より %2$s に 友達の候補を受け取りました" -#: src/Navigation/Notifications/Repository/Notify.php:416 +#: src/Navigation/Notifications/Repository/Notify.php:402 #, php-format msgid "" "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." msgstr "%3$s から %2$s への [url=%1$s]友達の候補[/url] を受け取りました。" -#: src/Navigation/Notifications/Repository/Notify.php:422 +#: src/Navigation/Notifications/Repository/Notify.php:408 msgid "Name:" msgstr "名前:" -#: src/Navigation/Notifications/Repository/Notify.php:423 +#: src/Navigation/Notifications/Repository/Notify.php:409 msgid "Photo:" msgstr "写真:" -#: src/Navigation/Notifications/Repository/Notify.php:426 +#: src/Navigation/Notifications/Repository/Notify.php:412 #, php-format msgid "Please visit %s to approve or reject the suggestion." msgstr "%s を開いて、候補を承諾・拒否してください。" -#: src/Navigation/Notifications/Repository/Notify.php:434 -#: src/Navigation/Notifications/Repository/Notify.php:449 +#: src/Navigation/Notifications/Repository/Notify.php:420 +#: src/Navigation/Notifications/Repository/Notify.php:435 #, php-format msgid "%s Connection accepted" msgstr "%s つながりが承諾されました" -#: src/Navigation/Notifications/Repository/Notify.php:436 -#: src/Navigation/Notifications/Repository/Notify.php:451 +#: src/Navigation/Notifications/Repository/Notify.php:422 +#: src/Navigation/Notifications/Repository/Notify.php:437 #, php-format msgid "'%1$s' has accepted your connection request at %2$s" msgstr "'%1$s' は %2$s に あなたからのつながりの申込みを承諾しました" -#: src/Navigation/Notifications/Repository/Notify.php:437 -#: src/Navigation/Notifications/Repository/Notify.php:452 +#: src/Navigation/Notifications/Repository/Notify.php:423 +#: src/Navigation/Notifications/Repository/Notify.php:438 #, php-format msgid "%2$s has accepted your [url=%1$s]connection request[/url]." msgstr "%2$s は あなたからの [url=%1$s]つながりの申し込み[/url] を承諾しました。" -#: src/Navigation/Notifications/Repository/Notify.php:442 +#: src/Navigation/Notifications/Repository/Notify.php:428 msgid "" "You are now mutual friends and may exchange status updates, photos, and " "email without restriction." msgstr "あなたたちは友達になりました。ステータスの更新、写真、メールを制限なくやりとりできます。" -#: src/Navigation/Notifications/Repository/Notify.php:444 +#: src/Navigation/Notifications/Repository/Notify.php:430 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "このつながりを変更する場合は %s を開いてください。" -#: src/Navigation/Notifications/Repository/Notify.php:457 +#: src/Navigation/Notifications/Repository/Notify.php:443 #, php-format msgid "" "'%1$s' has chosen to accept you a fan, which restricts some forms of " @@ -12113,34 +12116,34 @@ msgid "" "automatically." msgstr "'%1$s' はあなたをファンとして受け入れました。プライベートメッセージやプロフィール インタラクションなど、一部のやりとりは制限されています。 有名人またはコミュニティページの場合、これらの設定は自動的に適用されます。" -#: src/Navigation/Notifications/Repository/Notify.php:459 +#: src/Navigation/Notifications/Repository/Notify.php:445 #, php-format msgid "" "'%1$s' may choose to extend this into a two-way or more permissive " "relationship in the future." msgstr "'%1$s' は後日、これを双方向・より寛容な関係へと拡張する場合があります。" -#: src/Navigation/Notifications/Repository/Notify.php:461 +#: src/Navigation/Notifications/Repository/Notify.php:447 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "このつながりを変更する場合は %s を開いてください。" -#: src/Navigation/Notifications/Repository/Notify.php:471 +#: src/Navigation/Notifications/Repository/Notify.php:457 msgid "registration request" msgstr "登録リクエスト" -#: src/Navigation/Notifications/Repository/Notify.php:473 +#: src/Navigation/Notifications/Repository/Notify.php:459 #, php-format msgid "You've received a registration request from '%1$s' at %2$s" msgstr "'%1$s' より %2$s に 登録リクエストを受け取りました" -#: src/Navigation/Notifications/Repository/Notify.php:474 +#: src/Navigation/Notifications/Repository/Notify.php:460 #, php-format msgid "You've received a [url=%1$s]registration request[/url] from %2$s." msgstr "[url=%1$s]登録リクエスト[/url] が %2$s から来ています。" -#: src/Navigation/Notifications/Repository/Notify.php:479 -#: src/Navigation/Notifications/Repository/Notify.php:500 +#: src/Navigation/Notifications/Repository/Notify.php:465 +#: src/Navigation/Notifications/Repository/Notify.php:486 #, php-format msgid "" "Display Name:\t%s\n" @@ -12148,767 +12151,754 @@ msgid "" "Login Name:\t%s (%s)" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:485 +#: src/Navigation/Notifications/Repository/Notify.php:471 #, php-format msgid "Please visit %s to approve or reject the request." msgstr "%s を開いて、リクエストを承諾・拒否してください。" -#: src/Navigation/Notifications/Repository/Notify.php:492 +#: src/Navigation/Notifications/Repository/Notify.php:478 msgid "new registration" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:494 +#: src/Navigation/Notifications/Repository/Notify.php:480 #, php-format msgid "You've received a new registration from '%1$s' at %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:495 +#: src/Navigation/Notifications/Repository/Notify.php:481 #, php-format msgid "You've received a [url=%1$s]new registration[/url] from %2$s." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:506 +#: src/Navigation/Notifications/Repository/Notify.php:492 #, php-format msgid "Please visit %s to have a look at the new registration." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:782 +#: src/Navigation/Notifications/Repository/Notify.php:768 #, php-format msgid "%s %s tagged you" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:785 +#: src/Navigation/Notifications/Repository/Notify.php:771 #, php-format msgid "%s %s shared a new post" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:793 +#: src/Navigation/Notifications/Repository/Notify.php:779 #, php-format msgid "%1$s %2$s liked your post #%3$d" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:796 +#: src/Navigation/Notifications/Repository/Notify.php:782 #, php-format msgid "%1$s %2$s liked your comment on #%3$d" msgstr "" -#: src/Object/EMail/ItemCCEMail.php:42 +#: src/Object/EMail/ItemCCEMail.php:28 #, php-format msgid "" "This message was sent to you by %s, a member of the Friendica social " "network." msgstr "このメッセージは、Friendicaソーシャルネットワークのメンバーである%sから送信されました。" -#: src/Object/EMail/ItemCCEMail.php:44 +#: src/Object/EMail/ItemCCEMail.php:30 #, php-format msgid "You may visit them online at %s" msgstr "あなたは%sでそれらをオンラインで訪れることができます" -#: src/Object/EMail/ItemCCEMail.php:45 +#: src/Object/EMail/ItemCCEMail.php:31 msgid "" "Please contact the sender by replying to this post if you do not wish to " "receive these messages." msgstr "これらのメッセージを受信したくない場合は、この投稿に返信して送信者に連絡してください。" -#: src/Object/EMail/ItemCCEMail.php:49 +#: src/Object/EMail/ItemCCEMail.php:35 #, php-format msgid "%s posted an update." msgstr "%sが更新を投稿しました。" -#: src/Object/Post.php:138 +#: src/Object/Post.php:124 msgid "Private Message" msgstr "自分のみ" -#: src/Object/Post.php:142 +#: src/Object/Post.php:128 msgid "Public Message" msgstr "" -#: src/Object/Post.php:146 +#: src/Object/Post.php:132 msgid "Unlisted Message" msgstr "" -#: src/Object/Post.php:182 +#: src/Object/Post.php:168 msgid "This entry was edited" msgstr "このエントリは編集されました" -#: src/Object/Post.php:210 +#: src/Object/Post.php:196 msgid "Connector Message" msgstr "" -#: src/Object/Post.php:239 src/Object/Post.php:241 +#: src/Object/Post.php:225 src/Object/Post.php:227 msgid "Edit" msgstr "編集" -#: src/Object/Post.php:275 +#: src/Object/Post.php:261 msgid "Delete globally" msgstr "グローバルに削除" -#: src/Object/Post.php:275 +#: src/Object/Post.php:261 msgid "Remove locally" msgstr "ローカルで削除" -#: src/Object/Post.php:282 +#: src/Object/Post.php:268 #, php-format msgid "Block %s" msgstr "" -#: src/Object/Post.php:287 +#: src/Object/Post.php:273 #, php-format msgid "Ignore %s" msgstr "" -#: src/Object/Post.php:292 +#: src/Object/Post.php:278 #, php-format msgid "Collapse %s" msgstr "" -#: src/Object/Post.php:296 +#: src/Object/Post.php:282 msgid "Report post" msgstr "" -#: src/Object/Post.php:307 +#: src/Object/Post.php:293 msgid "Save to folder" msgstr "フォルダーに保存" -#: src/Object/Post.php:347 +#: src/Object/Post.php:333 msgid "I will attend" msgstr "参加します" -#: src/Object/Post.php:347 +#: src/Object/Post.php:333 msgid "I will not attend" msgstr "私は出席しません" -#: src/Object/Post.php:347 +#: src/Object/Post.php:333 msgid "I might attend" msgstr "私は出席するかもしれません" -#: src/Object/Post.php:394 +#: src/Object/Post.php:380 msgid "Ignore thread" msgstr "スレッドを無視" -#: src/Object/Post.php:395 +#: src/Object/Post.php:381 msgid "Unignore thread" msgstr "無視しないスレッド" -#: src/Object/Post.php:396 +#: src/Object/Post.php:382 msgid "Toggle ignore status" msgstr "" -#: src/Object/Post.php:406 +#: src/Object/Post.php:392 msgid "Add star" msgstr "" -#: src/Object/Post.php:407 +#: src/Object/Post.php:393 msgid "Remove star" msgstr "" -#: src/Object/Post.php:408 +#: src/Object/Post.php:394 msgid "Toggle star status" msgstr "" -#: src/Object/Post.php:419 +#: src/Object/Post.php:405 msgid "Pin" msgstr "" -#: src/Object/Post.php:420 +#: src/Object/Post.php:406 msgid "Unpin" msgstr "" -#: src/Object/Post.php:421 +#: src/Object/Post.php:407 msgid "Toggle pin status" msgstr "" -#: src/Object/Post.php:424 +#: src/Object/Post.php:410 msgid "Pinned" msgstr "" -#: src/Object/Post.php:429 +#: src/Object/Post.php:415 msgid "Add tag" msgstr "" -#: src/Object/Post.php:444 +#: src/Object/Post.php:430 msgid "Quote share this" msgstr "" -#: src/Object/Post.php:444 +#: src/Object/Post.php:430 msgid "Quote Share" msgstr "" -#: src/Object/Post.php:447 +#: src/Object/Post.php:433 msgid "Reshare this" msgstr "" -#: src/Object/Post.php:447 +#: src/Object/Post.php:433 msgid "Reshare" msgstr "" -#: src/Object/Post.php:448 +#: src/Object/Post.php:434 msgid "Cancel your Reshare" msgstr "" -#: src/Object/Post.php:448 +#: src/Object/Post.php:434 msgid "Unshare" msgstr "" -#: src/Object/Post.php:492 +#: src/Object/Post.php:478 #, php-format msgid "%s (Received %s)" msgstr "%s (%s を受け取りました)" -#: src/Object/Post.php:498 +#: src/Object/Post.php:484 msgid "Comment this item on your system" msgstr "" -#: src/Object/Post.php:498 +#: src/Object/Post.php:484 msgid "Remote comment" msgstr "" -#: src/Object/Post.php:520 +#: src/Object/Post.php:506 msgid "Share via ..." msgstr "" -#: src/Object/Post.php:520 +#: src/Object/Post.php:506 msgid "Share via external services" msgstr "" -#: src/Object/Post.php:527 +#: src/Object/Post.php:513 msgid "Unknown parent" msgstr "" -#: src/Object/Post.php:531 +#: src/Object/Post.php:517 #, php-format msgid "in reply to %s" msgstr "" -#: src/Object/Post.php:533 +#: src/Object/Post.php:519 msgid "Parent is probably private or not federated." msgstr "" -#: src/Object/Post.php:557 +#: src/Object/Post.php:543 msgid "to" msgstr "に" -#: src/Object/Post.php:558 +#: src/Object/Post.php:544 msgid "via" msgstr "投稿先:" -#: src/Object/Post.php:559 +#: src/Object/Post.php:545 msgid "Wall-to-Wall" msgstr "壁間" -#: src/Object/Post.php:560 +#: src/Object/Post.php:546 msgid "via Wall-To-Wall:" msgstr "Wall-to-Wall経由:" -#: src/Object/Post.php:613 +#: src/Object/Post.php:599 #, php-format msgid "Reply to %s" msgstr "%sへの返信" -#: src/Object/Post.php:616 +#: src/Object/Post.php:602 msgid "More" msgstr "更に" -#: src/Object/Post.php:635 +#: src/Object/Post.php:621 msgid "Notifier task is pending" msgstr "通知タスクは保留中です" -#: src/Object/Post.php:636 +#: src/Object/Post.php:622 msgid "Delivery to remote servers is pending" msgstr "リモートサーバーへの配信は保留中です" -#: src/Object/Post.php:637 +#: src/Object/Post.php:623 msgid "Delivery to remote servers is underway" msgstr "リモートサーバーへの配信が進行中です" -#: src/Object/Post.php:638 +#: src/Object/Post.php:624 msgid "Delivery to remote servers is mostly done" msgstr "リモートサーバーへの配信はもうすぐ完了します" -#: src/Object/Post.php:639 +#: src/Object/Post.php:625 msgid "Delivery to remote servers is done" msgstr "リモートサーバーへの配信が完了しました" -#: src/Object/Post.php:661 +#: src/Object/Post.php:647 #, php-format msgid "%d comment" msgid_plural "%d comments" msgstr[0] "%dコメント" -#: src/Object/Post.php:662 +#: src/Object/Post.php:648 msgid "Show more" msgstr "もっと見せる" -#: src/Object/Post.php:663 +#: src/Object/Post.php:649 msgid "Show fewer" msgstr "表示を減らす" -#: src/Object/Post.php:700 +#: src/Object/Post.php:686 #, php-format msgid "Reshared by: %s" msgstr "" -#: src/Object/Post.php:705 +#: src/Object/Post.php:691 #, php-format msgid "Viewed by: %s" msgstr "" -#: src/Object/Post.php:710 +#: src/Object/Post.php:696 #, php-format msgid "Read by: %s" msgstr "" -#: src/Object/Post.php:715 +#: src/Object/Post.php:701 #, php-format msgid "Liked by: %s" msgstr "" -#: src/Object/Post.php:720 +#: src/Object/Post.php:706 #, php-format msgid "Disliked by: %s" msgstr "" -#: src/Object/Post.php:725 +#: src/Object/Post.php:711 #, php-format msgid "Attended by: %s" msgstr "" -#: src/Object/Post.php:730 +#: src/Object/Post.php:716 #, php-format msgid "Maybe attended by: %s" msgstr "" -#: src/Object/Post.php:735 +#: src/Object/Post.php:721 #, php-format msgid "Not attended by: %s" msgstr "" -#: src/Object/Post.php:740 +#: src/Object/Post.php:726 #, php-format msgid "Commented by: %s" msgstr "" -#: src/Object/Post.php:745 +#: src/Object/Post.php:731 #, php-format msgid "Reacted with %s by: %s" msgstr "" -#: src/Object/Post.php:768 +#: src/Object/Post.php:754 #, php-format msgid "Quote shared by: %s" msgstr "" -#: src/Protocol/ActivityPub/Receiver.php:568 +#: src/Protocol/ActivityPub/Receiver.php:557 msgid "Chat" msgstr "" -#: src/Protocol/Delivery.php:544 +#: src/Protocol/Delivery.php:530 msgid "(no subject)" msgstr "" -#: src/Protocol/OStatus.php:1392 -#, php-format -msgid "%s is now following %s." -msgstr "%sは現在 %s をフォローしています。" - -#: src/Protocol/OStatus.php:1393 -msgid "following" -msgstr "フォローしている" - -#: src/Protocol/OStatus.php:1396 -#, php-format -msgid "%s stopped following %s." -msgstr "%s は %s のフォローを解除しました" - -#: src/Protocol/OStatus.php:1397 -msgid "stopped following" -msgstr "フォローを解除しました" - -#: src/Render/FriendicaSmartyEngine.php:56 +#: src/Render/FriendicaSmartyEngine.php:42 #, php-format msgid "The folder %s must be writable by webserver." msgstr "" -#: src/Security/Authentication.php:216 +#: src/Security/Authentication.php:200 msgid "Login failed." msgstr "ログインに失敗しました。" -#: src/Security/Authentication.php:261 +#: src/Security/Authentication.php:245 msgid "Login failed. Please check your credentials." msgstr "ログインに失敗しました。認証情報を確かめてください。" -#: src/Security/Authentication.php:375 +#: src/Security/Authentication.php:359 #, php-format msgid "Welcome %s" msgstr "ようこそ%s" -#: src/Security/Authentication.php:376 +#: src/Security/Authentication.php:360 msgid "Please upload a profile photo." msgstr "プロフィール写真をアップロードしてください。" -#: src/Util/EMailer/MailBuilder.php:260 +#: src/Security/OpenWebAuth.php:149 +#, php-format +msgid "OpenWebAuth: %1$s welcomes %2$s" +msgstr "OpenWebAuth: %2$sさん、%1$sへようこそ" + +#: src/Util/EMailer/MailBuilder.php:246 msgid "Friendica Notification" msgstr "Friendica の通知" -#: src/Util/EMailer/NotifyMailBuilder.php:78 -#: src/Util/EMailer/SystemMailBuilder.php:54 +#: src/Util/EMailer/NotifyMailBuilder.php:64 +#: src/Util/EMailer/SystemMailBuilder.php:40 #, php-format msgid "%1$s, %2$s Administrator" msgstr "" -#: src/Util/EMailer/NotifyMailBuilder.php:80 -#: src/Util/EMailer/SystemMailBuilder.php:56 +#: src/Util/EMailer/NotifyMailBuilder.php:66 +#: src/Util/EMailer/SystemMailBuilder.php:42 #, php-format msgid "%s Administrator" msgstr "" -#: src/Util/EMailer/NotifyMailBuilder.php:193 -#: src/Util/EMailer/NotifyMailBuilder.php:217 -#: src/Util/EMailer/SystemMailBuilder.php:101 -#: src/Util/EMailer/SystemMailBuilder.php:118 +#: src/Util/EMailer/NotifyMailBuilder.php:179 +#: src/Util/EMailer/NotifyMailBuilder.php:203 +#: src/Util/EMailer/SystemMailBuilder.php:87 +#: src/Util/EMailer/SystemMailBuilder.php:104 msgid "thanks" msgstr "" -#: src/Util/Temporal.php:172 +#: src/Util/Temporal.php:158 msgid "YYYY-MM-DD or MM-DD" msgstr "YYYY-MM-DDまたはMM-DD" -#: src/Util/Temporal.php:280 +#: src/Util/Temporal.php:266 #, php-format msgid "Time zone: %s Change in Settings" msgstr "" -#: src/Util/Temporal.php:320 src/Util/Temporal.php:329 +#: src/Util/Temporal.php:306 src/Util/Temporal.php:315 msgid "never" msgstr "" -#: src/Util/Temporal.php:343 +#: src/Util/Temporal.php:329 msgid "less than a second ago" msgstr "1秒以内前" -#: src/Util/Temporal.php:352 +#: src/Util/Temporal.php:338 msgid "year" msgstr "年" -#: src/Util/Temporal.php:352 +#: src/Util/Temporal.php:338 msgid "years" msgstr "年" -#: src/Util/Temporal.php:353 +#: src/Util/Temporal.php:339 msgid "months" msgstr "月" -#: src/Util/Temporal.php:354 +#: src/Util/Temporal.php:340 msgid "weeks" msgstr "週間" -#: src/Util/Temporal.php:355 +#: src/Util/Temporal.php:341 msgid "days" msgstr "日" -#: src/Util/Temporal.php:356 +#: src/Util/Temporal.php:342 msgid "hour" msgstr "時間" -#: src/Util/Temporal.php:356 +#: src/Util/Temporal.php:342 msgid "hours" msgstr "時間" -#: src/Util/Temporal.php:357 +#: src/Util/Temporal.php:343 msgid "minute" msgstr "分" -#: src/Util/Temporal.php:357 +#: src/Util/Temporal.php:343 msgid "minutes" msgstr "分" -#: src/Util/Temporal.php:358 +#: src/Util/Temporal.php:344 msgid "second" msgstr "秒" -#: src/Util/Temporal.php:358 +#: src/Util/Temporal.php:344 msgid "seconds" msgstr "秒" -#: src/Util/Temporal.php:367 +#: src/Util/Temporal.php:353 #, php-format msgid "in %1$d %2$s" msgstr "" -#: src/Util/Temporal.php:370 +#: src/Util/Temporal.php:356 #, php-format msgid "%1$d %2$s ago" msgstr "%1$d%2$s前" -#: src/Worker/PushSubscription.php:110 +#: src/Worker/PushSubscription.php:96 msgid "Notification from Friendica" msgstr "" -#: src/Worker/PushSubscription.php:111 +#: src/Worker/PushSubscription.php:97 msgid "Empty Post" msgstr "" -#: view/theme/duepuntozero/config.php:68 +#: view/theme/duepuntozero/config.php:56 msgid "default" msgstr "" -#: view/theme/duepuntozero/config.php:69 +#: view/theme/duepuntozero/config.php:57 msgid "greenzero" msgstr "" -#: view/theme/duepuntozero/config.php:70 +#: view/theme/duepuntozero/config.php:58 msgid "purplezero" msgstr "" -#: view/theme/duepuntozero/config.php:71 +#: view/theme/duepuntozero/config.php:59 msgid "easterbunny" msgstr "" -#: view/theme/duepuntozero/config.php:72 +#: view/theme/duepuntozero/config.php:60 msgid "darkzero" msgstr "" -#: view/theme/duepuntozero/config.php:73 +#: view/theme/duepuntozero/config.php:61 msgid "comix" msgstr "" -#: view/theme/duepuntozero/config.php:74 +#: view/theme/duepuntozero/config.php:62 msgid "slackr" msgstr "" -#: view/theme/duepuntozero/config.php:87 +#: view/theme/duepuntozero/config.php:75 msgid "Variations" msgstr "" -#: view/theme/frio/config.php:146 +#: view/theme/frio/config.php:134 msgid "Note" msgstr "" -#: view/theme/frio/config.php:146 +#: view/theme/frio/config.php:134 msgid "Check image permissions if all users are allowed to see the image" msgstr "" -#: view/theme/frio/config.php:152 +#: view/theme/frio/config.php:140 msgid "Appearance" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Accent color" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Blue" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Red" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Purple" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Green" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Pink" msgstr "" -#: view/theme/frio/config.php:154 +#: view/theme/frio/config.php:142 msgid "Copy or paste schemestring" msgstr "スキーム文字列のコピーまたは貼り付け" -#: view/theme/frio/config.php:154 +#: view/theme/frio/config.php:142 msgid "" "You can copy this string to share your theme with others. Pasting here " "applies the schemestring" msgstr "この文字列をコピーして、テーマを他の人と共有できます。ここに貼り付けると、スキーム文字列が適用されます" -#: view/theme/frio/config.php:155 +#: view/theme/frio/config.php:143 msgid "Navigation bar background color" msgstr "ナビゲーションバーの背景色" -#: view/theme/frio/config.php:156 +#: view/theme/frio/config.php:144 msgid "Navigation bar icon color " msgstr "" -#: view/theme/frio/config.php:157 +#: view/theme/frio/config.php:145 msgid "Link color" msgstr "" -#: view/theme/frio/config.php:158 +#: view/theme/frio/config.php:146 msgid "Set the background color" msgstr "" -#: view/theme/frio/config.php:159 +#: view/theme/frio/config.php:147 msgid "Content background opacity" msgstr "" -#: view/theme/frio/config.php:160 +#: view/theme/frio/config.php:148 msgid "Set the background image" msgstr "" -#: view/theme/frio/config.php:161 +#: view/theme/frio/config.php:149 msgid "Background image style" msgstr "" -#: view/theme/frio/config.php:164 +#: view/theme/frio/config.php:152 msgid "Always open Compose page" msgstr "" -#: view/theme/frio/config.php:164 +#: view/theme/frio/config.php:152 msgid "" "The New Post button always open the Compose page " "instead of the modal form. When this is disabled, the Compose page can be " "accessed with a middle click on the link or from the modal." msgstr "" -#: view/theme/frio/config.php:168 +#: view/theme/frio/config.php:156 msgid "Login page background image" msgstr "" -#: view/theme/frio/config.php:172 +#: view/theme/frio/config.php:160 msgid "Login page background color" msgstr "" -#: view/theme/frio/config.php:172 +#: view/theme/frio/config.php:160 msgid "Leave background image and color empty for theme defaults" msgstr "" -#: view/theme/frio/php/Image.php:39 +#: view/theme/frio/php/Image.php:27 msgid "Top Banner" msgstr "" -#: view/theme/frio/php/Image.php:39 +#: view/theme/frio/php/Image.php:27 msgid "" "Resize image to the width of the screen and show background color below on " "long pages." msgstr "" -#: view/theme/frio/php/Image.php:40 +#: view/theme/frio/php/Image.php:28 msgid "Full screen" msgstr "" -#: view/theme/frio/php/Image.php:40 +#: view/theme/frio/php/Image.php:28 msgid "" "Resize image to fill entire screen, clipping either the right or the bottom." msgstr "" -#: view/theme/frio/php/Image.php:41 +#: view/theme/frio/php/Image.php:29 msgid "Single row mosaic" msgstr "" -#: view/theme/frio/php/Image.php:41 +#: view/theme/frio/php/Image.php:29 msgid "" "Resize image to repeat it on a single row, either vertical or horizontal." msgstr "" -#: view/theme/frio/php/Image.php:42 +#: view/theme/frio/php/Image.php:30 msgid "Mosaic" msgstr "" -#: view/theme/frio/php/Image.php:42 +#: view/theme/frio/php/Image.php:30 msgid "Repeat image to fill the screen." msgstr "" -#: view/theme/frio/php/default.php:82 view/theme/frio/php/standard.php:40 +#: view/theme/frio/php/default.php:70 view/theme/frio/php/standard.php:28 msgid "Skip to main content" msgstr "" -#: view/theme/frio/php/default.php:153 view/theme/frio/php/standard.php:75 +#: view/theme/frio/php/default.php:141 view/theme/frio/php/standard.php:63 msgid "Back to top" msgstr "" -#: view/theme/frio/php/scheme.php:105 +#: view/theme/frio/php/scheme.php:93 msgid "Light" msgstr "" -#: view/theme/frio/php/scheme.php:106 +#: view/theme/frio/php/scheme.php:94 msgid "Dark" msgstr "" -#: view/theme/frio/php/scheme.php:107 +#: view/theme/frio/php/scheme.php:95 msgid "Black" msgstr "" -#: view/theme/frio/php/scheme.php:118 +#: view/theme/frio/php/scheme.php:106 msgid "Custom" msgstr "" -#: view/theme/frio/theme.php:214 +#: view/theme/frio/theme.php:202 msgid "Guest" msgstr "" -#: view/theme/frio/theme.php:217 +#: view/theme/frio/theme.php:205 msgid "Visitor" msgstr "" -#: view/theme/quattro/config.php:89 +#: view/theme/quattro/config.php:77 msgid "Alignment" msgstr "" -#: view/theme/quattro/config.php:89 +#: view/theme/quattro/config.php:77 msgid "Left" msgstr "" -#: view/theme/quattro/config.php:89 +#: view/theme/quattro/config.php:77 msgid "Center" msgstr "" -#: view/theme/quattro/config.php:90 +#: view/theme/quattro/config.php:78 msgid "Color scheme" msgstr "" -#: view/theme/quattro/config.php:91 +#: view/theme/quattro/config.php:79 msgid "Posts font size" msgstr "" -#: view/theme/quattro/config.php:92 +#: view/theme/quattro/config.php:80 msgid "Textareas font size" msgstr "" -#: view/theme/vier/config.php:91 +#: view/theme/vier/config.php:79 msgid "Comma separated list of helper groups" msgstr "" -#: view/theme/vier/config.php:131 +#: view/theme/vier/config.php:119 msgid "don't show" msgstr "" -#: view/theme/vier/config.php:131 +#: view/theme/vier/config.php:119 msgid "show" msgstr "" -#: view/theme/vier/config.php:137 +#: view/theme/vier/config.php:125 msgid "Set style" msgstr "" -#: view/theme/vier/config.php:138 +#: view/theme/vier/config.php:126 msgid "Community Pages" msgstr "" -#: view/theme/vier/config.php:139 view/theme/vier/theme.php:148 +#: view/theme/vier/config.php:127 view/theme/vier/theme.php:136 msgid "Community Profiles" msgstr "" -#: view/theme/vier/config.php:140 +#: view/theme/vier/config.php:128 msgid "Help or @NewHere ?" msgstr "" -#: view/theme/vier/config.php:141 view/theme/vier/theme.php:319 +#: view/theme/vier/config.php:129 view/theme/vier/theme.php:307 msgid "Connect Services" msgstr "" -#: view/theme/vier/config.php:142 +#: view/theme/vier/config.php:130 msgid "Find Friends" msgstr "" -#: view/theme/vier/config.php:143 view/theme/vier/theme.php:175 +#: view/theme/vier/config.php:131 view/theme/vier/theme.php:163 msgid "Last users" msgstr "" -#: view/theme/vier/theme.php:234 +#: view/theme/vier/theme.php:222 msgid "Quick Start" msgstr "" diff --git a/view/lang/ja/strings.php b/view/lang/ja/strings.php index a9295114ff..9466a9beb7 100644 --- a/view/lang/ja/strings.php +++ b/view/lang/ja/strings.php @@ -587,7 +587,6 @@ $a->strings['An author or name was not found.'] = '著者または名前が見 $a->strings['No browser URL could be matched to this address.'] = 'このアドレスに一致するブラウザURLはありません。'; $a->strings['Unable to match @-style Identity Address with a known protocol or email contact.'] = '@スタイルのIDアドレスを既知のプロトコルまたは電子メールのコンタクトと一致させることができません。'; $a->strings['Use mailto: in front of address to force email check.'] = 'メールチェックを強制するには、アドレスの前にmailto:を使用します。'; -$a->strings['The profile address specified belongs to a network which has been disabled on this site.'] = '指定されたプロフィールアドレスは、このサイトで無効にされたネットワークに属します。'; $a->strings['Limited profile. This person will be unable to receive direct/personal notifications from you.'] = '限定公開のプロフィールです。この人はあなたから直接/個人的な通知を受け取ることができません。'; $a->strings['Unable to retrieve contact information.'] = 'コンタクト情報を取得できません。'; $a->strings['Starts:'] = '開始:'; @@ -630,7 +629,6 @@ $a->strings['g A l F d'] = 'g A l F d'; $a->strings['[No description]'] = '[説明なし]'; $a->strings['Event Reminders'] = 'イベントリマインダー'; $a->strings['Upcoming events the next 7 days:'] = '今後7日間の今後のイベント:'; -$a->strings['OpenWebAuth: %1$s welcomes %2$s'] = 'OpenWebAuth: %2$sさん、%1$sへようこそ'; $a->strings['Hometown:'] = '出身地:'; $a->strings['Sexual Preference:'] = '性的嗜好:'; $a->strings['Political Views:'] = '政見:'; @@ -875,7 +873,6 @@ $a->strings['When the database cleanup is enabled, this defines the days after w $a->strings['Lifespan of unclaimed items'] = '請求されていない項目の寿命'; $a->strings['When the database cleanup is enabled, this defines the days after which unclaimed remote items (mostly content from the relay) will be deleted. Default value is 90 days. Defaults to the general lifespan value of remote items if set to 0.'] = 'データベースのクリーンアップが有効になっている場合、これは、要求されていないリモート項目(主に中継からのコンテンツ)が削除されるまでの日数を定義します。デフォルト値は90日です。 0に設定されている場合、リモート項目の一般的なライフスパン値がデフォルトになります。'; $a->strings['Lifespan of raw conversation data'] = 'Raw会話データの寿命'; -$a->strings['The conversation data is used for ActivityPub and OStatus, as well as for debug purposes. It should be safe to remove it after 14 days, default is 90 days.'] = '会話データは、ActivityPubおよびOStatusに使用されるほか、デバッグにも使用されます。 14日後に削除しても安全です。デフォルトは90日です。'; $a->strings['Maximum numbers of comments per post'] = '投稿あたりのコメントの最大数'; $a->strings['How much comments should be shown for each post? Default value is 100.'] = '各投稿に表示されるコメントの数は?デフォルト値は100です。'; $a->strings['Temp path'] = '一時パス'; @@ -1055,7 +1052,6 @@ $a->strings['Submit Request'] = 'リクエストを送る'; $a->strings['You already added this contact.'] = 'このコンタクトは既に追加されています。'; $a->strings['The network type couldn\'t be detected. Contact can\'t be added.'] = 'ネットワークの種類を検出できませんでした。コンタクトを追加できません。'; $a->strings['Diaspora support isn\'t enabled. Contact can\'t be added.'] = 'Diasporaのサポートは有効になっていません。コンタクトを追加できません。'; -$a->strings['OStatus support is disabled. Contact can\'t be added.'] = 'OStatusサポートは無効です。コンタクトを追加できません。'; $a->strings['Please answer the following:'] = '以下に答えてください。'; $a->strings['Your Identity Address:'] = 'あなたのIdentityアドレス:'; $a->strings['Profile URL'] = 'プロフィールURL'; @@ -1367,8 +1363,6 @@ $a->strings['Show unread'] = '未読を表示'; $a->strings['{0} requested registration'] = '{0}は登録をリクエストしました'; $a->strings['Authorize application connection'] = 'アプリからの接続を承認します'; $a->strings['Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?'] = 'このアプリケーションによる、あなたの投稿・コンタクトの読み取りや、新しい投稿の作成を許可しますか?'; -$a->strings['Resubscribing to OStatus contacts'] = 'Ostatusコンタクトをもう一度購読します'; -$a->strings['Keep this window open until done.'] = 'ウィンドウを閉じずにお待ちください…'; $a->strings['No contact provided.'] = 'コンタクトは提供されていません。'; $a->strings['Couldn\'t fetch information for contact.'] = 'コンタクトの情報を取得できませんでした。'; $a->strings['Couldn\'t fetch friends for contact.'] = 'コンタクトの友達関係を取得できませんでした。'; @@ -1376,6 +1370,7 @@ $a->strings['Done'] = '完了'; $a->strings['success'] = '成功'; $a->strings['failed'] = '失敗'; $a->strings['ignored'] = '無視'; +$a->strings['Keep this window open until done.'] = 'ウィンドウを閉じずにお待ちください…'; $a->strings['The Photo with id %s is not available.'] = 'ID%sの写真は利用できません'; $a->strings['Invalid photo with id %s.'] = 'ID %s の写真が無効です。'; $a->strings['Edit post'] = '投稿を編集'; @@ -1391,9 +1386,9 @@ $a->strings['Model not found'] = 'モジュールが見つかりません'; $a->strings['Remote privacy information not available.'] = 'リモートプライバシー情報は利用できません。'; $a->strings['Visible to:'] = '表示先:'; $a->strings['No contacts.'] = 'コンタクトはありません。'; -$a->strings['%s\'s timeline'] = '%sのタイムライン'; $a->strings['%s\'s posts'] = '%sの投稿'; $a->strings['%s\'s comments'] = '%sのコメント'; +$a->strings['%s\'s timeline'] = '%sのタイムライン'; $a->strings['Image exceeds size limit of %s'] = '画像サイズ上限 %s を超えています。'; $a->strings['Image upload didn\'t complete, please try again'] = '画像のアップロードが完了しませんでした。もう一度お試しください'; $a->strings['Image file is missing'] = '画像ファイルがありません'; @@ -1581,13 +1576,11 @@ $a->strings['Description'] = '説明'; $a->strings['Add'] = '追加'; $a->strings['Failed to connect with email account using the settings provided.'] = '提供された設定を使用してメールアカウントに接続できませんでした。'; $a->strings['Diaspora (Socialhome, Hubzilla)'] = 'Diaspora(Socialhome、Hubzilla)'; -$a->strings['OStatus (GNU Social)'] = 'OStatus (GNU Social)'; $a->strings['Email access is disabled on this site.'] = 'このサイトではメールアクセスが無効になっています。'; $a->strings['None'] = '無し'; $a->strings['General Social Media Settings'] = '一般的なソーシャルメディア設定'; $a->strings['Attach the link title'] = 'リンクの件名を添付します'; $a->strings['When activated, the title of the attached link will be added as a title on posts to Diaspora. This is mostly helpful with "remote-self" contacts that share feed content.'] = '有効にすると、添付されたリンクのタイトルがDiasporaへの投稿のタイトルとして追加されます。 これは主に、フィードコンテンツを共有する「リモート セルフ」コンタクトで役立ちます。'; -$a->strings['Repair OStatus subscriptions'] = 'OStatusサブスクリプションを修復する'; $a->strings['Email/Mailbox Setup'] = 'メール/メールボックスのセットアップ'; $a->strings['If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox.'] = 'このサービス(オプション)を使用してメールコンタクトと通信する場合は、メールボックスへの接続方法を指定してください。'; $a->strings['Last successful email check:'] = '最後に成功したメールチェック:'; @@ -1815,7 +1808,6 @@ $a->strings['%s commented on %s\'s post'] = '%sが%sの投稿にコメントし $a->strings['%s created a new post'] = '%sが新しい投稿を作成しました'; $a->strings['Friend Suggestion'] = '友達の提案'; $a->strings['Friend/Connect Request'] = 'フレンド/接続リクエスト'; -$a->strings['New Follower'] = '新しいフォロワー'; $a->strings['%1$s sent you a new private message at %2$s.'] = '%1$s さんが %2$s に あなたにプライベートメッセージを送りました'; $a->strings['a private message'] = 'プライベートメッセージ'; $a->strings['%1$s sent you %2$s.'] = '%1$s があなたに %2$s を送りました'; @@ -1879,14 +1871,11 @@ $a->strings['%d comment'] = [ ]; $a->strings['Show more'] = 'もっと見せる'; $a->strings['Show fewer'] = '表示を減らす'; -$a->strings['%s is now following %s.'] = '%sは現在 %s をフォローしています。'; -$a->strings['following'] = 'フォローしている'; -$a->strings['%s stopped following %s.'] = '%s は %s のフォローを解除しました'; -$a->strings['stopped following'] = 'フォローを解除しました'; $a->strings['Login failed.'] = 'ログインに失敗しました。'; $a->strings['Login failed. Please check your credentials.'] = 'ログインに失敗しました。認証情報を確かめてください。'; $a->strings['Welcome %s'] = 'ようこそ%s'; $a->strings['Please upload a profile photo.'] = 'プロフィール写真をアップロードしてください。'; +$a->strings['OpenWebAuth: %1$s welcomes %2$s'] = 'OpenWebAuth: %2$sさん、%1$sへようこそ'; $a->strings['Friendica Notification'] = 'Friendica の通知'; $a->strings['YYYY-MM-DD or MM-DD'] = 'YYYY-MM-DDまたはMM-DD'; $a->strings['less than a second ago'] = '1秒以内前'; diff --git a/view/lang/nl/messages.po b/view/lang/nl/messages.po index fea9924c75..947ac13e26 100644 --- a/view/lang/nl/messages.po +++ b/view/lang/nl/messages.po @@ -1,8 +1,7 @@ # FRIENDICA Distributed Social Network -# SPDX-FileCopyrightText: Copyright (C) 2010-2024, the Friendica project -# -# SPDX-License-Identifier: AGPL-3.0-or-later -# +# Copyright (C) 2010-2024, the Friendica project +# This file is distributed under the same license as the Friendica package. +# # Translators: # Casperupload_max_filesize
is set to %s (%s byte)"
msgstr ""
-#: src/Module/Admin/Site.php:497
+#: src/Module/Admin/Site.php:489
msgid "Maximum image length"
msgstr "Maximum afbeeldingslengte"
-#: src/Module/Admin/Site.php:497
+#: src/Module/Admin/Site.php:489
msgid ""
"Maximum length in pixels of the longest side of uploaded images. Default is "
"-1, which means no limits."
msgstr "Maximum lengte in pixels van de langste kant van afbeeldingen. Standaard is -1, dus geen beperkingen."
-#: src/Module/Admin/Site.php:498
+#: src/Module/Admin/Site.php:490
msgid "JPEG image quality"
msgstr "JPEG afbeeldingskwaliteit"
-#: src/Module/Admin/Site.php:498
+#: src/Module/Admin/Site.php:490
msgid ""
"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
"100, which is full quality."
msgstr "JPEGS zullen met deze kwaliteitsinstelling bewaard worden [0-100]. Standaard is 100, dit is volledige kwaliteit."
-#: src/Module/Admin/Site.php:500
+#: src/Module/Admin/Site.php:491
+msgid "Maximum media file size"
+msgstr ""
+
+#: src/Module/Admin/Site.php:491
+#, php-format
+msgid ""
+"Maximum size in bytes of uploaded media files. Default is 0, which means no limits. You can put k, m, or g behind the desired value for KiB, MiB, GiB, respectively.\n"
+"\t\t\t\t\t\t\t\t\t\t\t\t\tThe value of upload_max_filesize
in your PHP.ini
needs be set to at least the desired limit.\n"
+"\t\t\t\t\t\t\t\t\t\t\t\t\tCurrently upload_max_filesize
is set to %s (%s byte)"
+msgstr ""
+
+#: src/Module/Admin/Site.php:496
msgid "Register policy"
msgstr "Registratiebeleid"
-#: src/Module/Admin/Site.php:501
+#: src/Module/Admin/Site.php:497
msgid "Maximum Users"
msgstr ""
-#: src/Module/Admin/Site.php:501
+#: src/Module/Admin/Site.php:497
msgid ""
"If defined, the register policy is automatically closed when the given "
"number of users is reached and reopens the registry when the number drops "
@@ -4738,167 +4755,167 @@ msgid ""
"not when the policy is set to approval."
msgstr ""
-#: src/Module/Admin/Site.php:502
+#: src/Module/Admin/Site.php:498
msgid "Maximum Daily Registrations"
msgstr "Maximum aantal registraties per dag"
-#: src/Module/Admin/Site.php:502
+#: src/Module/Admin/Site.php:498
msgid ""
"If registration is permitted above, this sets the maximum number of new user"
" registrations to accept per day. If register is set to closed, this "
"setting has no effect."
msgstr "Als registratie hierboven is toegelaten, zet dit het maximum aantal registraties van nieuwe gebruikers per dag. Als registratie niet is toegelaten heeft deze instelling geen effect."
-#: src/Module/Admin/Site.php:503
+#: src/Module/Admin/Site.php:499
msgid "Register text"
msgstr "Registratietekst"
-#: src/Module/Admin/Site.php:503
+#: src/Module/Admin/Site.php:499
msgid ""
"Will be displayed prominently on the registration page. You can use BBCode "
"here."
msgstr "Zal prominent op de registratie pagina getoond worden. Je kan hierin BBCode gebruiken."
-#: src/Module/Admin/Site.php:504
+#: src/Module/Admin/Site.php:500
msgid "Forbidden Nicknames"
msgstr "Verboden bijnamen"
-#: src/Module/Admin/Site.php:504
+#: src/Module/Admin/Site.php:500
msgid ""
"Comma separated list of nicknames that are forbidden from registration. "
"Preset is a list of role names according RFC 2142."
msgstr "Kommagescheiden lijst van bijnamen die verboden zijn voor registratie. De lijst uit RFC2142 is op voorhand ingesteld."
-#: src/Module/Admin/Site.php:505
+#: src/Module/Admin/Site.php:501
msgid "Accounts abandoned after x days"
msgstr "Verlaten accounts na x dagen"
-#: src/Module/Admin/Site.php:505
+#: src/Module/Admin/Site.php:501
msgid ""
"Will not waste system resources polling external sites for abandonded "
"accounts. Enter 0 for no time limit."
msgstr "Dit zal geen systeembronnen verspillen aan het nakijken van externe sites voor verlaten accounts. Geef 0 is voor geen tijdslimiet."
-#: src/Module/Admin/Site.php:506
+#: src/Module/Admin/Site.php:502
msgid "Allowed friend domains"
msgstr "Toegelaten vriend domeinen"
-#: src/Module/Admin/Site.php:506
+#: src/Module/Admin/Site.php:502
msgid ""
"Comma separated list of domains which are allowed to establish friendships "
"with this site. Wildcards are accepted. Empty to allow any domains"
msgstr "Komma-gescheiden lijst van domeinen die een vriendschapsband met deze website mogen aangaan. Jokers zijn toegelaten. Laat leeg om alle domeinen toe te laten."
-#: src/Module/Admin/Site.php:507
+#: src/Module/Admin/Site.php:503
msgid "Allowed email domains"
msgstr "Toegelaten e-mail domeinen"
-#: src/Module/Admin/Site.php:507
+#: src/Module/Admin/Site.php:503
msgid ""
"Comma separated list of domains which are allowed in email addresses for "
"registrations to this site. Wildcards are accepted. Empty to allow any "
"domains"
msgstr "Door komma's gescheiden lijst met e-maildomeinen die op deze website mogen registeren. Wildcards zijn toegestaan.\nLeeg laten om alle domeinen toe te staan."
-#: src/Module/Admin/Site.php:508
+#: src/Module/Admin/Site.php:504
msgid "Disallowed email domains"
msgstr ""
-#: src/Module/Admin/Site.php:508
+#: src/Module/Admin/Site.php:504
msgid ""
"Comma separated list of domains which are rejected as email addresses for "
"registrations to this site. Wildcards are accepted."
msgstr ""
-#: src/Module/Admin/Site.php:509
+#: src/Module/Admin/Site.php:505
msgid "No OEmbed rich content"
msgstr "Geen OEmbed richt content"
-#: src/Module/Admin/Site.php:509
+#: src/Module/Admin/Site.php:505
msgid ""
"Don't show the rich content (e.g. embedded PDF), except from the domains "
"listed below."
msgstr "Toon geen rich content (bvb. embedded PDF), behalve van domeinen hieronder opgelijst."
-#: src/Module/Admin/Site.php:510
+#: src/Module/Admin/Site.php:506
msgid "Trusted third-party domains"
msgstr ""
-#: src/Module/Admin/Site.php:510
+#: src/Module/Admin/Site.php:506
msgid ""
"Comma separated list of domains from which content is allowed to be embedded"
" in posts like with OEmbed. All sub-domains of the listed domains are "
"allowed as well."
msgstr ""
-#: src/Module/Admin/Site.php:511
+#: src/Module/Admin/Site.php:507
msgid "Block public"
msgstr "Openbare toegang blokkeren"
-#: src/Module/Admin/Site.php:511
+#: src/Module/Admin/Site.php:507
msgid ""
"Check to block public access to all otherwise public personal pages on this "
"site unless you are currently logged in."
msgstr "Kruis dit aan om alle openbare persoonlijke pagina's alleen toegankelijk te maken voor ingelogde gebruikers."
-#: src/Module/Admin/Site.php:512
+#: src/Module/Admin/Site.php:508
msgid "Force publish"
msgstr "Dwing publiceren af"
-#: src/Module/Admin/Site.php:512
+#: src/Module/Admin/Site.php:508
msgid ""
"Check to force all profiles on this site to be listed in the site directory."
msgstr "Kruis dit aan om af te dwingen dat alle profielen op deze website in de gids van deze website gepubliceerd worden."
-#: src/Module/Admin/Site.php:512
+#: src/Module/Admin/Site.php:508
msgid "Enabling this may violate privacy laws like the GDPR"
msgstr "Dit activeren zou privacy wetten zoals GDPR (AVG) kunnen overtreden"
-#: src/Module/Admin/Site.php:513
+#: src/Module/Admin/Site.php:509
msgid "Global directory URL"
msgstr "Algemene gids URL"
-#: src/Module/Admin/Site.php:513
+#: src/Module/Admin/Site.php:509
msgid ""
"URL to the global directory. If this is not set, the global directory is "
"completely unavailable to the application."
msgstr "URL naar de globale gids. Als dit niet geconfigureerd is, dan zal de globale gids volledig onbeschikbaar zijn voor de applicatie."
-#: src/Module/Admin/Site.php:514
+#: src/Module/Admin/Site.php:510
msgid "Private posts by default for new users"
msgstr "Privéberichten als standaard voor nieuwe gebruikers"
-#: src/Module/Admin/Site.php:514
+#: src/Module/Admin/Site.php:510
msgid ""
"Set default post permissions for all new members to the default privacy "
"circle rather than public."
msgstr ""
-#: src/Module/Admin/Site.php:515
+#: src/Module/Admin/Site.php:511
msgid "Don't include post content in email notifications"
msgstr "De inhoud van het bericht niet insluiten bij e-mailnotificaties"
-#: src/Module/Admin/Site.php:515
+#: src/Module/Admin/Site.php:511
msgid ""
"Don't include the content of a post/comment/private message/etc. in the "
"email notifications that are sent out from this site, as a privacy measure."
msgstr "De inhoud van berichten/commentaar/privéberichten/enzovoort niet insluiten in e-mailnotificaties die door deze website verzonden worden, voor de bescherming van je privacy."
-#: src/Module/Admin/Site.php:516
+#: src/Module/Admin/Site.php:512
msgid "Disallow public access to addons listed in the apps menu."
msgstr "Publieke toegang ontzeggen tot addons die opgelijst zijn in het applicatie menu."
-#: src/Module/Admin/Site.php:516
+#: src/Module/Admin/Site.php:512
msgid ""
"Checking this box will restrict addons listed in the apps menu to members "
"only."
msgstr "Dit vakje aanvinken zal de lijst van addons in het applicatie menu beperken tot alleen leden."
-#: src/Module/Admin/Site.php:517
+#: src/Module/Admin/Site.php:513
msgid "Don't embed private images in posts"
msgstr "Privé beelden in berichten niet inwerken"
-#: src/Module/Admin/Site.php:517
+#: src/Module/Admin/Site.php:513
msgid ""
"Don't replace locally-hosted private photos in posts with an embedded copy "
"of the image. This means that contacts who receive posts containing private "
@@ -4906,11 +4923,11 @@ msgid ""
"while."
msgstr "Vervang lokaal gehoste privé foto's in berichten niet door een ingewerkte kopie van het beeld. Dit betekent dat contacten die berichten krijgen met privé foto's zullen moeten authentificeren en elk beeld apart laden, wat een tijdje kan duren."
-#: src/Module/Admin/Site.php:518
+#: src/Module/Admin/Site.php:514
msgid "Explicit Content"
msgstr "Expliciete inhoud"
-#: src/Module/Admin/Site.php:518
+#: src/Module/Admin/Site.php:514
msgid ""
"Set this to announce that your node is used mostly for explicit content that"
" might not be suited for minors. This information will be published in the "
@@ -4919,329 +4936,319 @@ msgid ""
"will be shown at the user registration page."
msgstr "Vink dit aan om aan te duiden dat deze node veel expliciet materiaal verspreid en niet bedoeld is voor minderjarigen. Deze info zal gepubliceert worden bij de node-info en kan vb. gebruikt worden voor een filter in de globale lijst. Dit word ook getoont naar de gebruiker op de registratie pagina."
-#: src/Module/Admin/Site.php:519
+#: src/Module/Admin/Site.php:515
msgid "Only local search"
msgstr ""
-#: src/Module/Admin/Site.php:519
+#: src/Module/Admin/Site.php:515
msgid ""
"Blocks search for users who are not logged in to prevent crawlers from "
"blocking your system."
msgstr ""
-#: src/Module/Admin/Site.php:520
+#: src/Module/Admin/Site.php:516
msgid "Blocked tags for trending tags"
msgstr ""
-#: src/Module/Admin/Site.php:520
+#: src/Module/Admin/Site.php:516
msgid ""
"Comma separated list of hashtags that shouldn't be displayed in the trending"
" tags."
msgstr ""
-#: src/Module/Admin/Site.php:521
+#: src/Module/Admin/Site.php:517
msgid "Cache contact avatars"
msgstr ""
-#: src/Module/Admin/Site.php:521
+#: src/Module/Admin/Site.php:517
msgid ""
"Locally store the avatar pictures of the contacts. This uses a lot of "
"storage space but it increases the performance."
msgstr ""
-#: src/Module/Admin/Site.php:522
+#: src/Module/Admin/Site.php:518
msgid "Allow Users to set remote_self"
msgstr "Sta Gebruikers toe om remote_self te configureren"
-#: src/Module/Admin/Site.php:522
+#: src/Module/Admin/Site.php:518
msgid ""
"With checking this, every user is allowed to mark every contact as a "
"remote_self in the repair contact dialog. Setting this flag on a contact "
"causes mirroring every posting of that contact in the users stream."
msgstr "Als je dit aanvinkt, dan mag elke gebruiker elke contact als remote_self aanduiden in de 'herstel contact' dialoog. Deze vlag aanzetten voor een contact zorgt ervoor dat elke bericht van dit contact gespiegeld wordt in de gebruiker zijn of haar stroom. "
-#: src/Module/Admin/Site.php:523
+#: src/Module/Admin/Site.php:519
msgid "Allow Users to set up relay channels"
msgstr ""
-#: src/Module/Admin/Site.php:523
+#: src/Module/Admin/Site.php:519
msgid ""
"If enabled, it is possible to create relay users that are used to reshare "
"content based on user defined channels."
msgstr ""
-#: src/Module/Admin/Site.php:524
+#: src/Module/Admin/Site.php:520
msgid "Adjust the feed poll frequency"
msgstr ""
-#: src/Module/Admin/Site.php:524
+#: src/Module/Admin/Site.php:520
msgid "Automatically detect and set the best feed poll frequency."
msgstr ""
-#: src/Module/Admin/Site.php:525
+#: src/Module/Admin/Site.php:521
msgid "Minimum poll interval"
msgstr ""
-#: src/Module/Admin/Site.php:525
+#: src/Module/Admin/Site.php:521
msgid ""
"Minimal distance in minutes between two polls for mail and feed contacts. "
"Reasonable values are between 1 and 59."
msgstr ""
-#: src/Module/Admin/Site.php:526
+#: src/Module/Admin/Site.php:522
msgid "Enable multiple registrations"
msgstr ""
-#: src/Module/Admin/Site.php:526
+#: src/Module/Admin/Site.php:522
msgid "Enable users to register additional accounts for use as pages."
msgstr ""
-#: src/Module/Admin/Site.php:527
+#: src/Module/Admin/Site.php:523
msgid "Enable OpenID"
msgstr ""
-#: src/Module/Admin/Site.php:527
+#: src/Module/Admin/Site.php:523
msgid "Enable OpenID support for registration and logins."
msgstr ""
-#: src/Module/Admin/Site.php:528
+#: src/Module/Admin/Site.php:524
msgid "Enable full name check"
msgstr ""
-#: src/Module/Admin/Site.php:528
+#: src/Module/Admin/Site.php:524
msgid ""
"Prevents users from registering with a display name with fewer than two "
"parts separated by spaces."
msgstr ""
-#: src/Module/Admin/Site.php:529
+#: src/Module/Admin/Site.php:525
msgid "Email administrators on new registration"
msgstr ""
-#: src/Module/Admin/Site.php:529
+#: src/Module/Admin/Site.php:525
msgid ""
"If enabled and the system is set to an open registration, an email for each "
"new registration is sent to the administrators."
msgstr ""
-#: src/Module/Admin/Site.php:530
+#: src/Module/Admin/Site.php:526
msgid "Community pages for visitors"
msgstr "Groepspagina voor bezoekers"
-#: src/Module/Admin/Site.php:530
+#: src/Module/Admin/Site.php:526
msgid ""
"Which community pages should be available for visitors. Local users always "
"see both pages."
msgstr "Welke groepspagina's moeten beschikbaar zijn voor bezoekers. Lokale gebruikers zien altijd beide pagina's."
-#: src/Module/Admin/Site.php:531
+#: src/Module/Admin/Site.php:527
msgid "Posts per user on community page"
msgstr "Berichten per gebruiker op de groepspagina"
-#: src/Module/Admin/Site.php:531
+#: src/Module/Admin/Site.php:527
msgid ""
"The maximum number of posts per user on the local community page. This is "
"useful, when a single user floods the local community page."
msgstr ""
-#: src/Module/Admin/Site.php:532
+#: src/Module/Admin/Site.php:528
msgid "Posts per server on community page"
msgstr ""
-#: src/Module/Admin/Site.php:532
+#: src/Module/Admin/Site.php:528
msgid ""
"The maximum number of posts per server on the global community page. This is"
" useful, when posts from a single server flood the global community page."
msgstr ""
-#: src/Module/Admin/Site.php:534
+#: src/Module/Admin/Site.php:530
msgid "Enable Mail support"
msgstr ""
-#: src/Module/Admin/Site.php:534
+#: src/Module/Admin/Site.php:530
msgid ""
"Enable built-in mail support to poll IMAP folders and to reply via mail."
msgstr ""
-#: src/Module/Admin/Site.php:535
+#: src/Module/Admin/Site.php:531
msgid ""
"Mail support can't be enabled because the PHP IMAP module is not installed."
msgstr ""
-#: src/Module/Admin/Site.php:536
-msgid "Enable OStatus support"
-msgstr ""
-
-#: src/Module/Admin/Site.php:536
-msgid ""
-"Enable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
-"communications in OStatus are public."
-msgstr ""
-
-#: src/Module/Admin/Site.php:538
+#: src/Module/Admin/Site.php:533
msgid ""
"Diaspora support can't be enabled because Friendica was installed into a sub"
" directory."
msgstr "Diaspora ondersteuning is niet mogelijk omdat Friendica in een sub folder geïnstalleerd is."
-#: src/Module/Admin/Site.php:539
+#: src/Module/Admin/Site.php:534
msgid "Enable Diaspora support"
msgstr "Diaspora ondersteuning activeren"
-#: src/Module/Admin/Site.php:539
+#: src/Module/Admin/Site.php:534
msgid ""
"Enable built-in Diaspora network compatibility for communicating with "
"diaspora servers."
msgstr ""
-#: src/Module/Admin/Site.php:540
+#: src/Module/Admin/Site.php:535
msgid "Verify SSL"
msgstr "Controleer SSL"
-#: src/Module/Admin/Site.php:540
+#: src/Module/Admin/Site.php:535
msgid ""
"If you wish, you can turn on strict certificate checking. This will mean you"
" cannot connect (at all) to self-signed SSL sites."
msgstr "Als je wilt kun je striktere certificaat controle activeren. Dit betekent dat je (totaal) niet kunt connecteren met sites die zelf-ondertekende SSL certificaten gebruiken."
-#: src/Module/Admin/Site.php:541
+#: src/Module/Admin/Site.php:536
msgid "Proxy user"
msgstr "Proxy-gebruiker"
-#: src/Module/Admin/Site.php:541
+#: src/Module/Admin/Site.php:536
msgid "User name for the proxy server."
msgstr ""
-#: src/Module/Admin/Site.php:542
+#: src/Module/Admin/Site.php:537
msgid "Proxy URL"
msgstr "Proxy-URL"
-#: src/Module/Admin/Site.php:542
+#: src/Module/Admin/Site.php:537
msgid ""
"If you want to use a proxy server that Friendica should use to connect to "
"the network, put the URL of the proxy here."
msgstr ""
-#: src/Module/Admin/Site.php:543
+#: src/Module/Admin/Site.php:538
msgid "Network timeout"
msgstr "Netwerk timeout"
-#: src/Module/Admin/Site.php:543
+#: src/Module/Admin/Site.php:538
msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
msgstr "Waarde is in seconden. Zet op 0 voor onbeperkt (niet aanbevolen)."
-#: src/Module/Admin/Site.php:544
+#: src/Module/Admin/Site.php:539
msgid "Maximum Load Average"
msgstr "Maximum gemiddelde belasting"
-#: src/Module/Admin/Site.php:544
+#: src/Module/Admin/Site.php:539
#, php-format
msgid ""
"Maximum system load before delivery and poll processes are deferred - "
"default %d."
msgstr ""
-#: src/Module/Admin/Site.php:545
+#: src/Module/Admin/Site.php:540
msgid "Minimal Memory"
msgstr "Minimaal Geheugen"
-#: src/Module/Admin/Site.php:545
+#: src/Module/Admin/Site.php:540
msgid ""
"Minimal free memory in MB for the worker. Needs access to /proc/meminfo - "
"default 0 (deactivated)."
msgstr "Minimum vrij geheugen in MB voor de worker. Toegang nodig tot /proc/meminfo - standaard waarde 0 (gedeactiveerd)."
-#: src/Module/Admin/Site.php:546
+#: src/Module/Admin/Site.php:541
msgid "Periodically optimize tables"
msgstr ""
-#: src/Module/Admin/Site.php:546
+#: src/Module/Admin/Site.php:541
msgid "Periodically optimize tables like the cache and the workerqueue"
msgstr ""
-#: src/Module/Admin/Site.php:548
+#: src/Module/Admin/Site.php:543
msgid "Discover followers/followings from contacts"
msgstr ""
-#: src/Module/Admin/Site.php:548
+#: src/Module/Admin/Site.php:543
msgid ""
"If enabled, contacts are checked for their followers and following contacts."
msgstr ""
-#: src/Module/Admin/Site.php:549
+#: src/Module/Admin/Site.php:544
msgid "None - deactivated"
msgstr ""
-#: src/Module/Admin/Site.php:550
+#: src/Module/Admin/Site.php:545
msgid ""
"Local contacts - contacts of our local contacts are discovered for their "
"followers/followings."
msgstr ""
-#: src/Module/Admin/Site.php:551
+#: src/Module/Admin/Site.php:546
msgid ""
"Interactors - contacts of our local contacts and contacts who interacted on "
"locally visible postings are discovered for their followers/followings."
msgstr ""
-#: src/Module/Admin/Site.php:553
+#: src/Module/Admin/Site.php:548
msgid "Only update contacts/servers with local data"
msgstr ""
-#: src/Module/Admin/Site.php:553
+#: src/Module/Admin/Site.php:548
msgid ""
"If enabled, the system will only look for changes in contacts and servers "
"that engaged on this system by either being in a contact list of a user or "
"when posts or comments exists from the contact on this system."
msgstr ""
-#: src/Module/Admin/Site.php:554
+#: src/Module/Admin/Site.php:549
msgid "Synchronize the contacts with the directory server"
msgstr ""
-#: src/Module/Admin/Site.php:554
+#: src/Module/Admin/Site.php:549
msgid ""
"if enabled, the system will check periodically for new contacts on the "
"defined directory server."
msgstr ""
-#: src/Module/Admin/Site.php:556
+#: src/Module/Admin/Site.php:551
msgid "Discover contacts from other servers"
msgstr "Ontdek contacten van andere servers"
-#: src/Module/Admin/Site.php:556
+#: src/Module/Admin/Site.php:551
msgid ""
"Periodically query other servers for contacts and servers that they know of."
" The system queries Friendica, Mastodon and Hubzilla servers. Keep it "
"deactivated on small machines to decrease the database size and load."
msgstr ""
-#: src/Module/Admin/Site.php:557
+#: src/Module/Admin/Site.php:552
msgid "Days between requery"
msgstr "Dagen tussen herbevraging"
-#: src/Module/Admin/Site.php:557
+#: src/Module/Admin/Site.php:552
msgid ""
"Number of days after which a server is requeried for their contacts and "
"servers it knows of. This is only used when the discovery is activated."
msgstr ""
-#: src/Module/Admin/Site.php:558
+#: src/Module/Admin/Site.php:553
msgid "Search the local directory"
msgstr "Doorzoek de lokale gids"
-#: src/Module/Admin/Site.php:558
+#: src/Module/Admin/Site.php:553
msgid ""
"Search the local directory instead of the global directory. When searching "
"locally, every search will be executed on the global directory in the "
"background. This improves the search results when the search is repeated."
msgstr "Doorzoek de lokale gids in plaats van de globale gids. Bij lokale doorzoeking wordt elke opzoeking in de globale gids op de achtergrond uitgevoerd. Dit verbetert de zoekresultaten wanneer de zoekopdracht herhaald wordt."
-#: src/Module/Admin/Site.php:560
+#: src/Module/Admin/Site.php:555
msgid "Publish server information"
msgstr "Publiceer server informatie"
-#: src/Module/Admin/Site.php:560
+#: src/Module/Admin/Site.php:555
msgid ""
"If enabled, general server and usage data will be published. The data "
"contains the name and version of the server, number of users with public "
@@ -5249,50 +5256,50 @@ msgid ""
" href=\"http://the-federation.info/\">the-federation.info for details."
msgstr ""
-#: src/Module/Admin/Site.php:562
+#: src/Module/Admin/Site.php:557
msgid "Check upstream version"
msgstr "Controleer upstream versie"
-#: src/Module/Admin/Site.php:562
+#: src/Module/Admin/Site.php:557
msgid ""
"Enables checking for new Friendica versions at github. If there is a new "
"version, you will be informed in the admin panel overview."
msgstr "Activeer het controleren op nieuwe versies van Friendica bij github. Als er een nieuwe versie is, dan word je geïnformeerd in the administratie paneel."
-#: src/Module/Admin/Site.php:563
+#: src/Module/Admin/Site.php:558
msgid "Suppress Tags"
msgstr "Onderdruk Tags"
-#: src/Module/Admin/Site.php:563
+#: src/Module/Admin/Site.php:558
msgid "Suppress showing a list of hashtags at the end of the posting."
msgstr "Onderdruk het tonen van een lijst van hastags op het einde van het bericht."
-#: src/Module/Admin/Site.php:564
+#: src/Module/Admin/Site.php:559
msgid "Clean database"
msgstr "Database opruimen"
-#: src/Module/Admin/Site.php:564
+#: src/Module/Admin/Site.php:559
msgid ""
"Remove old remote items, orphaned database records and old content from some"
" other helper tables."
msgstr "Verwijder oude remote items, database weesrecords en oude content van andere helper tabellen."
-#: src/Module/Admin/Site.php:565
+#: src/Module/Admin/Site.php:560
msgid "Lifespan of remote items"
msgstr "Levensduur van remote items"
-#: src/Module/Admin/Site.php:565
+#: src/Module/Admin/Site.php:560
msgid ""
"When the database cleanup is enabled, this defines the days after which "
"remote items will be deleted. Own items, and marked or filed items are "
"always kept. 0 disables this behaviour."
msgstr "Als de database opruiming is geactiveerd, dan definieert dit na hoeveel dagen remote items verwijderd zullen worden. Eigen items, en gemarkeerde of opgeslagen items worden altijd behouden. 0 deactiveert dit gedrag."
-#: src/Module/Admin/Site.php:566
+#: src/Module/Admin/Site.php:561
msgid "Lifespan of unclaimed items"
msgstr "Levensduur van niet geclaimde items"
-#: src/Module/Admin/Site.php:566
+#: src/Module/Admin/Site.php:561
msgid ""
"When the database cleanup is enabled, this defines the days after which "
"unclaimed remote items (mostly content from the relay) will be deleted. "
@@ -5300,175 +5307,184 @@ msgid ""
"items if set to 0."
msgstr "Als de database opruiming geactiveerd is, dan definieert dit na hoeveel dagen ongeclaimde remote items (meestal content van een relais) zal verwijderd worden. Standaard waarde is 90 dagen. Als de waarde 0 is, dan is de waarde gelijk aan de algemene levensduur van remote items."
-#: src/Module/Admin/Site.php:567
+#: src/Module/Admin/Site.php:562
msgid "Lifespan of raw conversation data"
msgstr "Levenstijd van ruwe gespreksdata"
-#: src/Module/Admin/Site.php:567
+#: src/Module/Admin/Site.php:562
msgid ""
-"The conversation data is used for ActivityPub and OStatus, as well as for "
-"debug purposes. It should be safe to remove it after 14 days, default is 90 "
-"days."
-msgstr "De gespreksdata word gebruikt voor ActivityPub, OStatus en voor debugging doeleinden. Het is veilig om dit na 14 dagen te verwijderen. Standaard staat dit op 90 dagen."
+"The conversation data is used for ActivityPub, as well as for debug "
+"purposes. It should be safe to remove it after 14 days, default is 90 days."
+msgstr ""
-#: src/Module/Admin/Site.php:568
+#: src/Module/Admin/Site.php:563
msgid "Maximum numbers of comments per post"
msgstr "Maximum aantal reacties per bericht"
-#: src/Module/Admin/Site.php:568
+#: src/Module/Admin/Site.php:563
msgid "How much comments should be shown for each post? Default value is 100."
msgstr "Hoeveel reacties moeten getoond worden per bericht? Standaard waarde is 100."
-#: src/Module/Admin/Site.php:569
+#: src/Module/Admin/Site.php:564
msgid "Maximum numbers of comments per post on the display page"
msgstr ""
-#: src/Module/Admin/Site.php:569
+#: src/Module/Admin/Site.php:564
msgid ""
"How many comments should be shown on the single view for each post? Default "
"value is 1000."
msgstr ""
-#: src/Module/Admin/Site.php:570
+#: src/Module/Admin/Site.php:565
msgid "Items per page"
msgstr ""
-#: src/Module/Admin/Site.php:570
+#: src/Module/Admin/Site.php:565
msgid ""
"Number of items per page in stream pages (network, community, "
"profile/contact statuses, search)."
msgstr ""
-#: src/Module/Admin/Site.php:571
+#: src/Module/Admin/Site.php:566
msgid "Items per page for mobile devices"
msgstr ""
-#: src/Module/Admin/Site.php:571
+#: src/Module/Admin/Site.php:566
msgid ""
"Number of items per page in stream pages (network, community, "
"profile/contact statuses, search) for mobile devices."
msgstr ""
-#: src/Module/Admin/Site.php:572
+#: src/Module/Admin/Site.php:567
msgid "Temp path"
msgstr "Tijdelijk pad"
-#: src/Module/Admin/Site.php:572
+#: src/Module/Admin/Site.php:567
msgid ""
"If you have a restricted system where the webserver can't access the system "
"temp path, enter another path here."
msgstr "Als je een systeem met restricties hebt waarbij de webserver geen toegang heeft tot het systeem pad, geef hier dan een ander pad in. "
-#: src/Module/Admin/Site.php:573
+#: src/Module/Admin/Site.php:568
msgid "Only search in tags"
msgstr "Zoek alleen in tags"
-#: src/Module/Admin/Site.php:573
+#: src/Module/Admin/Site.php:568
msgid "On large systems the text search can slow down the system extremely."
msgstr "Het opzoeken van tekst kan grote systemen extreem vertragen."
-#: src/Module/Admin/Site.php:574
+#: src/Module/Admin/Site.php:569
+msgid "Limited search scope"
+msgstr ""
+
+#: src/Module/Admin/Site.php:569
+msgid ""
+"If enabled, searches will only be performed in the data used for the "
+"channels and not in all posts."
+msgstr ""
+
+#: src/Module/Admin/Site.php:570
msgid "Maximum age of items in the search table"
msgstr ""
-#: src/Module/Admin/Site.php:574
+#: src/Module/Admin/Site.php:570
msgid ""
"Maximum age of items in the search table in days. Lower values will increase"
" the performance and reduce disk usage. 0 means no age restriction."
msgstr ""
-#: src/Module/Admin/Site.php:575
+#: src/Module/Admin/Site.php:571
msgid "Generate counts per contact circle when calculating network count"
msgstr ""
-#: src/Module/Admin/Site.php:575
+#: src/Module/Admin/Site.php:571
msgid ""
"On systems with users that heavily use contact circles the query can be very"
" expensive."
msgstr ""
-#: src/Module/Admin/Site.php:576
+#: src/Module/Admin/Site.php:572
msgid "Process \"view\" activities"
msgstr ""
-#: src/Module/Admin/Site.php:576
+#: src/Module/Admin/Site.php:572
msgid ""
"\"view\" activities are mostly geberated by Peertube systems. Per default "
"they are not processed for performance reasons. Only activate this option on"
" performant system."
msgstr ""
-#: src/Module/Admin/Site.php:577
+#: src/Module/Admin/Site.php:573
msgid "Days, after which a contact is archived"
msgstr ""
-#: src/Module/Admin/Site.php:577
+#: src/Module/Admin/Site.php:573
msgid ""
"Number of days that we try to deliver content or to update the contact data "
"before we archive a contact."
msgstr ""
-#: src/Module/Admin/Site.php:579
+#: src/Module/Admin/Site.php:575
msgid "Maximum number of parallel workers"
msgstr "Maximum aantal parallelle workers"
-#: src/Module/Admin/Site.php:579
+#: src/Module/Admin/Site.php:575
#, php-format
msgid ""
"On shared hosters set this to %d. On larger systems, values of %d are great."
" Default value is %d."
msgstr "Op gedeelde hosts zet dit op %d. Op grotere systemen, waarden als %d zijn goed. standaard waarde is %d"
-#: src/Module/Admin/Site.php:580
+#: src/Module/Admin/Site.php:576
msgid "Maximum load for workers"
msgstr ""
-#: src/Module/Admin/Site.php:580
+#: src/Module/Admin/Site.php:576
msgid "Maximum load that causes a cooldown before each worker function call."
msgstr ""
-#: src/Module/Admin/Site.php:581
+#: src/Module/Admin/Site.php:577
msgid "Enable fastlane"
msgstr "Activeer fastlane"
-#: src/Module/Admin/Site.php:581
+#: src/Module/Admin/Site.php:577
msgid ""
"When enabed, the fastlane mechanism starts an additional worker if processes"
" with higher priority are blocked by processes of lower priority."
msgstr "Als deze parameter geactiveerd is, dan start het fastlane mechanisme een bijkomende worker als processen met hogere prioriteit geblokkeerd worden door processen met een lagere prioriteit."
-#: src/Module/Admin/Site.php:582
+#: src/Module/Admin/Site.php:578
msgid "Decoupled receiver"
msgstr ""
-#: src/Module/Admin/Site.php:582
+#: src/Module/Admin/Site.php:578
msgid ""
"Decouple incoming ActivityPub posts by processing them in the background via"
" a worker process. Only enable this on fast systems."
msgstr ""
-#: src/Module/Admin/Site.php:583
+#: src/Module/Admin/Site.php:579
msgid "Cron interval"
msgstr ""
-#: src/Module/Admin/Site.php:583
+#: src/Module/Admin/Site.php:579
msgid "Minimal period in minutes between two calls of the \"Cron\" worker job."
msgstr ""
-#: src/Module/Admin/Site.php:584
+#: src/Module/Admin/Site.php:580
msgid "Worker defer limit"
msgstr ""
-#: src/Module/Admin/Site.php:584
+#: src/Module/Admin/Site.php:580
msgid ""
"Per default the systems tries delivering for 15 times before dropping it."
msgstr ""
-#: src/Module/Admin/Site.php:585
+#: src/Module/Admin/Site.php:581
msgid "Worker fetch limit"
msgstr ""
-#: src/Module/Admin/Site.php:585
+#: src/Module/Admin/Site.php:581
msgid ""
"Number of worker tasks that are fetched in a single query. Higher values "
"should increase the performance, too high values will mostly likely decrease"
@@ -5476,214 +5492,214 @@ msgid ""
"system."
msgstr ""
-#: src/Module/Admin/Site.php:587
+#: src/Module/Admin/Site.php:583
msgid "Direct relay transfer"
msgstr "Directe relais transfer"
-#: src/Module/Admin/Site.php:587
+#: src/Module/Admin/Site.php:583
msgid ""
"Enables the direct transfer to other servers without using the relay servers"
msgstr "Activeert directe relais transfer naar andere servers zonder gebruik van relais servers"
-#: src/Module/Admin/Site.php:588
+#: src/Module/Admin/Site.php:584
msgid "Relay scope"
msgstr "Scope van de relais"
-#: src/Module/Admin/Site.php:588
+#: src/Module/Admin/Site.php:584
msgid ""
"Can be \"all\" or \"tags\". \"all\" means that every public post should be "
"received. \"tags\" means that only posts with selected tags should be "
"received."
msgstr ""
-#: src/Module/Admin/Site.php:588 src/Module/Contact/Profile.php:314
-#: src/Module/Settings/TwoFactor/Index.php:146
+#: src/Module/Admin/Site.php:584 src/Module/Contact/Profile.php:314
+#: src/Module/Settings/TwoFactor/Index.php:132
msgid "Disabled"
msgstr "Uitgeschakeld"
-#: src/Module/Admin/Site.php:588
+#: src/Module/Admin/Site.php:584
msgid "all"
msgstr "alle"
-#: src/Module/Admin/Site.php:588
+#: src/Module/Admin/Site.php:584
msgid "tags"
msgstr "tags"
-#: src/Module/Admin/Site.php:589
+#: src/Module/Admin/Site.php:585
msgid "Server tags"
msgstr "Server tags"
-#: src/Module/Admin/Site.php:589
+#: src/Module/Admin/Site.php:585
msgid "Comma separated list of tags for the \"tags\" subscription."
msgstr ""
-#: src/Module/Admin/Site.php:590
+#: src/Module/Admin/Site.php:586
msgid "Deny Server tags"
msgstr ""
-#: src/Module/Admin/Site.php:590
+#: src/Module/Admin/Site.php:586
msgid "Comma separated list of tags that are rejected."
msgstr ""
-#: src/Module/Admin/Site.php:591
+#: src/Module/Admin/Site.php:587
msgid "Maximum amount of tags"
msgstr ""
-#: src/Module/Admin/Site.php:591
+#: src/Module/Admin/Site.php:587
msgid ""
"Maximum amount of tags in a post before it is rejected as spam. The post has"
" to contain at least one link. Posts from subscribed accounts will not be "
"rejected."
msgstr ""
-#: src/Module/Admin/Site.php:592
+#: src/Module/Admin/Site.php:588
msgid "Allow user tags"
msgstr "Sta gebruiker tags toe."
-#: src/Module/Admin/Site.php:592
+#: src/Module/Admin/Site.php:588
msgid ""
"If enabled, the tags from the saved searches will used for the \"tags\" "
"subscription in addition to the \"relay_server_tags\"."
msgstr ""
-#: src/Module/Admin/Site.php:593
+#: src/Module/Admin/Site.php:589
msgid "Deny undetected languages"
msgstr ""
-#: src/Module/Admin/Site.php:593
+#: src/Module/Admin/Site.php:589
msgid "If enabled, posts with undetected languages will be rejected."
msgstr ""
-#: src/Module/Admin/Site.php:594
+#: src/Module/Admin/Site.php:590
msgid "Language Quality"
msgstr ""
-#: src/Module/Admin/Site.php:594
+#: src/Module/Admin/Site.php:590
msgid "The minimum language quality that is required to accept the post."
msgstr ""
-#: src/Module/Admin/Site.php:595
+#: src/Module/Admin/Site.php:591
msgid "Number of languages for the language detection"
msgstr ""
-#: src/Module/Admin/Site.php:595
+#: src/Module/Admin/Site.php:591
msgid ""
"The system detects a list of languages per post. Only if the desired "
"languages are in the list, the message will be accepted. The higher the "
"number, the more posts will be falsely detected."
msgstr ""
-#: src/Module/Admin/Site.php:597
+#: src/Module/Admin/Site.php:593
msgid "Maximum age of channel"
msgstr ""
-#: src/Module/Admin/Site.php:597
+#: src/Module/Admin/Site.php:593
msgid ""
"This defines the maximum age in hours of items that should be displayed in "
"channels. This affects the channel performance."
msgstr ""
-#: src/Module/Admin/Site.php:598
+#: src/Module/Admin/Site.php:594
msgid "Maximum number of channel posts"
msgstr ""
-#: src/Module/Admin/Site.php:598
+#: src/Module/Admin/Site.php:594
msgid ""
"For performance reasons, the channels use a dedicated table to store "
"content. The higher the value the slower the channels."
msgstr ""
-#: src/Module/Admin/Site.php:599
+#: src/Module/Admin/Site.php:595
msgid "Interaction score days"
msgstr ""
-#: src/Module/Admin/Site.php:599
+#: src/Module/Admin/Site.php:595
msgid "Number of days that are used to calculate the interaction score."
msgstr ""
-#: src/Module/Admin/Site.php:600
+#: src/Module/Admin/Site.php:596
msgid "Maximum number of posts per author"
msgstr ""
-#: src/Module/Admin/Site.php:600
+#: src/Module/Admin/Site.php:596
msgid ""
"Maximum number of posts per page by author if the contact frequency is set "
"to \"Display only few posts\". If there are more posts, then the post with "
"the most interactions will be displayed."
msgstr ""
-#: src/Module/Admin/Site.php:601
+#: src/Module/Admin/Site.php:597
msgid "Sharer interaction days"
msgstr ""
-#: src/Module/Admin/Site.php:601
+#: src/Module/Admin/Site.php:597
msgid ""
"Number of days of the last interaction that are used to define which sharers"
" are used for the \"sharers of sharers\" channel."
msgstr ""
-#: src/Module/Admin/Site.php:604
+#: src/Module/Admin/Site.php:600
msgid "Start Relocation"
msgstr "Start verhuis"
-#: src/Module/Admin/Storage.php:46
+#: src/Module/Admin/Storage.php:32
#, php-format
msgid "Storage backend, %s is invalid."
msgstr ""
-#: src/Module/Admin/Storage.php:73
+#: src/Module/Admin/Storage.php:59
#, php-format
msgid "Storage backend %s error: %s"
msgstr ""
-#: src/Module/Admin/Storage.php:84 src/Module/Admin/Storage.php:87
+#: src/Module/Admin/Storage.php:70 src/Module/Admin/Storage.php:73
msgid "Invalid storage backend setting value."
msgstr ""
-#: src/Module/Admin/Storage.php:139
+#: src/Module/Admin/Storage.php:125
msgid "Current Storage Backend"
msgstr ""
-#: src/Module/Admin/Storage.php:140
+#: src/Module/Admin/Storage.php:126
msgid "Storage Configuration"
msgstr ""
-#: src/Module/Admin/Storage.php:141 src/Module/BaseAdmin.php:91
+#: src/Module/Admin/Storage.php:127 src/Module/BaseAdmin.php:77
msgid "Storage"
msgstr ""
-#: src/Module/Admin/Storage.php:143
+#: src/Module/Admin/Storage.php:129
msgid "Save & Use storage backend"
msgstr ""
-#: src/Module/Admin/Storage.php:144
+#: src/Module/Admin/Storage.php:130
msgid "Use storage backend"
msgstr ""
-#: src/Module/Admin/Storage.php:145
+#: src/Module/Admin/Storage.php:131
msgid "Save & Reload"
msgstr ""
-#: src/Module/Admin/Storage.php:146
+#: src/Module/Admin/Storage.php:132
msgid "This backend doesn't have custom settings"
msgstr ""
-#: src/Module/Admin/Storage.php:148
+#: src/Module/Admin/Storage.php:134
msgid ""
"Changing the current backend is prohibited because it is set by an "
"environment variable"
msgstr ""
-#: src/Module/Admin/Storage.php:150
+#: src/Module/Admin/Storage.php:136
msgid "Database (legacy)"
msgstr ""
-#: src/Module/Admin/Summary.php:55
+#: src/Module/Admin/Summary.php:41
#, php-format
msgid "Template engine (%s) error: %s"
msgstr ""
-#: src/Module/Admin/Summary.php:59
+#: src/Module/Admin/Summary.php:45
#, php-format
msgid ""
"Your DB still runs with MyISAM tables. You should change the engine type to "
@@ -5694,7 +5710,7 @@ msgid ""
" an automatic conversion..htconfig.php
. Ga naar deconfiguratie help pagina voor hulp bij transitie."
-#: src/Module/Admin/Summary.php:118
+#: src/Module/Admin/Summary.php:104
#, php-format
msgid ""
"Friendica's configuration now is stored in config/local.config.php, please "
@@ -5770,7 +5786,7 @@ msgid ""
"page for help with the transition."
msgstr ""
-#: src/Module/Admin/Summary.php:124
+#: src/Module/Admin/Summary.php:110
#, php-format
msgid ""
"%s is not reachable on your system. This is a severe "
@@ -5778,107 +5794,107 @@ msgid ""
"href=\"%s\">the installation page for help."
msgstr "%s is niet bereikbaar. Dit is een belangrijk communicatieprobleem waardoor server-naar-server communicatie niet mogelijk is. Lees de the installatie pagina voor hulp."
-#: src/Module/Admin/Summary.php:148
+#: src/Module/Admin/Summary.php:134
#, php-format
msgid ""
"Friendica's system.basepath was updated from '%s' to '%s'. Please remove the"
" system.basepath from your db to avoid differences."
msgstr ""
-#: src/Module/Admin/Summary.php:156
+#: src/Module/Admin/Summary.php:142
#, php-format
msgid ""
"Friendica's current system.basepath '%s' is wrong and the config file '%s' "
"isn't used."
msgstr ""
-#: src/Module/Admin/Summary.php:164
+#: src/Module/Admin/Summary.php:150
#, php-format
msgid ""
"Friendica's current system.basepath '%s' is not equal to the config file "
"'%s'. Please fix your configuration."
msgstr ""
-#: src/Module/Admin/Summary.php:175
+#: src/Module/Admin/Summary.php:161
msgid "Message queues"
msgstr "Bericht-wachtrijen"
-#: src/Module/Admin/Summary.php:181
+#: src/Module/Admin/Summary.php:167
msgid "Server Settings"
msgstr "Server instellingen."
-#: src/Module/Admin/Summary.php:199
+#: src/Module/Admin/Summary.php:185
msgid "Version"
msgstr "Versie"
-#: src/Module/Admin/Summary.php:203
+#: src/Module/Admin/Summary.php:189
msgid "Active addons"
msgstr "Actieve addons"
-#: src/Module/Admin/Themes/Details.php:57 src/Module/Admin/Themes/Index.php:65
+#: src/Module/Admin/Themes/Details.php:49 src/Module/Admin/Themes/Index.php:57
#, php-format
msgid "Theme %s disabled."
msgstr "Thema %s uitgeschakeld."
-#: src/Module/Admin/Themes/Details.php:59 src/Module/Admin/Themes/Index.php:67
+#: src/Module/Admin/Themes/Details.php:51 src/Module/Admin/Themes/Index.php:59
#, php-format
msgid "Theme %s successfully enabled."
msgstr "Thema %s succesvol ingeschakeld."
-#: src/Module/Admin/Themes/Details.php:61 src/Module/Admin/Themes/Index.php:69
+#: src/Module/Admin/Themes/Details.php:53 src/Module/Admin/Themes/Index.php:61
#, php-format
msgid "Theme %s failed to install."
msgstr "Thema %s installatie mislukt."
-#: src/Module/Admin/Themes/Details.php:83
+#: src/Module/Admin/Themes/Details.php:75
msgid "Screenshot"
msgstr "Schermafdruk"
-#: src/Module/Admin/Themes/Details.php:91
-#: src/Module/Admin/Themes/Index.php:112 src/Module/BaseAdmin.php:93
+#: src/Module/Admin/Themes/Details.php:83
+#: src/Module/Admin/Themes/Index.php:104 src/Module/BaseAdmin.php:79
msgid "Themes"
msgstr "Thema's"
-#: src/Module/Admin/Themes/Embed.php:80
+#: src/Module/Admin/Themes/Embed.php:66
msgid "Unknown theme."
msgstr "Onbekend thema."
-#: src/Module/Admin/Themes/Index.php:51
+#: src/Module/Admin/Themes/Index.php:43
msgid "Themes reloaded"
msgstr ""
-#: src/Module/Admin/Themes/Index.php:114
+#: src/Module/Admin/Themes/Index.php:106
msgid "Reload active themes"
msgstr "Herlaad actieve thema's"
-#: src/Module/Admin/Themes/Index.php:118
+#: src/Module/Admin/Themes/Index.php:110
#, php-format
msgid "No themes found on the system. They should be placed in %1$s"
msgstr "Geen thema's gevonden op het systeem. Ze zouden zich moeten bevinden in %1$s"
-#: src/Module/Admin/Themes/Index.php:119
+#: src/Module/Admin/Themes/Index.php:111
msgid "[Experimental]"
msgstr "[Experimenteel]"
-#: src/Module/Admin/Themes/Index.php:120
+#: src/Module/Admin/Themes/Index.php:112
msgid "[Unsupported]"
msgstr "[Niet ondersteund]"
-#: src/Module/Admin/Tos.php:79
+#: src/Module/Admin/Tos.php:65
msgid "Display Terms of Service"
msgstr "Toon Gebruiksvoorwaarden"
-#: src/Module/Admin/Tos.php:79
+#: src/Module/Admin/Tos.php:65
msgid ""
"Enable the Terms of Service page. If this is enabled a link to the terms "
"will be added to the registration form and the general information page."
msgstr "Activeer de Gebruiksvoorwaarden pagina. Als deze geactiveerd is, dan zal er een link naar de voorwaarden toegevoegd worden aan het registratie formulier en de algemene informatie pagina."
-#: src/Module/Admin/Tos.php:80
+#: src/Module/Admin/Tos.php:66
msgid "Display Privacy Statement"
msgstr "Toon Privacy Verklaring"
-#: src/Module/Admin/Tos.php:80
+#: src/Module/Admin/Tos.php:66
#, php-format
msgid ""
"Show some informations regarding the needed information to operate the node "
@@ -5886,167 +5902,167 @@ msgid ""
"noreferrer\">EU-GDPR."
msgstr ""
-#: src/Module/Admin/Tos.php:81
+#: src/Module/Admin/Tos.php:67
msgid "Privacy Statement Preview"
msgstr "Privacy Verklaring Voorbeeldweergave"
-#: src/Module/Admin/Tos.php:83
+#: src/Module/Admin/Tos.php:69
msgid "The Terms of Service"
msgstr "De Gebruiksvoorwaarden"
-#: src/Module/Admin/Tos.php:83
+#: src/Module/Admin/Tos.php:69
msgid ""
"Enter the Terms of Service for your node here. You can use BBCode. Headers "
"of sections should be [h2] and below."
msgstr "Geef hier de Gebruiksvoorwaarden van je node op. Je kan BBCode gebruiken. Sectie headers moeten [h2] zijn of lager."
-#: src/Module/Admin/Tos.php:84
+#: src/Module/Admin/Tos.php:70
msgid "The rules"
msgstr ""
-#: src/Module/Admin/Tos.php:84
+#: src/Module/Admin/Tos.php:70
msgid "Enter your system rules here. Each line represents one rule."
msgstr ""
-#: src/Module/Api/ApiResponse.php:293
+#: src/Module/Api/ApiResponse.php:279
#, php-format
msgid "API endpoint %s %s is not implemented but might be in the future."
msgstr ""
-#: src/Module/Api/Mastodon/Apps.php:73
+#: src/Module/Api/Mastodon/Apps.php:59
msgid "Missing parameters"
msgstr ""
-#: src/Module/Api/Mastodon/Statuses/Bookmark.php:50
+#: src/Module/Api/Mastodon/Statuses/Bookmark.php:36
msgid "Only starting posts can be bookmarked"
msgstr ""
-#: src/Module/Api/Mastodon/Statuses/Mute.php:51
+#: src/Module/Api/Mastodon/Statuses/Mute.php:37
msgid "Only starting posts can be muted"
msgstr ""
-#: src/Module/Api/Mastodon/Statuses/Reblog.php:58
+#: src/Module/Api/Mastodon/Statuses/Reblog.php:44
#, php-format
msgid "Posts from %s can't be shared"
msgstr ""
-#: src/Module/Api/Mastodon/Statuses/Unbookmark.php:51
+#: src/Module/Api/Mastodon/Statuses/Unbookmark.php:37
msgid "Only starting posts can be unbookmarked"
msgstr ""
-#: src/Module/Api/Mastodon/Statuses/Unmute.php:51
+#: src/Module/Api/Mastodon/Statuses/Unmute.php:37
msgid "Only starting posts can be unmuted"
msgstr ""
-#: src/Module/Api/Mastodon/Statuses/Unreblog.php:64
+#: src/Module/Api/Mastodon/Statuses/Unreblog.php:50
#, php-format
msgid "Posts from %s can't be unshared"
msgstr ""
-#: src/Module/Api/Twitter/ContactEndpoint.php:66
+#: src/Module/Api/Twitter/ContactEndpoint.php:52
msgid "Contact not found"
msgstr "Contact niet gevonden"
-#: src/Module/Apps.php:62
+#: src/Module/Apps.php:48
msgid "No installed applications."
msgstr "Geen toepassingen geïnstalleerd"
-#: src/Module/Apps.php:67
+#: src/Module/Apps.php:53
msgid "Applications"
msgstr "Toepassingen"
-#: src/Module/Attach.php:49 src/Module/Attach.php:61
+#: src/Module/Attach.php:35 src/Module/Attach.php:47
msgid "Item was not found."
msgstr "Item niet gevonden"
-#: src/Module/BaseAdmin.php:54 src/Module/BaseAdmin.php:58
-#: src/Module/BaseModeration.php:77 src/Module/BaseModeration.php:81
+#: src/Module/BaseAdmin.php:40 src/Module/BaseAdmin.php:44
+#: src/Module/BaseModeration.php:63 src/Module/BaseModeration.php:67
msgid "Please login to continue."
msgstr "Log in om verder te gaan."
-#: src/Module/BaseAdmin.php:63
+#: src/Module/BaseAdmin.php:49
msgid "You don't have access to administration pages."
msgstr ""
-#: src/Module/BaseAdmin.php:67
+#: src/Module/BaseAdmin.php:53
msgid ""
"Submanaged account can't access the administration pages. Please log back in"
" as the main account."
msgstr ""
-#: src/Module/BaseAdmin.php:86 src/Module/BaseModeration.php:109
+#: src/Module/BaseAdmin.php:72 src/Module/BaseModeration.php:95
msgid "Overview"
msgstr "Overzicht"
-#: src/Module/BaseAdmin.php:89 src/Module/BaseModeration.php:112
+#: src/Module/BaseAdmin.php:75 src/Module/BaseModeration.php:98
msgid "Configuration"
msgstr "Configuratie"
-#: src/Module/BaseAdmin.php:94 src/Module/BaseSettings.php:110
+#: src/Module/BaseAdmin.php:80 src/Module/BaseSettings.php:96
msgid "Additional features"
msgstr "Extra functies"
-#: src/Module/BaseAdmin.php:97
+#: src/Module/BaseAdmin.php:83
msgid "Database"
msgstr "Database"
-#: src/Module/BaseAdmin.php:98
+#: src/Module/BaseAdmin.php:84
msgid "DB updates"
msgstr "DB aanpassingen"
-#: src/Module/BaseAdmin.php:99
+#: src/Module/BaseAdmin.php:85
msgid "Inspect Deferred Workers"
msgstr "Inspecteer uitgestelde workers"
-#: src/Module/BaseAdmin.php:100
+#: src/Module/BaseAdmin.php:86
msgid "Inspect worker Queue"
msgstr "Taakwachtrij inspecteren"
-#: src/Module/BaseAdmin.php:106 src/Module/BaseModeration.php:120
+#: src/Module/BaseAdmin.php:92 src/Module/BaseModeration.php:106
msgid "Diagnostics"
msgstr "Diagnostiek"
-#: src/Module/BaseAdmin.php:107
+#: src/Module/BaseAdmin.php:93
msgid "PHP Info"
msgstr "PHP Info"
-#: src/Module/BaseAdmin.php:108
+#: src/Module/BaseAdmin.php:94
msgid "probe address"
msgstr "probe adres"
-#: src/Module/BaseAdmin.php:109
+#: src/Module/BaseAdmin.php:95
msgid "check webfinger"
msgstr "check webfinger"
-#: src/Module/BaseAdmin.php:110
+#: src/Module/BaseAdmin.php:96
msgid "Babel"
msgstr ""
-#: src/Module/BaseAdmin.php:111 src/Module/Debug/ActivityPubConversion.php:137
+#: src/Module/BaseAdmin.php:97 src/Module/Debug/ActivityPubConversion.php:129
msgid "ActivityPub Conversion"
msgstr ""
-#: src/Module/BaseAdmin.php:120
+#: src/Module/BaseAdmin.php:106
msgid "Addon Features"
msgstr "Addon Features"
-#: src/Module/BaseAdmin.php:121 src/Module/BaseModeration.php:129
+#: src/Module/BaseAdmin.php:107 src/Module/BaseModeration.php:115
msgid "User registrations waiting for confirmation"
msgstr "Gebruikersregistraties wachten op bevestiging"
-#: src/Module/BaseApi.php:455 src/Module/BaseApi.php:471
-#: src/Module/BaseApi.php:487
+#: src/Module/BaseApi.php:441 src/Module/BaseApi.php:457
+#: src/Module/BaseApi.php:473
msgid "Too Many Requests"
msgstr ""
-#: src/Module/BaseApi.php:456
+#: src/Module/BaseApi.php:442
#, php-format
msgid "Daily posting limit of %d post reached. The post was rejected."
msgid_plural "Daily posting limit of %d posts reached. The post was rejected."
msgstr[0] "De dagelijkse limiet van %d bericht is bereikt. Dit bericht werd niet aanvaard."
msgstr[1] "De dagelijkse limiet van %d berichten is bereikt. Dit bericht werd niet aanvaard."
-#: src/Module/BaseApi.php:472
+#: src/Module/BaseApi.php:458
#, php-format
msgid "Weekly posting limit of %d post reached. The post was rejected."
msgid_plural ""
@@ -6054,7 +6070,7 @@ msgid_plural ""
msgstr[0] "De wekelijkse limiet van %d bericht is bereikt. Dit bericht werd niet aanvaard."
msgstr[1] "De wekelijkse limiet van %d berichten is bereikt. Dit bericht werd niet aanvaard."
-#: src/Module/BaseApi.php:488
+#: src/Module/BaseApi.php:474
#, php-format
msgid "Monthly posting limit of %d post reached. The post was rejected."
msgid_plural ""
@@ -6062,84 +6078,84 @@ msgid_plural ""
msgstr[0] ""
msgstr[1] ""
-#: src/Module/BaseModeration.php:86
+#: src/Module/BaseModeration.php:72
msgid "You don't have access to moderation pages."
msgstr ""
-#: src/Module/BaseModeration.php:90
+#: src/Module/BaseModeration.php:76
msgid ""
"Submanaged account can't access the moderation pages. Please log back in as "
"the main account."
msgstr ""
-#: src/Module/BaseModeration.php:110 src/Module/Moderation/Reports.php:109
+#: src/Module/BaseModeration.php:96 src/Module/Moderation/Reports.php:101
msgid "Reports"
msgstr ""
-#: src/Module/BaseModeration.php:113 src/Module/Moderation/Users/Index.php:148
-#: src/Module/Moderation/Users/Index.php:158
+#: src/Module/BaseModeration.php:99 src/Module/Moderation/Users/Index.php:134
+#: src/Module/Moderation/Users/Index.php:144
msgid "Users"
msgstr "Gebruiker"
-#: src/Module/BaseModeration.php:115
+#: src/Module/BaseModeration.php:101
msgid "Tools"
msgstr "Hulpmiddelen"
-#: src/Module/BaseModeration.php:116
+#: src/Module/BaseModeration.php:102
msgid "Contact Blocklist"
msgstr "Contact Blokkeerlijst"
-#: src/Module/BaseModeration.php:117
+#: src/Module/BaseModeration.php:103
msgid "Server Blocklist"
msgstr "Server Blokkeerlijst"
-#: src/Module/BaseModeration.php:118 src/Module/Moderation/Item/Delete.php:62
+#: src/Module/BaseModeration.php:104 src/Module/Moderation/Item/Delete.php:48
msgid "Delete Item"
msgstr "Verwijder Item"
-#: src/Module/BaseModeration.php:121 src/Module/Moderation/Item/Source.php:76
+#: src/Module/BaseModeration.php:107 src/Module/Moderation/Item/Source.php:68
msgid "Item Source"
msgstr ""
-#: src/Module/BaseProfile.php:52 src/Module/Contact.php:506
+#: src/Module/BaseProfile.php:38 src/Module/Contact.php:488
msgid "Profile Details"
msgstr "Profieldetails"
-#: src/Module/BaseProfile.php:60
+#: src/Module/BaseProfile.php:46
msgid "Conversations started"
msgstr ""
-#: src/Module/BaseProfile.php:111
+#: src/Module/BaseProfile.php:97
msgid "Only You Can See This"
msgstr "Alleen jij kunt dit zien"
-#: src/Module/BaseProfile.php:116 src/Module/Profile/Schedule.php:81
+#: src/Module/BaseProfile.php:102 src/Module/Profile/Schedule.php:67
msgid "Scheduled Posts"
msgstr ""
-#: src/Module/BaseProfile.php:119
+#: src/Module/BaseProfile.php:105
msgid "Posts that are scheduled for publishing"
msgstr ""
-#: src/Module/BaseProfile.php:138 src/Module/BaseProfile.php:141
+#: src/Module/BaseProfile.php:124 src/Module/BaseProfile.php:127
msgid "Tips for New Members"
msgstr "Tips voor nieuwe leden"
-#: src/Module/BaseSearch.php:71
+#: src/Module/BaseSearch.php:57
#, php-format
msgid "People Search - %s"
msgstr "Mensen Zoeken - %s"
-#: src/Module/BaseSearch.php:75
+#: src/Module/BaseSearch.php:61
#, php-format
msgid "Group Search - %s"
msgstr ""
-#: src/Module/BaseSearch.php:121 src/Module/Contact/MatchInterests.php:140
+#: src/Module/BaseSearch.php:107 src/Module/Contact/MatchInterests.php:136
msgid "No matches"
msgstr "Geen resultaten"
-#: src/Module/BaseSearch.php:147
+#: src/Module/BaseSearch.php:133
#, php-format
msgid ""
"%d result was filtered out because your node blocks the domain it is "
@@ -6152,594 +6168,590 @@ msgid_plural ""
msgstr[0] ""
msgstr[1] ""
-#: src/Module/BaseSettings.php:78
+#: src/Module/BaseSettings.php:64
msgid "Account"
msgstr "Account"
-#: src/Module/BaseSettings.php:85 src/Module/Security/TwoFactor/Verify.php:96
-#: src/Module/Settings/TwoFactor/Index.php:138
+#: src/Module/BaseSettings.php:71 src/Module/Security/TwoFactor/Verify.php:82
+#: src/Module/Settings/TwoFactor/Index.php:124
msgid "Two-factor authentication"
msgstr "2-factor authenticatie"
-#: src/Module/BaseSettings.php:118
+#: src/Module/BaseSettings.php:104
msgid "Display"
msgstr "Weergave"
-#: src/Module/BaseSettings.php:132 src/Module/Settings/Connectors.php:204
+#: src/Module/BaseSettings.php:118 src/Module/Settings/Connectors.php:195
msgid "Social Networks"
msgstr "Sociale netwerken"
-#: src/Module/BaseSettings.php:146 src/Module/Settings/Delegation.php:194
+#: src/Module/BaseSettings.php:132 src/Module/Settings/Delegation.php:180
msgid "Manage Accounts"
msgstr "Beheer Gebruikers"
-#: src/Module/BaseSettings.php:153
+#: src/Module/BaseSettings.php:139
msgid "Connected apps"
msgstr "Verbonden applicaties"
-#: src/Module/BaseSettings.php:160
+#: src/Module/BaseSettings.php:146
msgid "Remote servers"
msgstr ""
-#: src/Module/BaseSettings.php:167 src/Module/Settings/UserExport.php:98
+#: src/Module/BaseSettings.php:153 src/Module/Settings/UserExport.php:84
msgid "Export personal data"
msgstr "Persoonlijke gegevens exporteren"
-#: src/Module/BaseSettings.php:174
+#: src/Module/BaseSettings.php:160
msgid "Remove account"
msgstr "Account verwijderen"
-#: src/Module/Bookmarklet.php:54
+#: src/Module/Bookmarklet.php:40
msgid "This page is missing a url parameter."
msgstr "Deze pagina mist een url-parameter."
-#: src/Module/Bookmarklet.php:66
+#: src/Module/Bookmarklet.php:52
msgid "The post was created"
msgstr "Het bericht is aangemaakt"
-#: src/Module/Calendar/Event/API.php:100 src/Module/Calendar/Event/API.php:135
-#: src/Module/Calendar/Event/Form.php:80
+#: src/Module/Calendar/Event/API.php:86 src/Module/Calendar/Event/API.php:121
+#: src/Module/Calendar/Event/Form.php:66
msgid "Invalid Request"
msgstr ""
-#: src/Module/Calendar/Event/API.php:109
+#: src/Module/Calendar/Event/API.php:95
msgid "Event id is missing."
msgstr ""
-#: src/Module/Calendar/Event/API.php:131
+#: src/Module/Calendar/Event/API.php:117
msgid "Failed to remove event"
msgstr "Kon remote event niet verwijderen"
-#: src/Module/Calendar/Event/API.php:187 src/Module/Calendar/Event/API.php:189
+#: src/Module/Calendar/Event/API.php:173 src/Module/Calendar/Event/API.php:175
msgid "Event can not end before it has started."
msgstr "Gebeurtenis kan niet eindigen voor het begin."
-#: src/Module/Calendar/Event/API.php:196 src/Module/Calendar/Event/API.php:198
+#: src/Module/Calendar/Event/API.php:182 src/Module/Calendar/Event/API.php:184
msgid "Event title and start time are required."
msgstr "Titel en begintijd van de gebeurtenis zijn vereist."
-#: src/Module/Calendar/Event/Form.php:208
+#: src/Module/Calendar/Event/Form.php:194
msgid "Starting date and Title are required."
msgstr "Start datum en Titel zijn verplicht."
-#: src/Module/Calendar/Event/Form.php:209
-#: src/Module/Calendar/Event/Form.php:214
+#: src/Module/Calendar/Event/Form.php:195
+#: src/Module/Calendar/Event/Form.php:200
msgid "Event Starts:"
msgstr "Gebeurtenis begint:"
-#: src/Module/Calendar/Event/Form.php:209
-#: src/Module/Calendar/Event/Form.php:237 src/Module/Debug/Probe.php:59
-#: src/Module/Install.php:201 src/Module/Install.php:227
-#: src/Module/Install.php:232 src/Module/Install.php:246
-#: src/Module/Install.php:255 src/Module/Install.php:260
-#: src/Module/Install.php:266 src/Module/Install.php:271
-#: src/Module/Install.php:285 src/Module/Install.php:298
-#: src/Module/Install.php:325
-#: src/Module/Moderation/Blocklist/Server/Add.php:136
-#: src/Module/Moderation/Blocklist/Server/Add.php:138
-#: src/Module/Moderation/Blocklist/Server/Import.php:129
-#: src/Module/Moderation/Blocklist/Server/Index.php:86
-#: src/Module/Moderation/Blocklist/Server/Index.php:87
-#: src/Module/Moderation/Blocklist/Server/Index.php:115
-#: src/Module/Moderation/Blocklist/Server/Index.php:116
-#: src/Module/Moderation/Item/Delete.php:67 src/Module/Register.php:149
-#: src/Module/Security/TwoFactor/Verify.php:101
-#: src/Module/Settings/Channels.php:190 src/Module/Settings/Channels.php:211
-#: src/Module/Settings/TwoFactor/Index.php:161
-#: src/Module/Settings/TwoFactor/Verify.php:158
+#: src/Module/Calendar/Event/Form.php:195
+#: src/Module/Calendar/Event/Form.php:223 src/Module/Debug/Probe.php:45
+#: src/Module/Install.php:187 src/Module/Install.php:213
+#: src/Module/Install.php:218 src/Module/Install.php:232
+#: src/Module/Install.php:241 src/Module/Install.php:246
+#: src/Module/Install.php:252 src/Module/Install.php:257
+#: src/Module/Install.php:271 src/Module/Install.php:284
+#: src/Module/Install.php:311
+#: src/Module/Moderation/Blocklist/Server/Add.php:122
+#: src/Module/Moderation/Blocklist/Server/Add.php:124
+#: src/Module/Moderation/Blocklist/Server/Import.php:113
+#: src/Module/Moderation/Blocklist/Server/Index.php:72
+#: src/Module/Moderation/Blocklist/Server/Index.php:73
+#: src/Module/Moderation/Blocklist/Server/Index.php:101
+#: src/Module/Moderation/Blocklist/Server/Index.php:102
+#: src/Module/Moderation/Item/Delete.php:53 src/Module/Register.php:141
+#: src/Module/Security/TwoFactor/Verify.php:87
+#: src/Module/Settings/Channels.php:176 src/Module/Settings/Channels.php:197
+#: src/Module/Settings/TwoFactor/Index.php:147
+#: src/Module/Settings/TwoFactor/Verify.php:144
msgid "Required"
msgstr "Vereist"
-#: src/Module/Calendar/Event/Form.php:223
-#: src/Module/Calendar/Event/Form.php:247
+#: src/Module/Calendar/Event/Form.php:209
+#: src/Module/Calendar/Event/Form.php:233
msgid "Finish date/time is not known or not relevant"
msgstr "Einddatum/tijd is niet gekend of niet relevant"
-#: src/Module/Calendar/Event/Form.php:225
-#: src/Module/Calendar/Event/Form.php:230
+#: src/Module/Calendar/Event/Form.php:211
+#: src/Module/Calendar/Event/Form.php:216
msgid "Event Finishes:"
msgstr "Gebeurtenis eindigt:"
-#: src/Module/Calendar/Event/Form.php:237
-#: src/Module/Calendar/Event/Form.php:243
+#: src/Module/Calendar/Event/Form.php:223
+#: src/Module/Calendar/Event/Form.php:229
msgid "Title (BBCode not allowed)"
msgstr ""
-#: src/Module/Calendar/Event/Form.php:239
+#: src/Module/Calendar/Event/Form.php:225
msgid "Description (BBCode allowed)"
msgstr ""
-#: src/Module/Calendar/Event/Form.php:241
+#: src/Module/Calendar/Event/Form.php:227
msgid "Location (BBCode not allowed)"
msgstr ""
-#: src/Module/Calendar/Event/Form.php:244
-#: src/Module/Calendar/Event/Form.php:245
+#: src/Module/Calendar/Event/Form.php:230
+#: src/Module/Calendar/Event/Form.php:231
msgid "Share this event"
msgstr "Deel deze gebeurtenis"
-#: src/Module/Calendar/Event/Form.php:251 src/Module/Profile/Profile.php:275
+#: src/Module/Calendar/Event/Form.php:237 src/Module/Profile/Profile.php:263
msgid "Basic"
msgstr "Basis"
-#: src/Module/Calendar/Export.php:94
+#: src/Module/Calendar/Export.php:80
msgid "This calendar format is not supported"
msgstr "Dit kalender formaat is niet ondersteund"
-#: src/Module/Calendar/Export.php:96
+#: src/Module/Calendar/Export.php:82
msgid "No exportable data found"
msgstr "Geen exporteerbare data gevonden"
-#: src/Module/Calendar/Export.php:113
+#: src/Module/Calendar/Export.php:99
msgid "calendar"
msgstr "kalender"
-#: src/Module/Calendar/Show.php:124
+#: src/Module/Calendar/Show.php:110
msgid "Events"
msgstr "Gebeurtenissen"
-#: src/Module/Calendar/Show.php:125
+#: src/Module/Calendar/Show.php:111
msgid "View"
msgstr "Beeld"
-#: src/Module/Calendar/Show.php:126
+#: src/Module/Calendar/Show.php:112
msgid "Create New Event"
msgstr "Maak een nieuwe gebeurtenis"
-#: src/Module/Calendar/Show.php:132 src/Module/Settings/Display.php:297
+#: src/Module/Calendar/Show.php:118 src/Module/Settings/Display.php:283
msgid "list"
msgstr "lijst"
-#: src/Module/Circle.php:57
+#: src/Module/Circle.php:43
msgid "Could not create circle."
msgstr ""
-#: src/Module/Circle.php:68 src/Module/Circle.php:216
-#: src/Module/Circle.php:240
+#: src/Module/Circle.php:54 src/Module/Circle.php:202
+#: src/Module/Circle.php:226
msgid "Circle not found."
msgstr ""
-#: src/Module/Circle.php:74
+#: src/Module/Circle.php:60
msgid "Circle name was not changed."
msgstr ""
-#: src/Module/Circle.php:92
+#: src/Module/Circle.php:78
msgid "Unknown circle."
msgstr ""
-#: src/Module/Circle.php:98 src/Module/Circle.php:107
-#: src/Module/Contact/Advanced.php:70 src/Module/Contact/Advanced.php:109
-#: src/Module/Contact/Contacts.php:71 src/Module/Contact/Conversations.php:86
-#: src/Module/Contact/Conversations.php:91
-#: src/Module/Contact/Conversations.php:96 src/Module/Contact/Media.php:61
-#: src/Module/Contact/Posts.php:78 src/Module/Contact/Posts.php:83
-#: src/Module/Contact/Posts.php:88 src/Module/Contact/Profile.php:159
-#: src/Module/Contact/Profile.php:164 src/Module/Contact/Profile.php:169
-#: src/Module/Contact/Redir.php:95 src/Module/Contact/Redir.php:141
-#: src/Module/FriendSuggest.php:71 src/Module/FriendSuggest.php:109
+#: src/Module/Circle.php:84 src/Module/Circle.php:93
+#: src/Module/Contact/Advanced.php:56 src/Module/Contact/Advanced.php:95
+#: src/Module/Contact/Contacts.php:57 src/Module/Contact/Conversations.php:72
+#: src/Module/Contact/Conversations.php:77
+#: src/Module/Contact/Conversations.php:82 src/Module/Contact/Media.php:47
+#: src/Module/Contact/Posts.php:64 src/Module/Contact/Posts.php:69
+#: src/Module/Contact/Posts.php:74 src/Module/Contact/Profile.php:145
+#: src/Module/Contact/Profile.php:150 src/Module/Contact/Profile.php:169
+#: src/Module/Contact/Redir.php:77 src/Module/Contact/Redir.php:131
+#: src/Module/FriendSuggest.php:57 src/Module/FriendSuggest.php:95
msgid "Contact not found."
msgstr "Contact niet gevonden"
-#: src/Module/Circle.php:102 src/Module/Contact/Contacts.php:66
+#: src/Module/Circle.php:88 src/Module/Contact/Contacts.php:52
msgid "Invalid contact."
msgstr "Ongeldig contact."
-#: src/Module/Circle.php:111 src/Module/Contact/Revoke.php:73
+#: src/Module/Circle.php:97 src/Module/Contact/Revoke.php:56
msgid "Contact is deleted."
msgstr "Contact is verwijderd."
-#: src/Module/Circle.php:117
+#: src/Module/Circle.php:103
msgid "Unable to add the contact to the circle."
msgstr ""
-#: src/Module/Circle.php:120
+#: src/Module/Circle.php:106
msgid "Contact successfully added to circle."
msgstr ""
-#: src/Module/Circle.php:124
+#: src/Module/Circle.php:110
msgid "Unable to remove the contact from the circle."
msgstr ""
-#: src/Module/Circle.php:127
+#: src/Module/Circle.php:113
msgid "Contact successfully removed from circle."
msgstr ""
-#: src/Module/Circle.php:131
+#: src/Module/Circle.php:117
msgid "Bad request."
msgstr "Verkeerde aanvraag."
-#: src/Module/Circle.php:172
+#: src/Module/Circle.php:158
msgid "Save Circle"
msgstr ""
-#: src/Module/Circle.php:173
+#: src/Module/Circle.php:159
msgid "Filter"
msgstr "filter"
-#: src/Module/Circle.php:179
+#: src/Module/Circle.php:165
msgid "Create a circle of contacts/friends."
msgstr ""
-#: src/Module/Circle.php:221
+#: src/Module/Circle.php:207
msgid "Unable to remove circle."
msgstr ""
-#: src/Module/Circle.php:272
+#: src/Module/Circle.php:258
msgid "Delete Circle"
msgstr ""
-#: src/Module/Circle.php:282
+#: src/Module/Circle.php:268
msgid "Edit Circle Name"
msgstr ""
-#: src/Module/Circle.php:292
+#: src/Module/Circle.php:278
msgid "Members"
msgstr "Leden"
-#: src/Module/Circle.php:295
+#: src/Module/Circle.php:281
msgid "Circle is empty"
msgstr ""
-#: src/Module/Circle.php:311
+#: src/Module/Circle.php:297
msgid "Remove contact from circle"
msgstr ""
-#: src/Module/Circle.php:334
+#: src/Module/Circle.php:320
msgid "Click on a contact to add or remove."
msgstr "Klik op een contact om het toe te voegen of te verwijderen."
-#: src/Module/Circle.php:351
+#: src/Module/Circle.php:337
msgid "Add contact to circle"
msgstr ""
-#: src/Module/Contact.php:96
+#: src/Module/Contact.php:88
#, php-format
msgid "%d contact edited."
msgid_plural "%d contacts edited."
msgstr[0] "%d contact bewerkt."
msgstr[1] "%d contacten bewerkt."
-#: src/Module/Contact.php:347
+#: src/Module/Contact.php:328
msgid "Show all contacts"
msgstr "Toon alle contacten"
-#: src/Module/Contact.php:352 src/Module/Contact.php:431
-#: src/Module/Moderation/BaseUsers.php:85
+#: src/Module/Contact.php:333 src/Module/Contact.php:412
+#: src/Module/Moderation/BaseUsers.php:72
msgid "Pending"
msgstr "In behandeling"
-#: src/Module/Contact.php:355
+#: src/Module/Contact.php:336
msgid "Only show pending contacts"
msgstr "Toon alleen contacten in behandeling"
-#: src/Module/Contact.php:360 src/Module/Contact.php:434
-#: src/Module/Moderation/BaseUsers.php:93
+#: src/Module/Contact.php:341 src/Module/Contact.php:415
+#: src/Module/Moderation/BaseUsers.php:80
msgid "Blocked"
msgstr "Geblokkeerd"
-#: src/Module/Contact.php:363
+#: src/Module/Contact.php:344
msgid "Only show blocked contacts"
msgstr "Toon alleen geblokkeerde contacten"
-#: src/Module/Contact.php:368 src/Module/Contact.php:440
-#: src/Module/Settings/Server/Index.php:107 src/Object/Post.php:399
+#: src/Module/Contact.php:349 src/Module/Contact.php:421
+#: src/Module/Settings/Server/Index.php:93 src/Object/Post.php:385
msgid "Ignored"
msgstr "Genegeerd"
-#: src/Module/Contact.php:371
+#: src/Module/Contact.php:352
msgid "Only show ignored contacts"
msgstr "Toon alleen genegeerde contacten"
-#: src/Module/Contact.php:376 src/Module/Contact.php:443
+#: src/Module/Contact.php:357 src/Module/Contact.php:424
msgid "Collapsed"
msgstr ""
-#: src/Module/Contact.php:379
+#: src/Module/Contact.php:360
msgid "Only show collapsed contacts"
msgstr ""
-#: src/Module/Contact.php:384 src/Module/Contact.php:446
+#: src/Module/Contact.php:365 src/Module/Contact.php:427
msgid "Archived"
msgstr "Gearchiveerd"
-#: src/Module/Contact.php:387
+#: src/Module/Contact.php:368
msgid "Only show archived contacts"
msgstr "Toon alleen gearchiveerde contacten"
-#: src/Module/Contact.php:392 src/Module/Contact.php:437
+#: src/Module/Contact.php:373 src/Module/Contact.php:418
msgid "Hidden"
msgstr "Verborgen"
-#: src/Module/Contact.php:395
+#: src/Module/Contact.php:376
msgid "Only show hidden contacts"
msgstr "Toon alleen verborgen contacten"
-#: src/Module/Contact.php:403
+#: src/Module/Contact.php:384
msgid "Organize your contact circles"
msgstr ""
-#: src/Module/Contact.php:458
+#: src/Module/Contact.php:439
msgid "Search your contacts"
msgstr "Doorzoek je contacten"
-#: src/Module/Contact.php:459 src/Module/Search/Index.php:207
+#: src/Module/Contact.php:440 src/Module/Search/Index.php:193
#, php-format
msgid "Results for: %s"
msgstr "Resultaten voor: %s"
-#: src/Module/Contact.php:466
+#: src/Module/Contact.php:448
msgid "Update"
msgstr "Wijzigen"
-#: src/Module/Contact.php:467 src/Module/Contact/Profile.php:518
-#: src/Module/Moderation/Blocklist/Contact.php:117
-#: src/Module/Moderation/Users/Blocked.php:138
-#: src/Module/Moderation/Users/Index.php:154
+#: src/Module/Contact.php:449 src/Module/Contact/Profile.php:518
+#: src/Module/Moderation/Blocklist/Contact.php:103
+#: src/Module/Moderation/Users/Blocked.php:124
+#: src/Module/Moderation/Users/Index.php:140
msgid "Unblock"
msgstr "Blokkering opheffen"
-#: src/Module/Contact.php:468 src/Module/Contact/Profile.php:526
+#: src/Module/Contact.php:450 src/Module/Contact/Profile.php:526
msgid "Unignore"
msgstr "Negeer niet meer"
-#: src/Module/Contact.php:469 src/Module/Contact/Profile.php:534
+#: src/Module/Contact.php:451 src/Module/Contact/Profile.php:534
msgid "Uncollapse"
msgstr ""
-#: src/Module/Contact.php:471
+#: src/Module/Contact.php:453
msgid "Batch Actions"
msgstr "Bulk Acties"
-#: src/Module/Contact.php:514
+#: src/Module/Contact.php:496
msgid "Conversations started by this contact"
msgstr "Gesprekken gestart door dit contact"
-#: src/Module/Contact.php:519
+#: src/Module/Contact.php:501
msgid "Posts and Comments"
msgstr "Berichten en reacties"
-#: src/Module/Contact.php:522
+#: src/Module/Contact.php:504
msgid "Individual Posts and Replies"
msgstr ""
-#: src/Module/Contact.php:530
+#: src/Module/Contact.php:512
msgid "Posts containing media objects"
msgstr ""
-#: src/Module/Contact.php:538
+#: src/Module/Contact.php:520
msgid "View all known contacts"
msgstr ""
-#: src/Module/Contact.php:549
+#: src/Module/Contact.php:531
msgid "Advanced Contact Settings"
msgstr "Geavanceerde instellingen voor contacten"
-#: src/Module/Contact.php:585
+#: src/Module/Contact.php:567
msgid "Mutual Friendship"
msgstr "Wederzijdse vriendschap"
-#: src/Module/Contact.php:589
+#: src/Module/Contact.php:571
msgid "is a fan of yours"
msgstr "Is een fan van jou"
-#: src/Module/Contact.php:593
+#: src/Module/Contact.php:575
msgid "you are a fan of"
msgstr "Jij bent een fan van"
-#: src/Module/Contact.php:611
+#: src/Module/Contact.php:593
msgid "Pending outgoing contact request"
msgstr "In afwachting van uitgaande contactaanvraag"
-#: src/Module/Contact.php:613
+#: src/Module/Contact.php:595
msgid "Pending incoming contact request"
msgstr "In afwachting van inkomende contactaanvraag"
-#: src/Module/Contact.php:626 src/Module/Contact/Profile.php:377
+#: src/Module/Contact.php:608 src/Module/Contact/Profile.php:377
#, php-format
msgid "Visit %s's profile [%s]"
msgstr "Bekijk het profiel van %s [%s]"
-#: src/Module/Contact/Advanced.php:99
+#: src/Module/Contact/Advanced.php:85
msgid "Contact update failed."
msgstr "Aanpassen van contact mislukt."
-#: src/Module/Contact/Advanced.php:130
+#: src/Module/Contact/Advanced.php:116
msgid "Return to contact editor"
msgstr "Ga terug naar contactbewerker"
-#: src/Module/Contact/Advanced.php:134
-#: src/Module/Moderation/Blocklist/Contact.php:122
-#: src/Module/Moderation/Reports.php:110
-#: src/Module/Moderation/Users/Active.php:126
-#: src/Module/Moderation/Users/Blocked.php:126
-#: src/Module/Moderation/Users/Create.php:70
-#: src/Module/Moderation/Users/Deleted.php:83
-#: src/Module/Moderation/Users/Index.php:140
-#: src/Module/Moderation/Users/Index.php:160
-#: src/Module/Moderation/Users/Pending.php:99 src/Module/Settings/OAuth.php:72
+#: src/Module/Contact/Advanced.php:120
+#: src/Module/Moderation/Blocklist/Contact.php:108
+#: src/Module/Moderation/Reports.php:102
+#: src/Module/Moderation/Users/Active.php:112
+#: src/Module/Moderation/Users/Blocked.php:112
+#: src/Module/Moderation/Users/Create.php:56
+#: src/Module/Moderation/Users/Deleted.php:69
+#: src/Module/Moderation/Users/Index.php:126
+#: src/Module/Moderation/Users/Index.php:146
+#: src/Module/Moderation/Users/Pending.php:85 src/Module/Settings/OAuth.php:58
msgid "Name"
msgstr "Naam"
-#: src/Module/Contact/Advanced.php:135
+#: src/Module/Contact/Advanced.php:121
msgid "Account Nickname"
msgstr "Bijnaam account"
-#: src/Module/Contact/Advanced.php:136
+#: src/Module/Contact/Advanced.php:122
msgid "Account URL"
msgstr "URL account"
-#: src/Module/Contact/Advanced.php:137
+#: src/Module/Contact/Advanced.php:123
msgid "Poll/Feed URL"
msgstr "URL poll/feed"
-#: src/Module/Contact/Advanced.php:138
+#: src/Module/Contact/Advanced.php:124
msgid "New photo from this URL"
msgstr "Nieuwe foto van deze URL"
-#: src/Module/Contact/Contacts.php:89
+#: src/Module/Contact/Contacts.php:75
msgid "No known contacts."
msgstr ""
-#: src/Module/Contact/Contacts.php:103 src/Module/Profile/Common.php:128
+#: src/Module/Contact/Contacts.php:89 src/Module/Profile/Common.php:114
msgid "No common contacts."
msgstr ""
-#: src/Module/Contact/Contacts.php:115 src/Module/Profile/Contacts.php:135
+#: src/Module/Contact/Contacts.php:101 src/Module/Profile/Contacts.php:121
#, php-format
msgid "Follower (%s)"
msgid_plural "Followers (%s)"
msgstr[0] "Volger (%s)"
msgstr[1] "Volgers (%s)"
-#: src/Module/Contact/Contacts.php:119 src/Module/Profile/Contacts.php:138
+#: src/Module/Contact/Contacts.php:105 src/Module/Profile/Contacts.php:124
#, php-format
msgid "Following (%s)"
msgid_plural "Following (%s)"
msgstr[0] "Volgend (%s)"
msgstr[1] "Volgend (%s)"
-#: src/Module/Contact/Contacts.php:123 src/Module/Profile/Contacts.php:141
+#: src/Module/Contact/Contacts.php:109 src/Module/Profile/Contacts.php:127
#, php-format
msgid "Mutual friend (%s)"
msgid_plural "Mutual friends (%s)"
msgstr[0] "Gemeenschappelijke vriend (%s)"
msgstr[1] "Gemeenschappelijke vrienden (%s)"
-#: src/Module/Contact/Contacts.php:125 src/Module/Profile/Contacts.php:143
+#: src/Module/Contact/Contacts.php:111 src/Module/Profile/Contacts.php:129
#, php-format
msgid "These contacts both follow and are followed by %s."
msgstr ""
-#: src/Module/Contact/Contacts.php:131 src/Module/Profile/Common.php:116
+#: src/Module/Contact/Contacts.php:117 src/Module/Profile/Common.php:102
#, php-format
msgid "Common contact (%s)"
msgid_plural "Common contacts (%s)"
msgstr[0] ""
msgstr[1] ""
-#: src/Module/Contact/Contacts.php:133 src/Module/Profile/Common.php:118
+#: src/Module/Contact/Contacts.php:119 src/Module/Profile/Common.php:104
#, php-format
msgid ""
"Both %s and yourself have publicly interacted with these "
"contacts (follow, comment or likes on public posts)."
msgstr ""
-#: src/Module/Contact/Contacts.php:139 src/Module/Profile/Contacts.php:149
+#: src/Module/Contact/Contacts.php:125 src/Module/Profile/Contacts.php:135
#, php-format
msgid "Contact (%s)"
msgid_plural "Contacts (%s)"
msgstr[0] "Contact (%s)"
msgstr[1] "Contacten (%s)"
-#: src/Module/Contact/Follow.php:70 src/Module/Contact/Redir.php:63
-#: src/Module/Contact/Redir.php:223 src/Module/Conversation/Community.php:166
-#: src/Module/Debug/ItemBody.php:38 src/Module/Diaspora/Receive.php:57
-#: src/Module/Item/Display.php:96 src/Module/Item/Feed.php:59
-#: src/Module/Item/Follow.php:41 src/Module/Item/Ignore.php:41
-#: src/Module/Item/Language.php:53 src/Module/Item/Pin.php:41
-#: src/Module/Item/Pin.php:56 src/Module/Item/Searchtext.php:53
-#: src/Module/Item/Star.php:42 src/Module/Update/Display.php:37
+#: src/Module/Contact/Follow.php:56 src/Module/Contact/Redir.php:45
+#: src/Module/Contact/Redir.php:206 src/Module/Conversation/Community.php:154
+#: src/Module/Debug/ItemBody.php:24 src/Module/Diaspora/Receive.php:45
+#: src/Module/Item/Display.php:82 src/Module/Item/Feed.php:45
+#: src/Module/Item/Follow.php:27 src/Module/Item/Ignore.php:27
+#: src/Module/Item/Language.php:39 src/Module/Item/Pin.php:27
+#: src/Module/Item/Pin.php:42 src/Module/Item/Searchtext.php:39
+#: src/Module/Item/Star.php:28 src/Module/Update/Display.php:23
msgid "Access denied."
msgstr "Toegang geweigerd"
-#: src/Module/Contact/Follow.php:105 src/Module/Contact/Unfollow.php:125
-#: src/Module/Profile/RemoteFollow.php:133
+#: src/Module/Contact/Follow.php:91 src/Module/Contact/Unfollow.php:111
+#: src/Module/Profile/RemoteFollow.php:119
msgid "Submit Request"
msgstr "Aanvraag indienen"
-#: src/Module/Contact/Follow.php:115
+#: src/Module/Contact/Follow.php:101
msgid "You already added this contact."
msgstr "Je hebt deze kontakt al toegevoegd"
-#: src/Module/Contact/Follow.php:130
+#: src/Module/Contact/Follow.php:116
msgid "The network type couldn't be detected. Contact can't be added."
msgstr "Het type netwerk kon niet gedetecteerd worden. Contact kan niet toegevoegd worden."
-#: src/Module/Contact/Follow.php:138
+#: src/Module/Contact/Follow.php:124
msgid "Diaspora support isn't enabled. Contact can't be added."
msgstr "Diaspora ondersteuning is niet geactiveerd. Contact kan niet toegevoegd worden."
-#: src/Module/Contact/Follow.php:143
-msgid "OStatus support is disabled. Contact can't be added."
-msgstr "OStatus ondersteuning is niet geactiveerd. Contact kan niet toegevoegd woren."
-
-#: src/Module/Contact/Follow.php:168 src/Module/Profile/RemoteFollow.php:132
+#: src/Module/Contact/Follow.php:149 src/Module/Profile/RemoteFollow.php:118
msgid "Please answer the following:"
msgstr "Beantwoord het volgende:"
-#: src/Module/Contact/Follow.php:169 src/Module/Contact/Unfollow.php:123
+#: src/Module/Contact/Follow.php:150 src/Module/Contact/Unfollow.php:109
msgid "Your Identity Address:"
msgstr "Adres van je identiteit:"
-#: src/Module/Contact/Follow.php:170 src/Module/Contact/Profile.php:408
-#: src/Module/Contact/Unfollow.php:129
-#: src/Module/Moderation/Blocklist/Contact.php:131
-#: src/Module/Moderation/Reports.php:117
-#: src/Module/Notifications/Introductions.php:129
-#: src/Module/Notifications/Introductions.php:198
+#: src/Module/Contact/Follow.php:151 src/Module/Contact/Profile.php:408
+#: src/Module/Contact/Unfollow.php:115
+#: src/Module/Moderation/Blocklist/Contact.php:117
+#: src/Module/Moderation/Reports.php:109
+#: src/Module/Notifications/Introductions.php:121
+#: src/Module/Notifications/Introductions.php:190
msgid "Profile URL"
msgstr "Profiel url"
-#: src/Module/Contact/Follow.php:171 src/Module/Contact/Profile.php:420
-#: src/Module/Notifications/Introductions.php:191
-#: src/Module/Profile/Profile.php:234
+#: src/Module/Contact/Follow.php:152 src/Module/Contact/Profile.php:420
+#: src/Module/Notifications/Introductions.php:183
+#: src/Module/Profile/Profile.php:222
msgid "Tags:"
msgstr "Labels:"
-#: src/Module/Contact/Follow.php:182
+#: src/Module/Contact/Follow.php:163
#, php-format
msgid "%s knows you"
msgstr "%s kent je"
-#: src/Module/Contact/Follow.php:183
+#: src/Module/Contact/Follow.php:164
msgid "Add a personal note:"
msgstr "Voeg een persoonlijke opmerking toe:"
-#: src/Module/Contact/Follow.php:192 src/Module/Contact/Unfollow.php:138
+#: src/Module/Contact/Follow.php:173 src/Module/Contact/Unfollow.php:124
msgid "Posts and Replies"
msgstr ""
-#: src/Module/Contact/Follow.php:221
+#: src/Module/Contact/Follow.php:202
msgid "The contact could not be added."
msgstr "Het contact kon niet toegevoegd worden."
-#: src/Module/Contact/MatchInterests.php:95
-#: src/Module/Media/Attachment/Upload.php:77
-#: src/Module/Media/Attachment/Upload.php:82
-#: src/Module/Media/Photo/Upload.php:81 src/Module/Media/Photo/Upload.php:86
-#: src/Module/Media/Photo/Upload.php:135
+#: src/Module/Contact/MatchInterests.php:81
+#: src/Module/Media/Attachment/Upload.php:63
+#: src/Module/Media/Attachment/Upload.php:68
+#: src/Module/Media/Photo/Upload.php:67 src/Module/Media/Photo/Upload.php:72
+#: src/Module/Media/Photo/Upload.php:121
msgid "Invalid request."
msgstr "Ongeldige aanvraag."
-#: src/Module/Contact/MatchInterests.php:102
+#: src/Module/Contact/MatchInterests.php:88
msgid "No keywords to match. Please add keywords to your profile."
msgstr "Geen overeenkomende zoekwoorden. Voeg zoekwoorden toe aan uw profiel."
-#: src/Module/Contact/MatchInterests.php:145
+#: src/Module/Contact/MatchInterests.php:141
msgid "Profile Match"
msgstr "Profielmatch"
-#: src/Module/Contact/Profile.php:145
+#: src/Module/Contact/Profile.php:131
msgid "Failed to update contact record."
msgstr "Ik kon de contactgegevens niet aanpassen."
@@ -6877,7 +6889,7 @@ msgid "Block/Unblock contact"
msgstr "Blokkeer/deblokkeer contact"
#: src/Module/Contact/Profile.php:379
-#: src/Module/Moderation/Report/Create.php:293
+#: src/Module/Moderation/Report/Create.php:279
msgid "Ignore contact"
msgstr "Negeer contact"
@@ -6922,7 +6934,7 @@ msgid "Manage remote servers"
msgstr ""
#: src/Module/Contact/Profile.php:400
-#: src/Module/Notifications/Introductions.php:192
+#: src/Module/Notifications/Introductions.php:184
msgid "Hide this contact from others"
msgstr "Verberg dit contact voor anderen"
@@ -6950,12 +6962,12 @@ msgid ""
msgstr "Door komma's gescheiden lijst van sleutelwoorden die niet in hashtags mogen omgezet worden, wanneer \"Haal informatie en sleutelwoorden op\" is geselecteerd"
#: src/Module/Contact/Profile.php:421
-#: src/Module/Settings/TwoFactor/Index.php:160
+#: src/Module/Settings/TwoFactor/Index.php:146
msgid "Actions"
msgstr "Acties"
#: src/Module/Contact/Profile.php:423
-#: src/Module/Settings/TwoFactor/Index.php:140 view/theme/frio/theme.php:232
+#: src/Module/Settings/TwoFactor/Index.php:126 view/theme/frio/theme.php:220
msgid "Status"
msgstr "Tijdlijn"
@@ -7030,8 +7042,8 @@ msgstr ""
#: src/Module/Contact/Profile.php:441
msgid ""
-"If enabled, posts from this contact will only appear in channels, but not in"
-" the network stream."
+"If enabled, posts from this contact will only appear in channels and network"
+" streams in circles, but not in the general network stream."
msgstr ""
#: src/Module/Contact/Profile.php:509
@@ -7050,7 +7062,7 @@ msgstr "Schakel negeerstatus"
msgid "Toggle Collapsed status"
msgstr ""
-#: src/Module/Contact/Profile.php:543 src/Module/Contact/Revoke.php:106
+#: src/Module/Contact/Profile.php:543 src/Module/Contact/Revoke.php:89
msgid "Revoke Follow"
msgstr ""
@@ -7058,639 +7070,635 @@ msgstr ""
msgid "Revoke the follow from this contact"
msgstr ""
-#: src/Module/Contact/Redir.php:135 src/Module/Contact/Redir.php:187
+#: src/Module/Contact/Redir.php:125
msgid "Bad Request."
msgstr "Verkeerde aanvraag."
-#: src/Module/Contact/Revoke.php:63
-msgid "Unknown contact."
-msgstr ""
-
-#: src/Module/Contact/Revoke.php:77
+#: src/Module/Contact/Revoke.php:60
msgid "Contact is being deleted."
msgstr ""
-#: src/Module/Contact/Revoke.php:91
+#: src/Module/Contact/Revoke.php:74
msgid "Follow was successfully revoked."
msgstr ""
-#: src/Module/Contact/Revoke.php:107
+#: src/Module/Contact/Revoke.php:90
msgid ""
"Do you really want to revoke this contact's follow? This cannot be undone "
"and they will have to manually follow you back again."
msgstr ""
-#: src/Module/Contact/Suggestions.php:62
+#: src/Module/Contact/Suggestions.php:48
msgid ""
"No suggestions available. If this is a new site, please try again in 24 "
"hours."
msgstr "Geen voorstellen beschikbaar. Als dit een nieuwe website is, kun je het over 24 uur nog eens proberen."
-#: src/Module/Contact/Unfollow.php:98 src/Module/Contact/Unfollow.php:167
+#: src/Module/Contact/Unfollow.php:84 src/Module/Contact/Unfollow.php:153
msgid "You aren't following this contact."
msgstr "Je volgt dit contact niet."
-#: src/Module/Contact/Unfollow.php:103
+#: src/Module/Contact/Unfollow.php:89
msgid "Unfollowing is currently not supported by your network."
msgstr "Ontvolgen is momenteel niet gesupporteerd door je netwerk."
-#: src/Module/Contact/Unfollow.php:121
+#: src/Module/Contact/Unfollow.php:107
msgid "Disconnect/Unfollow"
msgstr "Disconnecteer/stop met volgen"
-#: src/Module/Contact/Unfollow.php:175
+#: src/Module/Contact/Unfollow.php:161
msgid "Contact was successfully unfollowed"
msgstr ""
-#: src/Module/Contact/Unfollow.php:178
+#: src/Module/Contact/Unfollow.php:164
msgid "Unable to unfollow this contact, please contact your administrator"
msgstr ""
-#: src/Module/Conversation/Channel.php:139
-#: src/Module/Conversation/Community.php:126 src/Module/Search/Index.php:152
-#: src/Module/Search/Index.php:194
+#: src/Module/Conversation/Channel.php:125
+#: src/Module/Conversation/Community.php:114 src/Module/Search/Index.php:138
+#: src/Module/Search/Index.php:180
msgid "No results."
msgstr "Geen resultaten."
-#: src/Module/Conversation/Channel.php:177
+#: src/Module/Conversation/Channel.php:163
msgid "Channel not available."
msgstr ""
-#: src/Module/Conversation/Community.php:92
+#: src/Module/Conversation/Community.php:80
msgid ""
"This community stream shows all public posts received by this node. They may"
" not reflect the opinions of this node’s users."
msgstr "Deze groepsstroom toont alle publieke berichten die deze node ontvangen heeft. Ze kunnen mogelijks niet de mening van de gebruikers van deze node weerspiegelen."
-#: src/Module/Conversation/Community.php:180
+#: src/Module/Conversation/Community.php:168
msgid "Community option not available."
msgstr "Groepsoptie niet beschikbaar"
-#: src/Module/Conversation/Community.php:196
+#: src/Module/Conversation/Community.php:184
msgid "Not available."
msgstr "Niet beschikbaar"
-#: src/Module/Conversation/Network.php:214
+#: src/Module/Conversation/Network.php:202
msgid "No such circle"
msgstr ""
-#: src/Module/Conversation/Network.php:218
+#: src/Module/Conversation/Network.php:206
#, php-format
msgid "Circle: %s"
msgstr ""
-#: src/Module/Conversation/Network.php:237
+#: src/Module/Conversation/Network.php:226
#, php-format
msgid "Error %d (%s) while fetching the timeline."
msgstr ""
-#: src/Module/Conversation/Network.php:314
+#: src/Module/Conversation/Network.php:304
msgid "Network feed not available."
msgstr ""
-#: src/Module/Conversation/Timeline.php:203
+#: src/Module/Conversation/Timeline.php:190
msgid "Include"
msgstr ""
-#: src/Module/Conversation/Timeline.php:204
+#: src/Module/Conversation/Timeline.php:191
msgid "Hide"
msgstr ""
-#: src/Module/Credits.php:44
+#: src/Module/Credits.php:30
msgid "Credits"
msgstr "Credits"
-#: src/Module/Credits.php:45
+#: src/Module/Credits.php:31
msgid ""
"Friendica is a community project, that would not be possible without the "
"help of many people. Here is a list of those who have contributed to the "
"code or the translation of Friendica. Thank you all!"
msgstr "Friendica is een gemeenschapsproject dat niet mogelijk zou zijn zonder de hulp van vele mensen. Hier is een lijst van alle mensen die aan de code of vertalingen van Friendica hebben meegewerkt. Allen van harte bedankt!"
-#: src/Module/Debug/ActivityPubConversion.php:53
+#: src/Module/Debug/ActivityPubConversion.php:45
msgid "Formatted"
msgstr ""
-#: src/Module/Debug/ActivityPubConversion.php:65
+#: src/Module/Debug/ActivityPubConversion.php:57
msgid "Activity"
msgstr ""
-#: src/Module/Debug/ActivityPubConversion.php:117
+#: src/Module/Debug/ActivityPubConversion.php:109
msgid "Object data"
msgstr ""
-#: src/Module/Debug/ActivityPubConversion.php:124
+#: src/Module/Debug/ActivityPubConversion.php:116
msgid "Result Item"
msgstr ""
-#: src/Module/Debug/ActivityPubConversion.php:129
-#: src/Module/Debug/Babel.php:294 src/Module/Moderation/Item/Source.php:87
-#: src/Module/Security/TwoFactor/Verify.php:98
+#: src/Module/Debug/ActivityPubConversion.php:121
+#: src/Module/Debug/Babel.php:286 src/Module/Moderation/Item/Source.php:79
+#: src/Module/Security/TwoFactor/Verify.php:84
msgid "Error"
msgid_plural "Errors"
msgstr[0] "Fout"
msgstr[1] "Fouten"
-#: src/Module/Debug/ActivityPubConversion.php:138
+#: src/Module/Debug/ActivityPubConversion.php:130
msgid "Source activity"
msgstr ""
-#: src/Module/Debug/Babel.php:52
+#: src/Module/Debug/Babel.php:44
msgid "Source input"
msgstr "Bron input"
-#: src/Module/Debug/Babel.php:58
+#: src/Module/Debug/Babel.php:50
msgid "BBCode::toPlaintext"
msgstr "BBCode::toPlaintext"
-#: src/Module/Debug/Babel.php:64
+#: src/Module/Debug/Babel.php:56
msgid "BBCode::convert (raw HTML)"
msgstr "BBCode::convert (raw HTML)"
-#: src/Module/Debug/Babel.php:69
+#: src/Module/Debug/Babel.php:61
msgid "BBCode::convert (hex)"
msgstr ""
-#: src/Module/Debug/Babel.php:74
+#: src/Module/Debug/Babel.php:66
msgid "BBCode::convert"
msgstr "BBCode::convert"
-#: src/Module/Debug/Babel.php:80
+#: src/Module/Debug/Babel.php:72
msgid "BBCode::convert => HTML::toBBCode"
msgstr "BBCode::convert => HTML::toBBCode"
-#: src/Module/Debug/Babel.php:86
+#: src/Module/Debug/Babel.php:78
msgid "BBCode::toMarkdown"
msgstr "BBCode::toMarkdown"
-#: src/Module/Debug/Babel.php:92
+#: src/Module/Debug/Babel.php:84
msgid "BBCode::toMarkdown => Markdown::convert (raw HTML)"
msgstr ""
-#: src/Module/Debug/Babel.php:96
+#: src/Module/Debug/Babel.php:88
msgid "BBCode::toMarkdown => Markdown::convert"
msgstr "BBCode::toMarkdown => Markdown::convert"
-#: src/Module/Debug/Babel.php:102
+#: src/Module/Debug/Babel.php:94
msgid "BBCode::toMarkdown => Markdown::toBBCode"
msgstr "BBCode::toMarkdown => Markdown::toBBCode"
-#: src/Module/Debug/Babel.php:108
+#: src/Module/Debug/Babel.php:100
msgid "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode"
msgstr "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode"
-#: src/Module/Debug/Babel.php:116
+#: src/Module/Debug/Babel.php:108
msgid "Item Body"
msgstr ""
-#: src/Module/Debug/Babel.php:120
+#: src/Module/Debug/Babel.php:112
msgid "Item Tags"
msgstr ""
-#: src/Module/Debug/Babel.php:126
+#: src/Module/Debug/Babel.php:118
msgid "PageInfo::appendToBody"
msgstr ""
-#: src/Module/Debug/Babel.php:131
+#: src/Module/Debug/Babel.php:123
msgid "PageInfo::appendToBody => BBCode::convert (raw HTML)"
msgstr ""
-#: src/Module/Debug/Babel.php:135
+#: src/Module/Debug/Babel.php:127
msgid "PageInfo::appendToBody => BBCode::convert"
msgstr ""
-#: src/Module/Debug/Babel.php:142
+#: src/Module/Debug/Babel.php:134
msgid "Source input (Diaspora format)"
msgstr "Bron ingave (Diaspora formaat):"
-#: src/Module/Debug/Babel.php:151
+#: src/Module/Debug/Babel.php:143
msgid "Source input (Markdown)"
msgstr ""
-#: src/Module/Debug/Babel.php:157
+#: src/Module/Debug/Babel.php:149
msgid "Markdown::convert (raw HTML)"
msgstr "Markdown::convert (Ruwe HTML)"
-#: src/Module/Debug/Babel.php:162
+#: src/Module/Debug/Babel.php:154
msgid "Markdown::convert"
msgstr "Markdown::convert"
-#: src/Module/Debug/Babel.php:168
+#: src/Module/Debug/Babel.php:160
msgid "Markdown::toBBCode"
msgstr "Markdown::toBBCode"
-#: src/Module/Debug/Babel.php:175
+#: src/Module/Debug/Babel.php:167
msgid "Raw HTML input"
msgstr "Onverwerkte HTML input"
-#: src/Module/Debug/Babel.php:180
+#: src/Module/Debug/Babel.php:172
msgid "HTML Input"
msgstr "HTML Input"
-#: src/Module/Debug/Babel.php:187
+#: src/Module/Debug/Babel.php:179
msgid "HTML Purified (raw)"
msgstr ""
-#: src/Module/Debug/Babel.php:192
+#: src/Module/Debug/Babel.php:184
msgid "HTML Purified (hex)"
msgstr ""
-#: src/Module/Debug/Babel.php:197
+#: src/Module/Debug/Babel.php:189
msgid "HTML Purified"
msgstr ""
-#: src/Module/Debug/Babel.php:203
+#: src/Module/Debug/Babel.php:195
msgid "HTML::toBBCode"
msgstr "HTML::toBBCode"
-#: src/Module/Debug/Babel.php:209
+#: src/Module/Debug/Babel.php:201
msgid "HTML::toBBCode => BBCode::convert"
msgstr "HTML::toBBCode => BBCode::convert"
-#: src/Module/Debug/Babel.php:214
+#: src/Module/Debug/Babel.php:206
msgid "HTML::toBBCode => BBCode::convert (raw HTML)"
msgstr "HTML::toBBCode => BBCode::convert (Ruwe HTML)"
-#: src/Module/Debug/Babel.php:220
+#: src/Module/Debug/Babel.php:212
msgid "HTML::toBBCode => BBCode::toPlaintext"
msgstr ""
-#: src/Module/Debug/Babel.php:226
+#: src/Module/Debug/Babel.php:218
msgid "HTML::toMarkdown"
msgstr "HTML::toMarkdown"
-#: src/Module/Debug/Babel.php:232
+#: src/Module/Debug/Babel.php:224
msgid "HTML::toPlaintext"
msgstr "HTML::toPlaintext"
-#: src/Module/Debug/Babel.php:238
+#: src/Module/Debug/Babel.php:230
msgid "HTML::toPlaintext (compact)"
msgstr ""
-#: src/Module/Debug/Babel.php:256
+#: src/Module/Debug/Babel.php:248
msgid "Decoded post"
msgstr ""
-#: src/Module/Debug/Babel.php:277
+#: src/Module/Debug/Babel.php:269
msgid "Post array before expand entities"
msgstr ""
-#: src/Module/Debug/Babel.php:284
+#: src/Module/Debug/Babel.php:276
msgid "Post converted"
msgstr ""
-#: src/Module/Debug/Babel.php:289
+#: src/Module/Debug/Babel.php:281
msgid "Converted body"
msgstr ""
-#: src/Module/Debug/Babel.php:295
+#: src/Module/Debug/Babel.php:287
msgid "Twitter addon is absent from the addon/ folder."
msgstr ""
-#: src/Module/Debug/Babel.php:305
+#: src/Module/Debug/Babel.php:297
msgid "Babel Diagnostic"
msgstr ""
-#: src/Module/Debug/Babel.php:307
+#: src/Module/Debug/Babel.php:299
msgid "Source text"
msgstr "Brontekst"
-#: src/Module/Debug/Babel.php:308
+#: src/Module/Debug/Babel.php:300
msgid "BBCode"
msgstr "BBCode"
-#: src/Module/Debug/Babel.php:310
+#: src/Module/Debug/Babel.php:302
msgid "Markdown"
msgstr "Markdown"
-#: src/Module/Debug/Babel.php:311
+#: src/Module/Debug/Babel.php:303
msgid "HTML"
msgstr "HTML"
-#: src/Module/Debug/Babel.php:313
+#: src/Module/Debug/Babel.php:305
msgid "Twitter Source / Tweet URL (requires API key)"
msgstr ""
-#: src/Module/Debug/Feed.php:53 src/Module/Filer/SaveTag.php:47
-#: src/Module/Settings/Profile/Index.php:177
+#: src/Module/Debug/Feed.php:39 src/Module/Filer/SaveTag.php:33
+#: src/Module/Settings/Profile/Index.php:166
msgid "You must be logged in to use this module"
msgstr "Je moet ingelogd zijn om deze module te gebruiken"
-#: src/Module/Debug/Feed.php:78
+#: src/Module/Debug/Feed.php:64
msgid "Source URL"
msgstr "Bron URL"
-#: src/Module/Debug/Localtime.php:49
+#: src/Module/Debug/Localtime.php:35
msgid "Time Conversion"
msgstr "Tijdsconversie"
-#: src/Module/Debug/Localtime.php:50
+#: src/Module/Debug/Localtime.php:36
msgid ""
"Friendica provides this service for sharing events with other networks and "
"friends in unknown timezones."
msgstr "Friendica biedt deze dienst aan om gebeurtenissen te delen met andere netwerken en vrienden in onbekende tijdzones."
-#: src/Module/Debug/Localtime.php:51
+#: src/Module/Debug/Localtime.php:37
#, php-format
msgid "UTC time: %s"
msgstr "UTC tijd: %s"
-#: src/Module/Debug/Localtime.php:54
+#: src/Module/Debug/Localtime.php:40
#, php-format
msgid "Current timezone: %s"
msgstr "Huidige Tijdzone: %s"
-#: src/Module/Debug/Localtime.php:58
+#: src/Module/Debug/Localtime.php:44
#, php-format
msgid "Converted localtime: %s"
msgstr "Omgerekende lokale tijd: %s"
-#: src/Module/Debug/Localtime.php:62
+#: src/Module/Debug/Localtime.php:48
msgid "Please select your timezone:"
msgstr "Selecteer je tijdzone:"
-#: src/Module/Debug/Probe.php:38 src/Module/Debug/WebFinger.php:37
+#: src/Module/Debug/Probe.php:24 src/Module/Debug/WebFinger.php:23
msgid "Only logged in users are permitted to perform a probing."
msgstr "Alleen ingelogde gebruikers hebben toelating om aan probing te doen."
-#: src/Module/Debug/Probe.php:52
+#: src/Module/Debug/Probe.php:38
msgid "Probe Diagnostic"
msgstr ""
-#: src/Module/Debug/Probe.php:53
+#: src/Module/Debug/Probe.php:39
msgid "Output"
msgstr ""
-#: src/Module/Debug/Probe.php:56
+#: src/Module/Debug/Probe.php:42
msgid "Lookup address"
msgstr "Opzoekadres"
-#: src/Module/Debug/WebFinger.php:50
+#: src/Module/Debug/WebFinger.php:36
msgid "Webfinger Diagnostic"
msgstr ""
-#: src/Module/Debug/WebFinger.php:52
+#: src/Module/Debug/WebFinger.php:38
msgid "Lookup address:"
msgstr ""
-#: src/Module/Directory.php:74
+#: src/Module/Directory.php:61
msgid "No entries (some entries may be hidden)."
msgstr "Geen gegevens (sommige gegevens kunnen verborgen zijn)."
-#: src/Module/Directory.php:90
+#: src/Module/Directory.php:77
msgid "Find on this site"
msgstr "Op deze website zoeken"
-#: src/Module/Directory.php:92
+#: src/Module/Directory.php:79
msgid "Results for:"
msgstr "Resultaten voor:"
-#: src/Module/Directory.php:94
+#: src/Module/Directory.php:81
msgid "Site Directory"
msgstr "Websitegids"
-#: src/Module/Filer/RemoveTag.php:105
+#: src/Module/Filer/RemoveTag.php:91
msgid "Item was not deleted"
msgstr ""
-#: src/Module/Filer/RemoveTag.php:115
+#: src/Module/Filer/RemoveTag.php:101
msgid "Item was not removed"
msgstr ""
-#: src/Module/Filer/SaveTag.php:73
+#: src/Module/Filer/SaveTag.php:59
msgid "- select -"
msgstr "- Kies -"
-#: src/Module/FriendSuggest.php:82
+#: src/Module/FriendSuggest.php:68
msgid "Suggested contact not found."
msgstr "Voorgesteld contact werd niet gevonden"
-#: src/Module/FriendSuggest.php:100
+#: src/Module/FriendSuggest.php:86
msgid "Friend suggestion sent."
msgstr "Vriendschapsvoorstel verzonden."
-#: src/Module/FriendSuggest.php:137
+#: src/Module/FriendSuggest.php:123
msgid "Suggest Friends"
msgstr "Stel vrienden voor"
-#: src/Module/FriendSuggest.php:140
+#: src/Module/FriendSuggest.php:126
#, php-format
msgid "Suggest a friend for %s"
msgstr "Stel een vriend voor aan %s"
-#: src/Module/Friendica.php:81
+#: src/Module/Friendica.php:67
msgid "Installed addons/apps:"
msgstr "Geïnstalleerde addons/applicaties:"
-#: src/Module/Friendica.php:86
+#: src/Module/Friendica.php:72
msgid "No installed addons/apps"
msgstr "Geen geïnstalleerde addons/applicaties"
-#: src/Module/Friendica.php:91
+#: src/Module/Friendica.php:77
#, php-format
msgid "Read about the Terms of Service of this node."
msgstr "Lees de Gebruiksvoorwaarden van deze node na."
-#: src/Module/Friendica.php:98
+#: src/Module/Friendica.php:84
msgid "On this server the following remote servers are blocked."
msgstr "De volgende remote servers zijn geblokkeerd."
-#: src/Module/Friendica.php:101
-#: src/Module/Moderation/Blocklist/Server/Index.php:87
-#: src/Module/Moderation/Blocklist/Server/Index.php:111
-#: src/Module/Settings/Channels.php:232
+#: src/Module/Friendica.php:87
+#: src/Module/Moderation/Blocklist/Server/Index.php:73
+#: src/Module/Moderation/Blocklist/Server/Index.php:97
+#: src/Module/Settings/Channels.php:218
msgid "Reason for the block"
msgstr "Reden van de blokkering"
-#: src/Module/Friendica.php:103
+#: src/Module/Friendica.php:89
msgid "Download this list in CSV format"
msgstr ""
-#: src/Module/Friendica.php:117
+#: src/Module/Friendica.php:103
#, php-format
msgid ""
"This is Friendica, version %s that is running at the web location %s. The "
"database version is %s, the post update version is %s."
msgstr "Dit is Friendica, versie %s en draait op op locatie %s. De databaseversie is %s, en de bericht update versie is %s."
-#: src/Module/Friendica.php:122
+#: src/Module/Friendica.php:108
msgid ""
"Please visit Friendi.ca to learn more "
"about the Friendica project."
msgstr "Ga naar Friendi.ca om meer te vernemen over het Friendica project."
-#: src/Module/Friendica.php:123
+#: src/Module/Friendica.php:109
msgid "Bug reports and issues: please visit"
msgstr "Bug rapporten en problemen: bezoek"
-#: src/Module/Friendica.php:123
+#: src/Module/Friendica.php:109
msgid "the bugtracker at github"
msgstr "de github bugtracker"
-#: src/Module/Friendica.php:124
+#: src/Module/Friendica.php:110
msgid "Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca"
msgstr "Suggesties, appreciatie, enz. - aub stuur een email naar \"info\" at \"friendi - dot - ca"
-#: src/Module/HCard.php:45
+#: src/Module/HCard.php:31
msgid "No profile"
msgstr "Geen profiel"
-#: src/Module/HTTPException/MethodNotAllowed.php:31
+#: src/Module/HTTPException/MethodNotAllowed.php:17
msgid "Method Not Allowed."
msgstr "Methode niet toegestaan."
-#: src/Module/Help.php:60
+#: src/Module/Help.php:46
msgid "Help:"
msgstr "Help:"
-#: src/Module/Home.php:63
+#: src/Module/Home.php:52
#, php-format
msgid "Welcome to %s"
msgstr "Welkom op %s"
-#: src/Module/Install.php:189
+#: src/Module/Install.php:175
msgid "Friendica Communications Server - Setup"
msgstr "Friendica Communicatie Server - Setup"
-#: src/Module/Install.php:200
+#: src/Module/Install.php:186
msgid "System check"
msgstr "Systeemcontrole"
-#: src/Module/Install.php:202 src/Module/Install.php:247
-#: src/Module/Install.php:326
+#: src/Module/Install.php:188 src/Module/Install.php:233
+#: src/Module/Install.php:312
msgid "Requirement not satisfied"
msgstr ""
-#: src/Module/Install.php:203
+#: src/Module/Install.php:189
msgid "Optional requirement not satisfied"
msgstr ""
-#: src/Module/Install.php:204
+#: src/Module/Install.php:190
msgid "OK"
msgstr ""
-#: src/Module/Install.php:208
+#: src/Module/Install.php:194
msgid "Next"
msgstr "Volgende"
-#: src/Module/Install.php:209
+#: src/Module/Install.php:195
msgid "Check again"
msgstr "Controleer opnieuw"
-#: src/Module/Install.php:222
+#: src/Module/Install.php:208
msgid "Base settings"
msgstr "Basisinstellingen"
-#: src/Module/Install.php:224
+#: src/Module/Install.php:210
msgid "Base path to installation"
msgstr "Basispad voor installatie"
-#: src/Module/Install.php:226
+#: src/Module/Install.php:212
msgid ""
"If the system cannot detect the correct path to your installation, enter the"
" correct path here. This setting should only be set if you are using a "
"restricted system and symbolic links to your webroot."
msgstr "Als het systeem het correcte pad naar je installatie niet kan detecteren, geef hier dan het correcte pad in. Deze instelling zou alleen geconfigureerd moeten worden als je een systeem met restricties hebt en symbolische links naar je webroot."
-#: src/Module/Install.php:229
+#: src/Module/Install.php:215
msgid "The Friendica system URL"
msgstr ""
-#: src/Module/Install.php:231
+#: src/Module/Install.php:217
msgid ""
"Overwrite this field in case the system URL determination isn't right, "
"otherwise leave it as is."
msgstr ""
-#: src/Module/Install.php:242
+#: src/Module/Install.php:228
msgid "Database connection"
msgstr "Verbinding met database"
-#: src/Module/Install.php:243
+#: src/Module/Install.php:229
msgid ""
"In order to install Friendica we need to know how to connect to your "
"database."
msgstr "Om Friendica te kunnen installeren moet ik weten hoe ik jouw database kan bereiken."
-#: src/Module/Install.php:244
+#: src/Module/Install.php:230
msgid ""
"Please contact your hosting provider or site administrator if you have "
"questions about these settings."
msgstr "Neem contact op met jouw hostingprovider of websitebeheerder, wanneer je vragen hebt over deze instellingen. "
-#: src/Module/Install.php:245
+#: src/Module/Install.php:231
msgid ""
"The database you specify below should already exist. If it does not, please "
"create it before continuing."
msgstr "De database die je hier opgeeft zou al moeten bestaan. Maak anders de database aan voordat je verder gaat."
-#: src/Module/Install.php:252
+#: src/Module/Install.php:238
msgid "Database Server Name"
msgstr "Servernaam database"
-#: src/Module/Install.php:257
+#: src/Module/Install.php:243
msgid "Database Login Name"
msgstr "Gebruikersnaam database"
-#: src/Module/Install.php:263
+#: src/Module/Install.php:249
msgid "Database Login Password"
msgstr "Wachtwoord database"
-#: src/Module/Install.php:265
+#: src/Module/Install.php:251
msgid "For security reasons the password must not be empty"
msgstr "Om veiligheidsreden mag het wachtwoord niet leeg zijn"
-#: src/Module/Install.php:268
+#: src/Module/Install.php:254
msgid "Database Name"
msgstr "Naam database"
-#: src/Module/Install.php:272 src/Module/Install.php:300
+#: src/Module/Install.php:258 src/Module/Install.php:286
msgid "Please select a default timezone for your website"
msgstr "Selecteer een standaard tijdzone voor je website"
-#: src/Module/Install.php:287
+#: src/Module/Install.php:273
msgid "Site settings"
msgstr "Website-instellingen"
-#: src/Module/Install.php:295
+#: src/Module/Install.php:281
msgid "Site administrator email address"
msgstr "E-mailadres van de websitebeheerder"
-#: src/Module/Install.php:297
+#: src/Module/Install.php:283
msgid ""
"Your account email address must match this in order to use the web admin "
"panel."
msgstr "Het e-mailadres van je account moet hiermee overeenkomen om het administratiepaneel te kunnen gebruiken."
-#: src/Module/Install.php:304
+#: src/Module/Install.php:290
msgid "System Language:"
msgstr "Systeem taal:"
-#: src/Module/Install.php:306
+#: src/Module/Install.php:292
msgid ""
"Set the default language for your Friendica installation interface and to "
"send emails."
msgstr "Stel de standaard taal in voor je Friendica installatie interface en emails."
-#: src/Module/Install.php:318
+#: src/Module/Install.php:304
msgid "Your Friendica site database has been installed."
msgstr "De database van je Friendica-website is geïnstalleerd."
-#: src/Module/Install.php:328
+#: src/Module/Install.php:314
msgid "Installation finished"
msgstr "Installaitie beëindigd"
-#: src/Module/Install.php:348
+#: src/Module/Install.php:334
msgid "The server domain pattern syntax is case-insensitive shell wildcard, comprising the following special characters:
\n" "This file can be downloaded from the /friendica
path of any "
"Friendica server.
debug.store_source
config key is set in "
"config/local.config.php
for future items to have sources."
msgstr ""
-#: src/Module/Moderation/Item/Source.php:92
+#: src/Module/Moderation/Item/Source.php:84
msgid "Item Guid"
msgstr "Item identificatie"
-#: src/Module/Moderation/Report/Create.php:95
+#: src/Module/Moderation/Report/Create.php:81
msgid "Contact not found or their server is already blocked on this node."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:136
+#: src/Module/Moderation/Report/Create.php:122
msgid "Please login to access this page."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:165
-#: src/Module/Moderation/Report/Create.php:180
-#: src/Module/Moderation/Report/Create.php:208
-#: src/Module/Moderation/Report/Create.php:260
-#: src/Module/Moderation/Report/Create.php:279
+#: src/Module/Moderation/Report/Create.php:151
+#: src/Module/Moderation/Report/Create.php:166
+#: src/Module/Moderation/Report/Create.php:194
+#: src/Module/Moderation/Report/Create.php:246
+#: src/Module/Moderation/Report/Create.php:265
msgid "Create Moderation Report"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:166
+#: src/Module/Moderation/Report/Create.php:152
msgid "Pick Contact"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:167
+#: src/Module/Moderation/Report/Create.php:153
msgid ""
"Please enter below the contact address or profile URL you would like to "
"create a moderation report about."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:171
+#: src/Module/Moderation/Report/Create.php:157
msgid "Contact address/URL"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:181
+#: src/Module/Moderation/Report/Create.php:167
msgid "Pick Category"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:182
+#: src/Module/Moderation/Report/Create.php:168
msgid "Please pick below the category of your report."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:186
-#: src/Module/Moderation/Report/Create.php:311
+#: src/Module/Moderation/Report/Create.php:172
+#: src/Module/Moderation/Report/Create.php:297
msgid "Spam"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:186
+#: src/Module/Moderation/Report/Create.php:172
msgid ""
"This contact is publishing many repeated/overly long posts/replies or "
"advertising their product/websites in otherwise irrelevant conversations."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:187
-#: src/Module/Moderation/Report/Create.php:312
+#: src/Module/Moderation/Report/Create.php:173
+#: src/Module/Moderation/Report/Create.php:298
msgid "Illegal Content"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:187
+#: src/Module/Moderation/Report/Create.php:173
msgid ""
"This contact is publishing content that is considered illegal in this node's"
" hosting juridiction."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:188
-#: src/Module/Moderation/Report/Create.php:313
+#: src/Module/Moderation/Report/Create.php:174
+#: src/Module/Moderation/Report/Create.php:299
msgid "Community Safety"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:188
+#: src/Module/Moderation/Report/Create.php:174
msgid ""
"This contact aggravated you or other people, by being provocative or "
"insensitive, intentionally or not. This includes disclosing people's private"
@@ -8458,12 +8466,12 @@ msgid ""
"replies."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:189
-#: src/Module/Moderation/Report/Create.php:314
+#: src/Module/Moderation/Report/Create.php:175
+#: src/Module/Moderation/Report/Create.php:300
msgid "Unwanted Content/Behavior"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:189
+#: src/Module/Moderation/Report/Create.php:175
msgid ""
"This contact has repeatedly published content irrelevant to the node's theme"
" or is openly criticizing the node's administration/moderation without "
@@ -8471,89 +8479,89 @@ msgid ""
"nitpicking on a sensitive topic."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:190
-#: src/Module/Moderation/Report/Create.php:315
+#: src/Module/Moderation/Report/Create.php:176
+#: src/Module/Moderation/Report/Create.php:301
msgid "Rules Violation"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:190
+#: src/Module/Moderation/Report/Create.php:176
msgid ""
"This contact violated one or more rules of this node. You will be able to "
"pick which one(s) in the next step."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:191
+#: src/Module/Moderation/Report/Create.php:177
msgid ""
"Please elaborate below why you submitted this report. The more details you "
"provide, the better your report can be handled."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:193
+#: src/Module/Moderation/Report/Create.php:179
msgid "Additional Information"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:193
+#: src/Module/Moderation/Report/Create.php:179
msgid ""
"Please provide any additional information relevant to this particular "
"report. You will be able to attach posts by this contact in the next step, "
"but any context is welcome."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:209
+#: src/Module/Moderation/Report/Create.php:195
msgid "Pick Rules"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:210
+#: src/Module/Moderation/Report/Create.php:196
msgid "Please pick below the node rules you believe this contact violated."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:261
+#: src/Module/Moderation/Report/Create.php:247
msgid "Pick Posts"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:262
+#: src/Module/Moderation/Report/Create.php:248
msgid "Please optionally pick posts to attach to your report."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:281
+#: src/Module/Moderation/Report/Create.php:267
msgid "Submit Report"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:282
+#: src/Module/Moderation/Report/Create.php:268
msgid "Further Action"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:283
+#: src/Module/Moderation/Report/Create.php:269
msgid ""
"You can also perform one of the following action on the contact you "
"reported:"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:291
+#: src/Module/Moderation/Report/Create.php:277
msgid "Nothing"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:292
+#: src/Module/Moderation/Report/Create.php:278
msgid "Collapse contact"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:292
+#: src/Module/Moderation/Report/Create.php:278
msgid ""
"Their posts and replies will keep appearing in your Network page but their "
"content will be collapsed by default."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:293
+#: src/Module/Moderation/Report/Create.php:279
msgid ""
"Their posts won't appear in your Network page anymore, but their replies can"
" appear in forum threads. They still can follow you."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:294
+#: src/Module/Moderation/Report/Create.php:280
msgid "Block contact"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:294
+#: src/Module/Moderation/Report/Create.php:280
msgid ""
"Their posts won't appear in your Network page anymore, but their replies can"
" appear in forum threads, with their content collapsed by default. They "
@@ -8561,708 +8569,694 @@ msgid ""
"means."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:297
+#: src/Module/Moderation/Report/Create.php:283
msgid "Forward report"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:297
+#: src/Module/Moderation/Report/Create.php:283
msgid "Would you ike to forward this report to the remote server?"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:330
+#: src/Module/Moderation/Report/Create.php:316
msgid "1. Pick a contact"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:331
+#: src/Module/Moderation/Report/Create.php:317
msgid "2. Pick a category"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:332
+#: src/Module/Moderation/Report/Create.php:318
msgid "2a. Pick rules"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:333
+#: src/Module/Moderation/Report/Create.php:319
msgid "2b. Add comment"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:334
+#: src/Module/Moderation/Report/Create.php:320
msgid "3. Pick posts"
msgstr ""
-#: src/Module/Moderation/Reports.php:105
+#: src/Module/Moderation/Reports.php:97
msgid "List of reports"
msgstr ""
-#: src/Module/Moderation/Reports.php:106
+#: src/Module/Moderation/Reports.php:98
msgid "This page display reports created by our or remote users."
msgstr ""
-#: src/Module/Moderation/Reports.php:107
+#: src/Module/Moderation/Reports.php:99
msgid "No report exists at this node."
msgstr ""
-#: src/Module/Moderation/Reports.php:110
+#: src/Module/Moderation/Reports.php:102
msgid "Category"
msgstr ""
-#: src/Module/Moderation/Reports.php:114
+#: src/Module/Moderation/Reports.php:106
#, php-format
msgid "%s total report"
msgid_plural "%s total reports"
msgstr[0] ""
msgstr[1] ""
-#: src/Module/Moderation/Reports.php:117
+#: src/Module/Moderation/Reports.php:109
msgid "URL of the reported contact."
msgstr ""
-#: src/Module/Moderation/Summary.php:57 src/Module/Settings/Account.php:431
+#: src/Module/Moderation/Summary.php:43 src/Module/Settings/Account.php:422
msgid "Channel Relay"
msgstr ""
-#: src/Module/Moderation/Summary.php:77
+#: src/Module/Moderation/Summary.php:63
msgid "Registered users"
msgstr "Geregistreerde gebruikers"
-#: src/Module/Moderation/Summary.php:79
+#: src/Module/Moderation/Summary.php:65
msgid "Pending registrations"
msgstr "Registraties die in de wacht staan"
-#: src/Module/Moderation/Users/Active.php:43
-#: src/Module/Moderation/Users/Index.php:43
+#: src/Module/Moderation/Users/Active.php:29
+#: src/Module/Moderation/Users/Index.php:29
#, php-format
msgid "%s user blocked"
msgid_plural "%s users blocked"
msgstr[0] ""
msgstr[1] ""
-#: src/Module/Moderation/Users/Active.php:51
-#: src/Module/Moderation/Users/Active.php:85
-#: src/Module/Moderation/Users/Blocked.php:51
-#: src/Module/Moderation/Users/Blocked.php:85
-#: src/Module/Moderation/Users/Index.php:58
-#: src/Module/Moderation/Users/Index.php:92
+#: src/Module/Moderation/Users/Active.php:37
+#: src/Module/Moderation/Users/Active.php:71
+#: src/Module/Moderation/Users/Blocked.php:37
+#: src/Module/Moderation/Users/Blocked.php:71
+#: src/Module/Moderation/Users/Index.php:44
+#: src/Module/Moderation/Users/Index.php:78
msgid "You can't remove yourself"
msgstr "Je kan jezelf niet verwijderen"
-#: src/Module/Moderation/Users/Active.php:55
-#: src/Module/Moderation/Users/Blocked.php:55
-#: src/Module/Moderation/Users/Index.php:62
+#: src/Module/Moderation/Users/Active.php:41
+#: src/Module/Moderation/Users/Blocked.php:41
+#: src/Module/Moderation/Users/Index.php:48
#, php-format
msgid "%s user deleted"
msgid_plural "%s users deleted"
msgstr[0] "%s gebruiker verwijderd"
msgstr[1] "%s gebruikers verwijderd"
-#: src/Module/Moderation/Users/Active.php:83
-#: src/Module/Moderation/Users/Blocked.php:83
-#: src/Module/Moderation/Users/Index.php:90
+#: src/Module/Moderation/Users/Active.php:69
+#: src/Module/Moderation/Users/Blocked.php:69
+#: src/Module/Moderation/Users/Index.php:76
#, php-format
msgid "User \"%s\" deleted"
msgstr ""
-#: src/Module/Moderation/Users/Active.php:93
-#: src/Module/Moderation/Users/Index.php:100
+#: src/Module/Moderation/Users/Active.php:79
+#: src/Module/Moderation/Users/Index.php:86
#, php-format
msgid "User \"%s\" blocked"
msgstr ""
-#: src/Module/Moderation/Users/Active.php:126
-#: src/Module/Moderation/Users/Blocked.php:126
-#: src/Module/Moderation/Users/Deleted.php:83
-#: src/Module/Moderation/Users/Index.php:140
-#: src/Module/Moderation/Users/Index.php:160
+#: src/Module/Moderation/Users/Active.php:112
+#: src/Module/Moderation/Users/Blocked.php:112
+#: src/Module/Moderation/Users/Deleted.php:69
+#: src/Module/Moderation/Users/Index.php:126
+#: src/Module/Moderation/Users/Index.php:146
msgid "Register date"
msgstr "Registratiedatum"
-#: src/Module/Moderation/Users/Active.php:126
-#: src/Module/Moderation/Users/Blocked.php:126
-#: src/Module/Moderation/Users/Deleted.php:83
-#: src/Module/Moderation/Users/Index.php:140
-#: src/Module/Moderation/Users/Index.php:160
+#: src/Module/Moderation/Users/Active.php:112
+#: src/Module/Moderation/Users/Blocked.php:112
+#: src/Module/Moderation/Users/Deleted.php:69
+#: src/Module/Moderation/Users/Index.php:126
+#: src/Module/Moderation/Users/Index.php:146
msgid "Last login"
msgstr "Laatste login"
-#: src/Module/Moderation/Users/Active.php:126
-#: src/Module/Moderation/Users/Blocked.php:126
-#: src/Module/Moderation/Users/Deleted.php:83
-#: src/Module/Moderation/Users/Index.php:140
-#: src/Module/Moderation/Users/Index.php:160
+#: src/Module/Moderation/Users/Active.php:112
+#: src/Module/Moderation/Users/Blocked.php:112
+#: src/Module/Moderation/Users/Deleted.php:69
+#: src/Module/Moderation/Users/Index.php:126
+#: src/Module/Moderation/Users/Index.php:146
msgid "Last public item"
msgstr ""
-#: src/Module/Moderation/Users/Active.php:134
+#: src/Module/Moderation/Users/Active.php:120
msgid "Active Accounts"
msgstr ""
-#: src/Module/Moderation/Users/Active.php:138
-#: src/Module/Moderation/Users/Blocked.php:137
-#: src/Module/Moderation/Users/Index.php:153
+#: src/Module/Moderation/Users/Active.php:124
+#: src/Module/Moderation/Users/Blocked.php:123
+#: src/Module/Moderation/Users/Index.php:139
msgid "User blocked"
msgstr "Gebruiker geblokeerd"
-#: src/Module/Moderation/Users/Active.php:139
-#: src/Module/Moderation/Users/Blocked.php:139
-#: src/Module/Moderation/Users/Index.php:155
+#: src/Module/Moderation/Users/Active.php:125
+#: src/Module/Moderation/Users/Blocked.php:125
+#: src/Module/Moderation/Users/Index.php:141
msgid "Site admin"
msgstr "Sitebeheerder"
-#: src/Module/Moderation/Users/Active.php:140
-#: src/Module/Moderation/Users/Blocked.php:140
-#: src/Module/Moderation/Users/Index.php:156
+#: src/Module/Moderation/Users/Active.php:126
+#: src/Module/Moderation/Users/Blocked.php:126
+#: src/Module/Moderation/Users/Index.php:142
msgid "Account expired"
msgstr "Account verlopen"
-#: src/Module/Moderation/Users/Active.php:141
-#: src/Module/Moderation/Users/Index.php:159
+#: src/Module/Moderation/Users/Active.php:127
+#: src/Module/Moderation/Users/Index.php:145
msgid "Create a new user"
msgstr ""
-#: src/Module/Moderation/Users/Active.php:147
-#: src/Module/Moderation/Users/Blocked.php:146
-#: src/Module/Moderation/Users/Index.php:165
+#: src/Module/Moderation/Users/Active.php:133
+#: src/Module/Moderation/Users/Blocked.php:132
+#: src/Module/Moderation/Users/Index.php:151
msgid ""
"Selected users will be deleted!\\n\\nEverything these users had posted on "
"this site will be permanently deleted!\\n\\nAre you sure?"
msgstr "Geselecteerde gebruikers zullen verwijderd worden!\\n\\nAlles wat deze gebruikers gepost hebben op deze website zal permanent verwijderd worden!\\n\\nBen je zeker?"
-#: src/Module/Moderation/Users/Active.php:148
-#: src/Module/Moderation/Users/Blocked.php:147
-#: src/Module/Moderation/Users/Index.php:166
+#: src/Module/Moderation/Users/Active.php:134
+#: src/Module/Moderation/Users/Blocked.php:133
+#: src/Module/Moderation/Users/Index.php:152
msgid ""
"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
"site will be permanently deleted!\\n\\nAre you sure?"
msgstr "De gebruiker {0} zal verwijderd worden!\\n\\nAlles wat deze gebruiker gepost heeft op deze website zal permanent verwijderd worden!\\n\\nBen je zeker?"
-#: src/Module/Moderation/Users/Blocked.php:43
-#: src/Module/Moderation/Users/Index.php:50
+#: src/Module/Moderation/Users/Blocked.php:29
+#: src/Module/Moderation/Users/Index.php:36
#, php-format
msgid "%s user unblocked"
msgid_plural "%s users unblocked"
msgstr[0] ""
msgstr[1] ""
-#: src/Module/Moderation/Users/Blocked.php:92
-#: src/Module/Moderation/Users/Index.php:106
+#: src/Module/Moderation/Users/Blocked.php:78
+#: src/Module/Moderation/Users/Index.php:92
#, php-format
msgid "User \"%s\" unblocked"
msgstr ""
-#: src/Module/Moderation/Users/Blocked.php:134
+#: src/Module/Moderation/Users/Blocked.php:120
msgid "Blocked Users"
msgstr ""
-#: src/Module/Moderation/Users/Create.php:62
+#: src/Module/Moderation/Users/Create.php:48
msgid "New User"
msgstr "Nieuwe gebruiker"
-#: src/Module/Moderation/Users/Create.php:63
+#: src/Module/Moderation/Users/Create.php:49
msgid "Add User"
msgstr "Gebruiker toevoegen"
-#: src/Module/Moderation/Users/Create.php:70
+#: src/Module/Moderation/Users/Create.php:56
msgid "Name of the new user."
msgstr "Naam van nieuwe gebruiker"
-#: src/Module/Moderation/Users/Create.php:71
+#: src/Module/Moderation/Users/Create.php:57
msgid "Nickname"
msgstr "Bijnaam"
-#: src/Module/Moderation/Users/Create.php:71
+#: src/Module/Moderation/Users/Create.php:57
msgid "Nickname of the new user."
msgstr "Bijnaam van nieuwe gebruiker"
-#: src/Module/Moderation/Users/Create.php:72
+#: src/Module/Moderation/Users/Create.php:58
msgid "Email address of the new user."
msgstr "E-mailadres van nieuwe gebruiker"
-#: src/Module/Moderation/Users/Deleted.php:81
+#: src/Module/Moderation/Users/Deleted.php:67
msgid "Users awaiting permanent deletion"
msgstr ""
-#: src/Module/Moderation/Users/Deleted.php:83
-#: src/Module/Moderation/Users/Index.php:160
+#: src/Module/Moderation/Users/Deleted.php:69
+#: src/Module/Moderation/Users/Index.php:146
msgid "Permanent deletion"
msgstr ""
-#: src/Module/Moderation/Users/Index.php:150
+#: src/Module/Moderation/Users/Index.php:136
msgid "User waiting for permanent deletion"
msgstr "Gebruiker wacht op permanente verwijdering"
-#: src/Module/Moderation/Users/Pending.php:44
+#: src/Module/Moderation/Users/Pending.php:30
#, php-format
msgid "%s user approved"
msgid_plural "%s users approved"
msgstr[0] ""
msgstr[1] ""
-#: src/Module/Moderation/Users/Pending.php:51
+#: src/Module/Moderation/Users/Pending.php:37
#, php-format
msgid "%s registration revoked"
msgid_plural "%s registrations revoked"
msgstr[0] ""
msgstr[1] ""
-#: src/Module/Moderation/Users/Pending.php:76
+#: src/Module/Moderation/Users/Pending.php:62
msgid "Account approved."
msgstr "Account goedgekeurd."
-#: src/Module/Moderation/Users/Pending.php:82
+#: src/Module/Moderation/Users/Pending.php:68
msgid "Registration revoked"
msgstr ""
-#: src/Module/Moderation/Users/Pending.php:97
+#: src/Module/Moderation/Users/Pending.php:83
msgid "User registrations awaiting review"
msgstr ""
-#: src/Module/Moderation/Users/Pending.php:99
+#: src/Module/Moderation/Users/Pending.php:85
msgid "Request date"
msgstr "Registratiedatum"
-#: src/Module/Moderation/Users/Pending.php:100
+#: src/Module/Moderation/Users/Pending.php:86
msgid "No registrations."
msgstr "Geen registraties."
-#: src/Module/Moderation/Users/Pending.php:101
+#: src/Module/Moderation/Users/Pending.php:87
msgid "Note from the user"
msgstr "Nota van de gebruiker"
-#: src/Module/Moderation/Users/Pending.php:103
+#: src/Module/Moderation/Users/Pending.php:89
msgid "Deny"
msgstr "Weiger"
-#: src/Module/Notifications/Introductions.php:99
+#: src/Module/Notifications/Introductions.php:91
msgid "Show Ignored Requests"
msgstr "Toon genegeerde verzoeken"
-#: src/Module/Notifications/Introductions.php:99
+#: src/Module/Notifications/Introductions.php:91
msgid "Hide Ignored Requests"
msgstr "Verberg genegeerde verzoeken"
-#: src/Module/Notifications/Introductions.php:115
-#: src/Module/Notifications/Introductions.php:178
+#: src/Module/Notifications/Introductions.php:107
+#: src/Module/Notifications/Introductions.php:170
msgid "Notification type:"
msgstr "Notificatiesoort:"
-#: src/Module/Notifications/Introductions.php:118
+#: src/Module/Notifications/Introductions.php:110
msgid "Suggested by:"
msgstr "Voorgesteld door:"
-#: src/Module/Notifications/Introductions.php:143
+#: src/Module/Notifications/Introductions.php:135
msgid "Claims to be known to you: "
msgstr "Denkt dat je hem of haar kent:"
-#: src/Module/Notifications/Introductions.php:152
+#: src/Module/Notifications/Introductions.php:144
msgid "Shall your connection be bidirectional or not?"
msgstr "Zal je connectie bidirectioneel zijn of niet?"
-#: src/Module/Notifications/Introductions.php:153
+#: src/Module/Notifications/Introductions.php:145
#, php-format
msgid ""
"Accepting %s as a friend allows %s to subscribe to your posts, and you will "
"also receive updates from them in your news feed."
msgstr "%s als vriend accepteren laat %s toe om in te schrijven op je berichten, en je zal ook updates ontvangen van hen in je nieuws feed."
-#: src/Module/Notifications/Introductions.php:154
+#: src/Module/Notifications/Introductions.php:146
#, php-format
msgid ""
"Accepting %s as a subscriber allows them to subscribe to your posts, but you"
" will not receive updates from them in your news feed."
msgstr "%s als volger accepteren laat hen toe om in te schrijven op je berichten, maar je zal geen updates ontvangen van hen in je nieuws feed."
-#: src/Module/Notifications/Introductions.php:156
+#: src/Module/Notifications/Introductions.php:148
msgid "Friend"
msgstr "Vriend"
-#: src/Module/Notifications/Introductions.php:157
+#: src/Module/Notifications/Introductions.php:149
msgid "Subscriber"
msgstr "Volger"
-#: src/Module/Notifications/Introductions.php:216
+#: src/Module/Notifications/Introductions.php:208
msgid "No introductions."
msgstr "Geen vriendschaps- of connectieverzoeken."
-#: src/Module/Notifications/Introductions.php:217
-#: src/Module/Notifications/Notifications.php:135
+#: src/Module/Notifications/Introductions.php:209
+#: src/Module/Notifications/Notifications.php:127
#, php-format
msgid "No more %s notifications."
msgstr "Geen %s notificaties meer."
-#: src/Module/Notifications/Notification.php:135
+#: src/Module/Notifications/Notification.php:121
msgid "You must be logged in to show this page."
msgstr "Je moet ingelogd zijn om deze pagina te tonen."
-#: src/Module/Notifications/Notifications.php:66
+#: src/Module/Notifications/Notifications.php:52
msgid "Network Notifications"
msgstr "Netwerknotificaties"
-#: src/Module/Notifications/Notifications.php:72
+#: src/Module/Notifications/Notifications.php:58
msgid "System Notifications"
msgstr "Systeemnotificaties"
-#: src/Module/Notifications/Notifications.php:78
+#: src/Module/Notifications/Notifications.php:64
msgid "Personal Notifications"
msgstr "Persoonlijke notificaties"
-#: src/Module/Notifications/Notifications.php:84
+#: src/Module/Notifications/Notifications.php:70
msgid "Home Notifications"
msgstr "Tijdlijn-notificaties"
-#: src/Module/Notifications/Notifications.php:140
+#: src/Module/Notifications/Notifications.php:132
msgid "Show unread"
msgstr "Toon ongelezen"
-#: src/Module/Notifications/Ping.php:220
+#: src/Module/Notifications/Ping.php:206
msgid "{0} requested registration"
msgstr "{0} vroeg om zich te registreren"
-#: src/Module/Notifications/Ping.php:229
+#: src/Module/Notifications/Ping.php:215
#, php-format
msgid "{0} and %d others requested registration"
msgstr ""
-#: src/Module/OAuth/Acknowledge.php:51
+#: src/Module/OAuth/Acknowledge.php:37
msgid "Authorize application connection"
msgstr "Verbinding met de applicatie goedkeuren"
-#: src/Module/OAuth/Acknowledge.php:53
+#: src/Module/OAuth/Acknowledge.php:39
msgid ""
"Do you want to authorize this application to access your posts and contacts,"
" and/or create new posts for you?"
msgstr "Wil je deze toepassing toestemming geven om jouw berichten en contacten in te kijken, en/of nieuwe berichten in jouw plaats aan te maken?"
-#: src/Module/OAuth/Authorize.php:54
+#: src/Module/OAuth/Authorize.php:40
msgid "Unsupported or missing response type"
msgstr ""
-#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:75
+#: src/Module/OAuth/Authorize.php:45 src/Module/OAuth/Token.php:61
msgid "Incomplete request data"
msgstr ""
-#: src/Module/OAuth/Authorize.php:106
+#: src/Module/OAuth/Authorize.php:92
#, php-format
msgid ""
"Please copy the following authentication code into your application and "
"close this window: %s"
msgstr ""
-#: src/Module/OAuth/Token.php:80
+#: src/Module/OAuth/Token.php:66
msgid "Invalid data or unknown client"
msgstr ""
-#: src/Module/OAuth/Token.php:105
+#: src/Module/OAuth/Token.php:91
msgid "Unsupported or missing grant type"
msgstr ""
-#: src/Module/OStatus/Repair.php:83
-msgid "Resubscribing to OStatus contacts"
-msgstr "Opnieuw inschrijven bij OStatus contacten"
-
-#: src/Module/OStatus/Repair.php:84 src/Module/OStatus/Subscribe.php:160
-msgid "Keep this window open until done."
-msgstr "Houd dit scherm open tot het klaar is"
-
-#: src/Module/OStatus/Repair.php:85
-msgid "✔ Done"
-msgstr ""
-
-#: src/Module/OStatus/Repair.php:86
-msgid "No OStatus contacts to resubscribe to."
-msgstr ""
-
-#: src/Module/OStatus/Subscribe.php:72
+#: src/Module/OStatus/Subscribe.php:58
msgid "Subscribing to contacts"
msgstr ""
-#: src/Module/OStatus/Subscribe.php:81
+#: src/Module/OStatus/Subscribe.php:67
msgid "No contact provided."
msgstr "Geen contact opgegeven."
-#: src/Module/OStatus/Subscribe.php:87
+#: src/Module/OStatus/Subscribe.php:73
msgid "Couldn't fetch information for contact."
msgstr "Kon de informatie voor het contact niet ophalen."
-#: src/Module/OStatus/Subscribe.php:98
+#: src/Module/OStatus/Subscribe.php:84
msgid "Couldn't fetch friends for contact."
msgstr "Kon de vrienden van contact niet ophalen."
-#: src/Module/OStatus/Subscribe.php:104 src/Module/OStatus/Subscribe.php:115
+#: src/Module/OStatus/Subscribe.php:90 src/Module/OStatus/Subscribe.php:101
msgid "Couldn't fetch following contacts."
msgstr ""
-#: src/Module/OStatus/Subscribe.php:110
+#: src/Module/OStatus/Subscribe.php:96
msgid "Couldn't fetch remote profile."
msgstr ""
-#: src/Module/OStatus/Subscribe.php:120
+#: src/Module/OStatus/Subscribe.php:106
msgid "Unsupported network"
msgstr ""
-#: src/Module/OStatus/Subscribe.php:136
+#: src/Module/OStatus/Subscribe.php:122
msgid "Done"
msgstr "Klaar"
-#: src/Module/OStatus/Subscribe.php:150
+#: src/Module/OStatus/Subscribe.php:136
msgid "success"
msgstr "Succesvol"
-#: src/Module/OStatus/Subscribe.php:152
+#: src/Module/OStatus/Subscribe.php:138
msgid "failed"
msgstr "Mislukt"
-#: src/Module/OStatus/Subscribe.php:155
+#: src/Module/OStatus/Subscribe.php:141
msgid "ignored"
msgstr "Verboden"
-#: src/Module/Photo.php:124
+#: src/Module/OStatus/Subscribe.php:146
+msgid "Keep this window open until done."
+msgstr "Houd dit scherm open tot het klaar is"
+
+#: src/Module/Photo.php:108
msgid "The Photo is not available."
msgstr ""
-#: src/Module/Photo.php:149
+#: src/Module/Photo.php:133
#, php-format
msgid "The Photo with id %s is not available."
msgstr "De foto met id %s is niet beschikbaar"
-#: src/Module/Photo.php:190
+#: src/Module/Photo.php:174
#, php-format
msgid "Invalid external resource with url %s."
msgstr ""
-#: src/Module/Photo.php:192
+#: src/Module/Photo.php:176
#, php-format
msgid "Invalid photo with id %s."
msgstr "Ongeldige foto met ID %s"
-#: src/Module/Post/Edit.php:82 src/Module/Post/Edit.php:96
+#: src/Module/Post/Edit.php:68 src/Module/Post/Edit.php:82
msgid "Post not found."
msgstr ""
-#: src/Module/Post/Edit.php:102
+#: src/Module/Post/Edit.php:88
msgid "Edit post"
msgstr "Bericht bewerken"
-#: src/Module/Post/Edit.php:136
+#: src/Module/Post/Edit.php:122
msgid "web link"
msgstr "webadres"
-#: src/Module/Post/Edit.php:137
+#: src/Module/Post/Edit.php:123
msgid "Insert video link"
msgstr "Voeg video toe"
-#: src/Module/Post/Edit.php:138
+#: src/Module/Post/Edit.php:124
msgid "video link"
msgstr "video adres"
-#: src/Module/Post/Edit.php:139
+#: src/Module/Post/Edit.php:125
msgid "Insert audio link"
msgstr "Voeg audio adres toe"
-#: src/Module/Post/Edit.php:140
+#: src/Module/Post/Edit.php:126
msgid "audio link"
msgstr "audio adres"
-#: src/Module/Post/Tag/Remove.php:106
+#: src/Module/Post/Tag/Remove.php:92
msgid "Remove Item Tag"
msgstr "Verwijder label van item"
-#: src/Module/Post/Tag/Remove.php:107
+#: src/Module/Post/Tag/Remove.php:93
msgid "Select a tag to remove: "
msgstr "Selecteer een label om te verwijderen: "
-#: src/Module/Post/Tag/Remove.php:108
-#: src/Module/Settings/TwoFactor/Trusted.php:147
+#: src/Module/Post/Tag/Remove.php:94
+#: src/Module/Settings/TwoFactor/Trusted.php:133
msgid "Remove"
msgstr "Verwijderen"
-#: src/Module/Privacy/PermissionTooltip.php:71
+#: src/Module/Privacy/PermissionTooltip.php:57
#, php-format
msgid "Wrong type \"%s\", expected one of: %s"
msgstr ""
-#: src/Module/Privacy/PermissionTooltip.php:101
+#: src/Module/Privacy/PermissionTooltip.php:87
msgid "Model not found"
msgstr ""
-#: src/Module/Privacy/PermissionTooltip.php:118
+#: src/Module/Privacy/PermissionTooltip.php:104
msgid "Unlisted"
msgstr ""
-#: src/Module/Privacy/PermissionTooltip.php:124
+#: src/Module/Privacy/PermissionTooltip.php:110
msgid "Remote privacy information not available."
msgstr "Privacyinformatie op afstand niet beschikbaar."
-#: src/Module/Privacy/PermissionTooltip.php:131
+#: src/Module/Privacy/PermissionTooltip.php:117
msgid "Visible to:"
msgstr "Zichtbaar voor:"
-#: src/Module/Privacy/PermissionTooltip.php:133
+#: src/Module/Privacy/PermissionTooltip.php:119
msgid "CC:"
msgstr ""
-#: src/Module/Privacy/PermissionTooltip.php:134
+#: src/Module/Privacy/PermissionTooltip.php:120
msgid "BCC:"
msgstr ""
-#: src/Module/Privacy/PermissionTooltip.php:135
+#: src/Module/Privacy/PermissionTooltip.php:121
msgid "Audience:"
msgstr ""
-#: src/Module/Privacy/PermissionTooltip.php:136
+#: src/Module/Privacy/PermissionTooltip.php:122
msgid "Attributed To:"
msgstr ""
-#: src/Module/Privacy/PermissionTooltip.php:234
+#: src/Module/Privacy/PermissionTooltip.php:220
#, php-format
msgid "Collection (%s)"
msgstr ""
-#: src/Module/Privacy/PermissionTooltip.php:238
+#: src/Module/Privacy/PermissionTooltip.php:224
#, php-format
msgid "Followers (%s)"
msgstr ""
-#: src/Module/Privacy/PermissionTooltip.php:255
+#: src/Module/Privacy/PermissionTooltip.php:241
#, php-format
msgid "%d more"
msgstr ""
-#: src/Module/Profile/Contacts.php:159
+#: src/Module/Profile/Contacts.php:145
msgid "No contacts."
msgstr "Geen contacten."
-#: src/Module/Profile/Conversations.php:106
-#: src/Module/Profile/Conversations.php:109 src/Module/Profile/Profile.php:351
-#: src/Module/Profile/Profile.php:354 src/Protocol/Feed.php:1095
-#: src/Protocol/OStatus.php:1011
-#, php-format
-msgid "%s's timeline"
-msgstr "Tijdslijn van %s"
-
-#: src/Module/Profile/Conversations.php:107 src/Module/Profile/Profile.php:352
-#: src/Protocol/Feed.php:1099 src/Protocol/OStatus.php:1016
+#: src/Module/Profile/Conversations.php:92 src/Module/Profile/Profile.php:339
+#: src/Protocol/Feed.php:1097
#, php-format
msgid "%s's posts"
msgstr "Berichten van %s"
-#: src/Module/Profile/Conversations.php:108 src/Module/Profile/Profile.php:353
-#: src/Protocol/Feed.php:1102 src/Protocol/OStatus.php:1020
+#: src/Module/Profile/Conversations.php:93 src/Module/Profile/Profile.php:340
+#: src/Protocol/Feed.php:1100
#, php-format
msgid "%s's comments"
msgstr "reactie van %s"
-#: src/Module/Profile/Photos.php:164 src/Module/Profile/Photos.php:167
-#: src/Module/Profile/Photos.php:192
-#: src/Module/Settings/Profile/Photo/Index.php:58
+#: src/Module/Profile/Conversations.php:94 src/Module/Profile/Profile.php:341
+#: src/Protocol/Feed.php:1093
+#, php-format
+msgid "%s's timeline"
+msgstr "Tijdslijn van %s"
+
+#: src/Module/Profile/Photos.php:150 src/Module/Profile/Photos.php:153
+#: src/Module/Profile/Photos.php:178
+#: src/Module/Settings/Profile/Photo/Index.php:44
#, php-format
msgid "Image exceeds size limit of %s"
msgstr "Beeld is groter dan de limiet ( %s )"
-#: src/Module/Profile/Photos.php:170
+#: src/Module/Profile/Photos.php:156
msgid "Image upload didn't complete, please try again"
msgstr "Opladen van het beeld is niet compleet, probeer het opnieuw"
-#: src/Module/Profile/Photos.php:173
+#: src/Module/Profile/Photos.php:159
msgid "Image file is missing"
msgstr "Beeld bestand ontbreekt"
-#: src/Module/Profile/Photos.php:178
+#: src/Module/Profile/Photos.php:164
msgid ""
"Server can't accept new file upload at this time, please contact your "
"administrator"
msgstr "De server kan op dit moment geen nieuw bestand opladen, contacteer alsjeblieft je beheerder"
-#: src/Module/Profile/Photos.php:200
+#: src/Module/Profile/Photos.php:186
msgid "Image file is empty."
msgstr "Afbeeldingsbestand is leeg."
-#: src/Module/Profile/Photos.php:352
+#: src/Module/Profile/Photos.php:338
msgid "View Album"
msgstr "Album bekijken"
-#: src/Module/Profile/Profile.php:112 src/Module/Profile/Restricted.php:50
+#: src/Module/Profile/Profile.php:100 src/Module/Profile/Restricted.php:36
msgid "Profile not found."
msgstr "Profiel niet gevonden"
-#: src/Module/Profile/Profile.php:158
+#: src/Module/Profile/Profile.php:146
#, php-format
msgid ""
"You're currently viewing your profile as %s Cancel"
msgstr ""
-#: src/Module/Profile/Profile.php:167
+#: src/Module/Profile/Profile.php:155
msgid "Full Name:"
msgstr "Volledige Naam:"
-#: src/Module/Profile/Profile.php:172
+#: src/Module/Profile/Profile.php:160
msgid "Member since:"
msgstr "Lid sinds:"
-#: src/Module/Profile/Profile.php:178
+#: src/Module/Profile/Profile.php:166
msgid "j F, Y"
msgstr "F j Y"
-#: src/Module/Profile/Profile.php:179
+#: src/Module/Profile/Profile.php:167
msgid "j F"
msgstr "F j"
-#: src/Module/Profile/Profile.php:187 src/Util/Temporal.php:168
+#: src/Module/Profile/Profile.php:175 src/Util/Temporal.php:154
msgid "Birthday:"
msgstr "Verjaardag:"
-#: src/Module/Profile/Profile.php:190
-#: src/Module/Settings/Profile/Index.php:291 src/Util/Temporal.php:170
+#: src/Module/Profile/Profile.php:178
+#: src/Module/Settings/Profile/Index.php:282 src/Util/Temporal.php:156
msgid "Age: "
msgstr "Leeftijd:"
-#: src/Module/Profile/Profile.php:190
-#: src/Module/Settings/Profile/Index.php:291 src/Util/Temporal.php:170
+#: src/Module/Profile/Profile.php:178
+#: src/Module/Settings/Profile/Index.php:282 src/Util/Temporal.php:156
#, php-format
msgid "%d year old"
msgid_plural "%d years old"
msgstr[0] "%d jaar oud"
msgstr[1] "%d jaar oud"
-#: src/Module/Profile/Profile.php:195
-#: src/Module/Settings/Profile/Index.php:284
+#: src/Module/Profile/Profile.php:183
+#: src/Module/Settings/Profile/Index.php:275
msgid "Description:"
msgstr "Beschrijving:"
-#: src/Module/Profile/Profile.php:261
+#: src/Module/Profile/Profile.php:249
msgid "Groups:"
msgstr ""
-#: src/Module/Profile/Profile.php:273
+#: src/Module/Profile/Profile.php:261
msgid "View profile as:"
msgstr "Bekijk profiel als:"
-#: src/Module/Profile/Profile.php:290
+#: src/Module/Profile/Profile.php:278
msgid "View as"
msgstr ""
-#: src/Module/Profile/RemoteFollow.php:82
+#: src/Module/Profile/RemoteFollow.php:68
msgid "Profile unavailable."
msgstr "Profiel onbeschikbaar"
-#: src/Module/Profile/RemoteFollow.php:88
+#: src/Module/Profile/RemoteFollow.php:74
msgid "Invalid locator"
msgstr "Ongeldige plaatsbepaler"
-#: src/Module/Profile/RemoteFollow.php:95
+#: src/Module/Profile/RemoteFollow.php:81
msgid "The provided profile link doesn't seem to be valid"
msgstr "De verstrekte profiellink lijkt niet geldig te zijn"
-#: src/Module/Profile/RemoteFollow.php:100
+#: src/Module/Profile/RemoteFollow.php:86
msgid ""
"Remote subscription can't be done for your network. Please subscribe "
"directly on your system."
msgstr "Remote inschrijving kan niet op jouw netwerk. Gelieve direct op je systeem in te schrijven."
-#: src/Module/Profile/RemoteFollow.php:128
+#: src/Module/Profile/RemoteFollow.php:114
msgid "Friend/Connection Request"
msgstr "Vriendschaps-/connectieverzoek"
-#: src/Module/Profile/RemoteFollow.php:129
+#: src/Module/Profile/RemoteFollow.php:115
#, php-format
msgid ""
"Enter your Webfinger address (user@domain.tld) or profile URL here. If this "
@@ -9270,579 +9264,579 @@ msgid ""
" or %s directly on your system."
msgstr "Geef hier je Webfinger adres (gebruiker@domain.tld) of profiel URL. Als dit niet wordt ondersteund door je systeem, dan dien je in te schrijven op %s of %s direct op je systeem."
-#: src/Module/Profile/RemoteFollow.php:130
+#: src/Module/Profile/RemoteFollow.php:116
#, php-format
msgid ""
"If you are not yet a member of the free social web, follow "
"this link to find a public Friendica node and join us today."
msgstr "Als je nog geen lid bent van het vrije sociale web, volg dan deze link om een publieke Friendica node te vinden en sluit je vandaag bij ons aan."
-#: src/Module/Profile/RemoteFollow.php:131
+#: src/Module/Profile/RemoteFollow.php:117
msgid "Your Webfinger address or profile URL:"
msgstr "Uw Webfinger adres of profiel-URL:"
-#: src/Module/Profile/Restricted.php:59
+#: src/Module/Profile/Restricted.php:45
msgid "Restricted profile"
msgstr ""
-#: src/Module/Profile/Restricted.php:60
+#: src/Module/Profile/Restricted.php:46
msgid ""
"This profile has been restricted which prevents access to their public "
"content from anonymous visitors."
msgstr ""
-#: src/Module/Profile/Schedule.php:83
+#: src/Module/Profile/Schedule.php:69
msgid "Scheduled"
msgstr ""
-#: src/Module/Profile/Schedule.php:84
+#: src/Module/Profile/Schedule.php:70
msgid "Content"
msgstr ""
-#: src/Module/Profile/Schedule.php:85
+#: src/Module/Profile/Schedule.php:71
msgid "Remove post"
msgstr ""
-#: src/Module/Register.php:85
+#: src/Module/Register.php:77
msgid "Only parent users can create additional accounts."
msgstr "Alleen bovenliggende gebruikers kunnen extra gebruikers maken."
-#: src/Module/Register.php:100 src/Module/User/Import.php:112
+#: src/Module/Register.php:92 src/Module/User/Import.php:98
msgid ""
"This site has exceeded the number of allowed daily account registrations. "
"Please try again tomorrow."
msgstr "Deze website heeft het toegelaten dagelijkse aantal registraties overschreden. Probeer morgen opnieuw."
-#: src/Module/Register.php:117
+#: src/Module/Register.php:109
msgid ""
"You may (optionally) fill in this form via OpenID by supplying your OpenID "
"and clicking \"Register\"."
msgstr "U kunt (optioneel) dit formulier invullen via OpenID door uw OpenID in te vullen en op 'Registreren' te klikken."
-#: src/Module/Register.php:118
+#: src/Module/Register.php:110
msgid ""
"If you are not familiar with OpenID, please leave that field blank and fill "
"in the rest of the items."
msgstr "Laat dit veld leeg als je niet vertrouwd bent met OpenID, en vul de rest van de items in."
-#: src/Module/Register.php:119
+#: src/Module/Register.php:111
msgid "Your OpenID (optional): "
msgstr "Je OpenID (optioneel):"
-#: src/Module/Register.php:128
+#: src/Module/Register.php:120
msgid "Include your profile in member directory?"
msgstr "Je profiel in de ledengids opnemen?"
-#: src/Module/Register.php:149
+#: src/Module/Register.php:141
msgid "Note for the admin"
msgstr "Nota voor de beheerder"
-#: src/Module/Register.php:149
+#: src/Module/Register.php:141
msgid "Leave a message for the admin, why you want to join this node"
msgstr "Laat een boodschap na voor de beheerder, waarom je bij deze node wil komen"
-#: src/Module/Register.php:150
+#: src/Module/Register.php:142
msgid "Membership on this site is by invitation only."
msgstr "Lidmaatschap van deze website is uitsluitend op uitnodiging."
-#: src/Module/Register.php:151
+#: src/Module/Register.php:143
msgid "Your invitation code: "
msgstr "Je uitnodigingscode:"
-#: src/Module/Register.php:159
+#: src/Module/Register.php:151
msgid "Your Display Name (as you would like it to be displayed on this system"
msgstr ""
-#: src/Module/Register.php:160
+#: src/Module/Register.php:152
msgid ""
"Your Email Address: (Initial information will be send there, so this has to "
"be an existing address.)"
msgstr "Je Email Adres: (Initiële informatie zal hier naartoe gezonden worden, dus dit moet een bestaand adres zijn.)"
-#: src/Module/Register.php:161
+#: src/Module/Register.php:153
msgid "Please repeat your e-mail address:"
msgstr "Herhaal uw e-mailadres:"
-#: src/Module/Register.php:163 src/Module/Security/PasswordTooLong.php:100
-#: src/Module/Settings/Account.php:564
+#: src/Module/Register.php:155 src/Module/Security/PasswordTooLong.php:86
+#: src/Module/Settings/Account.php:555
msgid "New Password:"
msgstr "Nieuw Wachtwoord:"
-#: src/Module/Register.php:163
+#: src/Module/Register.php:155
msgid "Leave empty for an auto generated password."
msgstr "Laat leeg voor een automatisch gegenereerd wachtwoord."
-#: src/Module/Register.php:164 src/Module/Security/PasswordTooLong.php:101
-#: src/Module/Settings/Account.php:565
+#: src/Module/Register.php:156 src/Module/Security/PasswordTooLong.php:87
+#: src/Module/Settings/Account.php:556
msgid "Confirm:"
msgstr "Bevestig:"
-#: src/Module/Register.php:165
+#: src/Module/Register.php:157
#, php-format
msgid ""
"Choose a profile nickname. This must begin with a text character. Your "
"profile address on this site will then be \"nickname@%s\"."
msgstr "Kies een profiel bijnaam. Deze dient te beginnen met een letter. Uw profiel adres op deze site zal dan \"bijnaam@%s\" zijn."
-#: src/Module/Register.php:166
+#: src/Module/Register.php:158
msgid "Choose a nickname: "
msgstr "Kies een bijnaam:"
-#: src/Module/Register.php:174 src/Module/User/Import.php:118
+#: src/Module/Register.php:166 src/Module/User/Import.php:104
msgid "Import"
msgstr "Importeren"
-#: src/Module/Register.php:175
+#: src/Module/Register.php:167
msgid "Import your profile to this friendica instance"
msgstr "Importeer je profiel op deze friendica server"
-#: src/Module/Register.php:182
+#: src/Module/Register.php:174
msgid "Note: This node explicitly contains adult content"
msgstr "Waarschuwing: Deze node heeft inhoud enkel bedoeld voor volwassenen."
-#: src/Module/Register.php:184 src/Module/Settings/Delegation.php:181
+#: src/Module/Register.php:176 src/Module/Settings/Delegation.php:167
msgid "Parent Password:"
msgstr "Ouderlijk wachtwoord:"
-#: src/Module/Register.php:184 src/Module/Settings/Delegation.php:181
+#: src/Module/Register.php:176 src/Module/Settings/Delegation.php:167
msgid ""
"Please enter the password of the parent account to legitimize your request."
msgstr "Geef alstublieft het wachtwoord van het ouderlijke account om je verzoek te legitimeren."
-#: src/Module/Register.php:213
+#: src/Module/Register.php:205
msgid "Password doesn't match."
msgstr "Wachtwoorden komen niet overeen."
-#: src/Module/Register.php:219
+#: src/Module/Register.php:211
msgid "Please enter your password."
msgstr "Voer uw wachtwoord in."
-#: src/Module/Register.php:261
+#: src/Module/Register.php:253
msgid "You have entered too much information."
msgstr "U heeft te veel informatie ingevoerd."
-#: src/Module/Register.php:284
+#: src/Module/Register.php:276
msgid "Please enter the identical mail address in the second field."
msgstr "Voer in het tweede veld het identieke mailadres in."
-#: src/Module/Register.php:292
+#: src/Module/Register.php:284
msgid "Nickname cannot start with a digit."
msgstr ""
-#: src/Module/Register.php:294
+#: src/Module/Register.php:286
msgid "Nickname can only contain US-ASCII characters."
msgstr ""
-#: src/Module/Register.php:323
+#: src/Module/Register.php:315
msgid "The additional account was created."
msgstr "De toegevoegde gebruiker is aangemaakt."
-#: src/Module/Register.php:348
+#: src/Module/Register.php:340
msgid ""
"Registration successful. Please check your email for further instructions."
msgstr "Registratie geslaagd. Kijk je e-mail na voor verdere instructies."
-#: src/Module/Register.php:355
+#: src/Module/Register.php:347
#, php-format
msgid ""
"Failed to send email message. Here your accout details:You can enter one of your one-time recovery codes in case you lost access" " to your mobile device.
" msgstr "U kunt een van uw eenmalige herstelcodes invoeren als u de toegang tot uw mobiele apparaat bent kwijtgeraakt.
" -#: src/Module/Security/TwoFactor/Recovery.php:101 +#: src/Module/Security/TwoFactor/Recovery.php:87 #, php-format msgid "Don’t have your phone? Enter a two-factor recovery code" msgstr "Heb je je telefoon niet? Geef een twee-factor herstelcodecode in" -#: src/Module/Security/TwoFactor/Recovery.php:102 +#: src/Module/Security/TwoFactor/Recovery.php:88 msgid "Please enter a recovery code" msgstr "Voer een herstelcode in" -#: src/Module/Security/TwoFactor/Recovery.php:103 +#: src/Module/Security/TwoFactor/Recovery.php:89 msgid "Submit recovery code and complete login" msgstr "Voer de herstelcode in en voltooi de login" -#: src/Module/Security/TwoFactor/SignOut.php:122 +#: src/Module/Security/TwoFactor/SignOut.php:108 msgid "Sign out of this browser?" msgstr "" -#: src/Module/Security/TwoFactor/SignOut.php:123 +#: src/Module/Security/TwoFactor/SignOut.php:109 msgid "" "If you trust this browser, you will not be asked for verification code " "the next time you sign in.
" msgstr "" -#: src/Module/Security/TwoFactor/SignOut.php:124 +#: src/Module/Security/TwoFactor/SignOut.php:110 msgid "Sign out" msgstr "" -#: src/Module/Security/TwoFactor/SignOut.php:126 +#: src/Module/Security/TwoFactor/SignOut.php:112 msgid "Trust and sign out" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:96 +#: src/Module/Security/TwoFactor/Trust.php:82 msgid "Couldn't save browser to Cookie." msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:141 +#: src/Module/Security/TwoFactor/Trust.php:127 msgid "Trust this browser?" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:142 +#: src/Module/Security/TwoFactor/Trust.php:128 msgid "" "If you choose to trust this browser, you will not be asked for a " "verification code the next time you sign in.
" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:143 +#: src/Module/Security/TwoFactor/Trust.php:129 msgid "Not now" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:144 +#: src/Module/Security/TwoFactor/Trust.php:130 msgid "Don't trust" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:145 +#: src/Module/Security/TwoFactor/Trust.php:131 msgid "Trust" msgstr "" -#: src/Module/Security/TwoFactor/Verify.php:97 +#: src/Module/Security/TwoFactor/Verify.php:83 msgid "" "Open the two-factor authentication app on your device to get an " "authentication code and verify your identity.
" msgstr "Open de tweefactorauthenticatie-app op uw apparaat om een authenticatiecode te krijgen en uw identiteit te verifiëren.
" -#: src/Module/Security/TwoFactor/Verify.php:100 +#: src/Module/Security/TwoFactor/Verify.php:86 #, php-format msgid "" "If you do not have access to your authentication code you can use a two-factor recovery code." msgstr "" -#: src/Module/Security/TwoFactor/Verify.php:101 -#: src/Module/Settings/TwoFactor/Verify.php:158 +#: src/Module/Security/TwoFactor/Verify.php:87 +#: src/Module/Settings/TwoFactor/Verify.php:144 msgid "Please enter a code from your authentication app" msgstr "Voer een code in van uw authenticatie-app" -#: src/Module/Security/TwoFactor/Verify.php:102 +#: src/Module/Security/TwoFactor/Verify.php:88 msgid "Verify code and complete login" msgstr "Controleer de code en voltooi de login" -#: src/Module/Settings/Account.php:96 +#: src/Module/Settings/Account.php:82 msgid "Please use a shorter name." msgstr "Gebruik een kortere naam." -#: src/Module/Settings/Account.php:99 +#: src/Module/Settings/Account.php:85 msgid "Name too short." msgstr "Naam is te kort." -#: src/Module/Settings/Account.php:108 +#: src/Module/Settings/Account.php:94 msgid "Wrong Password." msgstr "Verkeerd wachtwoord." -#: src/Module/Settings/Account.php:113 +#: src/Module/Settings/Account.php:99 msgid "Invalid email." msgstr "Ongeldig email adres." -#: src/Module/Settings/Account.php:117 +#: src/Module/Settings/Account.php:103 msgid "Cannot change to that email." msgstr "Kan niet naar dat email adres veranderen." -#: src/Module/Settings/Account.php:146 src/Module/Settings/Account.php:195 -#: src/Module/Settings/Account.php:216 src/Module/Settings/Account.php:300 -#: src/Module/Settings/Account.php:329 +#: src/Module/Settings/Account.php:132 src/Module/Settings/Account.php:181 +#: src/Module/Settings/Account.php:202 src/Module/Settings/Account.php:286 +#: src/Module/Settings/Account.php:315 msgid "Settings were not updated." msgstr "Wijziging instellingen is niet opgeslagen." -#: src/Module/Settings/Account.php:342 +#: src/Module/Settings/Account.php:333 msgid "Contact CSV file upload error" msgstr "" -#: src/Module/Settings/Account.php:361 +#: src/Module/Settings/Account.php:352 msgid "Importing Contacts done" msgstr "Importeren Contacten voltooid" -#: src/Module/Settings/Account.php:374 +#: src/Module/Settings/Account.php:365 msgid "Relocate message has been send to your contacts" msgstr "Verhuis boodschap is verzonden naar je contacten" -#: src/Module/Settings/Account.php:391 +#: src/Module/Settings/Account.php:382 msgid "Unable to find your profile. Please contact your admin." msgstr "Kan je profiel niet vinden. Contacteer alsjeblieft je beheerder." -#: src/Module/Settings/Account.php:433 +#: src/Module/Settings/Account.php:424 msgid "" "Account for a service that automatically shares content based on user " "defined channels." msgstr "" -#: src/Module/Settings/Account.php:443 +#: src/Module/Settings/Account.php:434 msgid "Personal Page Subtypes" msgstr "Persoonlijke Pagina Subtypes" -#: src/Module/Settings/Account.php:444 +#: src/Module/Settings/Account.php:435 msgid "Community Group Subtypes" msgstr "" -#: src/Module/Settings/Account.php:455 +#: src/Module/Settings/Account.php:446 msgid "Account for a personal profile." msgstr "Account voor een persoonlijk profiel" -#: src/Module/Settings/Account.php:462 +#: src/Module/Settings/Account.php:453 msgid "" "Account for an organisation that automatically approves contact requests as " "\"Followers\"." msgstr "Account voor een organisatie die automatisch contact aanvragen goedkeurt als \"Volgers\"." -#: src/Module/Settings/Account.php:469 +#: src/Module/Settings/Account.php:460 msgid "" "Account for a news reflector that automatically approves contact requests as" " \"Followers\"." msgstr "Account voor een nieuws reflector die automatisch contact aanvragen goedkeurt als \"Volgers\"." -#: src/Module/Settings/Account.php:476 +#: src/Module/Settings/Account.php:467 msgid "Account for community discussions." msgstr "Account voor groepsdiscussies." -#: src/Module/Settings/Account.php:484 +#: src/Module/Settings/Account.php:475 msgid "" "Account for a regular personal profile that requires manual approval of " "\"Friends\" and \"Followers\"." msgstr "Account voor een normaal persoonlijk profiel dat manuele goedkeuring vereist van \"Vrienden\" en \"Volgers\"." -#: src/Module/Settings/Account.php:491 +#: src/Module/Settings/Account.php:482 msgid "" "Account for a public profile that automatically approves contact requests as" " \"Followers\"." msgstr "Account voor een publiek profiel dat automatisch contact aanvragen goedkeurt als \"Volgers\"." -#: src/Module/Settings/Account.php:498 +#: src/Module/Settings/Account.php:489 msgid "Automatically approves all contact requests." msgstr "Aanvaardt automatisch all contact aanvragen." -#: src/Module/Settings/Account.php:505 +#: src/Module/Settings/Account.php:496 msgid "Contact requests have to be manually approved." msgstr "" -#: src/Module/Settings/Account.php:512 +#: src/Module/Settings/Account.php:503 msgid "" "Account for a popular profile that automatically approves contact requests " "as \"Friends\"." msgstr "Account voor een populair profiel dat automatisch contact aanvragen goedkeurt als \"Vrienden\"." -#: src/Module/Settings/Account.php:517 +#: src/Module/Settings/Account.php:508 msgid "Private Group [Experimental]" msgstr "" -#: src/Module/Settings/Account.php:519 +#: src/Module/Settings/Account.php:510 msgid "Requires manual approval of contact requests." msgstr "Vereist manuele goedkeuring van contact aanvragen." -#: src/Module/Settings/Account.php:528 +#: src/Module/Settings/Account.php:519 msgid "OpenID:" msgstr "OpenID:" -#: src/Module/Settings/Account.php:528 +#: src/Module/Settings/Account.php:519 msgid "(Optional) Allow this OpenID to login to this account." msgstr "(Optioneel) Laat dit OpenID toe om in te loggen op deze account." -#: src/Module/Settings/Account.php:536 +#: src/Module/Settings/Account.php:527 msgid "Publish your profile in your local site directory?" msgstr "Uw profiel publiceren in uw lokale sitemap?" -#: src/Module/Settings/Account.php:536 +#: src/Module/Settings/Account.php:527 #, php-format msgid "" "Your profile will be published in this node's local " @@ -9850,94 +9844,94 @@ msgid "" " system settings." msgstr "Je profiel zal gepubliceerd worden de lokale gids van deze node. Je profiel details kunnen publiek zichtbaar zijn afhankelijk van de systeem instellingen." -#: src/Module/Settings/Account.php:542 +#: src/Module/Settings/Account.php:533 #, php-format msgid "" "Your profile will also be published in the global friendica directories " "(e.g. %s)." msgstr "Je profiel zal ook worden gepubliceerd in de globale Friendica directories (e.g. %s)." -#: src/Module/Settings/Account.php:555 +#: src/Module/Settings/Account.php:546 msgid "Account Settings" msgstr "Account Instellingen" -#: src/Module/Settings/Account.php:556 +#: src/Module/Settings/Account.php:547 #, php-format msgid "Your Identity Address is '%s' or '%s'." msgstr "Je Identiteit adres is '%s' of '%s'." -#: src/Module/Settings/Account.php:563 +#: src/Module/Settings/Account.php:554 msgid "Password Settings" msgstr "Wachtwoord Instellingen" -#: src/Module/Settings/Account.php:565 +#: src/Module/Settings/Account.php:556 msgid "Leave password fields blank unless changing" msgstr "Laat de wachtwoord-velden leeg, tenzij je het wilt veranderen" -#: src/Module/Settings/Account.php:567 +#: src/Module/Settings/Account.php:558 msgid "Password:" msgstr "Wachtwoord:" -#: src/Module/Settings/Account.php:567 +#: src/Module/Settings/Account.php:558 msgid "Your current password to confirm the changes of the email address" msgstr "Je huidige wachtwoord om de verandering in het email adres te bevestigen" -#: src/Module/Settings/Account.php:570 +#: src/Module/Settings/Account.php:561 msgid "Delete OpenID URL" msgstr "Verwijder OpenID URL" -#: src/Module/Settings/Account.php:572 +#: src/Module/Settings/Account.php:563 msgid "Basic Settings" msgstr "Basis Instellingen" -#: src/Module/Settings/Account.php:573 -#: src/Module/Settings/Profile/Index.php:283 +#: src/Module/Settings/Account.php:564 +#: src/Module/Settings/Profile/Index.php:274 msgid "Display name:" msgstr "Weergave naam:" -#: src/Module/Settings/Account.php:574 +#: src/Module/Settings/Account.php:565 msgid "Email Address:" msgstr "E-mailadres:" -#: src/Module/Settings/Account.php:575 +#: src/Module/Settings/Account.php:566 msgid "Your Timezone:" msgstr "Je Tijdzone:" -#: src/Module/Settings/Account.php:576 +#: src/Module/Settings/Account.php:567 msgid "Your Language:" msgstr "Je taal:" -#: src/Module/Settings/Account.php:576 +#: src/Module/Settings/Account.php:567 msgid "" "Set the language we use to show you friendica interface and to send you " "emails" msgstr "Configureer de taal van die we gebruiken als friendica interface en om je emails te sturen" -#: src/Module/Settings/Account.php:577 +#: src/Module/Settings/Account.php:568 msgid "Default Post Location:" msgstr "Standaard locatie:" -#: src/Module/Settings/Account.php:578 +#: src/Module/Settings/Account.php:569 msgid "Use Browser Location:" msgstr "Gebruik Webbrowser Locatie:" -#: src/Module/Settings/Account.php:580 +#: src/Module/Settings/Account.php:571 msgid "Security and Privacy Settings" msgstr "Instellingen voor Beveiliging en Privacy" -#: src/Module/Settings/Account.php:582 +#: src/Module/Settings/Account.php:573 msgid "Maximum Friend Requests/Day:" msgstr "Maximum aantal vriendschapsverzoeken per dag:" -#: src/Module/Settings/Account.php:582 +#: src/Module/Settings/Account.php:573 msgid "(to prevent spam abuse)" msgstr "(om spam misbruik te voorkomen)" -#: src/Module/Settings/Account.php:584 +#: src/Module/Settings/Account.php:575 msgid "Allow your profile to be searchable globally?" msgstr "Wilt u dat uw profiel globaal doorzoekbaar is?" -#: src/Module/Settings/Account.php:584 +#: src/Module/Settings/Account.php:575 msgid "" "Activate this setting if you want others to easily find and follow you. Your" " profile will be searchable on remote systems. This setting also determines " @@ -9945,43 +9939,43 @@ msgid "" "indexed or not." msgstr "Activeer deze instelling als u wilt dat anderen u gemakkelijk kunnen vinden en volgen. Uw profiel is doorzoekbaar op externe systemen. Deze instelling bepaalt ook of Friendica zoekmachines zal informeren dat uw profiel moet worden geïndexeerd of niet." -#: src/Module/Settings/Account.php:585 +#: src/Module/Settings/Account.php:576 msgid "Hide your contact/friend list from viewers of your profile?" msgstr "Uw contact- / vriendenlijst verbergen voor hen die uw profiel bekijken?" -#: src/Module/Settings/Account.php:585 +#: src/Module/Settings/Account.php:576 msgid "" "A list of your contacts is displayed on your profile page. Activate this " "option to disable the display of your contact list." msgstr "Een lijst met uw contacten wordt weergegeven op uw profielpagina. Activeer deze optie om de weergave van uw contactenlijst uit te schakelen." -#: src/Module/Settings/Account.php:586 +#: src/Module/Settings/Account.php:577 msgid "Hide your public content from anonymous viewers" msgstr "" -#: src/Module/Settings/Account.php:586 +#: src/Module/Settings/Account.php:577 msgid "" "Anonymous visitors will only see your basic profile details. Your public " "posts and replies will still be freely accessible on the remote servers of " "your followers and through relays." msgstr "" -#: src/Module/Settings/Account.php:587 +#: src/Module/Settings/Account.php:578 msgid "Make public posts unlisted" msgstr "Maak openbare berichten verborgen" -#: src/Module/Settings/Account.php:587 +#: src/Module/Settings/Account.php:578 msgid "" "Your public posts will not appear on the community pages or in search " "results, nor be sent to relay servers. However they can still appear on " "public feeds on remote servers." msgstr "Je openbare berichten verschijnen niet op de communitypagina's of in de zoekresultaten en worden ook niet naar relayservers gestuurd. Ze kunnen echter nog steeds verschijnen op openbare feeds op externe servers." -#: src/Module/Settings/Account.php:588 +#: src/Module/Settings/Account.php:579 msgid "Make all posted pictures accessible" msgstr "Maak alle geplaatste foto's toegankelijk" -#: src/Module/Settings/Account.php:588 +#: src/Module/Settings/Account.php:579 msgid "" "This option makes every posted picture accessible via the direct link. This " "is a workaround for the problem that most other networks can't handle " @@ -9989,352 +9983,352 @@ msgid "" "public on your photo albums though." msgstr "Deze optie maakt elke geplaatste foto toegankelijk via de directe link. Dit is een tijdelijke oplossing voor het probleem dat de meeste andere netwerken de rechten op afbeeldingen niet kunnen verwerken. Niet-openbare afbeeldingen zijn echter nog steeds niet zichtbaar voor het publiek in uw fotoalbums." -#: src/Module/Settings/Account.php:589 +#: src/Module/Settings/Account.php:580 msgid "Allow friends to post to your profile page?" msgstr "Vrienden toestaan om op jouw profielpagina te posten?" -#: src/Module/Settings/Account.php:589 +#: src/Module/Settings/Account.php:580 msgid "" "Your contacts may write posts on your profile wall. These posts will be " "distributed to your contacts" msgstr "Je contacten kunnen berichten schrijven op je tijdslijn. Deze berichten zullen verspreid worden naar je contacten" -#: src/Module/Settings/Account.php:590 +#: src/Module/Settings/Account.php:581 msgid "Allow friends to tag your posts?" msgstr "Sta vrienden toe om jouw berichten te labelen?" -#: src/Module/Settings/Account.php:590 +#: src/Module/Settings/Account.php:581 msgid "Your contacts can add additional tags to your posts." msgstr "Je contacten kunnen tags toevoegen aan je berichten." -#: src/Module/Settings/Account.php:591 +#: src/Module/Settings/Account.php:582 msgid "Default privacy circle for new contacts" msgstr "" -#: src/Module/Settings/Account.php:592 +#: src/Module/Settings/Account.php:583 msgid "Default privacy circle for new group contacts" msgstr "" -#: src/Module/Settings/Account.php:593 +#: src/Module/Settings/Account.php:584 msgid "Default Post Permissions" msgstr "Standaard rechten voor nieuwe berichten" -#: src/Module/Settings/Account.php:597 +#: src/Module/Settings/Account.php:588 msgid "Expiration settings" msgstr "Vervalinstellingen" -#: src/Module/Settings/Account.php:598 +#: src/Module/Settings/Account.php:589 msgid "Automatically expire posts after this many days:" msgstr "Laat berichten automatisch vervallen na zo veel dagen:" -#: src/Module/Settings/Account.php:598 +#: src/Module/Settings/Account.php:589 msgid "If empty, posts will not expire. Expired posts will be deleted" msgstr "Berichten zullen niet vervallen indien leeg. Vervallen berichten zullen worden verwijderd." -#: src/Module/Settings/Account.php:599 +#: src/Module/Settings/Account.php:590 msgid "Expire posts" msgstr "Verlopen berichten" -#: src/Module/Settings/Account.php:599 +#: src/Module/Settings/Account.php:590 msgid "When activated, posts and comments will be expired." msgstr "Indien geactiveerd, zullen berichten en opmerkingen verlopen." -#: src/Module/Settings/Account.php:600 +#: src/Module/Settings/Account.php:591 msgid "Expire personal notes" msgstr "Verloop persoonlijke notities" -#: src/Module/Settings/Account.php:600 +#: src/Module/Settings/Account.php:591 msgid "" "When activated, the personal notes on your profile page will be expired." msgstr "Indien geactiveerd, verlopen de persoonlijke notities op uw profielpagina." -#: src/Module/Settings/Account.php:601 +#: src/Module/Settings/Account.php:592 msgid "Expire starred posts" msgstr "Berichten met ster laten vervallen" -#: src/Module/Settings/Account.php:601 +#: src/Module/Settings/Account.php:592 msgid "" "Starring posts keeps them from being expired. That behaviour is overwritten " "by this setting." msgstr "Berichten met een ster verhinderen dat ze verlopen. Dat gedrag wordt door deze instelling overschreven." -#: src/Module/Settings/Account.php:602 +#: src/Module/Settings/Account.php:593 msgid "Only expire posts by others" msgstr "Laat alleen berichten van anderen verlopen" -#: src/Module/Settings/Account.php:602 +#: src/Module/Settings/Account.php:593 msgid "" "When activated, your own posts never expire. Then the settings above are " "only valid for posts you received." msgstr "Indien geactiveerd, vervallen je eigen berichten nooit. Dan zijn bovenstaande instellingen alleen geldig voor berichten die je hebt ontvangen." -#: src/Module/Settings/Account.php:605 +#: src/Module/Settings/Account.php:596 msgid "Notification Settings" msgstr "Notificatie Instellingen" -#: src/Module/Settings/Account.php:606 +#: src/Module/Settings/Account.php:597 msgid "Send a notification email when:" msgstr "Stuur een notificatie e-mail wanneer:" -#: src/Module/Settings/Account.php:607 +#: src/Module/Settings/Account.php:598 msgid "You receive an introduction" msgstr "Je ontvangt een vriendschaps- of connectieverzoek" -#: src/Module/Settings/Account.php:608 +#: src/Module/Settings/Account.php:599 msgid "Your introductions are confirmed" msgstr "Jouw vriendschaps- of connectieverzoeken zijn bevestigd" -#: src/Module/Settings/Account.php:609 +#: src/Module/Settings/Account.php:600 msgid "Someone writes on your profile wall" msgstr "Iemand iets op je tijdlijn schrijft" -#: src/Module/Settings/Account.php:610 +#: src/Module/Settings/Account.php:601 msgid "Someone writes a followup comment" msgstr "Iemand een reactie schrijft" -#: src/Module/Settings/Account.php:611 +#: src/Module/Settings/Account.php:602 msgid "You receive a private message" msgstr "Je een privé-bericht ontvangt" -#: src/Module/Settings/Account.php:612 +#: src/Module/Settings/Account.php:603 msgid "You receive a friend suggestion" msgstr "Je een suggestie voor een vriendschap ontvangt" -#: src/Module/Settings/Account.php:613 +#: src/Module/Settings/Account.php:604 msgid "You are tagged in a post" msgstr "Je expliciet in een bericht bent genoemd" -#: src/Module/Settings/Account.php:615 +#: src/Module/Settings/Account.php:606 msgid "Create a desktop notification when:" msgstr "" -#: src/Module/Settings/Account.php:616 +#: src/Module/Settings/Account.php:607 msgid "Someone tagged you" msgstr "" -#: src/Module/Settings/Account.php:617 +#: src/Module/Settings/Account.php:608 msgid "Someone directly commented on your post" msgstr "" -#: src/Module/Settings/Account.php:618 +#: src/Module/Settings/Account.php:609 msgid "Someone liked your content" msgstr "" -#: src/Module/Settings/Account.php:618 src/Module/Settings/Account.php:619 +#: src/Module/Settings/Account.php:609 src/Module/Settings/Account.php:610 msgid "Can only be enabled, when the direct comment notification is enabled." msgstr "" -#: src/Module/Settings/Account.php:619 +#: src/Module/Settings/Account.php:610 msgid "Someone shared your content" msgstr "" -#: src/Module/Settings/Account.php:620 +#: src/Module/Settings/Account.php:611 msgid "Someone commented in your thread" msgstr "" -#: src/Module/Settings/Account.php:621 +#: src/Module/Settings/Account.php:612 msgid "Someone commented in a thread where you commented" msgstr "" -#: src/Module/Settings/Account.php:622 +#: src/Module/Settings/Account.php:613 msgid "Someone commented in a thread where you interacted" msgstr "" -#: src/Module/Settings/Account.php:624 +#: src/Module/Settings/Account.php:615 msgid "Activate desktop notifications" msgstr "Activeer desktop notificaties" -#: src/Module/Settings/Account.php:624 +#: src/Module/Settings/Account.php:615 msgid "Show desktop popup on new notifications" msgstr "Toon desktop pop-up bij nieuwe notificaties" -#: src/Module/Settings/Account.php:628 +#: src/Module/Settings/Account.php:619 msgid "Text-only notification emails" msgstr "Alleen-tekst notificatie emails" -#: src/Module/Settings/Account.php:630 +#: src/Module/Settings/Account.php:621 msgid "Send text only notification emails, without the html part" msgstr "Stuur alleen-tekst notificatie emails, zonder het html gedeelte" -#: src/Module/Settings/Account.php:634 +#: src/Module/Settings/Account.php:625 msgid "Show detailled notifications" msgstr "Toon gedetailleerde notificaties" -#: src/Module/Settings/Account.php:636 +#: src/Module/Settings/Account.php:627 msgid "" "Per default, notifications are condensed to a single notification per item. " "When enabled every notification is displayed." msgstr "Standaard worden notificaties samengevoegd in een enkele notificatie per item. Als je deze parameter activeert wordt elke notificatie getoond." -#: src/Module/Settings/Account.php:640 +#: src/Module/Settings/Account.php:631 msgid "Show notifications of ignored contacts" msgstr "" -#: src/Module/Settings/Account.php:642 +#: src/Module/Settings/Account.php:633 msgid "" "You don't see posts from ignored contacts. But you still see their comments." " This setting controls if you want to still receive regular notifications " "that are caused by ignored contacts or not." msgstr "" -#: src/Module/Settings/Account.php:645 +#: src/Module/Settings/Account.php:636 msgid "Advanced Account/Page Type Settings" msgstr "Geavanceerde Account/Pagina Type Instellingen" -#: src/Module/Settings/Account.php:646 +#: src/Module/Settings/Account.php:637 msgid "Change the behaviour of this account for special situations" msgstr "Pas het gedrag van dit account aan voor speciale situaties" -#: src/Module/Settings/Account.php:649 +#: src/Module/Settings/Account.php:640 msgid "Import Contacts" msgstr "Importeer contacten" -#: src/Module/Settings/Account.php:650 +#: src/Module/Settings/Account.php:641 msgid "" "Upload a CSV file that contains the handle of your followed accounts in the " "first column you exported from the old account." msgstr "Upload een CSV-bestand met de handle van uw gevolgde gebruikers in de eerste kolom die u uit de oude gebruiker hebt geëxporteerd." -#: src/Module/Settings/Account.php:651 +#: src/Module/Settings/Account.php:642 msgid "Upload File" msgstr "Upload bestand" -#: src/Module/Settings/Account.php:654 +#: src/Module/Settings/Account.php:645 msgid "Relocate" msgstr "Verhuis" -#: src/Module/Settings/Account.php:655 +#: src/Module/Settings/Account.php:646 msgid "" "If you have moved this profile from another server, and some of your " "contacts don't receive your updates, try pushing this button." msgstr "Als je je profiel van een andere server hebt verhuisd, en er zijn contacten die geen updates van je ontvangen, probeer dan eens deze knop." -#: src/Module/Settings/Account.php:656 +#: src/Module/Settings/Account.php:647 msgid "Resend relocate message to contacts" msgstr "Stuur verhuis boodschap naar contacten" -#: src/Module/Settings/Addons.php:86 +#: src/Module/Settings/Addons.php:72 msgid "Addon Settings" msgstr "Addon instellingen" -#: src/Module/Settings/Addons.php:87 +#: src/Module/Settings/Addons.php:73 msgid "No Addon settings configured" msgstr "Geen Addon instellingen geconfigureerd" -#: src/Module/Settings/Channels.php:148 +#: src/Module/Settings/Channels.php:134 msgid "" "This page can be used to define the channels that will automatically be " "reshared by your account." msgstr "" -#: src/Module/Settings/Channels.php:153 +#: src/Module/Settings/Channels.php:139 msgid "This page can be used to define your own channels." msgstr "" -#: src/Module/Settings/Channels.php:182 +#: src/Module/Settings/Channels.php:168 msgid "Publish" msgstr "" -#: src/Module/Settings/Channels.php:182 +#: src/Module/Settings/Channels.php:168 msgid "" "When selected, the channel results are reshared. This only works for public " "ActivityPub posts from the public timeline or the user defined circles." msgstr "" -#: src/Module/Settings/Channels.php:190 src/Module/Settings/Channels.php:211 -#: src/Module/Settings/Display.php:338 +#: src/Module/Settings/Channels.php:176 src/Module/Settings/Channels.php:197 +#: src/Module/Settings/Display.php:324 msgid "Label" msgstr "" -#: src/Module/Settings/Channels.php:191 src/Module/Settings/Channels.php:212 -#: src/Module/Settings/Display.php:339 -#: src/Module/Settings/TwoFactor/AppSpecific.php:137 +#: src/Module/Settings/Channels.php:177 src/Module/Settings/Channels.php:198 +#: src/Module/Settings/Display.php:325 +#: src/Module/Settings/TwoFactor/AppSpecific.php:123 msgid "Description" msgstr "Omschrijving" -#: src/Module/Settings/Channels.php:192 src/Module/Settings/Channels.php:213 +#: src/Module/Settings/Channels.php:178 src/Module/Settings/Channels.php:199 msgid "Access Key" msgstr "" -#: src/Module/Settings/Channels.php:193 src/Module/Settings/Channels.php:214 +#: src/Module/Settings/Channels.php:179 src/Module/Settings/Channels.php:200 msgid "Circle/Channel" msgstr "" -#: src/Module/Settings/Channels.php:194 src/Module/Settings/Channels.php:215 +#: src/Module/Settings/Channels.php:180 src/Module/Settings/Channels.php:201 msgid "Include Tags" msgstr "" -#: src/Module/Settings/Channels.php:195 src/Module/Settings/Channels.php:216 +#: src/Module/Settings/Channels.php:181 src/Module/Settings/Channels.php:202 msgid "Exclude Tags" msgstr "" -#: src/Module/Settings/Channels.php:196 src/Module/Settings/Channels.php:217 +#: src/Module/Settings/Channels.php:182 src/Module/Settings/Channels.php:203 msgid "Minimum Size" msgstr "" -#: src/Module/Settings/Channels.php:197 src/Module/Settings/Channels.php:218 +#: src/Module/Settings/Channels.php:183 src/Module/Settings/Channels.php:204 msgid "Maximum Size" msgstr "" -#: src/Module/Settings/Channels.php:198 src/Module/Settings/Channels.php:219 +#: src/Module/Settings/Channels.php:184 src/Module/Settings/Channels.php:205 msgid "Full Text Search" msgstr "" -#: src/Module/Settings/Channels.php:202 src/Module/Settings/Channels.php:223 +#: src/Module/Settings/Channels.php:188 src/Module/Settings/Channels.php:209 msgid "Select all languages that you want to see in this channel." msgstr "" -#: src/Module/Settings/Channels.php:204 +#: src/Module/Settings/Channels.php:190 msgid "Delete channel" msgstr "" -#: src/Module/Settings/Channels.php:204 +#: src/Module/Settings/Channels.php:190 msgid "Check to delete this entry from the channel list" msgstr "" -#: src/Module/Settings/Channels.php:211 +#: src/Module/Settings/Channels.php:197 msgid "Short name for the channel. It is displayed on the channels widget." msgstr "" -#: src/Module/Settings/Channels.php:212 +#: src/Module/Settings/Channels.php:198 msgid "This should describe the content of the channel in a few word." msgstr "" -#: src/Module/Settings/Channels.php:213 +#: src/Module/Settings/Channels.php:199 msgid "" "When you want to access this channel via an access key, you can define it " "here. Pay attention to not use an already used one." msgstr "" -#: src/Module/Settings/Channels.php:214 +#: src/Module/Settings/Channels.php:200 msgid "Select a circle or channel, that your channel should be based on." msgstr "" -#: src/Module/Settings/Channels.php:215 +#: src/Module/Settings/Channels.php:201 msgid "" "Comma separated list of tags. A post will be used when it contains any of " "the listed tags." msgstr "" -#: src/Module/Settings/Channels.php:216 +#: src/Module/Settings/Channels.php:202 msgid "" "Comma separated list of tags. If a post contain any of these tags, then it " "will not be part of nthis channel." msgstr "" -#: src/Module/Settings/Channels.php:217 +#: src/Module/Settings/Channels.php:203 msgid "" "Minimum post size. Leave empty for no minimum size. The size is calculated " "without links, attached posts, mentions or hashtags." msgstr "" -#: src/Module/Settings/Channels.php:218 +#: src/Module/Settings/Channels.php:204 msgid "" "Maximum post size. Leave empty for no maximum size. The size is calculated " "without links, attached posts, mentions or hashtags." msgstr "" -#: src/Module/Settings/Channels.php:219 +#: src/Module/Settings/Channels.php:205 #, php-format msgid "" "Search terms for the body, supports the \"boolean mode\" operators from " @@ -10342,576 +10336,589 @@ msgid "" "keywords: %s" msgstr "" -#: src/Module/Settings/Channels.php:220 +#: src/Module/Settings/Channels.php:206 msgid "Check to display images in the channel." msgstr "" -#: src/Module/Settings/Channels.php:221 +#: src/Module/Settings/Channels.php:207 msgid "Check to display videos in the channel." msgstr "" -#: src/Module/Settings/Channels.php:222 +#: src/Module/Settings/Channels.php:208 msgid "Check to display audio in the channel." msgstr "" -#: src/Module/Settings/Channels.php:227 +#: src/Module/Settings/Channels.php:213 msgid "Add new entry to the channel list" msgstr "" -#: src/Module/Settings/Channels.php:228 +#: src/Module/Settings/Channels.php:214 msgid "Add" msgstr "Toevoegen" -#: src/Module/Settings/Channels.php:230 +#: src/Module/Settings/Channels.php:216 msgid "Current Entries in the channel list" msgstr "" -#: src/Module/Settings/Channels.php:233 +#: src/Module/Settings/Channels.php:219 msgid "Delete entry from the channel list" msgstr "" -#: src/Module/Settings/Channels.php:234 +#: src/Module/Settings/Channels.php:220 msgid "Delete entry from the channel list?" msgstr "" -#: src/Module/Settings/Connectors.php:120 +#: src/Module/Settings/Connectors.php:108 msgid "Failed to connect with email account using the settings provided." msgstr "Ik kon geen verbinding maken met het e-mail account met de gegeven instellingen." -#: src/Module/Settings/Connectors.php:166 -#: src/Module/Settings/Connectors.php:167 +#: src/Module/Settings/Connectors.php:155 +#: src/Module/Settings/Connectors.php:156 msgid "Diaspora (Socialhome, Hubzilla)" msgstr "Diaspora (Socialhome, Hubzilla)" -#: src/Module/Settings/Connectors.php:166 -#: src/Module/Settings/Connectors.php:170 +#: src/Module/Settings/Connectors.php:155 #, php-format msgid "Built-in support for %s connectivity is enabled" msgstr "" -#: src/Module/Settings/Connectors.php:167 -#: src/Module/Settings/Connectors.php:169 +#: src/Module/Settings/Connectors.php:156 #, php-format msgid "Built-in support for %s connectivity is disabled" msgstr "" -#: src/Module/Settings/Connectors.php:169 -#: src/Module/Settings/Connectors.php:170 -msgid "OStatus (GNU Social)" -msgstr "" - -#: src/Module/Settings/Connectors.php:182 +#: src/Module/Settings/Connectors.php:167 msgid "Email access is disabled on this site." msgstr "E-mailtoegang is op deze website uitgeschakeld." -#: src/Module/Settings/Connectors.php:197 -#: src/Module/Settings/Connectors.php:244 +#: src/Module/Settings/Connectors.php:182 +#: src/Module/Settings/Connectors.php:233 msgid "None" msgstr "Geen" -#: src/Module/Settings/Connectors.php:209 +#: src/Module/Settings/Connectors.php:186 +msgid "Default (Mastodon will display the title and a link to the post)" +msgstr "" + +#: src/Module/Settings/Connectors.php:187 +msgid "" +"Use the summary (Mastodon and some others will treat it as content warning)" +msgstr "" + +#: src/Module/Settings/Connectors.php:188 +msgid "Embed the title in the body" +msgstr "" + +#: src/Module/Settings/Connectors.php:199 msgid "General Social Media Settings" msgstr "Algemene Sociale Media Instellingen" -#: src/Module/Settings/Connectors.php:212 +#: src/Module/Settings/Connectors.php:202 msgid "Followed content scope" msgstr "" -#: src/Module/Settings/Connectors.php:214 +#: src/Module/Settings/Connectors.php:204 msgid "" "By default, conversations in which your follows participated but didn't " "start will be shown in your timeline. You can turn this behavior off, or " "expand it to the conversations in which your follows liked a post." msgstr "" -#: src/Module/Settings/Connectors.php:216 +#: src/Module/Settings/Connectors.php:206 msgid "Only conversations my follows started" msgstr "" -#: src/Module/Settings/Connectors.php:217 +#: src/Module/Settings/Connectors.php:207 msgid "Conversations my follows started or commented on (default)" msgstr "" -#: src/Module/Settings/Connectors.php:218 +#: src/Module/Settings/Connectors.php:208 msgid "Any conversation my follows interacted with, including likes" msgstr "" -#: src/Module/Settings/Connectors.php:221 +#: src/Module/Settings/Connectors.php:211 msgid "Collapse sensitive posts" msgstr "" -#: src/Module/Settings/Connectors.php:221 +#: src/Module/Settings/Connectors.php:211 msgid "" "If a post is marked as \"sensitive\", it will be displayed in a collapsed " "state, if this option is enabled." msgstr "" -#: src/Module/Settings/Connectors.php:222 +#: src/Module/Settings/Connectors.php:212 msgid "Enable intelligent shortening" msgstr "" -#: src/Module/Settings/Connectors.php:222 +#: src/Module/Settings/Connectors.php:212 msgid "" "Normally the system tries to find the best link to add to shortened posts. " "If disabled, every shortened post will always point to the original " "friendica post." msgstr "" -#: src/Module/Settings/Connectors.php:223 +#: src/Module/Settings/Connectors.php:213 msgid "Enable simple text shortening" msgstr "" -#: src/Module/Settings/Connectors.php:223 +#: src/Module/Settings/Connectors.php:213 msgid "" "Normally the system shortens posts at the next line feed. If this option is " "enabled then the system will shorten the text at the maximum character " "limit." msgstr "" -#: src/Module/Settings/Connectors.php:224 +#: src/Module/Settings/Connectors.php:214 msgid "Attach the link title" msgstr "Voeg de linktitel toe" -#: src/Module/Settings/Connectors.php:224 +#: src/Module/Settings/Connectors.php:214 msgid "" "When activated, the title of the attached link will be added as a title on " "posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that" " share feed content." msgstr "Indien geactiveerd, wordt de titel van de bijgevoegde link toegevoegd als titel op berichten op Diaspora. Dit is vooral handig bij contacten op afstand die zelf feed-inhoud delen." -#: src/Module/Settings/Connectors.php:225 +#: src/Module/Settings/Connectors.php:215 msgid "API: Use spoiler field as title" msgstr "" -#: src/Module/Settings/Connectors.php:225 +#: src/Module/Settings/Connectors.php:215 msgid "" "When activated, the \"spoiler_text\" field in the API will be used for the " "title on standalone posts. When deactivated it will be used for spoiler " "text. For comments it will always be used for spoiler text." msgstr "" -#: src/Module/Settings/Connectors.php:226 +#: src/Module/Settings/Connectors.php:216 msgid "API: Automatically links at the end of the post as attached posts" msgstr "" -#: src/Module/Settings/Connectors.php:226 +#: src/Module/Settings/Connectors.php:216 msgid "" "When activated, added links at the end of the post react the same way as " "added links in the web interface." msgstr "" -#: src/Module/Settings/Connectors.php:227 +#: src/Module/Settings/Connectors.php:217 +msgid "Article Mode" +msgstr "" + +#: src/Module/Settings/Connectors.php:217 +msgid "" +"Controls how posts with titles are transmitted. Mastodon and its forks don't" +" display the content of these posts if the post is created in the correct " +"(default) way." +msgstr "" + +#: src/Module/Settings/Connectors.php:218 msgid "Your legacy ActivityPub/GNU Social account" msgstr "" -#: src/Module/Settings/Connectors.php:227 +#: src/Module/Settings/Connectors.php:218 msgid "" "If you enter your old account name from an ActivityPub based system or your " "GNU Social/Statusnet account name here (in the format user@domain.tld), your" " contacts will be added automatically. The field will be emptied when done." msgstr "" -#: src/Module/Settings/Connectors.php:229 -msgid "Repair OStatus subscriptions" -msgstr "Herstel OStatus inschrijvingen" - -#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Connectors.php:222 msgid "Email/Mailbox Setup" msgstr "E-mail Instellen" -#: src/Module/Settings/Connectors.php:234 +#: src/Module/Settings/Connectors.php:223 msgid "" "If you wish to communicate with email contacts using this service " "(optional), please specify how to connect to your mailbox." msgstr "Als je wilt communiceren met e-mail contacten via deze dienst (optioneel), moet je hier opgeven hoe ik jouw mailbox kan bereiken." -#: src/Module/Settings/Connectors.php:235 +#: src/Module/Settings/Connectors.php:224 msgid "Last successful email check:" msgstr "Laatste succesvolle e-mail controle:" -#: src/Module/Settings/Connectors.php:237 +#: src/Module/Settings/Connectors.php:226 msgid "IMAP server name:" msgstr "IMAP server naam:" -#: src/Module/Settings/Connectors.php:238 +#: src/Module/Settings/Connectors.php:227 msgid "IMAP port:" msgstr "IMAP poort:" -#: src/Module/Settings/Connectors.php:239 +#: src/Module/Settings/Connectors.php:228 msgid "Security:" msgstr "Beveiliging:" -#: src/Module/Settings/Connectors.php:240 +#: src/Module/Settings/Connectors.php:229 msgid "Email login name:" msgstr "E-mail login naam:" -#: src/Module/Settings/Connectors.php:241 +#: src/Module/Settings/Connectors.php:230 msgid "Email password:" msgstr "E-mail wachtwoord:" -#: src/Module/Settings/Connectors.php:242 +#: src/Module/Settings/Connectors.php:231 msgid "Reply-to address:" msgstr "Antwoord adres:" -#: src/Module/Settings/Connectors.php:243 +#: src/Module/Settings/Connectors.php:232 msgid "Send public posts to all email contacts:" msgstr "Openbare posts naar alle e-mail contacten versturen:" -#: src/Module/Settings/Connectors.php:244 +#: src/Module/Settings/Connectors.php:233 msgid "Action after import:" msgstr "Actie na importeren:" -#: src/Module/Settings/Connectors.php:244 +#: src/Module/Settings/Connectors.php:233 msgid "Move to folder" msgstr "Naar map verplaatsen" -#: src/Module/Settings/Connectors.php:245 +#: src/Module/Settings/Connectors.php:234 msgid "Move to folder:" msgstr "Verplaatsen naar map:" -#: src/Module/Settings/Delegation.php:73 +#: src/Module/Settings/Delegation.php:59 msgid "Delegation successfully granted." msgstr "Delegatie met succes verleend." -#: src/Module/Settings/Delegation.php:75 +#: src/Module/Settings/Delegation.php:61 msgid "Parent user not found, unavailable or password doesn't match." msgstr "Brongebruiker niet gevonden, niet beschikbaar of wachtwoord komt niet overeen." -#: src/Module/Settings/Delegation.php:79 +#: src/Module/Settings/Delegation.php:65 msgid "Delegation successfully revoked." msgstr "Delegatie is ingetrokken." -#: src/Module/Settings/Delegation.php:98 -#: src/Module/Settings/Delegation.php:120 +#: src/Module/Settings/Delegation.php:84 +#: src/Module/Settings/Delegation.php:106 msgid "" "Delegated administrators can view but not change delegation permissions." msgstr "Gedelegeerde beheerders kunnen delegatierechten bekijken, maar niet wijzigen." -#: src/Module/Settings/Delegation.php:112 +#: src/Module/Settings/Delegation.php:98 msgid "Delegate user not found." msgstr "Gemachtigde gebruiker niet gevonden." -#: src/Module/Settings/Delegation.php:169 +#: src/Module/Settings/Delegation.php:155 msgid "No parent user" msgstr "Ouderlijke gebruiker ontbreekt" -#: src/Module/Settings/Delegation.php:180 -#: src/Module/Settings/Delegation.php:191 +#: src/Module/Settings/Delegation.php:166 +#: src/Module/Settings/Delegation.php:177 msgid "Parent User" msgstr "Ouderlijke gebruiker" -#: src/Module/Settings/Delegation.php:188 +#: src/Module/Settings/Delegation.php:174 msgid "Additional Accounts" msgstr "Toegevoegde gebruikers" -#: src/Module/Settings/Delegation.php:189 +#: src/Module/Settings/Delegation.php:175 msgid "" "Register additional accounts that are automatically connected to your " "existing account so you can manage them from this account." msgstr "Registreer extra gebruikers die automatisch zijn verbonden met uw bestaande gebruiker, zodat u ze vanuit deze gebruiker kunt beheren." -#: src/Module/Settings/Delegation.php:190 +#: src/Module/Settings/Delegation.php:176 msgid "Register an additional account" msgstr "Registreer een toegevoegde gebruiker" -#: src/Module/Settings/Delegation.php:192 +#: src/Module/Settings/Delegation.php:178 msgid "" "Parent users have total control about this account, including the account " "settings. Please double check whom you give this access." msgstr "Ouderlijke gebruikers hebben totale controle over dit account, de account instellingen inbegrepen. Dubbel check dus alstublieft aan wie je deze toegang geeft." -#: src/Module/Settings/Delegation.php:195 +#: src/Module/Settings/Delegation.php:181 msgid "Delegates" msgstr "Gemachtigden" -#: src/Module/Settings/Delegation.php:196 +#: src/Module/Settings/Delegation.php:182 msgid "" "Delegates are able to manage all aspects of this account/page except for " "basic account settings. Please do not delegate your personal account to " "anybody that you do not trust completely." msgstr "Personen waaraan het beheer is uitbesteed kunnen alle onderdelen van een account/pagina beheren, behalve de basisinstellingen van een account. Besteed je persoonlijke account daarom niet uit aan personen die je niet volledig vertrouwt." -#: src/Module/Settings/Delegation.php:197 +#: src/Module/Settings/Delegation.php:183 msgid "Existing Page Delegates" msgstr "Bestaande personen waaraan het paginabeheer is uitbesteed" -#: src/Module/Settings/Delegation.php:198 +#: src/Module/Settings/Delegation.php:184 msgid "Potential Delegates" msgstr "Mogelijke personen waaraan het paginabeheer kan worden uitbesteed " -#: src/Module/Settings/Delegation.php:199 +#: src/Module/Settings/Delegation.php:185 msgid "No entries." msgstr "Geen gegevens." -#: src/Module/Settings/Display.php:183 +#: src/Module/Settings/Display.php:169 msgid "The theme you chose isn't available." msgstr "Het thema dat je koos is niet beschikbaar" -#: src/Module/Settings/Display.php:223 +#: src/Module/Settings/Display.php:209 #, php-format msgid "%s - (Unsupported)" msgstr "%s - (Niet ondersteund)" -#: src/Module/Settings/Display.php:260 +#: src/Module/Settings/Display.php:246 msgid "No preview" msgstr "" -#: src/Module/Settings/Display.php:261 +#: src/Module/Settings/Display.php:247 msgid "No image" msgstr "" -#: src/Module/Settings/Display.php:262 +#: src/Module/Settings/Display.php:248 msgid "Small Image" msgstr "" -#: src/Module/Settings/Display.php:263 +#: src/Module/Settings/Display.php:249 msgid "Large Image" msgstr "" -#: src/Module/Settings/Display.php:308 +#: src/Module/Settings/Display.php:294 msgid "Display Settings" msgstr "Scherminstellingen" -#: src/Module/Settings/Display.php:310 +#: src/Module/Settings/Display.php:296 msgid "General Theme Settings" msgstr "Algemene Thema Instellingen" -#: src/Module/Settings/Display.php:311 +#: src/Module/Settings/Display.php:297 msgid "Custom Theme Settings" msgstr "Speciale Thema Instellingen" -#: src/Module/Settings/Display.php:312 +#: src/Module/Settings/Display.php:298 msgid "Content Settings" msgstr "Content Instellingen" -#: src/Module/Settings/Display.php:313 view/theme/duepuntozero/config.php:86 -#: view/theme/frio/config.php:151 view/theme/quattro/config.php:88 -#: view/theme/vier/config.php:136 +#: src/Module/Settings/Display.php:299 view/theme/duepuntozero/config.php:74 +#: view/theme/frio/config.php:139 view/theme/quattro/config.php:76 +#: view/theme/vier/config.php:124 msgid "Theme settings" msgstr "Thema-instellingen" -#: src/Module/Settings/Display.php:314 +#: src/Module/Settings/Display.php:300 msgid "Timelines" msgstr "" -#: src/Module/Settings/Display.php:321 +#: src/Module/Settings/Display.php:307 msgid "Display Theme:" msgstr "Schermthema:" -#: src/Module/Settings/Display.php:322 +#: src/Module/Settings/Display.php:308 msgid "Mobile Theme:" msgstr "Mobiel thema:" -#: src/Module/Settings/Display.php:325 +#: src/Module/Settings/Display.php:311 msgid "Number of items to display per page:" msgstr "Aantal items te tonen per pagina:" -#: src/Module/Settings/Display.php:325 src/Module/Settings/Display.php:326 +#: src/Module/Settings/Display.php:311 src/Module/Settings/Display.php:312 msgid "Maximum of 100 items" msgstr "Maximum 100 items" -#: src/Module/Settings/Display.php:326 +#: src/Module/Settings/Display.php:312 msgid "Number of items to display per page when viewed from mobile device:" msgstr "Aantal items per pagina als je een mobiel toestel gebruikt:" -#: src/Module/Settings/Display.php:327 +#: src/Module/Settings/Display.php:313 msgid "Update browser every xx seconds" msgstr "Browser elke xx seconden verversen" -#: src/Module/Settings/Display.php:327 +#: src/Module/Settings/Display.php:313 msgid "Minimum of 10 seconds. Enter -1 to disable it." msgstr "Minimum 10 seconden. Geef -1 op om te deactiveren." -#: src/Module/Settings/Display.php:328 +#: src/Module/Settings/Display.php:314 msgid "Display emoticons" msgstr "" -#: src/Module/Settings/Display.php:328 +#: src/Module/Settings/Display.php:314 msgid "When enabled, emoticons are replaced with matching symbols." msgstr "" -#: src/Module/Settings/Display.php:329 +#: src/Module/Settings/Display.php:315 msgid "Infinite scroll" msgstr "Oneindig scrollen" -#: src/Module/Settings/Display.php:329 +#: src/Module/Settings/Display.php:315 msgid "Automatic fetch new items when reaching the page end." msgstr "" -#: src/Module/Settings/Display.php:330 +#: src/Module/Settings/Display.php:316 msgid "Enable Smart Threading" msgstr "" -#: src/Module/Settings/Display.php:330 +#: src/Module/Settings/Display.php:316 msgid "Enable the automatic suppression of extraneous thread indentation." msgstr "" -#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/Display.php:317 msgid "Display the Dislike feature" msgstr "" -#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/Display.php:317 msgid "" "Display the Dislike button and dislike reactions on posts and comments." msgstr "" -#: src/Module/Settings/Display.php:332 +#: src/Module/Settings/Display.php:318 msgid "Display the resharer" msgstr "" -#: src/Module/Settings/Display.php:332 +#: src/Module/Settings/Display.php:318 msgid "Display the first resharer as icon and text on a reshared item." msgstr "" -#: src/Module/Settings/Display.php:333 +#: src/Module/Settings/Display.php:319 msgid "Stay local" msgstr "" -#: src/Module/Settings/Display.php:333 +#: src/Module/Settings/Display.php:319 msgid "Don't go to a remote system when following a contact link." msgstr "" -#: src/Module/Settings/Display.php:334 +#: src/Module/Settings/Display.php:320 msgid "Show the post deletion checkbox" msgstr "" -#: src/Module/Settings/Display.php:334 +#: src/Module/Settings/Display.php:320 msgid "Display the checkbox for the post deletion on the network page." msgstr "" -#: src/Module/Settings/Display.php:335 +#: src/Module/Settings/Display.php:321 msgid "DIsplay the event list" msgstr "" -#: src/Module/Settings/Display.php:335 +#: src/Module/Settings/Display.php:321 msgid "Display the birthday reminder and event list on the network page." msgstr "" -#: src/Module/Settings/Display.php:336 +#: src/Module/Settings/Display.php:322 msgid "Link preview mode" msgstr "" -#: src/Module/Settings/Display.php:336 +#: src/Module/Settings/Display.php:322 msgid "Appearance of the link preview that is added to each post with a link." msgstr "" -#: src/Module/Settings/Display.php:341 +#: src/Module/Settings/Display.php:327 msgid "Bookmark" msgstr "" -#: src/Module/Settings/Display.php:343 +#: src/Module/Settings/Display.php:329 msgid "" "Enable timelines that you want to see in the channels widget. Bookmark " "timelines that you want to see in the top menu." msgstr "" -#: src/Module/Settings/Display.php:345 +#: src/Module/Settings/Display.php:331 msgid "Channel languages:" msgstr "" -#: src/Module/Settings/Display.php:345 +#: src/Module/Settings/Display.php:331 msgid "Select all languages that you want to see in your channels." msgstr "" -#: src/Module/Settings/Display.php:347 +#: src/Module/Settings/Display.php:333 msgid "Beginning of week:" msgstr "Begin van de week:" -#: src/Module/Settings/Display.php:348 +#: src/Module/Settings/Display.php:334 msgid "Default calendar view:" msgstr "" -#: src/Module/Settings/Features.php:73 +#: src/Module/Settings/Features.php:59 msgid "Additional Features" msgstr "Extra functies" -#: src/Module/Settings/OAuth.php:71 +#: src/Module/Settings/OAuth.php:57 msgid "Connected Apps" msgstr "Verbonden applicaties" -#: src/Module/Settings/OAuth.php:75 +#: src/Module/Settings/OAuth.php:61 msgid "Remove authorization" msgstr "Verwijder authorisatie" -#: src/Module/Settings/Profile/Index.php:116 +#: src/Module/Settings/Profile/Index.php:102 msgid "Display Name is required." msgstr "" -#: src/Module/Settings/Profile/Index.php:167 +#: src/Module/Settings/Profile/Index.php:156 msgid "Profile couldn't be updated." msgstr "Profiel kan niet worden bijgewerkt." -#: src/Module/Settings/Profile/Index.php:205 -#: src/Module/Settings/Profile/Index.php:226 +#: src/Module/Settings/Profile/Index.php:196 +#: src/Module/Settings/Profile/Index.php:217 msgid "Label:" msgstr "Label:" -#: src/Module/Settings/Profile/Index.php:206 -#: src/Module/Settings/Profile/Index.php:227 +#: src/Module/Settings/Profile/Index.php:197 +#: src/Module/Settings/Profile/Index.php:218 msgid "Value:" msgstr "Waarde:" -#: src/Module/Settings/Profile/Index.php:217 -#: src/Module/Settings/Profile/Index.php:238 +#: src/Module/Settings/Profile/Index.php:208 +#: src/Module/Settings/Profile/Index.php:229 msgid "Field Permissions" msgstr "Veldrechten" -#: src/Module/Settings/Profile/Index.php:218 -#: src/Module/Settings/Profile/Index.php:239 +#: src/Module/Settings/Profile/Index.php:209 +#: src/Module/Settings/Profile/Index.php:230 msgid "(click to open/close)" msgstr "(klik om te openen/sluiten)" -#: src/Module/Settings/Profile/Index.php:224 +#: src/Module/Settings/Profile/Index.php:215 msgid "Add a new profile field" msgstr "Voeg nieuw profielveld toe" -#: src/Module/Settings/Profile/Index.php:247 +#: src/Module/Settings/Profile/Index.php:238 msgid "" "The homepage is verified. A rel=\"me\" link back to your Friendica profile " "page was found on the homepage." msgstr "" -#: src/Module/Settings/Profile/Index.php:249 +#: src/Module/Settings/Profile/Index.php:240 #, php-format msgid "" "To verify your homepage, add a rel=\"me\" link to it, pointing to your " "profile URL (%s)." msgstr "" -#: src/Module/Settings/Profile/Index.php:255 +#: src/Module/Settings/Profile/Index.php:246 msgid "Profile Actions" msgstr "Profiel Acties" -#: src/Module/Settings/Profile/Index.php:256 +#: src/Module/Settings/Profile/Index.php:247 msgid "Edit Profile Details" msgstr "Profieldetails bewerken" -#: src/Module/Settings/Profile/Index.php:258 +#: src/Module/Settings/Profile/Index.php:249 msgid "Change Profile Photo" msgstr "Profielfoto wijzigen" -#: src/Module/Settings/Profile/Index.php:261 +#: src/Module/Settings/Profile/Index.php:252 msgid "Profile picture" msgstr "Profiel foto" -#: src/Module/Settings/Profile/Index.php:262 +#: src/Module/Settings/Profile/Index.php:253 msgid "Location" msgstr "Plaats" -#: src/Module/Settings/Profile/Index.php:263 src/Util/Temporal.php:97 -#: src/Util/Temporal.php:99 +#: src/Module/Settings/Profile/Index.php:254 src/Util/Temporal.php:83 +#: src/Util/Temporal.php:85 msgid "Miscellaneous" msgstr "Diversen" -#: src/Module/Settings/Profile/Index.php:264 +#: src/Module/Settings/Profile/Index.php:255 msgid "Custom Profile Fields" msgstr "Aangepaste profielvelden" -#: src/Module/Settings/Profile/Index.php:265 src/Module/Welcome.php:58 +#: src/Module/Settings/Profile/Index.php:256 src/Module/Welcome.php:44 msgid "Upload Profile Photo" msgstr "Profielfoto uploaden" -#: src/Module/Settings/Profile/Index.php:266 +#: src/Module/Settings/Profile/Index.php:257 #, php-format msgid "" "Custom fields appear on your profile page.
\n" @@ -10921,396 +10928,396 @@ msgid "" "\t\t\t\tNon-public fields can only be seen by the selected Friendica contacts or the Friendica contacts in the selected circles.
" msgstr "" -#: src/Module/Settings/Profile/Index.php:286 +#: src/Module/Settings/Profile/Index.php:277 msgid "Street Address:" msgstr "Postadres:" -#: src/Module/Settings/Profile/Index.php:287 +#: src/Module/Settings/Profile/Index.php:278 msgid "Locality/City:" msgstr "Gemeente/Stad:" -#: src/Module/Settings/Profile/Index.php:288 +#: src/Module/Settings/Profile/Index.php:279 msgid "Region/State:" msgstr "Regio/Staat:" -#: src/Module/Settings/Profile/Index.php:289 +#: src/Module/Settings/Profile/Index.php:280 msgid "Postal/Zip Code:" msgstr "Postcode:" -#: src/Module/Settings/Profile/Index.php:290 +#: src/Module/Settings/Profile/Index.php:281 msgid "Country:" msgstr "Land:" -#: src/Module/Settings/Profile/Index.php:292 +#: src/Module/Settings/Profile/Index.php:283 msgid "XMPP (Jabber) address:" msgstr "XMPP (Jabber) adres:" -#: src/Module/Settings/Profile/Index.php:292 +#: src/Module/Settings/Profile/Index.php:283 msgid "" "The XMPP address will be published so that people can follow you there." msgstr "" -#: src/Module/Settings/Profile/Index.php:293 +#: src/Module/Settings/Profile/Index.php:284 msgid "Matrix (Element) address:" msgstr "" -#: src/Module/Settings/Profile/Index.php:293 +#: src/Module/Settings/Profile/Index.php:284 msgid "" "The Matrix address will be published so that people can follow you there." msgstr "" -#: src/Module/Settings/Profile/Index.php:294 +#: src/Module/Settings/Profile/Index.php:285 msgid "Homepage URL:" msgstr "Adres tijdlijn:" -#: src/Module/Settings/Profile/Index.php:295 +#: src/Module/Settings/Profile/Index.php:286 msgid "Public Keywords:" msgstr "Publieke Sleutelwoorden:" -#: src/Module/Settings/Profile/Index.php:295 +#: src/Module/Settings/Profile/Index.php:286 msgid "(Used for suggesting potential friends, can be seen by others)" msgstr "(Gebruikt om mogelijke vrienden voor te stellen, kan door anderen gezien worden)" -#: src/Module/Settings/Profile/Index.php:296 +#: src/Module/Settings/Profile/Index.php:287 msgid "Private Keywords:" msgstr "Privé Sleutelwoorden:" -#: src/Module/Settings/Profile/Index.php:296 +#: src/Module/Settings/Profile/Index.php:287 msgid "(Used for searching profiles, never shown to others)" msgstr "(Gebruikt om profielen te zoeken, nooit aan anderen getoond)" -#: src/Module/Settings/Profile/Photo/Crop.php:107 -#: src/Module/Settings/Profile/Photo/Crop.php:125 -#: src/Module/Settings/Profile/Photo/Crop.php:143 -#: src/Module/Settings/Profile/Photo/Index.php:100 +#: src/Module/Settings/Profile/Photo/Crop.php:93 +#: src/Module/Settings/Profile/Photo/Crop.php:111 +#: src/Module/Settings/Profile/Photo/Crop.php:129 +#: src/Module/Settings/Profile/Photo/Index.php:86 #, php-format msgid "Image size reduction [%s] failed." msgstr "Verkleining van de afbeelding [%s] mislukt." -#: src/Module/Settings/Profile/Photo/Crop.php:150 +#: src/Module/Settings/Profile/Photo/Crop.php:136 msgid "" "Shift-reload the page or clear browser cache if the new photo does not " "display immediately." msgstr "Shift-herlaad de pagina, of maak de browser cache leeg als nieuwe foto's niet onmiddellijk verschijnen." -#: src/Module/Settings/Profile/Photo/Crop.php:155 +#: src/Module/Settings/Profile/Photo/Crop.php:141 msgid "Unable to process image" msgstr "Ik kan de afbeelding niet verwerken" -#: src/Module/Settings/Profile/Photo/Crop.php:174 +#: src/Module/Settings/Profile/Photo/Crop.php:160 msgid "Photo not found." msgstr "Foto niet gevonden." -#: src/Module/Settings/Profile/Photo/Crop.php:196 +#: src/Module/Settings/Profile/Photo/Crop.php:182 msgid "Profile picture successfully updated." msgstr "Profielfoto geüpdatet." -#: src/Module/Settings/Profile/Photo/Crop.php:222 -#: src/Module/Settings/Profile/Photo/Crop.php:226 +#: src/Module/Settings/Profile/Photo/Crop.php:208 +#: src/Module/Settings/Profile/Photo/Crop.php:212 msgid "Crop Image" msgstr "Afbeelding bijsnijden" -#: src/Module/Settings/Profile/Photo/Crop.php:223 +#: src/Module/Settings/Profile/Photo/Crop.php:209 msgid "Please adjust the image cropping for optimum viewing." msgstr "Pas het afsnijden van de afbeelding aan voor het beste resultaat." -#: src/Module/Settings/Profile/Photo/Crop.php:225 +#: src/Module/Settings/Profile/Photo/Crop.php:211 msgid "Use Image As Is" msgstr "Gebruik afbeelding zoals deze is" -#: src/Module/Settings/Profile/Photo/Index.php:46 +#: src/Module/Settings/Profile/Photo/Index.php:32 msgid "Missing uploaded image." msgstr "Ontbrekende geüploade afbeelding." -#: src/Module/Settings/Profile/Photo/Index.php:123 +#: src/Module/Settings/Profile/Photo/Index.php:109 msgid "Profile Picture Settings" msgstr "Profiel afbeelding instellingen" -#: src/Module/Settings/Profile/Photo/Index.php:124 +#: src/Module/Settings/Profile/Photo/Index.php:110 msgid "Current Profile Picture" msgstr "Huidige profielafbeelding" -#: src/Module/Settings/Profile/Photo/Index.php:125 +#: src/Module/Settings/Profile/Photo/Index.php:111 msgid "Upload Profile Picture" msgstr "Upload profiel afbeelding" -#: src/Module/Settings/Profile/Photo/Index.php:126 +#: src/Module/Settings/Profile/Photo/Index.php:112 msgid "Upload Picture:" msgstr "Upload afbeelding" -#: src/Module/Settings/Profile/Photo/Index.php:131 +#: src/Module/Settings/Profile/Photo/Index.php:117 msgid "or" msgstr "of" -#: src/Module/Settings/Profile/Photo/Index.php:133 +#: src/Module/Settings/Profile/Photo/Index.php:119 msgid "skip this step" msgstr "Deze stap overslaan" -#: src/Module/Settings/Profile/Photo/Index.php:135 +#: src/Module/Settings/Profile/Photo/Index.php:121 msgid "select a photo from your photo albums" msgstr "Kies een foto uit je fotoalbums" -#: src/Module/Settings/RemoveMe.php:76 +#: src/Module/Settings/RemoveMe.php:62 msgid "" "There was a validation error, please make sure you're logged in with the " "account you want to remove and try again." msgstr "" -#: src/Module/Settings/RemoveMe.php:76 +#: src/Module/Settings/RemoveMe.php:62 msgid "If this error persists, please contact your administrator." msgstr "" -#: src/Module/Settings/RemoveMe.php:90 -#: src/Navigation/Notifications/Repository/Notify.php:471 -#: src/Navigation/Notifications/Repository/Notify.php:492 +#: src/Module/Settings/RemoveMe.php:76 +#: src/Navigation/Notifications/Repository/Notify.php:457 +#: src/Navigation/Notifications/Repository/Notify.php:478 msgid "[Friendica System Notify]" msgstr "[Friendica systeem notificatie]" -#: src/Module/Settings/RemoveMe.php:90 +#: src/Module/Settings/RemoveMe.php:76 msgid "User deleted their account" msgstr "Gebruiker verwijderde zijn of haar account" -#: src/Module/Settings/RemoveMe.php:91 +#: src/Module/Settings/RemoveMe.php:77 msgid "" "On your Friendica node an user deleted their account. Please ensure that " "their data is removed from the backups." msgstr "Een gebruiker heeft zijn of haar account verwijderd op je Friendica node. Zorg er zeker voor dat zijn of haar data verwijderd is uit de backups." -#: src/Module/Settings/RemoveMe.php:92 +#: src/Module/Settings/RemoveMe.php:78 #, php-format msgid "The user id is %d" msgstr "De gebruikers id is %d" -#: src/Module/Settings/RemoveMe.php:105 +#: src/Module/Settings/RemoveMe.php:91 msgid "Your account has been successfully removed. Bye bye!" msgstr "" -#: src/Module/Settings/RemoveMe.php:130 +#: src/Module/Settings/RemoveMe.php:116 msgid "Remove My Account" msgstr "Verwijder mijn account" -#: src/Module/Settings/RemoveMe.php:131 +#: src/Module/Settings/RemoveMe.php:117 msgid "" "This will completely remove your account. Once this has been done it is not " "recoverable." msgstr "Dit zal je account volledig verwijderen. Dit kan niet hersteld worden als het eenmaal uitgevoerd is." -#: src/Module/Settings/RemoveMe.php:136 +#: src/Module/Settings/RemoveMe.php:122 msgid "Please enter your password for verification:" msgstr "Voer je wachtwoord in voor verificatie:" -#: src/Module/Settings/Server/Action.php:60 +#: src/Module/Settings/Server/Action.php:46 msgid "Do you want to ignore this server?" msgstr "" -#: src/Module/Settings/Server/Action.php:64 +#: src/Module/Settings/Server/Action.php:50 msgid "Do you want to unignore this server?" msgstr "" -#: src/Module/Settings/Server/Action.php:74 -#: src/Module/Settings/Server/Index.php:104 +#: src/Module/Settings/Server/Action.php:60 +#: src/Module/Settings/Server/Index.php:90 msgid "Remote server settings" msgstr "" -#: src/Module/Settings/Server/Action.php:77 +#: src/Module/Settings/Server/Action.php:63 msgid "Server URL" msgstr "" -#: src/Module/Settings/Server/Index.php:78 +#: src/Module/Settings/Server/Index.php:64 msgid "Settings saved" msgstr "" -#: src/Module/Settings/Server/Index.php:105 +#: src/Module/Settings/Server/Index.php:91 msgid "" "Here you can find all the remote servers you have taken individual " "moderation actions against. For a list of servers your node has blocked, " "please check out the Information page." msgstr "" -#: src/Module/Settings/Server/Index.php:110 +#: src/Module/Settings/Server/Index.php:96 msgid "Delete all your settings for the remote server" msgstr "" -#: src/Module/Settings/Server/Index.php:111 +#: src/Module/Settings/Server/Index.php:97 msgid "Save changes" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:69 -#: src/Module/Settings/TwoFactor/Recovery.php:67 -#: src/Module/Settings/TwoFactor/Trusted.php:70 -#: src/Module/Settings/TwoFactor/Verify.php:72 +#: src/Module/Settings/TwoFactor/AppSpecific.php:55 +#: src/Module/Settings/TwoFactor/Recovery.php:53 +#: src/Module/Settings/TwoFactor/Trusted.php:56 +#: src/Module/Settings/TwoFactor/Verify.php:58 msgid "Please enter your password to access this page." msgstr "Voer uw wachtwoord in om deze pagina te openen." -#: src/Module/Settings/TwoFactor/AppSpecific.php:87 +#: src/Module/Settings/TwoFactor/AppSpecific.php:73 msgid "App-specific password generation failed: The description is empty." msgstr "App-specifiek wachtwoord genereren mislukt: de beschrijving is leeg." -#: src/Module/Settings/TwoFactor/AppSpecific.php:90 +#: src/Module/Settings/TwoFactor/AppSpecific.php:76 msgid "" "App-specific password generation failed: This description already exists." msgstr "App-specifieke wachtwoordgeneratie mislukt: deze beschrijving bestaat al." -#: src/Module/Settings/TwoFactor/AppSpecific.php:94 +#: src/Module/Settings/TwoFactor/AppSpecific.php:80 msgid "New app-specific password generated." msgstr "Nieuw app-specifiek wachtwoord gegenereerd." -#: src/Module/Settings/TwoFactor/AppSpecific.php:100 +#: src/Module/Settings/TwoFactor/AppSpecific.php:86 msgid "App-specific passwords successfully revoked." msgstr "App-specifieke wachtwoorden succesvol ingetrokken." -#: src/Module/Settings/TwoFactor/AppSpecific.php:110 +#: src/Module/Settings/TwoFactor/AppSpecific.php:96 msgid "App-specific password successfully revoked." msgstr "App-specifiek wachtwoord succesvol ingetrokken." -#: src/Module/Settings/TwoFactor/AppSpecific.php:131 +#: src/Module/Settings/TwoFactor/AppSpecific.php:117 msgid "Two-factor app-specific passwords" msgstr "Twee-factor app-specifieke wachtwoorden" -#: src/Module/Settings/TwoFactor/AppSpecific.php:133 +#: src/Module/Settings/TwoFactor/AppSpecific.php:119 msgid "" "App-specific passwords are randomly generated passwords used instead your" " regular password to authenticate your account on third-party applications " "that don't support two-factor authentication.
" msgstr "App-specifieke wachtwoorden zijn willekeurig gegenereerde wachtwoorden die in plaats daarvan uw normale wachtwoord worden gebruikt om uw account te verifiëren bij applicaties van derden die geen tweefactorauthenticatie ondersteunen.
" -#: src/Module/Settings/TwoFactor/AppSpecific.php:134 +#: src/Module/Settings/TwoFactor/AppSpecific.php:120 msgid "" "Make sure to copy your new app-specific password now. You won’t be able to " "see it again!" msgstr "Zorg ervoor dat u nu uw nieuwe app-specifieke wachtwoord kopieert. U zult het niet meer kunnen zien!" -#: src/Module/Settings/TwoFactor/AppSpecific.php:138 +#: src/Module/Settings/TwoFactor/AppSpecific.php:124 msgid "Last Used" msgstr "Laatst gebruikt" -#: src/Module/Settings/TwoFactor/AppSpecific.php:139 +#: src/Module/Settings/TwoFactor/AppSpecific.php:125 msgid "Revoke" msgstr "Intrekken" -#: src/Module/Settings/TwoFactor/AppSpecific.php:140 +#: src/Module/Settings/TwoFactor/AppSpecific.php:126 msgid "Revoke All" msgstr "Alles intrekken" -#: src/Module/Settings/TwoFactor/AppSpecific.php:143 +#: src/Module/Settings/TwoFactor/AppSpecific.php:129 msgid "" "When you generate a new app-specific password, you must use it right away, " "it will be shown to you once after you generate it." msgstr "Wanneer u een nieuw app-specifiek wachtwoord genereert, moet u dit meteen gebruiken, het wordt u een keer getoond nadat u het hebt gegenereerd." -#: src/Module/Settings/TwoFactor/AppSpecific.php:144 +#: src/Module/Settings/TwoFactor/AppSpecific.php:130 msgid "Generate new app-specific password" msgstr "Genereer een nieuw app-specifiek wachtwoord" -#: src/Module/Settings/TwoFactor/AppSpecific.php:145 +#: src/Module/Settings/TwoFactor/AppSpecific.php:131 msgid "Friendiqa on my Fairphone 2..." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:146 +#: src/Module/Settings/TwoFactor/AppSpecific.php:132 msgid "Generate" msgstr "Genereer" -#: src/Module/Settings/TwoFactor/Index.php:88 +#: src/Module/Settings/TwoFactor/Index.php:74 msgid "Two-factor authentication successfully disabled." msgstr "Twee-factor-authenticatie succesvol uitgeschakeld." -#: src/Module/Settings/TwoFactor/Index.php:141 +#: src/Module/Settings/TwoFactor/Index.php:127 msgid "" "Use an application on a mobile device to get two-factor authentication " "codes when prompted on login.
" msgstr "Gebruik een applicatie op een mobiel apparaat om tweefactorauthenticatiecodes te krijgen wanneer daarom wordt gevraagd bij het inloggen.
" -#: src/Module/Settings/TwoFactor/Index.php:145 +#: src/Module/Settings/TwoFactor/Index.php:131 msgid "Authenticator app" msgstr "Authenticatie-app" -#: src/Module/Settings/TwoFactor/Index.php:146 +#: src/Module/Settings/TwoFactor/Index.php:132 msgid "Configured" msgstr "Geconfigureerd" -#: src/Module/Settings/TwoFactor/Index.php:146 +#: src/Module/Settings/TwoFactor/Index.php:132 msgid "Not Configured" msgstr "Niet geconfigureerd" -#: src/Module/Settings/TwoFactor/Index.php:147 +#: src/Module/Settings/TwoFactor/Index.php:133 msgid "You haven't finished configuring your authenticator app.
" msgstr "U bent nog niet klaar met het configureren van uw authenticator-app.
" -#: src/Module/Settings/TwoFactor/Index.php:148 +#: src/Module/Settings/TwoFactor/Index.php:134 msgid "Your authenticator app is correctly configured.
" msgstr "Uw authenticator-app is correct geconfigureerd.
" -#: src/Module/Settings/TwoFactor/Index.php:150 +#: src/Module/Settings/TwoFactor/Index.php:136 msgid "Recovery codes" msgstr "Herstelcodes" -#: src/Module/Settings/TwoFactor/Index.php:151 +#: src/Module/Settings/TwoFactor/Index.php:137 msgid "Remaining valid codes" msgstr "Resterende geldige codes" -#: src/Module/Settings/TwoFactor/Index.php:153 +#: src/Module/Settings/TwoFactor/Index.php:139 msgid "" "These one-use codes can replace an authenticator app code in case you " "have lost access to it.
" msgstr "Deze codes voor eenmalig gebruik kunnen een authenticator-app-code vervangen als u er geen toegang toe heeft.
" -#: src/Module/Settings/TwoFactor/Index.php:155 +#: src/Module/Settings/TwoFactor/Index.php:141 msgid "App-specific passwords" msgstr "App-specifieke wachtwoorden" -#: src/Module/Settings/TwoFactor/Index.php:156 +#: src/Module/Settings/TwoFactor/Index.php:142 msgid "Generated app-specific passwords" msgstr "App-specifieke wachtwoorden gegenereerd" -#: src/Module/Settings/TwoFactor/Index.php:158 +#: src/Module/Settings/TwoFactor/Index.php:144 msgid "" "These randomly generated passwords allow you to authenticate on apps not " "supporting two-factor authentication.
" msgstr "Met deze willekeurig gegenereerde wachtwoorden kunt u verifiëren bij apps die geen tweefactorauthenticatie ondersteunen.
" -#: src/Module/Settings/TwoFactor/Index.php:161 +#: src/Module/Settings/TwoFactor/Index.php:147 msgid "Current password:" msgstr "Huidig wachtwoord:" -#: src/Module/Settings/TwoFactor/Index.php:161 +#: src/Module/Settings/TwoFactor/Index.php:147 msgid "" "You need to provide your current password to change two-factor " "authentication settings." msgstr "U moet uw huidige wachtwoord opgeven om de instellingen voor tweefactorauthenticatie te wijzigen." -#: src/Module/Settings/TwoFactor/Index.php:162 +#: src/Module/Settings/TwoFactor/Index.php:148 msgid "Enable two-factor authentication" msgstr "Schakel tweefactorauthenticatie in" -#: src/Module/Settings/TwoFactor/Index.php:163 +#: src/Module/Settings/TwoFactor/Index.php:149 msgid "Disable two-factor authentication" msgstr "Schakel tweefactorauthenticatie uit" -#: src/Module/Settings/TwoFactor/Index.php:164 +#: src/Module/Settings/TwoFactor/Index.php:150 msgid "Show recovery codes" msgstr "Toon herstelcodes" -#: src/Module/Settings/TwoFactor/Index.php:165 +#: src/Module/Settings/TwoFactor/Index.php:151 msgid "Manage app-specific passwords" msgstr "Beheer app-specifieke wachtwoorden" -#: src/Module/Settings/TwoFactor/Index.php:166 +#: src/Module/Settings/TwoFactor/Index.php:152 msgid "Manage trusted browsers" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:167 +#: src/Module/Settings/TwoFactor/Index.php:153 msgid "Finish app configuration" msgstr "Voltooi de app-configuratie" -#: src/Module/Settings/TwoFactor/Recovery.php:83 +#: src/Module/Settings/TwoFactor/Recovery.php:69 msgid "New recovery codes successfully generated." msgstr "Nieuwe herstelcodes zijn succesvol gegenereerd." -#: src/Module/Settings/TwoFactor/Recovery.php:109 +#: src/Module/Settings/TwoFactor/Recovery.php:95 msgid "Two-factor recovery codes" msgstr "Twee-factor herstelcodes" -#: src/Module/Settings/TwoFactor/Recovery.php:111 +#: src/Module/Settings/TwoFactor/Recovery.php:97 msgid "" "Recovery codes can be used to access your account in the event you lose " "access to your device and cannot receive two-factor authentication " @@ -11319,68 +11326,68 @@ msgid "" "account.
" msgstr "Herstelcodes kunnen worden gebruikt om je gebruiker te benaderen in het geval dat je geen toegang meer hebt tot je apparaat en je geen twee-factor autentificatie codes kunt ontvangen.
Bewaar deze op een veilige plek! Als je je apparaat verliest en je hebt geen toegang tot de herstelcodes dan heb je geen toegang meer tot je gebruiker.
" -#: src/Module/Settings/TwoFactor/Recovery.php:113 +#: src/Module/Settings/TwoFactor/Recovery.php:99 msgid "" "When you generate new recovery codes, you must copy the new codes. Your old " "codes won’t work anymore." msgstr "Wanneer u nieuwe herstelcodes genereert, moet u de nieuwe codes kopiëren. Uw oude codes werken niet meer." -#: src/Module/Settings/TwoFactor/Recovery.php:114 +#: src/Module/Settings/TwoFactor/Recovery.php:100 msgid "Generate new recovery codes" msgstr "Genereer nieuwe herstelcodes" -#: src/Module/Settings/TwoFactor/Recovery.php:116 +#: src/Module/Settings/TwoFactor/Recovery.php:102 msgid "Next: Verification" msgstr "Volgende: verificatie" -#: src/Module/Settings/TwoFactor/Trusted.php:87 +#: src/Module/Settings/TwoFactor/Trusted.php:73 msgid "Trusted browsers successfully removed." msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:97 +#: src/Module/Settings/TwoFactor/Trusted.php:83 msgid "Trusted browser successfully removed." msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:139 +#: src/Module/Settings/TwoFactor/Trusted.php:125 msgid "Two-factor Trusted Browsers" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:140 +#: src/Module/Settings/TwoFactor/Trusted.php:126 msgid "" "Trusted browsers are individual browsers you chose to skip two-factor " "authentication to access Friendica. Please use this feature sparingly, as it" " can negate the benefit of two-factor authentication." msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:141 +#: src/Module/Settings/TwoFactor/Trusted.php:127 msgid "Device" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:142 +#: src/Module/Settings/TwoFactor/Trusted.php:128 msgid "OS" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:144 +#: src/Module/Settings/TwoFactor/Trusted.php:130 msgid "Trusted" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:145 +#: src/Module/Settings/TwoFactor/Trusted.php:131 msgid "Created At" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:146 +#: src/Module/Settings/TwoFactor/Trusted.php:132 msgid "Last Use" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:148 +#: src/Module/Settings/TwoFactor/Trusted.php:134 msgid "Remove All" msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:94 +#: src/Module/Settings/TwoFactor/Verify.php:80 msgid "Two-factor authentication successfully activated." msgstr "Twee-factor-authenticatie succesvol geactiveerd." -#: src/Module/Settings/TwoFactor/Verify.php:128 +#: src/Module/Settings/TwoFactor/Verify.php:114 #, php-format msgid "" "Or you can submit the authentication settings manually:
\n" @@ -11400,105 +11407,105 @@ msgid "" "" msgstr "Of je kan de autentificatie instellingen handmatig versturen:
\nPlease scan this QR Code with your authenticator app and submit the " "provided code.
" msgstr "Scan deze QR-code met uw authenticator-app en verzend de opgegeven code.
" -#: src/Module/Settings/TwoFactor/Verify.php:152 +#: src/Module/Settings/TwoFactor/Verify.php:138 #, php-format msgid "" "Or you can open the following URL in your mobile device:
" msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:159 +#: src/Module/Settings/TwoFactor/Verify.php:145 msgid "Verify code and enable two-factor authentication" msgstr "Controleer de code en schakel tweefactorauthenticatie in" -#: src/Module/Settings/UserExport.php:90 +#: src/Module/Settings/UserExport.php:76 msgid "Export account" msgstr "Account exporteren" -#: src/Module/Settings/UserExport.php:90 +#: src/Module/Settings/UserExport.php:76 msgid "" "Export your account info and contacts. Use this to make a backup of your " "account and/or to move it to another server." msgstr "Je account informatie en contacten exporteren. Gebruik dit om een backup van je account te maken en/of om het te verhuizen naar een andere server." -#: src/Module/Settings/UserExport.php:91 +#: src/Module/Settings/UserExport.php:77 msgid "Export all" msgstr "Alles exporteren" -#: src/Module/Settings/UserExport.php:91 +#: src/Module/Settings/UserExport.php:77 msgid "" "Export your account info, contacts and all your items as json. Could be a " "very big file, and could take a lot of time. Use this to make a full backup " "of your account (photos are not exported)" msgstr "Exporteer uw gebruikersgegevens, contacten en al uw items als json. Kan een heel groot bestand zijn en kan veel tijd in beslag nemen. Gebruik dit om een volledige back-up van uw account te maken (foto's worden niet geëxporteerd)" -#: src/Module/Settings/UserExport.php:92 +#: src/Module/Settings/UserExport.php:78 msgid "Export Contacts to CSV" msgstr "Export Contacten naar CSV" -#: src/Module/Settings/UserExport.php:92 +#: src/Module/Settings/UserExport.php:78 msgid "" "Export the list of the accounts you are following as CSV file. Compatible to" " e.g. Mastodon." msgstr "Exporteer de lijst met de gebruikers die u volgt als CSV-bestand. Compatibel met b.v. Mastodont." -#: src/Module/Special/DisplayNotFound.php:35 +#: src/Module/Special/DisplayNotFound.php:21 msgid "The top-level post isn't visible." msgstr "" -#: src/Module/Special/DisplayNotFound.php:36 +#: src/Module/Special/DisplayNotFound.php:22 msgid "The top-level post was deleted." msgstr "" -#: src/Module/Special/DisplayNotFound.php:37 +#: src/Module/Special/DisplayNotFound.php:23 msgid "" "This node has blocked the top-level author or the author of the shared post." msgstr "" -#: src/Module/Special/DisplayNotFound.php:38 +#: src/Module/Special/DisplayNotFound.php:24 msgid "" "You have ignored or blocked the top-level author or the author of the shared" " post." msgstr "" -#: src/Module/Special/DisplayNotFound.php:39 +#: src/Module/Special/DisplayNotFound.php:25 msgid "" "You have ignored the top-level author's server or the shared post author's " "server." msgstr "" -#: src/Module/Special/DisplayNotFound.php:45 +#: src/Module/Special/DisplayNotFound.php:31 msgid "Conversation Not Found" msgstr "" -#: src/Module/Special/DisplayNotFound.php:46 +#: src/Module/Special/DisplayNotFound.php:32 msgid "Unfortunately, the requested conversation isn't available to you." msgstr "" -#: src/Module/Special/DisplayNotFound.php:47 +#: src/Module/Special/DisplayNotFound.php:33 msgid "Possible reasons include:" msgstr "" -#: src/Module/Special/HTTPException.php:78 +#: src/Module/Special/HTTPException.php:64 msgid "Stack trace:" msgstr "" -#: src/Module/Special/HTTPException.php:83 +#: src/Module/Special/HTTPException.php:69 #, php-format msgid "Exception thrown in %s:%d" msgstr "" -#: src/Module/Tos.php:58 src/Module/Tos.php:107 +#: src/Module/Tos.php:44 src/Module/Tos.php:93 msgid "" "At the time of registration, and for providing communications between the " "user account and their contacts, the user has to provide a display name (pen" @@ -11511,14 +11518,14 @@ msgid "" "settings, it is not necessary for communication." msgstr "Op het moment van de registratie, en om communicatie mogelijk te maken tussen de gebruikersaccount en zijn of haar contacten, moet de gebruiker een weergave naam opgeven, een gebruikersnaam (bijnaam) en een werkend email adres. De namen zullen toegankelijk zijn op de profiel pagina van het account voor elke bezoeker van de pagina, zelfs als andere profiel details niet getoond worden. Het email adres zal enkel gebruikt worden om de gebruiker notificaties te sturen over interacties, maar zal niet zichtbaar getoond worden. Het oplijsten van een account in de gids van de node van de gebruiker of in de globale gids is optioneel en kan beheerd worden in de gebruikersinstellingen, dit is niet nodig voor communicatie." -#: src/Module/Tos.php:59 src/Module/Tos.php:108 +#: src/Module/Tos.php:45 src/Module/Tos.php:94 msgid "" "This data is required for communication and is passed on to the nodes of the" " communication partners and is stored there. Users can enter additional " "private data that may be transmitted to the communication partners accounts." msgstr "Deze data is vereist voor communicatie en wordt doorgegeven aan de nodes van de communicatie partners en wordt daar opgeslagen. Gebruikers kunnen bijkomende privé data opgeven die mag doorgegeven worden aan de accounts van de communicatie partners." -#: src/Module/Tos.php:60 src/Module/Tos.php:109 +#: src/Module/Tos.php:46 src/Module/Tos.php:95 #, php-format msgid "" "At any point in time a logged in user can export their account data from the" @@ -11529,121 +11536,121 @@ msgid "" "from the nodes of the communication partners." msgstr "" -#: src/Module/Tos.php:63 src/Module/Tos.php:106 +#: src/Module/Tos.php:49 src/Module/Tos.php:92 msgid "Privacy Statement" msgstr "Privacy Verklaring" -#: src/Module/Tos.php:103 +#: src/Module/Tos.php:89 msgid "Rules" msgstr "" -#: src/Module/Update/Display.php:45 +#: src/Module/Update/Display.php:31 msgid "Parameter uri_id is missing." msgstr "" -#: src/Module/Update/Display.php:55 +#: src/Module/Update/Display.php:41 msgid "The requested item doesn't exist or has been deleted." msgstr "Het gevraagde item bestaat niet of is verwijderd" -#: src/Module/User/Delegation.php:146 +#: src/Module/User/Delegation.php:132 #, php-format msgid "You are now logged in as %s" msgstr "" -#: src/Module/User/Delegation.php:185 +#: src/Module/User/Delegation.php:171 msgid "Switch between your accounts" msgstr "" -#: src/Module/User/Delegation.php:186 +#: src/Module/User/Delegation.php:172 msgid "Manage your accounts" msgstr "" -#: src/Module/User/Delegation.php:187 +#: src/Module/User/Delegation.php:173 msgid "" "Toggle between different identities or community/group pages which share " "your account details or which you have been granted \"manage\" permissions" msgstr "Wissel tussen verschillende identiteiten of forum/groeppagina's die jouw accountdetails delen of waar je \"beheerdersrechten\" hebt gekregen." -#: src/Module/User/Delegation.php:188 +#: src/Module/User/Delegation.php:174 msgid "Select an identity to manage: " msgstr "Selecteer een identiteit om te beheren:" -#: src/Module/User/Import.php:104 +#: src/Module/User/Import.php:90 msgid "User imports on closed servers can only be done by an administrator." msgstr "Importen van een gebruiker op een gesloten node kan enkel gedaan worden door een administrator" -#: src/Module/User/Import.php:120 +#: src/Module/User/Import.php:106 msgid "Move account" msgstr "Account verplaatsen" -#: src/Module/User/Import.php:121 +#: src/Module/User/Import.php:107 msgid "You can import an account from another Friendica server." msgstr "Je kunt een account van een andere Friendica server importeren." -#: src/Module/User/Import.php:122 +#: src/Module/User/Import.php:108 msgid "" "You need to export your account from the old server and upload it here. We " "will recreate your old account here with all your contacts. We will try also" " to inform your friends that you moved here." msgstr "Je moet je account bij de oude server exporteren, en hier uploaden. We zullen je oude account hier opnieuw aanmaken, met al je contacten. We zullen ook proberen om je vrienden in te lichten dat je naar hier verhuisd bent." -#: src/Module/User/Import.php:123 +#: src/Module/User/Import.php:109 msgid "" "This feature is experimental. We can't import contacts from the OStatus " "network (GNU Social/Statusnet) or from Diaspora" msgstr "Dit feature is experimenteel. We kunnen contacten van het OStatus netwerk (GNU Social/Statusnet) of van Diaspora niet importeren." -#: src/Module/User/Import.php:124 +#: src/Module/User/Import.php:110 msgid "Account file" msgstr "Account bestand" -#: src/Module/User/Import.php:124 +#: src/Module/User/Import.php:110 msgid "" "To export your account, go to \"Settings->Export your personal data\" and " "select \"Export account\"" msgstr "Om je account te exporteren, ga naar \"Instellingen->Exporteer je persoonlijke data\" en selecteer \"Exporteer account\"" -#: src/Module/User/Import.php:218 +#: src/Module/User/Import.php:204 msgid "Error decoding account file" msgstr "Fout bij decoderen van het account bestand" -#: src/Module/User/Import.php:223 +#: src/Module/User/Import.php:209 msgid "Error! No version data in file! This is not a Friendica account file?" msgstr "Fout! Geen versie data in het bestand! Is dit wel een Friendica account bestand?" -#: src/Module/User/Import.php:231 +#: src/Module/User/Import.php:217 #, php-format msgid "User '%s' already exists on this server!" msgstr "Gebruiker '%s' bestaat al op deze server!" -#: src/Module/User/Import.php:268 +#: src/Module/User/Import.php:254 msgid "User creation error" msgstr "Fout bij het aanmaken van de gebruiker" -#: src/Module/User/Import.php:317 +#: src/Module/User/Import.php:303 #, php-format msgid "%d contact not imported" msgid_plural "%d contacts not imported" msgstr[0] "%d contact werd niet geïmporteerd" msgstr[1] "%d contacten werden niet geïmporteerd" -#: src/Module/User/Import.php:366 +#: src/Module/User/Import.php:352 msgid "User profile creation error" msgstr "Fout bij het aanmaken van het gebruikersprofiel" -#: src/Module/User/Import.php:417 +#: src/Module/User/Import.php:403 msgid "Done. You can now login with your username and password" msgstr "Gebeurd. Je kunt nu inloggen met je gebruikersnaam en wachtwoord" -#: src/Module/Welcome.php:44 +#: src/Module/Welcome.php:30 msgid "Welcome to Friendica" msgstr "Welkom bij Friendica" -#: src/Module/Welcome.php:45 +#: src/Module/Welcome.php:31 msgid "New Member Checklist" msgstr "Checklist voor nieuwe leden" -#: src/Module/Welcome.php:46 +#: src/Module/Welcome.php:32 msgid "" "We would like to offer some tips and links to help make your experience " "enjoyable. Click any item to visit the relevant page. A link to this page " @@ -11651,33 +11658,33 @@ msgid "" "registration and then will quietly disappear." msgstr "We willen je een paar tips en verwijzingen aanreiken om je een aangename ervaring te bezorgen. Klik op een item om de relevante pagina's te bezoeken. Een verwijzing naar deze pagina zal twee weken lang na je registratie zichtbaar zijn op je tijdlijn. Daarna zal de verwijzing stilletjes verdwijnen." -#: src/Module/Welcome.php:48 +#: src/Module/Welcome.php:34 msgid "Getting Started" msgstr "Aan de slag" -#: src/Module/Welcome.php:49 +#: src/Module/Welcome.php:35 msgid "Friendica Walk-Through" msgstr "Doorloop Friendica" -#: src/Module/Welcome.php:50 +#: src/Module/Welcome.php:36 msgid "" "On your Quick Start page - find a brief introduction to your " "profile and network tabs, make some new connections, and find some groups to" " join." msgstr "Op je Snelstart pagina kun je een korte inleiding vinden over je profiel en netwerk tabs, om enkele nieuwe connecties te leggen en groepen te vinden om lid van te worden." -#: src/Module/Welcome.php:53 +#: src/Module/Welcome.php:39 msgid "Go to Your Settings" msgstr "Ga naar je instellingen" -#: src/Module/Welcome.php:54 +#: src/Module/Welcome.php:40 msgid "" "On your Settings page - change your initial password. Also make a " "note of your Identity Address. This looks just like an email address - and " "will be useful in making friends on the free social web." msgstr "Verander je initieel wachtwoord op je instellingenpagina. Noteer ook het adres van je identiteit. Dit ziet er uit als een e-mailadres - en zal nuttig zijn om vrienden te maken op het vrije sociale web." -#: src/Module/Welcome.php:55 +#: src/Module/Welcome.php:41 msgid "" "Review the other settings, particularly the privacy settings. An unpublished" " directory listing is like having an unlisted phone number. In general, you " @@ -11685,77 +11692,77 @@ msgid "" "potential friends know exactly how to find you." msgstr "Controleer ook de andere instellingen, in het bijzonder de privacy-instellingen. Een niet-gepubliceerd adres is zoals een privé-telefoonnummer. In het algemeen wil je waarschijnlijk je adres publiceren - tenzij al je vrienden en mogelijke vrienden precies weten hoe je te vinden." -#: src/Module/Welcome.php:59 +#: src/Module/Welcome.php:45 msgid "" "Upload a profile photo if you have not done so already. Studies have shown " "that people with real photos of themselves are ten times more likely to make" " friends than people who do not." msgstr "Upload een profielfoto, als je dat nog niet gedaan hebt. Studies tonen aan dat mensen met echte foto's van zichzelf tien keer gemakkelijker vrienden maken dan mensen die dat niet doen." -#: src/Module/Welcome.php:60 +#: src/Module/Welcome.php:46 msgid "Edit Your Profile" msgstr "Bewerk je profiel" -#: src/Module/Welcome.php:61 +#: src/Module/Welcome.php:47 msgid "" "Edit your default profile to your liking. Review the " "settings for hiding your list of friends and hiding the profile from unknown" " visitors." msgstr "Bewerk je standaard profiel zoals je wilt. Controleer de instellingen om je vriendenlijst te verbergen, en om je profiel voor ongekende bezoekers te verbergen." -#: src/Module/Welcome.php:62 +#: src/Module/Welcome.php:48 msgid "Profile Keywords" msgstr "Sleutelwoorden voor dit profiel" -#: src/Module/Welcome.php:63 +#: src/Module/Welcome.php:49 msgid "" "Set some public keywords for your profile which describe your interests. We " "may be able to find other people with similar interests and suggest " "friendships." msgstr "Stel een aantal openbare zoekwoorden in voor uw profiel die uw interesses beschrijven. Mogelijk kunnen we andere mensen met dezelfde interesses vinden en vriendschappen voorstellen." -#: src/Module/Welcome.php:65 +#: src/Module/Welcome.php:51 msgid "Connecting" msgstr "Verbinding aan het maken" -#: src/Module/Welcome.php:67 +#: src/Module/Welcome.php:53 msgid "Importing Emails" msgstr "E-mails importeren" -#: src/Module/Welcome.php:68 +#: src/Module/Welcome.php:54 msgid "" "Enter your email access information on your Connector Settings page if you " "wish to import and interact with friends or mailing lists from your email " "INBOX" msgstr "Vul je e-mailtoegangsinformatie in op je pagina met verbindingsinstellingen als je vrienden of mailinglijsten uit je e-mail-inbox wilt importeren, en met hen wilt communiceren" -#: src/Module/Welcome.php:69 +#: src/Module/Welcome.php:55 msgid "Go to Your Contacts Page" msgstr "Ga naar je contactenpagina" -#: src/Module/Welcome.php:70 +#: src/Module/Welcome.php:56 msgid "" "Your Contacts page is your gateway to managing friendships and connecting " "with friends on other networks. Typically you enter their address or site " "URL in the Add New Contact dialog." msgstr "Je contactenpagina is jouw poort om vriendschappen te beheren en verbinding te leggen met vrienden op andere netwerken. Je kunt hun adres of URL toevoegen in de Voeg nieuw contact toe dialoog." -#: src/Module/Welcome.php:71 +#: src/Module/Welcome.php:57 msgid "Go to Your Site's Directory" msgstr "Ga naar de gids van je website" -#: src/Module/Welcome.php:72 +#: src/Module/Welcome.php:58 msgid "" "The Directory page lets you find other people in this network or other " "federated sites. Look for a Connect or Follow link on " "their profile page. Provide your own Identity Address if requested." msgstr "In de gids vind je andere mensen in dit netwerk of op andere federatieve sites. Zoek naar het woord Connect of Follow op hun profielpagina (meestal aan de linkerkant). Vul je eigen identiteitsadres in wanneer daar om wordt gevraagd." -#: src/Module/Welcome.php:73 +#: src/Module/Welcome.php:59 msgid "Finding New People" msgstr "Nieuwe mensen vinden" -#: src/Module/Welcome.php:74 +#: src/Module/Welcome.php:60 msgid "" "On the side panel of the Contacts page are several tools to find new " "friends. We can match people by interest, look up people by name or " @@ -11764,412 +11771,408 @@ msgid "" "hours." msgstr "Op het zijpaneel van de Contacten pagina vind je verschillende tools om nieuwe vrienden te zoeken. We kunnen mensen op interesses matchen, mensen opzoeken op naam of hobby, en suggesties doen gebaseerd op netwerk-relaties. Op een nieuwe webstek beginnen vriendschapssuggesties meestal binnen de 24 uur beschikbaar te worden." -#: src/Module/Welcome.php:77 +#: src/Module/Welcome.php:63 msgid "Add Your Contacts To Circle" msgstr "" -#: src/Module/Welcome.php:78 +#: src/Module/Welcome.php:64 msgid "" "Once you have made some friends, organize them into private conversation " "circles from the sidebar of your Contacts page and then you can interact " "with each circle privately on your Network page." msgstr "" -#: src/Module/Welcome.php:80 +#: src/Module/Welcome.php:66 msgid "Why Aren't My Posts Public?" msgstr "Waarom zijn mijn berichten niet openbaar?" -#: src/Module/Welcome.php:81 +#: src/Module/Welcome.php:67 msgid "" "Friendica respects your privacy. By default, your posts will only show up to" " people you've added as friends. For more information, see the help section " "from the link above." msgstr "Friendica respecteert je privacy. Standaard zullen je berichten alleen zichtbaar zijn voor personen die jij als vriend hebt toegevoegd. Lees de help (zie de verwijzing hierboven) voor meer informatie." -#: src/Module/Welcome.php:83 +#: src/Module/Welcome.php:69 msgid "Getting Help" msgstr "Hulp krijgen" -#: src/Module/Welcome.php:84 +#: src/Module/Welcome.php:70 msgid "Go to the Help Section" msgstr "Ga naar de help" -#: src/Module/Welcome.php:85 +#: src/Module/Welcome.php:71 msgid "" "Our help pages may be consulted for detail on other program" " features and resources." msgstr "Je kunt onze help pagina's raadplegen voor gedetailleerde informatie over andere functies van dit programma." -#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:161 +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:147 msgid "{0} wants to follow you" msgstr "" -#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:163 +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:149 msgid "{0} has started following you" msgstr "" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:96 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:82 #, php-format msgid "%s liked %s's post" msgstr "%s vond het bericht van %s leuk" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:108 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:94 #, php-format msgid "%s disliked %s's post" msgstr "%s vond het bericht van %s niet leuk" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:120 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:106 #, php-format msgid "%s is attending %s's event" msgstr "%s woont het event van %s bij" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:132 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:118 #, php-format msgid "%s is not attending %s's event" msgstr "%s woont het event van %s niet bij" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:144 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:130 #, php-format msgid "%s may attending %s's event" msgstr "%s kan aanwezig zijn op %s's gebeurtenis" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:174 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:160 #, php-format msgid "%s is now friends with %s" msgstr "%s is nu bevriend met %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:341 -#: src/Navigation/Notifications/Factory/FormattedNotify.php:379 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:327 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:365 #, php-format msgid "%s commented on %s's post" msgstr "%s gaf een reactie op het bericht van %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:378 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:364 #, php-format msgid "%s created a new post" msgstr "%s schreef een nieuw bericht" -#: src/Navigation/Notifications/Factory/Introduction.php:132 +#: src/Navigation/Notifications/Factory/Introduction.php:118 msgid "Friend Suggestion" msgstr "Vriendschapsvoorstel" -#: src/Navigation/Notifications/Factory/Introduction.php:158 +#: src/Navigation/Notifications/Factory/Introduction.php:144 msgid "Friend/Connect Request" msgstr "Vriendschapsverzoek" -#: src/Navigation/Notifications/Factory/Introduction.php:158 -msgid "New Follower" -msgstr "Nieuwe Volger" - -#: src/Navigation/Notifications/Factory/Notification.php:134 +#: src/Navigation/Notifications/Factory/Notification.php:120 #, php-format msgid "%1$s wants to follow you" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:136 +#: src/Navigation/Notifications/Factory/Notification.php:122 #, php-format msgid "%1$s has started following you" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:208 +#: src/Navigation/Notifications/Factory/Notification.php:194 #, php-format msgid "%1$s liked your comment on %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:211 +#: src/Navigation/Notifications/Factory/Notification.php:197 #, php-format msgid "%1$s liked your post %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:218 +#: src/Navigation/Notifications/Factory/Notification.php:204 #, php-format msgid "%1$s disliked your comment on %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:221 +#: src/Navigation/Notifications/Factory/Notification.php:207 #, php-format msgid "%1$s disliked your post %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:228 +#: src/Navigation/Notifications/Factory/Notification.php:214 #, php-format msgid "%1$s shared your comment %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:231 -#: src/Navigation/Notifications/Factory/Notification.php:316 +#: src/Navigation/Notifications/Factory/Notification.php:217 +#: src/Navigation/Notifications/Factory/Notification.php:302 #, php-format msgid "%1$s shared your post %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:235 -#: src/Navigation/Notifications/Factory/Notification.php:305 +#: src/Navigation/Notifications/Factory/Notification.php:221 +#: src/Navigation/Notifications/Factory/Notification.php:291 #, php-format msgid "%1$s shared the post %2$s from %3$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:237 -#: src/Navigation/Notifications/Factory/Notification.php:307 +#: src/Navigation/Notifications/Factory/Notification.php:223 +#: src/Navigation/Notifications/Factory/Notification.php:293 #, php-format msgid "%1$s shared a post from %3$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:239 -#: src/Navigation/Notifications/Factory/Notification.php:309 +#: src/Navigation/Notifications/Factory/Notification.php:225 +#: src/Navigation/Notifications/Factory/Notification.php:295 #, php-format msgid "%1$s shared the post %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:241 -#: src/Navigation/Notifications/Factory/Notification.php:311 +#: src/Navigation/Notifications/Factory/Notification.php:227 +#: src/Navigation/Notifications/Factory/Notification.php:297 #, php-format msgid "%1$s shared a post" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:249 +#: src/Navigation/Notifications/Factory/Notification.php:235 #, php-format msgid "%1$s wants to attend your event %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:256 +#: src/Navigation/Notifications/Factory/Notification.php:242 #, php-format msgid "%1$s does not want to attend your event %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:263 +#: src/Navigation/Notifications/Factory/Notification.php:249 #, php-format msgid "%1$s maybe wants to attend your event %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:270 +#: src/Navigation/Notifications/Factory/Notification.php:256 #, php-format msgid "%1$s tagged you on %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:274 +#: src/Navigation/Notifications/Factory/Notification.php:260 #, php-format msgid "%1$s replied to you on %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:278 +#: src/Navigation/Notifications/Factory/Notification.php:264 #, php-format msgid "%1$s commented in your thread %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:282 +#: src/Navigation/Notifications/Factory/Notification.php:268 #, php-format msgid "%1$s commented on your comment %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:289 +#: src/Navigation/Notifications/Factory/Notification.php:275 #, php-format msgid "%1$s commented in their thread %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:291 +#: src/Navigation/Notifications/Factory/Notification.php:277 #, php-format msgid "%1$s commented in their thread" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:293 +#: src/Navigation/Notifications/Factory/Notification.php:279 #, php-format msgid "%1$s commented in the thread %2$s from %3$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:295 +#: src/Navigation/Notifications/Factory/Notification.php:281 #, php-format msgid "%1$s commented in the thread from %3$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:300 +#: src/Navigation/Notifications/Factory/Notification.php:286 #, php-format msgid "%1$s commented on your thread %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:225 -#: src/Navigation/Notifications/Repository/Notify.php:754 +#: src/Navigation/Notifications/Repository/Notify.php:211 +#: src/Navigation/Notifications/Repository/Notify.php:740 msgid "[Friendica:Notify]" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:293 +#: src/Navigation/Notifications/Repository/Notify.php:279 #, php-format msgid "%s New mail received at %s" msgstr "%s Nieuw bericht ontvangen op %s" -#: src/Navigation/Notifications/Repository/Notify.php:295 +#: src/Navigation/Notifications/Repository/Notify.php:281 #, php-format msgid "%1$s sent you a new private message at %2$s." msgstr "%1$s sent you a new private message at %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:296 +#: src/Navigation/Notifications/Repository/Notify.php:282 msgid "a private message" msgstr "een prive bericht" -#: src/Navigation/Notifications/Repository/Notify.php:296 +#: src/Navigation/Notifications/Repository/Notify.php:282 #, php-format msgid "%1$s sent you %2$s." msgstr "%1$s stuurde jou %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:298 +#: src/Navigation/Notifications/Repository/Notify.php:284 #, php-format msgid "Please visit %s to view and/or reply to your private messages." msgstr "Bezoek %s om je privé-berichten te bekijken en/of te beantwoorden." -#: src/Navigation/Notifications/Repository/Notify.php:328 +#: src/Navigation/Notifications/Repository/Notify.php:314 #, php-format msgid "%1$s commented on %2$s's %3$s %4$s" msgstr "%1$s heeft een opmerking geplaatst op %2$s's %3$s %4$s" -#: src/Navigation/Notifications/Repository/Notify.php:333 +#: src/Navigation/Notifications/Repository/Notify.php:319 #, php-format msgid "%1$s commented on your %2$s %3$s" msgstr "%1$s heeft een opmerking geplaatst op jou %2$s %3$s" -#: src/Navigation/Notifications/Repository/Notify.php:337 +#: src/Navigation/Notifications/Repository/Notify.php:323 #, php-format msgid "%1$s commented on their %2$s %3$s" msgstr "%1$s heeft een opmering geschreven op hun %2$s %3$s" -#: src/Navigation/Notifications/Repository/Notify.php:341 -#: src/Navigation/Notifications/Repository/Notify.php:788 +#: src/Navigation/Notifications/Repository/Notify.php:327 +#: src/Navigation/Notifications/Repository/Notify.php:774 #, php-format msgid "%1$s Comment to conversation #%2$d by %3$s" msgstr "%1$s Opmerking bij conversatie #%2$d door %3$s" -#: src/Navigation/Notifications/Repository/Notify.php:343 +#: src/Navigation/Notifications/Repository/Notify.php:329 #, php-format msgid "%s commented on an item/conversation you have been following." msgstr "%s gaf een reactie op een bericht/gesprek die jij volgt." -#: src/Navigation/Notifications/Repository/Notify.php:347 -#: src/Navigation/Notifications/Repository/Notify.php:362 -#: src/Navigation/Notifications/Repository/Notify.php:814 +#: src/Navigation/Notifications/Repository/Notify.php:333 +#: src/Navigation/Notifications/Repository/Notify.php:348 +#: src/Navigation/Notifications/Repository/Notify.php:800 #, php-format msgid "Please visit %s to view and/or reply to the conversation." msgstr "Bezoek %s om het gesprek te bekijken en/of te beantwoorden." -#: src/Navigation/Notifications/Repository/Notify.php:354 +#: src/Navigation/Notifications/Repository/Notify.php:340 #, php-format msgid "%s %s posted to your profile wall" msgstr "%s %s heeft op je profiel wall gepost" -#: src/Navigation/Notifications/Repository/Notify.php:356 +#: src/Navigation/Notifications/Repository/Notify.php:342 #, php-format msgid "%1$s posted to your profile wall at %2$s" msgstr "%1$splaatste een bericht op je tijdlijn op %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:357 +#: src/Navigation/Notifications/Repository/Notify.php:343 #, php-format msgid "%1$s posted to [url=%2$s]your wall[/url]" msgstr "%1$s schreef op [url=%2$s]jouw tijdlijn[/url]" -#: src/Navigation/Notifications/Repository/Notify.php:370 +#: src/Navigation/Notifications/Repository/Notify.php:356 #, php-format msgid "%s Introduction received" msgstr "%s Introductie ontvangen" -#: src/Navigation/Notifications/Repository/Notify.php:372 +#: src/Navigation/Notifications/Repository/Notify.php:358 #, php-format msgid "You've received an introduction from '%1$s' at %2$s" msgstr "Je hebt een vriendschaps- of connectieverzoek ontvangen van '%1$s' om %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:373 +#: src/Navigation/Notifications/Repository/Notify.php:359 #, php-format msgid "You've received [url=%1$s]an introduction[/url] from %2$s." msgstr "Je ontving [url=%1$s]een vriendschaps- of connectieverzoek[/url] van %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:378 -#: src/Navigation/Notifications/Repository/Notify.php:424 +#: src/Navigation/Notifications/Repository/Notify.php:364 +#: src/Navigation/Notifications/Repository/Notify.php:410 #, php-format msgid "You may visit their profile at %s" msgstr "Je kunt hun profiel bezoeken op %s" -#: src/Navigation/Notifications/Repository/Notify.php:380 +#: src/Navigation/Notifications/Repository/Notify.php:366 #, php-format msgid "Please visit %s to approve or reject the introduction." msgstr "Bezoek %s om het verzoek goed of af te keuren." -#: src/Navigation/Notifications/Repository/Notify.php:387 +#: src/Navigation/Notifications/Repository/Notify.php:373 #, php-format msgid "%s A new person is sharing with you" msgstr "%s Een nieuwe persoon deelt met je" -#: src/Navigation/Notifications/Repository/Notify.php:389 -#: src/Navigation/Notifications/Repository/Notify.php:390 +#: src/Navigation/Notifications/Repository/Notify.php:375 +#: src/Navigation/Notifications/Repository/Notify.php:376 #, php-format msgid "%1$s is sharing with you at %2$s" msgstr "%1$s deelt met jou in %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:397 +#: src/Navigation/Notifications/Repository/Notify.php:383 #, php-format msgid "%s You have a new follower" msgstr "%s Je hebt een nieuwe volger" -#: src/Navigation/Notifications/Repository/Notify.php:399 -#: src/Navigation/Notifications/Repository/Notify.php:400 +#: src/Navigation/Notifications/Repository/Notify.php:385 +#: src/Navigation/Notifications/Repository/Notify.php:386 #, php-format msgid "You have a new follower at %2$s : %1$s" msgstr "Je hebt een nieuwe volger op %2$s: %1$s" -#: src/Navigation/Notifications/Repository/Notify.php:413 +#: src/Navigation/Notifications/Repository/Notify.php:399 #, php-format msgid "%s Friend suggestion received" msgstr "%s Vriend suggestie ontvangen" -#: src/Navigation/Notifications/Repository/Notify.php:415 +#: src/Navigation/Notifications/Repository/Notify.php:401 #, php-format msgid "You've received a friend suggestion from '%1$s' at %2$s" msgstr "Je kreeg een vriendschapssuggestie van '%1$s' op %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:416 +#: src/Navigation/Notifications/Repository/Notify.php:402 #, php-format msgid "" "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." msgstr "Je kreeg een [url=%1$s]vriendschapssuggestie[/url] voor %2$s op %3$s." -#: src/Navigation/Notifications/Repository/Notify.php:422 +#: src/Navigation/Notifications/Repository/Notify.php:408 msgid "Name:" msgstr "Naam:" -#: src/Navigation/Notifications/Repository/Notify.php:423 +#: src/Navigation/Notifications/Repository/Notify.php:409 msgid "Photo:" msgstr "Foto: " -#: src/Navigation/Notifications/Repository/Notify.php:426 +#: src/Navigation/Notifications/Repository/Notify.php:412 #, php-format msgid "Please visit %s to approve or reject the suggestion." msgstr "Bezoek %s om de suggestie goed of af te keuren." -#: src/Navigation/Notifications/Repository/Notify.php:434 -#: src/Navigation/Notifications/Repository/Notify.php:449 +#: src/Navigation/Notifications/Repository/Notify.php:420 +#: src/Navigation/Notifications/Repository/Notify.php:435 #, php-format msgid "%s Connection accepted" msgstr "%s Verbinding geaccepteerd" -#: src/Navigation/Notifications/Repository/Notify.php:436 -#: src/Navigation/Notifications/Repository/Notify.php:451 +#: src/Navigation/Notifications/Repository/Notify.php:422 +#: src/Navigation/Notifications/Repository/Notify.php:437 #, php-format msgid "'%1$s' has accepted your connection request at %2$s" msgstr "'%1$s' aanvaarde je contactaanvraag op %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:437 -#: src/Navigation/Notifications/Repository/Notify.php:452 +#: src/Navigation/Notifications/Repository/Notify.php:423 +#: src/Navigation/Notifications/Repository/Notify.php:438 #, php-format msgid "%2$s has accepted your [url=%1$s]connection request[/url]." msgstr "%2$saanvaardde jouw [url=%1$s]contactaanvraag[/url]." -#: src/Navigation/Notifications/Repository/Notify.php:442 +#: src/Navigation/Notifications/Repository/Notify.php:428 msgid "" "You are now mutual friends and may exchange status updates, photos, and " "email without restriction." msgstr "Jullie zijn nu in contact met elkaar en kunnen statusberichten, foto's en email delen zonder beperkingen." -#: src/Navigation/Notifications/Repository/Notify.php:444 +#: src/Navigation/Notifications/Repository/Notify.php:430 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "Bezoek alstublieft %s als je deze relatie wil wijzigen." -#: src/Navigation/Notifications/Repository/Notify.php:457 +#: src/Navigation/Notifications/Repository/Notify.php:443 #, php-format msgid "" "'%1$s' has chosen to accept you a fan, which restricts some forms of " @@ -12178,34 +12181,34 @@ msgid "" "automatically." msgstr "'%1$s' koos om je te accepteren als fan, wat sommige communicatievormen beperkt - zoals privéberichten en sommige profielfuncties. Als dit een beroemdheid- of groepspagina is, werd dit automatisch toegepast." -#: src/Navigation/Notifications/Repository/Notify.php:459 +#: src/Navigation/Notifications/Repository/Notify.php:445 #, php-format msgid "" "'%1$s' may choose to extend this into a two-way or more permissive " "relationship in the future." msgstr "'%1$s' kan er later voor kiezen om deze beperkingen aan te passen." -#: src/Navigation/Notifications/Repository/Notify.php:461 +#: src/Navigation/Notifications/Repository/Notify.php:447 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "Bezoek %s wanneer je deze relatie wil wijzigen." -#: src/Navigation/Notifications/Repository/Notify.php:471 +#: src/Navigation/Notifications/Repository/Notify.php:457 msgid "registration request" msgstr "registratie verzoek" -#: src/Navigation/Notifications/Repository/Notify.php:473 +#: src/Navigation/Notifications/Repository/Notify.php:459 #, php-format msgid "You've received a registration request from '%1$s' at %2$s" msgstr "Je kreeg een registratieaanvraag van '%1$s' op %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:474 +#: src/Navigation/Notifications/Repository/Notify.php:460 #, php-format msgid "You've received a [url=%1$s]registration request[/url] from %2$s." msgstr "Je kreeg een [url=%1$s]registratieaanvraag[/url] van %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:479 -#: src/Navigation/Notifications/Repository/Notify.php:500 +#: src/Navigation/Notifications/Repository/Notify.php:465 +#: src/Navigation/Notifications/Repository/Notify.php:486 #, php-format msgid "" "Display Name:\t%s\n" @@ -12213,768 +12216,755 @@ msgid "" "Login Name:\t%s (%s)" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:485 +#: src/Navigation/Notifications/Repository/Notify.php:471 #, php-format msgid "Please visit %s to approve or reject the request." msgstr "Bezoek %s om de aanvraag goed of af te keuren." -#: src/Navigation/Notifications/Repository/Notify.php:492 +#: src/Navigation/Notifications/Repository/Notify.php:478 msgid "new registration" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:494 +#: src/Navigation/Notifications/Repository/Notify.php:480 #, php-format msgid "You've received a new registration from '%1$s' at %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:495 +#: src/Navigation/Notifications/Repository/Notify.php:481 #, php-format msgid "You've received a [url=%1$s]new registration[/url] from %2$s." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:506 +#: src/Navigation/Notifications/Repository/Notify.php:492 #, php-format msgid "Please visit %s to have a look at the new registration." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:782 +#: src/Navigation/Notifications/Repository/Notify.php:768 #, php-format msgid "%s %s tagged you" msgstr "%s %s heeft jou getagged" -#: src/Navigation/Notifications/Repository/Notify.php:785 +#: src/Navigation/Notifications/Repository/Notify.php:771 #, php-format msgid "%s %s shared a new post" msgstr "%s %s deelde een nieuwe post" -#: src/Navigation/Notifications/Repository/Notify.php:793 +#: src/Navigation/Notifications/Repository/Notify.php:779 #, php-format msgid "%1$s %2$s liked your post #%3$d" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:796 +#: src/Navigation/Notifications/Repository/Notify.php:782 #, php-format msgid "%1$s %2$s liked your comment on #%3$d" msgstr "" -#: src/Object/EMail/ItemCCEMail.php:42 +#: src/Object/EMail/ItemCCEMail.php:28 #, php-format msgid "" "This message was sent to you by %s, a member of the Friendica social " "network." msgstr "Dit bericht werd naar jou gestuurd door %s, een lid van het Friendica sociale netwerk." -#: src/Object/EMail/ItemCCEMail.php:44 +#: src/Object/EMail/ItemCCEMail.php:30 #, php-format msgid "You may visit them online at %s" msgstr "Je kunt ze online bezoeken op %s" -#: src/Object/EMail/ItemCCEMail.php:45 +#: src/Object/EMail/ItemCCEMail.php:31 msgid "" "Please contact the sender by replying to this post if you do not wish to " "receive these messages." msgstr "Contacteer de afzender door op dit bericht te antwoorden als je deze berichten niet wilt ontvangen." -#: src/Object/EMail/ItemCCEMail.php:49 +#: src/Object/EMail/ItemCCEMail.php:35 #, php-format msgid "%s posted an update." msgstr "%s heeft een wijziging geplaatst." -#: src/Object/Post.php:138 +#: src/Object/Post.php:124 msgid "Private Message" msgstr "Privébericht" -#: src/Object/Post.php:142 +#: src/Object/Post.php:128 msgid "Public Message" msgstr "" -#: src/Object/Post.php:146 +#: src/Object/Post.php:132 msgid "Unlisted Message" msgstr "" -#: src/Object/Post.php:182 +#: src/Object/Post.php:168 msgid "This entry was edited" msgstr "Deze entry werd bewerkt" -#: src/Object/Post.php:210 +#: src/Object/Post.php:196 msgid "Connector Message" msgstr "" -#: src/Object/Post.php:239 src/Object/Post.php:241 +#: src/Object/Post.php:225 src/Object/Post.php:227 msgid "Edit" msgstr "Bewerken" -#: src/Object/Post.php:275 +#: src/Object/Post.php:261 msgid "Delete globally" msgstr "Verwijder globaal" -#: src/Object/Post.php:275 +#: src/Object/Post.php:261 msgid "Remove locally" msgstr "Verwijder lokaal" -#: src/Object/Post.php:282 +#: src/Object/Post.php:268 #, php-format msgid "Block %s" msgstr "" -#: src/Object/Post.php:287 +#: src/Object/Post.php:273 #, php-format msgid "Ignore %s" msgstr "" -#: src/Object/Post.php:292 +#: src/Object/Post.php:278 #, php-format msgid "Collapse %s" msgstr "" -#: src/Object/Post.php:296 +#: src/Object/Post.php:282 msgid "Report post" msgstr "" -#: src/Object/Post.php:307 +#: src/Object/Post.php:293 msgid "Save to folder" msgstr "" -#: src/Object/Post.php:347 +#: src/Object/Post.php:333 msgid "I will attend" msgstr "Ik zal er zijn" -#: src/Object/Post.php:347 +#: src/Object/Post.php:333 msgid "I will not attend" msgstr "Ik zal er niet zijn" -#: src/Object/Post.php:347 +#: src/Object/Post.php:333 msgid "I might attend" msgstr "Ik ga misschien" -#: src/Object/Post.php:394 +#: src/Object/Post.php:380 msgid "Ignore thread" msgstr "" -#: src/Object/Post.php:395 +#: src/Object/Post.php:381 msgid "Unignore thread" msgstr "" -#: src/Object/Post.php:396 +#: src/Object/Post.php:382 msgid "Toggle ignore status" msgstr "" -#: src/Object/Post.php:406 +#: src/Object/Post.php:392 msgid "Add star" msgstr "" -#: src/Object/Post.php:407 +#: src/Object/Post.php:393 msgid "Remove star" msgstr "" -#: src/Object/Post.php:408 +#: src/Object/Post.php:394 msgid "Toggle star status" msgstr "" -#: src/Object/Post.php:419 +#: src/Object/Post.php:405 msgid "Pin" msgstr "" -#: src/Object/Post.php:420 +#: src/Object/Post.php:406 msgid "Unpin" msgstr "" -#: src/Object/Post.php:421 +#: src/Object/Post.php:407 msgid "Toggle pin status" msgstr "" -#: src/Object/Post.php:424 +#: src/Object/Post.php:410 msgid "Pinned" msgstr "" -#: src/Object/Post.php:429 +#: src/Object/Post.php:415 msgid "Add tag" msgstr "" -#: src/Object/Post.php:444 +#: src/Object/Post.php:430 msgid "Quote share this" msgstr "" -#: src/Object/Post.php:444 +#: src/Object/Post.php:430 msgid "Quote Share" msgstr "" -#: src/Object/Post.php:447 +#: src/Object/Post.php:433 msgid "Reshare this" msgstr "" -#: src/Object/Post.php:447 +#: src/Object/Post.php:433 msgid "Reshare" msgstr "" -#: src/Object/Post.php:448 +#: src/Object/Post.php:434 msgid "Cancel your Reshare" msgstr "" -#: src/Object/Post.php:448 +#: src/Object/Post.php:434 msgid "Unshare" msgstr "" -#: src/Object/Post.php:492 +#: src/Object/Post.php:478 #, php-format msgid "%s (Received %s)" msgstr "" -#: src/Object/Post.php:498 +#: src/Object/Post.php:484 msgid "Comment this item on your system" msgstr "" -#: src/Object/Post.php:498 +#: src/Object/Post.php:484 msgid "Remote comment" msgstr "" -#: src/Object/Post.php:520 +#: src/Object/Post.php:506 msgid "Share via ..." msgstr "" -#: src/Object/Post.php:520 +#: src/Object/Post.php:506 msgid "Share via external services" msgstr "" -#: src/Object/Post.php:527 +#: src/Object/Post.php:513 msgid "Unknown parent" msgstr "" -#: src/Object/Post.php:531 +#: src/Object/Post.php:517 #, php-format msgid "in reply to %s" msgstr "" -#: src/Object/Post.php:533 +#: src/Object/Post.php:519 msgid "Parent is probably private or not federated." msgstr "" -#: src/Object/Post.php:557 +#: src/Object/Post.php:543 msgid "to" msgstr "aan" -#: src/Object/Post.php:558 +#: src/Object/Post.php:544 msgid "via" msgstr "via" -#: src/Object/Post.php:559 +#: src/Object/Post.php:545 msgid "Wall-to-Wall" msgstr "wall-to-wall" -#: src/Object/Post.php:560 +#: src/Object/Post.php:546 msgid "via Wall-To-Wall:" msgstr "via wall-to-wall" -#: src/Object/Post.php:613 +#: src/Object/Post.php:599 #, php-format msgid "Reply to %s" msgstr "Antwoord aan %s" -#: src/Object/Post.php:616 +#: src/Object/Post.php:602 msgid "More" msgstr "Meer" -#: src/Object/Post.php:635 +#: src/Object/Post.php:621 msgid "Notifier task is pending" msgstr "Meldingstaak is in behandeling" -#: src/Object/Post.php:636 +#: src/Object/Post.php:622 msgid "Delivery to remote servers is pending" msgstr "Levering aan externe servers is in behandeling" -#: src/Object/Post.php:637 +#: src/Object/Post.php:623 msgid "Delivery to remote servers is underway" msgstr "" -#: src/Object/Post.php:638 +#: src/Object/Post.php:624 msgid "Delivery to remote servers is mostly done" msgstr "" -#: src/Object/Post.php:639 +#: src/Object/Post.php:625 msgid "Delivery to remote servers is done" msgstr "" -#: src/Object/Post.php:661 +#: src/Object/Post.php:647 #, php-format msgid "%d comment" msgid_plural "%d comments" msgstr[0] "%d reactie" msgstr[1] "%d reacties" -#: src/Object/Post.php:662 +#: src/Object/Post.php:648 msgid "Show more" msgstr "Toon meer" -#: src/Object/Post.php:663 +#: src/Object/Post.php:649 msgid "Show fewer" msgstr "Toon minder" -#: src/Object/Post.php:700 +#: src/Object/Post.php:686 #, php-format msgid "Reshared by: %s" msgstr "" -#: src/Object/Post.php:705 +#: src/Object/Post.php:691 #, php-format msgid "Viewed by: %s" msgstr "" -#: src/Object/Post.php:710 +#: src/Object/Post.php:696 #, php-format msgid "Read by: %s" msgstr "" -#: src/Object/Post.php:715 +#: src/Object/Post.php:701 #, php-format msgid "Liked by: %s" msgstr "" -#: src/Object/Post.php:720 +#: src/Object/Post.php:706 #, php-format msgid "Disliked by: %s" msgstr "" -#: src/Object/Post.php:725 +#: src/Object/Post.php:711 #, php-format msgid "Attended by: %s" msgstr "" -#: src/Object/Post.php:730 +#: src/Object/Post.php:716 #, php-format msgid "Maybe attended by: %s" msgstr "" -#: src/Object/Post.php:735 +#: src/Object/Post.php:721 #, php-format msgid "Not attended by: %s" msgstr "" -#: src/Object/Post.php:740 +#: src/Object/Post.php:726 #, php-format msgid "Commented by: %s" msgstr "" -#: src/Object/Post.php:745 +#: src/Object/Post.php:731 #, php-format msgid "Reacted with %s by: %s" msgstr "" -#: src/Object/Post.php:768 +#: src/Object/Post.php:754 #, php-format msgid "Quote shared by: %s" msgstr "" -#: src/Protocol/ActivityPub/Receiver.php:568 +#: src/Protocol/ActivityPub/Receiver.php:557 msgid "Chat" msgstr "" -#: src/Protocol/Delivery.php:544 +#: src/Protocol/Delivery.php:530 msgid "(no subject)" msgstr "" -#: src/Protocol/OStatus.php:1392 -#, php-format -msgid "%s is now following %s." -msgstr "%s volgt nu %s." - -#: src/Protocol/OStatus.php:1393 -msgid "following" -msgstr "volgend" - -#: src/Protocol/OStatus.php:1396 -#, php-format -msgid "%s stopped following %s." -msgstr "%s stopte %s te volgen." - -#: src/Protocol/OStatus.php:1397 -msgid "stopped following" -msgstr "is gestopt met volgen" - -#: src/Render/FriendicaSmartyEngine.php:56 +#: src/Render/FriendicaSmartyEngine.php:42 #, php-format msgid "The folder %s must be writable by webserver." msgstr "" -#: src/Security/Authentication.php:216 +#: src/Security/Authentication.php:200 msgid "Login failed." msgstr "Login mislukt." -#: src/Security/Authentication.php:261 +#: src/Security/Authentication.php:245 msgid "Login failed. Please check your credentials." msgstr "Aanmelden mislukt. Controleer uw inloggegevens." -#: src/Security/Authentication.php:375 +#: src/Security/Authentication.php:359 #, php-format msgid "Welcome %s" msgstr "Welkom %s" -#: src/Security/Authentication.php:376 +#: src/Security/Authentication.php:360 msgid "Please upload a profile photo." msgstr "Upload een profielfoto." -#: src/Util/EMailer/MailBuilder.php:260 +#: src/Security/OpenWebAuth.php:149 +#, php-format +msgid "OpenWebAuth: %1$s welcomes %2$s" +msgstr "OpenWebAuth: %1$s verwelkomt %2$s" + +#: src/Util/EMailer/MailBuilder.php:246 msgid "Friendica Notification" msgstr "" -#: src/Util/EMailer/NotifyMailBuilder.php:78 -#: src/Util/EMailer/SystemMailBuilder.php:54 +#: src/Util/EMailer/NotifyMailBuilder.php:64 +#: src/Util/EMailer/SystemMailBuilder.php:40 #, php-format msgid "%1$s, %2$s Administrator" msgstr "" -#: src/Util/EMailer/NotifyMailBuilder.php:80 -#: src/Util/EMailer/SystemMailBuilder.php:56 +#: src/Util/EMailer/NotifyMailBuilder.php:66 +#: src/Util/EMailer/SystemMailBuilder.php:42 #, php-format msgid "%s Administrator" msgstr "" -#: src/Util/EMailer/NotifyMailBuilder.php:193 -#: src/Util/EMailer/NotifyMailBuilder.php:217 -#: src/Util/EMailer/SystemMailBuilder.php:101 -#: src/Util/EMailer/SystemMailBuilder.php:118 +#: src/Util/EMailer/NotifyMailBuilder.php:179 +#: src/Util/EMailer/NotifyMailBuilder.php:203 +#: src/Util/EMailer/SystemMailBuilder.php:87 +#: src/Util/EMailer/SystemMailBuilder.php:104 msgid "thanks" msgstr "" -#: src/Util/Temporal.php:172 +#: src/Util/Temporal.php:158 msgid "YYYY-MM-DD or MM-DD" msgstr "" -#: src/Util/Temporal.php:280 +#: src/Util/Temporal.php:266 #, php-format msgid "Time zone: %s Change in Settings" msgstr "" -#: src/Util/Temporal.php:320 src/Util/Temporal.php:329 +#: src/Util/Temporal.php:306 src/Util/Temporal.php:315 msgid "never" msgstr "" -#: src/Util/Temporal.php:343 +#: src/Util/Temporal.php:329 msgid "less than a second ago" msgstr "" -#: src/Util/Temporal.php:352 +#: src/Util/Temporal.php:338 msgid "year" msgstr "" -#: src/Util/Temporal.php:352 +#: src/Util/Temporal.php:338 msgid "years" msgstr "" -#: src/Util/Temporal.php:353 +#: src/Util/Temporal.php:339 msgid "months" msgstr "" -#: src/Util/Temporal.php:354 +#: src/Util/Temporal.php:340 msgid "weeks" msgstr "" -#: src/Util/Temporal.php:355 +#: src/Util/Temporal.php:341 msgid "days" msgstr "" -#: src/Util/Temporal.php:356 +#: src/Util/Temporal.php:342 msgid "hour" msgstr "" -#: src/Util/Temporal.php:356 +#: src/Util/Temporal.php:342 msgid "hours" msgstr "" -#: src/Util/Temporal.php:357 +#: src/Util/Temporal.php:343 msgid "minute" msgstr "" -#: src/Util/Temporal.php:357 +#: src/Util/Temporal.php:343 msgid "minutes" msgstr "" -#: src/Util/Temporal.php:358 +#: src/Util/Temporal.php:344 msgid "second" msgstr "" -#: src/Util/Temporal.php:358 +#: src/Util/Temporal.php:344 msgid "seconds" msgstr "" -#: src/Util/Temporal.php:367 +#: src/Util/Temporal.php:353 #, php-format msgid "in %1$d %2$s" msgstr "" -#: src/Util/Temporal.php:370 +#: src/Util/Temporal.php:356 #, php-format msgid "%1$d %2$s ago" msgstr "" -#: src/Worker/PushSubscription.php:110 +#: src/Worker/PushSubscription.php:96 msgid "Notification from Friendica" msgstr "" -#: src/Worker/PushSubscription.php:111 +#: src/Worker/PushSubscription.php:97 msgid "Empty Post" msgstr "" -#: view/theme/duepuntozero/config.php:68 +#: view/theme/duepuntozero/config.php:56 msgid "default" msgstr "" -#: view/theme/duepuntozero/config.php:69 +#: view/theme/duepuntozero/config.php:57 msgid "greenzero" msgstr "" -#: view/theme/duepuntozero/config.php:70 +#: view/theme/duepuntozero/config.php:58 msgid "purplezero" msgstr "" -#: view/theme/duepuntozero/config.php:71 +#: view/theme/duepuntozero/config.php:59 msgid "easterbunny" msgstr "" -#: view/theme/duepuntozero/config.php:72 +#: view/theme/duepuntozero/config.php:60 msgid "darkzero" msgstr "" -#: view/theme/duepuntozero/config.php:73 +#: view/theme/duepuntozero/config.php:61 msgid "comix" msgstr "" -#: view/theme/duepuntozero/config.php:74 +#: view/theme/duepuntozero/config.php:62 msgid "slackr" msgstr "" -#: view/theme/duepuntozero/config.php:87 +#: view/theme/duepuntozero/config.php:75 msgid "Variations" msgstr "" -#: view/theme/frio/config.php:146 +#: view/theme/frio/config.php:134 msgid "Note" msgstr "" -#: view/theme/frio/config.php:146 +#: view/theme/frio/config.php:134 msgid "Check image permissions if all users are allowed to see the image" msgstr "" -#: view/theme/frio/config.php:152 +#: view/theme/frio/config.php:140 msgid "Appearance" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Accent color" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Blue" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Red" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Purple" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Green" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Pink" msgstr "" -#: view/theme/frio/config.php:154 +#: view/theme/frio/config.php:142 msgid "Copy or paste schemestring" msgstr "" -#: view/theme/frio/config.php:154 +#: view/theme/frio/config.php:142 msgid "" "You can copy this string to share your theme with others. Pasting here " "applies the schemestring" msgstr "" -#: view/theme/frio/config.php:155 +#: view/theme/frio/config.php:143 msgid "Navigation bar background color" msgstr "" -#: view/theme/frio/config.php:156 +#: view/theme/frio/config.php:144 msgid "Navigation bar icon color " msgstr "" -#: view/theme/frio/config.php:157 +#: view/theme/frio/config.php:145 msgid "Link color" msgstr "" -#: view/theme/frio/config.php:158 +#: view/theme/frio/config.php:146 msgid "Set the background color" msgstr "" -#: view/theme/frio/config.php:159 +#: view/theme/frio/config.php:147 msgid "Content background opacity" msgstr "" -#: view/theme/frio/config.php:160 +#: view/theme/frio/config.php:148 msgid "Set the background image" msgstr "" -#: view/theme/frio/config.php:161 +#: view/theme/frio/config.php:149 msgid "Background image style" msgstr "" -#: view/theme/frio/config.php:164 +#: view/theme/frio/config.php:152 msgid "Always open Compose page" msgstr "" -#: view/theme/frio/config.php:164 +#: view/theme/frio/config.php:152 msgid "" "The New Post button always open the Compose page " "instead of the modal form. When this is disabled, the Compose page can be " "accessed with a middle click on the link or from the modal." msgstr "" -#: view/theme/frio/config.php:168 +#: view/theme/frio/config.php:156 msgid "Login page background image" msgstr "" -#: view/theme/frio/config.php:172 +#: view/theme/frio/config.php:160 msgid "Login page background color" msgstr "" -#: view/theme/frio/config.php:172 +#: view/theme/frio/config.php:160 msgid "Leave background image and color empty for theme defaults" msgstr "" -#: view/theme/frio/php/Image.php:39 +#: view/theme/frio/php/Image.php:27 msgid "Top Banner" msgstr "" -#: view/theme/frio/php/Image.php:39 +#: view/theme/frio/php/Image.php:27 msgid "" "Resize image to the width of the screen and show background color below on " "long pages." msgstr "" -#: view/theme/frio/php/Image.php:40 +#: view/theme/frio/php/Image.php:28 msgid "Full screen" msgstr "" -#: view/theme/frio/php/Image.php:40 +#: view/theme/frio/php/Image.php:28 msgid "" "Resize image to fill entire screen, clipping either the right or the bottom." msgstr "" -#: view/theme/frio/php/Image.php:41 +#: view/theme/frio/php/Image.php:29 msgid "Single row mosaic" msgstr "" -#: view/theme/frio/php/Image.php:41 +#: view/theme/frio/php/Image.php:29 msgid "" "Resize image to repeat it on a single row, either vertical or horizontal." msgstr "" -#: view/theme/frio/php/Image.php:42 +#: view/theme/frio/php/Image.php:30 msgid "Mosaic" msgstr "" -#: view/theme/frio/php/Image.php:42 +#: view/theme/frio/php/Image.php:30 msgid "Repeat image to fill the screen." msgstr "" -#: view/theme/frio/php/default.php:82 view/theme/frio/php/standard.php:40 +#: view/theme/frio/php/default.php:70 view/theme/frio/php/standard.php:28 msgid "Skip to main content" msgstr "" -#: view/theme/frio/php/default.php:153 view/theme/frio/php/standard.php:75 +#: view/theme/frio/php/default.php:141 view/theme/frio/php/standard.php:63 msgid "Back to top" msgstr "" -#: view/theme/frio/php/scheme.php:105 +#: view/theme/frio/php/scheme.php:93 msgid "Light" msgstr "" -#: view/theme/frio/php/scheme.php:106 +#: view/theme/frio/php/scheme.php:94 msgid "Dark" msgstr "" -#: view/theme/frio/php/scheme.php:107 +#: view/theme/frio/php/scheme.php:95 msgid "Black" msgstr "" -#: view/theme/frio/php/scheme.php:118 +#: view/theme/frio/php/scheme.php:106 msgid "Custom" msgstr "" -#: view/theme/frio/theme.php:214 +#: view/theme/frio/theme.php:202 msgid "Guest" msgstr "" -#: view/theme/frio/theme.php:217 +#: view/theme/frio/theme.php:205 msgid "Visitor" msgstr "" -#: view/theme/quattro/config.php:89 +#: view/theme/quattro/config.php:77 msgid "Alignment" msgstr "" -#: view/theme/quattro/config.php:89 +#: view/theme/quattro/config.php:77 msgid "Left" msgstr "" -#: view/theme/quattro/config.php:89 +#: view/theme/quattro/config.php:77 msgid "Center" msgstr "" -#: view/theme/quattro/config.php:90 +#: view/theme/quattro/config.php:78 msgid "Color scheme" msgstr "" -#: view/theme/quattro/config.php:91 +#: view/theme/quattro/config.php:79 msgid "Posts font size" msgstr "" -#: view/theme/quattro/config.php:92 +#: view/theme/quattro/config.php:80 msgid "Textareas font size" msgstr "" -#: view/theme/vier/config.php:91 +#: view/theme/vier/config.php:79 msgid "Comma separated list of helper groups" msgstr "" -#: view/theme/vier/config.php:131 +#: view/theme/vier/config.php:119 msgid "don't show" msgstr "" -#: view/theme/vier/config.php:131 +#: view/theme/vier/config.php:119 msgid "show" msgstr "" -#: view/theme/vier/config.php:137 +#: view/theme/vier/config.php:125 msgid "Set style" msgstr "" -#: view/theme/vier/config.php:138 +#: view/theme/vier/config.php:126 msgid "Community Pages" msgstr "" -#: view/theme/vier/config.php:139 view/theme/vier/theme.php:148 +#: view/theme/vier/config.php:127 view/theme/vier/theme.php:136 msgid "Community Profiles" msgstr "" -#: view/theme/vier/config.php:140 +#: view/theme/vier/config.php:128 msgid "Help or @NewHere ?" msgstr "" -#: view/theme/vier/config.php:141 view/theme/vier/theme.php:319 +#: view/theme/vier/config.php:129 view/theme/vier/theme.php:307 msgid "Connect Services" msgstr "" -#: view/theme/vier/config.php:142 +#: view/theme/vier/config.php:130 msgid "Find Friends" msgstr "" -#: view/theme/vier/config.php:143 view/theme/vier/theme.php:175 +#: view/theme/vier/config.php:131 view/theme/vier/theme.php:163 msgid "Last users" msgstr "" -#: view/theme/vier/theme.php:234 +#: view/theme/vier/theme.php:222 msgid "Quick Start" msgstr "" diff --git a/view/lang/nl/strings.php b/view/lang/nl/strings.php index a28a2266c2..8c4096e011 100644 --- a/view/lang/nl/strings.php +++ b/view/lang/nl/strings.php @@ -586,7 +586,6 @@ $a->strings['An author or name was not found.'] = 'Er werd geen auteur of naam g $a->strings['No browser URL could be matched to this address.'] = 'Er kan geen browser URL gematcht worden met dit adres.'; $a->strings['Unable to match @-style Identity Address with a known protocol or email contact.'] = 'Het @-stijl-identiteitsadres komt niet overeen met een nekend protocol of e-mailcontact.'; $a->strings['Use mailto: in front of address to force email check.'] = 'Gebruik mailto: voor het adres om een e-mailcontrole af te dwingen.'; -$a->strings['The profile address specified belongs to a network which has been disabled on this site.'] = 'Het opgegeven profiel adres behoort tot een netwerk dat gedeactiveerd is op deze site.'; $a->strings['Limited profile. This person will be unable to receive direct/personal notifications from you.'] = 'Profiel met restricties. Deze peresoon zal geen directe/persoonlijke notificaties van jou kunnen ontvangen.'; $a->strings['Unable to retrieve contact information.'] = 'Het was niet mogelijk informatie over dit contact op te halen.'; $a->strings['Starts:'] = 'Begint:'; @@ -629,7 +628,6 @@ $a->strings['g A l F d'] = 'G l j F'; $a->strings['[No description]'] = '[Geen omschrijving]'; $a->strings['Event Reminders'] = 'Gebeurtenisherinneringen'; $a->strings['Upcoming events the next 7 days:'] = 'Evenementen de komende 7 dagen:'; -$a->strings['OpenWebAuth: %1$s welcomes %2$s'] = 'OpenWebAuth: %1$s verwelkomt %2$s'; $a->strings['Hometown:'] = 'Woonplaats:'; $a->strings['With:'] = 'Met:'; $a->strings['Since:'] = 'Sinds:'; @@ -882,7 +880,6 @@ $a->strings['When the database cleanup is enabled, this defines the days after w $a->strings['Lifespan of unclaimed items'] = 'Levensduur van niet geclaimde items'; $a->strings['When the database cleanup is enabled, this defines the days after which unclaimed remote items (mostly content from the relay) will be deleted. Default value is 90 days. Defaults to the general lifespan value of remote items if set to 0.'] = 'Als de database opruiming geactiveerd is, dan definieert dit na hoeveel dagen ongeclaimde remote items (meestal content van een relais) zal verwijderd worden. Standaard waarde is 90 dagen. Als de waarde 0 is, dan is de waarde gelijk aan de algemene levensduur van remote items.'; $a->strings['Lifespan of raw conversation data'] = 'Levenstijd van ruwe gespreksdata'; -$a->strings['The conversation data is used for ActivityPub and OStatus, as well as for debug purposes. It should be safe to remove it after 14 days, default is 90 days.'] = 'De gespreksdata word gebruikt voor ActivityPub, OStatus en voor debugging doeleinden. Het is veilig om dit na 14 dagen te verwijderen. Standaard staat dit op 90 dagen.'; $a->strings['Maximum numbers of comments per post'] = 'Maximum aantal reacties per bericht'; $a->strings['How much comments should be shown for each post? Default value is 100.'] = 'Hoeveel reacties moeten getoond worden per bericht? Standaard waarde is 100.'; $a->strings['Temp path'] = 'Tijdelijk pad'; @@ -1057,7 +1054,6 @@ $a->strings['Submit Request'] = 'Aanvraag indienen'; $a->strings['You already added this contact.'] = 'Je hebt deze kontakt al toegevoegd'; $a->strings['The network type couldn\'t be detected. Contact can\'t be added.'] = 'Het type netwerk kon niet gedetecteerd worden. Contact kan niet toegevoegd worden.'; $a->strings['Diaspora support isn\'t enabled. Contact can\'t be added.'] = 'Diaspora ondersteuning is niet geactiveerd. Contact kan niet toegevoegd worden.'; -$a->strings['OStatus support is disabled. Contact can\'t be added.'] = 'OStatus ondersteuning is niet geactiveerd. Contact kan niet toegevoegd woren.'; $a->strings['Please answer the following:'] = 'Beantwoord het volgende:'; $a->strings['Your Identity Address:'] = 'Adres van je identiteit:'; $a->strings['Profile URL'] = 'Profiel url'; @@ -1343,8 +1339,6 @@ $a->strings['Show unread'] = 'Toon ongelezen'; $a->strings['{0} requested registration'] = '{0} vroeg om zich te registreren'; $a->strings['Authorize application connection'] = 'Verbinding met de applicatie goedkeuren'; $a->strings['Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?'] = 'Wil je deze toepassing toestemming geven om jouw berichten en contacten in te kijken, en/of nieuwe berichten in jouw plaats aan te maken?'; -$a->strings['Resubscribing to OStatus contacts'] = 'Opnieuw inschrijven bij OStatus contacten'; -$a->strings['Keep this window open until done.'] = 'Houd dit scherm open tot het klaar is'; $a->strings['No contact provided.'] = 'Geen contact opgegeven.'; $a->strings['Couldn\'t fetch information for contact.'] = 'Kon de informatie voor het contact niet ophalen.'; $a->strings['Couldn\'t fetch friends for contact.'] = 'Kon de vrienden van contact niet ophalen.'; @@ -1352,6 +1346,7 @@ $a->strings['Done'] = 'Klaar'; $a->strings['success'] = 'Succesvol'; $a->strings['failed'] = 'Mislukt'; $a->strings['ignored'] = 'Verboden'; +$a->strings['Keep this window open until done.'] = 'Houd dit scherm open tot het klaar is'; $a->strings['The Photo with id %s is not available.'] = 'De foto met id %s is niet beschikbaar'; $a->strings['Invalid photo with id %s.'] = 'Ongeldige foto met ID %s'; $a->strings['Edit post'] = 'Bericht bewerken'; @@ -1366,9 +1361,9 @@ $a->strings['Remove'] = 'Verwijderen'; $a->strings['Remote privacy information not available.'] = 'Privacyinformatie op afstand niet beschikbaar.'; $a->strings['Visible to:'] = 'Zichtbaar voor:'; $a->strings['No contacts.'] = 'Geen contacten.'; -$a->strings['%s\'s timeline'] = 'Tijdslijn van %s'; $a->strings['%s\'s posts'] = 'Berichten van %s'; $a->strings['%s\'s comments'] = 'reactie van %s'; +$a->strings['%s\'s timeline'] = 'Tijdslijn van %s'; $a->strings['Image exceeds size limit of %s'] = 'Beeld is groter dan de limiet ( %s )'; $a->strings['Image upload didn\'t complete, please try again'] = 'Opladen van het beeld is niet compleet, probeer het opnieuw'; $a->strings['Image file is missing'] = 'Beeld bestand ontbreekt'; @@ -1563,7 +1558,6 @@ $a->strings['None'] = 'Geen'; $a->strings['General Social Media Settings'] = 'Algemene Sociale Media Instellingen'; $a->strings['Attach the link title'] = 'Voeg de linktitel toe'; $a->strings['When activated, the title of the attached link will be added as a title on posts to Diaspora. This is mostly helpful with "remote-self" contacts that share feed content.'] = 'Indien geactiveerd, wordt de titel van de bijgevoegde link toegevoegd als titel op berichten op Diaspora. Dit is vooral handig bij contacten op afstand die zelf feed-inhoud delen.'; -$a->strings['Repair OStatus subscriptions'] = 'Herstel OStatus inschrijvingen'; $a->strings['Email/Mailbox Setup'] = 'E-mail Instellen'; $a->strings['If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox.'] = 'Als je wilt communiceren met e-mail contacten via deze dienst (optioneel), moet je hier opgeven hoe ik jouw mailbox kan bereiken.'; $a->strings['Last successful email check:'] = 'Laatste succesvolle e-mail controle:'; @@ -1801,7 +1795,6 @@ $a->strings['%s commented on %s\'s post'] = '%s gaf een reactie op het bericht v $a->strings['%s created a new post'] = '%s schreef een nieuw bericht'; $a->strings['Friend Suggestion'] = 'Vriendschapsvoorstel'; $a->strings['Friend/Connect Request'] = 'Vriendschapsverzoek'; -$a->strings['New Follower'] = 'Nieuwe Volger'; $a->strings['%s New mail received at %s'] = '%s Nieuw bericht ontvangen op %s'; $a->strings['%1$s sent you a new private message at %2$s.'] = '%1$s sent you a new private message at %2$s.'; $a->strings['a private message'] = 'een prive bericht'; @@ -1871,11 +1864,8 @@ $a->strings['%d comment'] = [ ]; $a->strings['Show more'] = 'Toon meer'; $a->strings['Show fewer'] = 'Toon minder'; -$a->strings['%s is now following %s.'] = '%s volgt nu %s.'; -$a->strings['following'] = 'volgend'; -$a->strings['%s stopped following %s.'] = '%s stopte %s te volgen.'; -$a->strings['stopped following'] = 'is gestopt met volgen'; $a->strings['Login failed.'] = 'Login mislukt.'; $a->strings['Login failed. Please check your credentials.'] = 'Aanmelden mislukt. Controleer uw inloggegevens.'; $a->strings['Welcome %s'] = 'Welkom %s'; $a->strings['Please upload a profile photo.'] = 'Upload een profielfoto.'; +$a->strings['OpenWebAuth: %1$s welcomes %2$s'] = 'OpenWebAuth: %1$s verwelkomt %2$s'; diff --git a/view/lang/pl/messages.po b/view/lang/pl/messages.po index 3c29db6d92..4a14eae481 100644 --- a/view/lang/pl/messages.po +++ b/view/lang/pl/messages.po @@ -1,8 +1,7 @@ # FRIENDICA Distributed Social Network -# SPDX-FileCopyrightText: Copyright (C) 2010-2024, the Friendica project -# -# SPDX-License-Identifier: AGPL-3.0-or-later -# +# Copyright (C) 2010-2024, the Friendica project +# This file is distributed under the same license as the Friendica package. +# # Translators: # Adam Jurkiewiczupload_max_filesize
is set to %s (%s byte)"
msgstr ""
-#: src/Module/Admin/Site.php:499
+#: src/Module/Admin/Site.php:489
msgid "Maximum image length"
msgstr "Maksymalna długość obrazu"
-#: src/Module/Admin/Site.php:499
+#: src/Module/Admin/Site.php:489
msgid ""
"Maximum length in pixels of the longest side of uploaded images. Default is "
"-1, which means no limits."
msgstr "Maksymalna długość w pikselach dłuższego boku przesyłanego obrazu. Wartością domyślną jest -1, co oznacza brak ograniczeń."
-#: src/Module/Admin/Site.php:500
+#: src/Module/Admin/Site.php:490
msgid "JPEG image quality"
msgstr "Jakość obrazu JPEG"
-#: src/Module/Admin/Site.php:500
+#: src/Module/Admin/Site.php:490
msgid ""
"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
"100, which is full quality."
msgstr "Przesłane pliki JPEG zostaną zapisane w tym ustawieniu jakości [0-100]. Domyślna wartość to 100, która jest pełną jakością."
-#: src/Module/Admin/Site.php:502
+#: src/Module/Admin/Site.php:491
+msgid "Maximum media file size"
+msgstr ""
+
+#: src/Module/Admin/Site.php:491
+#, php-format
+msgid ""
+"Maximum size in bytes of uploaded media files. Default is 0, which means no limits. You can put k, m, or g behind the desired value for KiB, MiB, GiB, respectively.\n"
+"\t\t\t\t\t\t\t\t\t\t\t\t\tThe value of upload_max_filesize
in your PHP.ini
needs be set to at least the desired limit.\n"
+"\t\t\t\t\t\t\t\t\t\t\t\t\tCurrently upload_max_filesize
is set to %s (%s byte)"
+msgstr ""
+
+#: src/Module/Admin/Site.php:496
msgid "Register policy"
msgstr "Zasady rejestracji"
-#: src/Module/Admin/Site.php:503
+#: src/Module/Admin/Site.php:497
msgid "Maximum Users"
msgstr ""
-#: src/Module/Admin/Site.php:503
+#: src/Module/Admin/Site.php:497
msgid ""
"If defined, the register policy is automatically closed when the given "
"number of users is reached and reopens the registry when the number drops "
@@ -4846,167 +4856,167 @@ msgid ""
"not when the policy is set to approval."
msgstr ""
-#: src/Module/Admin/Site.php:504
+#: src/Module/Admin/Site.php:498
msgid "Maximum Daily Registrations"
msgstr "Maksymalna dzienna rejestracja"
-#: src/Module/Admin/Site.php:504
+#: src/Module/Admin/Site.php:498
msgid ""
"If registration is permitted above, this sets the maximum number of new user"
" registrations to accept per day. If register is set to closed, this "
"setting has no effect."
msgstr "Jeśli rejestracja powyżej jest dozwolona, to określa maksymalną liczbę nowych rejestracji użytkowników do zaakceptowania na dzień. Jeśli rejestracja jest ustawiona na \"Zamknięta\", to ustawienie to nie ma wpływu."
-#: src/Module/Admin/Site.php:505
+#: src/Module/Admin/Site.php:499
msgid "Register text"
msgstr "Zarejestruj tekst"
-#: src/Module/Admin/Site.php:505
+#: src/Module/Admin/Site.php:499
msgid ""
"Will be displayed prominently on the registration page. You can use BBCode "
"here."
msgstr "Będą wyświetlane w widocznym miejscu na stronie rejestracji. Możesz użyć BBCode tutaj."
-#: src/Module/Admin/Site.php:506
+#: src/Module/Admin/Site.php:500
msgid "Forbidden Nicknames"
msgstr "Zakazane pseudonimy"
-#: src/Module/Admin/Site.php:506
+#: src/Module/Admin/Site.php:500
msgid ""
"Comma separated list of nicknames that are forbidden from registration. "
"Preset is a list of role names according RFC 2142."
msgstr "Lista oddzielonych przecinkami pseudonimów, których nie wolno rejestrować. Preset to lista nazw ról zgodnie z RFC 2142."
-#: src/Module/Admin/Site.php:507
+#: src/Module/Admin/Site.php:501
msgid "Accounts abandoned after x days"
msgstr "Konta porzucone po x dni"
-#: src/Module/Admin/Site.php:507
+#: src/Module/Admin/Site.php:501
msgid ""
"Will not waste system resources polling external sites for abandonded "
"accounts. Enter 0 for no time limit."
msgstr "Nie będzie marnować zasobów systemu wypytując zewnętrzne strony o opuszczone konta. Ustaw 0 dla braku limitu czasu ."
-#: src/Module/Admin/Site.php:508
+#: src/Module/Admin/Site.php:502
msgid "Allowed friend domains"
msgstr "Dozwolone domeny przyjaciół"
-#: src/Module/Admin/Site.php:508
+#: src/Module/Admin/Site.php:502
msgid ""
"Comma separated list of domains which are allowed to establish friendships "
"with this site. Wildcards are accepted. Empty to allow any domains"
msgstr "Rozdzielana przecinkami lista domen, które mogą nawiązywać przyjaźnie z tą witryną. Symbole wieloznaczne są akceptowane. Pozostaw puste by zezwolić każdej domenie na zaprzyjaźnienie."
-#: src/Module/Admin/Site.php:509
+#: src/Module/Admin/Site.php:503
msgid "Allowed email domains"
msgstr "Dozwolone domeny e-mailowe"
-#: src/Module/Admin/Site.php:509
+#: src/Module/Admin/Site.php:503
msgid ""
"Comma separated list of domains which are allowed in email addresses for "
"registrations to this site. Wildcards are accepted. Empty to allow any "
"domains"
msgstr "Rozdzielana przecinkami lista domen dozwolonych w adresach e-mail do rejestracji na tej stronie. Symbole wieloznaczne są akceptowane. Opróżnij, aby zezwolić na dowolne domeny"
-#: src/Module/Admin/Site.php:510
+#: src/Module/Admin/Site.php:504
msgid "Disallowed email domains"
msgstr ""
-#: src/Module/Admin/Site.php:510
+#: src/Module/Admin/Site.php:504
msgid ""
"Comma separated list of domains which are rejected as email addresses for "
"registrations to this site. Wildcards are accepted."
msgstr ""
-#: src/Module/Admin/Site.php:511
+#: src/Module/Admin/Site.php:505
msgid "No OEmbed rich content"
msgstr "Brak treści multimedialnych ze znaczkiem HTML"
-#: src/Module/Admin/Site.php:511
+#: src/Module/Admin/Site.php:505
msgid ""
"Don't show the rich content (e.g. embedded PDF), except from the domains "
"listed below."
msgstr "Nie wyświetlaj zasobów treści (np. osadzonego pliku PDF), z wyjątkiem domen wymienionych poniżej."
-#: src/Module/Admin/Site.php:512
+#: src/Module/Admin/Site.php:506
msgid "Trusted third-party domains"
msgstr "Zaufane domeny zewnętrzne"
-#: src/Module/Admin/Site.php:512
+#: src/Module/Admin/Site.php:506
msgid ""
"Comma separated list of domains from which content is allowed to be embedded"
" in posts like with OEmbed. All sub-domains of the listed domains are "
"allowed as well."
msgstr "Oddzielona przecinkami lista domen, z których treść może być osadzana we wpisach, tak jak w przypadku OEmbed. Dozwolone są również wszystkie subdomeny wymienionych domen."
-#: src/Module/Admin/Site.php:513
+#: src/Module/Admin/Site.php:507
msgid "Block public"
msgstr "Blokuj publicznie"
-#: src/Module/Admin/Site.php:513
+#: src/Module/Admin/Site.php:507
msgid ""
"Check to block public access to all otherwise public personal pages on this "
"site unless you are currently logged in."
msgstr "Zaznacz, aby zablokować publiczny dostęp do wszystkich publicznych stron prywatnych w tej witrynie, chyba że jesteś zalogowany."
-#: src/Module/Admin/Site.php:514
+#: src/Module/Admin/Site.php:508
msgid "Force publish"
msgstr "Wymuś publikację"
-#: src/Module/Admin/Site.php:514
+#: src/Module/Admin/Site.php:508
msgid ""
"Check to force all profiles on this site to be listed in the site directory."
msgstr "Zaznacz, aby wymusić umieszczenie wszystkich profili w tej witrynie w katalogu witryny."
-#: src/Module/Admin/Site.php:514
+#: src/Module/Admin/Site.php:508
msgid "Enabling this may violate privacy laws like the GDPR"
msgstr "Włączenie tego może naruszyć prawa ochrony prywatności, takie jak GDPR"
-#: src/Module/Admin/Site.php:515
+#: src/Module/Admin/Site.php:509
msgid "Global directory URL"
msgstr "Globalny adres URL katalogu"
-#: src/Module/Admin/Site.php:515
+#: src/Module/Admin/Site.php:509
msgid ""
"URL to the global directory. If this is not set, the global directory is "
"completely unavailable to the application."
msgstr "Adres URL do katalogu globalnego. Jeśli nie zostanie to ustawione, katalog globalny jest całkowicie niedostępny dla aplikacji."
-#: src/Module/Admin/Site.php:516
+#: src/Module/Admin/Site.php:510
msgid "Private posts by default for new users"
msgstr "Prywatne posty domyślnie dla nowych użytkowników"
-#: src/Module/Admin/Site.php:516
+#: src/Module/Admin/Site.php:510
msgid ""
"Set default post permissions for all new members to the default privacy "
"circle rather than public."
msgstr ""
-#: src/Module/Admin/Site.php:517
+#: src/Module/Admin/Site.php:511
msgid "Don't include post content in email notifications"
msgstr "Nie wklejaj zawartości postu do powiadomienia o poczcie"
-#: src/Module/Admin/Site.php:517
+#: src/Module/Admin/Site.php:511
msgid ""
"Don't include the content of a post/comment/private message/etc. in the "
"email notifications that are sent out from this site, as a privacy measure."
msgstr "W celu ochrony prywatności, nie włączaj zawartości postu/komentarza/wiadomości prywatnej/etc. do powiadomień w wiadomościach mailowych wysyłanych z tej strony."
-#: src/Module/Admin/Site.php:518
+#: src/Module/Admin/Site.php:512
msgid "Disallow public access to addons listed in the apps menu."
msgstr "Nie zezwalaj na publiczny dostęp do dodatkowych wtyczek wyszczególnionych w menu aplikacji."
-#: src/Module/Admin/Site.php:518
+#: src/Module/Admin/Site.php:512
msgid ""
"Checking this box will restrict addons listed in the apps menu to members "
"only."
msgstr "Zaznaczenie tego pola spowoduje ograniczenie dodatków wymienionych w menu aplikacji tylko dla członków."
-#: src/Module/Admin/Site.php:519
+#: src/Module/Admin/Site.php:513
msgid "Don't embed private images in posts"
msgstr "Nie umieszczaj prywatnych zdjęć we wpisach"
-#: src/Module/Admin/Site.php:519
+#: src/Module/Admin/Site.php:513
msgid ""
"Don't replace locally-hosted private photos in posts with an embedded copy "
"of the image. This means that contacts who receive posts containing private "
@@ -5014,11 +5024,11 @@ msgid ""
"while."
msgstr "Nie zastępuj lokalnie hostowanych zdjęć prywatnych we wpisach za pomocą osadzonej kopii obrazu. Oznacza to, że osoby, które otrzymują posty zawierające prywatne zdjęcia, będą musiały uwierzytelnić i wczytać każdy obraz, co może trochę potrwać."
-#: src/Module/Admin/Site.php:520
+#: src/Module/Admin/Site.php:514
msgid "Explicit Content"
msgstr "Treści dla dorosłych"
-#: src/Module/Admin/Site.php:520
+#: src/Module/Admin/Site.php:514
msgid ""
"Set this to announce that your node is used mostly for explicit content that"
" might not be suited for minors. This information will be published in the "
@@ -5027,329 +5037,319 @@ msgid ""
"will be shown at the user registration page."
msgstr "Ustaw to, aby ogłosić, że Twój węzeł jest używany głównie do jawnej treści, która może nie być odpowiednia dla nieletnich. Informacje te zostaną opublikowane w informacjach o węźle i mogą zostać wykorzystane, np. w katalogu globalnym, aby filtrować węzeł z list węzłów do przyłączenia. Dodatkowo notatka o tym zostanie pokazana na stronie rejestracji użytkownika."
-#: src/Module/Admin/Site.php:521
+#: src/Module/Admin/Site.php:515
msgid "Only local search"
msgstr ""
-#: src/Module/Admin/Site.php:521
+#: src/Module/Admin/Site.php:515
msgid ""
"Blocks search for users who are not logged in to prevent crawlers from "
"blocking your system."
msgstr ""
-#: src/Module/Admin/Site.php:522
+#: src/Module/Admin/Site.php:516
msgid "Blocked tags for trending tags"
msgstr ""
-#: src/Module/Admin/Site.php:522
+#: src/Module/Admin/Site.php:516
msgid ""
"Comma separated list of hashtags that shouldn't be displayed in the trending"
" tags."
msgstr ""
-#: src/Module/Admin/Site.php:523
+#: src/Module/Admin/Site.php:517
msgid "Cache contact avatars"
msgstr "Buforuj awatary kontaktów"
-#: src/Module/Admin/Site.php:523
+#: src/Module/Admin/Site.php:517
msgid ""
"Locally store the avatar pictures of the contacts. This uses a lot of "
"storage space but it increases the performance."
msgstr "Lokalnie przechowuj zdjęcia awatarów kontaktów. To zajmuje dużo miejsca, ale zwiększa wydajność."
-#: src/Module/Admin/Site.php:524
+#: src/Module/Admin/Site.php:518
msgid "Allow Users to set remote_self"
msgstr "Zezwól użytkownikom na ustawienie remote_self"
-#: src/Module/Admin/Site.php:524
+#: src/Module/Admin/Site.php:518
msgid ""
"With checking this, every user is allowed to mark every contact as a "
"remote_self in the repair contact dialog. Setting this flag on a contact "
"causes mirroring every posting of that contact in the users stream."
msgstr "Po sprawdzeniu tego każdy użytkownik może zaznaczyć każdy kontakt jako zdalny w oknie dialogowym kontaktu naprawczego. Ustawienie tej flagi na kontakcie powoduje dublowanie każdego wpisu tego kontaktu w strumieniu użytkowników."
-#: src/Module/Admin/Site.php:525
+#: src/Module/Admin/Site.php:519
msgid "Allow Users to set up relay channels"
msgstr ""
-#: src/Module/Admin/Site.php:525
+#: src/Module/Admin/Site.php:519
msgid ""
"If enabled, it is possible to create relay users that are used to reshare "
"content based on user defined channels."
msgstr ""
-#: src/Module/Admin/Site.php:526
+#: src/Module/Admin/Site.php:520
msgid "Adjust the feed poll frequency"
msgstr ""
-#: src/Module/Admin/Site.php:526
+#: src/Module/Admin/Site.php:520
msgid "Automatically detect and set the best feed poll frequency."
msgstr ""
-#: src/Module/Admin/Site.php:527
+#: src/Module/Admin/Site.php:521
msgid "Minimum poll interval"
msgstr ""
-#: src/Module/Admin/Site.php:527
+#: src/Module/Admin/Site.php:521
msgid ""
"Minimal distance in minutes between two polls for mail and feed contacts. "
"Reasonable values are between 1 and 59."
msgstr ""
-#: src/Module/Admin/Site.php:528
+#: src/Module/Admin/Site.php:522
msgid "Enable multiple registrations"
msgstr "Włącz wiele rejestracji"
-#: src/Module/Admin/Site.php:528
+#: src/Module/Admin/Site.php:522
msgid "Enable users to register additional accounts for use as pages."
msgstr "Zezwól użytkownikom na rejestrowanie dodatkowych kont do użytku jako strony."
-#: src/Module/Admin/Site.php:529
+#: src/Module/Admin/Site.php:523
msgid "Enable OpenID"
msgstr "Włącz OpenID"
-#: src/Module/Admin/Site.php:529
+#: src/Module/Admin/Site.php:523
msgid "Enable OpenID support for registration and logins."
msgstr "Włącz obsługę OpenID dla rejestracji i logowania."
-#: src/Module/Admin/Site.php:530
+#: src/Module/Admin/Site.php:524
msgid "Enable full name check"
msgstr ""
-#: src/Module/Admin/Site.php:530
+#: src/Module/Admin/Site.php:524
msgid ""
"Prevents users from registering with a display name with fewer than two "
"parts separated by spaces."
msgstr ""
-#: src/Module/Admin/Site.php:531
+#: src/Module/Admin/Site.php:525
msgid "Email administrators on new registration"
msgstr ""
-#: src/Module/Admin/Site.php:531
+#: src/Module/Admin/Site.php:525
msgid ""
"If enabled and the system is set to an open registration, an email for each "
"new registration is sent to the administrators."
msgstr "Jeśli ta opcja jest włączona, a system jest ustawiony na otwartą rejestrację, wiadomość e-mail dla każdej nowej rejestracji jest wysyłana do administratorów."
-#: src/Module/Admin/Site.php:532
+#: src/Module/Admin/Site.php:526
msgid "Community pages for visitors"
msgstr "Strony społecznościowe dla odwiedzających"
-#: src/Module/Admin/Site.php:532
+#: src/Module/Admin/Site.php:526
msgid ""
"Which community pages should be available for visitors. Local users always "
"see both pages."
msgstr "Które strony społeczności powinny być dostępne dla odwiedzających. Lokalni użytkownicy zawsze widzą obie strony."
-#: src/Module/Admin/Site.php:533
+#: src/Module/Admin/Site.php:527
msgid "Posts per user on community page"
msgstr "Lista wpisów użytkownika na stronie społeczności"
-#: src/Module/Admin/Site.php:533
+#: src/Module/Admin/Site.php:527
msgid ""
"The maximum number of posts per user on the local community page. This is "
"useful, when a single user floods the local community page."
msgstr ""
-#: src/Module/Admin/Site.php:534
+#: src/Module/Admin/Site.php:528
msgid "Posts per server on community page"
msgstr ""
-#: src/Module/Admin/Site.php:534
+#: src/Module/Admin/Site.php:528
msgid ""
"The maximum number of posts per server on the global community page. This is"
" useful, when posts from a single server flood the global community page."
msgstr ""
-#: src/Module/Admin/Site.php:536
+#: src/Module/Admin/Site.php:530
msgid "Enable Mail support"
msgstr "Włącz obsługę maili"
-#: src/Module/Admin/Site.php:536
+#: src/Module/Admin/Site.php:530
msgid ""
"Enable built-in mail support to poll IMAP folders and to reply via mail."
msgstr "Włącz wbudowaną obsługę poczty, aby odpytywać katalogi IMAP i odpowiadać pocztą."
-#: src/Module/Admin/Site.php:537
+#: src/Module/Admin/Site.php:531
msgid ""
"Mail support can't be enabled because the PHP IMAP module is not installed."
msgstr "Nie można włączyć obsługi poczty, ponieważ moduł PHP IMAP nie jest zainstalowany."
-#: src/Module/Admin/Site.php:538
-msgid "Enable OStatus support"
-msgstr "Włącz obsługę OStatus"
-
-#: src/Module/Admin/Site.php:538
-msgid ""
-"Enable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
-"communications in OStatus are public."
-msgstr "Włącz wbudowaną kompatybilność z OStatus (StatusNet, GNU Social itp.). Wszystkie komunikaty w OSstatus są publiczne."
-
-#: src/Module/Admin/Site.php:540
+#: src/Module/Admin/Site.php:533
msgid ""
"Diaspora support can't be enabled because Friendica was installed into a sub"
" directory."
msgstr "Obsługa Diaspory nie może być włączona, ponieważ Friendica została zainstalowana w podkatalogu."
-#: src/Module/Admin/Site.php:541
+#: src/Module/Admin/Site.php:534
msgid "Enable Diaspora support"
msgstr "Włączyć obsługę Diaspory"
-#: src/Module/Admin/Site.php:541
+#: src/Module/Admin/Site.php:534
msgid ""
"Enable built-in Diaspora network compatibility for communicating with "
"diaspora servers."
msgstr "Włącz wbudowaną kompatybilność sieci Diaspora do komunikacji z serwerami diaspory."
-#: src/Module/Admin/Site.php:542
+#: src/Module/Admin/Site.php:535
msgid "Verify SSL"
msgstr "Weryfikacja SSL"
-#: src/Module/Admin/Site.php:542
+#: src/Module/Admin/Site.php:535
msgid ""
"If you wish, you can turn on strict certificate checking. This will mean you"
" cannot connect (at all) to self-signed SSL sites."
msgstr "Jeśli chcesz, możesz włączyć ścisłe sprawdzanie certyfikatu. Oznacza to, że nie możesz połączyć się (w ogóle) z własnoręcznie podpisanymi stronami SSL."
-#: src/Module/Admin/Site.php:543
+#: src/Module/Admin/Site.php:536
msgid "Proxy user"
msgstr "Użytkownik proxy"
-#: src/Module/Admin/Site.php:543
+#: src/Module/Admin/Site.php:536
msgid "User name for the proxy server."
msgstr "Nazwa użytkownika serwera proxy."
-#: src/Module/Admin/Site.php:544
+#: src/Module/Admin/Site.php:537
msgid "Proxy URL"
msgstr "URL pośrednika"
-#: src/Module/Admin/Site.php:544
+#: src/Module/Admin/Site.php:537
msgid ""
"If you want to use a proxy server that Friendica should use to connect to "
"the network, put the URL of the proxy here."
msgstr "Jeśli chcesz używać serwera proxy, którego Friendica powinna używać do łączenia się z siecią, umieść tutaj adres URL proxy."
-#: src/Module/Admin/Site.php:545
+#: src/Module/Admin/Site.php:538
msgid "Network timeout"
msgstr "Limit czasu sieci"
-#: src/Module/Admin/Site.php:545
+#: src/Module/Admin/Site.php:538
msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
msgstr "Wartość jest w sekundach. Ustaw na 0 dla nieograniczonej (niezalecane)."
-#: src/Module/Admin/Site.php:546
+#: src/Module/Admin/Site.php:539
msgid "Maximum Load Average"
msgstr "Maksymalne obciążenie średnie"
-#: src/Module/Admin/Site.php:546
+#: src/Module/Admin/Site.php:539
#, php-format
msgid ""
"Maximum system load before delivery and poll processes are deferred - "
"default %d."
msgstr "Maksymalne obciążenie systemu przed dostarczeniem i procesami odpytywania jest odroczone - domyślnie %d."
-#: src/Module/Admin/Site.php:547
+#: src/Module/Admin/Site.php:540
msgid "Minimal Memory"
msgstr "Minimalna pamięć"
-#: src/Module/Admin/Site.php:547
+#: src/Module/Admin/Site.php:540
msgid ""
"Minimal free memory in MB for the worker. Needs access to /proc/meminfo - "
"default 0 (deactivated)."
msgstr "Minimalna wolna pamięć w MB dla workera. Potrzebuje dostępu do /proc/ meminfo - domyślnie 0 (wyłączone)."
-#: src/Module/Admin/Site.php:548
+#: src/Module/Admin/Site.php:541
msgid "Periodically optimize tables"
msgstr "Okresowo optymalizuj tabele"
-#: src/Module/Admin/Site.php:548
+#: src/Module/Admin/Site.php:541
msgid "Periodically optimize tables like the cache and the workerqueue"
msgstr "Okresowo optymalizuj tabele, takie jak pamięć podręczna i kolejka workerów"
-#: src/Module/Admin/Site.php:550
+#: src/Module/Admin/Site.php:543
msgid "Discover followers/followings from contacts"
msgstr "Odkryj obserwujących/obserwowanych z kontaktów"
-#: src/Module/Admin/Site.php:550
+#: src/Module/Admin/Site.php:543
msgid ""
"If enabled, contacts are checked for their followers and following contacts."
msgstr "Jeśli ta opcja jest włączona, kontakty są sprawdzane pod kątem ich obserwujących i śledzonych kontaktów."
-#: src/Module/Admin/Site.php:551
+#: src/Module/Admin/Site.php:544
msgid "None - deactivated"
msgstr "Brak - dezaktywowany"
-#: src/Module/Admin/Site.php:552
+#: src/Module/Admin/Site.php:545
msgid ""
"Local contacts - contacts of our local contacts are discovered for their "
"followers/followings."
msgstr "Kontakty lokalne - kontakty naszych lokalnych kontaktów są wykrywane dla ich obserwujących/obserwujących."
-#: src/Module/Admin/Site.php:553
+#: src/Module/Admin/Site.php:546
msgid ""
"Interactors - contacts of our local contacts and contacts who interacted on "
"locally visible postings are discovered for their followers/followings."
msgstr "Interaktorzy - kontakty naszych lokalnych kontaktów i kontakty, które wchodziły w interakcję z lokalnie widocznymi wpisami, są wykrywane dla ich obserwujących/obserwowanych."
-#: src/Module/Admin/Site.php:555
+#: src/Module/Admin/Site.php:548
msgid "Only update contacts/servers with local data"
msgstr ""
-#: src/Module/Admin/Site.php:555
+#: src/Module/Admin/Site.php:548
msgid ""
"If enabled, the system will only look for changes in contacts and servers "
"that engaged on this system by either being in a contact list of a user or "
"when posts or comments exists from the contact on this system."
msgstr ""
-#: src/Module/Admin/Site.php:556
+#: src/Module/Admin/Site.php:549
msgid "Synchronize the contacts with the directory server"
msgstr "Synchronizuj kontakty z serwerem katalogowym"
-#: src/Module/Admin/Site.php:556
+#: src/Module/Admin/Site.php:549
msgid ""
"if enabled, the system will check periodically for new contacts on the "
"defined directory server."
msgstr "jeśli ta opcja jest włączona, system będzie okresowo sprawdzać nowe kontakty na zdefiniowanym serwerze katalogowym."
-#: src/Module/Admin/Site.php:558
+#: src/Module/Admin/Site.php:551
msgid "Discover contacts from other servers"
msgstr "Odkryj kontakty z innych serwerów"
-#: src/Module/Admin/Site.php:558
+#: src/Module/Admin/Site.php:551
msgid ""
"Periodically query other servers for contacts and servers that they know of."
" The system queries Friendica, Mastodon and Hubzilla servers. Keep it "
"deactivated on small machines to decrease the database size and load."
msgstr ""
-#: src/Module/Admin/Site.php:559
+#: src/Module/Admin/Site.php:552
msgid "Days between requery"
msgstr "Dni między żądaniem"
-#: src/Module/Admin/Site.php:559
+#: src/Module/Admin/Site.php:552
msgid ""
"Number of days after which a server is requeried for their contacts and "
"servers it knows of. This is only used when the discovery is activated."
msgstr ""
-#: src/Module/Admin/Site.php:560
+#: src/Module/Admin/Site.php:553
msgid "Search the local directory"
msgstr "Wyszukaj w lokalnym katalogu"
-#: src/Module/Admin/Site.php:560
+#: src/Module/Admin/Site.php:553
msgid ""
"Search the local directory instead of the global directory. When searching "
"locally, every search will be executed on the global directory in the "
"background. This improves the search results when the search is repeated."
msgstr "Wyszukaj lokalny katalog zamiast katalogu globalnego. Podczas wyszukiwania lokalnie każde wyszukiwanie zostanie wykonane w katalogu globalnym w tle. Poprawia to wyniki wyszukiwania, gdy wyszukiwanie jest powtarzane."
-#: src/Module/Admin/Site.php:562
+#: src/Module/Admin/Site.php:555
msgid "Publish server information"
msgstr "Publikuj informacje o serwerze"
-#: src/Module/Admin/Site.php:562
+#: src/Module/Admin/Site.php:555
msgid ""
"If enabled, general server and usage data will be published. The data "
"contains the name and version of the server, number of users with public "
@@ -5357,50 +5357,50 @@ msgid ""
" href=\"http://the-federation.info/\">the-federation.info for details."
msgstr "Jeśli ta opcja jest włączona, ogólne dane dotyczące serwera i użytkowania zostaną opublikowane. Dane zawierają nazwę i wersję serwera, liczbę użytkowników z profilami publicznymi, liczbę postów i aktywowane protokoły i złącza. Szczegółowe informacje można znaleźć na the-federation.info."
-#: src/Module/Admin/Site.php:564
+#: src/Module/Admin/Site.php:557
msgid "Check upstream version"
msgstr "Sprawdź wersję powyżej"
-#: src/Module/Admin/Site.php:564
+#: src/Module/Admin/Site.php:557
msgid ""
"Enables checking for new Friendica versions at github. If there is a new "
"version, you will be informed in the admin panel overview."
msgstr "Umożliwia sprawdzenie nowych wersji Friendica na github. Jeśli pojawi się nowa wersja, zostaniesz o tym poinformowany w panelu administracyjnym."
-#: src/Module/Admin/Site.php:565
+#: src/Module/Admin/Site.php:558
msgid "Suppress Tags"
msgstr "Pomiń znaczniki"
-#: src/Module/Admin/Site.php:565
+#: src/Module/Admin/Site.php:558
msgid "Suppress showing a list of hashtags at the end of the posting."
msgstr "Pomiń wyświetlenie listy hashtagów na końcu wpisu."
-#: src/Module/Admin/Site.php:566
+#: src/Module/Admin/Site.php:559
msgid "Clean database"
msgstr "Wyczyść bazę danych"
-#: src/Module/Admin/Site.php:566
+#: src/Module/Admin/Site.php:559
msgid ""
"Remove old remote items, orphaned database records and old content from some"
" other helper tables."
msgstr "Usuń stare zdalne pozycje, osierocone rekordy bazy danych i starą zawartość z innych tabel pomocników."
-#: src/Module/Admin/Site.php:567
+#: src/Module/Admin/Site.php:560
msgid "Lifespan of remote items"
msgstr "Żywotność odległych przedmiotów"
-#: src/Module/Admin/Site.php:567
+#: src/Module/Admin/Site.php:560
msgid ""
"When the database cleanup is enabled, this defines the days after which "
"remote items will be deleted. Own items, and marked or filed items are "
"always kept. 0 disables this behaviour."
msgstr "Po włączeniu czyszczenia bazy danych określa dni, po których zdalne elementy zostaną usunięte. Własne przedmioty oraz oznaczone lub wypełnione pozycje są zawsze przechowywane. 0 wyłącza to zachowanie."
-#: src/Module/Admin/Site.php:568
+#: src/Module/Admin/Site.php:561
msgid "Lifespan of unclaimed items"
msgstr "Żywotność nieodebranych przedmiotów"
-#: src/Module/Admin/Site.php:568
+#: src/Module/Admin/Site.php:561
msgid ""
"When the database cleanup is enabled, this defines the days after which "
"unclaimed remote items (mostly content from the relay) will be deleted. "
@@ -5408,185 +5408,184 @@ msgid ""
"items if set to 0."
msgstr "Po włączeniu czyszczenia bazy danych określa się dni, po których usunięte zostaną nieodebrane zdalne elementy (głównie zawartość z przekaźnika). Wartość domyślna to 90 dni. Wartość domyślna dla ogólnej długości życia zdalnych pozycji, jeśli jest ustawiona na 0."
-#: src/Module/Admin/Site.php:569
+#: src/Module/Admin/Site.php:562
msgid "Lifespan of raw conversation data"
msgstr "Trwałość nieprzetworzonych danych konwersacji"
-#: src/Module/Admin/Site.php:569
+#: src/Module/Admin/Site.php:562
msgid ""
-"The conversation data is used for ActivityPub and OStatus, as well as for "
-"debug purposes. It should be safe to remove it after 14 days, default is 90 "
-"days."
-msgstr "Dane konwersacji są używane do ActivityPub i OStatus, a także do celów debugowania. Powinno być bezpieczne usunięcie go po 14 dniach, domyślnie jest to 90 dni."
+"The conversation data is used for ActivityPub, as well as for debug "
+"purposes. It should be safe to remove it after 14 days, default is 90 days."
+msgstr ""
-#: src/Module/Admin/Site.php:570
+#: src/Module/Admin/Site.php:563
msgid "Maximum numbers of comments per post"
msgstr "Maksymalna liczba komentarzy na wpis"
-#: src/Module/Admin/Site.php:570
+#: src/Module/Admin/Site.php:563
msgid "How much comments should be shown for each post? Default value is 100."
msgstr "Ile komentarzy powinno być wyświetlanych dla każdego wpisu? Domyślna wartość to 100."
-#: src/Module/Admin/Site.php:571
+#: src/Module/Admin/Site.php:564
msgid "Maximum numbers of comments per post on the display page"
msgstr "Maksymalna liczba komentarzy na wpis na wyświetlanej stronie"
-#: src/Module/Admin/Site.php:571
+#: src/Module/Admin/Site.php:564
msgid ""
"How many comments should be shown on the single view for each post? Default "
"value is 1000."
msgstr "Ile komentarzy powinno być wyświetlanych w pojedynczym widoku dla każdego wpisu? Wartość domyślna to 1000."
-#: src/Module/Admin/Site.php:572
+#: src/Module/Admin/Site.php:565
msgid "Items per page"
msgstr ""
-#: src/Module/Admin/Site.php:572
+#: src/Module/Admin/Site.php:565
msgid ""
"Number of items per page in stream pages (network, community, "
"profile/contact statuses, search)."
msgstr ""
-#: src/Module/Admin/Site.php:573
+#: src/Module/Admin/Site.php:566
msgid "Items per page for mobile devices"
msgstr ""
-#: src/Module/Admin/Site.php:573
+#: src/Module/Admin/Site.php:566
msgid ""
"Number of items per page in stream pages (network, community, "
"profile/contact statuses, search) for mobile devices."
msgstr ""
-#: src/Module/Admin/Site.php:574
+#: src/Module/Admin/Site.php:567
msgid "Temp path"
msgstr "Ścieżka do temp"
-#: src/Module/Admin/Site.php:574
+#: src/Module/Admin/Site.php:567
msgid ""
"If you have a restricted system where the webserver can't access the system "
"temp path, enter another path here."
msgstr "Jeśli masz zastrzeżony system, w którym serwer internetowy nie może uzyskać dostępu do ścieżki temp systemu, wprowadź tutaj inną ścieżkę."
-#: src/Module/Admin/Site.php:575
+#: src/Module/Admin/Site.php:568
msgid "Only search in tags"
msgstr "Szukaj tylko w znacznikach"
-#: src/Module/Admin/Site.php:575
+#: src/Module/Admin/Site.php:568
msgid "On large systems the text search can slow down the system extremely."
msgstr "W dużych systemach wyszukiwanie tekstu może wyjątkowo spowolnić system."
-#: src/Module/Admin/Site.php:576
+#: src/Module/Admin/Site.php:569
msgid "Limited search scope"
msgstr ""
-#: src/Module/Admin/Site.php:576
+#: src/Module/Admin/Site.php:569
msgid ""
"If enabled, searches will only be performed in the data used for the "
"channels and not in all posts."
msgstr ""
-#: src/Module/Admin/Site.php:577
+#: src/Module/Admin/Site.php:570
msgid "Maximum age of items in the search table"
msgstr ""
-#: src/Module/Admin/Site.php:577
+#: src/Module/Admin/Site.php:570
msgid ""
"Maximum age of items in the search table in days. Lower values will increase"
" the performance and reduce disk usage. 0 means no age restriction."
msgstr ""
-#: src/Module/Admin/Site.php:578
+#: src/Module/Admin/Site.php:571
msgid "Generate counts per contact circle when calculating network count"
msgstr ""
-#: src/Module/Admin/Site.php:578
+#: src/Module/Admin/Site.php:571
msgid ""
"On systems with users that heavily use contact circles the query can be very"
" expensive."
msgstr ""
-#: src/Module/Admin/Site.php:579
+#: src/Module/Admin/Site.php:572
msgid "Process \"view\" activities"
msgstr ""
-#: src/Module/Admin/Site.php:579
+#: src/Module/Admin/Site.php:572
msgid ""
"\"view\" activities are mostly geberated by Peertube systems. Per default "
"they are not processed for performance reasons. Only activate this option on"
" performant system."
msgstr ""
-#: src/Module/Admin/Site.php:580
+#: src/Module/Admin/Site.php:573
msgid "Days, after which a contact is archived"
msgstr ""
-#: src/Module/Admin/Site.php:580
+#: src/Module/Admin/Site.php:573
msgid ""
"Number of days that we try to deliver content or to update the contact data "
"before we archive a contact."
msgstr ""
-#: src/Module/Admin/Site.php:582
+#: src/Module/Admin/Site.php:575
msgid "Maximum number of parallel workers"
msgstr "Maksymalna liczba równoległych workerów"
-#: src/Module/Admin/Site.php:582
+#: src/Module/Admin/Site.php:575
#, php-format
msgid ""
"On shared hosters set this to %d. On larger systems, values of %d are great."
" Default value is %d."
msgstr "Na udostępnionych usługach hostingowych ustaw tę opcję %d. W większych systemach wartości %dsą świetne . Wartość domyślna to %d."
-#: src/Module/Admin/Site.php:583
+#: src/Module/Admin/Site.php:576
msgid "Maximum load for workers"
msgstr ""
-#: src/Module/Admin/Site.php:583
+#: src/Module/Admin/Site.php:576
msgid "Maximum load that causes a cooldown before each worker function call."
msgstr ""
-#: src/Module/Admin/Site.php:584
+#: src/Module/Admin/Site.php:577
msgid "Enable fastlane"
msgstr "Włącz Fastlane"
-#: src/Module/Admin/Site.php:584
+#: src/Module/Admin/Site.php:577
msgid ""
"When enabed, the fastlane mechanism starts an additional worker if processes"
" with higher priority are blocked by processes of lower priority."
msgstr "Po włączeniu, system Fastlane uruchamia dodatkowego workera, jeśli procesy o wyższym priorytecie są blokowane przez procesy o niższym priorytecie."
-#: src/Module/Admin/Site.php:585
+#: src/Module/Admin/Site.php:578
msgid "Decoupled receiver"
msgstr ""
-#: src/Module/Admin/Site.php:585
+#: src/Module/Admin/Site.php:578
msgid ""
"Decouple incoming ActivityPub posts by processing them in the background via"
" a worker process. Only enable this on fast systems."
msgstr ""
-#: src/Module/Admin/Site.php:586
+#: src/Module/Admin/Site.php:579
msgid "Cron interval"
msgstr ""
-#: src/Module/Admin/Site.php:586
+#: src/Module/Admin/Site.php:579
msgid "Minimal period in minutes between two calls of the \"Cron\" worker job."
msgstr ""
-#: src/Module/Admin/Site.php:587
+#: src/Module/Admin/Site.php:580
msgid "Worker defer limit"
msgstr ""
-#: src/Module/Admin/Site.php:587
+#: src/Module/Admin/Site.php:580
msgid ""
"Per default the systems tries delivering for 15 times before dropping it."
msgstr ""
-#: src/Module/Admin/Site.php:588
+#: src/Module/Admin/Site.php:581
msgid "Worker fetch limit"
msgstr ""
-#: src/Module/Admin/Site.php:588
+#: src/Module/Admin/Site.php:581
msgid ""
"Number of worker tasks that are fetched in a single query. Higher values "
"should increase the performance, too high values will mostly likely decrease"
@@ -5594,214 +5593,214 @@ msgid ""
"system."
msgstr ""
-#: src/Module/Admin/Site.php:590
+#: src/Module/Admin/Site.php:583
msgid "Direct relay transfer"
msgstr "Bezpośredni transfer przekaźników"
-#: src/Module/Admin/Site.php:590
+#: src/Module/Admin/Site.php:583
msgid ""
"Enables the direct transfer to other servers without using the relay servers"
msgstr "Umożliwia bezpośredni transfer do innych serwerów bez korzystania z serwerów przekazujących"
-#: src/Module/Admin/Site.php:591
+#: src/Module/Admin/Site.php:584
msgid "Relay scope"
msgstr "Zakres przekaźnika"
-#: src/Module/Admin/Site.php:591
+#: src/Module/Admin/Site.php:584
msgid ""
"Can be \"all\" or \"tags\". \"all\" means that every public post should be "
"received. \"tags\" means that only posts with selected tags should be "
"received."
msgstr "Mogą to być „wszystkie” lub „znaczniki”. „Wszystkie” oznacza, że każdy publiczny wpis powinien zostać odebrany. „Znaczniki” oznaczają, że powinny być odbierane tylko wpisy z wybranymi znacznikami."
-#: src/Module/Admin/Site.php:591 src/Module/Contact/Profile.php:328
-#: src/Module/Settings/TwoFactor/Index.php:146
+#: src/Module/Admin/Site.php:584 src/Module/Contact/Profile.php:314
+#: src/Module/Settings/TwoFactor/Index.php:132
msgid "Disabled"
msgstr "Wyłączony"
-#: src/Module/Admin/Site.php:591
+#: src/Module/Admin/Site.php:584
msgid "all"
msgstr "wszystko"
-#: src/Module/Admin/Site.php:591
+#: src/Module/Admin/Site.php:584
msgid "tags"
msgstr "znaczniki"
-#: src/Module/Admin/Site.php:592
+#: src/Module/Admin/Site.php:585
msgid "Server tags"
msgstr "Znaczniki serwera"
-#: src/Module/Admin/Site.php:592
+#: src/Module/Admin/Site.php:585
msgid "Comma separated list of tags for the \"tags\" subscription."
msgstr "Rozdzielana przecinkami lista tagów dla subskrypcji „tagi”."
-#: src/Module/Admin/Site.php:593
+#: src/Module/Admin/Site.php:586
msgid "Deny Server tags"
msgstr "Odrzuć znaczniki serwera"
-#: src/Module/Admin/Site.php:593
+#: src/Module/Admin/Site.php:586
msgid "Comma separated list of tags that are rejected."
msgstr "Lista oddzielonych przecinkami znaczników, które zostały odrzucone."
-#: src/Module/Admin/Site.php:594
+#: src/Module/Admin/Site.php:587
msgid "Maximum amount of tags"
msgstr ""
-#: src/Module/Admin/Site.php:594
+#: src/Module/Admin/Site.php:587
msgid ""
"Maximum amount of tags in a post before it is rejected as spam. The post has"
" to contain at least one link. Posts from subscribed accounts will not be "
"rejected."
msgstr ""
-#: src/Module/Admin/Site.php:595
+#: src/Module/Admin/Site.php:588
msgid "Allow user tags"
msgstr "Pozwól na znaczniki użytkowników"
-#: src/Module/Admin/Site.php:595
+#: src/Module/Admin/Site.php:588
msgid ""
"If enabled, the tags from the saved searches will used for the \"tags\" "
"subscription in addition to the \"relay_server_tags\"."
msgstr "Jeśli ta opcja jest włączona, tagi z zapisanych wyszukiwań będą używane jako subskrypcja „tagów” jako uzupełnienie do \"relay_server_tags\"."
-#: src/Module/Admin/Site.php:596
+#: src/Module/Admin/Site.php:589
msgid "Deny undetected languages"
msgstr ""
-#: src/Module/Admin/Site.php:596
+#: src/Module/Admin/Site.php:589
msgid "If enabled, posts with undetected languages will be rejected."
msgstr ""
-#: src/Module/Admin/Site.php:597
+#: src/Module/Admin/Site.php:590
msgid "Language Quality"
msgstr ""
-#: src/Module/Admin/Site.php:597
+#: src/Module/Admin/Site.php:590
msgid "The minimum language quality that is required to accept the post."
msgstr ""
-#: src/Module/Admin/Site.php:598
+#: src/Module/Admin/Site.php:591
msgid "Number of languages for the language detection"
msgstr ""
-#: src/Module/Admin/Site.php:598
+#: src/Module/Admin/Site.php:591
msgid ""
"The system detects a list of languages per post. Only if the desired "
"languages are in the list, the message will be accepted. The higher the "
"number, the more posts will be falsely detected."
msgstr ""
-#: src/Module/Admin/Site.php:600
+#: src/Module/Admin/Site.php:593
msgid "Maximum age of channel"
msgstr ""
-#: src/Module/Admin/Site.php:600
+#: src/Module/Admin/Site.php:593
msgid ""
"This defines the maximum age in hours of items that should be displayed in "
"channels. This affects the channel performance."
msgstr ""
-#: src/Module/Admin/Site.php:601
+#: src/Module/Admin/Site.php:594
msgid "Maximum number of channel posts"
msgstr ""
-#: src/Module/Admin/Site.php:601
+#: src/Module/Admin/Site.php:594
msgid ""
"For performance reasons, the channels use a dedicated table to store "
"content. The higher the value the slower the channels."
msgstr ""
-#: src/Module/Admin/Site.php:602
+#: src/Module/Admin/Site.php:595
msgid "Interaction score days"
msgstr ""
-#: src/Module/Admin/Site.php:602
+#: src/Module/Admin/Site.php:595
msgid "Number of days that are used to calculate the interaction score."
msgstr ""
-#: src/Module/Admin/Site.php:603
+#: src/Module/Admin/Site.php:596
msgid "Maximum number of posts per author"
msgstr ""
-#: src/Module/Admin/Site.php:603
+#: src/Module/Admin/Site.php:596
msgid ""
"Maximum number of posts per page by author if the contact frequency is set "
"to \"Display only few posts\". If there are more posts, then the post with "
"the most interactions will be displayed."
msgstr ""
-#: src/Module/Admin/Site.php:604
+#: src/Module/Admin/Site.php:597
msgid "Sharer interaction days"
msgstr ""
-#: src/Module/Admin/Site.php:604
+#: src/Module/Admin/Site.php:597
msgid ""
"Number of days of the last interaction that are used to define which sharers"
" are used for the \"sharers of sharers\" channel."
msgstr ""
-#: src/Module/Admin/Site.php:607
+#: src/Module/Admin/Site.php:600
msgid "Start Relocation"
msgstr "Rozpocznij przenoszenie"
-#: src/Module/Admin/Storage.php:46
+#: src/Module/Admin/Storage.php:32
#, php-format
msgid "Storage backend, %s is invalid."
msgstr "Zaplecze pamięci przechowywania, %s jest nieprawidłowe."
-#: src/Module/Admin/Storage.php:73
+#: src/Module/Admin/Storage.php:59
#, php-format
msgid "Storage backend %s error: %s"
msgstr "Błąd zaplecza %s pamięci przechowywania: %s"
-#: src/Module/Admin/Storage.php:84 src/Module/Admin/Storage.php:87
+#: src/Module/Admin/Storage.php:70 src/Module/Admin/Storage.php:73
msgid "Invalid storage backend setting value."
msgstr "Nieprawidłowa wartość ustawienia magazynu pamięci."
-#: src/Module/Admin/Storage.php:139
+#: src/Module/Admin/Storage.php:125
msgid "Current Storage Backend"
msgstr "Bieżące zaplecze pamięci przechowywania"
-#: src/Module/Admin/Storage.php:140
+#: src/Module/Admin/Storage.php:126
msgid "Storage Configuration"
msgstr "Konfiguracja przechowywania"
-#: src/Module/Admin/Storage.php:141 src/Module/BaseAdmin.php:91
+#: src/Module/Admin/Storage.php:127 src/Module/BaseAdmin.php:77
msgid "Storage"
msgstr "Przechowywanie"
-#: src/Module/Admin/Storage.php:143
+#: src/Module/Admin/Storage.php:129
msgid "Save & Use storage backend"
msgstr "Zapisz i użyj backendu przechowywania"
-#: src/Module/Admin/Storage.php:144
+#: src/Module/Admin/Storage.php:130
msgid "Use storage backend"
msgstr "Użyj backendu pamięci przechowywania"
-#: src/Module/Admin/Storage.php:145
+#: src/Module/Admin/Storage.php:131
msgid "Save & Reload"
msgstr "Zapisz i wczytaj ponownie"
-#: src/Module/Admin/Storage.php:146
+#: src/Module/Admin/Storage.php:132
msgid "This backend doesn't have custom settings"
msgstr "Ten backend nie ma niestandardowych ustawień"
-#: src/Module/Admin/Storage.php:148
+#: src/Module/Admin/Storage.php:134
msgid ""
"Changing the current backend is prohibited because it is set by an "
"environment variable"
msgstr ""
-#: src/Module/Admin/Storage.php:150
+#: src/Module/Admin/Storage.php:136
msgid "Database (legacy)"
msgstr "Baza danych (legacy)"
-#: src/Module/Admin/Summary.php:55
+#: src/Module/Admin/Summary.php:41
#, php-format
msgid "Template engine (%s) error: %s"
msgstr "Silnik szablonów (%s) błąd: %s"
-#: src/Module/Admin/Summary.php:59
+#: src/Module/Admin/Summary.php:45
#, php-format
msgid ""
"Your DB still runs with MyISAM tables. You should change the engine type to "
@@ -5812,7 +5811,7 @@ msgid ""
" an automatic conversion..htconfig.php
. Zobacz stronę pomocy Config, aby uzyskać pomoc dotyczącą przejścia."
-#: src/Module/Admin/Summary.php:118
+#: src/Module/Admin/Summary.php:104
#, php-format
msgid ""
"Friendica's configuration now is stored in config/local.config.php, please "
@@ -5888,7 +5887,7 @@ msgid ""
"page for help with the transition."
msgstr "Konfiguracja Friendiki jest teraz przechowywana w config/local.config.php, skopiuj config/local-sample.config.php i przenieś konfigurację z config/local.ini.php
. Zobacz stronę pomocy Config, aby uzyskać pomoc dotyczącą przejścia."
-#: src/Module/Admin/Summary.php:124
+#: src/Module/Admin/Summary.php:110
#, php-format
msgid ""
"%s is not reachable on your system. This is a severe "
@@ -5896,107 +5895,107 @@ msgid ""
"href=\"%s\">the installation page for help."
msgstr "%s nie jest osiągalny w twoim systemie. Jest to poważny problem z konfiguracją, który uniemożliwia komunikację między serwerami. Zobacz pomoc na stronie instalacji."
-#: src/Module/Admin/Summary.php:148
+#: src/Module/Admin/Summary.php:134
#, php-format
msgid ""
"Friendica's system.basepath was updated from '%s' to '%s'. Please remove the"
" system.basepath from your db to avoid differences."
msgstr "System.basepath Friendiki został zaktualizowany z '%s' do '%s'. Usuń system.basepath z bazy danych, aby uniknąć różnic."
-#: src/Module/Admin/Summary.php:156
+#: src/Module/Admin/Summary.php:142
#, php-format
msgid ""
"Friendica's current system.basepath '%s' is wrong and the config file '%s' "
"isn't used."
msgstr "Obecny system.basepath Friendiki '%s' jest nieprawidłowy i plik konfiguracyjny '%s' nie jest używany."
-#: src/Module/Admin/Summary.php:164
+#: src/Module/Admin/Summary.php:150
#, php-format
msgid ""
"Friendica's current system.basepath '%s' is not equal to the config file "
"'%s'. Please fix your configuration."
msgstr "Obecny system.basepath Friendiki '%s' nie jest równy plikowi konfiguracyjnemu '%s'. Napraw konfigurację."
-#: src/Module/Admin/Summary.php:175
+#: src/Module/Admin/Summary.php:161
msgid "Message queues"
msgstr "Wiadomości"
-#: src/Module/Admin/Summary.php:181
+#: src/Module/Admin/Summary.php:167
msgid "Server Settings"
msgstr "Ustawienia serwera"
-#: src/Module/Admin/Summary.php:199
+#: src/Module/Admin/Summary.php:185
msgid "Version"
msgstr "Wersja"
-#: src/Module/Admin/Summary.php:203
+#: src/Module/Admin/Summary.php:189
msgid "Active addons"
msgstr "Aktywne dodatki"
-#: src/Module/Admin/Themes/Details.php:63 src/Module/Admin/Themes/Index.php:71
+#: src/Module/Admin/Themes/Details.php:49 src/Module/Admin/Themes/Index.php:57
#, php-format
msgid "Theme %s disabled."
msgstr "Motyw %s wyłączony."
-#: src/Module/Admin/Themes/Details.php:65 src/Module/Admin/Themes/Index.php:73
+#: src/Module/Admin/Themes/Details.php:51 src/Module/Admin/Themes/Index.php:59
#, php-format
msgid "Theme %s successfully enabled."
msgstr "Motyw %s został pomyślnie włączony."
-#: src/Module/Admin/Themes/Details.php:67 src/Module/Admin/Themes/Index.php:75
+#: src/Module/Admin/Themes/Details.php:53 src/Module/Admin/Themes/Index.php:61
#, php-format
msgid "Theme %s failed to install."
msgstr "Nie udało się zainstalować motywu %s."
-#: src/Module/Admin/Themes/Details.php:89
+#: src/Module/Admin/Themes/Details.php:75
msgid "Screenshot"
msgstr "Zrzut ekranu"
-#: src/Module/Admin/Themes/Details.php:97
-#: src/Module/Admin/Themes/Index.php:118 src/Module/BaseAdmin.php:93
+#: src/Module/Admin/Themes/Details.php:83
+#: src/Module/Admin/Themes/Index.php:104 src/Module/BaseAdmin.php:79
msgid "Themes"
msgstr "Wygląd"
-#: src/Module/Admin/Themes/Embed.php:80
+#: src/Module/Admin/Themes/Embed.php:66
msgid "Unknown theme."
msgstr "Nieznany motyw."
-#: src/Module/Admin/Themes/Index.php:57
+#: src/Module/Admin/Themes/Index.php:43
msgid "Themes reloaded"
msgstr "Motywy zostały ponownie wczytane"
-#: src/Module/Admin/Themes/Index.php:120
+#: src/Module/Admin/Themes/Index.php:106
msgid "Reload active themes"
msgstr "Wczytaj ponownie aktywne motywy"
-#: src/Module/Admin/Themes/Index.php:124
+#: src/Module/Admin/Themes/Index.php:110
#, php-format
msgid "No themes found on the system. They should be placed in %1$s"
msgstr "Nie znaleziono motywów w systemie. Powinny zostać umieszczone %1$s"
-#: src/Module/Admin/Themes/Index.php:125
+#: src/Module/Admin/Themes/Index.php:111
msgid "[Experimental]"
msgstr "[Eksperymentalne]"
-#: src/Module/Admin/Themes/Index.php:126
+#: src/Module/Admin/Themes/Index.php:112
msgid "[Unsupported]"
msgstr "[Niewspieralne]"
-#: src/Module/Admin/Tos.php:79
+#: src/Module/Admin/Tos.php:65
msgid "Display Terms of Service"
msgstr "Wyświetl Warunki korzystania z usługi"
-#: src/Module/Admin/Tos.php:79
+#: src/Module/Admin/Tos.php:65
msgid ""
"Enable the Terms of Service page. If this is enabled a link to the terms "
"will be added to the registration form and the general information page."
msgstr "Włącz stronę Warunki świadczenia usług. Jeśli ta opcja jest włączona, link do warunków zostanie dodany do formularza rejestracyjnego i strony z informacjami ogólnymi."
-#: src/Module/Admin/Tos.php:80
+#: src/Module/Admin/Tos.php:66
msgid "Display Privacy Statement"
msgstr "Wyświetl oświadczenie o prywatności"
-#: src/Module/Admin/Tos.php:80
+#: src/Module/Admin/Tos.php:66
#, php-format
msgid ""
"Show some informations regarding the needed information to operate the node "
@@ -6004,160 +6003,160 @@ msgid ""
"noreferrer\">EU-GDPR."
msgstr "Pokaż informacje dotyczące potrzebnych informacji do obsługi węzła zgodnie z np. EU-RODO."
-#: src/Module/Admin/Tos.php:81
+#: src/Module/Admin/Tos.php:67
msgid "Privacy Statement Preview"
msgstr "Podgląd oświadczenia o prywatności"
-#: src/Module/Admin/Tos.php:83
+#: src/Module/Admin/Tos.php:69
msgid "The Terms of Service"
msgstr "Warunki świadczenia usług"
-#: src/Module/Admin/Tos.php:83
+#: src/Module/Admin/Tos.php:69
msgid ""
"Enter the Terms of Service for your node here. You can use BBCode. Headers "
"of sections should be [h2] and below."
msgstr "Wprowadź tutaj Warunki świadczenia usług dla swojego węzła. Możesz użyć BBCode. Nagłówki sekcji powinny być [h2] i poniżej."
-#: src/Module/Admin/Tos.php:84
+#: src/Module/Admin/Tos.php:70
msgid "The rules"
msgstr "Zasady"
-#: src/Module/Admin/Tos.php:84
+#: src/Module/Admin/Tos.php:70
msgid "Enter your system rules here. Each line represents one rule."
msgstr "Wprowadź tutaj swoje reguły systemowe. Każda linia reprezentuje jedną regułę."
-#: src/Module/Api/ApiResponse.php:293
+#: src/Module/Api/ApiResponse.php:279
#, php-format
msgid "API endpoint %s %s is not implemented but might be in the future."
msgstr ""
-#: src/Module/Api/Mastodon/Apps.php:73
+#: src/Module/Api/Mastodon/Apps.php:59
msgid "Missing parameters"
msgstr "Brakuje parametrów"
-#: src/Module/Api/Mastodon/Statuses/Bookmark.php:50
+#: src/Module/Api/Mastodon/Statuses/Bookmark.php:36
msgid "Only starting posts can be bookmarked"
msgstr "Tylko początkowe wpisy można dodawać do zakładek"
-#: src/Module/Api/Mastodon/Statuses/Mute.php:51
+#: src/Module/Api/Mastodon/Statuses/Mute.php:37
msgid "Only starting posts can be muted"
msgstr "Można wyciszyć tylko początkowe wpisy"
-#: src/Module/Api/Mastodon/Statuses/Reblog.php:58
+#: src/Module/Api/Mastodon/Statuses/Reblog.php:44
#, php-format
msgid "Posts from %s can't be shared"
msgstr "Wpisy od %s nie mogą być udostępniane"
-#: src/Module/Api/Mastodon/Statuses/Unbookmark.php:51
+#: src/Module/Api/Mastodon/Statuses/Unbookmark.php:37
msgid "Only starting posts can be unbookmarked"
msgstr "Tylko początkowe wpisy można usunąć z zakładek"
-#: src/Module/Api/Mastodon/Statuses/Unmute.php:51
+#: src/Module/Api/Mastodon/Statuses/Unmute.php:37
msgid "Only starting posts can be unmuted"
msgstr "Wyłączać wyciszenie można tylko we wpisach początkowych"
-#: src/Module/Api/Mastodon/Statuses/Unreblog.php:64
+#: src/Module/Api/Mastodon/Statuses/Unreblog.php:50
#, php-format
msgid "Posts from %s can't be unshared"
msgstr "Nie można cofnąć udostępniania wpisów %s"
-#: src/Module/Api/Twitter/ContactEndpoint.php:66
+#: src/Module/Api/Twitter/ContactEndpoint.php:52
msgid "Contact not found"
msgstr "Nie znaleziono kontaktu"
-#: src/Module/Apps.php:62
+#: src/Module/Apps.php:48
msgid "No installed applications."
msgstr "Brak zainstalowanych aplikacji."
-#: src/Module/Apps.php:67
+#: src/Module/Apps.php:53
msgid "Applications"
msgstr "Aplikacje"
-#: src/Module/Attach.php:49 src/Module/Attach.php:61
+#: src/Module/Attach.php:35 src/Module/Attach.php:47
msgid "Item was not found."
msgstr "Element nie znaleziony."
-#: src/Module/BaseAdmin.php:54 src/Module/BaseAdmin.php:58
-#: src/Module/BaseModeration.php:77 src/Module/BaseModeration.php:81
+#: src/Module/BaseAdmin.php:40 src/Module/BaseAdmin.php:44
+#: src/Module/BaseModeration.php:63 src/Module/BaseModeration.php:67
msgid "Please login to continue."
msgstr "Zaloguj się aby kontynuować."
-#: src/Module/BaseAdmin.php:63
+#: src/Module/BaseAdmin.php:49
msgid "You don't have access to administration pages."
msgstr "Nie masz dostępu do stron administracyjnych."
-#: src/Module/BaseAdmin.php:67
+#: src/Module/BaseAdmin.php:53
msgid ""
"Submanaged account can't access the administration pages. Please log back in"
" as the main account."
msgstr "Konto zarządzane podrzędnie nie ma dostępu do stron administracyjnych. Zaloguj się ponownie poprzez konto główne."
-#: src/Module/BaseAdmin.php:86 src/Module/BaseModeration.php:109
+#: src/Module/BaseAdmin.php:72 src/Module/BaseModeration.php:95
msgid "Overview"
msgstr "Przegląd"
-#: src/Module/BaseAdmin.php:89 src/Module/BaseModeration.php:112
+#: src/Module/BaseAdmin.php:75 src/Module/BaseModeration.php:98
msgid "Configuration"
msgstr "Konfiguracja"
-#: src/Module/BaseAdmin.php:94 src/Module/BaseSettings.php:110
+#: src/Module/BaseAdmin.php:80 src/Module/BaseSettings.php:96
msgid "Additional features"
msgstr "Dodatkowe funkcje"
-#: src/Module/BaseAdmin.php:97
+#: src/Module/BaseAdmin.php:83
msgid "Database"
msgstr "Baza danych"
-#: src/Module/BaseAdmin.php:98
+#: src/Module/BaseAdmin.php:84
msgid "DB updates"
msgstr "Aktualizacje bazy danych"
-#: src/Module/BaseAdmin.php:99
+#: src/Module/BaseAdmin.php:85
msgid "Inspect Deferred Workers"
msgstr "Sprawdź odroczonych workerów"
-#: src/Module/BaseAdmin.php:100
+#: src/Module/BaseAdmin.php:86
msgid "Inspect worker Queue"
msgstr "Sprawdź kolejkę workerów"
-#: src/Module/BaseAdmin.php:106 src/Module/BaseModeration.php:120
+#: src/Module/BaseAdmin.php:92 src/Module/BaseModeration.php:106
msgid "Diagnostics"
msgstr "Diagnostyka"
-#: src/Module/BaseAdmin.php:107
+#: src/Module/BaseAdmin.php:93
msgid "PHP Info"
msgstr "Informacje o PHP"
-#: src/Module/BaseAdmin.php:108
+#: src/Module/BaseAdmin.php:94
msgid "probe address"
msgstr "adres probe"
-#: src/Module/BaseAdmin.php:109
+#: src/Module/BaseAdmin.php:95
msgid "check webfinger"
msgstr "sprawdź webfinger"
-#: src/Module/BaseAdmin.php:110
+#: src/Module/BaseAdmin.php:96
msgid "Babel"
msgstr "Babel"
-#: src/Module/BaseAdmin.php:111 src/Module/Debug/ActivityPubConversion.php:143
+#: src/Module/BaseAdmin.php:97 src/Module/Debug/ActivityPubConversion.php:129
msgid "ActivityPub Conversion"
msgstr "Konwersja ActivityPub"
-#: src/Module/BaseAdmin.php:120
+#: src/Module/BaseAdmin.php:106
msgid "Addon Features"
msgstr "Funkcje dodatkowe"
-#: src/Module/BaseAdmin.php:121 src/Module/BaseModeration.php:129
+#: src/Module/BaseAdmin.php:107 src/Module/BaseModeration.php:115
msgid "User registrations waiting for confirmation"
msgstr "Rejestracje użytkowników czekające na potwierdzenie"
-#: src/Module/BaseApi.php:455 src/Module/BaseApi.php:471
-#: src/Module/BaseApi.php:487
+#: src/Module/BaseApi.php:441 src/Module/BaseApi.php:457
+#: src/Module/BaseApi.php:473
msgid "Too Many Requests"
msgstr "Zbyt dużo próśb"
-#: src/Module/BaseApi.php:456
+#: src/Module/BaseApi.php:442
#, php-format
msgid "Daily posting limit of %d post reached. The post was rejected."
msgid_plural "Daily posting limit of %d posts reached. The post was rejected."
@@ -6166,7 +6165,7 @@ msgstr[1] "Dzienny limit opublikowanych %d postów. Post został odrzucony."
msgstr[2] "Dzienny limit opublikowanych %d postów. Post został odrzucony."
msgstr[3] "Został osiągnięty dzienny limit %d wysyłania wpisów. Wpis został odrzucony."
-#: src/Module/BaseApi.php:472
+#: src/Module/BaseApi.php:458
#, php-format
msgid "Weekly posting limit of %d post reached. The post was rejected."
msgid_plural ""
@@ -6176,7 +6175,7 @@ msgstr[1] "Tygodniowy limit wysyłania %d postów. Post został odrzucony."
msgstr[2] "Tygodniowy limit wysyłania %d postów. Post został odrzucony."
msgstr[3] "Został osiągnięty tygodniowy limit %d wysyłania wpisów. Wpis został odrzucony."
-#: src/Module/BaseApi.php:488
+#: src/Module/BaseApi.php:474
#, php-format
msgid "Monthly posting limit of %d post reached. The post was rejected."
msgid_plural ""
@@ -6186,84 +6185,84 @@ msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
-#: src/Module/BaseModeration.php:86
+#: src/Module/BaseModeration.php:72
msgid "You don't have access to moderation pages."
msgstr ""
-#: src/Module/BaseModeration.php:90
+#: src/Module/BaseModeration.php:76
msgid ""
"Submanaged account can't access the moderation pages. Please log back in as "
"the main account."
msgstr ""
-#: src/Module/BaseModeration.php:110 src/Module/Moderation/Reports.php:115
+#: src/Module/BaseModeration.php:96 src/Module/Moderation/Reports.php:101
msgid "Reports"
msgstr ""
-#: src/Module/BaseModeration.php:113 src/Module/Moderation/Users/Index.php:148
-#: src/Module/Moderation/Users/Index.php:158
+#: src/Module/BaseModeration.php:99 src/Module/Moderation/Users/Index.php:134
+#: src/Module/Moderation/Users/Index.php:144
msgid "Users"
msgstr "Użytkownicy"
-#: src/Module/BaseModeration.php:115
+#: src/Module/BaseModeration.php:101
msgid "Tools"
msgstr "Narzędzia"
-#: src/Module/BaseModeration.php:116
+#: src/Module/BaseModeration.php:102
msgid "Contact Blocklist"
msgstr "Lista zablokowanych kontaktów"
-#: src/Module/BaseModeration.php:117
+#: src/Module/BaseModeration.php:103
msgid "Server Blocklist"
msgstr "Lista zablokowanych serwerów"
-#: src/Module/BaseModeration.php:118 src/Module/Moderation/Item/Delete.php:62
+#: src/Module/BaseModeration.php:104 src/Module/Moderation/Item/Delete.php:48
msgid "Delete Item"
msgstr "Usuń przedmiot"
-#: src/Module/BaseModeration.php:121 src/Module/Moderation/Item/Source.php:82
+#: src/Module/BaseModeration.php:107 src/Module/Moderation/Item/Source.php:68
msgid "Item Source"
msgstr "Źródło elementu"
-#: src/Module/BaseProfile.php:52 src/Module/Contact.php:513
+#: src/Module/BaseProfile.php:38 src/Module/Contact.php:488
msgid "Profile Details"
msgstr "Szczegóły profilu"
-#: src/Module/BaseProfile.php:60
+#: src/Module/BaseProfile.php:46
msgid "Conversations started"
msgstr ""
-#: src/Module/BaseProfile.php:111
+#: src/Module/BaseProfile.php:97
msgid "Only You Can See This"
msgstr "Tylko ty możesz to zobaczyć"
-#: src/Module/BaseProfile.php:116 src/Module/Profile/Schedule.php:81
+#: src/Module/BaseProfile.php:102 src/Module/Profile/Schedule.php:67
msgid "Scheduled Posts"
msgstr "Zaplanowane wpisy"
-#: src/Module/BaseProfile.php:119
+#: src/Module/BaseProfile.php:105
msgid "Posts that are scheduled for publishing"
msgstr "Wpisy zaplanowane do publikacji"
-#: src/Module/BaseProfile.php:138 src/Module/BaseProfile.php:141
+#: src/Module/BaseProfile.php:124 src/Module/BaseProfile.php:127
msgid "Tips for New Members"
msgstr "Wskazówki dla nowych użytkowników"
-#: src/Module/BaseSearch.php:71
+#: src/Module/BaseSearch.php:57
#, php-format
msgid "People Search - %s"
msgstr "Szukaj osób - %s"
-#: src/Module/BaseSearch.php:75
+#: src/Module/BaseSearch.php:61
#, php-format
msgid "Group Search - %s"
msgstr ""
-#: src/Module/BaseSearch.php:121 src/Module/Contact/MatchInterests.php:140
+#: src/Module/BaseSearch.php:107 src/Module/Contact/MatchInterests.php:136
msgid "No matches"
msgstr "Brak wyników"
-#: src/Module/BaseSearch.php:147
+#: src/Module/BaseSearch.php:133
#, php-format
msgid ""
"%d result was filtered out because your node blocks the domain it is "
@@ -6278,267 +6277,267 @@ msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
-#: src/Module/BaseSettings.php:78
+#: src/Module/BaseSettings.php:64
msgid "Account"
msgstr "Konto"
-#: src/Module/BaseSettings.php:85 src/Module/Security/TwoFactor/Verify.php:96
-#: src/Module/Settings/TwoFactor/Index.php:138
+#: src/Module/BaseSettings.php:71 src/Module/Security/TwoFactor/Verify.php:82
+#: src/Module/Settings/TwoFactor/Index.php:124
msgid "Two-factor authentication"
msgstr "Uwierzytelnianie dwuskładnikowe"
-#: src/Module/BaseSettings.php:118
+#: src/Module/BaseSettings.php:104
msgid "Display"
msgstr "Wygląd"
-#: src/Module/BaseSettings.php:132 src/Module/Settings/Connectors.php:213
+#: src/Module/BaseSettings.php:118 src/Module/Settings/Connectors.php:195
msgid "Social Networks"
msgstr "Portale społecznościowe"
-#: src/Module/BaseSettings.php:146 src/Module/Settings/Delegation.php:194
+#: src/Module/BaseSettings.php:132 src/Module/Settings/Delegation.php:180
msgid "Manage Accounts"
msgstr "Zarządzanie kontami"
-#: src/Module/BaseSettings.php:153
+#: src/Module/BaseSettings.php:139
msgid "Connected apps"
msgstr "Powiązane aplikacje"
-#: src/Module/BaseSettings.php:160
+#: src/Module/BaseSettings.php:146
msgid "Remote servers"
msgstr ""
-#: src/Module/BaseSettings.php:167 src/Module/Settings/UserExport.php:98
+#: src/Module/BaseSettings.php:153 src/Module/Settings/UserExport.php:84
msgid "Export personal data"
msgstr "Eksportuj dane osobiste"
-#: src/Module/BaseSettings.php:174
+#: src/Module/BaseSettings.php:160
msgid "Remove account"
msgstr "Usuń konto"
-#: src/Module/Bookmarklet.php:54
+#: src/Module/Bookmarklet.php:40
msgid "This page is missing a url parameter."
msgstr "Na tej stronie brakuje parametru url."
-#: src/Module/Bookmarklet.php:66
+#: src/Module/Bookmarklet.php:52
msgid "The post was created"
msgstr "Wpis został utworzony"
-#: src/Module/Calendar/Event/API.php:100 src/Module/Calendar/Event/API.php:135
-#: src/Module/Calendar/Event/Form.php:80
+#: src/Module/Calendar/Event/API.php:86 src/Module/Calendar/Event/API.php:121
+#: src/Module/Calendar/Event/Form.php:66
msgid "Invalid Request"
msgstr "Nieprawidłowe żądanie"
-#: src/Module/Calendar/Event/API.php:109
+#: src/Module/Calendar/Event/API.php:95
msgid "Event id is missing."
msgstr "Brak identyfikatora wydarzenia."
-#: src/Module/Calendar/Event/API.php:131
+#: src/Module/Calendar/Event/API.php:117
msgid "Failed to remove event"
msgstr "Nie udało się usunąć wydarzenia"
-#: src/Module/Calendar/Event/API.php:187 src/Module/Calendar/Event/API.php:189
+#: src/Module/Calendar/Event/API.php:173 src/Module/Calendar/Event/API.php:175
msgid "Event can not end before it has started."
msgstr "Wydarzenie nie może się zakończyć przed jego rozpoczęciem."
-#: src/Module/Calendar/Event/API.php:196 src/Module/Calendar/Event/API.php:198
+#: src/Module/Calendar/Event/API.php:182 src/Module/Calendar/Event/API.php:184
msgid "Event title and start time are required."
msgstr "Wymagany tytuł wydarzenia i czas rozpoczęcia."
-#: src/Module/Calendar/Event/Form.php:208
+#: src/Module/Calendar/Event/Form.php:194
msgid "Starting date and Title are required."
msgstr "Data rozpoczęcia i tytuł są wymagane."
-#: src/Module/Calendar/Event/Form.php:209
-#: src/Module/Calendar/Event/Form.php:214
+#: src/Module/Calendar/Event/Form.php:195
+#: src/Module/Calendar/Event/Form.php:200
msgid "Event Starts:"
msgstr "Rozpoczęcie wydarzenia:"
-#: src/Module/Calendar/Event/Form.php:209
-#: src/Module/Calendar/Event/Form.php:237 src/Module/Debug/Probe.php:59
-#: src/Module/Install.php:201 src/Module/Install.php:227
-#: src/Module/Install.php:232 src/Module/Install.php:246
-#: src/Module/Install.php:255 src/Module/Install.php:260
-#: src/Module/Install.php:266 src/Module/Install.php:271
-#: src/Module/Install.php:285 src/Module/Install.php:298
-#: src/Module/Install.php:325
-#: src/Module/Moderation/Blocklist/Server/Add.php:136
-#: src/Module/Moderation/Blocklist/Server/Add.php:138
-#: src/Module/Moderation/Blocklist/Server/Import.php:129
-#: src/Module/Moderation/Blocklist/Server/Index.php:86
-#: src/Module/Moderation/Blocklist/Server/Index.php:87
-#: src/Module/Moderation/Blocklist/Server/Index.php:115
-#: src/Module/Moderation/Blocklist/Server/Index.php:116
-#: src/Module/Moderation/Item/Delete.php:67 src/Module/Register.php:155
-#: src/Module/Security/TwoFactor/Verify.php:101
-#: src/Module/Settings/Channels.php:190 src/Module/Settings/Channels.php:211
-#: src/Module/Settings/TwoFactor/Index.php:161
-#: src/Module/Settings/TwoFactor/Verify.php:158
+#: src/Module/Calendar/Event/Form.php:195
+#: src/Module/Calendar/Event/Form.php:223 src/Module/Debug/Probe.php:45
+#: src/Module/Install.php:187 src/Module/Install.php:213
+#: src/Module/Install.php:218 src/Module/Install.php:232
+#: src/Module/Install.php:241 src/Module/Install.php:246
+#: src/Module/Install.php:252 src/Module/Install.php:257
+#: src/Module/Install.php:271 src/Module/Install.php:284
+#: src/Module/Install.php:311
+#: src/Module/Moderation/Blocklist/Server/Add.php:122
+#: src/Module/Moderation/Blocklist/Server/Add.php:124
+#: src/Module/Moderation/Blocklist/Server/Import.php:113
+#: src/Module/Moderation/Blocklist/Server/Index.php:72
+#: src/Module/Moderation/Blocklist/Server/Index.php:73
+#: src/Module/Moderation/Blocklist/Server/Index.php:101
+#: src/Module/Moderation/Blocklist/Server/Index.php:102
+#: src/Module/Moderation/Item/Delete.php:53 src/Module/Register.php:141
+#: src/Module/Security/TwoFactor/Verify.php:87
+#: src/Module/Settings/Channels.php:176 src/Module/Settings/Channels.php:197
+#: src/Module/Settings/TwoFactor/Index.php:147
+#: src/Module/Settings/TwoFactor/Verify.php:144
msgid "Required"
msgstr "Wymagany"
-#: src/Module/Calendar/Event/Form.php:223
-#: src/Module/Calendar/Event/Form.php:247
+#: src/Module/Calendar/Event/Form.php:209
+#: src/Module/Calendar/Event/Form.php:233
msgid "Finish date/time is not known or not relevant"
msgstr "Data/czas zakończenia nie jest znana lub jest nieistotna"
-#: src/Module/Calendar/Event/Form.php:225
-#: src/Module/Calendar/Event/Form.php:230
+#: src/Module/Calendar/Event/Form.php:211
+#: src/Module/Calendar/Event/Form.php:216
msgid "Event Finishes:"
msgstr "Zakończenie wydarzenia:"
-#: src/Module/Calendar/Event/Form.php:237
-#: src/Module/Calendar/Event/Form.php:243
+#: src/Module/Calendar/Event/Form.php:223
+#: src/Module/Calendar/Event/Form.php:229
msgid "Title (BBCode not allowed)"
msgstr ""
-#: src/Module/Calendar/Event/Form.php:239
+#: src/Module/Calendar/Event/Form.php:225
msgid "Description (BBCode allowed)"
msgstr ""
-#: src/Module/Calendar/Event/Form.php:241
+#: src/Module/Calendar/Event/Form.php:227
msgid "Location (BBCode not allowed)"
msgstr ""
-#: src/Module/Calendar/Event/Form.php:244
-#: src/Module/Calendar/Event/Form.php:245
+#: src/Module/Calendar/Event/Form.php:230
+#: src/Module/Calendar/Event/Form.php:231
msgid "Share this event"
msgstr "Udostępnij te wydarzenie"
-#: src/Module/Calendar/Event/Form.php:251 src/Module/Profile/Profile.php:277
+#: src/Module/Calendar/Event/Form.php:237 src/Module/Profile/Profile.php:263
msgid "Basic"
msgstr "Podstawowy"
-#: src/Module/Calendar/Export.php:94
+#: src/Module/Calendar/Export.php:80
msgid "This calendar format is not supported"
msgstr "Ten format kalendarza nie jest obsługiwany"
-#: src/Module/Calendar/Export.php:96
+#: src/Module/Calendar/Export.php:82
msgid "No exportable data found"
msgstr "Nie znaleziono danych do eksportu"
-#: src/Module/Calendar/Export.php:113
+#: src/Module/Calendar/Export.php:99
msgid "calendar"
msgstr "kalendarz"
-#: src/Module/Calendar/Show.php:124
+#: src/Module/Calendar/Show.php:110
msgid "Events"
msgstr "Wydarzenia"
-#: src/Module/Calendar/Show.php:125
+#: src/Module/Calendar/Show.php:111
msgid "View"
msgstr "Widok"
-#: src/Module/Calendar/Show.php:126
+#: src/Module/Calendar/Show.php:112
msgid "Create New Event"
msgstr "Stwórz nowe wydarzenie"
-#: src/Module/Calendar/Show.php:132 src/Module/Settings/Display.php:297
+#: src/Module/Calendar/Show.php:118 src/Module/Settings/Display.php:283
msgid "list"
msgstr "lista"
-#: src/Module/Circle.php:57
+#: src/Module/Circle.php:43
msgid "Could not create circle."
msgstr ""
-#: src/Module/Circle.php:68 src/Module/Circle.php:216
-#: src/Module/Circle.php:240
+#: src/Module/Circle.php:54 src/Module/Circle.php:202
+#: src/Module/Circle.php:226
msgid "Circle not found."
msgstr ""
-#: src/Module/Circle.php:74
+#: src/Module/Circle.php:60
msgid "Circle name was not changed."
msgstr ""
-#: src/Module/Circle.php:92
+#: src/Module/Circle.php:78
msgid "Unknown circle."
msgstr ""
-#: src/Module/Circle.php:98 src/Module/Circle.php:107
-#: src/Module/Contact/Advanced.php:70 src/Module/Contact/Advanced.php:109
-#: src/Module/Contact/Contacts.php:71 src/Module/Contact/Conversations.php:86
-#: src/Module/Contact/Conversations.php:91
-#: src/Module/Contact/Conversations.php:96 src/Module/Contact/Media.php:61
-#: src/Module/Contact/Posts.php:78 src/Module/Contact/Posts.php:83
-#: src/Module/Contact/Posts.php:88 src/Module/Contact/Profile.php:159
-#: src/Module/Contact/Profile.php:164 src/Module/Contact/Profile.php:183
-#: src/Module/Contact/Redir.php:91 src/Module/Contact/Redir.php:145
-#: src/Module/FriendSuggest.php:71 src/Module/FriendSuggest.php:109
+#: src/Module/Circle.php:84 src/Module/Circle.php:93
+#: src/Module/Contact/Advanced.php:56 src/Module/Contact/Advanced.php:95
+#: src/Module/Contact/Contacts.php:57 src/Module/Contact/Conversations.php:72
+#: src/Module/Contact/Conversations.php:77
+#: src/Module/Contact/Conversations.php:82 src/Module/Contact/Media.php:47
+#: src/Module/Contact/Posts.php:64 src/Module/Contact/Posts.php:69
+#: src/Module/Contact/Posts.php:74 src/Module/Contact/Profile.php:145
+#: src/Module/Contact/Profile.php:150 src/Module/Contact/Profile.php:169
+#: src/Module/Contact/Redir.php:77 src/Module/Contact/Redir.php:131
+#: src/Module/FriendSuggest.php:57 src/Module/FriendSuggest.php:95
msgid "Contact not found."
msgstr "Nie znaleziono kontaktu."
-#: src/Module/Circle.php:102 src/Module/Contact/Contacts.php:66
+#: src/Module/Circle.php:88 src/Module/Contact/Contacts.php:52
msgid "Invalid contact."
msgstr "Nieprawidłowy kontakt."
-#: src/Module/Circle.php:111 src/Module/Contact/Revoke.php:70
+#: src/Module/Circle.php:97 src/Module/Contact/Revoke.php:56
msgid "Contact is deleted."
msgstr "Kontakt został usunięty."
-#: src/Module/Circle.php:117
+#: src/Module/Circle.php:103
msgid "Unable to add the contact to the circle."
msgstr ""
-#: src/Module/Circle.php:120
+#: src/Module/Circle.php:106
msgid "Contact successfully added to circle."
msgstr ""
-#: src/Module/Circle.php:124
+#: src/Module/Circle.php:110
msgid "Unable to remove the contact from the circle."
msgstr ""
-#: src/Module/Circle.php:127
+#: src/Module/Circle.php:113
msgid "Contact successfully removed from circle."
msgstr ""
-#: src/Module/Circle.php:131
+#: src/Module/Circle.php:117
msgid "Bad request."
msgstr "Błędne żądanie."
-#: src/Module/Circle.php:172
+#: src/Module/Circle.php:158
msgid "Save Circle"
msgstr ""
-#: src/Module/Circle.php:173
+#: src/Module/Circle.php:159
msgid "Filter"
msgstr "Filtr"
-#: src/Module/Circle.php:179
+#: src/Module/Circle.php:165
msgid "Create a circle of contacts/friends."
msgstr ""
-#: src/Module/Circle.php:221
+#: src/Module/Circle.php:207
msgid "Unable to remove circle."
msgstr ""
-#: src/Module/Circle.php:272
+#: src/Module/Circle.php:258
msgid "Delete Circle"
msgstr ""
-#: src/Module/Circle.php:282
+#: src/Module/Circle.php:268
msgid "Edit Circle Name"
msgstr ""
-#: src/Module/Circle.php:292
+#: src/Module/Circle.php:278
msgid "Members"
msgstr "Członkowie"
-#: src/Module/Circle.php:295
+#: src/Module/Circle.php:281
msgid "Circle is empty"
msgstr ""
-#: src/Module/Circle.php:311
+#: src/Module/Circle.php:297
msgid "Remove contact from circle"
msgstr ""
-#: src/Module/Circle.php:334
+#: src/Module/Circle.php:320
msgid "Click on a contact to add or remove."
msgstr "Kliknij na kontakt w celu dodania lub usunięcia."
-#: src/Module/Circle.php:351
+#: src/Module/Circle.php:337
msgid "Add contact to circle"
msgstr ""
-#: src/Module/Contact.php:102
+#: src/Module/Contact.php:88
#, php-format
msgid "%d contact edited."
msgid_plural "%d contacts edited."
@@ -6547,192 +6546,192 @@ msgstr[1] "Zedytowano %d kontakty."
msgstr[2] "Zedytowano %d kontaktów."
msgstr[3] "%dedytuj kontakty."
-#: src/Module/Contact.php:353
+#: src/Module/Contact.php:328
msgid "Show all contacts"
msgstr "Pokaż wszystkie kontakty"
-#: src/Module/Contact.php:358 src/Module/Contact.php:437
-#: src/Module/Moderation/BaseUsers.php:85
+#: src/Module/Contact.php:333 src/Module/Contact.php:412
+#: src/Module/Moderation/BaseUsers.php:72
msgid "Pending"
msgstr "Oczekujące"
-#: src/Module/Contact.php:361
+#: src/Module/Contact.php:336
msgid "Only show pending contacts"
msgstr "Pokaż tylko oczekujące kontakty"
-#: src/Module/Contact.php:366 src/Module/Contact.php:440
-#: src/Module/Moderation/BaseUsers.php:93
+#: src/Module/Contact.php:341 src/Module/Contact.php:415
+#: src/Module/Moderation/BaseUsers.php:80
msgid "Blocked"
msgstr "Zablokowane"
-#: src/Module/Contact.php:369
+#: src/Module/Contact.php:344
msgid "Only show blocked contacts"
msgstr "Pokaż tylko zablokowane kontakty"
-#: src/Module/Contact.php:374 src/Module/Contact.php:446
-#: src/Module/Settings/Server/Index.php:107 src/Object/Post.php:399
+#: src/Module/Contact.php:349 src/Module/Contact.php:421
+#: src/Module/Settings/Server/Index.php:93 src/Object/Post.php:385
msgid "Ignored"
msgstr "Ignorowane"
-#: src/Module/Contact.php:377
+#: src/Module/Contact.php:352
msgid "Only show ignored contacts"
msgstr "Pokaż tylko ignorowane kontakty"
-#: src/Module/Contact.php:382 src/Module/Contact.php:449
+#: src/Module/Contact.php:357 src/Module/Contact.php:424
msgid "Collapsed"
msgstr ""
-#: src/Module/Contact.php:385
+#: src/Module/Contact.php:360
msgid "Only show collapsed contacts"
msgstr ""
-#: src/Module/Contact.php:390 src/Module/Contact.php:452
+#: src/Module/Contact.php:365 src/Module/Contact.php:427
msgid "Archived"
msgstr "Zarchiwizowane"
-#: src/Module/Contact.php:393
+#: src/Module/Contact.php:368
msgid "Only show archived contacts"
msgstr "Pokaż tylko zarchiwizowane kontakty"
-#: src/Module/Contact.php:398 src/Module/Contact.php:443
+#: src/Module/Contact.php:373 src/Module/Contact.php:418
msgid "Hidden"
msgstr "Ukryte"
-#: src/Module/Contact.php:401
+#: src/Module/Contact.php:376
msgid "Only show hidden contacts"
msgstr "Pokaż tylko ukryte kontakty"
-#: src/Module/Contact.php:409
+#: src/Module/Contact.php:384
msgid "Organize your contact circles"
msgstr ""
-#: src/Module/Contact.php:464
+#: src/Module/Contact.php:439
msgid "Search your contacts"
msgstr "Wyszukaj w kontaktach"
-#: src/Module/Contact.php:465 src/Module/Search/Index.php:207
+#: src/Module/Contact.php:440 src/Module/Search/Index.php:193
#, php-format
msgid "Results for: %s"
msgstr "Wyniki dla: %s"
-#: src/Module/Contact.php:473
+#: src/Module/Contact.php:448
msgid "Update"
msgstr "Zaktualizuj"
-#: src/Module/Contact.php:474 src/Module/Contact/Profile.php:532
-#: src/Module/Moderation/Blocklist/Contact.php:117
-#: src/Module/Moderation/Users/Blocked.php:138
-#: src/Module/Moderation/Users/Index.php:154
+#: src/Module/Contact.php:449 src/Module/Contact/Profile.php:518
+#: src/Module/Moderation/Blocklist/Contact.php:103
+#: src/Module/Moderation/Users/Blocked.php:124
+#: src/Module/Moderation/Users/Index.php:140
msgid "Unblock"
msgstr "Odblokuj"
-#: src/Module/Contact.php:475 src/Module/Contact/Profile.php:540
+#: src/Module/Contact.php:450 src/Module/Contact/Profile.php:526
msgid "Unignore"
msgstr "Odblokuj"
-#: src/Module/Contact.php:476 src/Module/Contact/Profile.php:548
+#: src/Module/Contact.php:451 src/Module/Contact/Profile.php:534
msgid "Uncollapse"
msgstr ""
-#: src/Module/Contact.php:478
+#: src/Module/Contact.php:453
msgid "Batch Actions"
msgstr "Akcje wsadowe"
-#: src/Module/Contact.php:521
+#: src/Module/Contact.php:496
msgid "Conversations started by this contact"
msgstr "Rozmowy rozpoczęły się od tego kontaktu"
-#: src/Module/Contact.php:526
+#: src/Module/Contact.php:501
msgid "Posts and Comments"
msgstr "Wpisy i komentarze"
-#: src/Module/Contact.php:529
+#: src/Module/Contact.php:504
msgid "Individual Posts and Replies"
msgstr ""
-#: src/Module/Contact.php:537
+#: src/Module/Contact.php:512
msgid "Posts containing media objects"
msgstr "Wpisy zawierające obiekty multimedialne"
-#: src/Module/Contact.php:545
+#: src/Module/Contact.php:520
msgid "View all known contacts"
msgstr "Zobacz wszystkie znane kontakty"
-#: src/Module/Contact.php:556
+#: src/Module/Contact.php:531
msgid "Advanced Contact Settings"
msgstr "Zaawansowane ustawienia kontaktów"
-#: src/Module/Contact.php:592
+#: src/Module/Contact.php:567
msgid "Mutual Friendship"
msgstr "Wzajemna przyjaźń"
-#: src/Module/Contact.php:596
+#: src/Module/Contact.php:571
msgid "is a fan of yours"
msgstr "jest twoim fanem"
-#: src/Module/Contact.php:600
+#: src/Module/Contact.php:575
msgid "you are a fan of"
msgstr "jesteś fanem"
-#: src/Module/Contact.php:618
+#: src/Module/Contact.php:593
msgid "Pending outgoing contact request"
msgstr "Oczekujące żądanie kontaktu wychodzącego"
-#: src/Module/Contact.php:620
+#: src/Module/Contact.php:595
msgid "Pending incoming contact request"
msgstr "Oczekujące żądanie kontaktu przychodzącego"
-#: src/Module/Contact.php:633 src/Module/Contact/Profile.php:391
+#: src/Module/Contact.php:608 src/Module/Contact/Profile.php:377
#, php-format
msgid "Visit %s's profile [%s]"
msgstr "Obejrzyj %s's profil [%s]"
-#: src/Module/Contact/Advanced.php:99
+#: src/Module/Contact/Advanced.php:85
msgid "Contact update failed."
msgstr "Nie udało się zaktualizować kontaktu."
-#: src/Module/Contact/Advanced.php:130
+#: src/Module/Contact/Advanced.php:116
msgid "Return to contact editor"
msgstr "Wróć do edytora kontaktów"
-#: src/Module/Contact/Advanced.php:134
-#: src/Module/Moderation/Blocklist/Contact.php:122
-#: src/Module/Moderation/Reports.php:116
-#: src/Module/Moderation/Users/Active.php:126
-#: src/Module/Moderation/Users/Blocked.php:126
-#: src/Module/Moderation/Users/Create.php:70
-#: src/Module/Moderation/Users/Deleted.php:83
-#: src/Module/Moderation/Users/Index.php:140
-#: src/Module/Moderation/Users/Index.php:160
-#: src/Module/Moderation/Users/Pending.php:99 src/Module/Settings/OAuth.php:72
+#: src/Module/Contact/Advanced.php:120
+#: src/Module/Moderation/Blocklist/Contact.php:108
+#: src/Module/Moderation/Reports.php:102
+#: src/Module/Moderation/Users/Active.php:112
+#: src/Module/Moderation/Users/Blocked.php:112
+#: src/Module/Moderation/Users/Create.php:56
+#: src/Module/Moderation/Users/Deleted.php:69
+#: src/Module/Moderation/Users/Index.php:126
+#: src/Module/Moderation/Users/Index.php:146
+#: src/Module/Moderation/Users/Pending.php:85 src/Module/Settings/OAuth.php:58
msgid "Name"
msgstr "Nazwa"
-#: src/Module/Contact/Advanced.php:135
+#: src/Module/Contact/Advanced.php:121
msgid "Account Nickname"
msgstr "Nazwa konta"
-#: src/Module/Contact/Advanced.php:136
+#: src/Module/Contact/Advanced.php:122
msgid "Account URL"
msgstr "Adres URL konta"
-#: src/Module/Contact/Advanced.php:137
+#: src/Module/Contact/Advanced.php:123
msgid "Poll/Feed URL"
msgstr "Adres Ankiety/RSS"
-#: src/Module/Contact/Advanced.php:138
+#: src/Module/Contact/Advanced.php:124
msgid "New photo from this URL"
msgstr "Nowe zdjęcie z tego adresu URL"
-#: src/Module/Contact/Contacts.php:89
+#: src/Module/Contact/Contacts.php:75
msgid "No known contacts."
msgstr "Brak znanych kontaktów."
-#: src/Module/Contact/Contacts.php:103 src/Module/Profile/Common.php:128
+#: src/Module/Contact/Contacts.php:89 src/Module/Profile/Common.php:114
msgid "No common contacts."
msgstr "Brak wspólnych kontaktów."
-#: src/Module/Contact/Contacts.php:115 src/Module/Profile/Contacts.php:135
+#: src/Module/Contact/Contacts.php:101 src/Module/Profile/Contacts.php:121
#, php-format
msgid "Follower (%s)"
msgid_plural "Followers (%s)"
@@ -6741,7 +6740,7 @@ msgstr[1] "Obserwujących (%s)"
msgstr[2] "Obserwujących (%s)"
msgstr[3] "Obserwujących (%s)"
-#: src/Module/Contact/Contacts.php:119 src/Module/Profile/Contacts.php:138
+#: src/Module/Contact/Contacts.php:105 src/Module/Profile/Contacts.php:124
#, php-format
msgid "Following (%s)"
msgid_plural "Following (%s)"
@@ -6750,7 +6749,7 @@ msgstr[1] "Obserwowanych (%s)"
msgstr[2] "Obserwowanych (%s)"
msgstr[3] "Obserwowanych (%s)"
-#: src/Module/Contact/Contacts.php:123 src/Module/Profile/Contacts.php:141
+#: src/Module/Contact/Contacts.php:109 src/Module/Profile/Contacts.php:127
#, php-format
msgid "Mutual friend (%s)"
msgid_plural "Mutual friends (%s)"
@@ -6759,12 +6758,12 @@ msgstr[1] "Wspólnych przyjaciół (%s)"
msgstr[2] "Wspólnych przyjaciół (%s)"
msgstr[3] "Wspólnych przyjaciół (%s)"
-#: src/Module/Contact/Contacts.php:125 src/Module/Profile/Contacts.php:143
+#: src/Module/Contact/Contacts.php:111 src/Module/Profile/Contacts.php:129
#, php-format
msgid "These contacts both follow and are followed by %s."
msgstr "Te kontakty zarówno śledzą, jak i są śledzone przez %s."
-#: src/Module/Contact/Contacts.php:131 src/Module/Profile/Common.php:116
+#: src/Module/Contact/Contacts.php:117 src/Module/Profile/Common.php:102
#, php-format
msgid "Common contact (%s)"
msgid_plural "Common contacts (%s)"
@@ -6773,14 +6772,14 @@ msgstr[1] "Wspólne kontakty (%s)"
msgstr[2] "Wspólnych kontaktów (%s)"
msgstr[3] "Wspólnych kontaktów (%s)"
-#: src/Module/Contact/Contacts.php:133 src/Module/Profile/Common.php:118
+#: src/Module/Contact/Contacts.php:119 src/Module/Profile/Common.php:104
#, php-format
msgid ""
"Both %s and yourself have publicly interacted with these "
"contacts (follow, comment or likes on public posts)."
msgstr "Zarówno %s, jak i Ty, nawiązaliście publiczną interakcję z tymi kontaktami (obserwujecie, komentujecie lub polubiliście publiczne wpisy)."
-#: src/Module/Contact/Contacts.php:139 src/Module/Profile/Contacts.php:149
+#: src/Module/Contact/Contacts.php:125 src/Module/Profile/Contacts.php:135
#, php-format
msgid "Contact (%s)"
msgid_plural "Contacts (%s)"
@@ -6789,333 +6788,329 @@ msgstr[1] "Kontakty (%s)"
msgstr[2] "Kontaktów (%s)"
msgstr[3] "Kontaktów (%s)"
-#: src/Module/Contact/Follow.php:70 src/Module/Contact/Redir.php:59
-#: src/Module/Contact/Redir.php:220 src/Module/Conversation/Community.php:166
-#: src/Module/Debug/ItemBody.php:38 src/Module/Diaspora/Receive.php:59
-#: src/Module/Item/Display.php:96 src/Module/Item/Feed.php:59
-#: src/Module/Item/Follow.php:41 src/Module/Item/Ignore.php:41
-#: src/Module/Item/Language.php:53 src/Module/Item/Pin.php:41
-#: src/Module/Item/Pin.php:56 src/Module/Item/Searchtext.php:53
-#: src/Module/Item/Star.php:42 src/Module/Update/Display.php:37
+#: src/Module/Contact/Follow.php:56 src/Module/Contact/Redir.php:45
+#: src/Module/Contact/Redir.php:206 src/Module/Conversation/Community.php:154
+#: src/Module/Debug/ItemBody.php:24 src/Module/Diaspora/Receive.php:45
+#: src/Module/Item/Display.php:82 src/Module/Item/Feed.php:45
+#: src/Module/Item/Follow.php:27 src/Module/Item/Ignore.php:27
+#: src/Module/Item/Language.php:39 src/Module/Item/Pin.php:27
+#: src/Module/Item/Pin.php:42 src/Module/Item/Searchtext.php:39
+#: src/Module/Item/Star.php:28 src/Module/Update/Display.php:23
msgid "Access denied."
msgstr "Brak dostępu."
-#: src/Module/Contact/Follow.php:105 src/Module/Contact/Unfollow.php:125
-#: src/Module/Profile/RemoteFollow.php:133
+#: src/Module/Contact/Follow.php:91 src/Module/Contact/Unfollow.php:111
+#: src/Module/Profile/RemoteFollow.php:119
msgid "Submit Request"
msgstr "Wyślij zgłoszenie"
-#: src/Module/Contact/Follow.php:115
+#: src/Module/Contact/Follow.php:101
msgid "You already added this contact."
msgstr "Już dodałeś ten kontakt."
-#: src/Module/Contact/Follow.php:130
+#: src/Module/Contact/Follow.php:116
msgid "The network type couldn't be detected. Contact can't be added."
msgstr "Nie można wykryć typu sieci. Kontakt nie może zostać dodany."
-#: src/Module/Contact/Follow.php:138
+#: src/Module/Contact/Follow.php:124
msgid "Diaspora support isn't enabled. Contact can't be added."
msgstr "Obsługa Diaspory nie jest włączona. Kontakt nie może zostać dodany."
-#: src/Module/Contact/Follow.php:143
-msgid "OStatus support is disabled. Contact can't be added."
-msgstr "Obsługa OStatus jest wyłączona. Kontakt nie może zostać dodany."
-
-#: src/Module/Contact/Follow.php:168 src/Module/Profile/RemoteFollow.php:132
+#: src/Module/Contact/Follow.php:149 src/Module/Profile/RemoteFollow.php:118
msgid "Please answer the following:"
msgstr "Proszę odpowiedzieć na następujące pytania:"
-#: src/Module/Contact/Follow.php:169 src/Module/Contact/Unfollow.php:123
+#: src/Module/Contact/Follow.php:150 src/Module/Contact/Unfollow.php:109
msgid "Your Identity Address:"
msgstr "Twój adres tożsamości:"
-#: src/Module/Contact/Follow.php:170 src/Module/Contact/Profile.php:422
-#: src/Module/Contact/Unfollow.php:129
-#: src/Module/Moderation/Blocklist/Contact.php:131
-#: src/Module/Moderation/Reports.php:123
-#: src/Module/Notifications/Introductions.php:135
-#: src/Module/Notifications/Introductions.php:204
+#: src/Module/Contact/Follow.php:151 src/Module/Contact/Profile.php:408
+#: src/Module/Contact/Unfollow.php:115
+#: src/Module/Moderation/Blocklist/Contact.php:117
+#: src/Module/Moderation/Reports.php:109
+#: src/Module/Notifications/Introductions.php:121
+#: src/Module/Notifications/Introductions.php:190
msgid "Profile URL"
msgstr "Adres URL profilu"
-#: src/Module/Contact/Follow.php:171 src/Module/Contact/Profile.php:434
-#: src/Module/Notifications/Introductions.php:197
-#: src/Module/Profile/Profile.php:236
+#: src/Module/Contact/Follow.php:152 src/Module/Contact/Profile.php:420
+#: src/Module/Notifications/Introductions.php:183
+#: src/Module/Profile/Profile.php:222
msgid "Tags:"
msgstr "Znaczniki:"
-#: src/Module/Contact/Follow.php:182
+#: src/Module/Contact/Follow.php:163
#, php-format
msgid "%s knows you"
msgstr "%s zna cię"
-#: src/Module/Contact/Follow.php:183
+#: src/Module/Contact/Follow.php:164
msgid "Add a personal note:"
msgstr "Dodaj osobistą notkę:"
-#: src/Module/Contact/Follow.php:192 src/Module/Contact/Unfollow.php:138
+#: src/Module/Contact/Follow.php:173 src/Module/Contact/Unfollow.php:124
msgid "Posts and Replies"
msgstr ""
-#: src/Module/Contact/Follow.php:221
+#: src/Module/Contact/Follow.php:202
msgid "The contact could not be added."
msgstr "Nie można dodać kontaktu."
-#: src/Module/Contact/MatchInterests.php:95
-#: src/Module/Media/Attachment/Upload.php:77
-#: src/Module/Media/Attachment/Upload.php:82
-#: src/Module/Media/Photo/Upload.php:81 src/Module/Media/Photo/Upload.php:86
-#: src/Module/Media/Photo/Upload.php:135
+#: src/Module/Contact/MatchInterests.php:81
+#: src/Module/Media/Attachment/Upload.php:63
+#: src/Module/Media/Attachment/Upload.php:68
+#: src/Module/Media/Photo/Upload.php:67 src/Module/Media/Photo/Upload.php:72
+#: src/Module/Media/Photo/Upload.php:121
msgid "Invalid request."
msgstr "Nieprawidłowe żądanie."
-#: src/Module/Contact/MatchInterests.php:102
+#: src/Module/Contact/MatchInterests.php:88
msgid "No keywords to match. Please add keywords to your profile."
msgstr "Brak pasujących słów kluczowych. Dodaj słowa kluczowe do swojego profilu."
-#: src/Module/Contact/MatchInterests.php:145
+#: src/Module/Contact/MatchInterests.php:141
msgid "Profile Match"
msgstr "Dopasowanie profilu"
-#: src/Module/Contact/Profile.php:145
+#: src/Module/Contact/Profile.php:131
msgid "Failed to update contact record."
msgstr "Aktualizacja rekordu kontaktu nie powiodła się."
-#: src/Module/Contact/Profile.php:209
+#: src/Module/Contact/Profile.php:195
msgid "Contact has been unblocked"
msgstr "Kontakt został odblokowany"
-#: src/Module/Contact/Profile.php:213
+#: src/Module/Contact/Profile.php:199
msgid "Contact has been blocked"
msgstr "Kontakt został zablokowany"
-#: src/Module/Contact/Profile.php:225
+#: src/Module/Contact/Profile.php:211
msgid "Contact has been unignored"
msgstr "Kontakt nie jest ignorowany"
-#: src/Module/Contact/Profile.php:229
+#: src/Module/Contact/Profile.php:215
msgid "Contact has been ignored"
msgstr "Kontakt jest ignorowany"
-#: src/Module/Contact/Profile.php:241
+#: src/Module/Contact/Profile.php:227
msgid "Contact has been uncollapsed"
msgstr ""
-#: src/Module/Contact/Profile.php:245
+#: src/Module/Contact/Profile.php:231
msgid "Contact has been collapsed"
msgstr ""
-#: src/Module/Contact/Profile.php:273
+#: src/Module/Contact/Profile.php:259
#, php-format
msgid "You are mutual friends with %s"
msgstr "Jesteś już znajomym z %s"
-#: src/Module/Contact/Profile.php:274
+#: src/Module/Contact/Profile.php:260
#, php-format
msgid "You are sharing with %s"
msgstr "Współdzielisz z %s"
-#: src/Module/Contact/Profile.php:275
+#: src/Module/Contact/Profile.php:261
#, php-format
msgid "%s is sharing with you"
msgstr "%s współdzieli z tobą"
-#: src/Module/Contact/Profile.php:291
+#: src/Module/Contact/Profile.php:277
msgid "Private communications are not available for this contact."
msgstr "Nie można nawiązać prywatnej rozmowy z tym kontaktem."
-#: src/Module/Contact/Profile.php:301
+#: src/Module/Contact/Profile.php:287
msgid "This contact is on a server you ignored."
msgstr ""
-#: src/Module/Contact/Profile.php:304
+#: src/Module/Contact/Profile.php:290
msgid "Never"
msgstr "Nigdy"
-#: src/Module/Contact/Profile.php:307
+#: src/Module/Contact/Profile.php:293
msgid "(Update was not successful)"
msgstr "(Aktualizacja nie powiodła się)"
-#: src/Module/Contact/Profile.php:307
+#: src/Module/Contact/Profile.php:293
msgid "(Update was successful)"
msgstr "(Aktualizacja przebiegła pomyślnie)"
-#: src/Module/Contact/Profile.php:309 src/Module/Contact/Profile.php:503
+#: src/Module/Contact/Profile.php:295 src/Module/Contact/Profile.php:489
msgid "Suggest friends"
msgstr "Osoby, które możesz znać"
-#: src/Module/Contact/Profile.php:313
+#: src/Module/Contact/Profile.php:299
#, php-format
msgid "Network type: %s"
msgstr "Typ sieci: %s"
-#: src/Module/Contact/Profile.php:318
+#: src/Module/Contact/Profile.php:304
msgid "Communications lost with this contact!"
msgstr "Utracono komunikację z tym kontaktem!"
-#: src/Module/Contact/Profile.php:324
+#: src/Module/Contact/Profile.php:310
msgid "Fetch further information for feeds"
msgstr "Pobierz dalsze informacje dla kanałów"
-#: src/Module/Contact/Profile.php:326
+#: src/Module/Contact/Profile.php:312
msgid ""
"Fetch information like preview pictures, title and teaser from the feed "
"item. You can activate this if the feed doesn't contain much text. Keywords "
"are taken from the meta header in the feed item and are posted as hash tags."
msgstr "Pobieranie informacji, takich jak zdjęcia podglądu, tytuł i zwiastun z elementu kanału. Możesz to aktywować, jeśli plik danych nie zawiera dużo tekstu. Słowa kluczowe są pobierane z nagłówka meta w elemencie kanału i są publikowane jako znaczniki haszowania."
-#: src/Module/Contact/Profile.php:329
+#: src/Module/Contact/Profile.php:315
msgid "Fetch information"
msgstr "Pobierz informacje"
-#: src/Module/Contact/Profile.php:330
+#: src/Module/Contact/Profile.php:316
msgid "Fetch keywords"
msgstr "Pobierz słowa kluczowe"
-#: src/Module/Contact/Profile.php:331
+#: src/Module/Contact/Profile.php:317
msgid "Fetch information and keywords"
msgstr "Pobierz informacje i słowa kluczowe"
-#: src/Module/Contact/Profile.php:341 src/Module/Contact/Profile.php:346
-#: src/Module/Contact/Profile.php:351 src/Module/Contact/Profile.php:357
+#: src/Module/Contact/Profile.php:327 src/Module/Contact/Profile.php:332
+#: src/Module/Contact/Profile.php:337 src/Module/Contact/Profile.php:343
msgid "No mirroring"
msgstr "Bez dublowania"
-#: src/Module/Contact/Profile.php:342 src/Module/Contact/Profile.php:352
-#: src/Module/Contact/Profile.php:358
+#: src/Module/Contact/Profile.php:328 src/Module/Contact/Profile.php:338
+#: src/Module/Contact/Profile.php:344
msgid "Mirror as my own posting"
msgstr "Lustro mojego własnego komentarza"
-#: src/Module/Contact/Profile.php:347 src/Module/Contact/Profile.php:353
+#: src/Module/Contact/Profile.php:333 src/Module/Contact/Profile.php:339
msgid "Native reshare"
msgstr "Udostępnianie natywne"
-#: src/Module/Contact/Profile.php:373
+#: src/Module/Contact/Profile.php:359
msgid "Contact Information / Notes"
msgstr "Informacje kontaktowe/Notatki"
-#: src/Module/Contact/Profile.php:374
+#: src/Module/Contact/Profile.php:360
msgid "Contact Settings"
msgstr "Ustawienia kontaktów"
-#: src/Module/Contact/Profile.php:382
+#: src/Module/Contact/Profile.php:368
msgid "Contact"
msgstr "Kontakt"
-#: src/Module/Contact/Profile.php:386
+#: src/Module/Contact/Profile.php:372
msgid "Their personal note"
msgstr "Ich osobista uwaga"
-#: src/Module/Contact/Profile.php:388
+#: src/Module/Contact/Profile.php:374
msgid "Edit contact notes"
msgstr "Edytuj notatki kontaktu"
-#: src/Module/Contact/Profile.php:392
+#: src/Module/Contact/Profile.php:378
msgid "Block/Unblock contact"
msgstr "Zablokuj/odblokuj kontakt"
-#: src/Module/Contact/Profile.php:393
-#: src/Module/Moderation/Report/Create.php:293
+#: src/Module/Contact/Profile.php:379
+#: src/Module/Moderation/Report/Create.php:279
msgid "Ignore contact"
msgstr "Ignoruj kontakt"
-#: src/Module/Contact/Profile.php:394
+#: src/Module/Contact/Profile.php:380
msgid "View conversations"
msgstr "Wyświetl rozmowy"
-#: src/Module/Contact/Profile.php:399
+#: src/Module/Contact/Profile.php:385
msgid "Last update:"
msgstr "Ostatnia aktualizacja:"
-#: src/Module/Contact/Profile.php:401
+#: src/Module/Contact/Profile.php:387
msgid "Update public posts"
msgstr "Zaktualizuj publiczne wpisy"
-#: src/Module/Contact/Profile.php:403 src/Module/Contact/Profile.php:513
+#: src/Module/Contact/Profile.php:389 src/Module/Contact/Profile.php:499
msgid "Update now"
msgstr "Aktualizuj teraz"
-#: src/Module/Contact/Profile.php:405
+#: src/Module/Contact/Profile.php:391
msgid "Awaiting connection acknowledge"
msgstr "Oczekiwanie na potwierdzenie połączenia"
-#: src/Module/Contact/Profile.php:406
+#: src/Module/Contact/Profile.php:392
msgid "Currently blocked"
msgstr "Obecnie zablokowany"
-#: src/Module/Contact/Profile.php:407
+#: src/Module/Contact/Profile.php:393
msgid "Currently ignored"
msgstr "Obecnie zignorowany"
-#: src/Module/Contact/Profile.php:408
+#: src/Module/Contact/Profile.php:394
msgid "Currently collapsed"
msgstr ""
-#: src/Module/Contact/Profile.php:409
+#: src/Module/Contact/Profile.php:395
msgid "Currently archived"
msgstr "Obecnie zarchiwizowany"
-#: src/Module/Contact/Profile.php:412
+#: src/Module/Contact/Profile.php:398
msgid "Manage remote servers"
msgstr ""
-#: src/Module/Contact/Profile.php:414
-#: src/Module/Notifications/Introductions.php:198
+#: src/Module/Contact/Profile.php:400
+#: src/Module/Notifications/Introductions.php:184
msgid "Hide this contact from others"
msgstr "Ukryj ten kontakt przed innymi"
-#: src/Module/Contact/Profile.php:414
+#: src/Module/Contact/Profile.php:400
msgid ""
"Replies/likes to your public posts may still be visible"
msgstr "Odpowiedzi/kliknięcia \"lubię to\" do Twoich publicznych wpisów nadal mogą być widoczne"
-#: src/Module/Contact/Profile.php:415
+#: src/Module/Contact/Profile.php:401
msgid "Notification for new posts"
msgstr "Powiadomienie o nowych wpisach"
-#: src/Module/Contact/Profile.php:415
+#: src/Module/Contact/Profile.php:401
msgid "Send a notification of every new post of this contact"
msgstr "Wyślij powiadomienie o każdym nowym poście tego kontaktu"
-#: src/Module/Contact/Profile.php:417
+#: src/Module/Contact/Profile.php:403
msgid "Keyword Deny List"
msgstr "Lista odrzuconych słów kluczowych"
-#: src/Module/Contact/Profile.php:417
+#: src/Module/Contact/Profile.php:403
msgid ""
"Comma separated list of keywords that should not be converted to hashtags, "
"when \"Fetch information and keywords\" is selected"
msgstr "Rozdzielana przecinkami lista słów kluczowych, które nie powinny zostać przekonwertowane na hashtagi, gdy wybrana jest opcja 'Pobierz informacje i słowa kluczowe'"
-#: src/Module/Contact/Profile.php:435
-#: src/Module/Settings/TwoFactor/Index.php:160
+#: src/Module/Contact/Profile.php:421
+#: src/Module/Settings/TwoFactor/Index.php:146
msgid "Actions"
msgstr "Akcja"
-#: src/Module/Contact/Profile.php:437
-#: src/Module/Settings/TwoFactor/Index.php:140 view/theme/frio/theme.php:232
+#: src/Module/Contact/Profile.php:423
+#: src/Module/Settings/TwoFactor/Index.php:126 view/theme/frio/theme.php:220
msgid "Status"
msgstr "Stan"
-#: src/Module/Contact/Profile.php:443
+#: src/Module/Contact/Profile.php:429
msgid "Mirror postings from this contact"
msgstr "Publikacje lustrzane od tego kontaktu"
-#: src/Module/Contact/Profile.php:445
+#: src/Module/Contact/Profile.php:431
msgid ""
"Mark this contact as remote_self, this will cause friendica to repost new "
"entries from this contact."
msgstr "Oznacz ten kontakt jako remote_self, spowoduje to, że friendica odeśle nowe wpisy z tego kontaktu."
-#: src/Module/Contact/Profile.php:448
+#: src/Module/Contact/Profile.php:434
msgid "Channel Settings"
msgstr ""
-#: src/Module/Contact/Profile.php:449
+#: src/Module/Contact/Profile.php:435
msgid "Frequency of this contact in relevant channels"
msgstr ""
-#: src/Module/Contact/Profile.php:450
+#: src/Module/Contact/Profile.php:436
msgid ""
"Depending on the type of the channel not all posts from this contact are "
"displayed. By default, posts need to have a minimum amount of interactions "
@@ -7125,201 +7120,201 @@ msgid ""
"block or hide the contact completely."
msgstr ""
-#: src/Module/Contact/Profile.php:451
+#: src/Module/Contact/Profile.php:437
msgid "Default frequency"
msgstr ""
-#: src/Module/Contact/Profile.php:451
+#: src/Module/Contact/Profile.php:437
msgid ""
"Posts by this contact are displayed in the \"for you\" channel if you "
"interact often with this contact or if a post reached some level of "
"interaction."
msgstr ""
-#: src/Module/Contact/Profile.php:452
+#: src/Module/Contact/Profile.php:438
msgid "Display all posts of this contact"
msgstr ""
-#: src/Module/Contact/Profile.php:452
+#: src/Module/Contact/Profile.php:438
msgid "All posts from this contact will appear on the \"for you\" channel"
msgstr ""
-#: src/Module/Contact/Profile.php:453
+#: src/Module/Contact/Profile.php:439
msgid "Display only few posts"
msgstr ""
-#: src/Module/Contact/Profile.php:453
+#: src/Module/Contact/Profile.php:439
msgid ""
"When a contact creates a lot of posts in a short period, this setting "
"reduces the number of displayed posts in every channel."
msgstr ""
-#: src/Module/Contact/Profile.php:454
+#: src/Module/Contact/Profile.php:440
msgid "Never display posts"
msgstr ""
-#: src/Module/Contact/Profile.php:454
+#: src/Module/Contact/Profile.php:440
msgid "Posts from this contact will never be displayed in any channel"
msgstr ""
-#: src/Module/Contact/Profile.php:455
+#: src/Module/Contact/Profile.php:441
msgid "Channel Only"
msgstr ""
-#: src/Module/Contact/Profile.php:455
+#: src/Module/Contact/Profile.php:441
msgid ""
"If enabled, posts from this contact will only appear in channels and network"
" streams in circles, but not in the general network stream."
msgstr ""
-#: src/Module/Contact/Profile.php:523
+#: src/Module/Contact/Profile.php:509
msgid "Refetch contact data"
msgstr "Pobierz ponownie dane kontaktowe"
-#: src/Module/Contact/Profile.php:534
+#: src/Module/Contact/Profile.php:520
msgid "Toggle Blocked status"
msgstr "Przełącz stan na Zablokowany"
-#: src/Module/Contact/Profile.php:542
+#: src/Module/Contact/Profile.php:528
msgid "Toggle Ignored status"
msgstr "Przełącz stan na Ignorowany"
-#: src/Module/Contact/Profile.php:550
+#: src/Module/Contact/Profile.php:536
msgid "Toggle Collapsed status"
msgstr ""
-#: src/Module/Contact/Profile.php:557 src/Module/Contact/Revoke.php:103
+#: src/Module/Contact/Profile.php:543 src/Module/Contact/Revoke.php:89
msgid "Revoke Follow"
msgstr "Anuluj obserwowanie"
-#: src/Module/Contact/Profile.php:559
+#: src/Module/Contact/Profile.php:545
msgid "Revoke the follow from this contact"
msgstr "Anuluj obserwację przez ten kontakt"
-#: src/Module/Contact/Redir.php:139
+#: src/Module/Contact/Redir.php:125
msgid "Bad Request."
msgstr "Błędne zapytanie."
-#: src/Module/Contact/Revoke.php:74
+#: src/Module/Contact/Revoke.php:60
msgid "Contact is being deleted."
msgstr "Kontakt jest usuwany."
-#: src/Module/Contact/Revoke.php:88
+#: src/Module/Contact/Revoke.php:74
msgid "Follow was successfully revoked."
msgstr "Obserwacja została pomyślnie anulowana."
-#: src/Module/Contact/Revoke.php:104
+#: src/Module/Contact/Revoke.php:90
msgid ""
"Do you really want to revoke this contact's follow? This cannot be undone "
"and they will have to manually follow you back again."
msgstr "Czy na pewno chcesz cofnąć obserwowanie przez ten kontakt? Nie można tego cofnąć i przy chęci przywrócenia obserwacji będzie trzeba zrobić to ponownie ręcznie."
-#: src/Module/Contact/Suggestions.php:62
+#: src/Module/Contact/Suggestions.php:48
msgid ""
"No suggestions available. If this is a new site, please try again in 24 "
"hours."
msgstr "Brak dostępnych sugestii. Jeśli jest to nowa witryna, spróbuj ponownie za 24 godziny."
-#: src/Module/Contact/Unfollow.php:98 src/Module/Contact/Unfollow.php:167
+#: src/Module/Contact/Unfollow.php:84 src/Module/Contact/Unfollow.php:153
msgid "You aren't following this contact."
msgstr "Nie obserwujesz tego kontaktu."
-#: src/Module/Contact/Unfollow.php:103
+#: src/Module/Contact/Unfollow.php:89
msgid "Unfollowing is currently not supported by your network."
msgstr "Brak obserwowania nie jest obecnie obsługiwany przez twoją sieć."
-#: src/Module/Contact/Unfollow.php:121
+#: src/Module/Contact/Unfollow.php:107
msgid "Disconnect/Unfollow"
msgstr "Rozłącz/Nie obserwuj"
-#: src/Module/Contact/Unfollow.php:175
+#: src/Module/Contact/Unfollow.php:161
msgid "Contact was successfully unfollowed"
msgstr "Kontakt pomyślnie przestał być obserwowany"
-#: src/Module/Contact/Unfollow.php:178
+#: src/Module/Contact/Unfollow.php:164
msgid "Unable to unfollow this contact, please contact your administrator"
msgstr "Nie można przestać obserwować tego kontaktu, skontaktuj się z administratorem"
-#: src/Module/Conversation/Channel.php:139
-#: src/Module/Conversation/Community.php:126 src/Module/Search/Index.php:152
-#: src/Module/Search/Index.php:194
+#: src/Module/Conversation/Channel.php:125
+#: src/Module/Conversation/Community.php:114 src/Module/Search/Index.php:138
+#: src/Module/Search/Index.php:180
msgid "No results."
msgstr "Brak wyników."
-#: src/Module/Conversation/Channel.php:177
+#: src/Module/Conversation/Channel.php:163
msgid "Channel not available."
msgstr ""
-#: src/Module/Conversation/Community.php:92
+#: src/Module/Conversation/Community.php:80
msgid ""
"This community stream shows all public posts received by this node. They may"
" not reflect the opinions of this node’s users."
msgstr "Ten strumień społeczności pokazuje wszystkie publiczne posty otrzymane przez ten węzeł. Mogą nie odzwierciedlać opinii użytkowników tego węzła."
-#: src/Module/Conversation/Community.php:180
+#: src/Module/Conversation/Community.php:168
msgid "Community option not available."
msgstr "Opcja wspólnotowa jest niedostępna."
-#: src/Module/Conversation/Community.php:196
+#: src/Module/Conversation/Community.php:184
msgid "Not available."
msgstr "Niedostępne."
-#: src/Module/Conversation/Network.php:216
+#: src/Module/Conversation/Network.php:202
msgid "No such circle"
msgstr ""
-#: src/Module/Conversation/Network.php:220
+#: src/Module/Conversation/Network.php:206
#, php-format
msgid "Circle: %s"
msgstr ""
-#: src/Module/Conversation/Network.php:239
+#: src/Module/Conversation/Network.php:226
#, php-format
msgid "Error %d (%s) while fetching the timeline."
msgstr ""
-#: src/Module/Conversation/Network.php:316
+#: src/Module/Conversation/Network.php:304
msgid "Network feed not available."
msgstr ""
-#: src/Module/Conversation/Timeline.php:204
+#: src/Module/Conversation/Timeline.php:190
msgid "Include"
msgstr "Zawiera"
-#: src/Module/Conversation/Timeline.php:205
+#: src/Module/Conversation/Timeline.php:191
msgid "Hide"
msgstr "Ukryj"
-#: src/Module/Credits.php:44
+#: src/Module/Credits.php:30
msgid "Credits"
msgstr "Zaufany"
-#: src/Module/Credits.php:45
+#: src/Module/Credits.php:31
msgid ""
"Friendica is a community project, that would not be possible without the "
"help of many people. Here is a list of those who have contributed to the "
"code or the translation of Friendica. Thank you all!"
msgstr "Friendica to projekt społecznościowy, który nie byłby możliwy bez pomocy wielu osób. Oto lista osób, które przyczyniły się do tworzenia kodu lub tłumaczenia Friendica. Dziękuję wam wszystkim!"
-#: src/Module/Debug/ActivityPubConversion.php:59
+#: src/Module/Debug/ActivityPubConversion.php:45
msgid "Formatted"
msgstr "Sformatowany"
-#: src/Module/Debug/ActivityPubConversion.php:71
+#: src/Module/Debug/ActivityPubConversion.php:57
msgid "Activity"
msgstr "Aktywność"
-#: src/Module/Debug/ActivityPubConversion.php:123
+#: src/Module/Debug/ActivityPubConversion.php:109
msgid "Object data"
msgstr "Dane obiektu"
-#: src/Module/Debug/ActivityPubConversion.php:130
+#: src/Module/Debug/ActivityPubConversion.php:116
msgid "Result Item"
msgstr "Pozycja wynikowa"
-#: src/Module/Debug/ActivityPubConversion.php:135
-#: src/Module/Debug/Babel.php:300 src/Module/Moderation/Item/Source.php:93
-#: src/Module/Security/TwoFactor/Verify.php:98
+#: src/Module/Debug/ActivityPubConversion.php:121
+#: src/Module/Debug/Babel.php:286 src/Module/Moderation/Item/Source.php:79
+#: src/Module/Security/TwoFactor/Verify.php:84
msgid "Error"
msgid_plural "Errors"
msgstr[0] "Błąd"
@@ -7327,506 +7322,506 @@ msgstr[1] "Błędów"
msgstr[2] "Błędy"
msgstr[3] "Błędów"
-#: src/Module/Debug/ActivityPubConversion.php:144
+#: src/Module/Debug/ActivityPubConversion.php:130
msgid "Source activity"
msgstr "Aktywność źródła"
-#: src/Module/Debug/Babel.php:58
+#: src/Module/Debug/Babel.php:44
msgid "Source input"
msgstr "Źródło wejściowe"
-#: src/Module/Debug/Babel.php:64
+#: src/Module/Debug/Babel.php:50
msgid "BBCode::toPlaintext"
msgstr "BBCode::na prosty tekst"
-#: src/Module/Debug/Babel.php:70
+#: src/Module/Debug/Babel.php:56
msgid "BBCode::convert (raw HTML)"
msgstr "BBCode:: konwersjia (raw HTML)"
-#: src/Module/Debug/Babel.php:75
+#: src/Module/Debug/Babel.php:61
msgid "BBCode::convert (hex)"
msgstr ""
-#: src/Module/Debug/Babel.php:80
+#: src/Module/Debug/Babel.php:66
msgid "BBCode::convert"
msgstr "BBCode::przekształć"
-#: src/Module/Debug/Babel.php:86
+#: src/Module/Debug/Babel.php:72
msgid "BBCode::convert => HTML::toBBCode"
msgstr "BBCode::przekształć => HTML::toBBCode"
-#: src/Module/Debug/Babel.php:92
+#: src/Module/Debug/Babel.php:78
msgid "BBCode::toMarkdown"
msgstr "BBCode::toMarkdown"
-#: src/Module/Debug/Babel.php:98
+#: src/Module/Debug/Babel.php:84
msgid "BBCode::toMarkdown => Markdown::convert (raw HTML)"
msgstr ""
-#: src/Module/Debug/Babel.php:102
+#: src/Module/Debug/Babel.php:88
msgid "BBCode::toMarkdown => Markdown::convert"
msgstr "BBCode::toMarkdown => Markdown::przekształć"
-#: src/Module/Debug/Babel.php:108
+#: src/Module/Debug/Babel.php:94
msgid "BBCode::toMarkdown => Markdown::toBBCode"
msgstr "BBCode::toMarkdown => Markdown::toBBCode"
-#: src/Module/Debug/Babel.php:114
+#: src/Module/Debug/Babel.php:100
msgid "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode"
msgstr "BBCode::toMarkdown => Markdown::przekształć => HTML::toBBCode"
-#: src/Module/Debug/Babel.php:122
+#: src/Module/Debug/Babel.php:108
msgid "Item Body"
msgstr "Element Body"
-#: src/Module/Debug/Babel.php:126
+#: src/Module/Debug/Babel.php:112
msgid "Item Tags"
msgstr "Znaczniki elementu"
-#: src/Module/Debug/Babel.php:132
+#: src/Module/Debug/Babel.php:118
msgid "PageInfo::appendToBody"
msgstr ""
-#: src/Module/Debug/Babel.php:137
+#: src/Module/Debug/Babel.php:123
msgid "PageInfo::appendToBody => BBCode::convert (raw HTML)"
msgstr ""
-#: src/Module/Debug/Babel.php:141
+#: src/Module/Debug/Babel.php:127
msgid "PageInfo::appendToBody => BBCode::convert"
msgstr ""
-#: src/Module/Debug/Babel.php:148
+#: src/Module/Debug/Babel.php:134
msgid "Source input (Diaspora format)"
msgstr "Źródło wejściowe (format Diaspora)"
-#: src/Module/Debug/Babel.php:157
+#: src/Module/Debug/Babel.php:143
msgid "Source input (Markdown)"
msgstr "Wejście źródłowe (Markdown)"
-#: src/Module/Debug/Babel.php:163
+#: src/Module/Debug/Babel.php:149
msgid "Markdown::convert (raw HTML)"
msgstr "Markdown::convert (raw HTML)"
-#: src/Module/Debug/Babel.php:168
+#: src/Module/Debug/Babel.php:154
msgid "Markdown::convert"
msgstr "Markdown::convert"
-#: src/Module/Debug/Babel.php:174
+#: src/Module/Debug/Babel.php:160
msgid "Markdown::toBBCode"
msgstr "Markdown::toBBCode"
-#: src/Module/Debug/Babel.php:181
+#: src/Module/Debug/Babel.php:167
msgid "Raw HTML input"
msgstr "Surowe wejście HTML"
-#: src/Module/Debug/Babel.php:186
+#: src/Module/Debug/Babel.php:172
msgid "HTML Input"
msgstr "Wejście HTML"
-#: src/Module/Debug/Babel.php:193
+#: src/Module/Debug/Babel.php:179
msgid "HTML Purified (raw)"
msgstr "Oczyszczony HTML (surowy)"
-#: src/Module/Debug/Babel.php:198
+#: src/Module/Debug/Babel.php:184
msgid "HTML Purified (hex)"
msgstr "Oczyszczony HTML (szesnastkowy)"
-#: src/Module/Debug/Babel.php:203
+#: src/Module/Debug/Babel.php:189
msgid "HTML Purified"
msgstr "Oczyszczony HTML"
-#: src/Module/Debug/Babel.php:209
+#: src/Module/Debug/Babel.php:195
msgid "HTML::toBBCode"
msgstr "HTML::toBBCode"
-#: src/Module/Debug/Babel.php:215
+#: src/Module/Debug/Babel.php:201
msgid "HTML::toBBCode => BBCode::convert"
msgstr "HTML::toBBCode => BBCode::convert"
-#: src/Module/Debug/Babel.php:220
+#: src/Module/Debug/Babel.php:206
msgid "HTML::toBBCode => BBCode::convert (raw HTML)"
msgstr "HTML::toBBCode => BBCode::convert (raw HTML)"
-#: src/Module/Debug/Babel.php:226
+#: src/Module/Debug/Babel.php:212
msgid "HTML::toBBCode => BBCode::toPlaintext"
msgstr ""
-#: src/Module/Debug/Babel.php:232
+#: src/Module/Debug/Babel.php:218
msgid "HTML::toMarkdown"
msgstr "HTML::toMarkdown"
-#: src/Module/Debug/Babel.php:238
+#: src/Module/Debug/Babel.php:224
msgid "HTML::toPlaintext"
msgstr "HTML::toPlaintext"
-#: src/Module/Debug/Babel.php:244
+#: src/Module/Debug/Babel.php:230
msgid "HTML::toPlaintext (compact)"
msgstr ""
-#: src/Module/Debug/Babel.php:262
+#: src/Module/Debug/Babel.php:248
msgid "Decoded post"
msgstr "Odkodowany wpis"
-#: src/Module/Debug/Babel.php:283
+#: src/Module/Debug/Babel.php:269
msgid "Post array before expand entities"
msgstr ""
-#: src/Module/Debug/Babel.php:290
+#: src/Module/Debug/Babel.php:276
msgid "Post converted"
msgstr "Wpis przekonwertowany"
-#: src/Module/Debug/Babel.php:295
+#: src/Module/Debug/Babel.php:281
msgid "Converted body"
msgstr ""
-#: src/Module/Debug/Babel.php:301
+#: src/Module/Debug/Babel.php:287
msgid "Twitter addon is absent from the addon/ folder."
msgstr "Dodatek do Twittera jest nieobecny w katalogu addon/."
-#: src/Module/Debug/Babel.php:311
+#: src/Module/Debug/Babel.php:297
msgid "Babel Diagnostic"
msgstr "Diagnostyka Babel"
-#: src/Module/Debug/Babel.php:313
+#: src/Module/Debug/Babel.php:299
msgid "Source text"
msgstr "Tekst źródłowy"
-#: src/Module/Debug/Babel.php:314
+#: src/Module/Debug/Babel.php:300
msgid "BBCode"
msgstr "BBCode"
-#: src/Module/Debug/Babel.php:316
+#: src/Module/Debug/Babel.php:302
msgid "Markdown"
msgstr "Markdown"
-#: src/Module/Debug/Babel.php:317
+#: src/Module/Debug/Babel.php:303
msgid "HTML"
msgstr "HTML"
-#: src/Module/Debug/Babel.php:319
+#: src/Module/Debug/Babel.php:305
msgid "Twitter Source / Tweet URL (requires API key)"
msgstr "Źródło Twitter / URL Tweeta (wymaga klucza API)"
-#: src/Module/Debug/Feed.php:53 src/Module/Filer/SaveTag.php:47
-#: src/Module/Settings/Profile/Index.php:180
+#: src/Module/Debug/Feed.php:39 src/Module/Filer/SaveTag.php:33
+#: src/Module/Settings/Profile/Index.php:166
msgid "You must be logged in to use this module"
msgstr "Musisz być zalogowany, aby korzystać z tego modułu"
-#: src/Module/Debug/Feed.php:78
+#: src/Module/Debug/Feed.php:64
msgid "Source URL"
msgstr "Źródłowy adres URL"
-#: src/Module/Debug/Localtime.php:49
+#: src/Module/Debug/Localtime.php:35
msgid "Time Conversion"
msgstr "Zmiana czasu"
-#: src/Module/Debug/Localtime.php:50
+#: src/Module/Debug/Localtime.php:36
msgid ""
"Friendica provides this service for sharing events with other networks and "
"friends in unknown timezones."
msgstr "Friendica udostępnia tę usługę do udostępniania wydarzeń innym sieciom i znajomym w nieznanych strefach czasowych."
-#: src/Module/Debug/Localtime.php:51
+#: src/Module/Debug/Localtime.php:37
#, php-format
msgid "UTC time: %s"
msgstr "Czas UTC %s"
-#: src/Module/Debug/Localtime.php:54
+#: src/Module/Debug/Localtime.php:40
#, php-format
msgid "Current timezone: %s"
msgstr "Obecna strefa czasowa: %s"
-#: src/Module/Debug/Localtime.php:58
+#: src/Module/Debug/Localtime.php:44
#, php-format
msgid "Converted localtime: %s"
msgstr "Zmień strefę czasową: %s"
-#: src/Module/Debug/Localtime.php:62
+#: src/Module/Debug/Localtime.php:48
msgid "Please select your timezone:"
msgstr "Wybierz swoją strefę czasową:"
-#: src/Module/Debug/Probe.php:38 src/Module/Debug/WebFinger.php:37
+#: src/Module/Debug/Probe.php:24 src/Module/Debug/WebFinger.php:23
msgid "Only logged in users are permitted to perform a probing."
msgstr "Tylko zalogowani użytkownicy mogą wykonywać sondowanie."
-#: src/Module/Debug/Probe.php:52
+#: src/Module/Debug/Probe.php:38
msgid "Probe Diagnostic"
msgstr "Diagnostyka Probe"
-#: src/Module/Debug/Probe.php:53
+#: src/Module/Debug/Probe.php:39
msgid "Output"
msgstr "Wyjście"
-#: src/Module/Debug/Probe.php:56
+#: src/Module/Debug/Probe.php:42
msgid "Lookup address"
msgstr "Wyszukaj adres"
-#: src/Module/Debug/WebFinger.php:50
+#: src/Module/Debug/WebFinger.php:36
msgid "Webfinger Diagnostic"
msgstr "Diagnostyka Webfinger"
-#: src/Module/Debug/WebFinger.php:52
+#: src/Module/Debug/WebFinger.php:38
msgid "Lookup address:"
msgstr "Wyszukaj adres:"
-#: src/Module/Directory.php:75
+#: src/Module/Directory.php:61
msgid "No entries (some entries may be hidden)."
msgstr "Brak odwiedzin (niektóre odwiedziny mogą być ukryte)."
-#: src/Module/Directory.php:91
+#: src/Module/Directory.php:77
msgid "Find on this site"
msgstr "Znajdź na tej stronie"
-#: src/Module/Directory.php:93
+#: src/Module/Directory.php:79
msgid "Results for:"
msgstr "Wyniki dla:"
-#: src/Module/Directory.php:95
+#: src/Module/Directory.php:81
msgid "Site Directory"
msgstr "Katalog Witryny"
-#: src/Module/Filer/RemoveTag.php:105
+#: src/Module/Filer/RemoveTag.php:91
msgid "Item was not deleted"
msgstr "Element nie został skasowany"
-#: src/Module/Filer/RemoveTag.php:115
+#: src/Module/Filer/RemoveTag.php:101
msgid "Item was not removed"
msgstr "Element nie został usunięty"
-#: src/Module/Filer/SaveTag.php:73
+#: src/Module/Filer/SaveTag.php:59
msgid "- select -"
msgstr "- wybierz -"
-#: src/Module/FriendSuggest.php:82
+#: src/Module/FriendSuggest.php:68
msgid "Suggested contact not found."
msgstr "Nie znaleziono sugerowanego kontaktu."
-#: src/Module/FriendSuggest.php:100
+#: src/Module/FriendSuggest.php:86
msgid "Friend suggestion sent."
msgstr "Wysłana propozycja dodania do znajomych."
-#: src/Module/FriendSuggest.php:137
+#: src/Module/FriendSuggest.php:123
msgid "Suggest Friends"
msgstr "Zaproponuj znajomych"
-#: src/Module/FriendSuggest.php:140
+#: src/Module/FriendSuggest.php:126
#, php-format
msgid "Suggest a friend for %s"
msgstr "Zaproponuj znajomych dla %s"
-#: src/Module/Friendica.php:81
+#: src/Module/Friendica.php:67
msgid "Installed addons/apps:"
msgstr "Zainstalowane dodatki/aplikacje:"
-#: src/Module/Friendica.php:86
+#: src/Module/Friendica.php:72
msgid "No installed addons/apps"
msgstr "Brak zainstalowanych dodatków/aplikacji"
-#: src/Module/Friendica.php:91
+#: src/Module/Friendica.php:77
#, php-format
msgid "Read about the Terms of Service of this node."
msgstr "Przeczytaj o Warunkach świadczenia usług tego węzła."
-#: src/Module/Friendica.php:98
+#: src/Module/Friendica.php:84
msgid "On this server the following remote servers are blocked."
msgstr "Na tym serwerze następujące serwery zdalne są blokowane."
-#: src/Module/Friendica.php:101
-#: src/Module/Moderation/Blocklist/Server/Index.php:87
-#: src/Module/Moderation/Blocklist/Server/Index.php:111
-#: src/Module/Settings/Channels.php:232
+#: src/Module/Friendica.php:87
+#: src/Module/Moderation/Blocklist/Server/Index.php:73
+#: src/Module/Moderation/Blocklist/Server/Index.php:97
+#: src/Module/Settings/Channels.php:218
msgid "Reason for the block"
msgstr "Powód blokowania"
-#: src/Module/Friendica.php:103
+#: src/Module/Friendica.php:89
msgid "Download this list in CSV format"
msgstr ""
-#: src/Module/Friendica.php:117
+#: src/Module/Friendica.php:103
#, php-format
msgid ""
"This is Friendica, version %s that is running at the web location %s. The "
"database version is %s, the post update version is %s."
msgstr "To jest wersja Friendica, %s która działa w lokalizacji internetowej %s. Wersja bazy danych to %s wersja po aktualizacji %s."
-#: src/Module/Friendica.php:122
+#: src/Module/Friendica.php:108
msgid ""
"Please visit Friendi.ca to learn more "
"about the Friendica project."
msgstr "Odwiedź stronę Friendi.ca aby dowiedzieć się więcej o projekcie Friendica."
-#: src/Module/Friendica.php:123
+#: src/Module/Friendica.php:109
msgid "Bug reports and issues: please visit"
msgstr "Raporty o błędach i problemy: odwiedź stronę"
-#: src/Module/Friendica.php:123
+#: src/Module/Friendica.php:109
msgid "the bugtracker at github"
msgstr "śledzenie błędów na github"
-#: src/Module/Friendica.php:124
+#: src/Module/Friendica.php:110
msgid "Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca"
msgstr "Propozycje, pochwały itd. – napisz e-mail do „info” małpa „friendi” - kropka - „ca”"
-#: src/Module/HCard.php:45
+#: src/Module/HCard.php:31
msgid "No profile"
msgstr "Brak profilu"
-#: src/Module/HTTPException/MethodNotAllowed.php:31
+#: src/Module/HTTPException/MethodNotAllowed.php:17
msgid "Method Not Allowed."
msgstr "Metoda nie akceptowana."
-#: src/Module/Help.php:60
+#: src/Module/Help.php:46
msgid "Help:"
msgstr "Pomoc:"
-#: src/Module/Home.php:66
+#: src/Module/Home.php:52
#, php-format
msgid "Welcome to %s"
msgstr "Witamy w %s"
-#: src/Module/Install.php:189
+#: src/Module/Install.php:175
msgid "Friendica Communications Server - Setup"
msgstr "Friendica Communications Server - Instalator"
-#: src/Module/Install.php:200
+#: src/Module/Install.php:186
msgid "System check"
msgstr "Sprawdzanie systemu"
-#: src/Module/Install.php:202 src/Module/Install.php:247
-#: src/Module/Install.php:326
+#: src/Module/Install.php:188 src/Module/Install.php:233
+#: src/Module/Install.php:312
msgid "Requirement not satisfied"
msgstr "Wymaganie niespełnione"
-#: src/Module/Install.php:203
+#: src/Module/Install.php:189
msgid "Optional requirement not satisfied"
msgstr "Opcjonalne wymagania niespełnione"
-#: src/Module/Install.php:204
+#: src/Module/Install.php:190
msgid "OK"
msgstr "OK"
-#: src/Module/Install.php:208
+#: src/Module/Install.php:194
msgid "Next"
msgstr "Następny"
-#: src/Module/Install.php:209
+#: src/Module/Install.php:195
msgid "Check again"
msgstr "Sprawdź ponownie"
-#: src/Module/Install.php:222
+#: src/Module/Install.php:208
msgid "Base settings"
msgstr "Ustawienia bazy"
-#: src/Module/Install.php:224
+#: src/Module/Install.php:210
msgid "Base path to installation"
msgstr "Podstawowa ścieżka do instalacji"
-#: src/Module/Install.php:226
+#: src/Module/Install.php:212
msgid ""
"If the system cannot detect the correct path to your installation, enter the"
" correct path here. This setting should only be set if you are using a "
"restricted system and symbolic links to your webroot."
msgstr "Jeśli system nie może wykryć poprawnej ścieżki do instalacji, wprowadź tutaj poprawną ścieżkę. To ustawienie powinno być ustawione tylko wtedy, gdy używasz ograniczonego systemu i dowiązań symbolicznych do twojego webroota."
-#: src/Module/Install.php:229
+#: src/Module/Install.php:215
msgid "The Friendica system URL"
msgstr ""
-#: src/Module/Install.php:231
+#: src/Module/Install.php:217
msgid ""
"Overwrite this field in case the system URL determination isn't right, "
"otherwise leave it as is."
msgstr ""
-#: src/Module/Install.php:242
+#: src/Module/Install.php:228
msgid "Database connection"
msgstr "Połączenie z bazą danych"
-#: src/Module/Install.php:243
+#: src/Module/Install.php:229
msgid ""
"In order to install Friendica we need to know how to connect to your "
"database."
msgstr "W celu zainstalowania Friendica musimy wiedzieć jak połączyć się z twoją bazą danych."
-#: src/Module/Install.php:244
+#: src/Module/Install.php:230
msgid ""
"Please contact your hosting provider or site administrator if you have "
"questions about these settings."
msgstr "Proszę skontaktuj się ze swoim dostawcą usług hostingowych bądź administratorem strony jeśli masz pytania co do tych ustawień ."
-#: src/Module/Install.php:245
+#: src/Module/Install.php:231
msgid ""
"The database you specify below should already exist. If it does not, please "
"create it before continuing."
msgstr "Wymieniona przez Ciebie baza danych powinna już istnieć. Jeżeli nie, utwórz ją przed kontynuacją."
-#: src/Module/Install.php:252
+#: src/Module/Install.php:238
msgid "Database Server Name"
msgstr "Nazwa serwera bazy danych"
-#: src/Module/Install.php:257
+#: src/Module/Install.php:243
msgid "Database Login Name"
msgstr "Nazwa użytkownika bazy danych"
-#: src/Module/Install.php:263
+#: src/Module/Install.php:249
msgid "Database Login Password"
msgstr "Hasło logowania do bazy danych"
-#: src/Module/Install.php:265
+#: src/Module/Install.php:251
msgid "For security reasons the password must not be empty"
msgstr "Ze względów bezpieczeństwa hasło nie może być puste"
-#: src/Module/Install.php:268
+#: src/Module/Install.php:254
msgid "Database Name"
msgstr "Nazwa bazy danych"
-#: src/Module/Install.php:272 src/Module/Install.php:300
+#: src/Module/Install.php:258 src/Module/Install.php:286
msgid "Please select a default timezone for your website"
msgstr "Proszę wybrać domyślną strefę czasową dla swojej strony"
-#: src/Module/Install.php:287
+#: src/Module/Install.php:273
msgid "Site settings"
msgstr "Ustawienia strony"
-#: src/Module/Install.php:295
+#: src/Module/Install.php:281
msgid "Site administrator email address"
msgstr "Adres e-mail administratora strony"
-#: src/Module/Install.php:297
+#: src/Module/Install.php:283
msgid ""
"Your account email address must match this in order to use the web admin "
"panel."
msgstr "Adres e-mail konta musi pasować do tego, aby móc korzystać z panelu administracyjnego."
-#: src/Module/Install.php:304
+#: src/Module/Install.php:290
msgid "System Language:"
msgstr "Język systemu:"
-#: src/Module/Install.php:306
+#: src/Module/Install.php:292
msgid ""
"Set the default language for your Friendica installation interface and to "
"send emails."
msgstr "Ustaw domyślny język dla interfejsu instalacyjnego Friendica i wysyłaj e-maile."
-#: src/Module/Install.php:318
+#: src/Module/Install.php:304
msgid "Your Friendica site database has been installed."
msgstr "Twoja baza danych witryny Friendica została zainstalowana."
-#: src/Module/Install.php:328
+#: src/Module/Install.php:314
msgid "Installation finished"
msgstr "Instalacja zakończona"
-#: src/Module/Install.php:348
+#: src/Module/Install.php:334
msgid "The server domain pattern syntax is case-insensitive shell wildcard, comprising the following special characters:
\n" "Składnia wzorca domeny serwera to symbol wieloznaczny powłoki bez rozróżniania wielkości liter, zawierający następujące znaki specjalne:
\n*
: Dowolna liczba znaków?
: Dowolny pojedynczy znakThis file can be downloaded from the /friendica
path of any "
"Friendica server.
debug.store_source
config key is set in "
"config/local.config.php
for future items to have sources."
msgstr ""
-#: src/Module/Moderation/Item/Source.php:98
+#: src/Module/Moderation/Item/Source.php:84
msgid "Item Guid"
msgstr "Element Guid"
-#: src/Module/Moderation/Report/Create.php:95
+#: src/Module/Moderation/Report/Create.php:81
msgid "Contact not found or their server is already blocked on this node."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:136
+#: src/Module/Moderation/Report/Create.php:122
msgid "Please login to access this page."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:165
-#: src/Module/Moderation/Report/Create.php:180
-#: src/Module/Moderation/Report/Create.php:208
-#: src/Module/Moderation/Report/Create.php:260
-#: src/Module/Moderation/Report/Create.php:279
+#: src/Module/Moderation/Report/Create.php:151
+#: src/Module/Moderation/Report/Create.php:166
+#: src/Module/Moderation/Report/Create.php:194
+#: src/Module/Moderation/Report/Create.php:246
+#: src/Module/Moderation/Report/Create.php:265
msgid "Create Moderation Report"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:166
+#: src/Module/Moderation/Report/Create.php:152
msgid "Pick Contact"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:167
+#: src/Module/Moderation/Report/Create.php:153
msgid ""
"Please enter below the contact address or profile URL you would like to "
"create a moderation report about."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:171
+#: src/Module/Moderation/Report/Create.php:157
msgid "Contact address/URL"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:181
+#: src/Module/Moderation/Report/Create.php:167
msgid "Pick Category"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:182
+#: src/Module/Moderation/Report/Create.php:168
msgid "Please pick below the category of your report."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:186
-#: src/Module/Moderation/Report/Create.php:311
+#: src/Module/Moderation/Report/Create.php:172
+#: src/Module/Moderation/Report/Create.php:297
msgid "Spam"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:186
+#: src/Module/Moderation/Report/Create.php:172
msgid ""
"This contact is publishing many repeated/overly long posts/replies or "
"advertising their product/websites in otherwise irrelevant conversations."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:187
-#: src/Module/Moderation/Report/Create.php:312
+#: src/Module/Moderation/Report/Create.php:173
+#: src/Module/Moderation/Report/Create.php:298
msgid "Illegal Content"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:187
+#: src/Module/Moderation/Report/Create.php:173
msgid ""
"This contact is publishing content that is considered illegal in this node's"
" hosting juridiction."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:188
-#: src/Module/Moderation/Report/Create.php:313
+#: src/Module/Moderation/Report/Create.php:174
+#: src/Module/Moderation/Report/Create.php:299
msgid "Community Safety"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:188
+#: src/Module/Moderation/Report/Create.php:174
msgid ""
"This contact aggravated you or other people, by being provocative or "
"insensitive, intentionally or not. This includes disclosing people's private"
@@ -8610,12 +8605,12 @@ msgid ""
"replies."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:189
-#: src/Module/Moderation/Report/Create.php:314
+#: src/Module/Moderation/Report/Create.php:175
+#: src/Module/Moderation/Report/Create.php:300
msgid "Unwanted Content/Behavior"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:189
+#: src/Module/Moderation/Report/Create.php:175
msgid ""
"This contact has repeatedly published content irrelevant to the node's theme"
" or is openly criticizing the node's administration/moderation without "
@@ -8623,89 +8618,89 @@ msgid ""
"nitpicking on a sensitive topic."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:190
-#: src/Module/Moderation/Report/Create.php:315
+#: src/Module/Moderation/Report/Create.php:176
+#: src/Module/Moderation/Report/Create.php:301
msgid "Rules Violation"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:190
+#: src/Module/Moderation/Report/Create.php:176
msgid ""
"This contact violated one or more rules of this node. You will be able to "
"pick which one(s) in the next step."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:191
+#: src/Module/Moderation/Report/Create.php:177
msgid ""
"Please elaborate below why you submitted this report. The more details you "
"provide, the better your report can be handled."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:193
+#: src/Module/Moderation/Report/Create.php:179
msgid "Additional Information"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:193
+#: src/Module/Moderation/Report/Create.php:179
msgid ""
"Please provide any additional information relevant to this particular "
"report. You will be able to attach posts by this contact in the next step, "
"but any context is welcome."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:209
+#: src/Module/Moderation/Report/Create.php:195
msgid "Pick Rules"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:210
+#: src/Module/Moderation/Report/Create.php:196
msgid "Please pick below the node rules you believe this contact violated."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:261
+#: src/Module/Moderation/Report/Create.php:247
msgid "Pick Posts"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:262
+#: src/Module/Moderation/Report/Create.php:248
msgid "Please optionally pick posts to attach to your report."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:281
+#: src/Module/Moderation/Report/Create.php:267
msgid "Submit Report"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:282
+#: src/Module/Moderation/Report/Create.php:268
msgid "Further Action"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:283
+#: src/Module/Moderation/Report/Create.php:269
msgid ""
"You can also perform one of the following action on the contact you "
"reported:"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:291
+#: src/Module/Moderation/Report/Create.php:277
msgid "Nothing"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:292
+#: src/Module/Moderation/Report/Create.php:278
msgid "Collapse contact"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:292
+#: src/Module/Moderation/Report/Create.php:278
msgid ""
"Their posts and replies will keep appearing in your Network page but their "
"content will be collapsed by default."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:293
+#: src/Module/Moderation/Report/Create.php:279
msgid ""
"Their posts won't appear in your Network page anymore, but their replies can"
" appear in forum threads. They still can follow you."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:294
+#: src/Module/Moderation/Report/Create.php:280
msgid "Block contact"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:294
+#: src/Module/Moderation/Report/Create.php:280
msgid ""
"Their posts won't appear in your Network page anymore, but their replies can"
" appear in forum threads, with their content collapsed by default. They "
@@ -8713,51 +8708,51 @@ msgid ""
"means."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:297
+#: src/Module/Moderation/Report/Create.php:283
msgid "Forward report"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:297
+#: src/Module/Moderation/Report/Create.php:283
msgid "Would you ike to forward this report to the remote server?"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:330
+#: src/Module/Moderation/Report/Create.php:316
msgid "1. Pick a contact"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:331
+#: src/Module/Moderation/Report/Create.php:317
msgid "2. Pick a category"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:332
+#: src/Module/Moderation/Report/Create.php:318
msgid "2a. Pick rules"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:333
+#: src/Module/Moderation/Report/Create.php:319
msgid "2b. Add comment"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:334
+#: src/Module/Moderation/Report/Create.php:320
msgid "3. Pick posts"
msgstr ""
-#: src/Module/Moderation/Reports.php:111
+#: src/Module/Moderation/Reports.php:97
msgid "List of reports"
msgstr ""
-#: src/Module/Moderation/Reports.php:112
+#: src/Module/Moderation/Reports.php:98
msgid "This page display reports created by our or remote users."
msgstr ""
-#: src/Module/Moderation/Reports.php:113
+#: src/Module/Moderation/Reports.php:99
msgid "No report exists at this node."
msgstr ""
-#: src/Module/Moderation/Reports.php:116
+#: src/Module/Moderation/Reports.php:102
msgid "Category"
msgstr ""
-#: src/Module/Moderation/Reports.php:120
+#: src/Module/Moderation/Reports.php:106
#, php-format
msgid "%s total report"
msgid_plural "%s total reports"
@@ -8766,24 +8761,24 @@ msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
-#: src/Module/Moderation/Reports.php:123
+#: src/Module/Moderation/Reports.php:109
msgid "URL of the reported contact."
msgstr ""
-#: src/Module/Moderation/Summary.php:57 src/Module/Settings/Account.php:436
+#: src/Module/Moderation/Summary.php:43 src/Module/Settings/Account.php:422
msgid "Channel Relay"
msgstr ""
-#: src/Module/Moderation/Summary.php:77
+#: src/Module/Moderation/Summary.php:63
msgid "Registered users"
msgstr "Zarejestrowani użytkownicy"
-#: src/Module/Moderation/Summary.php:79
+#: src/Module/Moderation/Summary.php:65
msgid "Pending registrations"
msgstr "Oczekujące rejestracje"
-#: src/Module/Moderation/Users/Active.php:43
-#: src/Module/Moderation/Users/Index.php:43
+#: src/Module/Moderation/Users/Active.php:29
+#: src/Module/Moderation/Users/Index.php:29
#, php-format
msgid "%s user blocked"
msgid_plural "%s users blocked"
@@ -8792,18 +8787,18 @@ msgstr[1] "%s użytkowników zablokowanych"
msgstr[2] "%s użytkowników zablokowanych"
msgstr[3] "%s użytkownicy zablokowani"
-#: src/Module/Moderation/Users/Active.php:51
-#: src/Module/Moderation/Users/Active.php:85
-#: src/Module/Moderation/Users/Blocked.php:51
-#: src/Module/Moderation/Users/Blocked.php:85
-#: src/Module/Moderation/Users/Index.php:58
-#: src/Module/Moderation/Users/Index.php:92
+#: src/Module/Moderation/Users/Active.php:37
+#: src/Module/Moderation/Users/Active.php:71
+#: src/Module/Moderation/Users/Blocked.php:37
+#: src/Module/Moderation/Users/Blocked.php:71
+#: src/Module/Moderation/Users/Index.php:44
+#: src/Module/Moderation/Users/Index.php:78
msgid "You can't remove yourself"
msgstr "Nie możesz usunąć siebie"
-#: src/Module/Moderation/Users/Active.php:55
-#: src/Module/Moderation/Users/Blocked.php:55
-#: src/Module/Moderation/Users/Index.php:62
+#: src/Module/Moderation/Users/Active.php:41
+#: src/Module/Moderation/Users/Blocked.php:41
+#: src/Module/Moderation/Users/Index.php:48
#, php-format
msgid "%s user deleted"
msgid_plural "%s users deleted"
@@ -8812,88 +8807,88 @@ msgstr[1] "usunięto %s użytkowników"
msgstr[2] "usunięto %s użytkowników"
msgstr[3] "%s usuniętych użytkowników"
-#: src/Module/Moderation/Users/Active.php:83
-#: src/Module/Moderation/Users/Blocked.php:83
-#: src/Module/Moderation/Users/Index.php:90
+#: src/Module/Moderation/Users/Active.php:69
+#: src/Module/Moderation/Users/Blocked.php:69
+#: src/Module/Moderation/Users/Index.php:76
#, php-format
msgid "User \"%s\" deleted"
msgstr "Użytkownik \"%s\" usunięty"
-#: src/Module/Moderation/Users/Active.php:93
-#: src/Module/Moderation/Users/Index.php:100
+#: src/Module/Moderation/Users/Active.php:79
+#: src/Module/Moderation/Users/Index.php:86
#, php-format
msgid "User \"%s\" blocked"
msgstr "Użytkownik \"%s\" zablokowany"
-#: src/Module/Moderation/Users/Active.php:126
-#: src/Module/Moderation/Users/Blocked.php:126
-#: src/Module/Moderation/Users/Deleted.php:83
-#: src/Module/Moderation/Users/Index.php:140
-#: src/Module/Moderation/Users/Index.php:160
+#: src/Module/Moderation/Users/Active.php:112
+#: src/Module/Moderation/Users/Blocked.php:112
+#: src/Module/Moderation/Users/Deleted.php:69
+#: src/Module/Moderation/Users/Index.php:126
+#: src/Module/Moderation/Users/Index.php:146
msgid "Register date"
msgstr "Data rejestracji"
-#: src/Module/Moderation/Users/Active.php:126
-#: src/Module/Moderation/Users/Blocked.php:126
-#: src/Module/Moderation/Users/Deleted.php:83
-#: src/Module/Moderation/Users/Index.php:140
-#: src/Module/Moderation/Users/Index.php:160
+#: src/Module/Moderation/Users/Active.php:112
+#: src/Module/Moderation/Users/Blocked.php:112
+#: src/Module/Moderation/Users/Deleted.php:69
+#: src/Module/Moderation/Users/Index.php:126
+#: src/Module/Moderation/Users/Index.php:146
msgid "Last login"
msgstr "Ostatnie logowanie"
-#: src/Module/Moderation/Users/Active.php:126
-#: src/Module/Moderation/Users/Blocked.php:126
-#: src/Module/Moderation/Users/Deleted.php:83
-#: src/Module/Moderation/Users/Index.php:140
-#: src/Module/Moderation/Users/Index.php:160
+#: src/Module/Moderation/Users/Active.php:112
+#: src/Module/Moderation/Users/Blocked.php:112
+#: src/Module/Moderation/Users/Deleted.php:69
+#: src/Module/Moderation/Users/Index.php:126
+#: src/Module/Moderation/Users/Index.php:146
msgid "Last public item"
msgstr "Ostatni element publiczny"
-#: src/Module/Moderation/Users/Active.php:134
+#: src/Module/Moderation/Users/Active.php:120
msgid "Active Accounts"
msgstr "Aktywne konta"
-#: src/Module/Moderation/Users/Active.php:138
-#: src/Module/Moderation/Users/Blocked.php:137
-#: src/Module/Moderation/Users/Index.php:153
+#: src/Module/Moderation/Users/Active.php:124
+#: src/Module/Moderation/Users/Blocked.php:123
+#: src/Module/Moderation/Users/Index.php:139
msgid "User blocked"
msgstr "Użytkownik zablokowany"
-#: src/Module/Moderation/Users/Active.php:139
-#: src/Module/Moderation/Users/Blocked.php:139
-#: src/Module/Moderation/Users/Index.php:155
+#: src/Module/Moderation/Users/Active.php:125
+#: src/Module/Moderation/Users/Blocked.php:125
+#: src/Module/Moderation/Users/Index.php:141
msgid "Site admin"
msgstr "Administracja stroną"
-#: src/Module/Moderation/Users/Active.php:140
-#: src/Module/Moderation/Users/Blocked.php:140
-#: src/Module/Moderation/Users/Index.php:156
+#: src/Module/Moderation/Users/Active.php:126
+#: src/Module/Moderation/Users/Blocked.php:126
+#: src/Module/Moderation/Users/Index.php:142
msgid "Account expired"
msgstr "Konto wygasło"
-#: src/Module/Moderation/Users/Active.php:141
-#: src/Module/Moderation/Users/Index.php:159
+#: src/Module/Moderation/Users/Active.php:127
+#: src/Module/Moderation/Users/Index.php:145
msgid "Create a new user"
msgstr "Utwórz nowego użytkownika"
-#: src/Module/Moderation/Users/Active.php:147
-#: src/Module/Moderation/Users/Blocked.php:146
-#: src/Module/Moderation/Users/Index.php:165
+#: src/Module/Moderation/Users/Active.php:133
+#: src/Module/Moderation/Users/Blocked.php:132
+#: src/Module/Moderation/Users/Index.php:151
msgid ""
"Selected users will be deleted!\\n\\nEverything these users had posted on "
"this site will be permanently deleted!\\n\\nAre you sure?"
msgstr "Zaznaczeni użytkownicy zostaną usunięci!\\n\\n Wszystko co zamieścili na tej stronie będzie trwale skasowane!\\n\\n Jesteś pewien?"
-#: src/Module/Moderation/Users/Active.php:148
-#: src/Module/Moderation/Users/Blocked.php:147
-#: src/Module/Moderation/Users/Index.php:166
+#: src/Module/Moderation/Users/Active.php:134
+#: src/Module/Moderation/Users/Blocked.php:133
+#: src/Module/Moderation/Users/Index.php:152
msgid ""
"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
"site will be permanently deleted!\\n\\nAre you sure?"
msgstr "Użytkownik {0} zostanie usunięty!\\n\\n Wszystko co zamieścił na tej stronie będzie trwale skasowane!\\n\\n Jesteś pewien?"
-#: src/Module/Moderation/Users/Blocked.php:43
-#: src/Module/Moderation/Users/Index.php:50
+#: src/Module/Moderation/Users/Blocked.php:29
+#: src/Module/Moderation/Users/Index.php:36
#, php-format
msgid "%s user unblocked"
msgid_plural "%s users unblocked"
@@ -8902,54 +8897,54 @@ msgstr[1] "%s użytkowników odblokowanych"
msgstr[2] "%s użytkowników odblokowanych"
msgstr[3] "%s użytkowników odblokowanych"
-#: src/Module/Moderation/Users/Blocked.php:92
-#: src/Module/Moderation/Users/Index.php:106
+#: src/Module/Moderation/Users/Blocked.php:78
+#: src/Module/Moderation/Users/Index.php:92
#, php-format
msgid "User \"%s\" unblocked"
msgstr "Użytkownik \"%s\" odblokowany"
-#: src/Module/Moderation/Users/Blocked.php:134
+#: src/Module/Moderation/Users/Blocked.php:120
msgid "Blocked Users"
msgstr "Zablokowani użytkownicy"
-#: src/Module/Moderation/Users/Create.php:62
+#: src/Module/Moderation/Users/Create.php:48
msgid "New User"
msgstr "Nowy użytkownik"
-#: src/Module/Moderation/Users/Create.php:63
+#: src/Module/Moderation/Users/Create.php:49
msgid "Add User"
msgstr "Dodaj użytkownika"
-#: src/Module/Moderation/Users/Create.php:70
+#: src/Module/Moderation/Users/Create.php:56
msgid "Name of the new user."
msgstr "Nazwa nowego użytkownika."
-#: src/Module/Moderation/Users/Create.php:71
+#: src/Module/Moderation/Users/Create.php:57
msgid "Nickname"
msgstr "Pseudonim"
-#: src/Module/Moderation/Users/Create.php:71
+#: src/Module/Moderation/Users/Create.php:57
msgid "Nickname of the new user."
msgstr "Pseudonim nowego użytkownika."
-#: src/Module/Moderation/Users/Create.php:72
+#: src/Module/Moderation/Users/Create.php:58
msgid "Email address of the new user."
msgstr "Adres email nowego użytkownika."
-#: src/Module/Moderation/Users/Deleted.php:81
+#: src/Module/Moderation/Users/Deleted.php:67
msgid "Users awaiting permanent deletion"
msgstr "Użytkownicy oczekujący na trwałe usunięcie"
-#: src/Module/Moderation/Users/Deleted.php:83
-#: src/Module/Moderation/Users/Index.php:160
+#: src/Module/Moderation/Users/Deleted.php:69
+#: src/Module/Moderation/Users/Index.php:146
msgid "Permanent deletion"
msgstr "Trwałe usunięcie"
-#: src/Module/Moderation/Users/Index.php:150
+#: src/Module/Moderation/Users/Index.php:136
msgid "User waiting for permanent deletion"
msgstr "Użytkownik czekający na trwałe usunięcie"
-#: src/Module/Moderation/Users/Pending.php:44
+#: src/Module/Moderation/Users/Pending.php:30
#, php-format
msgid "%s user approved"
msgid_plural "%s users approved"
@@ -8958,7 +8953,7 @@ msgstr[1] "%s użytkowników zatwierdzonych"
msgstr[2] "%s użytkowników zatwierdzonych"
msgstr[3] "%s użytkowników zatwierdzonych"
-#: src/Module/Moderation/Users/Pending.php:51
+#: src/Module/Moderation/Users/Pending.php:37
#, php-format
msgid "%s registration revoked"
msgid_plural "%s registrations revoked"
@@ -8967,420 +8962,406 @@ msgstr[1] "%s rejestracje cofnięto"
msgstr[2] "%s rejestracji cofnięto"
msgstr[3] "%s rejestracji cofnięto "
-#: src/Module/Moderation/Users/Pending.php:76
+#: src/Module/Moderation/Users/Pending.php:62
msgid "Account approved."
msgstr "Konto zatwierdzone."
-#: src/Module/Moderation/Users/Pending.php:82
+#: src/Module/Moderation/Users/Pending.php:68
msgid "Registration revoked"
msgstr "Rejestracja odwołana"
-#: src/Module/Moderation/Users/Pending.php:97
+#: src/Module/Moderation/Users/Pending.php:83
msgid "User registrations awaiting review"
msgstr "Rejestracje użytkowników oczekujące na sprawdzenie"
-#: src/Module/Moderation/Users/Pending.php:99
+#: src/Module/Moderation/Users/Pending.php:85
msgid "Request date"
msgstr "Data prośby"
-#: src/Module/Moderation/Users/Pending.php:100
+#: src/Module/Moderation/Users/Pending.php:86
msgid "No registrations."
msgstr "Brak rejestracji."
-#: src/Module/Moderation/Users/Pending.php:101
+#: src/Module/Moderation/Users/Pending.php:87
msgid "Note from the user"
msgstr "Uwaga od użytkownika"
-#: src/Module/Moderation/Users/Pending.php:103
+#: src/Module/Moderation/Users/Pending.php:89
msgid "Deny"
msgstr "Odmów"
-#: src/Module/Notifications/Introductions.php:105
+#: src/Module/Notifications/Introductions.php:91
msgid "Show Ignored Requests"
msgstr "Pokaż ignorowane żądania"
-#: src/Module/Notifications/Introductions.php:105
+#: src/Module/Notifications/Introductions.php:91
msgid "Hide Ignored Requests"
msgstr "Ukryj zignorowane prośby"
-#: src/Module/Notifications/Introductions.php:121
-#: src/Module/Notifications/Introductions.php:184
+#: src/Module/Notifications/Introductions.php:107
+#: src/Module/Notifications/Introductions.php:170
msgid "Notification type:"
msgstr "Typ powiadomienia:"
-#: src/Module/Notifications/Introductions.php:124
+#: src/Module/Notifications/Introductions.php:110
msgid "Suggested by:"
msgstr "Sugerowany przez:"
-#: src/Module/Notifications/Introductions.php:149
+#: src/Module/Notifications/Introductions.php:135
msgid "Claims to be known to you: "
msgstr "Twierdzi, że go/ją znasz: "
-#: src/Module/Notifications/Introductions.php:158
+#: src/Module/Notifications/Introductions.php:144
msgid "Shall your connection be bidirectional or not?"
msgstr "Czy twoje połączenie ma być dwukierunkowe, czy nie?"
-#: src/Module/Notifications/Introductions.php:159
+#: src/Module/Notifications/Introductions.php:145
#, php-format
msgid ""
"Accepting %s as a friend allows %s to subscribe to your posts, and you will "
"also receive updates from them in your news feed."
msgstr "Przyjmowanie %s jako znajomego pozwala %s zasubskrybować twoje posty, a także otrzymywać od nich aktualizacje w swoim kanale wiadomości."
-#: src/Module/Notifications/Introductions.php:160
+#: src/Module/Notifications/Introductions.php:146
#, php-format
msgid ""
"Accepting %s as a subscriber allows them to subscribe to your posts, but you"
" will not receive updates from them in your news feed."
msgstr "Zaakceptowanie %s jako subskrybenta umożliwia im subskrybowanie Twoich postów, ale nie otrzymasz od nich aktualizacji w swoim kanale wiadomości."
-#: src/Module/Notifications/Introductions.php:162
+#: src/Module/Notifications/Introductions.php:148
msgid "Friend"
msgstr "Znajomy"
-#: src/Module/Notifications/Introductions.php:163
+#: src/Module/Notifications/Introductions.php:149
msgid "Subscriber"
msgstr "Subskrybent"
-#: src/Module/Notifications/Introductions.php:222
+#: src/Module/Notifications/Introductions.php:208
msgid "No introductions."
msgstr "Brak dostępu."
-#: src/Module/Notifications/Introductions.php:223
-#: src/Module/Notifications/Notifications.php:141
+#: src/Module/Notifications/Introductions.php:209
+#: src/Module/Notifications/Notifications.php:127
#, php-format
msgid "No more %s notifications."
msgstr "Brak kolejnych %s powiadomień."
-#: src/Module/Notifications/Notification.php:135
+#: src/Module/Notifications/Notification.php:121
msgid "You must be logged in to show this page."
msgstr "Musisz być zalogowany, aby zobaczyć tę stronę."
-#: src/Module/Notifications/Notifications.php:66
+#: src/Module/Notifications/Notifications.php:52
msgid "Network Notifications"
msgstr "Powiadomienia sieciowe"
-#: src/Module/Notifications/Notifications.php:72
+#: src/Module/Notifications/Notifications.php:58
msgid "System Notifications"
msgstr "Powiadomienia systemowe"
-#: src/Module/Notifications/Notifications.php:78
+#: src/Module/Notifications/Notifications.php:64
msgid "Personal Notifications"
msgstr "Prywatne powiadomienia"
-#: src/Module/Notifications/Notifications.php:84
+#: src/Module/Notifications/Notifications.php:70
msgid "Home Notifications"
msgstr "Powiadomienia domowe"
-#: src/Module/Notifications/Notifications.php:146
+#: src/Module/Notifications/Notifications.php:132
msgid "Show unread"
msgstr "Pokaż nieprzeczytane"
-#: src/Module/Notifications/Ping.php:220
+#: src/Module/Notifications/Ping.php:206
msgid "{0} requested registration"
msgstr "{0} wymagana rejestracja"
-#: src/Module/Notifications/Ping.php:229
+#: src/Module/Notifications/Ping.php:215
#, php-format
msgid "{0} and %d others requested registration"
msgstr "{0} i %d innych poprosili o rejestrację"
-#: src/Module/OAuth/Acknowledge.php:51
+#: src/Module/OAuth/Acknowledge.php:37
msgid "Authorize application connection"
msgstr "Autoryzacja połączenia aplikacji"
-#: src/Module/OAuth/Acknowledge.php:53
+#: src/Module/OAuth/Acknowledge.php:39
msgid ""
"Do you want to authorize this application to access your posts and contacts,"
" and/or create new posts for you?"
msgstr "Czy chcesz zezwolić tej aplikacji na dostęp do swoich postów i kontaktów i/lub tworzenie nowych postów?"
-#: src/Module/OAuth/Authorize.php:54
+#: src/Module/OAuth/Authorize.php:40
msgid "Unsupported or missing response type"
msgstr "Nieobsługiwany lub brakujący typ odpowiedzi"
-#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:75
+#: src/Module/OAuth/Authorize.php:45 src/Module/OAuth/Token.php:61
msgid "Incomplete request data"
msgstr "Niekompletne dane żądania"
-#: src/Module/OAuth/Authorize.php:106
+#: src/Module/OAuth/Authorize.php:92
#, php-format
msgid ""
"Please copy the following authentication code into your application and "
"close this window: %s"
msgstr "Skopiuj następujący kod uwierzytelniający do swojej aplikacji i zamknij to okno: %s"
-#: src/Module/OAuth/Token.php:80
+#: src/Module/OAuth/Token.php:66
msgid "Invalid data or unknown client"
msgstr ""
-#: src/Module/OAuth/Token.php:105
+#: src/Module/OAuth/Token.php:91
msgid "Unsupported or missing grant type"
msgstr "Nieobsługiwany lub brakujący typ dotacji"
-#: src/Module/OStatus/Repair.php:83
-msgid "Resubscribing to OStatus contacts"
-msgstr "Ponowne subskrybowanie kontaktów OStatus"
-
-#: src/Module/OStatus/Repair.php:84 src/Module/OStatus/Subscribe.php:160
-msgid "Keep this window open until done."
-msgstr "Pozostaw to okno otwarte, dopóki nie będzie gotowe."
-
-#: src/Module/OStatus/Repair.php:85
-msgid "✔ Done"
-msgstr "✔ Gotowe"
-
-#: src/Module/OStatus/Repair.php:86
-msgid "No OStatus contacts to resubscribe to."
-msgstr ""
-
-#: src/Module/OStatus/Subscribe.php:72
+#: src/Module/OStatus/Subscribe.php:58
msgid "Subscribing to contacts"
msgstr "Subskrybowanie kontaktów"
-#: src/Module/OStatus/Subscribe.php:81
+#: src/Module/OStatus/Subscribe.php:67
msgid "No contact provided."
msgstr "Brak kontaktu."
-#: src/Module/OStatus/Subscribe.php:87
+#: src/Module/OStatus/Subscribe.php:73
msgid "Couldn't fetch information for contact."
msgstr "Nie można pobrać informacji o kontakcie."
-#: src/Module/OStatus/Subscribe.php:98
+#: src/Module/OStatus/Subscribe.php:84
msgid "Couldn't fetch friends for contact."
msgstr "Nie można pobrać znajomych do kontaktu."
-#: src/Module/OStatus/Subscribe.php:104 src/Module/OStatus/Subscribe.php:115
+#: src/Module/OStatus/Subscribe.php:90 src/Module/OStatus/Subscribe.php:101
msgid "Couldn't fetch following contacts."
msgstr "Nie udało się pobrać następujących kontaktów."
-#: src/Module/OStatus/Subscribe.php:110
+#: src/Module/OStatus/Subscribe.php:96
msgid "Couldn't fetch remote profile."
msgstr "Nie można pobrać profilu zdalnego."
-#: src/Module/OStatus/Subscribe.php:120
+#: src/Module/OStatus/Subscribe.php:106
msgid "Unsupported network"
msgstr "Sieć nieobsługiwana"
-#: src/Module/OStatus/Subscribe.php:136
+#: src/Module/OStatus/Subscribe.php:122
msgid "Done"
msgstr "Gotowe"
-#: src/Module/OStatus/Subscribe.php:150
+#: src/Module/OStatus/Subscribe.php:136
msgid "success"
msgstr "powodzenie"
-#: src/Module/OStatus/Subscribe.php:152
+#: src/Module/OStatus/Subscribe.php:138
msgid "failed"
msgstr "nie powiodło się"
-#: src/Module/OStatus/Subscribe.php:155
+#: src/Module/OStatus/Subscribe.php:141
msgid "ignored"
msgstr "ignorowany(-a)"
-#: src/Module/Photo.php:122
+#: src/Module/OStatus/Subscribe.php:146
+msgid "Keep this window open until done."
+msgstr "Pozostaw to okno otwarte, dopóki nie będzie gotowe."
+
+#: src/Module/Photo.php:108
msgid "The Photo is not available."
msgstr "Zdjęcie jest niedostępne."
-#: src/Module/Photo.php:147
+#: src/Module/Photo.php:133
#, php-format
msgid "The Photo with id %s is not available."
msgstr "Zdjęcie z identyfikatorem %s nie jest dostępne."
-#: src/Module/Photo.php:188
+#: src/Module/Photo.php:174
#, php-format
msgid "Invalid external resource with url %s."
msgstr "Nieprawidłowy zasób zewnętrzny z adresem URL %s."
-#: src/Module/Photo.php:190
+#: src/Module/Photo.php:176
#, php-format
msgid "Invalid photo with id %s."
msgstr "Nieprawidłowe zdjęcie z identyfikatorem %s."
-#: src/Module/Post/Edit.php:82 src/Module/Post/Edit.php:96
+#: src/Module/Post/Edit.php:68 src/Module/Post/Edit.php:82
msgid "Post not found."
msgstr "Nie znaleziono wpisu."
-#: src/Module/Post/Edit.php:102
+#: src/Module/Post/Edit.php:88
msgid "Edit post"
msgstr "Edytuj wpis"
-#: src/Module/Post/Edit.php:136
+#: src/Module/Post/Edit.php:122
msgid "web link"
msgstr "link"
-#: src/Module/Post/Edit.php:137
+#: src/Module/Post/Edit.php:123
msgid "Insert video link"
msgstr "Wstaw link do filmu"
-#: src/Module/Post/Edit.php:138
+#: src/Module/Post/Edit.php:124
msgid "video link"
msgstr "link do filmu"
-#: src/Module/Post/Edit.php:139
+#: src/Module/Post/Edit.php:125
msgid "Insert audio link"
msgstr "Wstaw link do audio"
-#: src/Module/Post/Edit.php:140
+#: src/Module/Post/Edit.php:126
msgid "audio link"
msgstr "link do audio"
-#: src/Module/Post/Tag/Remove.php:106
+#: src/Module/Post/Tag/Remove.php:92
msgid "Remove Item Tag"
msgstr "Usuń pozycję znacznika"
-#: src/Module/Post/Tag/Remove.php:107
+#: src/Module/Post/Tag/Remove.php:93
msgid "Select a tag to remove: "
msgstr "Wybierz znacznik do usunięcia: "
-#: src/Module/Post/Tag/Remove.php:108
-#: src/Module/Settings/TwoFactor/Trusted.php:147
+#: src/Module/Post/Tag/Remove.php:94
+#: src/Module/Settings/TwoFactor/Trusted.php:133
msgid "Remove"
msgstr "Usuń"
-#: src/Module/Privacy/PermissionTooltip.php:71
+#: src/Module/Privacy/PermissionTooltip.php:57
#, php-format
msgid "Wrong type \"%s\", expected one of: %s"
msgstr "Nieprawidłowy typ „%s”, oczekiwano jednego z:%s"
-#: src/Module/Privacy/PermissionTooltip.php:101
+#: src/Module/Privacy/PermissionTooltip.php:87
msgid "Model not found"
msgstr "Nie znaleziono modelu"
-#: src/Module/Privacy/PermissionTooltip.php:118
+#: src/Module/Privacy/PermissionTooltip.php:104
msgid "Unlisted"
msgstr "Niekatalogowany"
-#: src/Module/Privacy/PermissionTooltip.php:124
+#: src/Module/Privacy/PermissionTooltip.php:110
msgid "Remote privacy information not available."
msgstr "Nie są dostępne zdalne informacje o prywatności."
-#: src/Module/Privacy/PermissionTooltip.php:131
+#: src/Module/Privacy/PermissionTooltip.php:117
msgid "Visible to:"
msgstr "Widoczne dla:"
-#: src/Module/Privacy/PermissionTooltip.php:133
+#: src/Module/Privacy/PermissionTooltip.php:119
msgid "CC:"
msgstr ""
-#: src/Module/Privacy/PermissionTooltip.php:134
+#: src/Module/Privacy/PermissionTooltip.php:120
msgid "BCC:"
msgstr ""
-#: src/Module/Privacy/PermissionTooltip.php:135
+#: src/Module/Privacy/PermissionTooltip.php:121
msgid "Audience:"
msgstr ""
-#: src/Module/Privacy/PermissionTooltip.php:136
+#: src/Module/Privacy/PermissionTooltip.php:122
msgid "Attributed To:"
msgstr ""
-#: src/Module/Privacy/PermissionTooltip.php:234
+#: src/Module/Privacy/PermissionTooltip.php:220
#, php-format
msgid "Collection (%s)"
msgstr "Kolekcja (%s)"
-#: src/Module/Privacy/PermissionTooltip.php:238
+#: src/Module/Privacy/PermissionTooltip.php:224
#, php-format
msgid "Followers (%s)"
msgstr "Obserwujący (%s)"
-#: src/Module/Privacy/PermissionTooltip.php:255
+#: src/Module/Privacy/PermissionTooltip.php:241
#, php-format
msgid "%d more"
msgstr "%d więcej"
-#: src/Module/Profile/Contacts.php:159
+#: src/Module/Profile/Contacts.php:145
msgid "No contacts."
msgstr "Brak kontaktów."
-#: src/Module/Profile/Conversations.php:106
-#: src/Module/Profile/Conversations.php:109 src/Module/Profile/Profile.php:353
-#: src/Module/Profile/Profile.php:356 src/Protocol/Feed.php:1114
-#: src/Protocol/OStatus.php:1011
-#, php-format
-msgid "%s's timeline"
-msgstr "oś czasu %s"
-
-#: src/Module/Profile/Conversations.php:107 src/Module/Profile/Profile.php:354
-#: src/Protocol/Feed.php:1118 src/Protocol/OStatus.php:1016
+#: src/Module/Profile/Conversations.php:92 src/Module/Profile/Profile.php:339
+#: src/Protocol/Feed.php:1097
#, php-format
msgid "%s's posts"
msgstr "wpisy %s"
-#: src/Module/Profile/Conversations.php:108 src/Module/Profile/Profile.php:355
-#: src/Protocol/Feed.php:1121 src/Protocol/OStatus.php:1020
+#: src/Module/Profile/Conversations.php:93 src/Module/Profile/Profile.php:340
+#: src/Protocol/Feed.php:1100
#, php-format
msgid "%s's comments"
msgstr "komentarze %s"
-#: src/Module/Profile/Photos.php:164 src/Module/Profile/Photos.php:167
-#: src/Module/Profile/Photos.php:192
-#: src/Module/Settings/Profile/Photo/Index.php:58
+#: src/Module/Profile/Conversations.php:94 src/Module/Profile/Profile.php:341
+#: src/Protocol/Feed.php:1093
+#, php-format
+msgid "%s's timeline"
+msgstr "oś czasu %s"
+
+#: src/Module/Profile/Photos.php:150 src/Module/Profile/Photos.php:153
+#: src/Module/Profile/Photos.php:178
+#: src/Module/Settings/Profile/Photo/Index.php:44
#, php-format
msgid "Image exceeds size limit of %s"
msgstr "Obraz przekracza limit rozmiaru wynoszący %s"
-#: src/Module/Profile/Photos.php:170
+#: src/Module/Profile/Photos.php:156
msgid "Image upload didn't complete, please try again"
msgstr "Przesyłanie zdjęć nie zostało zakończone, spróbuj ponownie"
-#: src/Module/Profile/Photos.php:173
+#: src/Module/Profile/Photos.php:159
msgid "Image file is missing"
msgstr "Brak pliku obrazu"
-#: src/Module/Profile/Photos.php:178
+#: src/Module/Profile/Photos.php:164
msgid ""
"Server can't accept new file upload at this time, please contact your "
"administrator"
msgstr "Serwer nie może teraz przyjąć nowego pliku, skontaktuj się z administratorem"
-#: src/Module/Profile/Photos.php:200
+#: src/Module/Profile/Photos.php:186
msgid "Image file is empty."
msgstr "Plik obrazka jest pusty."
-#: src/Module/Profile/Photos.php:352
+#: src/Module/Profile/Photos.php:338
msgid "View Album"
msgstr "Zobacz album"
-#: src/Module/Profile/Profile.php:114 src/Module/Profile/Restricted.php:50
+#: src/Module/Profile/Profile.php:100 src/Module/Profile/Restricted.php:36
msgid "Profile not found."
msgstr "Nie znaleziono profilu."
-#: src/Module/Profile/Profile.php:160
+#: src/Module/Profile/Profile.php:146
#, php-format
msgid ""
"You're currently viewing your profile as %s Cancel"
msgstr "Obecnie przeglądasz swój profil jako %s Anuluj"
-#: src/Module/Profile/Profile.php:169
+#: src/Module/Profile/Profile.php:155
msgid "Full Name:"
msgstr "Imię i nazwisko:"
-#: src/Module/Profile/Profile.php:174
+#: src/Module/Profile/Profile.php:160
msgid "Member since:"
msgstr "Członek od:"
-#: src/Module/Profile/Profile.php:180
+#: src/Module/Profile/Profile.php:166
msgid "j F, Y"
msgstr "d M, R"
-#: src/Module/Profile/Profile.php:181
+#: src/Module/Profile/Profile.php:167
msgid "j F"
msgstr "d M"
-#: src/Module/Profile/Profile.php:189 src/Util/Temporal.php:168
+#: src/Module/Profile/Profile.php:175 src/Util/Temporal.php:154
msgid "Birthday:"
msgstr "Urodziny:"
-#: src/Module/Profile/Profile.php:192
-#: src/Module/Settings/Profile/Index.php:296 src/Util/Temporal.php:170
+#: src/Module/Profile/Profile.php:178
+#: src/Module/Settings/Profile/Index.php:282 src/Util/Temporal.php:156
msgid "Age: "
msgstr "Wiek: "
-#: src/Module/Profile/Profile.php:192
-#: src/Module/Settings/Profile/Index.php:296 src/Util/Temporal.php:170
+#: src/Module/Profile/Profile.php:178
+#: src/Module/Settings/Profile/Index.php:282 src/Util/Temporal.php:156
#, php-format
msgid "%d year old"
msgid_plural "%d years old"
@@ -9389,46 +9370,46 @@ msgstr[1] "%d lata"
msgstr[2] "%d lat"
msgstr[3] "%d lat"
-#: src/Module/Profile/Profile.php:197
-#: src/Module/Settings/Profile/Index.php:289
+#: src/Module/Profile/Profile.php:183
+#: src/Module/Settings/Profile/Index.php:275
msgid "Description:"
msgstr "Opis:"
-#: src/Module/Profile/Profile.php:263
+#: src/Module/Profile/Profile.php:249
msgid "Groups:"
msgstr ""
-#: src/Module/Profile/Profile.php:275
+#: src/Module/Profile/Profile.php:261
msgid "View profile as:"
msgstr "Wyświetl profil jako:"
-#: src/Module/Profile/Profile.php:292
+#: src/Module/Profile/Profile.php:278
msgid "View as"
msgstr "Zobacz jako"
-#: src/Module/Profile/RemoteFollow.php:82
+#: src/Module/Profile/RemoteFollow.php:68
msgid "Profile unavailable."
msgstr "Profil niedostępny."
-#: src/Module/Profile/RemoteFollow.php:88
+#: src/Module/Profile/RemoteFollow.php:74
msgid "Invalid locator"
msgstr "Nieprawidłowy lokalizator"
-#: src/Module/Profile/RemoteFollow.php:95
+#: src/Module/Profile/RemoteFollow.php:81
msgid "The provided profile link doesn't seem to be valid"
msgstr "Podany link profilu wydaje się być nieprawidłowy"
-#: src/Module/Profile/RemoteFollow.php:100
+#: src/Module/Profile/RemoteFollow.php:86
msgid ""
"Remote subscription can't be done for your network. Please subscribe "
"directly on your system."
msgstr "Zdalnej subskrypcji nie można wykonać dla swojej sieci. Proszę zasubskrybuj bezpośrednio w swoim systemie."
-#: src/Module/Profile/RemoteFollow.php:128
+#: src/Module/Profile/RemoteFollow.php:114
msgid "Friend/Connection Request"
msgstr "Przyjaciel/Prośba o połączenie"
-#: src/Module/Profile/RemoteFollow.php:129
+#: src/Module/Profile/RemoteFollow.php:115
#, php-format
msgid ""
"Enter your Webfinger address (user@domain.tld) or profile URL here. If this "
@@ -9436,579 +9417,579 @@ msgid ""
" or %s directly on your system."
msgstr "Wpisz tutaj swój adres Webfinger (user@domain.tld) lub adres URL profilu. Jeśli nie jest to obsługiwane przez system, musisz subskrybować %s lub %s bezpośrednio w systemie."
-#: src/Module/Profile/RemoteFollow.php:130
+#: src/Module/Profile/RemoteFollow.php:116
#, php-format
msgid ""
"If you are not yet a member of the free social web, follow "
"this link to find a public Friendica node and join us today."
msgstr "Jeśli nie jesteś jeszcze członkiem darmowej sieci społecznościowej, kliknij ten odnośnik, aby znaleźć publiczny węzeł Friendica i dołącz do nas już dziś."
-#: src/Module/Profile/RemoteFollow.php:131
+#: src/Module/Profile/RemoteFollow.php:117
msgid "Your Webfinger address or profile URL:"
msgstr "Twój adres lub adres URL profilu Webfinger:"
-#: src/Module/Profile/Restricted.php:59
+#: src/Module/Profile/Restricted.php:45
msgid "Restricted profile"
msgstr "Ograniczony profil"
-#: src/Module/Profile/Restricted.php:60
+#: src/Module/Profile/Restricted.php:46
msgid ""
"This profile has been restricted which prevents access to their public "
"content from anonymous visitors."
msgstr ""
-#: src/Module/Profile/Schedule.php:83
+#: src/Module/Profile/Schedule.php:69
msgid "Scheduled"
msgstr "Zaplanowane"
-#: src/Module/Profile/Schedule.php:84
+#: src/Module/Profile/Schedule.php:70
msgid "Content"
msgstr "Zawartość"
-#: src/Module/Profile/Schedule.php:85
+#: src/Module/Profile/Schedule.php:71
msgid "Remove post"
msgstr "Usuń wpis"
-#: src/Module/Register.php:91
+#: src/Module/Register.php:77
msgid "Only parent users can create additional accounts."
msgstr "Tylko użytkownicy nadrzędni mogą tworzyć dodatkowe konta."
-#: src/Module/Register.php:106 src/Module/User/Import.php:112
+#: src/Module/Register.php:92 src/Module/User/Import.php:98
msgid ""
"This site has exceeded the number of allowed daily account registrations. "
"Please try again tomorrow."
msgstr "Strona przekroczyła ilość dozwolonych rejestracji na dzień. Proszę spróbuj ponownie jutro."
-#: src/Module/Register.php:123
+#: src/Module/Register.php:109
msgid ""
"You may (optionally) fill in this form via OpenID by supplying your OpenID "
"and clicking \"Register\"."
msgstr "Możesz (opcjonalnie) wypełnić ten formularz za pośrednictwem OpenID, podając swój OpenID i klikając \"Register\"."
-#: src/Module/Register.php:124
+#: src/Module/Register.php:110
msgid ""
"If you are not familiar with OpenID, please leave that field blank and fill "
"in the rest of the items."
msgstr "Jeśli nie jesteś zaznajomiony z OpenID, zostaw to pole puste i uzupełnij resztę elementów."
-#: src/Module/Register.php:125
+#: src/Module/Register.php:111
msgid "Your OpenID (optional): "
msgstr "Twój OpenID (opcjonalnie): "
-#: src/Module/Register.php:134
+#: src/Module/Register.php:120
msgid "Include your profile in member directory?"
msgstr "Czy dołączyć twój profil do katalogu członków?"
-#: src/Module/Register.php:155
+#: src/Module/Register.php:141
msgid "Note for the admin"
msgstr "Uwaga dla administratora"
-#: src/Module/Register.php:155
+#: src/Module/Register.php:141
msgid "Leave a message for the admin, why you want to join this node"
msgstr "Pozostaw wiadomość dla administratora, dlaczego chcesz dołączyć do tego węzła"
-#: src/Module/Register.php:156
+#: src/Module/Register.php:142
msgid "Membership on this site is by invitation only."
msgstr "Członkostwo na tej stronie możliwe tylko dzięki zaproszeniu."
-#: src/Module/Register.php:157
+#: src/Module/Register.php:143
msgid "Your invitation code: "
msgstr "Twój kod zaproszenia: "
-#: src/Module/Register.php:165
+#: src/Module/Register.php:151
msgid "Your Display Name (as you would like it to be displayed on this system"
msgstr ""
-#: src/Module/Register.php:166
+#: src/Module/Register.php:152
msgid ""
"Your Email Address: (Initial information will be send there, so this has to "
"be an existing address.)"
msgstr "Twój adres e-mail: (Informacje początkowe zostaną wysłane tam, więc musi to być istniejący adres)."
-#: src/Module/Register.php:167
+#: src/Module/Register.php:153
msgid "Please repeat your e-mail address:"
msgstr "Powtórz swój adres e-mail:"
-#: src/Module/Register.php:169 src/Module/Security/PasswordTooLong.php:100
-#: src/Module/Settings/Account.php:569
+#: src/Module/Register.php:155 src/Module/Security/PasswordTooLong.php:86
+#: src/Module/Settings/Account.php:555
msgid "New Password:"
msgstr "Nowe hasło:"
-#: src/Module/Register.php:169
+#: src/Module/Register.php:155
msgid "Leave empty for an auto generated password."
msgstr "Pozostaw puste dla wygenerowanego automatycznie hasła."
-#: src/Module/Register.php:170 src/Module/Security/PasswordTooLong.php:101
-#: src/Module/Settings/Account.php:570
+#: src/Module/Register.php:156 src/Module/Security/PasswordTooLong.php:87
+#: src/Module/Settings/Account.php:556
msgid "Confirm:"
msgstr "Potwierdź:"
-#: src/Module/Register.php:171
+#: src/Module/Register.php:157
#, php-format
msgid ""
"Choose a profile nickname. This must begin with a text character. Your "
"profile address on this site will then be \"nickname@%s\"."
msgstr "Wybierz pseudonim profilu. Musi zaczynać się od znaku tekstowego. Twój adres profilu na tej stronie to \"nickname@%s\"."
-#: src/Module/Register.php:172
+#: src/Module/Register.php:158
msgid "Choose a nickname: "
msgstr "Wybierz pseudonim: "
-#: src/Module/Register.php:180 src/Module/User/Import.php:118
+#: src/Module/Register.php:166 src/Module/User/Import.php:104
msgid "Import"
msgstr "Import"
-#: src/Module/Register.php:181
+#: src/Module/Register.php:167
msgid "Import your profile to this friendica instance"
msgstr "Zaimportuj swój profil do tej instancji friendica"
-#: src/Module/Register.php:188
+#: src/Module/Register.php:174
msgid "Note: This node explicitly contains adult content"
msgstr "Uwaga: Ten węzeł jawnie zawiera treści dla dorosłych"
-#: src/Module/Register.php:190 src/Module/Settings/Delegation.php:181
+#: src/Module/Register.php:176 src/Module/Settings/Delegation.php:167
msgid "Parent Password:"
msgstr "Hasło nadrzędne:"
-#: src/Module/Register.php:190 src/Module/Settings/Delegation.php:181
+#: src/Module/Register.php:176 src/Module/Settings/Delegation.php:167
msgid ""
"Please enter the password of the parent account to legitimize your request."
msgstr "Wprowadź hasło konta nadrzędnego, aby legalizować swoje żądanie."
-#: src/Module/Register.php:219
+#: src/Module/Register.php:205
msgid "Password doesn't match."
msgstr "Hasło nie jest zgodne."
-#: src/Module/Register.php:225
+#: src/Module/Register.php:211
msgid "Please enter your password."
msgstr "Wprowadź hasło."
-#: src/Module/Register.php:267
+#: src/Module/Register.php:253
msgid "You have entered too much information."
msgstr "Podałeś za dużo informacji."
-#: src/Module/Register.php:290
+#: src/Module/Register.php:276
msgid "Please enter the identical mail address in the second field."
msgstr "Wpisz identyczny adres e-mail w drugim polu."
-#: src/Module/Register.php:298
+#: src/Module/Register.php:284
msgid "Nickname cannot start with a digit."
msgstr ""
-#: src/Module/Register.php:300
+#: src/Module/Register.php:286
msgid "Nickname can only contain US-ASCII characters."
msgstr ""
-#: src/Module/Register.php:329
+#: src/Module/Register.php:315
msgid "The additional account was created."
msgstr "Dodatkowe konto zostało utworzone."
-#: src/Module/Register.php:354
+#: src/Module/Register.php:340
msgid ""
"Registration successful. Please check your email for further instructions."
msgstr "Rejestracja zakończona pomyślnie. Dalsze instrukcje zostały wysłane na twojego e-maila."
-#: src/Module/Register.php:361
+#: src/Module/Register.php:347
#, php-format
msgid ""
"Failed to send email message. Here your accout details:You can enter one of your one-time recovery codes in case you lost access" " to your mobile device.
" msgstr "Możesz wprowadzić jeden ze swoich jednorazowych kodów odzyskiwania w przypadku utraty dostępu do urządzenia mobilnego.
" -#: src/Module/Security/TwoFactor/Recovery.php:101 +#: src/Module/Security/TwoFactor/Recovery.php:87 #, php-format msgid "Don’t have your phone? Enter a two-factor recovery code" msgstr "Nie masz telefonu? Wprowadzić dwuetapowy kod przywracania " -#: src/Module/Security/TwoFactor/Recovery.php:102 +#: src/Module/Security/TwoFactor/Recovery.php:88 msgid "Please enter a recovery code" msgstr "Wprowadź kod odzyskiwania" -#: src/Module/Security/TwoFactor/Recovery.php:103 +#: src/Module/Security/TwoFactor/Recovery.php:89 msgid "Submit recovery code and complete login" msgstr "Prześlij kod odzyskiwania i pełne logowanie" -#: src/Module/Security/TwoFactor/SignOut.php:122 +#: src/Module/Security/TwoFactor/SignOut.php:108 msgid "Sign out of this browser?" msgstr "Wylogować z tej przeglądarki?" -#: src/Module/Security/TwoFactor/SignOut.php:123 +#: src/Module/Security/TwoFactor/SignOut.php:109 msgid "" "If you trust this browser, you will not be asked for verification code " "the next time you sign in.
" msgstr "Jeśli ufasz tej przeglądarce, przy następnym logowaniu nie zostaniesz poproszony o podanie kodu weryfikacyjnego.
" -#: src/Module/Security/TwoFactor/SignOut.php:124 +#: src/Module/Security/TwoFactor/SignOut.php:110 msgid "Sign out" msgstr "Wyloguj" -#: src/Module/Security/TwoFactor/SignOut.php:126 +#: src/Module/Security/TwoFactor/SignOut.php:112 msgid "Trust and sign out" msgstr "Zaufaj i wyloguj" -#: src/Module/Security/TwoFactor/Trust.php:96 +#: src/Module/Security/TwoFactor/Trust.php:82 msgid "Couldn't save browser to Cookie." msgstr "Nie można zapisać informacji o przeglądarce do ciasteczek." -#: src/Module/Security/TwoFactor/Trust.php:141 +#: src/Module/Security/TwoFactor/Trust.php:127 msgid "Trust this browser?" msgstr "Ufać tej przeglądarce?" -#: src/Module/Security/TwoFactor/Trust.php:142 +#: src/Module/Security/TwoFactor/Trust.php:128 msgid "" "If you choose to trust this browser, you will not be asked for a " "verification code the next time you sign in.
" msgstr "Jeśli zdecydujesz się zaufać tej przeglądarce, przy następnym logowaniu nie zostaniesz poproszony o podanie kodu weryfikacyjnego.
" -#: src/Module/Security/TwoFactor/Trust.php:143 +#: src/Module/Security/TwoFactor/Trust.php:129 msgid "Not now" msgstr "Nie teraz" -#: src/Module/Security/TwoFactor/Trust.php:144 +#: src/Module/Security/TwoFactor/Trust.php:130 msgid "Don't trust" msgstr "Nie ufaj" -#: src/Module/Security/TwoFactor/Trust.php:145 +#: src/Module/Security/TwoFactor/Trust.php:131 msgid "Trust" msgstr "Ufaj" -#: src/Module/Security/TwoFactor/Verify.php:97 +#: src/Module/Security/TwoFactor/Verify.php:83 msgid "" "Open the two-factor authentication app on your device to get an " "authentication code and verify your identity.
" msgstr "Otwórz aplikację uwierzytelniania dwuskładnikowego na swoim urządzeniu, aby uzyskać kod uwierzytelniający i zweryfikować swoją tożsamość.
" -#: src/Module/Security/TwoFactor/Verify.php:100 +#: src/Module/Security/TwoFactor/Verify.php:86 #, php-format msgid "" "If you do not have access to your authentication code you can use a two-factor recovery code." msgstr "Jeśli nie masz dostępu do swojego kodu uwierzytelniającego, możesz użyć dwuskładnikowego kodu odzyskiwania." -#: src/Module/Security/TwoFactor/Verify.php:101 -#: src/Module/Settings/TwoFactor/Verify.php:158 +#: src/Module/Security/TwoFactor/Verify.php:87 +#: src/Module/Settings/TwoFactor/Verify.php:144 msgid "Please enter a code from your authentication app" msgstr "Wprowadź kod z aplikacji uwierzytelniającej" -#: src/Module/Security/TwoFactor/Verify.php:102 +#: src/Module/Security/TwoFactor/Verify.php:88 msgid "Verify code and complete login" msgstr "Zweryfikuj kod i zakończ logowanie" -#: src/Module/Settings/Account.php:96 +#: src/Module/Settings/Account.php:82 msgid "Please use a shorter name." msgstr "Użyj krótszej nazwy." -#: src/Module/Settings/Account.php:99 +#: src/Module/Settings/Account.php:85 msgid "Name too short." msgstr "Nazwa jest za krótka. " -#: src/Module/Settings/Account.php:108 +#: src/Module/Settings/Account.php:94 msgid "Wrong Password." msgstr "Nieprawidłowe hasło." -#: src/Module/Settings/Account.php:113 +#: src/Module/Settings/Account.php:99 msgid "Invalid email." msgstr "Niepoprawny e-mail." -#: src/Module/Settings/Account.php:117 +#: src/Module/Settings/Account.php:103 msgid "Cannot change to that email." msgstr "Nie można zmienić tego e-maila." -#: src/Module/Settings/Account.php:146 src/Module/Settings/Account.php:195 -#: src/Module/Settings/Account.php:216 src/Module/Settings/Account.php:300 -#: src/Module/Settings/Account.php:329 +#: src/Module/Settings/Account.php:132 src/Module/Settings/Account.php:181 +#: src/Module/Settings/Account.php:202 src/Module/Settings/Account.php:286 +#: src/Module/Settings/Account.php:315 msgid "Settings were not updated." msgstr "Ustawienia nie zostały zaktualizowane." -#: src/Module/Settings/Account.php:347 +#: src/Module/Settings/Account.php:333 msgid "Contact CSV file upload error" msgstr "Kontakt z plikiem CSV błąd przekazywania plików" -#: src/Module/Settings/Account.php:366 +#: src/Module/Settings/Account.php:352 msgid "Importing Contacts done" msgstr "Importowanie kontaktów zakończone" -#: src/Module/Settings/Account.php:379 +#: src/Module/Settings/Account.php:365 msgid "Relocate message has been send to your contacts" msgstr "Przeniesienie wiadomości zostało wysłane do Twoich kontaktów" -#: src/Module/Settings/Account.php:396 +#: src/Module/Settings/Account.php:382 msgid "Unable to find your profile. Please contact your admin." msgstr "Nie można znaleźć Twojego profilu. Skontaktuj się z administratorem." -#: src/Module/Settings/Account.php:438 +#: src/Module/Settings/Account.php:424 msgid "" "Account for a service that automatically shares content based on user " "defined channels." msgstr "" -#: src/Module/Settings/Account.php:448 +#: src/Module/Settings/Account.php:434 msgid "Personal Page Subtypes" msgstr "Podtypy osobistych stron" -#: src/Module/Settings/Account.php:449 +#: src/Module/Settings/Account.php:435 msgid "Community Group Subtypes" msgstr "" -#: src/Module/Settings/Account.php:460 +#: src/Module/Settings/Account.php:446 msgid "Account for a personal profile." msgstr "Konto dla profilu osobistego." -#: src/Module/Settings/Account.php:467 +#: src/Module/Settings/Account.php:453 msgid "" "Account for an organisation that automatically approves contact requests as " "\"Followers\"." msgstr "Konto dla organizacji, która automatycznie zatwierdza prośby o kontakt jako \"Obserwatorzy\"." -#: src/Module/Settings/Account.php:474 +#: src/Module/Settings/Account.php:460 msgid "" "Account for a news reflector that automatically approves contact requests as" " \"Followers\"." msgstr "Konto dla reflektora wiadomości, który automatycznie zatwierdza prośby o kontakt jako \"Obserwatorzy\"." -#: src/Module/Settings/Account.php:481 +#: src/Module/Settings/Account.php:467 msgid "Account for community discussions." msgstr "Konto do dyskusji w społeczności." -#: src/Module/Settings/Account.php:489 +#: src/Module/Settings/Account.php:475 msgid "" "Account for a regular personal profile that requires manual approval of " "\"Friends\" and \"Followers\"." msgstr "Konto dla zwykłego profilu osobistego, który wymaga ręcznej zgody \"Przyjaciół\" i \"Obserwatorów\"." -#: src/Module/Settings/Account.php:496 +#: src/Module/Settings/Account.php:482 msgid "" "Account for a public profile that automatically approves contact requests as" " \"Followers\"." msgstr "Konto dla profilu publicznego, który automatycznie zatwierdza prośby o kontakt jako \"Obserwatorzy\"." -#: src/Module/Settings/Account.php:503 +#: src/Module/Settings/Account.php:489 msgid "Automatically approves all contact requests." msgstr "Automatycznie zatwierdza wszystkie prośby o kontakt." -#: src/Module/Settings/Account.php:510 +#: src/Module/Settings/Account.php:496 msgid "Contact requests have to be manually approved." msgstr "" -#: src/Module/Settings/Account.php:517 +#: src/Module/Settings/Account.php:503 msgid "" "Account for a popular profile that automatically approves contact requests " "as \"Friends\"." msgstr "Konto popularnego profilu, które automatycznie zatwierdza prośby o kontakt jako \"Przyjaciele\"." -#: src/Module/Settings/Account.php:522 +#: src/Module/Settings/Account.php:508 msgid "Private Group [Experimental]" msgstr "" -#: src/Module/Settings/Account.php:524 +#: src/Module/Settings/Account.php:510 msgid "Requires manual approval of contact requests." msgstr "Wymaga ręcznego zatwierdzania żądań kontaktów." -#: src/Module/Settings/Account.php:533 +#: src/Module/Settings/Account.php:519 msgid "OpenID:" msgstr "OpenID:" -#: src/Module/Settings/Account.php:533 +#: src/Module/Settings/Account.php:519 msgid "(Optional) Allow this OpenID to login to this account." msgstr "(Opcjonalnie) Pozwól zalogować się na to konto przy pomocy OpenID." -#: src/Module/Settings/Account.php:541 +#: src/Module/Settings/Account.php:527 msgid "Publish your profile in your local site directory?" msgstr "Czy opublikować twój profil w katalogu lokalnej witryny?" -#: src/Module/Settings/Account.php:541 +#: src/Module/Settings/Account.php:527 #, php-format msgid "" "Your profile will be published in this node's local " @@ -10016,94 +9997,94 @@ msgid "" " system settings." msgstr "Twój profil zostanie opublikowany w lokalnym katalogu tego węzła. Dane Twojego profilu mogą być publicznie widoczne w zależności od ustawień systemu." -#: src/Module/Settings/Account.php:547 +#: src/Module/Settings/Account.php:533 #, php-format msgid "" "Your profile will also be published in the global friendica directories " "(e.g. %s)." msgstr "Twój profil zostanie również opublikowany w globalnych katalogach Friendica (np. %s)." -#: src/Module/Settings/Account.php:560 +#: src/Module/Settings/Account.php:546 msgid "Account Settings" msgstr "Ustawienia konta" -#: src/Module/Settings/Account.php:561 +#: src/Module/Settings/Account.php:547 #, php-format msgid "Your Identity Address is '%s' or '%s'." msgstr "Twój adres tożsamości to '%s' lub '%s'." -#: src/Module/Settings/Account.php:568 +#: src/Module/Settings/Account.php:554 msgid "Password Settings" msgstr "Ustawienia hasła" -#: src/Module/Settings/Account.php:570 +#: src/Module/Settings/Account.php:556 msgid "Leave password fields blank unless changing" msgstr "Pozostaw pole hasła puste, jeżeli nie chcesz go zmienić." -#: src/Module/Settings/Account.php:572 +#: src/Module/Settings/Account.php:558 msgid "Password:" msgstr "Hasło:" -#: src/Module/Settings/Account.php:572 +#: src/Module/Settings/Account.php:558 msgid "Your current password to confirm the changes of the email address" msgstr "Twoje obecne hasło, aby potwierdzić zmiany adresu e-mail" -#: src/Module/Settings/Account.php:575 +#: src/Module/Settings/Account.php:561 msgid "Delete OpenID URL" msgstr "Usuń adres URL OpenID" -#: src/Module/Settings/Account.php:577 +#: src/Module/Settings/Account.php:563 msgid "Basic Settings" msgstr "Ustawienia podstawowe" -#: src/Module/Settings/Account.php:578 -#: src/Module/Settings/Profile/Index.php:288 +#: src/Module/Settings/Account.php:564 +#: src/Module/Settings/Profile/Index.php:274 msgid "Display name:" msgstr "Nazwa wyświetlana:" -#: src/Module/Settings/Account.php:579 +#: src/Module/Settings/Account.php:565 msgid "Email Address:" msgstr "Adres email:" -#: src/Module/Settings/Account.php:580 +#: src/Module/Settings/Account.php:566 msgid "Your Timezone:" msgstr "Twoja strefa czasowa:" -#: src/Module/Settings/Account.php:581 +#: src/Module/Settings/Account.php:567 msgid "Your Language:" msgstr "Twój język:" -#: src/Module/Settings/Account.php:581 +#: src/Module/Settings/Account.php:567 msgid "" "Set the language we use to show you friendica interface and to send you " "emails" msgstr "Wybierz język, ktory bedzie używany do wyświetlania użytkownika friendica i wysłania Ci e-maili" -#: src/Module/Settings/Account.php:582 +#: src/Module/Settings/Account.php:568 msgid "Default Post Location:" msgstr "Domyślna lokalizacja wpisów:" -#: src/Module/Settings/Account.php:583 +#: src/Module/Settings/Account.php:569 msgid "Use Browser Location:" msgstr "Używaj lokalizacji przeglądarki:" -#: src/Module/Settings/Account.php:585 +#: src/Module/Settings/Account.php:571 msgid "Security and Privacy Settings" msgstr "Ustawienia bezpieczeństwa i prywatności" -#: src/Module/Settings/Account.php:587 +#: src/Module/Settings/Account.php:573 msgid "Maximum Friend Requests/Day:" msgstr "Maksymalna dzienna liczba zaproszeń do grona przyjaciół:" -#: src/Module/Settings/Account.php:587 +#: src/Module/Settings/Account.php:573 msgid "(to prevent spam abuse)" msgstr "(aby zapobiec spamowaniu)" -#: src/Module/Settings/Account.php:589 +#: src/Module/Settings/Account.php:575 msgid "Allow your profile to be searchable globally?" msgstr "Czy Twój profil ma być dostępny do wyszukiwania na całym świecie?" -#: src/Module/Settings/Account.php:589 +#: src/Module/Settings/Account.php:575 msgid "" "Activate this setting if you want others to easily find and follow you. Your" " profile will be searchable on remote systems. This setting also determines " @@ -10111,43 +10092,43 @@ msgid "" "indexed or not." msgstr "Aktywuj to ustawienie, jeśli chcesz, aby inni mogli Cię łatwo znaleźć i śledzić. Twój profil będzie można przeszukiwać na zdalnych systemach. To ustawienie określa również, czy Friendica poinformuje wyszukiwarki, że Twój profil powinien być indeksowany, czy nie." -#: src/Module/Settings/Account.php:590 +#: src/Module/Settings/Account.php:576 msgid "Hide your contact/friend list from viewers of your profile?" msgstr "Ukryć listę kontaktów/znajomych przed osobami przeglądającymi Twój profil?" -#: src/Module/Settings/Account.php:590 +#: src/Module/Settings/Account.php:576 msgid "" "A list of your contacts is displayed on your profile page. Activate this " "option to disable the display of your contact list." msgstr "Lista kontaktów jest wyświetlana na stronie profilu. Aktywuj tę opcję, aby wyłączyć wyświetlanie listy kontaktów." -#: src/Module/Settings/Account.php:591 +#: src/Module/Settings/Account.php:577 msgid "Hide your public content from anonymous viewers" msgstr "" -#: src/Module/Settings/Account.php:591 +#: src/Module/Settings/Account.php:577 msgid "" "Anonymous visitors will only see your basic profile details. Your public " "posts and replies will still be freely accessible on the remote servers of " "your followers and through relays." msgstr "" -#: src/Module/Settings/Account.php:592 +#: src/Module/Settings/Account.php:578 msgid "Make public posts unlisted" msgstr "Ustaw publiczne wpisy jako niepubliczne" -#: src/Module/Settings/Account.php:592 +#: src/Module/Settings/Account.php:578 msgid "" "Your public posts will not appear on the community pages or in search " "results, nor be sent to relay servers. However they can still appear on " "public feeds on remote servers." msgstr "Twoje publiczne posty nie będą wyświetlane na stronach społeczności ani w wynikach wyszukiwania ani nie będą wysyłane do serwerów przekazywania. Jednak nadal mogą one pojawiać się w publicznych kanałach na serwerach zdalnych." -#: src/Module/Settings/Account.php:593 +#: src/Module/Settings/Account.php:579 msgid "Make all posted pictures accessible" msgstr "Udostępnij wszystkie opublikowane zdjęcia" -#: src/Module/Settings/Account.php:593 +#: src/Module/Settings/Account.php:579 msgid "" "This option makes every posted picture accessible via the direct link. This " "is a workaround for the problem that most other networks can't handle " @@ -10155,352 +10136,352 @@ msgid "" "public on your photo albums though." msgstr "Ta opcja powoduje, że każde opublikowane zdjęcie jest dostępne poprzez bezpośredni link. Jest to obejście problemu polegającego na tym, że większość innych sieci nie może obsłużyć uprawnień do zdjęć. Jednak zdjęcia niepubliczne nadal nie będą widoczne publicznie w Twoich albumach." -#: src/Module/Settings/Account.php:594 +#: src/Module/Settings/Account.php:580 msgid "Allow friends to post to your profile page?" msgstr "Zezwalać znajomym na publikowanie postów na stronie Twojego profilu?" -#: src/Module/Settings/Account.php:594 +#: src/Module/Settings/Account.php:580 msgid "" "Your contacts may write posts on your profile wall. These posts will be " "distributed to your contacts" msgstr "Twoi znajomi mogą pisać posty na stronie Twojego profilu. Posty zostaną przesłane do Twoich kontaktów." -#: src/Module/Settings/Account.php:595 +#: src/Module/Settings/Account.php:581 msgid "Allow friends to tag your posts?" msgstr "Zezwolić na oznaczanie Twoich postów przez znajomych?" -#: src/Module/Settings/Account.php:595 +#: src/Module/Settings/Account.php:581 msgid "Your contacts can add additional tags to your posts." msgstr "Twoje kontakty mogą dodawać do tagów dodatkowe posty." -#: src/Module/Settings/Account.php:596 +#: src/Module/Settings/Account.php:582 msgid "Default privacy circle for new contacts" msgstr "" -#: src/Module/Settings/Account.php:597 +#: src/Module/Settings/Account.php:583 msgid "Default privacy circle for new group contacts" msgstr "" -#: src/Module/Settings/Account.php:598 +#: src/Module/Settings/Account.php:584 msgid "Default Post Permissions" msgstr "Domyślne prawa dostępu wiadomości" -#: src/Module/Settings/Account.php:602 +#: src/Module/Settings/Account.php:588 msgid "Expiration settings" msgstr "Ustawienia ważności" -#: src/Module/Settings/Account.php:603 +#: src/Module/Settings/Account.php:589 msgid "Automatically expire posts after this many days:" msgstr "Posty wygasną automatycznie po następującej liczbie dni:" -#: src/Module/Settings/Account.php:603 +#: src/Module/Settings/Account.php:589 msgid "If empty, posts will not expire. Expired posts will be deleted" msgstr "Pole puste, wiadomość nie wygaśnie. Niezapisane wpisy zostaną usunięte." -#: src/Module/Settings/Account.php:604 +#: src/Module/Settings/Account.php:590 msgid "Expire posts" msgstr "Ważność wpisów" -#: src/Module/Settings/Account.php:604 +#: src/Module/Settings/Account.php:590 msgid "When activated, posts and comments will be expired." msgstr "Po aktywacji posty i komentarze wygasną." -#: src/Module/Settings/Account.php:605 +#: src/Module/Settings/Account.php:591 msgid "Expire personal notes" msgstr "Ważność osobistych notatek" -#: src/Module/Settings/Account.php:605 +#: src/Module/Settings/Account.php:591 msgid "" "When activated, the personal notes on your profile page will be expired." msgstr "Po aktywacji osobiste notatki na stronie profilu wygasną." -#: src/Module/Settings/Account.php:606 +#: src/Module/Settings/Account.php:592 msgid "Expire starred posts" msgstr "Wygasaj wpisy oznaczone gwiazdką" -#: src/Module/Settings/Account.php:606 +#: src/Module/Settings/Account.php:592 msgid "" "Starring posts keeps them from being expired. That behaviour is overwritten " "by this setting." msgstr "Oznaczanie postów gwiazdką powoduje, że wygasają. To zachowanie jest zastępowane przez to ustawienie." -#: src/Module/Settings/Account.php:607 +#: src/Module/Settings/Account.php:593 msgid "Only expire posts by others" msgstr "Wygasają tylko wpisy innych osób" -#: src/Module/Settings/Account.php:607 +#: src/Module/Settings/Account.php:593 msgid "" "When activated, your own posts never expire. Then the settings above are " "only valid for posts you received." msgstr "Po aktywacji Twoje posty nigdy nie wygasają. Zatem powyższe ustawienia obowiązują tylko dla otrzymanych postów." -#: src/Module/Settings/Account.php:610 +#: src/Module/Settings/Account.php:596 msgid "Notification Settings" msgstr "Ustawienia powiadomień" -#: src/Module/Settings/Account.php:611 +#: src/Module/Settings/Account.php:597 msgid "Send a notification email when:" msgstr "Wysyłaj powiadmonienia na email, kiedy:" -#: src/Module/Settings/Account.php:612 +#: src/Module/Settings/Account.php:598 msgid "You receive an introduction" msgstr "Otrzymałeś zaproszenie" -#: src/Module/Settings/Account.php:613 +#: src/Module/Settings/Account.php:599 msgid "Your introductions are confirmed" msgstr "Twoje zaproszenie jest potwierdzone" -#: src/Module/Settings/Account.php:614 +#: src/Module/Settings/Account.php:600 msgid "Someone writes on your profile wall" msgstr "Ktoś pisze na Twojej tablicy profilu" -#: src/Module/Settings/Account.php:615 +#: src/Module/Settings/Account.php:601 msgid "Someone writes a followup comment" msgstr "Ktoś pisze komentarz nawiązujący." -#: src/Module/Settings/Account.php:616 +#: src/Module/Settings/Account.php:602 msgid "You receive a private message" msgstr "Otrzymałeś prywatną wiadomość" -#: src/Module/Settings/Account.php:617 +#: src/Module/Settings/Account.php:603 msgid "You receive a friend suggestion" msgstr "Otrzymałeś propozycję od znajomych" -#: src/Module/Settings/Account.php:618 +#: src/Module/Settings/Account.php:604 msgid "You are tagged in a post" msgstr "Jesteś oznaczony znacznikiem we wpisie" -#: src/Module/Settings/Account.php:620 +#: src/Module/Settings/Account.php:606 msgid "Create a desktop notification when:" msgstr "Utwórz powiadomienia na pulpicie gdy:" -#: src/Module/Settings/Account.php:621 +#: src/Module/Settings/Account.php:607 msgid "Someone tagged you" msgstr "Ktoś Cię oznaczył" -#: src/Module/Settings/Account.php:622 +#: src/Module/Settings/Account.php:608 msgid "Someone directly commented on your post" msgstr "Ktoś bezpośrednio skomentował Twój wpis" -#: src/Module/Settings/Account.php:623 +#: src/Module/Settings/Account.php:609 msgid "Someone liked your content" msgstr "Ktoś polubił Twoje treści" -#: src/Module/Settings/Account.php:623 src/Module/Settings/Account.php:624 +#: src/Module/Settings/Account.php:609 src/Module/Settings/Account.php:610 msgid "Can only be enabled, when the direct comment notification is enabled." msgstr "Można włączyć tylko wtedy, gdy włączone jest bezpośrednie powiadomienie o komentarzach." -#: src/Module/Settings/Account.php:624 +#: src/Module/Settings/Account.php:610 msgid "Someone shared your content" msgstr "Ktoś udostępnił Twoje treści" -#: src/Module/Settings/Account.php:625 +#: src/Module/Settings/Account.php:611 msgid "Someone commented in your thread" msgstr "Ktoś skomentował w Twoim wątku" -#: src/Module/Settings/Account.php:626 +#: src/Module/Settings/Account.php:612 msgid "Someone commented in a thread where you commented" msgstr "Ktoś skomentował w wątku, w którym Ty skomentowałeś" -#: src/Module/Settings/Account.php:627 +#: src/Module/Settings/Account.php:613 msgid "Someone commented in a thread where you interacted" msgstr "Ktoś skomentował w wątku, w którym wchodziłeś w interakcję" -#: src/Module/Settings/Account.php:629 +#: src/Module/Settings/Account.php:615 msgid "Activate desktop notifications" msgstr "Aktywuj powiadomienia na pulpicie" -#: src/Module/Settings/Account.php:629 +#: src/Module/Settings/Account.php:615 msgid "Show desktop popup on new notifications" msgstr "Pokazuj wyskakujące okienko gdy otrzymasz powiadomienie" -#: src/Module/Settings/Account.php:633 +#: src/Module/Settings/Account.php:619 msgid "Text-only notification emails" msgstr "E-maile z powiadomieniami tekstowymi" -#: src/Module/Settings/Account.php:635 +#: src/Module/Settings/Account.php:621 msgid "Send text only notification emails, without the html part" msgstr "Wysyłaj tylko e-maile z powiadomieniami tekstowymi, bez części html" -#: src/Module/Settings/Account.php:639 +#: src/Module/Settings/Account.php:625 msgid "Show detailled notifications" msgstr "Pokazuj szczegółowe powiadomienia" -#: src/Module/Settings/Account.php:641 +#: src/Module/Settings/Account.php:627 msgid "" "Per default, notifications are condensed to a single notification per item. " "When enabled every notification is displayed." msgstr "Domyślne powiadomienia są skondensowane z jednym powiadomieniem dla każdego przedmiotu. Po włączeniu wyświetlane jest każde powiadomienie." -#: src/Module/Settings/Account.php:645 +#: src/Module/Settings/Account.php:631 msgid "Show notifications of ignored contacts" msgstr "Pokaż powiadomienia o zignorowanych kontaktach" -#: src/Module/Settings/Account.php:647 +#: src/Module/Settings/Account.php:633 msgid "" "You don't see posts from ignored contacts. But you still see their comments." " This setting controls if you want to still receive regular notifications " "that are caused by ignored contacts or not." msgstr "Nie widzisz wpisów od ignorowanych kontaktów. Ale nadal widzisz ich komentarze. To ustawienie określa, czy chcesz nadal otrzymywać regularne powiadomienia, które są powodowane przez ignorowane kontakty, czy nie." -#: src/Module/Settings/Account.php:650 +#: src/Module/Settings/Account.php:636 msgid "Advanced Account/Page Type Settings" msgstr "Zaawansowane ustawienia konta/rodzaju strony" -#: src/Module/Settings/Account.php:651 +#: src/Module/Settings/Account.php:637 msgid "Change the behaviour of this account for special situations" msgstr "Zmień zachowanie tego konta w sytuacjach specjalnych" -#: src/Module/Settings/Account.php:654 +#: src/Module/Settings/Account.php:640 msgid "Import Contacts" msgstr "Import kontaktów" -#: src/Module/Settings/Account.php:655 +#: src/Module/Settings/Account.php:641 msgid "" "Upload a CSV file that contains the handle of your followed accounts in the " "first column you exported from the old account." msgstr "Prześlij plik CSV zawierający obsługę obserwowanych kont w pierwszej kolumnie wyeksportowanej ze starego konta." -#: src/Module/Settings/Account.php:656 +#: src/Module/Settings/Account.php:642 msgid "Upload File" msgstr "Prześlij plik" -#: src/Module/Settings/Account.php:659 +#: src/Module/Settings/Account.php:645 msgid "Relocate" msgstr "Przeniesienie" -#: src/Module/Settings/Account.php:660 +#: src/Module/Settings/Account.php:646 msgid "" "If you have moved this profile from another server, and some of your " "contacts don't receive your updates, try pushing this button." msgstr "Jeśli ten profil został przeniesiony z innego serwera, a niektóre z Twoich kontaktów nie otrzymają aktualizacji, spróbuj nacisnąć ten przycisk." -#: src/Module/Settings/Account.php:661 +#: src/Module/Settings/Account.php:647 msgid "Resend relocate message to contacts" msgstr "Wyślij ponownie przenieść wiadomości do kontaktów" -#: src/Module/Settings/Addons.php:86 +#: src/Module/Settings/Addons.php:72 msgid "Addon Settings" msgstr "Ustawienia dodatków" -#: src/Module/Settings/Addons.php:87 +#: src/Module/Settings/Addons.php:73 msgid "No Addon settings configured" msgstr "Brak skonfigurowanych ustawień dodatków" -#: src/Module/Settings/Channels.php:148 +#: src/Module/Settings/Channels.php:134 msgid "" "This page can be used to define the channels that will automatically be " "reshared by your account." msgstr "" -#: src/Module/Settings/Channels.php:153 +#: src/Module/Settings/Channels.php:139 msgid "This page can be used to define your own channels." msgstr "" -#: src/Module/Settings/Channels.php:182 +#: src/Module/Settings/Channels.php:168 msgid "Publish" msgstr "" -#: src/Module/Settings/Channels.php:182 +#: src/Module/Settings/Channels.php:168 msgid "" "When selected, the channel results are reshared. This only works for public " "ActivityPub posts from the public timeline or the user defined circles." msgstr "" -#: src/Module/Settings/Channels.php:190 src/Module/Settings/Channels.php:211 -#: src/Module/Settings/Display.php:338 +#: src/Module/Settings/Channels.php:176 src/Module/Settings/Channels.php:197 +#: src/Module/Settings/Display.php:324 msgid "Label" msgstr "" -#: src/Module/Settings/Channels.php:191 src/Module/Settings/Channels.php:212 -#: src/Module/Settings/Display.php:339 -#: src/Module/Settings/TwoFactor/AppSpecific.php:137 +#: src/Module/Settings/Channels.php:177 src/Module/Settings/Channels.php:198 +#: src/Module/Settings/Display.php:325 +#: src/Module/Settings/TwoFactor/AppSpecific.php:123 msgid "Description" msgstr "Opis" -#: src/Module/Settings/Channels.php:192 src/Module/Settings/Channels.php:213 +#: src/Module/Settings/Channels.php:178 src/Module/Settings/Channels.php:199 msgid "Access Key" msgstr "" -#: src/Module/Settings/Channels.php:193 src/Module/Settings/Channels.php:214 +#: src/Module/Settings/Channels.php:179 src/Module/Settings/Channels.php:200 msgid "Circle/Channel" msgstr "" -#: src/Module/Settings/Channels.php:194 src/Module/Settings/Channels.php:215 +#: src/Module/Settings/Channels.php:180 src/Module/Settings/Channels.php:201 msgid "Include Tags" msgstr "" -#: src/Module/Settings/Channels.php:195 src/Module/Settings/Channels.php:216 +#: src/Module/Settings/Channels.php:181 src/Module/Settings/Channels.php:202 msgid "Exclude Tags" msgstr "" -#: src/Module/Settings/Channels.php:196 src/Module/Settings/Channels.php:217 +#: src/Module/Settings/Channels.php:182 src/Module/Settings/Channels.php:203 msgid "Minimum Size" msgstr "" -#: src/Module/Settings/Channels.php:197 src/Module/Settings/Channels.php:218 +#: src/Module/Settings/Channels.php:183 src/Module/Settings/Channels.php:204 msgid "Maximum Size" msgstr "" -#: src/Module/Settings/Channels.php:198 src/Module/Settings/Channels.php:219 +#: src/Module/Settings/Channels.php:184 src/Module/Settings/Channels.php:205 msgid "Full Text Search" msgstr "" -#: src/Module/Settings/Channels.php:202 src/Module/Settings/Channels.php:223 +#: src/Module/Settings/Channels.php:188 src/Module/Settings/Channels.php:209 msgid "Select all languages that you want to see in this channel." msgstr "" -#: src/Module/Settings/Channels.php:204 +#: src/Module/Settings/Channels.php:190 msgid "Delete channel" msgstr "" -#: src/Module/Settings/Channels.php:204 +#: src/Module/Settings/Channels.php:190 msgid "Check to delete this entry from the channel list" msgstr "" -#: src/Module/Settings/Channels.php:211 +#: src/Module/Settings/Channels.php:197 msgid "Short name for the channel. It is displayed on the channels widget." msgstr "" -#: src/Module/Settings/Channels.php:212 +#: src/Module/Settings/Channels.php:198 msgid "This should describe the content of the channel in a few word." msgstr "" -#: src/Module/Settings/Channels.php:213 +#: src/Module/Settings/Channels.php:199 msgid "" "When you want to access this channel via an access key, you can define it " "here. Pay attention to not use an already used one." msgstr "" -#: src/Module/Settings/Channels.php:214 +#: src/Module/Settings/Channels.php:200 msgid "Select a circle or channel, that your channel should be based on." msgstr "" -#: src/Module/Settings/Channels.php:215 +#: src/Module/Settings/Channels.php:201 msgid "" "Comma separated list of tags. A post will be used when it contains any of " "the listed tags." msgstr "" -#: src/Module/Settings/Channels.php:216 +#: src/Module/Settings/Channels.php:202 msgid "" "Comma separated list of tags. If a post contain any of these tags, then it " "will not be part of nthis channel." msgstr "" -#: src/Module/Settings/Channels.php:217 +#: src/Module/Settings/Channels.php:203 msgid "" "Minimum post size. Leave empty for no minimum size. The size is calculated " "without links, attached posts, mentions or hashtags." msgstr "" -#: src/Module/Settings/Channels.php:218 +#: src/Module/Settings/Channels.php:204 msgid "" "Maximum post size. Leave empty for no maximum size. The size is calculated " "without links, attached posts, mentions or hashtags." msgstr "" -#: src/Module/Settings/Channels.php:219 +#: src/Module/Settings/Channels.php:205 #, php-format msgid "" "Search terms for the body, supports the \"boolean mode\" operators from " @@ -10508,600 +10489,589 @@ msgid "" "keywords: %s" msgstr "" -#: src/Module/Settings/Channels.php:220 +#: src/Module/Settings/Channels.php:206 msgid "Check to display images in the channel." msgstr "" -#: src/Module/Settings/Channels.php:221 +#: src/Module/Settings/Channels.php:207 msgid "Check to display videos in the channel." msgstr "" -#: src/Module/Settings/Channels.php:222 +#: src/Module/Settings/Channels.php:208 msgid "Check to display audio in the channel." msgstr "" -#: src/Module/Settings/Channels.php:227 +#: src/Module/Settings/Channels.php:213 msgid "Add new entry to the channel list" msgstr "" -#: src/Module/Settings/Channels.php:228 +#: src/Module/Settings/Channels.php:214 msgid "Add" msgstr "Dodaj" -#: src/Module/Settings/Channels.php:230 +#: src/Module/Settings/Channels.php:216 msgid "Current Entries in the channel list" msgstr "" -#: src/Module/Settings/Channels.php:233 +#: src/Module/Settings/Channels.php:219 msgid "Delete entry from the channel list" msgstr "" -#: src/Module/Settings/Channels.php:234 +#: src/Module/Settings/Channels.php:220 msgid "Delete entry from the channel list?" msgstr "" -#: src/Module/Settings/Connectors.php:122 +#: src/Module/Settings/Connectors.php:108 msgid "Failed to connect with email account using the settings provided." msgstr "Połączenie z kontem email używając wybranych ustawień nie powiodło się." -#: src/Module/Settings/Connectors.php:169 -#: src/Module/Settings/Connectors.php:170 +#: src/Module/Settings/Connectors.php:155 +#: src/Module/Settings/Connectors.php:156 msgid "Diaspora (Socialhome, Hubzilla)" msgstr "Diaspora (Socialhome, Hubzilla)" -#: src/Module/Settings/Connectors.php:169 -#: src/Module/Settings/Connectors.php:173 +#: src/Module/Settings/Connectors.php:155 #, php-format msgid "Built-in support for %s connectivity is enabled" msgstr "" -#: src/Module/Settings/Connectors.php:170 -#: src/Module/Settings/Connectors.php:172 +#: src/Module/Settings/Connectors.php:156 #, php-format msgid "Built-in support for %s connectivity is disabled" msgstr "" -#: src/Module/Settings/Connectors.php:172 -#: src/Module/Settings/Connectors.php:173 -msgid "OStatus (GNU Social)" -msgstr "OStatus (GNU Social)" - -#: src/Module/Settings/Connectors.php:185 +#: src/Module/Settings/Connectors.php:167 msgid "Email access is disabled on this site." msgstr "Dostęp do e-maila jest wyłączony na tej stronie." -#: src/Module/Settings/Connectors.php:200 -#: src/Module/Settings/Connectors.php:254 +#: src/Module/Settings/Connectors.php:182 +#: src/Module/Settings/Connectors.php:233 msgid "None" msgstr "Brak" -#: src/Module/Settings/Connectors.php:204 +#: src/Module/Settings/Connectors.php:186 msgid "Default (Mastodon will display the title and a link to the post)" msgstr "" -#: src/Module/Settings/Connectors.php:205 +#: src/Module/Settings/Connectors.php:187 msgid "" "Use the summary (Mastodon and some others will treat it as content warning)" msgstr "" -#: src/Module/Settings/Connectors.php:206 +#: src/Module/Settings/Connectors.php:188 msgid "Embed the title in the body" msgstr "" -#: src/Module/Settings/Connectors.php:218 +#: src/Module/Settings/Connectors.php:199 msgid "General Social Media Settings" msgstr "Ogólne ustawienia mediów społecznościowych" -#: src/Module/Settings/Connectors.php:221 +#: src/Module/Settings/Connectors.php:202 msgid "Followed content scope" msgstr "Obserwowany zakres treści" -#: src/Module/Settings/Connectors.php:223 +#: src/Module/Settings/Connectors.php:204 msgid "" "By default, conversations in which your follows participated but didn't " "start will be shown in your timeline. You can turn this behavior off, or " "expand it to the conversations in which your follows liked a post." msgstr "Domyślnie na Twojej osi czasu będą pokazywane wątki, w których uczestniczyli Twoi obserwowani, ale które nie zostały przez nich rozpoczęte. Możesz wyłączyć tę funkcję lub rozszerzyć ją na konwersacje, w których Twoi obserwujący polubili dany wpis." -#: src/Module/Settings/Connectors.php:225 +#: src/Module/Settings/Connectors.php:206 msgid "Only conversations my follows started" msgstr "Tylko rozmowy, które rozpoczęli moi obserwowani" -#: src/Module/Settings/Connectors.php:226 +#: src/Module/Settings/Connectors.php:207 msgid "Conversations my follows started or commented on (default)" msgstr "Rozmowy, które rozpoczęli moi obserwowani, lub które komentowali (domyślnie)" -#: src/Module/Settings/Connectors.php:227 +#: src/Module/Settings/Connectors.php:208 msgid "Any conversation my follows interacted with, including likes" msgstr "Wszelkie rozmowy, z którymi wchodziłem w interakcję, w tym polubienia" -#: src/Module/Settings/Connectors.php:230 +#: src/Module/Settings/Connectors.php:211 msgid "Collapse sensitive posts" msgstr "" -#: src/Module/Settings/Connectors.php:230 +#: src/Module/Settings/Connectors.php:211 msgid "" "If a post is marked as \"sensitive\", it will be displayed in a collapsed " "state, if this option is enabled." msgstr "" -#: src/Module/Settings/Connectors.php:231 +#: src/Module/Settings/Connectors.php:212 msgid "Enable intelligent shortening" msgstr "Włącz inteligentne skracanie" -#: src/Module/Settings/Connectors.php:231 +#: src/Module/Settings/Connectors.php:212 msgid "" "Normally the system tries to find the best link to add to shortened posts. " "If disabled, every shortened post will always point to the original " "friendica post." msgstr "Zwykle system próbuje znaleźć najlepszy odnośnik do dodania do skróconych postów. Jeśli wyłączone, każdy skrócony wpis będzie zawsze wskazywał na oryginalny wpis friendica." -#: src/Module/Settings/Connectors.php:232 +#: src/Module/Settings/Connectors.php:213 msgid "Enable simple text shortening" msgstr "Włącz proste skracanie tekstu" -#: src/Module/Settings/Connectors.php:232 +#: src/Module/Settings/Connectors.php:213 msgid "" "Normally the system shortens posts at the next line feed. If this option is " "enabled then the system will shorten the text at the maximum character " "limit." msgstr "Zwykle system skraca wpisy przy następnym wysunięciu wiersza. Jeśli ta opcja jest włączona, system skróci tekst do maksymalnego limitu znaków." -#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Connectors.php:214 msgid "Attach the link title" msgstr "Dołącz tytuł linku" -#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Connectors.php:214 msgid "" "When activated, the title of the attached link will be added as a title on " "posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that" " share feed content." msgstr "Po aktywacji tytuł dołączonego linku zostanie dodany jako tytuł postów do Diaspory. Jest to szczególnie pomocne w przypadku kontaktów „zdalnych”, które udostępniają treść kanału." -#: src/Module/Settings/Connectors.php:234 +#: src/Module/Settings/Connectors.php:215 msgid "API: Use spoiler field as title" msgstr "" -#: src/Module/Settings/Connectors.php:234 +#: src/Module/Settings/Connectors.php:215 msgid "" "When activated, the \"spoiler_text\" field in the API will be used for the " "title on standalone posts. When deactivated it will be used for spoiler " "text. For comments it will always be used for spoiler text." msgstr "" -#: src/Module/Settings/Connectors.php:235 +#: src/Module/Settings/Connectors.php:216 msgid "API: Automatically links at the end of the post as attached posts" msgstr "" -#: src/Module/Settings/Connectors.php:235 +#: src/Module/Settings/Connectors.php:216 msgid "" "When activated, added links at the end of the post react the same way as " "added links in the web interface." msgstr "" -#: src/Module/Settings/Connectors.php:236 +#: src/Module/Settings/Connectors.php:217 msgid "Article Mode" msgstr "" -#: src/Module/Settings/Connectors.php:236 +#: src/Module/Settings/Connectors.php:217 msgid "" "Controls how posts with titles are transmitted. Mastodon and its forks don't" " display the content of these posts if the post is created in the correct " "(default) way." msgstr "" -#: src/Module/Settings/Connectors.php:237 +#: src/Module/Settings/Connectors.php:218 msgid "Your legacy ActivityPub/GNU Social account" msgstr "Twoje stare konto ActivityPub/GNU Social" -#: src/Module/Settings/Connectors.php:237 +#: src/Module/Settings/Connectors.php:218 msgid "" "If you enter your old account name from an ActivityPub based system or your " "GNU Social/Statusnet account name here (in the format user@domain.tld), your" " contacts will be added automatically. The field will be emptied when done." msgstr "Jeśli wprowadzisz tutaj swoją starą nazwę konta z systemu opartego na ActivityPub lub nazwę konta GNU Social/Statusnet (w formacie użytkownik@domena.tld), Twoje kontakty zostaną dodane automatycznie. Po zakończeniu pole zostanie opróżnione." -#: src/Module/Settings/Connectors.php:239 -msgid "Repair OStatus subscriptions" -msgstr "Napraw subskrypcje OStatus" - -#: src/Module/Settings/Connectors.php:243 +#: src/Module/Settings/Connectors.php:222 msgid "Email/Mailbox Setup" msgstr "Ustawienia emaila/skrzynki mailowej" -#: src/Module/Settings/Connectors.php:244 +#: src/Module/Settings/Connectors.php:223 msgid "" "If you wish to communicate with email contacts using this service " "(optional), please specify how to connect to your mailbox." msgstr "Jeśli chcesz komunikować się z kontaktami e-mail za pomocą tej usługi (opcjonalnie), określ sposób łączenia się ze skrzynką pocztową." -#: src/Module/Settings/Connectors.php:245 +#: src/Module/Settings/Connectors.php:224 msgid "Last successful email check:" msgstr "Ostatni sprawdzony e-mail:" -#: src/Module/Settings/Connectors.php:247 +#: src/Module/Settings/Connectors.php:226 msgid "IMAP server name:" msgstr "Nazwa serwera IMAP:" -#: src/Module/Settings/Connectors.php:248 +#: src/Module/Settings/Connectors.php:227 msgid "IMAP port:" msgstr "Port IMAP:" -#: src/Module/Settings/Connectors.php:249 +#: src/Module/Settings/Connectors.php:228 msgid "Security:" msgstr "Bezpieczeństwo:" -#: src/Module/Settings/Connectors.php:250 +#: src/Module/Settings/Connectors.php:229 msgid "Email login name:" msgstr "Nazwa logowania e-mail:" -#: src/Module/Settings/Connectors.php:251 +#: src/Module/Settings/Connectors.php:230 msgid "Email password:" msgstr "Hasło e-mail:" -#: src/Module/Settings/Connectors.php:252 +#: src/Module/Settings/Connectors.php:231 msgid "Reply-to address:" msgstr "Adres zwrotny:" -#: src/Module/Settings/Connectors.php:253 +#: src/Module/Settings/Connectors.php:232 msgid "Send public posts to all email contacts:" msgstr "Wyślij publiczny wpis do wszystkich kontaktów e-mail:" -#: src/Module/Settings/Connectors.php:254 +#: src/Module/Settings/Connectors.php:233 msgid "Action after import:" msgstr "Akcja po zaimportowaniu:" -#: src/Module/Settings/Connectors.php:254 +#: src/Module/Settings/Connectors.php:233 msgid "Move to folder" msgstr "Przenieś do katalogu" -#: src/Module/Settings/Connectors.php:255 +#: src/Module/Settings/Connectors.php:234 msgid "Move to folder:" msgstr "Przenieś do katalogu:" -#: src/Module/Settings/Delegation.php:73 +#: src/Module/Settings/Delegation.php:59 msgid "Delegation successfully granted." msgstr "Delegacja została pomyślnie przyznana." -#: src/Module/Settings/Delegation.php:75 +#: src/Module/Settings/Delegation.php:61 msgid "Parent user not found, unavailable or password doesn't match." msgstr "Nie znaleziono użytkownika nadrzędnego, jest on niedostępny lub hasło nie pasuje." -#: src/Module/Settings/Delegation.php:79 +#: src/Module/Settings/Delegation.php:65 msgid "Delegation successfully revoked." msgstr "Delegacja została pomyślnie odwołana." -#: src/Module/Settings/Delegation.php:98 -#: src/Module/Settings/Delegation.php:120 +#: src/Module/Settings/Delegation.php:84 +#: src/Module/Settings/Delegation.php:106 msgid "" "Delegated administrators can view but not change delegation permissions." msgstr "Delegowani administratorzy mogą przeglądać uprawnienia do delegowania, ale nie mogą ich zmieniać." -#: src/Module/Settings/Delegation.php:112 +#: src/Module/Settings/Delegation.php:98 msgid "Delegate user not found." msgstr "Nie znaleziono delegowanego użytkownika." -#: src/Module/Settings/Delegation.php:169 +#: src/Module/Settings/Delegation.php:155 msgid "No parent user" msgstr "Brak nadrzędnego użytkownika" -#: src/Module/Settings/Delegation.php:180 -#: src/Module/Settings/Delegation.php:191 +#: src/Module/Settings/Delegation.php:166 +#: src/Module/Settings/Delegation.php:177 msgid "Parent User" msgstr "Użytkownik nadrzędny" -#: src/Module/Settings/Delegation.php:188 +#: src/Module/Settings/Delegation.php:174 msgid "Additional Accounts" msgstr "Dodatkowe konta" -#: src/Module/Settings/Delegation.php:189 +#: src/Module/Settings/Delegation.php:175 msgid "" "Register additional accounts that are automatically connected to your " "existing account so you can manage them from this account." msgstr "Zarejestruj dodatkowe konta, które są automatycznie połączone z istniejącym kontem, aby móc nimi zarządzać z tego konta." -#: src/Module/Settings/Delegation.php:190 +#: src/Module/Settings/Delegation.php:176 msgid "Register an additional account" msgstr "Zarejestruj dodatkowe konto" -#: src/Module/Settings/Delegation.php:192 +#: src/Module/Settings/Delegation.php:178 msgid "" "Parent users have total control about this account, including the account " "settings. Please double check whom you give this access." msgstr "Użytkownicy nadrzędni mają pełną kontrolę nad tym kontem, w tym także ustawienia konta. Sprawdź dokładnie, komu przyznasz ten dostęp." -#: src/Module/Settings/Delegation.php:195 +#: src/Module/Settings/Delegation.php:181 msgid "Delegates" msgstr "Oddeleguj" -#: src/Module/Settings/Delegation.php:196 +#: src/Module/Settings/Delegation.php:182 msgid "" "Delegates are able to manage all aspects of this account/page except for " "basic account settings. Please do not delegate your personal account to " "anybody that you do not trust completely." msgstr "Delegaci mogą zarządzać wszystkimi aspektami tego konta/strony, z wyjątkiem podstawowych ustawień konta. Nie przekazuj swojego konta osobistego nikomu, komu nie ufasz całkowicie." -#: src/Module/Settings/Delegation.php:197 +#: src/Module/Settings/Delegation.php:183 msgid "Existing Page Delegates" msgstr "Obecni delegaci stron" -#: src/Module/Settings/Delegation.php:198 +#: src/Module/Settings/Delegation.php:184 msgid "Potential Delegates" msgstr "Potencjalni delegaci" -#: src/Module/Settings/Delegation.php:199 +#: src/Module/Settings/Delegation.php:185 msgid "No entries." msgstr "Brak wpisów." -#: src/Module/Settings/Display.php:183 +#: src/Module/Settings/Display.php:169 msgid "The theme you chose isn't available." msgstr "Wybrany motyw jest niedostępny." -#: src/Module/Settings/Display.php:223 +#: src/Module/Settings/Display.php:209 #, php-format msgid "%s - (Unsupported)" msgstr "%s - (Nieobsługiwane)" -#: src/Module/Settings/Display.php:260 +#: src/Module/Settings/Display.php:246 msgid "No preview" msgstr "" -#: src/Module/Settings/Display.php:261 +#: src/Module/Settings/Display.php:247 msgid "No image" msgstr "" -#: src/Module/Settings/Display.php:262 +#: src/Module/Settings/Display.php:248 msgid "Small Image" msgstr "" -#: src/Module/Settings/Display.php:263 +#: src/Module/Settings/Display.php:249 msgid "Large Image" msgstr "" -#: src/Module/Settings/Display.php:308 +#: src/Module/Settings/Display.php:294 msgid "Display Settings" msgstr "Ustawienia wyglądu" -#: src/Module/Settings/Display.php:310 +#: src/Module/Settings/Display.php:296 msgid "General Theme Settings" msgstr "Ogólne ustawienia motywu" -#: src/Module/Settings/Display.php:311 +#: src/Module/Settings/Display.php:297 msgid "Custom Theme Settings" msgstr "Niestandardowe ustawienia motywów" -#: src/Module/Settings/Display.php:312 +#: src/Module/Settings/Display.php:298 msgid "Content Settings" msgstr "Ustawienia zawartości" -#: src/Module/Settings/Display.php:313 view/theme/duepuntozero/config.php:86 -#: view/theme/frio/config.php:151 view/theme/quattro/config.php:88 -#: view/theme/vier/config.php:136 +#: src/Module/Settings/Display.php:299 view/theme/duepuntozero/config.php:74 +#: view/theme/frio/config.php:139 view/theme/quattro/config.php:76 +#: view/theme/vier/config.php:124 msgid "Theme settings" msgstr "Ustawienia motywu" -#: src/Module/Settings/Display.php:314 +#: src/Module/Settings/Display.php:300 msgid "Timelines" msgstr "" -#: src/Module/Settings/Display.php:321 +#: src/Module/Settings/Display.php:307 msgid "Display Theme:" msgstr "Wyświetl motyw:" -#: src/Module/Settings/Display.php:322 +#: src/Module/Settings/Display.php:308 msgid "Mobile Theme:" msgstr "Motyw dla urządzeń mobilnych:" -#: src/Module/Settings/Display.php:325 +#: src/Module/Settings/Display.php:311 msgid "Number of items to display per page:" msgstr "Liczba elementów do wyświetlenia na stronie:" -#: src/Module/Settings/Display.php:325 src/Module/Settings/Display.php:326 +#: src/Module/Settings/Display.php:311 src/Module/Settings/Display.php:312 msgid "Maximum of 100 items" msgstr "Maksymalnie 100 elementów" -#: src/Module/Settings/Display.php:326 +#: src/Module/Settings/Display.php:312 msgid "Number of items to display per page when viewed from mobile device:" msgstr "Liczba elementów do wyświetlenia na stronie podczas przeglądania z urządzenia mobilnego:" -#: src/Module/Settings/Display.php:327 +#: src/Module/Settings/Display.php:313 msgid "Update browser every xx seconds" msgstr "Odświeżaj stronę co xx sekund" -#: src/Module/Settings/Display.php:327 +#: src/Module/Settings/Display.php:313 msgid "Minimum of 10 seconds. Enter -1 to disable it." msgstr "Minimum 10 sekund. Wprowadź -1, aby go wyłączyć." -#: src/Module/Settings/Display.php:328 +#: src/Module/Settings/Display.php:314 msgid "Display emoticons" msgstr "Wyświetl emotikony" -#: src/Module/Settings/Display.php:328 +#: src/Module/Settings/Display.php:314 msgid "When enabled, emoticons are replaced with matching symbols." msgstr "Po włączeniu emotikony są zastępowane pasującymi symbolami." -#: src/Module/Settings/Display.php:329 +#: src/Module/Settings/Display.php:315 msgid "Infinite scroll" msgstr "Nieskończone przewijanie" -#: src/Module/Settings/Display.php:329 +#: src/Module/Settings/Display.php:315 msgid "Automatic fetch new items when reaching the page end." msgstr "Automatyczne pobieranie nowych elementów po osiągnięciu końca strony." -#: src/Module/Settings/Display.php:330 +#: src/Module/Settings/Display.php:316 msgid "Enable Smart Threading" msgstr "Włącz inteligentne wątkowanie" -#: src/Module/Settings/Display.php:330 +#: src/Module/Settings/Display.php:316 msgid "Enable the automatic suppression of extraneous thread indentation." msgstr "Włącz automatyczne tłumienie obcych wcięć wątku." -#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/Display.php:317 msgid "Display the Dislike feature" msgstr "Wyświetl funkcję \"Nie lubię\"" -#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/Display.php:317 msgid "" "Display the Dislike button and dislike reactions on posts and comments." msgstr "Wyświetlaj przycisk \"Nie lubię\" i reakcje na wpisy i komentarze." -#: src/Module/Settings/Display.php:332 +#: src/Module/Settings/Display.php:318 msgid "Display the resharer" msgstr "Wyświetl udostępniającego" -#: src/Module/Settings/Display.php:332 +#: src/Module/Settings/Display.php:318 msgid "Display the first resharer as icon and text on a reshared item." msgstr "Wyświetlaj pierwszego udostępniającego jako ikonę i tekst na elemencie udostępnianym dalej." -#: src/Module/Settings/Display.php:333 +#: src/Module/Settings/Display.php:319 msgid "Stay local" msgstr "Pozostań lokalny" -#: src/Module/Settings/Display.php:333 +#: src/Module/Settings/Display.php:319 msgid "Don't go to a remote system when following a contact link." msgstr "Nie przechodź do zdalnego systemu podczas korzystania z łącza kontaktowego." -#: src/Module/Settings/Display.php:334 +#: src/Module/Settings/Display.php:320 msgid "Show the post deletion checkbox" msgstr "" -#: src/Module/Settings/Display.php:334 +#: src/Module/Settings/Display.php:320 msgid "Display the checkbox for the post deletion on the network page." msgstr "" -#: src/Module/Settings/Display.php:335 +#: src/Module/Settings/Display.php:321 msgid "DIsplay the event list" msgstr "" -#: src/Module/Settings/Display.php:335 +#: src/Module/Settings/Display.php:321 msgid "Display the birthday reminder and event list on the network page." msgstr "" -#: src/Module/Settings/Display.php:336 +#: src/Module/Settings/Display.php:322 msgid "Link preview mode" msgstr "" -#: src/Module/Settings/Display.php:336 +#: src/Module/Settings/Display.php:322 msgid "Appearance of the link preview that is added to each post with a link." msgstr "" -#: src/Module/Settings/Display.php:341 +#: src/Module/Settings/Display.php:327 msgid "Bookmark" msgstr "" -#: src/Module/Settings/Display.php:343 +#: src/Module/Settings/Display.php:329 msgid "" "Enable timelines that you want to see in the channels widget. Bookmark " "timelines that you want to see in the top menu." msgstr "" -#: src/Module/Settings/Display.php:345 +#: src/Module/Settings/Display.php:331 msgid "Channel languages:" msgstr "" -#: src/Module/Settings/Display.php:345 +#: src/Module/Settings/Display.php:331 msgid "Select all languages that you want to see in your channels." msgstr "" -#: src/Module/Settings/Display.php:347 +#: src/Module/Settings/Display.php:333 msgid "Beginning of week:" msgstr "Początek tygodnia:" -#: src/Module/Settings/Display.php:348 +#: src/Module/Settings/Display.php:334 msgid "Default calendar view:" msgstr "" -#: src/Module/Settings/Features.php:73 +#: src/Module/Settings/Features.php:59 msgid "Additional Features" msgstr "Dodatkowe funkcje" -#: src/Module/Settings/OAuth.php:71 +#: src/Module/Settings/OAuth.php:57 msgid "Connected Apps" msgstr "Powiązane aplikacje" -#: src/Module/Settings/OAuth.php:75 +#: src/Module/Settings/OAuth.php:61 msgid "Remove authorization" msgstr "Odwołaj upoważnienie" -#: src/Module/Settings/Profile/Index.php:116 +#: src/Module/Settings/Profile/Index.php:102 msgid "Display Name is required." msgstr "" -#: src/Module/Settings/Profile/Index.php:170 +#: src/Module/Settings/Profile/Index.php:156 msgid "Profile couldn't be updated." msgstr "Profil nie mógł zostać zaktualizowany." -#: src/Module/Settings/Profile/Index.php:210 -#: src/Module/Settings/Profile/Index.php:231 +#: src/Module/Settings/Profile/Index.php:196 +#: src/Module/Settings/Profile/Index.php:217 msgid "Label:" msgstr "Etykieta:" -#: src/Module/Settings/Profile/Index.php:211 -#: src/Module/Settings/Profile/Index.php:232 +#: src/Module/Settings/Profile/Index.php:197 +#: src/Module/Settings/Profile/Index.php:218 msgid "Value:" msgstr "Wartość:" -#: src/Module/Settings/Profile/Index.php:222 -#: src/Module/Settings/Profile/Index.php:243 +#: src/Module/Settings/Profile/Index.php:208 +#: src/Module/Settings/Profile/Index.php:229 msgid "Field Permissions" msgstr "Uprawnienia pola" -#: src/Module/Settings/Profile/Index.php:223 -#: src/Module/Settings/Profile/Index.php:244 +#: src/Module/Settings/Profile/Index.php:209 +#: src/Module/Settings/Profile/Index.php:230 msgid "(click to open/close)" msgstr "(kliknij by otworzyć/zamknąć)" -#: src/Module/Settings/Profile/Index.php:229 +#: src/Module/Settings/Profile/Index.php:215 msgid "Add a new profile field" msgstr "Dodaj nowe pole profilu" -#: src/Module/Settings/Profile/Index.php:252 +#: src/Module/Settings/Profile/Index.php:238 msgid "" "The homepage is verified. A rel=\"me\" link back to your Friendica profile " "page was found on the homepage." msgstr "" -#: src/Module/Settings/Profile/Index.php:254 +#: src/Module/Settings/Profile/Index.php:240 #, php-format msgid "" "To verify your homepage, add a rel=\"me\" link to it, pointing to your " "profile URL (%s)." msgstr "" -#: src/Module/Settings/Profile/Index.php:260 +#: src/Module/Settings/Profile/Index.php:246 msgid "Profile Actions" msgstr "Akcje profilowe" -#: src/Module/Settings/Profile/Index.php:261 +#: src/Module/Settings/Profile/Index.php:247 msgid "Edit Profile Details" msgstr "Edytuj informacje o profilu" -#: src/Module/Settings/Profile/Index.php:263 +#: src/Module/Settings/Profile/Index.php:249 msgid "Change Profile Photo" msgstr "Zmień zdjęcie profilowe" -#: src/Module/Settings/Profile/Index.php:266 +#: src/Module/Settings/Profile/Index.php:252 msgid "Profile picture" msgstr "Zdjęcie profilowe" -#: src/Module/Settings/Profile/Index.php:267 +#: src/Module/Settings/Profile/Index.php:253 msgid "Location" msgstr "Lokalizacja" -#: src/Module/Settings/Profile/Index.php:268 src/Util/Temporal.php:97 -#: src/Util/Temporal.php:99 +#: src/Module/Settings/Profile/Index.php:254 src/Util/Temporal.php:83 +#: src/Util/Temporal.php:85 msgid "Miscellaneous" msgstr "Różne" -#: src/Module/Settings/Profile/Index.php:269 +#: src/Module/Settings/Profile/Index.php:255 msgid "Custom Profile Fields" msgstr "Niestandardowe pola profilu" -#: src/Module/Settings/Profile/Index.php:270 src/Module/Welcome.php:58 +#: src/Module/Settings/Profile/Index.php:256 src/Module/Welcome.php:44 msgid "Upload Profile Photo" msgstr "Wyślij zdjęcie profilowe" -#: src/Module/Settings/Profile/Index.php:271 +#: src/Module/Settings/Profile/Index.php:257 #, php-format msgid "" "Custom fields appear on your profile page.
\n" @@ -11111,396 +11081,396 @@ msgid "" "\t\t\t\tNon-public fields can only be seen by the selected Friendica contacts or the Friendica contacts in the selected circles.
" msgstr "" -#: src/Module/Settings/Profile/Index.php:291 +#: src/Module/Settings/Profile/Index.php:277 msgid "Street Address:" msgstr "Ulica:" -#: src/Module/Settings/Profile/Index.php:292 +#: src/Module/Settings/Profile/Index.php:278 msgid "Locality/City:" msgstr "Miasto:" -#: src/Module/Settings/Profile/Index.php:293 +#: src/Module/Settings/Profile/Index.php:279 msgid "Region/State:" msgstr "Województwo/Stan:" -#: src/Module/Settings/Profile/Index.php:294 +#: src/Module/Settings/Profile/Index.php:280 msgid "Postal/Zip Code:" msgstr "Kod pocztowy:" -#: src/Module/Settings/Profile/Index.php:295 +#: src/Module/Settings/Profile/Index.php:281 msgid "Country:" msgstr "Kraj:" -#: src/Module/Settings/Profile/Index.php:297 +#: src/Module/Settings/Profile/Index.php:283 msgid "XMPP (Jabber) address:" msgstr "Adres XMPP (Jabber):" -#: src/Module/Settings/Profile/Index.php:297 +#: src/Module/Settings/Profile/Index.php:283 msgid "" "The XMPP address will be published so that people can follow you there." msgstr "Adres XMPP zostanie opublikowany, aby ludzie mogli Cię tam śledzić." -#: src/Module/Settings/Profile/Index.php:298 +#: src/Module/Settings/Profile/Index.php:284 msgid "Matrix (Element) address:" msgstr "Adres Matrix (Element):" -#: src/Module/Settings/Profile/Index.php:298 +#: src/Module/Settings/Profile/Index.php:284 msgid "" "The Matrix address will be published so that people can follow you there." msgstr "Adres Matrix zostanie opublikowany, aby ludzie mogli Cię tam śledzić." -#: src/Module/Settings/Profile/Index.php:299 +#: src/Module/Settings/Profile/Index.php:285 msgid "Homepage URL:" msgstr "Adres URL strony domowej:" -#: src/Module/Settings/Profile/Index.php:300 +#: src/Module/Settings/Profile/Index.php:286 msgid "Public Keywords:" msgstr "Publiczne słowa kluczowe:" -#: src/Module/Settings/Profile/Index.php:300 +#: src/Module/Settings/Profile/Index.php:286 msgid "(Used for suggesting potential friends, can be seen by others)" msgstr "(Używany do sugerowania potencjalnych znajomych, jest widoczny dla innych)" -#: src/Module/Settings/Profile/Index.php:301 +#: src/Module/Settings/Profile/Index.php:287 msgid "Private Keywords:" msgstr "Prywatne słowa kluczowe:" -#: src/Module/Settings/Profile/Index.php:301 +#: src/Module/Settings/Profile/Index.php:287 msgid "(Used for searching profiles, never shown to others)" msgstr "(Używany do wyszukiwania profili, niepokazywany innym)" -#: src/Module/Settings/Profile/Photo/Crop.php:107 -#: src/Module/Settings/Profile/Photo/Crop.php:125 -#: src/Module/Settings/Profile/Photo/Crop.php:143 -#: src/Module/Settings/Profile/Photo/Index.php:100 +#: src/Module/Settings/Profile/Photo/Crop.php:93 +#: src/Module/Settings/Profile/Photo/Crop.php:111 +#: src/Module/Settings/Profile/Photo/Crop.php:129 +#: src/Module/Settings/Profile/Photo/Index.php:86 #, php-format msgid "Image size reduction [%s] failed." msgstr "Redukcja rozmiaru obrazka [%s] nie powiodła się." -#: src/Module/Settings/Profile/Photo/Crop.php:150 +#: src/Module/Settings/Profile/Photo/Crop.php:136 msgid "" "Shift-reload the page or clear browser cache if the new photo does not " "display immediately." msgstr "Ponownie załaduj stronę lub wyczyść pamięć podręczną przeglądarki, jeśli nowe zdjęcie nie pojawi się natychmiast." -#: src/Module/Settings/Profile/Photo/Crop.php:155 +#: src/Module/Settings/Profile/Photo/Crop.php:141 msgid "Unable to process image" msgstr "Nie udało się przetworzyć obrazu" -#: src/Module/Settings/Profile/Photo/Crop.php:174 +#: src/Module/Settings/Profile/Photo/Crop.php:160 msgid "Photo not found." msgstr "Nie znaleziono zdjęcia." -#: src/Module/Settings/Profile/Photo/Crop.php:196 +#: src/Module/Settings/Profile/Photo/Crop.php:182 msgid "Profile picture successfully updated." msgstr "Zdjęcie profilowe zostało pomyślnie zaktualizowane." -#: src/Module/Settings/Profile/Photo/Crop.php:222 -#: src/Module/Settings/Profile/Photo/Crop.php:226 +#: src/Module/Settings/Profile/Photo/Crop.php:208 +#: src/Module/Settings/Profile/Photo/Crop.php:212 msgid "Crop Image" msgstr "Przytnij zdjęcie" -#: src/Module/Settings/Profile/Photo/Crop.php:223 +#: src/Module/Settings/Profile/Photo/Crop.php:209 msgid "Please adjust the image cropping for optimum viewing." msgstr "Dostosuj kadrowanie obrazu, aby uzyskać optymalny obraz." -#: src/Module/Settings/Profile/Photo/Crop.php:225 +#: src/Module/Settings/Profile/Photo/Crop.php:211 msgid "Use Image As Is" msgstr "Użyj obrazu takim, jaki jest" -#: src/Module/Settings/Profile/Photo/Index.php:46 +#: src/Module/Settings/Profile/Photo/Index.php:32 msgid "Missing uploaded image." msgstr " Brak przesłanego obrazu." -#: src/Module/Settings/Profile/Photo/Index.php:123 +#: src/Module/Settings/Profile/Photo/Index.php:109 msgid "Profile Picture Settings" msgstr "Ustawienia zdjęcia profilowego" -#: src/Module/Settings/Profile/Photo/Index.php:124 +#: src/Module/Settings/Profile/Photo/Index.php:110 msgid "Current Profile Picture" msgstr "Bieżące zdjęcie profilowe" -#: src/Module/Settings/Profile/Photo/Index.php:125 +#: src/Module/Settings/Profile/Photo/Index.php:111 msgid "Upload Profile Picture" msgstr "Prześlij zdjęcie profilowe" -#: src/Module/Settings/Profile/Photo/Index.php:126 +#: src/Module/Settings/Profile/Photo/Index.php:112 msgid "Upload Picture:" msgstr "Załaduj zdjęcie:" -#: src/Module/Settings/Profile/Photo/Index.php:131 +#: src/Module/Settings/Profile/Photo/Index.php:117 msgid "or" msgstr "lub" -#: src/Module/Settings/Profile/Photo/Index.php:133 +#: src/Module/Settings/Profile/Photo/Index.php:119 msgid "skip this step" msgstr "pomiń ten krok" -#: src/Module/Settings/Profile/Photo/Index.php:135 +#: src/Module/Settings/Profile/Photo/Index.php:121 msgid "select a photo from your photo albums" msgstr "wybierz zdjęcie z twojego albumu" -#: src/Module/Settings/RemoveMe.php:76 +#: src/Module/Settings/RemoveMe.php:62 msgid "" "There was a validation error, please make sure you're logged in with the " "account you want to remove and try again." msgstr "" -#: src/Module/Settings/RemoveMe.php:76 +#: src/Module/Settings/RemoveMe.php:62 msgid "If this error persists, please contact your administrator." msgstr "" -#: src/Module/Settings/RemoveMe.php:90 -#: src/Navigation/Notifications/Repository/Notify.php:471 -#: src/Navigation/Notifications/Repository/Notify.php:492 +#: src/Module/Settings/RemoveMe.php:76 +#: src/Navigation/Notifications/Repository/Notify.php:457 +#: src/Navigation/Notifications/Repository/Notify.php:478 msgid "[Friendica System Notify]" msgstr "[Powiadomienie Systemu Friendica]" -#: src/Module/Settings/RemoveMe.php:90 +#: src/Module/Settings/RemoveMe.php:76 msgid "User deleted their account" msgstr "Użytkownik usunął swoje konto" -#: src/Module/Settings/RemoveMe.php:91 +#: src/Module/Settings/RemoveMe.php:77 msgid "" "On your Friendica node an user deleted their account. Please ensure that " "their data is removed from the backups." msgstr "W twoim węźle Friendica użytkownik usunął swoje konto. Upewnij się, że ich dane zostały usunięte z kopii zapasowych." -#: src/Module/Settings/RemoveMe.php:92 +#: src/Module/Settings/RemoveMe.php:78 #, php-format msgid "The user id is %d" msgstr "Identyfikatorem użytkownika jest %d" -#: src/Module/Settings/RemoveMe.php:105 +#: src/Module/Settings/RemoveMe.php:91 msgid "Your account has been successfully removed. Bye bye!" msgstr "" -#: src/Module/Settings/RemoveMe.php:130 +#: src/Module/Settings/RemoveMe.php:116 msgid "Remove My Account" msgstr "Usuń moje konto" -#: src/Module/Settings/RemoveMe.php:131 +#: src/Module/Settings/RemoveMe.php:117 msgid "" "This will completely remove your account. Once this has been done it is not " "recoverable." msgstr "Spowoduje to całkowite usunięcie Twojego konta. Po wykonaniu tej czynności nie można jej cofnąć." -#: src/Module/Settings/RemoveMe.php:136 +#: src/Module/Settings/RemoveMe.php:122 msgid "Please enter your password for verification:" msgstr "Wprowadź hasło w celu weryfikacji:" -#: src/Module/Settings/Server/Action.php:60 +#: src/Module/Settings/Server/Action.php:46 msgid "Do you want to ignore this server?" msgstr "" -#: src/Module/Settings/Server/Action.php:64 +#: src/Module/Settings/Server/Action.php:50 msgid "Do you want to unignore this server?" msgstr "" -#: src/Module/Settings/Server/Action.php:74 -#: src/Module/Settings/Server/Index.php:104 +#: src/Module/Settings/Server/Action.php:60 +#: src/Module/Settings/Server/Index.php:90 msgid "Remote server settings" msgstr "" -#: src/Module/Settings/Server/Action.php:77 +#: src/Module/Settings/Server/Action.php:63 msgid "Server URL" msgstr "" -#: src/Module/Settings/Server/Index.php:78 +#: src/Module/Settings/Server/Index.php:64 msgid "Settings saved" msgstr "" -#: src/Module/Settings/Server/Index.php:105 +#: src/Module/Settings/Server/Index.php:91 msgid "" "Here you can find all the remote servers you have taken individual " "moderation actions against. For a list of servers your node has blocked, " "please check out the Information page." msgstr "" -#: src/Module/Settings/Server/Index.php:110 +#: src/Module/Settings/Server/Index.php:96 msgid "Delete all your settings for the remote server" msgstr "" -#: src/Module/Settings/Server/Index.php:111 +#: src/Module/Settings/Server/Index.php:97 msgid "Save changes" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:69 -#: src/Module/Settings/TwoFactor/Recovery.php:67 -#: src/Module/Settings/TwoFactor/Trusted.php:70 -#: src/Module/Settings/TwoFactor/Verify.php:72 +#: src/Module/Settings/TwoFactor/AppSpecific.php:55 +#: src/Module/Settings/TwoFactor/Recovery.php:53 +#: src/Module/Settings/TwoFactor/Trusted.php:56 +#: src/Module/Settings/TwoFactor/Verify.php:58 msgid "Please enter your password to access this page." msgstr "Wprowadź hasło, aby uzyskać dostęp do tej strony." -#: src/Module/Settings/TwoFactor/AppSpecific.php:87 +#: src/Module/Settings/TwoFactor/AppSpecific.php:73 msgid "App-specific password generation failed: The description is empty." msgstr "Generowanie hasła aplikacji nie powiodło się: Opis jest pusty." -#: src/Module/Settings/TwoFactor/AppSpecific.php:90 +#: src/Module/Settings/TwoFactor/AppSpecific.php:76 msgid "" "App-specific password generation failed: This description already exists." msgstr "Generowanie hasła aplikacji nie powiodło się: Opis ten już istnieje." -#: src/Module/Settings/TwoFactor/AppSpecific.php:94 +#: src/Module/Settings/TwoFactor/AppSpecific.php:80 msgid "New app-specific password generated." msgstr "Nowe hasło specyficzne dla aplikacji." -#: src/Module/Settings/TwoFactor/AppSpecific.php:100 +#: src/Module/Settings/TwoFactor/AppSpecific.php:86 msgid "App-specific passwords successfully revoked." msgstr "Hasła specyficzne dla aplikacji zostały pomyślnie cofnięte." -#: src/Module/Settings/TwoFactor/AppSpecific.php:110 +#: src/Module/Settings/TwoFactor/AppSpecific.php:96 msgid "App-specific password successfully revoked." msgstr "Hasło specyficzne dla aplikacji zostało pomyślnie odwołane." -#: src/Module/Settings/TwoFactor/AppSpecific.php:131 +#: src/Module/Settings/TwoFactor/AppSpecific.php:117 msgid "Two-factor app-specific passwords" msgstr "Dwuskładnikowe hasła aplikacji" -#: src/Module/Settings/TwoFactor/AppSpecific.php:133 +#: src/Module/Settings/TwoFactor/AppSpecific.php:119 msgid "" "App-specific passwords are randomly generated passwords used instead your" " regular password to authenticate your account on third-party applications " "that don't support two-factor authentication.
" msgstr "Hasła aplikacji to losowo generowane hasła używane zamiast zwykłego hasła do uwierzytelniania konta w aplikacjach innych firm, które nie obsługują uwierzytelniania dwuskładnikowego.
" -#: src/Module/Settings/TwoFactor/AppSpecific.php:134 +#: src/Module/Settings/TwoFactor/AppSpecific.php:120 msgid "" "Make sure to copy your new app-specific password now. You won’t be able to " "see it again!" msgstr "Pamiętaj, aby teraz skopiować nowe hasło aplikacji. Nie będziesz mógł go zobaczyć ponownie!" -#: src/Module/Settings/TwoFactor/AppSpecific.php:138 +#: src/Module/Settings/TwoFactor/AppSpecific.php:124 msgid "Last Used" msgstr "Ostatnio używane" -#: src/Module/Settings/TwoFactor/AppSpecific.php:139 +#: src/Module/Settings/TwoFactor/AppSpecific.php:125 msgid "Revoke" msgstr "Unieważnij" -#: src/Module/Settings/TwoFactor/AppSpecific.php:140 +#: src/Module/Settings/TwoFactor/AppSpecific.php:126 msgid "Revoke All" msgstr "Unieważnij wszyskie" -#: src/Module/Settings/TwoFactor/AppSpecific.php:143 +#: src/Module/Settings/TwoFactor/AppSpecific.php:129 msgid "" "When you generate a new app-specific password, you must use it right away, " "it will be shown to you once after you generate it." msgstr "Gdy generujesz nowe hasło aplikacji, musisz go od razu użyć. Zostanie ono wyświetlone raz po wygenerowaniu." -#: src/Module/Settings/TwoFactor/AppSpecific.php:144 +#: src/Module/Settings/TwoFactor/AppSpecific.php:130 msgid "Generate new app-specific password" msgstr "Wygeneruj nowe hasło specyficzne dla aplikacji" -#: src/Module/Settings/TwoFactor/AppSpecific.php:145 +#: src/Module/Settings/TwoFactor/AppSpecific.php:131 msgid "Friendiqa on my Fairphone 2..." msgstr "Friendiqa na moim Fairphone 2..." -#: src/Module/Settings/TwoFactor/AppSpecific.php:146 +#: src/Module/Settings/TwoFactor/AppSpecific.php:132 msgid "Generate" msgstr "Utwórz" -#: src/Module/Settings/TwoFactor/Index.php:88 +#: src/Module/Settings/TwoFactor/Index.php:74 msgid "Two-factor authentication successfully disabled." msgstr "Autoryzacja dwuskładnikowa została pomyślnie wyłączona." -#: src/Module/Settings/TwoFactor/Index.php:141 +#: src/Module/Settings/TwoFactor/Index.php:127 msgid "" "Use an application on a mobile device to get two-factor authentication " "codes when prompted on login.
" msgstr "Użyj aplikacji na urządzeniu mobilnym, aby uzyskać dwuskładnikowe kody uwierzytelniające po wyświetleniu monitu o zalogowanie.
" -#: src/Module/Settings/TwoFactor/Index.php:145 +#: src/Module/Settings/TwoFactor/Index.php:131 msgid "Authenticator app" msgstr "Aplikacja Authenticator" -#: src/Module/Settings/TwoFactor/Index.php:146 +#: src/Module/Settings/TwoFactor/Index.php:132 msgid "Configured" msgstr "Skonfigurowane" -#: src/Module/Settings/TwoFactor/Index.php:146 +#: src/Module/Settings/TwoFactor/Index.php:132 msgid "Not Configured" msgstr "Nie skonfigurowane" -#: src/Module/Settings/TwoFactor/Index.php:147 +#: src/Module/Settings/TwoFactor/Index.php:133 msgid "You haven't finished configuring your authenticator app.
" msgstr "Nie zakończyłeś konfigurowania aplikacji uwierzytelniającej.
" -#: src/Module/Settings/TwoFactor/Index.php:148 +#: src/Module/Settings/TwoFactor/Index.php:134 msgid "Your authenticator app is correctly configured.
" msgstr "Twoja aplikacja uwierzytelniająca jest poprawnie skonfigurowana.
" -#: src/Module/Settings/TwoFactor/Index.php:150 +#: src/Module/Settings/TwoFactor/Index.php:136 msgid "Recovery codes" msgstr "Kody odzyskiwania" -#: src/Module/Settings/TwoFactor/Index.php:151 +#: src/Module/Settings/TwoFactor/Index.php:137 msgid "Remaining valid codes" msgstr "Pozostałe ważne kody" -#: src/Module/Settings/TwoFactor/Index.php:153 +#: src/Module/Settings/TwoFactor/Index.php:139 msgid "" "These one-use codes can replace an authenticator app code in case you " "have lost access to it.
" msgstr "Te jednorazowe kody mogą zastąpić kod aplikacji uwierzytelniającej w przypadku utraty dostępu do niej.
" -#: src/Module/Settings/TwoFactor/Index.php:155 +#: src/Module/Settings/TwoFactor/Index.php:141 msgid "App-specific passwords" msgstr "Hasła specyficzne dla aplikacji" -#: src/Module/Settings/TwoFactor/Index.php:156 +#: src/Module/Settings/TwoFactor/Index.php:142 msgid "Generated app-specific passwords" msgstr "Wygenerowane hasła specyficzne dla aplikacji" -#: src/Module/Settings/TwoFactor/Index.php:158 +#: src/Module/Settings/TwoFactor/Index.php:144 msgid "" "These randomly generated passwords allow you to authenticate on apps not " "supporting two-factor authentication.
" msgstr "Losowo generowane hasła umożliwiają uwierzytelnianie w aplikacjach nie obsługujących uwierzytelniania dwuskładnikowego.
" -#: src/Module/Settings/TwoFactor/Index.php:161 +#: src/Module/Settings/TwoFactor/Index.php:147 msgid "Current password:" msgstr "Aktualne hasło:" -#: src/Module/Settings/TwoFactor/Index.php:161 +#: src/Module/Settings/TwoFactor/Index.php:147 msgid "" "You need to provide your current password to change two-factor " "authentication settings." msgstr "Musisz podać swoje aktualne hasło, aby zmienić ustawienia uwierzytelniania dwuskładnikowego." -#: src/Module/Settings/TwoFactor/Index.php:162 +#: src/Module/Settings/TwoFactor/Index.php:148 msgid "Enable two-factor authentication" msgstr "Włącz uwierzytelnianie dwuskładnikowe" -#: src/Module/Settings/TwoFactor/Index.php:163 +#: src/Module/Settings/TwoFactor/Index.php:149 msgid "Disable two-factor authentication" msgstr "Wyłącz uwierzytelnianie dwuskładnikowe" -#: src/Module/Settings/TwoFactor/Index.php:164 +#: src/Module/Settings/TwoFactor/Index.php:150 msgid "Show recovery codes" msgstr "Pokaż kody odzyskiwania" -#: src/Module/Settings/TwoFactor/Index.php:165 +#: src/Module/Settings/TwoFactor/Index.php:151 msgid "Manage app-specific passwords" msgstr "Zarządzaj hasłami specyficznymi dla aplikacji" -#: src/Module/Settings/TwoFactor/Index.php:166 +#: src/Module/Settings/TwoFactor/Index.php:152 msgid "Manage trusted browsers" msgstr "Zarządzaj zaufanymi przeglądarkami" -#: src/Module/Settings/TwoFactor/Index.php:167 +#: src/Module/Settings/TwoFactor/Index.php:153 msgid "Finish app configuration" msgstr "Zakończ konfigurację aplikacji" -#: src/Module/Settings/TwoFactor/Recovery.php:83 +#: src/Module/Settings/TwoFactor/Recovery.php:69 msgid "New recovery codes successfully generated." msgstr "Wygenerowano nowe kody odzyskiwania." -#: src/Module/Settings/TwoFactor/Recovery.php:109 +#: src/Module/Settings/TwoFactor/Recovery.php:95 msgid "Two-factor recovery codes" msgstr "Dwuskładnikowe kody odzyskiwania" -#: src/Module/Settings/TwoFactor/Recovery.php:111 +#: src/Module/Settings/TwoFactor/Recovery.php:97 msgid "" "Recovery codes can be used to access your account in the event you lose " "access to your device and cannot receive two-factor authentication " @@ -11509,68 +11479,68 @@ msgid "" "account.
" msgstr "Kody odzyskiwania mogą służyć do uzyskiwania dostępu do konta w przypadku utraty dostępu do urządzenia i braku możliwości otrzymania kodów uwierzytelniania dwuskładnikowego.
Umieść je w bezpiecznym miejscu! Jeśli zgubisz urządzenie i nie będziesz mieć kodów odzyskiwania, utracisz dostęp do swojego konta.
" -#: src/Module/Settings/TwoFactor/Recovery.php:113 +#: src/Module/Settings/TwoFactor/Recovery.php:99 msgid "" "When you generate new recovery codes, you must copy the new codes. Your old " "codes won’t work anymore." msgstr "Kiedy generujesz nowe kody odzyskiwania, musisz skopiować nowe kody. Twoje stare kody nie będą już działać." -#: src/Module/Settings/TwoFactor/Recovery.php:114 +#: src/Module/Settings/TwoFactor/Recovery.php:100 msgid "Generate new recovery codes" msgstr "Wygeneruj nowe kody odzyskiwania" -#: src/Module/Settings/TwoFactor/Recovery.php:116 +#: src/Module/Settings/TwoFactor/Recovery.php:102 msgid "Next: Verification" msgstr "Następny: Weryfikacja" -#: src/Module/Settings/TwoFactor/Trusted.php:87 +#: src/Module/Settings/TwoFactor/Trusted.php:73 msgid "Trusted browsers successfully removed." msgstr "Zaufane przeglądarki zostały pomyślnie usunięte." -#: src/Module/Settings/TwoFactor/Trusted.php:97 +#: src/Module/Settings/TwoFactor/Trusted.php:83 msgid "Trusted browser successfully removed." msgstr "Zaufana przeglądarka została pomyślnie usunięta." -#: src/Module/Settings/TwoFactor/Trusted.php:139 +#: src/Module/Settings/TwoFactor/Trusted.php:125 msgid "Two-factor Trusted Browsers" msgstr "Zaufane przeglądarki dwuskładnikowe" -#: src/Module/Settings/TwoFactor/Trusted.php:140 +#: src/Module/Settings/TwoFactor/Trusted.php:126 msgid "" "Trusted browsers are individual browsers you chose to skip two-factor " "authentication to access Friendica. Please use this feature sparingly, as it" " can negate the benefit of two-factor authentication." msgstr "Zaufane przeglądarki to indywidualne przeglądarki, które zostały wybrane, aby pominąć uwierzytelnianie dwuskładnikowe celem uzyskania dostępu do Friendica. Korzystaj z tej funkcji oszczędnie, ponieważ może ona negować korzyści płynące z uwierzytelniania dwuskładnikowego." -#: src/Module/Settings/TwoFactor/Trusted.php:141 +#: src/Module/Settings/TwoFactor/Trusted.php:127 msgid "Device" msgstr "Urządzenie" -#: src/Module/Settings/TwoFactor/Trusted.php:142 +#: src/Module/Settings/TwoFactor/Trusted.php:128 msgid "OS" msgstr "System operacyjny" -#: src/Module/Settings/TwoFactor/Trusted.php:144 +#: src/Module/Settings/TwoFactor/Trusted.php:130 msgid "Trusted" msgstr "Zaufane" -#: src/Module/Settings/TwoFactor/Trusted.php:145 +#: src/Module/Settings/TwoFactor/Trusted.php:131 msgid "Created At" msgstr "Utworzono" -#: src/Module/Settings/TwoFactor/Trusted.php:146 +#: src/Module/Settings/TwoFactor/Trusted.php:132 msgid "Last Use" msgstr "Ostatnie użycie" -#: src/Module/Settings/TwoFactor/Trusted.php:148 +#: src/Module/Settings/TwoFactor/Trusted.php:134 msgid "Remove All" msgstr "Usuń wszystkie" -#: src/Module/Settings/TwoFactor/Verify.php:94 +#: src/Module/Settings/TwoFactor/Verify.php:80 msgid "Two-factor authentication successfully activated." msgstr "Uwierzytelnienie dwuskładnikowe zostało pomyślnie aktywowane." -#: src/Module/Settings/TwoFactor/Verify.php:128 +#: src/Module/Settings/TwoFactor/Verify.php:114 #, php-format msgid "" "Or you can submit the authentication settings manually:
\n" @@ -11590,105 +11560,105 @@ msgid "" "" msgstr "Możesz przesłać ustawienia uwierzytelniania ręcznie:
\nPlease scan this QR Code with your authenticator app and submit the " "provided code.
" msgstr "Zeskanuj kod QR za pomocą aplikacji uwierzytelniającej i prześlij podany kod.
" -#: src/Module/Settings/TwoFactor/Verify.php:152 +#: src/Module/Settings/TwoFactor/Verify.php:138 #, php-format msgid "" "Or you can open the following URL in your mobile device:
" msgstr "Możesz też otworzyć następujący adres URL w urządzeniu mobilnym:
" -#: src/Module/Settings/TwoFactor/Verify.php:159 +#: src/Module/Settings/TwoFactor/Verify.php:145 msgid "Verify code and enable two-factor authentication" msgstr "Sprawdź kod i włącz uwierzytelnianie dwuskładnikowe" -#: src/Module/Settings/UserExport.php:90 +#: src/Module/Settings/UserExport.php:76 msgid "Export account" msgstr "Eksportuj konto" -#: src/Module/Settings/UserExport.php:90 +#: src/Module/Settings/UserExport.php:76 msgid "" "Export your account info and contacts. Use this to make a backup of your " "account and/or to move it to another server." msgstr "Eksportuj informacje o swoim koncie i kontaktach. Użyj tego do utworzenia kopii zapasowej konta i/lub przeniesienia go na inny serwer." -#: src/Module/Settings/UserExport.php:91 +#: src/Module/Settings/UserExport.php:77 msgid "Export all" msgstr "Eksportuj wszystko" -#: src/Module/Settings/UserExport.php:91 +#: src/Module/Settings/UserExport.php:77 msgid "" "Export your account info, contacts and all your items as json. Could be a " "very big file, and could take a lot of time. Use this to make a full backup " "of your account (photos are not exported)" msgstr "Wyeksportuj informacje o swoim koncie, kontakty i wszystkie swoje elementy jako json. Może to być bardzo duży plik i może zająć dużo czasu. Użyj tego, aby wykonać pełną kopię zapasową swojego konta (zdjęcia nie są eksportowane)." -#: src/Module/Settings/UserExport.php:92 +#: src/Module/Settings/UserExport.php:78 msgid "Export Contacts to CSV" msgstr "Eksportuj kontakty do CSV" -#: src/Module/Settings/UserExport.php:92 +#: src/Module/Settings/UserExport.php:78 msgid "" "Export the list of the accounts you are following as CSV file. Compatible to" " e.g. Mastodon." msgstr "Wyeksportuj listę kont, które obserwujesz, jako plik CSV. Kompatybilny np. Mastodont." -#: src/Module/Special/DisplayNotFound.php:35 +#: src/Module/Special/DisplayNotFound.php:21 msgid "The top-level post isn't visible." msgstr "" -#: src/Module/Special/DisplayNotFound.php:36 +#: src/Module/Special/DisplayNotFound.php:22 msgid "The top-level post was deleted." msgstr "" -#: src/Module/Special/DisplayNotFound.php:37 +#: src/Module/Special/DisplayNotFound.php:23 msgid "" "This node has blocked the top-level author or the author of the shared post." msgstr "" -#: src/Module/Special/DisplayNotFound.php:38 +#: src/Module/Special/DisplayNotFound.php:24 msgid "" "You have ignored or blocked the top-level author or the author of the shared" " post." msgstr "" -#: src/Module/Special/DisplayNotFound.php:39 +#: src/Module/Special/DisplayNotFound.php:25 msgid "" "You have ignored the top-level author's server or the shared post author's " "server." msgstr "" -#: src/Module/Special/DisplayNotFound.php:45 +#: src/Module/Special/DisplayNotFound.php:31 msgid "Conversation Not Found" msgstr "" -#: src/Module/Special/DisplayNotFound.php:46 +#: src/Module/Special/DisplayNotFound.php:32 msgid "Unfortunately, the requested conversation isn't available to you." msgstr "" -#: src/Module/Special/DisplayNotFound.php:47 +#: src/Module/Special/DisplayNotFound.php:33 msgid "Possible reasons include:" msgstr "" -#: src/Module/Special/HTTPException.php:78 +#: src/Module/Special/HTTPException.php:64 msgid "Stack trace:" msgstr "Ślad stosu:" -#: src/Module/Special/HTTPException.php:83 +#: src/Module/Special/HTTPException.php:69 #, php-format msgid "Exception thrown in %s:%d" msgstr "Zgłoszono wyjątek %s:%d" -#: src/Module/Tos.php:58 src/Module/Tos.php:107 +#: src/Module/Tos.php:44 src/Module/Tos.php:93 msgid "" "At the time of registration, and for providing communications between the " "user account and their contacts, the user has to provide a display name (pen" @@ -11701,14 +11671,14 @@ msgid "" "settings, it is not necessary for communication." msgstr "W momencie rejestracji oraz w celu zapewnienia komunikacji między kontem użytkownika, a jego kontaktami, użytkownik musi podać nazwę wyświetlaną (pseudonim), nazwę użytkownika (przydomek) i działający adres e-mail. Nazwy będą dostępne na stronie profilu konta dla każdego odwiedzającego stronę, nawet jeśli inne szczegóły profilu nie zostaną wyświetlone. Adres e-mail będzie używany tylko do wysyłania powiadomień użytkownika o interakcjach, ale nie będzie wyświetlany w widoczny sposób. Lista kont w katalogu użytkownika węzła lub globalnym katalogu użytkownika jest opcjonalna i może być kontrolowana w ustawieniach użytkownika, nie jest konieczna do komunikacji." -#: src/Module/Tos.php:59 src/Module/Tos.php:108 +#: src/Module/Tos.php:45 src/Module/Tos.php:94 msgid "" "This data is required for communication and is passed on to the nodes of the" " communication partners and is stored there. Users can enter additional " "private data that may be transmitted to the communication partners accounts." msgstr "Te dane są wymagane do komunikacji i są przekazywane do węzłów partnerów komunikacyjnych i są tam przechowywane. Użytkownicy mogą wprowadzać dodatkowe prywatne dane, które mogą być przesyłane na konta partnerów komunikacyjnych." -#: src/Module/Tos.php:60 src/Module/Tos.php:109 +#: src/Module/Tos.php:46 src/Module/Tos.php:95 #, php-format msgid "" "At any point in time a logged in user can export their account data from the" @@ -11719,98 +11689,98 @@ msgid "" "from the nodes of the communication partners." msgstr "" -#: src/Module/Tos.php:63 src/Module/Tos.php:106 +#: src/Module/Tos.php:49 src/Module/Tos.php:92 msgid "Privacy Statement" msgstr "Oświadczenie o prywatności" -#: src/Module/Tos.php:103 +#: src/Module/Tos.php:89 msgid "Rules" msgstr "" -#: src/Module/Update/Display.php:45 +#: src/Module/Update/Display.php:31 msgid "Parameter uri_id is missing." msgstr "" -#: src/Module/Update/Display.php:55 +#: src/Module/Update/Display.php:41 msgid "The requested item doesn't exist or has been deleted." msgstr "Żądany element nie istnieje lub został usunięty." -#: src/Module/User/Delegation.php:146 +#: src/Module/User/Delegation.php:132 #, php-format msgid "You are now logged in as %s" msgstr "Jesteś teraz zalogowany jako %s" -#: src/Module/User/Delegation.php:185 +#: src/Module/User/Delegation.php:171 msgid "Switch between your accounts" msgstr "Przełącz się pomiędzy kontami" -#: src/Module/User/Delegation.php:186 +#: src/Module/User/Delegation.php:172 msgid "Manage your accounts" msgstr "Zarządzaj swoimi kontami" -#: src/Module/User/Delegation.php:187 +#: src/Module/User/Delegation.php:173 msgid "" "Toggle between different identities or community/group pages which share " "your account details or which you have been granted \"manage\" permissions" msgstr "Przełącz między różnymi tożsamościami lub stronami społeczność/grupy, które udostępniają dane Twojego konta lub które otrzymałeś uprawnienia \"zarządzaj\"" -#: src/Module/User/Delegation.php:188 +#: src/Module/User/Delegation.php:174 msgid "Select an identity to manage: " msgstr "Wybierz tożsamość do zarządzania: " -#: src/Module/User/Import.php:104 +#: src/Module/User/Import.php:90 msgid "User imports on closed servers can only be done by an administrator." msgstr "Import użytkowników na zamkniętych serwerach może być wykonywany tylko przez administratora." -#: src/Module/User/Import.php:120 +#: src/Module/User/Import.php:106 msgid "Move account" msgstr "Przenieś konto" -#: src/Module/User/Import.php:121 +#: src/Module/User/Import.php:107 msgid "You can import an account from another Friendica server." msgstr "Możesz zaimportować konto z innego serwera Friendica." -#: src/Module/User/Import.php:122 +#: src/Module/User/Import.php:108 msgid "" "You need to export your account from the old server and upload it here. We " "will recreate your old account here with all your contacts. We will try also" " to inform your friends that you moved here." msgstr "Musisz wyeksportować konto ze starego serwera i przesłać je tutaj. Odtworzymy twoje stare konto tutaj ze wszystkimi twoimi kontaktami. Postaramy się również poinformować twoich znajomych, że się tutaj przeniosłeś." -#: src/Module/User/Import.php:123 +#: src/Module/User/Import.php:109 msgid "" "This feature is experimental. We can't import contacts from the OStatus " "network (GNU Social/Statusnet) or from Diaspora" msgstr "Ta funkcja jest eksperymentalna. Nie możemy importować kontaktów z sieci OStatus (GNU Social/Statusnet) lub z Diaspory" -#: src/Module/User/Import.php:124 +#: src/Module/User/Import.php:110 msgid "Account file" msgstr "Pliki konta" -#: src/Module/User/Import.php:124 +#: src/Module/User/Import.php:110 msgid "" "To export your account, go to \"Settings->Export your personal data\" and " "select \"Export account\"" msgstr "Aby eksportować konto, wejdź w \"Ustawienia->Eksport danych osobistych\" i wybierz \"Eksportuj konto\"" -#: src/Module/User/Import.php:218 +#: src/Module/User/Import.php:204 msgid "Error decoding account file" msgstr "Błąd podczas odczytu pliku konta" -#: src/Module/User/Import.php:223 +#: src/Module/User/Import.php:209 msgid "Error! No version data in file! This is not a Friendica account file?" msgstr "Błąd! Brak danych wersji w pliku! To nie jest plik konta Friendica?" -#: src/Module/User/Import.php:231 +#: src/Module/User/Import.php:217 #, php-format msgid "User '%s' already exists on this server!" msgstr "Użytkownik '%s' już istnieje na tym serwerze!" -#: src/Module/User/Import.php:268 +#: src/Module/User/Import.php:254 msgid "User creation error" msgstr "Błąd tworzenia użytkownika" -#: src/Module/User/Import.php:317 +#: src/Module/User/Import.php:303 #, php-format msgid "%d contact not imported" msgid_plural "%d contacts not imported" @@ -11819,23 +11789,23 @@ msgstr[1] "Nie zaimportowano %d kontaktów" msgstr[2] "Nie zaimportowano %d kontaktów" msgstr[3] "%d kontakty nie zostały zaimportowane " -#: src/Module/User/Import.php:366 +#: src/Module/User/Import.php:352 msgid "User profile creation error" msgstr "Błąd tworzenia profilu użytkownika" -#: src/Module/User/Import.php:417 +#: src/Module/User/Import.php:403 msgid "Done. You can now login with your username and password" msgstr "Gotowe. Możesz teraz zalogować się z użyciem nazwy użytkownika i hasła" -#: src/Module/Welcome.php:44 +#: src/Module/Welcome.php:30 msgid "Welcome to Friendica" msgstr "Witamy na Friendica" -#: src/Module/Welcome.php:45 +#: src/Module/Welcome.php:31 msgid "New Member Checklist" msgstr "Lista nowych członków" -#: src/Module/Welcome.php:46 +#: src/Module/Welcome.php:32 msgid "" "We would like to offer some tips and links to help make your experience " "enjoyable. Click any item to visit the relevant page. A link to this page " @@ -11843,33 +11813,33 @@ msgid "" "registration and then will quietly disappear." msgstr "Chcielibyśmy zaproponować kilka porad i linków, które pomogą uczynić twoje doświadczenie przyjemnym. Kliknij dowolny element, aby odwiedzić odpowiednią stronę. Link do tej strony będzie widoczny na stronie głównej przez dwa tygodnie od czasu rejestracji, a następnie zniknie." -#: src/Module/Welcome.php:48 +#: src/Module/Welcome.php:34 msgid "Getting Started" msgstr "Pierwsze kroki" -#: src/Module/Welcome.php:49 +#: src/Module/Welcome.php:35 msgid "Friendica Walk-Through" msgstr "Friendica Przejdź-Przez" -#: src/Module/Welcome.php:50 +#: src/Module/Welcome.php:36 msgid "" "On your Quick Start page - find a brief introduction to your " "profile and network tabs, make some new connections, and find some groups to" " join." msgstr "Na stronie Szybki start - znajdź krótkie wprowadzenie do swojego profilu i kart sieciowych, stwórz nowe połączenia i znajdź kilka grup do przyłączenia się." -#: src/Module/Welcome.php:53 +#: src/Module/Welcome.php:39 msgid "Go to Your Settings" msgstr "Idź do swoich ustawień" -#: src/Module/Welcome.php:54 +#: src/Module/Welcome.php:40 msgid "" "On your Settings page - change your initial password. Also make a " "note of your Identity Address. This looks just like an email address - and " "will be useful in making friends on the free social web." msgstr "Na stronie Ustawienia - zmień swoje początkowe hasło. Zanotuj także swój adres tożsamości. Wygląda to jak adres e-mail - będzie przydatny w nawiązywaniu znajomości w bezpłatnej sieci społecznościowej." -#: src/Module/Welcome.php:55 +#: src/Module/Welcome.php:41 msgid "" "Review the other settings, particularly the privacy settings. An unpublished" " directory listing is like having an unlisted phone number. In general, you " @@ -11877,77 +11847,77 @@ msgid "" "potential friends know exactly how to find you." msgstr "Przejrzyj pozostałe ustawienia, w szczególności ustawienia prywatności. Niepublikowany wykaz katalogów jest podobny do niepublicznego numeru telefonu. Ogólnie rzecz biorąc, powinieneś opublikować swój wpis - chyba, że wszyscy twoi znajomi i potencjalni znajomi dokładnie wiedzą, jak Cię znaleźć." -#: src/Module/Welcome.php:59 +#: src/Module/Welcome.php:45 msgid "" "Upload a profile photo if you have not done so already. Studies have shown " "that people with real photos of themselves are ten times more likely to make" " friends than people who do not." msgstr "Dodaj swoje zdjęcie profilowe jeśli jeszcze tego nie zrobiłeś. Twoje szanse na zwiększenie liczby znajomych rosną dziesięciokrotnie, kiedy na tym zdjęciu jesteś ty." -#: src/Module/Welcome.php:60 +#: src/Module/Welcome.php:46 msgid "Edit Your Profile" msgstr "Edytuj własny profil" -#: src/Module/Welcome.php:61 +#: src/Module/Welcome.php:47 msgid "" "Edit your default profile to your liking. Review the " "settings for hiding your list of friends and hiding the profile from unknown" " visitors." msgstr "Edytuj swój domyślny profil do swoich potrzeb. Przejrzyj ustawienia ukrywania listy znajomych i ukrywania profilu przed nieznanymi użytkownikami." -#: src/Module/Welcome.php:62 +#: src/Module/Welcome.php:48 msgid "Profile Keywords" msgstr "Słowa kluczowe profilu" -#: src/Module/Welcome.php:63 +#: src/Module/Welcome.php:49 msgid "" "Set some public keywords for your profile which describe your interests. We " "may be able to find other people with similar interests and suggest " "friendships." msgstr "Ustaw kilka publicznych słów kluczowych dla swojego profilu, które opisują Twoje zainteresowania. Możemy znaleźć inne osoby o podobnych zainteresowaniach i zasugerować przyjaźnie." -#: src/Module/Welcome.php:65 +#: src/Module/Welcome.php:51 msgid "Connecting" msgstr "Łączenie" -#: src/Module/Welcome.php:67 +#: src/Module/Welcome.php:53 msgid "Importing Emails" msgstr "Importowanie e-maili" -#: src/Module/Welcome.php:68 +#: src/Module/Welcome.php:54 msgid "" "Enter your email access information on your Connector Settings page if you " "wish to import and interact with friends or mailing lists from your email " "INBOX" msgstr "Wprowadź informacje dotyczące dostępu do poczty e-mail na stronie Ustawienia oprogramowania, jeśli chcesz importować i wchodzić w interakcje z przyjaciółmi lub listami adresowymi z poziomu konta e-mail INBOX" -#: src/Module/Welcome.php:69 +#: src/Module/Welcome.php:55 msgid "Go to Your Contacts Page" msgstr "Idź do strony z Twoimi kontaktami" -#: src/Module/Welcome.php:70 +#: src/Module/Welcome.php:56 msgid "" "Your Contacts page is your gateway to managing friendships and connecting " "with friends on other networks. Typically you enter their address or site " "URL in the Add New Contact dialog." msgstr "Strona Kontakty jest twoją bramą do zarządzania przyjaciółmi i łączenia się z przyjaciółmi w innych sieciach. Zazwyczaj podaje się adres lub adres URL strony w oknie dialogowym Dodaj nowy kontakt." -#: src/Module/Welcome.php:71 +#: src/Module/Welcome.php:57 msgid "Go to Your Site's Directory" msgstr "Idż do twojej strony" -#: src/Module/Welcome.php:72 +#: src/Module/Welcome.php:58 msgid "" "The Directory page lets you find other people in this network or other " "federated sites. Look for a Connect or Follow link on " "their profile page. Provide your own Identity Address if requested." msgstr "Strona Katalog umożliwia znalezienie innych osób w tej sieci lub innych witrynach stowarzyszonych. Poszukaj łącza Połącz lub Śledź na stronie profilu. Jeśli chcesz, podaj swój własny adres tożsamości." -#: src/Module/Welcome.php:73 +#: src/Module/Welcome.php:59 msgid "Finding New People" msgstr "Znajdowanie nowych osób" -#: src/Module/Welcome.php:74 +#: src/Module/Welcome.php:60 msgid "" "On the side panel of the Contacts page are several tools to find new " "friends. We can match people by interest, look up people by name or " @@ -11956,412 +11926,408 @@ msgid "" "hours." msgstr "Na bocznym panelu strony Kontaktów znajduje się kilka narzędzi do znajdowania nowych przyjaciół. Możemy dopasować osoby według zainteresowań, wyszukiwać osoby według nazwisk i zainteresowań oraz dostarczać sugestie oparte na relacjach sieciowych. Na zupełnie nowej stronie sugestie znajomych zwykle zaczynają być wypełniane w ciągu 24 godzin" -#: src/Module/Welcome.php:77 +#: src/Module/Welcome.php:63 msgid "Add Your Contacts To Circle" msgstr "" -#: src/Module/Welcome.php:78 +#: src/Module/Welcome.php:64 msgid "" "Once you have made some friends, organize them into private conversation " "circles from the sidebar of your Contacts page and then you can interact " "with each circle privately on your Network page." msgstr "" -#: src/Module/Welcome.php:80 +#: src/Module/Welcome.php:66 msgid "Why Aren't My Posts Public?" msgstr "Dlaczego moje wpisy nie są publiczne?" -#: src/Module/Welcome.php:81 +#: src/Module/Welcome.php:67 msgid "" "Friendica respects your privacy. By default, your posts will only show up to" " people you've added as friends. For more information, see the help section " "from the link above." msgstr "Friendica szanuje Twoją prywatność. Domyślnie Twoje wpisy będą wyświetlane tylko osobom, które dodałeś jako znajomi. Aby uzyskać więcej informacji, zobacz sekcję pomocy na powyższym łączu." -#: src/Module/Welcome.php:83 +#: src/Module/Welcome.php:69 msgid "Getting Help" msgstr "Otrzymaj pomoc" -#: src/Module/Welcome.php:84 +#: src/Module/Welcome.php:70 msgid "Go to the Help Section" msgstr "Przejdź do sekcji pomocy" -#: src/Module/Welcome.php:85 +#: src/Module/Welcome.php:71 msgid "" "Our help pages may be consulted for detail on other program" " features and resources." msgstr "Na naszych stronach pomocy można znaleźć szczegółowe informacje na temat innych funkcji programu i zasobów." -#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:161 +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:147 msgid "{0} wants to follow you" msgstr "{0} chce Cię obserwować" -#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:163 +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:149 msgid "{0} has started following you" msgstr "{0} zaczął Cię obserwować" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:96 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:82 #, php-format msgid "%s liked %s's post" msgstr "%s polubił wpis %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:108 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:94 #, php-format msgid "%s disliked %s's post" msgstr "%s nie lubi wpisów %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:120 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:106 #, php-format msgid "%s is attending %s's event" msgstr "%s uczestniczy w wydarzeniu %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:132 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:118 #, php-format msgid "%s is not attending %s's event" msgstr "%s nie uczestniczy w wydarzeniu %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:144 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:130 #, php-format msgid "%s may attending %s's event" msgstr "%s może uczestniczyć w wydarzeniu %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:174 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:160 #, php-format msgid "%s is now friends with %s" msgstr "%s jest teraz znajomym %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:341 -#: src/Navigation/Notifications/Factory/FormattedNotify.php:379 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:327 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:365 #, php-format msgid "%s commented on %s's post" msgstr "%s skomentował wpis %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:378 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:364 #, php-format msgid "%s created a new post" msgstr "%s dodał nowy wpis" -#: src/Navigation/Notifications/Factory/Introduction.php:132 +#: src/Navigation/Notifications/Factory/Introduction.php:118 msgid "Friend Suggestion" msgstr "Propozycja znajomych" -#: src/Navigation/Notifications/Factory/Introduction.php:158 +#: src/Navigation/Notifications/Factory/Introduction.php:144 msgid "Friend/Connect Request" msgstr "Prośba o dodanie do przyjaciół/powiązanych" -#: src/Navigation/Notifications/Factory/Introduction.php:158 -msgid "New Follower" -msgstr "Nowy obserwujący" - -#: src/Navigation/Notifications/Factory/Notification.php:134 +#: src/Navigation/Notifications/Factory/Notification.php:120 #, php-format msgid "%1$s wants to follow you" msgstr "%1$s chce Cię obserwować" -#: src/Navigation/Notifications/Factory/Notification.php:136 +#: src/Navigation/Notifications/Factory/Notification.php:122 #, php-format msgid "%1$s has started following you" msgstr "%1$s zaczął Cię obserwować" -#: src/Navigation/Notifications/Factory/Notification.php:208 +#: src/Navigation/Notifications/Factory/Notification.php:194 #, php-format msgid "%1$s liked your comment on %2$s" msgstr "%1$s polubił Twój komentarz o %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:211 +#: src/Navigation/Notifications/Factory/Notification.php:197 #, php-format msgid "%1$s liked your post %2$s" msgstr "%1$s polubił Twój wpis %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:218 +#: src/Navigation/Notifications/Factory/Notification.php:204 #, php-format msgid "%1$s disliked your comment on %2$s" msgstr "%1$s nie lubi Twojego komentarza o %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:221 +#: src/Navigation/Notifications/Factory/Notification.php:207 #, php-format msgid "%1$s disliked your post %2$s" msgstr "%1$s nie lubi Twojego wpisu %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:228 +#: src/Navigation/Notifications/Factory/Notification.php:214 #, php-format msgid "%1$s shared your comment %2$s" msgstr "%1$s udostępnił Twój komentarz %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:231 -#: src/Navigation/Notifications/Factory/Notification.php:316 +#: src/Navigation/Notifications/Factory/Notification.php:217 +#: src/Navigation/Notifications/Factory/Notification.php:302 #, php-format msgid "%1$s shared your post %2$s" msgstr "%1$s udostępnił Twój wpis %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:235 -#: src/Navigation/Notifications/Factory/Notification.php:305 +#: src/Navigation/Notifications/Factory/Notification.php:221 +#: src/Navigation/Notifications/Factory/Notification.php:291 #, php-format msgid "%1$s shared the post %2$s from %3$s" msgstr "%1$s udostępnił wpis %2$s z %3$s" -#: src/Navigation/Notifications/Factory/Notification.php:237 -#: src/Navigation/Notifications/Factory/Notification.php:307 +#: src/Navigation/Notifications/Factory/Notification.php:223 +#: src/Navigation/Notifications/Factory/Notification.php:293 #, php-format msgid "%1$s shared a post from %3$s" msgstr "%1$s udostępnił wpis z %3$s" -#: src/Navigation/Notifications/Factory/Notification.php:239 -#: src/Navigation/Notifications/Factory/Notification.php:309 +#: src/Navigation/Notifications/Factory/Notification.php:225 +#: src/Navigation/Notifications/Factory/Notification.php:295 #, php-format msgid "%1$s shared the post %2$s" msgstr "%1$s udostępnił wpis %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:241 -#: src/Navigation/Notifications/Factory/Notification.php:311 +#: src/Navigation/Notifications/Factory/Notification.php:227 +#: src/Navigation/Notifications/Factory/Notification.php:297 #, php-format msgid "%1$s shared a post" msgstr "%1$s udostępnił wpis" -#: src/Navigation/Notifications/Factory/Notification.php:249 +#: src/Navigation/Notifications/Factory/Notification.php:235 #, php-format msgid "%1$s wants to attend your event %2$s" msgstr "%1$s chce uczestniczyć w Twoim wydarzeniu %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:256 +#: src/Navigation/Notifications/Factory/Notification.php:242 #, php-format msgid "%1$s does not want to attend your event %2$s" msgstr "%1$s nie chce uczestniczyć w Twoim wydarzeniu %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:263 +#: src/Navigation/Notifications/Factory/Notification.php:249 #, php-format msgid "%1$s maybe wants to attend your event %2$s" msgstr "%1$s może chcieć wziąć udział w Twoim wydarzeniu %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:270 +#: src/Navigation/Notifications/Factory/Notification.php:256 #, php-format msgid "%1$s tagged you on %2$s" msgstr "%1$s oznaczył Cię na %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:274 +#: src/Navigation/Notifications/Factory/Notification.php:260 #, php-format msgid "%1$s replied to you on %2$s" msgstr "%1$s odpowiedział Ci na %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:278 +#: src/Navigation/Notifications/Factory/Notification.php:264 #, php-format msgid "%1$s commented in your thread %2$s" msgstr "%1$s skomentował w Twoim wątku %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:282 +#: src/Navigation/Notifications/Factory/Notification.php:268 #, php-format msgid "%1$s commented on your comment %2$s" msgstr "%1$s skomentował Twój komentarz %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:289 +#: src/Navigation/Notifications/Factory/Notification.php:275 #, php-format msgid "%1$s commented in their thread %2$s" msgstr "%1$s skomentował w swoim wątku %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:291 +#: src/Navigation/Notifications/Factory/Notification.php:277 #, php-format msgid "%1$s commented in their thread" msgstr "%1$s skomentował w swoim wątku" -#: src/Navigation/Notifications/Factory/Notification.php:293 +#: src/Navigation/Notifications/Factory/Notification.php:279 #, php-format msgid "%1$s commented in the thread %2$s from %3$s" msgstr "%1$s skomentował w wątku %2$s od %3$s" -#: src/Navigation/Notifications/Factory/Notification.php:295 +#: src/Navigation/Notifications/Factory/Notification.php:281 #, php-format msgid "%1$s commented in the thread from %3$s" msgstr "%1$s skomentował w wątku od %3$s" -#: src/Navigation/Notifications/Factory/Notification.php:300 +#: src/Navigation/Notifications/Factory/Notification.php:286 #, php-format msgid "%1$s commented on your thread %2$s" msgstr "%1$s skomentował Twój wątek %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:225 -#: src/Navigation/Notifications/Repository/Notify.php:754 +#: src/Navigation/Notifications/Repository/Notify.php:211 +#: src/Navigation/Notifications/Repository/Notify.php:740 msgid "[Friendica:Notify]" msgstr "[Friendica: Powiadomienie]" -#: src/Navigation/Notifications/Repository/Notify.php:293 +#: src/Navigation/Notifications/Repository/Notify.php:279 #, php-format msgid "%s New mail received at %s" msgstr "%s Nowa poczta otrzymana o %s" -#: src/Navigation/Notifications/Repository/Notify.php:295 +#: src/Navigation/Notifications/Repository/Notify.php:281 #, php-format msgid "%1$s sent you a new private message at %2$s." msgstr "%1$s wysłał(-a) ci nową prywatną wiadomość na %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:296 +#: src/Navigation/Notifications/Repository/Notify.php:282 msgid "a private message" msgstr "prywatna wiadomość" -#: src/Navigation/Notifications/Repository/Notify.php:296 +#: src/Navigation/Notifications/Repository/Notify.php:282 #, php-format msgid "%1$s sent you %2$s." msgstr "%1$s wysłał(-a) ci %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:298 +#: src/Navigation/Notifications/Repository/Notify.php:284 #, php-format msgid "Please visit %s to view and/or reply to your private messages." msgstr "Odwiedź %s, aby zobaczyć i/lub odpowiedzieć na twoje prywatne wiadomości." -#: src/Navigation/Notifications/Repository/Notify.php:328 +#: src/Navigation/Notifications/Repository/Notify.php:314 #, php-format msgid "%1$s commented on %2$s's %3$s %4$s" msgstr "%1$s skomentował %2$s's %3$s %4$s" -#: src/Navigation/Notifications/Repository/Notify.php:333 +#: src/Navigation/Notifications/Repository/Notify.php:319 #, php-format msgid "%1$s commented on your %2$s %3$s" msgstr "%1$s skomentował Twój %2$s %3$s" -#: src/Navigation/Notifications/Repository/Notify.php:337 +#: src/Navigation/Notifications/Repository/Notify.php:323 #, php-format msgid "%1$s commented on their %2$s %3$s" msgstr "%1$s skomentował swój %2$s %3$s" -#: src/Navigation/Notifications/Repository/Notify.php:341 -#: src/Navigation/Notifications/Repository/Notify.php:788 +#: src/Navigation/Notifications/Repository/Notify.php:327 +#: src/Navigation/Notifications/Repository/Notify.php:774 #, php-format msgid "%1$s Comment to conversation #%2$d by %3$s" msgstr "%1$s Komentarz do rozmowy #%2$d autor %3$s" -#: src/Navigation/Notifications/Repository/Notify.php:343 +#: src/Navigation/Notifications/Repository/Notify.php:329 #, php-format msgid "%s commented on an item/conversation you have been following." msgstr "%s skomentował(-a) rozmowę którą śledzisz." -#: src/Navigation/Notifications/Repository/Notify.php:347 -#: src/Navigation/Notifications/Repository/Notify.php:362 -#: src/Navigation/Notifications/Repository/Notify.php:814 +#: src/Navigation/Notifications/Repository/Notify.php:333 +#: src/Navigation/Notifications/Repository/Notify.php:348 +#: src/Navigation/Notifications/Repository/Notify.php:800 #, php-format msgid "Please visit %s to view and/or reply to the conversation." msgstr "Odwiedź %s, aby zobaczyć i/lub odpowiedzieć na rozmowę." -#: src/Navigation/Notifications/Repository/Notify.php:354 +#: src/Navigation/Notifications/Repository/Notify.php:340 #, php-format msgid "%s %s posted to your profile wall" msgstr "%s %s opublikował na Twojej tablicy profilu" -#: src/Navigation/Notifications/Repository/Notify.php:356 +#: src/Navigation/Notifications/Repository/Notify.php:342 #, php-format msgid "%1$s posted to your profile wall at %2$s" msgstr "%1$s opublikował(-a) wpis na Twojej tablicy o %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:357 +#: src/Navigation/Notifications/Repository/Notify.php:343 #, php-format msgid "%1$s posted to [url=%2$s]your wall[/url]" msgstr "%1$s opublikował(-a) na [url=%2$s]Twojej tablicy[/url]" -#: src/Navigation/Notifications/Repository/Notify.php:370 +#: src/Navigation/Notifications/Repository/Notify.php:356 #, php-format msgid "%s Introduction received" msgstr "%s Otrzymano wprowadzenie" -#: src/Navigation/Notifications/Repository/Notify.php:372 +#: src/Navigation/Notifications/Repository/Notify.php:358 #, php-format msgid "You've received an introduction from '%1$s' at %2$s" msgstr "Otrzymałeś wstęp od '%1$s' z %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:373 +#: src/Navigation/Notifications/Repository/Notify.php:359 #, php-format msgid "You've received [url=%1$s]an introduction[/url] from %2$s." msgstr "Zostałeś [url=%1$s] przyjęty [/ url] z %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:378 -#: src/Navigation/Notifications/Repository/Notify.php:424 +#: src/Navigation/Notifications/Repository/Notify.php:364 +#: src/Navigation/Notifications/Repository/Notify.php:410 #, php-format msgid "You may visit their profile at %s" msgstr "Możesz odwiedzić ich profil na stronie %s" -#: src/Navigation/Notifications/Repository/Notify.php:380 +#: src/Navigation/Notifications/Repository/Notify.php:366 #, php-format msgid "Please visit %s to approve or reject the introduction." msgstr "Odwiedż %s aby zatwierdzić lub odrzucić przedstawienie." -#: src/Navigation/Notifications/Repository/Notify.php:387 +#: src/Navigation/Notifications/Repository/Notify.php:373 #, php-format msgid "%s A new person is sharing with you" msgstr "%s Nowa osoba udostępnia Ci coś" -#: src/Navigation/Notifications/Repository/Notify.php:389 -#: src/Navigation/Notifications/Repository/Notify.php:390 +#: src/Navigation/Notifications/Repository/Notify.php:375 +#: src/Navigation/Notifications/Repository/Notify.php:376 #, php-format msgid "%1$s is sharing with you at %2$s" msgstr "%1$s dzieli się z tobą w %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:397 +#: src/Navigation/Notifications/Repository/Notify.php:383 #, php-format msgid "%s You have a new follower" msgstr "%s Masz nowego obserwującego" -#: src/Navigation/Notifications/Repository/Notify.php:399 -#: src/Navigation/Notifications/Repository/Notify.php:400 +#: src/Navigation/Notifications/Repository/Notify.php:385 +#: src/Navigation/Notifications/Repository/Notify.php:386 #, php-format msgid "You have a new follower at %2$s : %1$s" msgstr "Masz nowego obserwatora na %2$s : %1$s" -#: src/Navigation/Notifications/Repository/Notify.php:413 +#: src/Navigation/Notifications/Repository/Notify.php:399 #, php-format msgid "%s Friend suggestion received" msgstr "%s Otrzymano sugestię znajomego" -#: src/Navigation/Notifications/Repository/Notify.php:415 +#: src/Navigation/Notifications/Repository/Notify.php:401 #, php-format msgid "You've received a friend suggestion from '%1$s' at %2$s" msgstr "Otrzymałeś od znajomego sugestię '%1$s' na %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:416 +#: src/Navigation/Notifications/Repository/Notify.php:402 #, php-format msgid "" "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." msgstr "Otrzymałeś [url=%1$s] sugestię znajomego [/url] dla %2$s od %3$s." -#: src/Navigation/Notifications/Repository/Notify.php:422 +#: src/Navigation/Notifications/Repository/Notify.php:408 msgid "Name:" msgstr "Imię:" -#: src/Navigation/Notifications/Repository/Notify.php:423 +#: src/Navigation/Notifications/Repository/Notify.php:409 msgid "Photo:" msgstr "Zdjęcie:" -#: src/Navigation/Notifications/Repository/Notify.php:426 +#: src/Navigation/Notifications/Repository/Notify.php:412 #, php-format msgid "Please visit %s to approve or reject the suggestion." msgstr "Odwiedź stronę %s, aby zatwierdzić lub odrzucić sugestię." -#: src/Navigation/Notifications/Repository/Notify.php:434 -#: src/Navigation/Notifications/Repository/Notify.php:449 +#: src/Navigation/Notifications/Repository/Notify.php:420 +#: src/Navigation/Notifications/Repository/Notify.php:435 #, php-format msgid "%s Connection accepted" msgstr "%s Połączenie zaakceptowane" -#: src/Navigation/Notifications/Repository/Notify.php:436 -#: src/Navigation/Notifications/Repository/Notify.php:451 +#: src/Navigation/Notifications/Repository/Notify.php:422 +#: src/Navigation/Notifications/Repository/Notify.php:437 #, php-format msgid "'%1$s' has accepted your connection request at %2$s" msgstr "'%1$s' zaakceptował Twoją prośbę o połączenie na %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:437 -#: src/Navigation/Notifications/Repository/Notify.php:452 +#: src/Navigation/Notifications/Repository/Notify.php:423 +#: src/Navigation/Notifications/Repository/Notify.php:438 #, php-format msgid "%2$s has accepted your [url=%1$s]connection request[/url]." msgstr "%2$s zaakceptował twoją [url=%1$s] prośbę o połączenie [/url]." -#: src/Navigation/Notifications/Repository/Notify.php:442 +#: src/Navigation/Notifications/Repository/Notify.php:428 msgid "" "You are now mutual friends and may exchange status updates, photos, and " "email without restriction." msgstr "Jesteście teraz przyjaciółmi i możesz wymieniać aktualizacje stanu, zdjęcia i e-maile bez ograniczeń." -#: src/Navigation/Notifications/Repository/Notify.php:444 +#: src/Navigation/Notifications/Repository/Notify.php:430 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "Odwiedź stronę %s jeśli chcesz wprowadzić zmiany w tym związku." -#: src/Navigation/Notifications/Repository/Notify.php:457 +#: src/Navigation/Notifications/Repository/Notify.php:443 #, php-format msgid "" "'%1$s' has chosen to accept you a fan, which restricts some forms of " @@ -12370,34 +12336,34 @@ msgid "" "automatically." msgstr "'%1$s' zdecydował się zaakceptować Cię jako fana, który ogranicza niektóre formy komunikacji - takie jak prywatne wiadomości i niektóre interakcje w profilu. Jeśli jest to strona celebrytów lub społeczności, ustawienia te zostały zastosowane automatycznie." -#: src/Navigation/Notifications/Repository/Notify.php:459 +#: src/Navigation/Notifications/Repository/Notify.php:445 #, php-format msgid "" "'%1$s' may choose to extend this into a two-way or more permissive " "relationship in the future." msgstr "'%1$s' możesz zdecydować o przedłużeniu tego w dwukierunkową lub bardziej ścisłą relację w przyszłości. " -#: src/Navigation/Notifications/Repository/Notify.php:461 +#: src/Navigation/Notifications/Repository/Notify.php:447 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "Odwiedź stronę %s, jeśli chcesz wprowadzić zmiany w tej relacji." -#: src/Navigation/Notifications/Repository/Notify.php:471 +#: src/Navigation/Notifications/Repository/Notify.php:457 msgid "registration request" msgstr "prośba o rejestrację" -#: src/Navigation/Notifications/Repository/Notify.php:473 +#: src/Navigation/Notifications/Repository/Notify.php:459 #, php-format msgid "You've received a registration request from '%1$s' at %2$s" msgstr "Otrzymałeś wniosek rejestracyjny od '%1$s' na %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:474 +#: src/Navigation/Notifications/Repository/Notify.php:460 #, php-format msgid "You've received a [url=%1$s]registration request[/url] from %2$s." msgstr "Otrzymałeś [url=%1$s] żądanie rejestracji [/url] od %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:479 -#: src/Navigation/Notifications/Repository/Notify.php:500 +#: src/Navigation/Notifications/Repository/Notify.php:465 +#: src/Navigation/Notifications/Repository/Notify.php:486 #, php-format msgid "" "Display Name:\t%s\n" @@ -12405,288 +12371,288 @@ msgid "" "Login Name:\t%s (%s)" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:485 +#: src/Navigation/Notifications/Repository/Notify.php:471 #, php-format msgid "Please visit %s to approve or reject the request." msgstr "Odwiedź stronę %s, aby zatwierdzić lub odrzucić wniosek." -#: src/Navigation/Notifications/Repository/Notify.php:492 +#: src/Navigation/Notifications/Repository/Notify.php:478 msgid "new registration" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:494 +#: src/Navigation/Notifications/Repository/Notify.php:480 #, php-format msgid "You've received a new registration from '%1$s' at %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:495 +#: src/Navigation/Notifications/Repository/Notify.php:481 #, php-format msgid "You've received a [url=%1$s]new registration[/url] from %2$s." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:506 +#: src/Navigation/Notifications/Repository/Notify.php:492 #, php-format msgid "Please visit %s to have a look at the new registration." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:782 +#: src/Navigation/Notifications/Repository/Notify.php:768 #, php-format msgid "%s %s tagged you" msgstr "%s %s oznaczył Cię" -#: src/Navigation/Notifications/Repository/Notify.php:785 +#: src/Navigation/Notifications/Repository/Notify.php:771 #, php-format msgid "%s %s shared a new post" msgstr "%s %s udostępnił nowy wpis" -#: src/Navigation/Notifications/Repository/Notify.php:793 +#: src/Navigation/Notifications/Repository/Notify.php:779 #, php-format msgid "%1$s %2$s liked your post #%3$d" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:796 +#: src/Navigation/Notifications/Repository/Notify.php:782 #, php-format msgid "%1$s %2$s liked your comment on #%3$d" msgstr "" -#: src/Object/EMail/ItemCCEMail.php:42 +#: src/Object/EMail/ItemCCEMail.php:28 #, php-format msgid "" "This message was sent to you by %s, a member of the Friendica social " "network." msgstr "Wiadomość została wysłana do ciebie od %s, członka sieci społecznościowej Friendica." -#: src/Object/EMail/ItemCCEMail.php:44 +#: src/Object/EMail/ItemCCEMail.php:30 #, php-format msgid "You may visit them online at %s" msgstr "Możesz odwiedzić ich online pod adresem %s" -#: src/Object/EMail/ItemCCEMail.php:45 +#: src/Object/EMail/ItemCCEMail.php:31 msgid "" "Please contact the sender by replying to this post if you do not wish to " "receive these messages." msgstr "Jeśli nie chcesz otrzymywać tych wiadomości kontaktuj się z nadawcą odpowiadając na ten wpis." -#: src/Object/EMail/ItemCCEMail.php:49 +#: src/Object/EMail/ItemCCEMail.php:35 #, php-format msgid "%s posted an update." msgstr "%s zaktualizował wpis." -#: src/Object/Post.php:138 +#: src/Object/Post.php:124 msgid "Private Message" msgstr "Wiadomość prywatna" -#: src/Object/Post.php:142 +#: src/Object/Post.php:128 msgid "Public Message" msgstr "Wiadomość publiczna" -#: src/Object/Post.php:146 +#: src/Object/Post.php:132 msgid "Unlisted Message" msgstr "Wiadomość niepubliczna" -#: src/Object/Post.php:182 +#: src/Object/Post.php:168 msgid "This entry was edited" msgstr "Ten wpis został zedytowany" -#: src/Object/Post.php:210 +#: src/Object/Post.php:196 msgid "Connector Message" msgstr "Komunikat łącznika" -#: src/Object/Post.php:239 src/Object/Post.php:241 +#: src/Object/Post.php:225 src/Object/Post.php:227 msgid "Edit" msgstr "Edytuj" -#: src/Object/Post.php:275 +#: src/Object/Post.php:261 msgid "Delete globally" msgstr "Usuń globalnie" -#: src/Object/Post.php:275 +#: src/Object/Post.php:261 msgid "Remove locally" msgstr "Usuń lokalnie" -#: src/Object/Post.php:282 +#: src/Object/Post.php:268 #, php-format msgid "Block %s" msgstr "Zablokuj %s" -#: src/Object/Post.php:287 +#: src/Object/Post.php:273 #, php-format msgid "Ignore %s" msgstr "" -#: src/Object/Post.php:292 +#: src/Object/Post.php:278 #, php-format msgid "Collapse %s" msgstr "" -#: src/Object/Post.php:296 +#: src/Object/Post.php:282 msgid "Report post" msgstr "" -#: src/Object/Post.php:307 +#: src/Object/Post.php:293 msgid "Save to folder" msgstr "Zapisz w katalogu" -#: src/Object/Post.php:347 +#: src/Object/Post.php:333 msgid "I will attend" msgstr "Będę uczestniczyć" -#: src/Object/Post.php:347 +#: src/Object/Post.php:333 msgid "I will not attend" msgstr "Nie będę uczestniczyć" -#: src/Object/Post.php:347 +#: src/Object/Post.php:333 msgid "I might attend" msgstr "Mogę wziąć udział" -#: src/Object/Post.php:394 +#: src/Object/Post.php:380 msgid "Ignore thread" msgstr "Zignoruj wątek" -#: src/Object/Post.php:395 +#: src/Object/Post.php:381 msgid "Unignore thread" msgstr "Przestań ignorować wątek" -#: src/Object/Post.php:396 +#: src/Object/Post.php:382 msgid "Toggle ignore status" msgstr "Przełącz stan ignorowania" -#: src/Object/Post.php:406 +#: src/Object/Post.php:392 msgid "Add star" msgstr "Dodaj gwiazdkę" -#: src/Object/Post.php:407 +#: src/Object/Post.php:393 msgid "Remove star" msgstr "Usuń gwiazdkę" -#: src/Object/Post.php:408 +#: src/Object/Post.php:394 msgid "Toggle star status" msgstr "Przełącz stan gwiazdy" -#: src/Object/Post.php:419 +#: src/Object/Post.php:405 msgid "Pin" msgstr "Przypnij" -#: src/Object/Post.php:420 +#: src/Object/Post.php:406 msgid "Unpin" msgstr "Odepnij" -#: src/Object/Post.php:421 +#: src/Object/Post.php:407 msgid "Toggle pin status" msgstr "Przełącz stan podpięcia" -#: src/Object/Post.php:424 +#: src/Object/Post.php:410 msgid "Pinned" msgstr "Przypięty" -#: src/Object/Post.php:429 +#: src/Object/Post.php:415 msgid "Add tag" msgstr "Dodaj znacznik" -#: src/Object/Post.php:444 +#: src/Object/Post.php:430 msgid "Quote share this" msgstr "Cytuj udostępnij to" -#: src/Object/Post.php:444 +#: src/Object/Post.php:430 msgid "Quote Share" msgstr "Udostępnienie cytatu" -#: src/Object/Post.php:447 +#: src/Object/Post.php:433 msgid "Reshare this" msgstr "Udostępnij to dalej" -#: src/Object/Post.php:447 +#: src/Object/Post.php:433 msgid "Reshare" msgstr "Udostępnij dalej" -#: src/Object/Post.php:448 +#: src/Object/Post.php:434 msgid "Cancel your Reshare" msgstr "Anuluj swoje dalsze udostępnianie" -#: src/Object/Post.php:448 +#: src/Object/Post.php:434 msgid "Unshare" msgstr "Przestań udostępniać" -#: src/Object/Post.php:492 +#: src/Object/Post.php:478 #, php-format msgid "%s (Received %s)" msgstr "%s (Otrzymano %s)" -#: src/Object/Post.php:498 +#: src/Object/Post.php:484 msgid "Comment this item on your system" msgstr "Skomentuj ten element w swoim systemie" -#: src/Object/Post.php:498 +#: src/Object/Post.php:484 msgid "Remote comment" msgstr "Zdalny komentarz" -#: src/Object/Post.php:520 +#: src/Object/Post.php:506 msgid "Share via ..." msgstr "Udostępnij poprzez..." -#: src/Object/Post.php:520 +#: src/Object/Post.php:506 msgid "Share via external services" msgstr "Udostępnij za pośrednictwem usług zewnętrznych" -#: src/Object/Post.php:527 +#: src/Object/Post.php:513 msgid "Unknown parent" msgstr "" -#: src/Object/Post.php:531 +#: src/Object/Post.php:517 #, php-format msgid "in reply to %s" msgstr "" -#: src/Object/Post.php:533 +#: src/Object/Post.php:519 msgid "Parent is probably private or not federated." msgstr "" -#: src/Object/Post.php:557 +#: src/Object/Post.php:543 msgid "to" msgstr "do" -#: src/Object/Post.php:558 +#: src/Object/Post.php:544 msgid "via" msgstr "przez" -#: src/Object/Post.php:559 +#: src/Object/Post.php:545 msgid "Wall-to-Wall" msgstr "Tablica-w-Tablicę" -#: src/Object/Post.php:560 +#: src/Object/Post.php:546 msgid "via Wall-To-Wall:" msgstr "przez Tablica-w-Tablicę:" -#: src/Object/Post.php:613 +#: src/Object/Post.php:599 #, php-format msgid "Reply to %s" msgstr "Odpowiedź %s" -#: src/Object/Post.php:616 +#: src/Object/Post.php:602 msgid "More" msgstr "Więcej" -#: src/Object/Post.php:635 +#: src/Object/Post.php:621 msgid "Notifier task is pending" msgstr "Zadanie Notifier jest w toku" -#: src/Object/Post.php:636 +#: src/Object/Post.php:622 msgid "Delivery to remote servers is pending" msgstr "Trwa przesyłanie do serwerów zdalnych" -#: src/Object/Post.php:637 +#: src/Object/Post.php:623 msgid "Delivery to remote servers is underway" msgstr "Trwa dostawa do serwerów zdalnych" -#: src/Object/Post.php:638 +#: src/Object/Post.php:624 msgid "Delivery to remote servers is mostly done" msgstr "Dostawa do zdalnych serwerów jest w większości wykonywana" -#: src/Object/Post.php:639 +#: src/Object/Post.php:625 msgid "Delivery to remote servers is done" msgstr "Trwa dostarczanie do zdalnych serwerów" -#: src/Object/Post.php:661 +#: src/Object/Post.php:647 #, php-format msgid "%d comment" msgid_plural "%d comments" @@ -12695,485 +12661,467 @@ msgstr[1] "%d komentarze" msgstr[2] "%d komentarzy" msgstr[3] "%d komentarzy" -#: src/Object/Post.php:662 +#: src/Object/Post.php:648 msgid "Show more" msgstr "Pokaż więcej" -#: src/Object/Post.php:663 +#: src/Object/Post.php:649 msgid "Show fewer" msgstr "Pokaż mniej" -#: src/Object/Post.php:700 +#: src/Object/Post.php:686 #, php-format msgid "Reshared by: %s" msgstr "" -#: src/Object/Post.php:705 +#: src/Object/Post.php:691 #, php-format msgid "Viewed by: %s" msgstr "" -#: src/Object/Post.php:710 +#: src/Object/Post.php:696 #, php-format msgid "Read by: %s" msgstr "" -#: src/Object/Post.php:715 +#: src/Object/Post.php:701 #, php-format msgid "Liked by: %s" msgstr "" -#: src/Object/Post.php:720 +#: src/Object/Post.php:706 #, php-format msgid "Disliked by: %s" msgstr "" -#: src/Object/Post.php:725 +#: src/Object/Post.php:711 #, php-format msgid "Attended by: %s" msgstr "" -#: src/Object/Post.php:730 +#: src/Object/Post.php:716 #, php-format msgid "Maybe attended by: %s" msgstr "" -#: src/Object/Post.php:735 +#: src/Object/Post.php:721 #, php-format msgid "Not attended by: %s" msgstr "" -#: src/Object/Post.php:740 +#: src/Object/Post.php:726 #, php-format msgid "Commented by: %s" msgstr "" -#: src/Object/Post.php:745 +#: src/Object/Post.php:731 #, php-format msgid "Reacted with %s by: %s" msgstr "" -#: src/Object/Post.php:768 +#: src/Object/Post.php:754 #, php-format msgid "Quote shared by: %s" msgstr "" -#: src/Protocol/ActivityPub/Receiver.php:571 +#: src/Protocol/ActivityPub/Receiver.php:557 msgid "Chat" msgstr "" -#: src/Protocol/Delivery.php:544 +#: src/Protocol/Delivery.php:530 msgid "(no subject)" msgstr "(bez tematu)" -#: src/Protocol/OStatus.php:1392 -#, php-format -msgid "%s is now following %s." -msgstr "%s zaczął(-ęła) obserwować %s." - -#: src/Protocol/OStatus.php:1393 -msgid "following" -msgstr "następujący" - -#: src/Protocol/OStatus.php:1396 -#, php-format -msgid "%s stopped following %s." -msgstr "%s przestał(a) obserwować %s." - -#: src/Protocol/OStatus.php:1397 -msgid "stopped following" -msgstr "przestał śledzić" - -#: src/Render/FriendicaSmartyEngine.php:56 +#: src/Render/FriendicaSmartyEngine.php:42 #, php-format msgid "The folder %s must be writable by webserver." msgstr "" -#: src/Security/Authentication.php:214 +#: src/Security/Authentication.php:200 msgid "Login failed." msgstr "Logowanie nieudane." -#: src/Security/Authentication.php:259 +#: src/Security/Authentication.php:245 msgid "Login failed. Please check your credentials." msgstr "Logowanie nie powiodło się. Sprawdź swoje dane uwierzytelniające." -#: src/Security/Authentication.php:373 +#: src/Security/Authentication.php:359 #, php-format msgid "Welcome %s" msgstr "Witaj %s" -#: src/Security/Authentication.php:374 +#: src/Security/Authentication.php:360 msgid "Please upload a profile photo." msgstr "Proszę dodać zdjęcie profilowe." -#: src/Security/OpenWebAuth.php:163 +#: src/Security/OpenWebAuth.php:149 #, php-format msgid "OpenWebAuth: %1$s welcomes %2$s" msgstr "OpenWebAuth: %1$s wita %2$s" -#: src/Util/EMailer/MailBuilder.php:260 +#: src/Util/EMailer/MailBuilder.php:246 msgid "Friendica Notification" msgstr "Powiadomienia Friendica" -#: src/Util/EMailer/NotifyMailBuilder.php:78 -#: src/Util/EMailer/SystemMailBuilder.php:54 +#: src/Util/EMailer/NotifyMailBuilder.php:64 +#: src/Util/EMailer/SystemMailBuilder.php:40 #, php-format msgid "%1$s, %2$s Administrator" msgstr "%1$s, %2$s Administrator" -#: src/Util/EMailer/NotifyMailBuilder.php:80 -#: src/Util/EMailer/SystemMailBuilder.php:56 +#: src/Util/EMailer/NotifyMailBuilder.php:66 +#: src/Util/EMailer/SystemMailBuilder.php:42 #, php-format msgid "%s Administrator" msgstr "%s Administrator" -#: src/Util/EMailer/NotifyMailBuilder.php:193 -#: src/Util/EMailer/NotifyMailBuilder.php:217 -#: src/Util/EMailer/SystemMailBuilder.php:101 -#: src/Util/EMailer/SystemMailBuilder.php:118 +#: src/Util/EMailer/NotifyMailBuilder.php:179 +#: src/Util/EMailer/NotifyMailBuilder.php:203 +#: src/Util/EMailer/SystemMailBuilder.php:87 +#: src/Util/EMailer/SystemMailBuilder.php:104 msgid "thanks" msgstr "dziękuję" -#: src/Util/Temporal.php:172 +#: src/Util/Temporal.php:158 msgid "YYYY-MM-DD or MM-DD" msgstr "RRRR-MM-DD lub MM-DD" -#: src/Util/Temporal.php:280 +#: src/Util/Temporal.php:266 #, php-format msgid "Time zone: %s Change in Settings" msgstr "Strefa czasowa: %s Zmień w ustawieniach" -#: src/Util/Temporal.php:320 src/Util/Temporal.php:329 +#: src/Util/Temporal.php:306 src/Util/Temporal.php:315 msgid "never" msgstr "nigdy" -#: src/Util/Temporal.php:343 +#: src/Util/Temporal.php:329 msgid "less than a second ago" msgstr "mniej niż sekundę temu" -#: src/Util/Temporal.php:352 +#: src/Util/Temporal.php:338 msgid "year" msgstr "rok" -#: src/Util/Temporal.php:352 +#: src/Util/Temporal.php:338 msgid "years" msgstr "lata" -#: src/Util/Temporal.php:353 +#: src/Util/Temporal.php:339 msgid "months" msgstr "miesiące" -#: src/Util/Temporal.php:354 +#: src/Util/Temporal.php:340 msgid "weeks" msgstr "tygodnie" -#: src/Util/Temporal.php:355 +#: src/Util/Temporal.php:341 msgid "days" msgstr "dni" -#: src/Util/Temporal.php:356 +#: src/Util/Temporal.php:342 msgid "hour" msgstr "godzina" -#: src/Util/Temporal.php:356 +#: src/Util/Temporal.php:342 msgid "hours" msgstr "godziny" -#: src/Util/Temporal.php:357 +#: src/Util/Temporal.php:343 msgid "minute" msgstr "minuta" -#: src/Util/Temporal.php:357 +#: src/Util/Temporal.php:343 msgid "minutes" msgstr "minut" -#: src/Util/Temporal.php:358 +#: src/Util/Temporal.php:344 msgid "second" msgstr "sekunda" -#: src/Util/Temporal.php:358 +#: src/Util/Temporal.php:344 msgid "seconds" msgstr "sekundy" -#: src/Util/Temporal.php:367 +#: src/Util/Temporal.php:353 #, php-format msgid "in %1$d %2$s" msgstr "w %1$d %2$s" -#: src/Util/Temporal.php:370 +#: src/Util/Temporal.php:356 #, php-format msgid "%1$d %2$s ago" msgstr "%1$d %2$s temu" -#: src/Worker/PushSubscription.php:110 +#: src/Worker/PushSubscription.php:96 msgid "Notification from Friendica" msgstr "Powiadomienia z Friendica" -#: src/Worker/PushSubscription.php:111 +#: src/Worker/PushSubscription.php:97 msgid "Empty Post" msgstr "Pusty wpis" -#: view/theme/duepuntozero/config.php:68 +#: view/theme/duepuntozero/config.php:56 msgid "default" msgstr "standardowe" -#: view/theme/duepuntozero/config.php:69 +#: view/theme/duepuntozero/config.php:57 msgid "greenzero" msgstr "zielone zero" -#: view/theme/duepuntozero/config.php:70 +#: view/theme/duepuntozero/config.php:58 msgid "purplezero" msgstr "fioletowe zero" -#: view/theme/duepuntozero/config.php:71 +#: view/theme/duepuntozero/config.php:59 msgid "easterbunny" msgstr "zajączek wielkanocny" -#: view/theme/duepuntozero/config.php:72 +#: view/theme/duepuntozero/config.php:60 msgid "darkzero" msgstr "ciemne zero" -#: view/theme/duepuntozero/config.php:73 +#: view/theme/duepuntozero/config.php:61 msgid "comix" msgstr "comix" -#: view/theme/duepuntozero/config.php:74 +#: view/theme/duepuntozero/config.php:62 msgid "slackr" msgstr "luźny" -#: view/theme/duepuntozero/config.php:87 +#: view/theme/duepuntozero/config.php:75 msgid "Variations" msgstr "Wariacje" -#: view/theme/frio/config.php:146 +#: view/theme/frio/config.php:134 msgid "Note" msgstr "Uwaga" -#: view/theme/frio/config.php:146 +#: view/theme/frio/config.php:134 msgid "Check image permissions if all users are allowed to see the image" msgstr "Sprawdź uprawnienia do obrazu, jeśli wszyscy użytkownicy mogą oglądać obraz" -#: view/theme/frio/config.php:152 +#: view/theme/frio/config.php:140 msgid "Appearance" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Accent color" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Blue" msgstr "Niebieski" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Red" msgstr "Czerwony" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Purple" msgstr "Purpurowy" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Green" msgstr "Zielony" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Pink" msgstr "Różowy" -#: view/theme/frio/config.php:154 +#: view/theme/frio/config.php:142 msgid "Copy or paste schemestring" msgstr "Skopiuj lub wklej ciąg schematu" -#: view/theme/frio/config.php:154 +#: view/theme/frio/config.php:142 msgid "" "You can copy this string to share your theme with others. Pasting here " "applies the schemestring" msgstr "Możesz skopiować ten ciąg, aby podzielić się swoim motywem z innymi. Wklejanie tutaj stosuje schemat" -#: view/theme/frio/config.php:155 +#: view/theme/frio/config.php:143 msgid "Navigation bar background color" msgstr "Kolor tła paska nawigacyjnego" -#: view/theme/frio/config.php:156 +#: view/theme/frio/config.php:144 msgid "Navigation bar icon color " msgstr "Kolor ikon na pasku nawigacyjnym " -#: view/theme/frio/config.php:157 +#: view/theme/frio/config.php:145 msgid "Link color" msgstr "Kolor odnośników" -#: view/theme/frio/config.php:158 +#: view/theme/frio/config.php:146 msgid "Set the background color" msgstr "Ustaw kolor tła" -#: view/theme/frio/config.php:159 +#: view/theme/frio/config.php:147 msgid "Content background opacity" msgstr "Nieprzezroczystość tła treści" -#: view/theme/frio/config.php:160 +#: view/theme/frio/config.php:148 msgid "Set the background image" msgstr "Ustaw obraz tła" -#: view/theme/frio/config.php:161 +#: view/theme/frio/config.php:149 msgid "Background image style" msgstr "Styl obrazu tła" -#: view/theme/frio/config.php:164 +#: view/theme/frio/config.php:152 msgid "Always open Compose page" msgstr "" -#: view/theme/frio/config.php:164 +#: view/theme/frio/config.php:152 msgid "" "The New Post button always open the Compose page " "instead of the modal form. When this is disabled, the Compose page can be " "accessed with a middle click on the link or from the modal." msgstr "" -#: view/theme/frio/config.php:168 +#: view/theme/frio/config.php:156 msgid "Login page background image" msgstr "Obraz tła strony logowania" -#: view/theme/frio/config.php:172 +#: view/theme/frio/config.php:160 msgid "Login page background color" msgstr "Kolor tła strony logowania" -#: view/theme/frio/config.php:172 +#: view/theme/frio/config.php:160 msgid "Leave background image and color empty for theme defaults" msgstr "Pozostaw pusty obraz tła i kolor dla domyślnych ustawień motywu" -#: view/theme/frio/php/Image.php:39 +#: view/theme/frio/php/Image.php:27 msgid "Top Banner" msgstr "Górny baner" -#: view/theme/frio/php/Image.php:39 +#: view/theme/frio/php/Image.php:27 msgid "" "Resize image to the width of the screen and show background color below on " "long pages." msgstr "Zmień rozmiar obrazu do szerokości ekranu i pokaż kolor tła poniżej na długich stronach." -#: view/theme/frio/php/Image.php:40 +#: view/theme/frio/php/Image.php:28 msgid "Full screen" msgstr "Pełny ekran" -#: view/theme/frio/php/Image.php:40 +#: view/theme/frio/php/Image.php:28 msgid "" "Resize image to fill entire screen, clipping either the right or the bottom." msgstr "Zmień rozmiar obrazu, aby wypełnić cały ekran, przycinając prawy lub dolny." -#: view/theme/frio/php/Image.php:41 +#: view/theme/frio/php/Image.php:29 msgid "Single row mosaic" msgstr "Mozaika jednorzędowa" -#: view/theme/frio/php/Image.php:41 +#: view/theme/frio/php/Image.php:29 msgid "" "Resize image to repeat it on a single row, either vertical or horizontal." msgstr "Zmień rozmiar obrazu, aby powtórzyć go w jednym wierszu, w pionie lub w poziomie." -#: view/theme/frio/php/Image.php:42 +#: view/theme/frio/php/Image.php:30 msgid "Mosaic" msgstr "Mozaika" -#: view/theme/frio/php/Image.php:42 +#: view/theme/frio/php/Image.php:30 msgid "Repeat image to fill the screen." msgstr "Powtórz obraz, aby wypełnić ekran." -#: view/theme/frio/php/default.php:82 view/theme/frio/php/standard.php:40 +#: view/theme/frio/php/default.php:70 view/theme/frio/php/standard.php:28 msgid "Skip to main content" msgstr "Przejdź do głównej zawartości" -#: view/theme/frio/php/default.php:153 view/theme/frio/php/standard.php:75 +#: view/theme/frio/php/default.php:141 view/theme/frio/php/standard.php:63 msgid "Back to top" msgstr "Powrót do góry" -#: view/theme/frio/php/scheme.php:105 +#: view/theme/frio/php/scheme.php:93 msgid "Light" msgstr "" -#: view/theme/frio/php/scheme.php:106 +#: view/theme/frio/php/scheme.php:94 msgid "Dark" msgstr "" -#: view/theme/frio/php/scheme.php:107 +#: view/theme/frio/php/scheme.php:95 msgid "Black" msgstr "" -#: view/theme/frio/php/scheme.php:118 +#: view/theme/frio/php/scheme.php:106 msgid "Custom" msgstr "Własne" -#: view/theme/frio/theme.php:214 +#: view/theme/frio/theme.php:202 msgid "Guest" msgstr "Gość" -#: view/theme/frio/theme.php:217 +#: view/theme/frio/theme.php:205 msgid "Visitor" msgstr "Odwiedzający" -#: view/theme/quattro/config.php:89 +#: view/theme/quattro/config.php:77 msgid "Alignment" msgstr "Wyrównanie" -#: view/theme/quattro/config.php:89 +#: view/theme/quattro/config.php:77 msgid "Left" msgstr "Do lewej" -#: view/theme/quattro/config.php:89 +#: view/theme/quattro/config.php:77 msgid "Center" msgstr "Do środka" -#: view/theme/quattro/config.php:90 +#: view/theme/quattro/config.php:78 msgid "Color scheme" msgstr "Schemat kolorów" -#: view/theme/quattro/config.php:91 +#: view/theme/quattro/config.php:79 msgid "Posts font size" msgstr "Rozmiar czcionki wpisów" -#: view/theme/quattro/config.php:92 +#: view/theme/quattro/config.php:80 msgid "Textareas font size" msgstr "Rozmiar czcionki obszarów tekstowych" -#: view/theme/vier/config.php:91 +#: view/theme/vier/config.php:79 msgid "Comma separated list of helper groups" msgstr "" -#: view/theme/vier/config.php:131 +#: view/theme/vier/config.php:119 msgid "don't show" msgstr "nie pokazuj" -#: view/theme/vier/config.php:131 +#: view/theme/vier/config.php:119 msgid "show" msgstr "pokazuj" -#: view/theme/vier/config.php:137 +#: view/theme/vier/config.php:125 msgid "Set style" msgstr "Ustaw styl" -#: view/theme/vier/config.php:138 +#: view/theme/vier/config.php:126 msgid "Community Pages" msgstr "Strony społeczności" -#: view/theme/vier/config.php:139 view/theme/vier/theme.php:148 +#: view/theme/vier/config.php:127 view/theme/vier/theme.php:136 msgid "Community Profiles" msgstr "Profile społeczności" -#: view/theme/vier/config.php:140 +#: view/theme/vier/config.php:128 msgid "Help or @NewHere ?" msgstr "Pomóż lub @NowyTutaj ?" -#: view/theme/vier/config.php:141 view/theme/vier/theme.php:319 +#: view/theme/vier/config.php:129 view/theme/vier/theme.php:307 msgid "Connect Services" msgstr "Połączone serwisy" -#: view/theme/vier/config.php:142 +#: view/theme/vier/config.php:130 msgid "Find Friends" msgstr "Znajdź znajomych" -#: view/theme/vier/config.php:143 view/theme/vier/theme.php:175 +#: view/theme/vier/config.php:131 view/theme/vier/theme.php:163 msgid "Last users" msgstr "Ostatni użytkownicy" -#: view/theme/vier/theme.php:234 +#: view/theme/vier/theme.php:222 msgid "Quick Start" msgstr "Szybki start" diff --git a/view/lang/pl/strings.php b/view/lang/pl/strings.php index 562b084f09..05edd2abb1 100644 --- a/view/lang/pl/strings.php +++ b/view/lang/pl/strings.php @@ -709,7 +709,6 @@ $a->strings['An author or name was not found.'] = 'Autor lub nazwa nie zostało $a->strings['No browser URL could be matched to this address.'] = 'Przeglądarka WWW nie może odnaleźć podanego adresu'; $a->strings['Unable to match @-style Identity Address with a known protocol or email contact.'] = 'Nie można dopasować @-stylu Adres identyfikacyjny ze znanym protokołem lub kontaktem e-mail.'; $a->strings['Use mailto: in front of address to force email check.'] = 'Użyj mailto: przed adresem, aby wymusić sprawdzanie poczty e-mail.'; -$a->strings['The profile address specified belongs to a network which has been disabled on this site.'] = 'Określony adres profilu należy do sieci, która została wyłączona na tej stronie.'; $a->strings['Limited profile. This person will be unable to receive direct/personal notifications from you.'] = 'Profil ograniczony. Ta osoba będzie niezdolna do odbierania osobistych powiadomień od ciebie.'; $a->strings['Unable to retrieve contact information.'] = 'Nie można otrzymać informacji kontaktowych'; $a->strings['Starts:'] = 'Rozpoczęcie:'; @@ -734,7 +733,6 @@ $a->strings['Show map'] = 'Pokaż mapę'; $a->strings['Hide map'] = 'Ukryj mapę'; $a->strings['%s\'s birthday'] = 'Urodziny %s'; $a->strings['Happy Birthday %s'] = 'Wszystkiego najlepszego %s'; -$a->strings['Detected languages in this post:\n%s'] = 'Wykryte języki w tym wpisie:\n%s'; $a->strings['activity'] = 'aktywność'; $a->strings['comment'] = 'komentarz'; $a->strings['post'] = 'wpis'; @@ -1035,8 +1033,6 @@ $a->strings['Posts per user on community page'] = 'Lista wpisów użytkownika na $a->strings['Enable Mail support'] = 'Włącz obsługę maili'; $a->strings['Enable built-in mail support to poll IMAP folders and to reply via mail.'] = 'Włącz wbudowaną obsługę poczty, aby odpytywać katalogi IMAP i odpowiadać pocztą.'; $a->strings['Mail support can\'t be enabled because the PHP IMAP module is not installed.'] = 'Nie można włączyć obsługi poczty, ponieważ moduł PHP IMAP nie jest zainstalowany.'; -$a->strings['Enable OStatus support'] = 'Włącz obsługę OStatus'; -$a->strings['Enable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public.'] = 'Włącz wbudowaną kompatybilność z OStatus (StatusNet, GNU Social itp.). Wszystkie komunikaty w OSstatus są publiczne.'; $a->strings['Diaspora support can\'t be enabled because Friendica was installed into a sub directory.'] = 'Obsługa Diaspory nie może być włączona, ponieważ Friendica została zainstalowana w podkatalogu.'; $a->strings['Enable Diaspora support'] = 'Włączyć obsługę Diaspory'; $a->strings['Enable built-in Diaspora network compatibility for communicating with diaspora servers.'] = 'Włącz wbudowaną kompatybilność sieci Diaspora do komunikacji z serwerami diaspory.'; @@ -1078,7 +1074,6 @@ $a->strings['When the database cleanup is enabled, this defines the days after w $a->strings['Lifespan of unclaimed items'] = 'Żywotność nieodebranych przedmiotów'; $a->strings['When the database cleanup is enabled, this defines the days after which unclaimed remote items (mostly content from the relay) will be deleted. Default value is 90 days. Defaults to the general lifespan value of remote items if set to 0.'] = 'Po włączeniu czyszczenia bazy danych określa się dni, po których usunięte zostaną nieodebrane zdalne elementy (głównie zawartość z przekaźnika). Wartość domyślna to 90 dni. Wartość domyślna dla ogólnej długości życia zdalnych pozycji, jeśli jest ustawiona na 0.'; $a->strings['Lifespan of raw conversation data'] = 'Trwałość nieprzetworzonych danych konwersacji'; -$a->strings['The conversation data is used for ActivityPub and OStatus, as well as for debug purposes. It should be safe to remove it after 14 days, default is 90 days.'] = 'Dane konwersacji są używane do ActivityPub i OStatus, a także do celów debugowania. Powinno być bezpieczne usunięcie go po 14 dniach, domyślnie jest to 90 dni.'; $a->strings['Maximum numbers of comments per post'] = 'Maksymalna liczba komentarzy na wpis'; $a->strings['How much comments should be shown for each post? Default value is 100.'] = 'Ile komentarzy powinno być wyświetlanych dla każdego wpisu? Domyślna wartość to 100.'; $a->strings['Maximum numbers of comments per post on the display page'] = 'Maksymalna liczba komentarzy na wpis na wyświetlanej stronie'; @@ -1326,7 +1321,6 @@ $a->strings['Submit Request'] = 'Wyślij zgłoszenie'; $a->strings['You already added this contact.'] = 'Już dodałeś ten kontakt.'; $a->strings['The network type couldn\'t be detected. Contact can\'t be added.'] = 'Nie można wykryć typu sieci. Kontakt nie może zostać dodany.'; $a->strings['Diaspora support isn\'t enabled. Contact can\'t be added.'] = 'Obsługa Diaspory nie jest włączona. Kontakt nie może zostać dodany.'; -$a->strings['OStatus support is disabled. Contact can\'t be added.'] = 'Obsługa OStatus jest wyłączona. Kontakt nie może zostać dodany.'; $a->strings['Please answer the following:'] = 'Proszę odpowiedzieć na następujące pytania:'; $a->strings['Your Identity Address:'] = 'Twój adres tożsamości:'; $a->strings['Profile URL'] = 'Adres URL profilu'; @@ -1765,9 +1759,6 @@ $a->strings['Unsupported or missing response type'] = 'Nieobsługiwany lub braku $a->strings['Incomplete request data'] = 'Niekompletne dane żądania'; $a->strings['Please copy the following authentication code into your application and close this window: %s'] = 'Skopiuj następujący kod uwierzytelniający do swojej aplikacji i zamknij to okno: %s'; $a->strings['Unsupported or missing grant type'] = 'Nieobsługiwany lub brakujący typ dotacji'; -$a->strings['Resubscribing to OStatus contacts'] = 'Ponowne subskrybowanie kontaktów OStatus'; -$a->strings['Keep this window open until done.'] = 'Pozostaw to okno otwarte, dopóki nie będzie gotowe.'; -$a->strings['✔ Done'] = '✔ Gotowe'; $a->strings['Subscribing to contacts'] = 'Subskrybowanie kontaktów'; $a->strings['No contact provided.'] = 'Brak kontaktu.'; $a->strings['Couldn\'t fetch information for contact.'] = 'Nie można pobrać informacji o kontakcie.'; @@ -1779,6 +1770,7 @@ $a->strings['Done'] = 'Gotowe'; $a->strings['success'] = 'powodzenie'; $a->strings['failed'] = 'nie powiodło się'; $a->strings['ignored'] = 'ignorowany(-a)'; +$a->strings['Keep this window open until done.'] = 'Pozostaw to okno otwarte, dopóki nie będzie gotowe.'; $a->strings['The Photo is not available.'] = 'Zdjęcie jest niedostępne.'; $a->strings['The Photo with id %s is not available.'] = 'Zdjęcie z identyfikatorem %s nie jest dostępne.'; $a->strings['Invalid external resource with url %s.'] = 'Nieprawidłowy zasób zewnętrzny z adresem URL %s.'; @@ -1802,9 +1794,9 @@ $a->strings['Collection (%s)'] = 'Kolekcja (%s)'; $a->strings['Followers (%s)'] = 'Obserwujący (%s)'; $a->strings['%d more'] = '%d więcej'; $a->strings['No contacts.'] = 'Brak kontaktów.'; -$a->strings['%s\'s timeline'] = 'oś czasu %s'; $a->strings['%s\'s posts'] = 'wpisy %s'; $a->strings['%s\'s comments'] = 'komentarze %s'; +$a->strings['%s\'s timeline'] = 'oś czasu %s'; $a->strings['Image exceeds size limit of %s'] = 'Obraz przekracza limit rozmiaru wynoszący %s'; $a->strings['Image upload didn\'t complete, please try again'] = 'Przesyłanie zdjęć nie zostało zakończone, spróbuj ponownie'; $a->strings['Image file is missing'] = 'Brak pliku obrazu'; @@ -2030,7 +2022,6 @@ $a->strings['Description'] = 'Opis'; $a->strings['Add'] = 'Dodaj'; $a->strings['Failed to connect with email account using the settings provided.'] = 'Połączenie z kontem email używając wybranych ustawień nie powiodło się.'; $a->strings['Diaspora (Socialhome, Hubzilla)'] = 'Diaspora (Socialhome, Hubzilla)'; -$a->strings['OStatus (GNU Social)'] = 'OStatus (GNU Social)'; $a->strings['Email access is disabled on this site.'] = 'Dostęp do e-maila jest wyłączony na tej stronie.'; $a->strings['None'] = 'Brak'; $a->strings['General Social Media Settings'] = 'Ogólne ustawienia mediów społecznościowych'; @@ -2047,7 +2038,6 @@ $a->strings['Attach the link title'] = 'Dołącz tytuł linku'; $a->strings['When activated, the title of the attached link will be added as a title on posts to Diaspora. This is mostly helpful with "remote-self" contacts that share feed content.'] = 'Po aktywacji tytuł dołączonego linku zostanie dodany jako tytuł postów do Diaspory. Jest to szczególnie pomocne w przypadku kontaktów „zdalnych”, które udostępniają treść kanału.'; $a->strings['Your legacy ActivityPub/GNU Social account'] = 'Twoje stare konto ActivityPub/GNU Social'; $a->strings['If you enter your old account name from an ActivityPub based system or your GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done.'] = 'Jeśli wprowadzisz tutaj swoją starą nazwę konta z systemu opartego na ActivityPub lub nazwę konta GNU Social/Statusnet (w formacie użytkownik@domena.tld), Twoje kontakty zostaną dodane automatycznie. Po zakończeniu pole zostanie opróżnione.'; -$a->strings['Repair OStatus subscriptions'] = 'Napraw subskrypcje OStatus'; $a->strings['Email/Mailbox Setup'] = 'Ustawienia emaila/skrzynki mailowej'; $a->strings['If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox.'] = 'Jeśli chcesz komunikować się z kontaktami e-mail za pomocą tej usługi (opcjonalnie), określ sposób łączenia się ze skrzynką pocztową.'; $a->strings['Last successful email check:'] = 'Ostatni sprawdzony e-mail:'; @@ -2321,7 +2311,6 @@ $a->strings['%s commented on %s\'s post'] = '%s skomentował wpis %s'; $a->strings['%s created a new post'] = '%s dodał nowy wpis'; $a->strings['Friend Suggestion'] = 'Propozycja znajomych'; $a->strings['Friend/Connect Request'] = 'Prośba o dodanie do przyjaciół/powiązanych'; -$a->strings['New Follower'] = 'Nowy obserwujący'; $a->strings['%1$s wants to follow you'] = '%1$s chce Cię obserwować'; $a->strings['%1$s has started following you'] = '%1$s zaczął Cię obserwować'; $a->strings['%1$s liked your comment on %2$s'] = '%1$s polubił Twój komentarz o %2$s'; @@ -2449,10 +2438,6 @@ $a->strings['%d comment'] = [ $a->strings['Show more'] = 'Pokaż więcej'; $a->strings['Show fewer'] = 'Pokaż mniej'; $a->strings['(no subject)'] = '(bez tematu)'; -$a->strings['%s is now following %s.'] = '%s zaczął(-ęła) obserwować %s.'; -$a->strings['following'] = 'następujący'; -$a->strings['%s stopped following %s.'] = '%s przestał(a) obserwować %s.'; -$a->strings['stopped following'] = 'przestał śledzić'; $a->strings['Login failed.'] = 'Logowanie nieudane.'; $a->strings['Login failed. Please check your credentials.'] = 'Logowanie nie powiodło się. Sprawdź swoje dane uwierzytelniające.'; $a->strings['Welcome %s'] = 'Witaj %s'; diff --git a/view/lang/ru/messages.po b/view/lang/ru/messages.po index a4b2196811..bbfe55663e 100644 --- a/view/lang/ru/messages.po +++ b/view/lang/ru/messages.po @@ -1,8 +1,7 @@ # FRIENDICA Distributed Social Network -# SPDX-FileCopyrightText: Copyright (C) 2010-2024, the Friendica project -# -# SPDX-License-Identifier: AGPL-3.0-or-later -# +# Copyright (C) 2010-2024, the Friendica project +# This file is distributed under the same license as the Friendica package. +# # Translators: # Aleksandr "M.O.Z.G" Dikovupload_max_filesize
is set to %s (%s byte)"
msgstr ""
-#: src/Module/Admin/Site.php:499
+#: src/Module/Admin/Site.php:489
msgid "Maximum image length"
msgstr "Максимальная длина картинки"
-#: src/Module/Admin/Site.php:499
+#: src/Module/Admin/Site.php:489
msgid ""
"Maximum length in pixels of the longest side of uploaded images. Default is "
"-1, which means no limits."
msgstr "Максимальная длина в пикселях для длинной стороны загруженных изображений. По умолчанию равно -1, что означает отсутствие ограничений."
-#: src/Module/Admin/Site.php:500
+#: src/Module/Admin/Site.php:490
msgid "JPEG image quality"
msgstr "Качество JPEG изображения"
-#: src/Module/Admin/Site.php:500
+#: src/Module/Admin/Site.php:490
msgid ""
"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
"100, which is full quality."
msgstr "Загруженные изображения JPEG будут сохранены в этом качестве [0-100]. По умолчанию 100, что означает полное качество."
-#: src/Module/Admin/Site.php:502
+#: src/Module/Admin/Site.php:491
+msgid "Maximum media file size"
+msgstr ""
+
+#: src/Module/Admin/Site.php:491
+#, php-format
+msgid ""
+"Maximum size in bytes of uploaded media files. Default is 0, which means no limits. You can put k, m, or g behind the desired value for KiB, MiB, GiB, respectively.\n"
+"\t\t\t\t\t\t\t\t\t\t\t\t\tThe value of upload_max_filesize
in your PHP.ini
needs be set to at least the desired limit.\n"
+"\t\t\t\t\t\t\t\t\t\t\t\t\tCurrently upload_max_filesize
is set to %s (%s byte)"
+msgstr ""
+
+#: src/Module/Admin/Site.php:496
msgid "Register policy"
msgstr "Политика регистрации"
-#: src/Module/Admin/Site.php:503
+#: src/Module/Admin/Site.php:497
msgid "Maximum Users"
msgstr "Максимум пользователей"
-#: src/Module/Admin/Site.php:503
+#: src/Module/Admin/Site.php:497
msgid ""
"If defined, the register policy is automatically closed when the given "
"number of users is reached and reopens the registry when the number drops "
@@ -4812,167 +4822,167 @@ msgid ""
"not when the policy is set to approval."
msgstr "Если включено, регистрация будет автоматически закрываться при достижении указанного числа пользователей и вновь открываться, если число пользователей снова снизится. Это работает только, если регистрация установлена как открытая или закрытая, но не когда включено её одобрение."
-#: src/Module/Admin/Site.php:504
+#: src/Module/Admin/Site.php:498
msgid "Maximum Daily Registrations"
msgstr "Максимальное число регистраций в день"
-#: src/Module/Admin/Site.php:504
+#: src/Module/Admin/Site.php:498
msgid ""
"If registration is permitted above, this sets the maximum number of new user"
" registrations to accept per day. If register is set to closed, this "
"setting has no effect."
msgstr "Если регистрация разрешена, этот параметр устанавливает максимальное количество новых регистраций пользователей в день. Если регистрация закрыта, эта опция не имеет никакого эффекта."
-#: src/Module/Admin/Site.php:505
+#: src/Module/Admin/Site.php:499
msgid "Register text"
msgstr "Текст регистрации"
-#: src/Module/Admin/Site.php:505
+#: src/Module/Admin/Site.php:499
msgid ""
"Will be displayed prominently on the registration page. You can use BBCode "
"here."
msgstr "Будет отображаться на видном месте на странице регистрации. Вы можете использовать BBCode для оформления."
-#: src/Module/Admin/Site.php:506
+#: src/Module/Admin/Site.php:500
msgid "Forbidden Nicknames"
msgstr "Запрещённые ники"
-#: src/Module/Admin/Site.php:506
+#: src/Module/Admin/Site.php:500
msgid ""
"Comma separated list of nicknames that are forbidden from registration. "
"Preset is a list of role names according RFC 2142."
msgstr "Имена, перечисленные через запятую, которые запрещены для регистрации на этом узле. Предустановленный список соответствует RFC 2142."
-#: src/Module/Admin/Site.php:507
+#: src/Module/Admin/Site.php:501
msgid "Accounts abandoned after x days"
msgstr "Аккаунт считается после x дней не воспользованным"
-#: src/Module/Admin/Site.php:507
+#: src/Module/Admin/Site.php:501
msgid ""
"Will not waste system resources polling external sites for abandonded "
"accounts. Enter 0 for no time limit."
msgstr "Не будет тратить ресурсы для опроса сайтов для бесхозных контактов. Введите 0 для отключения лимита времени."
-#: src/Module/Admin/Site.php:508
+#: src/Module/Admin/Site.php:502
msgid "Allowed friend domains"
msgstr "Разрешенные домены друзей"
-#: src/Module/Admin/Site.php:508
+#: src/Module/Admin/Site.php:502
msgid ""
"Comma separated list of domains which are allowed to establish friendships "
"with this site. Wildcards are accepted. Empty to allow any domains"
msgstr "Разделенный запятыми список доменов, которые разрешены для установления связей. Групповые символы принимаются. Оставьте пустым для разрешения связи со всеми доменами."
-#: src/Module/Admin/Site.php:509
+#: src/Module/Admin/Site.php:503
msgid "Allowed email domains"
msgstr "Разрешенные почтовые домены"
-#: src/Module/Admin/Site.php:509
+#: src/Module/Admin/Site.php:503
msgid ""
"Comma separated list of domains which are allowed in email addresses for "
"registrations to this site. Wildcards are accepted. Empty to allow any "
"domains"
msgstr "Разделенный запятыми список доменов, которые разрешены для установления связей. Групповые символы принимаются. Оставьте пустым для разрешения связи со всеми доменами."
-#: src/Module/Admin/Site.php:510
+#: src/Module/Admin/Site.php:504
msgid "Disallowed email domains"
msgstr ""
-#: src/Module/Admin/Site.php:510
+#: src/Module/Admin/Site.php:504
msgid ""
"Comma separated list of domains which are rejected as email addresses for "
"registrations to this site. Wildcards are accepted."
msgstr ""
-#: src/Module/Admin/Site.php:511
+#: src/Module/Admin/Site.php:505
msgid "No OEmbed rich content"
msgstr "Не показывать контент OEmbed"
-#: src/Module/Admin/Site.php:511
+#: src/Module/Admin/Site.php:505
msgid ""
"Don't show the rich content (e.g. embedded PDF), except from the domains "
"listed below."
msgstr "Не показывать внедрённое содержимое (например, PDF), если источником не являются домены из списка ниже."
-#: src/Module/Admin/Site.php:512
+#: src/Module/Admin/Site.php:506
msgid "Trusted third-party domains"
msgstr "Доверенные внешние домены"
-#: src/Module/Admin/Site.php:512
+#: src/Module/Admin/Site.php:506
msgid ""
"Comma separated list of domains from which content is allowed to be embedded"
" in posts like with OEmbed. All sub-domains of the listed domains are "
"allowed as well."
msgstr "Список доменов через запятую, данные с которых будет разрешено внедрять в записи через OEmbed. Все поддомены этих доменов будут так же разрешены."
-#: src/Module/Admin/Site.php:513
+#: src/Module/Admin/Site.php:507
msgid "Block public"
msgstr "Блокировать общественный доступ"
-#: src/Module/Admin/Site.php:513
+#: src/Module/Admin/Site.php:507
msgid ""
"Check to block public access to all otherwise public personal pages on this "
"site unless you are currently logged in."
msgstr "Отметьте, чтобы заблокировать публичный доступ ко всем иным публичным личным страницам на этом сайте, если вы не вошли на сайт."
-#: src/Module/Admin/Site.php:514
+#: src/Module/Admin/Site.php:508
msgid "Force publish"
msgstr "Принудительная публикация"
-#: src/Module/Admin/Site.php:514
+#: src/Module/Admin/Site.php:508
msgid ""
"Check to force all profiles on this site to be listed in the site directory."
msgstr "Отметьте, чтобы принудительно заставить все профили на этом сайте, быть перечислеными в каталоге сайта."
-#: src/Module/Admin/Site.php:514
+#: src/Module/Admin/Site.php:508
msgid "Enabling this may violate privacy laws like the GDPR"
msgstr "Включение этого может нарушить законы о личных данных, например, GDPR."
-#: src/Module/Admin/Site.php:515
+#: src/Module/Admin/Site.php:509
msgid "Global directory URL"
msgstr "URL глобального каталога"
-#: src/Module/Admin/Site.php:515
+#: src/Module/Admin/Site.php:509
msgid ""
"URL to the global directory. If this is not set, the global directory is "
"completely unavailable to the application."
msgstr "Ссылка глобального каталога. Если не указано, то глобальный каталог будет полностью недоступен."
-#: src/Module/Admin/Site.php:516
+#: src/Module/Admin/Site.php:510
msgid "Private posts by default for new users"
msgstr "Частные сообщения по умолчанию для новых пользователей"
-#: src/Module/Admin/Site.php:516
+#: src/Module/Admin/Site.php:510
msgid ""
"Set default post permissions for all new members to the default privacy "
"circle rather than public."
msgstr "Установить права на создание записей по-умолчанию для всех участников в приватный круг, а не для публично."
-#: src/Module/Admin/Site.php:517
+#: src/Module/Admin/Site.php:511
msgid "Don't include post content in email notifications"
msgstr "Не включать текст сообщения в email-оповещение."
-#: src/Module/Admin/Site.php:517
+#: src/Module/Admin/Site.php:511
msgid ""
"Don't include the content of a post/comment/private message/etc. in the "
"email notifications that are sent out from this site, as a privacy measure."
msgstr "Не включать содержание сообщения/комментария/личного сообщения и т.д.. в уведомления электронной почты, отправленных с сайта, в качестве меры конфиденциальности."
-#: src/Module/Admin/Site.php:518
+#: src/Module/Admin/Site.php:512
msgid "Disallow public access to addons listed in the apps menu."
msgstr "Запретить публичный доступ к аддонам, перечисленным в меню приложений."
-#: src/Module/Admin/Site.php:518
+#: src/Module/Admin/Site.php:512
msgid ""
"Checking this box will restrict addons listed in the apps menu to members "
"only."
msgstr "При установке этого флажка, будут ограничены аддоны, перечисленные в меню приложений, только для участников."
-#: src/Module/Admin/Site.php:519
+#: src/Module/Admin/Site.php:513
msgid "Don't embed private images in posts"
msgstr "Не вставлять личные картинки в записи"
-#: src/Module/Admin/Site.php:519
+#: src/Module/Admin/Site.php:513
msgid ""
"Don't replace locally-hosted private photos in posts with an embedded copy "
"of the image. This means that contacts who receive posts containing private "
@@ -4980,11 +4990,11 @@ msgid ""
"while."
msgstr "Не заменяйте локально расположенные фотографии в записях на внедрённые копии изображений. Это означает, что контакты, которые получают сообщения, содержащие личные фотографии, будут вынуждены идентефицироваться и грузить каждое изображение, что может занять некоторое время."
-#: src/Module/Admin/Site.php:520
+#: src/Module/Admin/Site.php:514
msgid "Explicit Content"
msgstr "Контент для взрослых"
-#: src/Module/Admin/Site.php:520
+#: src/Module/Admin/Site.php:514
msgid ""
"Set this to announce that your node is used mostly for explicit content that"
" might not be suited for minors. This information will be published in the "
@@ -4993,329 +5003,319 @@ msgid ""
"will be shown at the user registration page."
msgstr "Включите, если ваш узел будет содержать преимущественно откровенный/чувствительный контент, который не должен быть показан несовершеннолетним. Эта информация появится в информации об узле и может быть использована, например, в глобальном каталоге для скрытия вашего узла при подборе узлов для регистрации. Так же пометка об этом появится на странице регистрации."
-#: src/Module/Admin/Site.php:521
+#: src/Module/Admin/Site.php:515
msgid "Only local search"
msgstr ""
-#: src/Module/Admin/Site.php:521
+#: src/Module/Admin/Site.php:515
msgid ""
"Blocks search for users who are not logged in to prevent crawlers from "
"blocking your system."
msgstr ""
-#: src/Module/Admin/Site.php:522
+#: src/Module/Admin/Site.php:516
msgid "Blocked tags for trending tags"
msgstr ""
-#: src/Module/Admin/Site.php:522
+#: src/Module/Admin/Site.php:516
msgid ""
"Comma separated list of hashtags that shouldn't be displayed in the trending"
" tags."
msgstr ""
-#: src/Module/Admin/Site.php:523
+#: src/Module/Admin/Site.php:517
msgid "Cache contact avatars"
msgstr "Кэшировать аватары"
-#: src/Module/Admin/Site.php:523
+#: src/Module/Admin/Site.php:517
msgid ""
"Locally store the avatar pictures of the contacts. This uses a lot of "
"storage space but it increases the performance."
msgstr "Локально сохранять аватары контактов. Это потребует существенного расхода места на диске, но увеличит производительность."
-#: src/Module/Admin/Site.php:524
+#: src/Module/Admin/Site.php:518
msgid "Allow Users to set remote_self"
msgstr "Разрешить пользователям установить remote_self"
-#: src/Module/Admin/Site.php:524
+#: src/Module/Admin/Site.php:518
msgid ""
"With checking this, every user is allowed to mark every contact as a "
"remote_self in the repair contact dialog. Setting this flag on a contact "
"causes mirroring every posting of that contact in the users stream."
msgstr "Если включено, любой пользователь сможет пометить любой контакт как \"remote_self\" в расширенных настройках контакта. Установка такого параметра приводит к тому, что все записи помеченного контакта публикуются в ленте от имени пользователя."
-#: src/Module/Admin/Site.php:525
+#: src/Module/Admin/Site.php:519
msgid "Allow Users to set up relay channels"
msgstr ""
-#: src/Module/Admin/Site.php:525
+#: src/Module/Admin/Site.php:519
msgid ""
"If enabled, it is possible to create relay users that are used to reshare "
"content based on user defined channels."
msgstr ""
-#: src/Module/Admin/Site.php:526
+#: src/Module/Admin/Site.php:520
msgid "Adjust the feed poll frequency"
msgstr ""
-#: src/Module/Admin/Site.php:526
+#: src/Module/Admin/Site.php:520
msgid "Automatically detect and set the best feed poll frequency."
msgstr ""
-#: src/Module/Admin/Site.php:527
+#: src/Module/Admin/Site.php:521
msgid "Minimum poll interval"
msgstr ""
-#: src/Module/Admin/Site.php:527
+#: src/Module/Admin/Site.php:521
msgid ""
"Minimal distance in minutes between two polls for mail and feed contacts. "
"Reasonable values are between 1 and 59."
msgstr ""
-#: src/Module/Admin/Site.php:528
+#: src/Module/Admin/Site.php:522
msgid "Enable multiple registrations"
msgstr "Разрешить несколько регистраций"
-#: src/Module/Admin/Site.php:528
+#: src/Module/Admin/Site.php:522
msgid "Enable users to register additional accounts for use as pages."
msgstr "Разрешить пользователям регистрировать дополнительные аккаунты для использования в качестве страниц."
-#: src/Module/Admin/Site.php:529
+#: src/Module/Admin/Site.php:523
msgid "Enable OpenID"
msgstr "Включить OpenID"
-#: src/Module/Admin/Site.php:529
+#: src/Module/Admin/Site.php:523
msgid "Enable OpenID support for registration and logins."
msgstr "Включить поддержку OpenID для регистрации и входа."
-#: src/Module/Admin/Site.php:530
+#: src/Module/Admin/Site.php:524
msgid "Enable full name check"
msgstr ""
-#: src/Module/Admin/Site.php:530
+#: src/Module/Admin/Site.php:524
msgid ""
"Prevents users from registering with a display name with fewer than two "
"parts separated by spaces."
msgstr ""
-#: src/Module/Admin/Site.php:531
+#: src/Module/Admin/Site.php:525
msgid "Email administrators on new registration"
msgstr "Уведомлять администраторов о новых регистрациях"
-#: src/Module/Admin/Site.php:531
+#: src/Module/Admin/Site.php:525
msgid ""
"If enabled and the system is set to an open registration, an email for each "
"new registration is sent to the administrators."
msgstr "Если включено и регистрации открыты, то о каждой новой регистрации будет сообщаться администраторам по электронной почте."
-#: src/Module/Admin/Site.php:532
+#: src/Module/Admin/Site.php:526
msgid "Community pages for visitors"
msgstr "Публичная лента для посетителей"
-#: src/Module/Admin/Site.php:532
+#: src/Module/Admin/Site.php:526
msgid ""
"Which community pages should be available for visitors. Local users always "
"see both pages."
msgstr "Какие публичные ленты будут доступны для гостей. Местные пользователи всегда видят обе ленты."
-#: src/Module/Admin/Site.php:533
+#: src/Module/Admin/Site.php:527
msgid "Posts per user on community page"
msgstr "Число записей на пользователя в публичной ленте"
-#: src/Module/Admin/Site.php:533
+#: src/Module/Admin/Site.php:527
msgid ""
"The maximum number of posts per user on the local community page. This is "
"useful, when a single user floods the local community page."
msgstr ""
-#: src/Module/Admin/Site.php:534
+#: src/Module/Admin/Site.php:528
msgid "Posts per server on community page"
msgstr ""
-#: src/Module/Admin/Site.php:534
+#: src/Module/Admin/Site.php:528
msgid ""
"The maximum number of posts per server on the global community page. This is"
" useful, when posts from a single server flood the global community page."
msgstr ""
-#: src/Module/Admin/Site.php:536
+#: src/Module/Admin/Site.php:530
msgid "Enable Mail support"
msgstr "Включить поддержку электронной почты"
-#: src/Module/Admin/Site.php:536
+#: src/Module/Admin/Site.php:530
msgid ""
"Enable built-in mail support to poll IMAP folders and to reply via mail."
msgstr "Включает встроенную поддержку электронной почты, позволяющую работать с папками IMAP и отвечать по почте."
-#: src/Module/Admin/Site.php:537
+#: src/Module/Admin/Site.php:531
msgid ""
"Mail support can't be enabled because the PHP IMAP module is not installed."
msgstr "Поддержка почты не может быть включена, так как не установлен модуль PHP IMAP."
-#: src/Module/Admin/Site.php:538
-msgid "Enable OStatus support"
-msgstr "Включить поддержку OStatus"
-
-#: src/Module/Admin/Site.php:538
-msgid ""
-"Enable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
-"communications in OStatus are public."
-msgstr "Включить встроенную поддержку OStatus (StatusNet, GNU Social и т.п.). Всё общение в OStatus происходит публично."
-
-#: src/Module/Admin/Site.php:540
+#: src/Module/Admin/Site.php:533
msgid ""
"Diaspora support can't be enabled because Friendica was installed into a sub"
" directory."
msgstr "Поддержка Diaspora не может быть включена, так как Френдика была установлена в подкаталог."
-#: src/Module/Admin/Site.php:541
+#: src/Module/Admin/Site.php:534
msgid "Enable Diaspora support"
msgstr "Включить поддержку Diaspora"
-#: src/Module/Admin/Site.php:541
+#: src/Module/Admin/Site.php:534
msgid ""
"Enable built-in Diaspora network compatibility for communicating with "
"diaspora servers."
msgstr "Включить встроенную поддержку Diaspora для общения с серверами сети Diaspora."
-#: src/Module/Admin/Site.php:542
+#: src/Module/Admin/Site.php:535
msgid "Verify SSL"
msgstr "Проверка SSL"
-#: src/Module/Admin/Site.php:542
+#: src/Module/Admin/Site.php:535
msgid ""
"If you wish, you can turn on strict certificate checking. This will mean you"
" cannot connect (at all) to self-signed SSL sites."
msgstr "Если хотите, вы можете включить строгую проверку сертификатов. Это будет означать, что вы не сможете соединиться (вообще) с сайтами, имеющими само-подписанный SSL сертификат."
-#: src/Module/Admin/Site.php:543
+#: src/Module/Admin/Site.php:536
msgid "Proxy user"
msgstr "Прокси пользователь"
-#: src/Module/Admin/Site.php:543
+#: src/Module/Admin/Site.php:536
msgid "User name for the proxy server."
msgstr "Имя пользователя прокси"
-#: src/Module/Admin/Site.php:544
+#: src/Module/Admin/Site.php:537
msgid "Proxy URL"
msgstr "Прокси URL"
-#: src/Module/Admin/Site.php:544
+#: src/Module/Admin/Site.php:537
msgid ""
"If you want to use a proxy server that Friendica should use to connect to "
"the network, put the URL of the proxy here."
msgstr "Если вы хотите указать прокси, который Friendica будет использовать для выхода в сеть, укажите здесь его URL."
-#: src/Module/Admin/Site.php:545
+#: src/Module/Admin/Site.php:538
msgid "Network timeout"
msgstr "Тайм-аут сети"
-#: src/Module/Admin/Site.php:545
+#: src/Module/Admin/Site.php:538
msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
msgstr "Значение указывается в секундах. Установите 0 для снятия ограничений (не рекомендуется)."
-#: src/Module/Admin/Site.php:546
+#: src/Module/Admin/Site.php:539
msgid "Maximum Load Average"
msgstr "Средняя максимальная нагрузка"
-#: src/Module/Admin/Site.php:546
+#: src/Module/Admin/Site.php:539
#, php-format
msgid ""
"Maximum system load before delivery and poll processes are deferred - "
"default %d."
msgstr "Максимальная нагрузка на систему, прежде чем задания опроса и доставки начнут приостанавливаться - по-умолчанию %d."
-#: src/Module/Admin/Site.php:547
+#: src/Module/Admin/Site.php:540
msgid "Minimal Memory"
msgstr "Минимум памяти"
-#: src/Module/Admin/Site.php:547
+#: src/Module/Admin/Site.php:540
msgid ""
"Minimal free memory in MB for the worker. Needs access to /proc/meminfo - "
"default 0 (deactivated)."
msgstr "Минимально допустимая свободная память ОЗУ для запуска заданий. Для работы нужен доступ в /proc/meminfo - по-умолчанию 0 (отключено)."
-#: src/Module/Admin/Site.php:548
+#: src/Module/Admin/Site.php:541
msgid "Periodically optimize tables"
msgstr "Периодически оптимизировать таблицы"
-#: src/Module/Admin/Site.php:548
+#: src/Module/Admin/Site.php:541
msgid "Periodically optimize tables like the cache and the workerqueue"
msgstr "Периодически оптимизировать таблицы, такие как cache и workerqueue"
-#: src/Module/Admin/Site.php:550
+#: src/Module/Admin/Site.php:543
msgid "Discover followers/followings from contacts"
msgstr "Обнаруживать подписчиков и друзей для контактов"
-#: src/Module/Admin/Site.php:550
+#: src/Module/Admin/Site.php:543
msgid ""
"If enabled, contacts are checked for their followers and following contacts."
msgstr "Если включено, контакты будут проверяться на наличие подписчиков и друзей."
-#: src/Module/Admin/Site.php:551
+#: src/Module/Admin/Site.php:544
msgid "None - deactivated"
msgstr "None - выключено."
-#: src/Module/Admin/Site.php:552
+#: src/Module/Admin/Site.php:545
msgid ""
"Local contacts - contacts of our local contacts are discovered for their "
"followers/followings."
msgstr "Local contacts - местные контакты будут проверяться на наличие подписчиков и друзей."
-#: src/Module/Admin/Site.php:553
+#: src/Module/Admin/Site.php:546
msgid ""
"Interactors - contacts of our local contacts and contacts who interacted on "
"locally visible postings are discovered for their followers/followings."
msgstr "Interactors - местные контакты и те контакты, кто взаимодействовал с локально видимыми записями, будут проверяться на наличие подписчиков и друзей."
-#: src/Module/Admin/Site.php:555
+#: src/Module/Admin/Site.php:548
msgid "Only update contacts/servers with local data"
msgstr ""
-#: src/Module/Admin/Site.php:555
+#: src/Module/Admin/Site.php:548
msgid ""
"If enabled, the system will only look for changes in contacts and servers "
"that engaged on this system by either being in a contact list of a user or "
"when posts or comments exists from the contact on this system."
msgstr ""
-#: src/Module/Admin/Site.php:556
+#: src/Module/Admin/Site.php:549
msgid "Synchronize the contacts with the directory server"
msgstr "Синхронизировать контакты с сервером каталога"
-#: src/Module/Admin/Site.php:556
+#: src/Module/Admin/Site.php:549
msgid ""
"if enabled, the system will check periodically for new contacts on the "
"defined directory server."
msgstr "Если включено, то система будет периодически проверять новые контакты на указанном сервере каталога."
-#: src/Module/Admin/Site.php:558
+#: src/Module/Admin/Site.php:551
msgid "Discover contacts from other servers"
msgstr "Обнаруживать контакты с других серверов"
-#: src/Module/Admin/Site.php:558
+#: src/Module/Admin/Site.php:551
msgid ""
"Periodically query other servers for contacts and servers that they know of."
" The system queries Friendica, Mastodon and Hubzilla servers. Keep it "
"deactivated on small machines to decrease the database size and load."
msgstr ""
-#: src/Module/Admin/Site.php:559
+#: src/Module/Admin/Site.php:552
msgid "Days between requery"
msgstr "Интервал запросов"
-#: src/Module/Admin/Site.php:559
+#: src/Module/Admin/Site.php:552
msgid ""
"Number of days after which a server is requeried for their contacts and "
"servers it knows of. This is only used when the discovery is activated."
msgstr ""
-#: src/Module/Admin/Site.php:560
+#: src/Module/Admin/Site.php:553
msgid "Search the local directory"
msgstr "Искать в местном каталоге"
-#: src/Module/Admin/Site.php:560
+#: src/Module/Admin/Site.php:553
msgid ""
"Search the local directory instead of the global directory. When searching "
"locally, every search will be executed on the global directory in the "
"background. This improves the search results when the search is repeated."
msgstr "Искать в локальном каталоге вместо глобального. При локальном поиске каждый запрос будет выполняться в глобальном каталоге в фоновом режиме. Это улучшит результаты поиска при повторных запросах."
-#: src/Module/Admin/Site.php:562
+#: src/Module/Admin/Site.php:555
msgid "Publish server information"
msgstr "Опубликовать информацию о сервере"
-#: src/Module/Admin/Site.php:562
+#: src/Module/Admin/Site.php:555
msgid ""
"If enabled, general server and usage data will be published. The data "
"contains the name and version of the server, number of users with public "
@@ -5323,50 +5323,50 @@ msgid ""
" href=\"http://the-federation.info/\">the-federation.info for details."
msgstr "Если включено, общая информация о сервере и статистика будут опубликованы. В данных содержатся имя сервера, версия ПО, число пользователей с открытыми профилями, число записей, подключенные протоколы и соединители. Подробности смотрите на the-federation.info."
-#: src/Module/Admin/Site.php:564
+#: src/Module/Admin/Site.php:557
msgid "Check upstream version"
msgstr "Проверять версию в репозитории"
-#: src/Module/Admin/Site.php:564
+#: src/Module/Admin/Site.php:557
msgid ""
"Enables checking for new Friendica versions at github. If there is a new "
"version, you will be informed in the admin panel overview."
msgstr "Включает проверку новых версий Френдики на Github. Если появится новая версия, вы получите уведомление в панели администратора."
-#: src/Module/Admin/Site.php:565
+#: src/Module/Admin/Site.php:558
msgid "Suppress Tags"
msgstr "Скрывать тэги"
-#: src/Module/Admin/Site.php:565
+#: src/Module/Admin/Site.php:558
msgid "Suppress showing a list of hashtags at the end of the posting."
msgstr "Отключить показ списка тэгов в конце записей."
-#: src/Module/Admin/Site.php:566
+#: src/Module/Admin/Site.php:559
msgid "Clean database"
msgstr "Очистка базы данных"
-#: src/Module/Admin/Site.php:566
+#: src/Module/Admin/Site.php:559
msgid ""
"Remove old remote items, orphaned database records and old content from some"
" other helper tables."
msgstr "Удалять старые записи, полученные с других серверов, ненужные записи в базе данных."
-#: src/Module/Admin/Site.php:567
+#: src/Module/Admin/Site.php:560
msgid "Lifespan of remote items"
msgstr "Время жизни записей с других серверов"
-#: src/Module/Admin/Site.php:567
+#: src/Module/Admin/Site.php:560
msgid ""
"When the database cleanup is enabled, this defines the days after which "
"remote items will be deleted. Own items, and marked or filed items are "
"always kept. 0 disables this behaviour."
msgstr "Если очистка базы данных включена, эта настройка определяет число дней, после которого записи будут удаляться. Собственные записи, записи с закладками, записи в папках не удаляются. 0 отключает очистку."
-#: src/Module/Admin/Site.php:568
+#: src/Module/Admin/Site.php:561
msgid "Lifespan of unclaimed items"
msgstr "Время жизни ничейных элементов"
-#: src/Module/Admin/Site.php:568
+#: src/Module/Admin/Site.php:561
msgid ""
"When the database cleanup is enabled, this defines the days after which "
"unclaimed remote items (mostly content from the relay) will be deleted. "
@@ -5374,185 +5374,184 @@ msgid ""
"items if set to 0."
msgstr "Когда очистка базы данных включена, эта настройка определяет число дней, после которого ничейные элементы (в основном, данные с ретранслятора) будут удалены. Значение по умолчанию 90 дней. Приравнивается ко времени жизни элементов других серверов, если выставлено в 0."
-#: src/Module/Admin/Site.php:569
+#: src/Module/Admin/Site.php:562
msgid "Lifespan of raw conversation data"
msgstr "Время жизни необработанных данных коммуникаций."
-#: src/Module/Admin/Site.php:569
+#: src/Module/Admin/Site.php:562
msgid ""
-"The conversation data is used for ActivityPub and OStatus, as well as for "
-"debug purposes. It should be safe to remove it after 14 days, default is 90 "
-"days."
-msgstr "Эти данные используются для ActivityPub и OStatus, а так же для диагностики. Обычно их можно спокойно удалять после 14 дней, значение по-умолчанию 90 дней."
+"The conversation data is used for ActivityPub, as well as for debug "
+"purposes. It should be safe to remove it after 14 days, default is 90 days."
+msgstr ""
-#: src/Module/Admin/Site.php:570
+#: src/Module/Admin/Site.php:563
msgid "Maximum numbers of comments per post"
msgstr "Максимальное число комментариев для записи"
-#: src/Module/Admin/Site.php:570
+#: src/Module/Admin/Site.php:563
msgid "How much comments should be shown for each post? Default value is 100."
msgstr "Сколько комментариев должно быть показано для каждой записи? Значение по-умолчанию: 100."
-#: src/Module/Admin/Site.php:571
+#: src/Module/Admin/Site.php:564
msgid "Maximum numbers of comments per post on the display page"
msgstr "Максимальное число комментариев на запись при его просмотре"
-#: src/Module/Admin/Site.php:571
+#: src/Module/Admin/Site.php:564
msgid ""
"How many comments should be shown on the single view for each post? Default "
"value is 1000."
msgstr "Сколько комментариев показывать при просмотре записи на отдельной странице? Значение по-умолчанию: 1000."
-#: src/Module/Admin/Site.php:572
+#: src/Module/Admin/Site.php:565
msgid "Items per page"
msgstr ""
-#: src/Module/Admin/Site.php:572
+#: src/Module/Admin/Site.php:565
msgid ""
"Number of items per page in stream pages (network, community, "
"profile/contact statuses, search)."
msgstr "Число записей на странице (ленты, сообщества, сообщения профиля, поиск)."
-#: src/Module/Admin/Site.php:573
+#: src/Module/Admin/Site.php:566
msgid "Items per page for mobile devices"
msgstr ""
-#: src/Module/Admin/Site.php:573
+#: src/Module/Admin/Site.php:566
msgid ""
"Number of items per page in stream pages (network, community, "
"profile/contact statuses, search) for mobile devices."
msgstr "Число записей на странице (ленты, сообщества, сообщения профиля, поиск) для мобильных устройств."
-#: src/Module/Admin/Site.php:574
+#: src/Module/Admin/Site.php:567
msgid "Temp path"
msgstr "Временная папка"
-#: src/Module/Admin/Site.php:574
+#: src/Module/Admin/Site.php:567
msgid ""
"If you have a restricted system where the webserver can't access the system "
"temp path, enter another path here."
msgstr "Если на вашей системе веб-сервер не имеет доступа к системному пути tmp, введите здесь другой путь."
-#: src/Module/Admin/Site.php:575
+#: src/Module/Admin/Site.php:568
msgid "Only search in tags"
msgstr "Искать только в тегах"
-#: src/Module/Admin/Site.php:575
+#: src/Module/Admin/Site.php:568
msgid "On large systems the text search can slow down the system extremely."
msgstr "На больших системах текстовый поиск может сильно замедлить систему."
-#: src/Module/Admin/Site.php:576
+#: src/Module/Admin/Site.php:569
msgid "Limited search scope"
msgstr ""
-#: src/Module/Admin/Site.php:576
+#: src/Module/Admin/Site.php:569
msgid ""
"If enabled, searches will only be performed in the data used for the "
"channels and not in all posts."
msgstr ""
-#: src/Module/Admin/Site.php:577
+#: src/Module/Admin/Site.php:570
msgid "Maximum age of items in the search table"
msgstr ""
-#: src/Module/Admin/Site.php:577
+#: src/Module/Admin/Site.php:570
msgid ""
"Maximum age of items in the search table in days. Lower values will increase"
" the performance and reduce disk usage. 0 means no age restriction."
msgstr ""
-#: src/Module/Admin/Site.php:578
+#: src/Module/Admin/Site.php:571
msgid "Generate counts per contact circle when calculating network count"
msgstr "Показывать счётчики записей по кругам при обновлении страницы сети"
-#: src/Module/Admin/Site.php:578
+#: src/Module/Admin/Site.php:571
msgid ""
"On systems with users that heavily use contact circles the query can be very"
" expensive."
msgstr "Для систем, где активно используются круги контактов, это может быть затратно по ресурсам."
-#: src/Module/Admin/Site.php:579
+#: src/Module/Admin/Site.php:572
msgid "Process \"view\" activities"
msgstr ""
-#: src/Module/Admin/Site.php:579
+#: src/Module/Admin/Site.php:572
msgid ""
"\"view\" activities are mostly geberated by Peertube systems. Per default "
"they are not processed for performance reasons. Only activate this option on"
" performant system."
msgstr ""
-#: src/Module/Admin/Site.php:580
+#: src/Module/Admin/Site.php:573
msgid "Days, after which a contact is archived"
msgstr ""
-#: src/Module/Admin/Site.php:580
+#: src/Module/Admin/Site.php:573
msgid ""
"Number of days that we try to deliver content or to update the contact data "
"before we archive a contact."
msgstr ""
-#: src/Module/Admin/Site.php:582
+#: src/Module/Admin/Site.php:575
msgid "Maximum number of parallel workers"
msgstr "Максимальное число параллельно работающих worker'ов"
-#: src/Module/Admin/Site.php:582
+#: src/Module/Admin/Site.php:575
#, php-format
msgid ""
"On shared hosters set this to %d. On larger systems, values of %d are great."
" Default value is %d."
msgstr "На shared-хостингах установите это в %d. На больших системах можно установить %d или больше. Значение по-умолчанию %d."
-#: src/Module/Admin/Site.php:583
+#: src/Module/Admin/Site.php:576
msgid "Maximum load for workers"
msgstr ""
-#: src/Module/Admin/Site.php:583
+#: src/Module/Admin/Site.php:576
msgid "Maximum load that causes a cooldown before each worker function call."
msgstr ""
-#: src/Module/Admin/Site.php:584
+#: src/Module/Admin/Site.php:577
msgid "Enable fastlane"
msgstr "Включить fastlane"
-#: src/Module/Admin/Site.php:584
+#: src/Module/Admin/Site.php:577
msgid ""
"When enabed, the fastlane mechanism starts an additional worker if processes"
" with higher priority are blocked by processes of lower priority."
msgstr "Если включено, механизм fastlane будет запускать дополнительного обработчика, если процессы с высоким приоритетом задерживаются из-за процессов с более низким приоритетом."
-#: src/Module/Admin/Site.php:585
+#: src/Module/Admin/Site.php:578
msgid "Decoupled receiver"
msgstr ""
-#: src/Module/Admin/Site.php:585
+#: src/Module/Admin/Site.php:578
msgid ""
"Decouple incoming ActivityPub posts by processing them in the background via"
" a worker process. Only enable this on fast systems."
msgstr ""
-#: src/Module/Admin/Site.php:586
+#: src/Module/Admin/Site.php:579
msgid "Cron interval"
msgstr ""
-#: src/Module/Admin/Site.php:586
+#: src/Module/Admin/Site.php:579
msgid "Minimal period in minutes between two calls of the \"Cron\" worker job."
msgstr ""
-#: src/Module/Admin/Site.php:587
+#: src/Module/Admin/Site.php:580
msgid "Worker defer limit"
msgstr ""
-#: src/Module/Admin/Site.php:587
+#: src/Module/Admin/Site.php:580
msgid ""
"Per default the systems tries delivering for 15 times before dropping it."
msgstr ""
-#: src/Module/Admin/Site.php:588
+#: src/Module/Admin/Site.php:581
msgid "Worker fetch limit"
msgstr ""
-#: src/Module/Admin/Site.php:588
+#: src/Module/Admin/Site.php:581
msgid ""
"Number of worker tasks that are fetched in a single query. Higher values "
"should increase the performance, too high values will mostly likely decrease"
@@ -5560,214 +5559,214 @@ msgid ""
"system."
msgstr ""
-#: src/Module/Admin/Site.php:590
+#: src/Module/Admin/Site.php:583
msgid "Direct relay transfer"
msgstr "Прямая ретрансляция"
-#: src/Module/Admin/Site.php:590
+#: src/Module/Admin/Site.php:583
msgid ""
"Enables the direct transfer to other servers without using the relay servers"
msgstr "Разрешает прямую отправку на другие серверы без использования ретрансляторов"
-#: src/Module/Admin/Site.php:591
+#: src/Module/Admin/Site.php:584
msgid "Relay scope"
msgstr "Область ретрансляции"
-#: src/Module/Admin/Site.php:591
+#: src/Module/Admin/Site.php:584
msgid ""
"Can be \"all\" or \"tags\". \"all\" means that every public post should be "
"received. \"tags\" means that only posts with selected tags should be "
"received."
msgstr "Допустимые значения \"all\" или \"tags\". \"all\" означает, что любые публичные записи будут получены. \"tags\" включает приём публичных записей с выбранными тэгами."
-#: src/Module/Admin/Site.php:591 src/Module/Contact/Profile.php:328
-#: src/Module/Settings/TwoFactor/Index.php:146
+#: src/Module/Admin/Site.php:584 src/Module/Contact/Profile.php:314
+#: src/Module/Settings/TwoFactor/Index.php:132
msgid "Disabled"
msgstr "Отключено"
-#: src/Module/Admin/Site.php:591
+#: src/Module/Admin/Site.php:584
msgid "all"
msgstr "all"
-#: src/Module/Admin/Site.php:591
+#: src/Module/Admin/Site.php:584
msgid "tags"
msgstr "tags"
-#: src/Module/Admin/Site.php:592
+#: src/Module/Admin/Site.php:585
msgid "Server tags"
msgstr "Тэги сервера"
-#: src/Module/Admin/Site.php:592
+#: src/Module/Admin/Site.php:585
msgid "Comma separated list of tags for the \"tags\" subscription."
msgstr "Список тэгов, разделённых запятыми, используемый для подписки в режиме \"tags\""
-#: src/Module/Admin/Site.php:593
+#: src/Module/Admin/Site.php:586
msgid "Deny Server tags"
msgstr "Запретить тэги сервера"
-#: src/Module/Admin/Site.php:593
+#: src/Module/Admin/Site.php:586
msgid "Comma separated list of tags that are rejected."
msgstr "Разделённый запятыми список тэгов, которые будут отбрасываться."
-#: src/Module/Admin/Site.php:594
+#: src/Module/Admin/Site.php:587
msgid "Maximum amount of tags"
msgstr ""
-#: src/Module/Admin/Site.php:594
+#: src/Module/Admin/Site.php:587
msgid ""
"Maximum amount of tags in a post before it is rejected as spam. The post has"
" to contain at least one link. Posts from subscribed accounts will not be "
"rejected."
msgstr ""
-#: src/Module/Admin/Site.php:595
+#: src/Module/Admin/Site.php:588
msgid "Allow user tags"
msgstr "Разрешить пользовательские тэги"
-#: src/Module/Admin/Site.php:595
+#: src/Module/Admin/Site.php:588
msgid ""
"If enabled, the tags from the saved searches will used for the \"tags\" "
"subscription in addition to the \"relay_server_tags\"."
msgstr "Если включено, то теги. на которые подписались пользователи, будут добавлены в подписку в дополнение к тегам сервера."
-#: src/Module/Admin/Site.php:596
+#: src/Module/Admin/Site.php:589
msgid "Deny undetected languages"
msgstr ""
-#: src/Module/Admin/Site.php:596
+#: src/Module/Admin/Site.php:589
msgid "If enabled, posts with undetected languages will be rejected."
msgstr ""
-#: src/Module/Admin/Site.php:597
+#: src/Module/Admin/Site.php:590
msgid "Language Quality"
msgstr ""
-#: src/Module/Admin/Site.php:597
+#: src/Module/Admin/Site.php:590
msgid "The minimum language quality that is required to accept the post."
msgstr ""
-#: src/Module/Admin/Site.php:598
+#: src/Module/Admin/Site.php:591
msgid "Number of languages for the language detection"
msgstr ""
-#: src/Module/Admin/Site.php:598
+#: src/Module/Admin/Site.php:591
msgid ""
"The system detects a list of languages per post. Only if the desired "
"languages are in the list, the message will be accepted. The higher the "
"number, the more posts will be falsely detected."
msgstr ""
-#: src/Module/Admin/Site.php:600
+#: src/Module/Admin/Site.php:593
msgid "Maximum age of channel"
msgstr ""
-#: src/Module/Admin/Site.php:600
+#: src/Module/Admin/Site.php:593
msgid ""
"This defines the maximum age in hours of items that should be displayed in "
"channels. This affects the channel performance."
msgstr ""
-#: src/Module/Admin/Site.php:601
+#: src/Module/Admin/Site.php:594
msgid "Maximum number of channel posts"
msgstr ""
-#: src/Module/Admin/Site.php:601
+#: src/Module/Admin/Site.php:594
msgid ""
"For performance reasons, the channels use a dedicated table to store "
"content. The higher the value the slower the channels."
msgstr ""
-#: src/Module/Admin/Site.php:602
+#: src/Module/Admin/Site.php:595
msgid "Interaction score days"
msgstr ""
-#: src/Module/Admin/Site.php:602
+#: src/Module/Admin/Site.php:595
msgid "Number of days that are used to calculate the interaction score."
msgstr ""
-#: src/Module/Admin/Site.php:603
+#: src/Module/Admin/Site.php:596
msgid "Maximum number of posts per author"
msgstr ""
-#: src/Module/Admin/Site.php:603
+#: src/Module/Admin/Site.php:596
msgid ""
"Maximum number of posts per page by author if the contact frequency is set "
"to \"Display only few posts\". If there are more posts, then the post with "
"the most interactions will be displayed."
msgstr ""
-#: src/Module/Admin/Site.php:604
+#: src/Module/Admin/Site.php:597
msgid "Sharer interaction days"
msgstr ""
-#: src/Module/Admin/Site.php:604
+#: src/Module/Admin/Site.php:597
msgid ""
"Number of days of the last interaction that are used to define which sharers"
" are used for the \"sharers of sharers\" channel."
msgstr ""
-#: src/Module/Admin/Site.php:607
+#: src/Module/Admin/Site.php:600
msgid "Start Relocation"
msgstr "Начать перемещение"
-#: src/Module/Admin/Storage.php:46
+#: src/Module/Admin/Storage.php:32
#, php-format
msgid "Storage backend, %s is invalid."
msgstr "Бэкенд хранилища, %s неправильный."
-#: src/Module/Admin/Storage.php:73
+#: src/Module/Admin/Storage.php:59
#, php-format
msgid "Storage backend %s error: %s"
msgstr "Бэкенд хранилища %s вызвал ошибку: %s"
-#: src/Module/Admin/Storage.php:84 src/Module/Admin/Storage.php:87
+#: src/Module/Admin/Storage.php:70 src/Module/Admin/Storage.php:73
msgid "Invalid storage backend setting value."
msgstr "Недопустимое значение типа хранилища."
-#: src/Module/Admin/Storage.php:139
+#: src/Module/Admin/Storage.php:125
msgid "Current Storage Backend"
msgstr "Текущий бэкенд хранилища"
-#: src/Module/Admin/Storage.php:140
+#: src/Module/Admin/Storage.php:126
msgid "Storage Configuration"
msgstr "Конфигурация хранилища"
-#: src/Module/Admin/Storage.php:141 src/Module/BaseAdmin.php:91
+#: src/Module/Admin/Storage.php:127 src/Module/BaseAdmin.php:77
msgid "Storage"
msgstr "Хранилище"
-#: src/Module/Admin/Storage.php:143
+#: src/Module/Admin/Storage.php:129
msgid "Save & Use storage backend"
msgstr "Сохранить и использовать этот бэкенд"
-#: src/Module/Admin/Storage.php:144
+#: src/Module/Admin/Storage.php:130
msgid "Use storage backend"
msgstr "Использовать этот бэкенд"
-#: src/Module/Admin/Storage.php:145
+#: src/Module/Admin/Storage.php:131
msgid "Save & Reload"
msgstr "Сохранить и применить"
-#: src/Module/Admin/Storage.php:146
+#: src/Module/Admin/Storage.php:132
msgid "This backend doesn't have custom settings"
msgstr "Этот бэкенд не имеет дополнительных настроек."
-#: src/Module/Admin/Storage.php:148
+#: src/Module/Admin/Storage.php:134
msgid ""
"Changing the current backend is prohibited because it is set by an "
"environment variable"
msgstr ""
-#: src/Module/Admin/Storage.php:150
+#: src/Module/Admin/Storage.php:136
msgid "Database (legacy)"
msgstr "База данных (устаревшее)"
-#: src/Module/Admin/Summary.php:55
+#: src/Module/Admin/Summary.php:41
#, php-format
msgid "Template engine (%s) error: %s"
msgstr ""
-#: src/Module/Admin/Summary.php:59
+#: src/Module/Admin/Summary.php:45
#, php-format
msgid ""
"Your DB still runs with MyISAM tables. You should change the engine type to "
@@ -5778,7 +5777,7 @@ msgid ""
" an automatic conversion.The server domain pattern syntax is case-insensitive shell wildcard, comprising the following special characters:
\n" "Маска домена сервера нечувствительна к регистру и представляет собой выражение shell со следующими спецсимволами:
\n*
: Любое число символов?
: Один любой символThis file can be downloaded from the /friendica
path of any "
"Friendica server.
Этот файл может быть загружен по ссылке /friendica
с любого сервера Friendica.
debug.store_source
config key is set in "
"config/local.config.php
for future items to have sources."
msgstr ""
-#: src/Module/Moderation/Item/Source.php:98
+#: src/Module/Moderation/Item/Source.php:84
msgid "Item Guid"
msgstr "GUID записи"
-#: src/Module/Moderation/Report/Create.php:95
+#: src/Module/Moderation/Report/Create.php:81
msgid "Contact not found or their server is already blocked on this node."
msgstr "Контакт не найден или их сервер уже заблокирован на этом узле."
-#: src/Module/Moderation/Report/Create.php:136
+#: src/Module/Moderation/Report/Create.php:122
msgid "Please login to access this page."
msgstr "Пожалуйста, войдите для доступа к этой странице."
-#: src/Module/Moderation/Report/Create.php:165
-#: src/Module/Moderation/Report/Create.php:180
-#: src/Module/Moderation/Report/Create.php:208
-#: src/Module/Moderation/Report/Create.php:260
-#: src/Module/Moderation/Report/Create.php:279
+#: src/Module/Moderation/Report/Create.php:151
+#: src/Module/Moderation/Report/Create.php:166
+#: src/Module/Moderation/Report/Create.php:194
+#: src/Module/Moderation/Report/Create.php:246
+#: src/Module/Moderation/Report/Create.php:265
msgid "Create Moderation Report"
msgstr "Создать обращение к модераторам"
-#: src/Module/Moderation/Report/Create.php:166
+#: src/Module/Moderation/Report/Create.php:152
msgid "Pick Contact"
msgstr "Выбор контакта"
-#: src/Module/Moderation/Report/Create.php:167
+#: src/Module/Moderation/Report/Create.php:153
msgid ""
"Please enter below the contact address or profile URL you would like to "
"create a moderation report about."
msgstr "Пожалуйста, выберите адрес контакта или URL профиля, о котором вы хотите отправить обращение."
-#: src/Module/Moderation/Report/Create.php:171
+#: src/Module/Moderation/Report/Create.php:157
msgid "Contact address/URL"
msgstr "Адрес контакта/URL"
-#: src/Module/Moderation/Report/Create.php:181
+#: src/Module/Moderation/Report/Create.php:167
msgid "Pick Category"
msgstr "Выбор категории"
-#: src/Module/Moderation/Report/Create.php:182
+#: src/Module/Moderation/Report/Create.php:168
msgid "Please pick below the category of your report."
msgstr "Пожалуйста, выберите категорию обращения."
-#: src/Module/Moderation/Report/Create.php:186
-#: src/Module/Moderation/Report/Create.php:311
+#: src/Module/Moderation/Report/Create.php:172
+#: src/Module/Moderation/Report/Create.php:297
msgid "Spam"
msgstr "Спам"
-#: src/Module/Moderation/Report/Create.php:186
+#: src/Module/Moderation/Report/Create.php:172
msgid ""
"This contact is publishing many repeated/overly long posts/replies or "
"advertising their product/websites in otherwise irrelevant conversations."
msgstr "Этот контакт публикует много повторяющихся/слишком длинных записей/комментариев, либо рекламирует свои товары/услуги там, где это неуместно."
-#: src/Module/Moderation/Report/Create.php:187
-#: src/Module/Moderation/Report/Create.php:312
+#: src/Module/Moderation/Report/Create.php:173
+#: src/Module/Moderation/Report/Create.php:298
msgid "Illegal Content"
msgstr "Противозаконный контент"
-#: src/Module/Moderation/Report/Create.php:187
+#: src/Module/Moderation/Report/Create.php:173
msgid ""
"This contact is publishing content that is considered illegal in this node's"
" hosting juridiction."
msgstr "Этот контакт публикует что-то, что запрещено законом в юрисдикции данного узла."
-#: src/Module/Moderation/Report/Create.php:188
-#: src/Module/Moderation/Report/Create.php:313
+#: src/Module/Moderation/Report/Create.php:174
+#: src/Module/Moderation/Report/Create.php:299
msgid "Community Safety"
msgstr "Общественный порядок"
-#: src/Module/Moderation/Report/Create.php:188
+#: src/Module/Moderation/Report/Create.php:174
msgid ""
"This contact aggravated you or other people, by being provocative or "
"insensitive, intentionally or not. This includes disclosing people's private"
@@ -8576,12 +8571,12 @@ msgid ""
"replies."
msgstr "Этот контакт раздражает вас или других людей провокационным или невежливым поведением, намеренно или нет. Это включает распространение частной информации о других людях (doxxing), угрозы, оскорбительные изображения в записях или комментариях."
-#: src/Module/Moderation/Report/Create.php:189
-#: src/Module/Moderation/Report/Create.php:314
+#: src/Module/Moderation/Report/Create.php:175
+#: src/Module/Moderation/Report/Create.php:300
msgid "Unwanted Content/Behavior"
msgstr "Нежелательные материалы/поведение"
-#: src/Module/Moderation/Report/Create.php:189
+#: src/Module/Moderation/Report/Create.php:175
msgid ""
"This contact has repeatedly published content irrelevant to the node's theme"
" or is openly criticizing the node's administration/moderation without "
@@ -8589,89 +8584,89 @@ msgid ""
"nitpicking on a sensitive topic."
msgstr "Этот контакт неоднократно публикует что-то, не относящееся к тематике узла, открыто критикует администраторов/модераторов без непосредственного обращения к ним, намеренно провоцирует раздор в чувствительных темах."
-#: src/Module/Moderation/Report/Create.php:190
-#: src/Module/Moderation/Report/Create.php:315
+#: src/Module/Moderation/Report/Create.php:176
+#: src/Module/Moderation/Report/Create.php:301
msgid "Rules Violation"
msgstr "Нарушение правил"
-#: src/Module/Moderation/Report/Create.php:190
+#: src/Module/Moderation/Report/Create.php:176
msgid ""
"This contact violated one or more rules of this node. You will be able to "
"pick which one(s) in the next step."
msgstr "Этот контакт нарушил одно или несколько правил этого узла. Вы сможете выбрать какие на следующем шаге."
-#: src/Module/Moderation/Report/Create.php:191
+#: src/Module/Moderation/Report/Create.php:177
msgid ""
"Please elaborate below why you submitted this report. The more details you "
"provide, the better your report can be handled."
msgstr "Пожалуйста, расскажите о причинах вашего обращения. Чем больше деталей вы предоставите, тем лучше ваше обращение будет обработано."
-#: src/Module/Moderation/Report/Create.php:193
+#: src/Module/Moderation/Report/Create.php:179
msgid "Additional Information"
msgstr "Дополнительная информация"
-#: src/Module/Moderation/Report/Create.php:193
+#: src/Module/Moderation/Report/Create.php:179
msgid ""
"Please provide any additional information relevant to this particular "
"report. You will be able to attach posts by this contact in the next step, "
"but any context is welcome."
msgstr "Пожалуйста, добавьте любую дополнительную информацию, относящуюся к ситуации. Вы сможете прикрепить записи на следующем шаге, но любые детали пригодятся."
-#: src/Module/Moderation/Report/Create.php:209
+#: src/Module/Moderation/Report/Create.php:195
msgid "Pick Rules"
msgstr "Выберите правила"
-#: src/Module/Moderation/Report/Create.php:210
+#: src/Module/Moderation/Report/Create.php:196
msgid "Please pick below the node rules you believe this contact violated."
msgstr "Пожалуйста, выберите правила, которые по вашему мнению были нарушены."
-#: src/Module/Moderation/Report/Create.php:261
+#: src/Module/Moderation/Report/Create.php:247
msgid "Pick Posts"
msgstr "Выберите записи"
-#: src/Module/Moderation/Report/Create.php:262
+#: src/Module/Moderation/Report/Create.php:248
msgid "Please optionally pick posts to attach to your report."
msgstr "Пожалуйста, выберите записи, которые вы хотите добавить к обращению."
-#: src/Module/Moderation/Report/Create.php:281
+#: src/Module/Moderation/Report/Create.php:267
msgid "Submit Report"
msgstr "Отправить обращение"
-#: src/Module/Moderation/Report/Create.php:282
+#: src/Module/Moderation/Report/Create.php:268
msgid "Further Action"
msgstr "Дальнейшие действия"
-#: src/Module/Moderation/Report/Create.php:283
+#: src/Module/Moderation/Report/Create.php:269
msgid ""
"You can also perform one of the following action on the contact you "
"reported:"
msgstr "Вы так же можете сделать следующее с этим контактом:"
-#: src/Module/Moderation/Report/Create.php:291
+#: src/Module/Moderation/Report/Create.php:277
msgid "Nothing"
msgstr "Ничего"
-#: src/Module/Moderation/Report/Create.php:292
+#: src/Module/Moderation/Report/Create.php:278
msgid "Collapse contact"
msgstr "Сворачивать контакт"
-#: src/Module/Moderation/Report/Create.php:292
+#: src/Module/Moderation/Report/Create.php:278
msgid ""
"Their posts and replies will keep appearing in your Network page but their "
"content will be collapsed by default."
msgstr "Их записи и комментарии будут появляться в вашей ленте, но они будут свёрнуты."
-#: src/Module/Moderation/Report/Create.php:293
+#: src/Module/Moderation/Report/Create.php:279
msgid ""
"Their posts won't appear in your Network page anymore, but their replies can"
" appear in forum threads. They still can follow you."
msgstr "Их записи и комментарии не будут больше появляться в вашей ленте, но могут появляться в групповых ветках. Так же они могут подписаться на вас."
-#: src/Module/Moderation/Report/Create.php:294
+#: src/Module/Moderation/Report/Create.php:280
msgid "Block contact"
msgstr "Заблокировать контакт"
-#: src/Module/Moderation/Report/Create.php:294
+#: src/Module/Moderation/Report/Create.php:280
msgid ""
"Their posts won't appear in your Network page anymore, but their replies can"
" appear in forum threads, with their content collapsed by default. They "
@@ -8679,51 +8674,51 @@ msgid ""
"means."
msgstr "Их записи не будут появляться в вашей ленте, но их ответы могут появляться в групповых ветках в свёрнутом виде. Они не смогут подписаться на вас, но могут увидеть ваши публичные записи другими способами."
-#: src/Module/Moderation/Report/Create.php:297
+#: src/Module/Moderation/Report/Create.php:283
msgid "Forward report"
msgstr "Переслать обращение"
-#: src/Module/Moderation/Report/Create.php:297
+#: src/Module/Moderation/Report/Create.php:283
msgid "Would you ike to forward this report to the remote server?"
msgstr "Вы хотите переслать это обращение на удалённый сервер?"
-#: src/Module/Moderation/Report/Create.php:330
+#: src/Module/Moderation/Report/Create.php:316
msgid "1. Pick a contact"
msgstr "1. Выберите контакт"
-#: src/Module/Moderation/Report/Create.php:331
+#: src/Module/Moderation/Report/Create.php:317
msgid "2. Pick a category"
msgstr "2. Выберите категорию"
-#: src/Module/Moderation/Report/Create.php:332
+#: src/Module/Moderation/Report/Create.php:318
msgid "2a. Pick rules"
msgstr "2a. Выберите правила"
-#: src/Module/Moderation/Report/Create.php:333
+#: src/Module/Moderation/Report/Create.php:319
msgid "2b. Add comment"
msgstr "2b. Добавьте комментарий"
-#: src/Module/Moderation/Report/Create.php:334
+#: src/Module/Moderation/Report/Create.php:320
msgid "3. Pick posts"
msgstr "3. Выберите записи"
-#: src/Module/Moderation/Reports.php:111
+#: src/Module/Moderation/Reports.php:97
msgid "List of reports"
msgstr "Список обращений"
-#: src/Module/Moderation/Reports.php:112
+#: src/Module/Moderation/Reports.php:98
msgid "This page display reports created by our or remote users."
msgstr "Эта страница показывает обращения, созданные нашими или удалёнными пользователями."
-#: src/Module/Moderation/Reports.php:113
+#: src/Module/Moderation/Reports.php:99
msgid "No report exists at this node."
msgstr "Обращений на этом узле нет."
-#: src/Module/Moderation/Reports.php:116
+#: src/Module/Moderation/Reports.php:102
msgid "Category"
msgstr "Категория"
-#: src/Module/Moderation/Reports.php:120
+#: src/Module/Moderation/Reports.php:106
#, php-format
msgid "%s total report"
msgid_plural "%s total reports"
@@ -8732,24 +8727,24 @@ msgstr[1] "%s обращения"
msgstr[2] "%s обращений"
msgstr[3] "%s обращений"
-#: src/Module/Moderation/Reports.php:123
+#: src/Module/Moderation/Reports.php:109
msgid "URL of the reported contact."
msgstr "URL контакта в обращении."
-#: src/Module/Moderation/Summary.php:57 src/Module/Settings/Account.php:436
+#: src/Module/Moderation/Summary.php:43 src/Module/Settings/Account.php:422
msgid "Channel Relay"
msgstr "Ретранслятор канала"
-#: src/Module/Moderation/Summary.php:77
+#: src/Module/Moderation/Summary.php:63
msgid "Registered users"
msgstr "Зарегистрированные пользователи"
-#: src/Module/Moderation/Summary.php:79
+#: src/Module/Moderation/Summary.php:65
msgid "Pending registrations"
msgstr "Ожидающие регистрации"
-#: src/Module/Moderation/Users/Active.php:43
-#: src/Module/Moderation/Users/Index.php:43
+#: src/Module/Moderation/Users/Active.php:29
+#: src/Module/Moderation/Users/Index.php:29
#, php-format
msgid "%s user blocked"
msgid_plural "%s users blocked"
@@ -8758,18 +8753,18 @@ msgstr[1] "%s пользователя заблокировано"
msgstr[2] "%s пользователей заблокировано"
msgstr[3] "%s пользователей заблокировано"
-#: src/Module/Moderation/Users/Active.php:51
-#: src/Module/Moderation/Users/Active.php:85
-#: src/Module/Moderation/Users/Blocked.php:51
-#: src/Module/Moderation/Users/Blocked.php:85
-#: src/Module/Moderation/Users/Index.php:58
-#: src/Module/Moderation/Users/Index.php:92
+#: src/Module/Moderation/Users/Active.php:37
+#: src/Module/Moderation/Users/Active.php:71
+#: src/Module/Moderation/Users/Blocked.php:37
+#: src/Module/Moderation/Users/Blocked.php:71
+#: src/Module/Moderation/Users/Index.php:44
+#: src/Module/Moderation/Users/Index.php:78
msgid "You can't remove yourself"
msgstr "Вы не можете удалить самого себя"
-#: src/Module/Moderation/Users/Active.php:55
-#: src/Module/Moderation/Users/Blocked.php:55
-#: src/Module/Moderation/Users/Index.php:62
+#: src/Module/Moderation/Users/Active.php:41
+#: src/Module/Moderation/Users/Blocked.php:41
+#: src/Module/Moderation/Users/Index.php:48
#, php-format
msgid "%s user deleted"
msgid_plural "%s users deleted"
@@ -8778,88 +8773,88 @@ msgstr[1] "%s чел. удалено"
msgstr[2] "%s чел. удалено"
msgstr[3] "%s чел. удалено"
-#: src/Module/Moderation/Users/Active.php:83
-#: src/Module/Moderation/Users/Blocked.php:83
-#: src/Module/Moderation/Users/Index.php:90
+#: src/Module/Moderation/Users/Active.php:69
+#: src/Module/Moderation/Users/Blocked.php:69
+#: src/Module/Moderation/Users/Index.php:76
#, php-format
msgid "User \"%s\" deleted"
msgstr "Пользователь \"%s\" удалён"
-#: src/Module/Moderation/Users/Active.php:93
-#: src/Module/Moderation/Users/Index.php:100
+#: src/Module/Moderation/Users/Active.php:79
+#: src/Module/Moderation/Users/Index.php:86
#, php-format
msgid "User \"%s\" blocked"
msgstr "Пользователь \"%s\" заблокирован"
-#: src/Module/Moderation/Users/Active.php:126
-#: src/Module/Moderation/Users/Blocked.php:126
-#: src/Module/Moderation/Users/Deleted.php:83
-#: src/Module/Moderation/Users/Index.php:140
-#: src/Module/Moderation/Users/Index.php:160
+#: src/Module/Moderation/Users/Active.php:112
+#: src/Module/Moderation/Users/Blocked.php:112
+#: src/Module/Moderation/Users/Deleted.php:69
+#: src/Module/Moderation/Users/Index.php:126
+#: src/Module/Moderation/Users/Index.php:146
msgid "Register date"
msgstr "Дата регистрации"
-#: src/Module/Moderation/Users/Active.php:126
-#: src/Module/Moderation/Users/Blocked.php:126
-#: src/Module/Moderation/Users/Deleted.php:83
-#: src/Module/Moderation/Users/Index.php:140
-#: src/Module/Moderation/Users/Index.php:160
+#: src/Module/Moderation/Users/Active.php:112
+#: src/Module/Moderation/Users/Blocked.php:112
+#: src/Module/Moderation/Users/Deleted.php:69
+#: src/Module/Moderation/Users/Index.php:126
+#: src/Module/Moderation/Users/Index.php:146
msgid "Last login"
msgstr "Последний вход"
-#: src/Module/Moderation/Users/Active.php:126
-#: src/Module/Moderation/Users/Blocked.php:126
-#: src/Module/Moderation/Users/Deleted.php:83
-#: src/Module/Moderation/Users/Index.php:140
-#: src/Module/Moderation/Users/Index.php:160
+#: src/Module/Moderation/Users/Active.php:112
+#: src/Module/Moderation/Users/Blocked.php:112
+#: src/Module/Moderation/Users/Deleted.php:69
+#: src/Module/Moderation/Users/Index.php:126
+#: src/Module/Moderation/Users/Index.php:146
msgid "Last public item"
msgstr "Последняя публичная запись"
-#: src/Module/Moderation/Users/Active.php:134
+#: src/Module/Moderation/Users/Active.php:120
msgid "Active Accounts"
msgstr "Активные учётные записи"
-#: src/Module/Moderation/Users/Active.php:138
-#: src/Module/Moderation/Users/Blocked.php:137
-#: src/Module/Moderation/Users/Index.php:153
+#: src/Module/Moderation/Users/Active.php:124
+#: src/Module/Moderation/Users/Blocked.php:123
+#: src/Module/Moderation/Users/Index.php:139
msgid "User blocked"
msgstr "Пользователь заблокирован"
-#: src/Module/Moderation/Users/Active.php:139
-#: src/Module/Moderation/Users/Blocked.php:139
-#: src/Module/Moderation/Users/Index.php:155
+#: src/Module/Moderation/Users/Active.php:125
+#: src/Module/Moderation/Users/Blocked.php:125
+#: src/Module/Moderation/Users/Index.php:141
msgid "Site admin"
msgstr "Админ сайта"
-#: src/Module/Moderation/Users/Active.php:140
-#: src/Module/Moderation/Users/Blocked.php:140
-#: src/Module/Moderation/Users/Index.php:156
+#: src/Module/Moderation/Users/Active.php:126
+#: src/Module/Moderation/Users/Blocked.php:126
+#: src/Module/Moderation/Users/Index.php:142
msgid "Account expired"
msgstr "Аккаунт просрочен"
-#: src/Module/Moderation/Users/Active.php:141
-#: src/Module/Moderation/Users/Index.php:159
+#: src/Module/Moderation/Users/Active.php:127
+#: src/Module/Moderation/Users/Index.php:145
msgid "Create a new user"
msgstr "Создать нового"
-#: src/Module/Moderation/Users/Active.php:147
-#: src/Module/Moderation/Users/Blocked.php:146
-#: src/Module/Moderation/Users/Index.php:165
+#: src/Module/Moderation/Users/Active.php:133
+#: src/Module/Moderation/Users/Blocked.php:132
+#: src/Module/Moderation/Users/Index.php:151
msgid ""
"Selected users will be deleted!\\n\\nEverything these users had posted on "
"this site will be permanently deleted!\\n\\nAre you sure?"
msgstr "Выбранные пользователи будут удалены!\\n\\nВсе, что эти пользователи написали на этом сайте, будет удалено!\\n\\nВы уверены в вашем действии?"
-#: src/Module/Moderation/Users/Active.php:148
-#: src/Module/Moderation/Users/Blocked.php:147
-#: src/Module/Moderation/Users/Index.php:166
+#: src/Module/Moderation/Users/Active.php:134
+#: src/Module/Moderation/Users/Blocked.php:133
+#: src/Module/Moderation/Users/Index.php:152
msgid ""
"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
"site will be permanently deleted!\\n\\nAre you sure?"
msgstr "Пользователь {0} будет удален!\\n\\nВсе, что этот пользователь написал на этом сайте, будет удалено!\\n\\nВы уверены в вашем действии?"
-#: src/Module/Moderation/Users/Blocked.php:43
-#: src/Module/Moderation/Users/Index.php:50
+#: src/Module/Moderation/Users/Blocked.php:29
+#: src/Module/Moderation/Users/Index.php:36
#, php-format
msgid "%s user unblocked"
msgid_plural "%s users unblocked"
@@ -8868,54 +8863,54 @@ msgstr[1] "%s пользователя разблокировано"
msgstr[2] "%s пользователей разблокировано"
msgstr[3] "%s пользователей разблокировано"
-#: src/Module/Moderation/Users/Blocked.php:92
-#: src/Module/Moderation/Users/Index.php:106
+#: src/Module/Moderation/Users/Blocked.php:78
+#: src/Module/Moderation/Users/Index.php:92
#, php-format
msgid "User \"%s\" unblocked"
msgstr "Пользователь \"%s\" разблокирован"
-#: src/Module/Moderation/Users/Blocked.php:134
+#: src/Module/Moderation/Users/Blocked.php:120
msgid "Blocked Users"
msgstr "Заблокированные"
-#: src/Module/Moderation/Users/Create.php:62
+#: src/Module/Moderation/Users/Create.php:48
msgid "New User"
msgstr "Новый пользователь"
-#: src/Module/Moderation/Users/Create.php:63
+#: src/Module/Moderation/Users/Create.php:49
msgid "Add User"
msgstr "Добавить пользователя"
-#: src/Module/Moderation/Users/Create.php:70
+#: src/Module/Moderation/Users/Create.php:56
msgid "Name of the new user."
msgstr "Имя нового пользователя."
-#: src/Module/Moderation/Users/Create.php:71
+#: src/Module/Moderation/Users/Create.php:57
msgid "Nickname"
msgstr "Ник"
-#: src/Module/Moderation/Users/Create.php:71
+#: src/Module/Moderation/Users/Create.php:57
msgid "Nickname of the new user."
msgstr "Ник нового пользователя."
-#: src/Module/Moderation/Users/Create.php:72
+#: src/Module/Moderation/Users/Create.php:58
msgid "Email address of the new user."
msgstr "Email адрес нового пользователя."
-#: src/Module/Moderation/Users/Deleted.php:81
+#: src/Module/Moderation/Users/Deleted.php:67
msgid "Users awaiting permanent deletion"
msgstr "Пользователи, ожидающие окончательного удаления"
-#: src/Module/Moderation/Users/Deleted.php:83
-#: src/Module/Moderation/Users/Index.php:160
+#: src/Module/Moderation/Users/Deleted.php:69
+#: src/Module/Moderation/Users/Index.php:146
msgid "Permanent deletion"
msgstr "Постоянное удаление"
-#: src/Module/Moderation/Users/Index.php:150
+#: src/Module/Moderation/Users/Index.php:136
msgid "User waiting for permanent deletion"
msgstr "Пользователь ожидает окончательного удаления"
-#: src/Module/Moderation/Users/Pending.php:44
+#: src/Module/Moderation/Users/Pending.php:30
#, php-format
msgid "%s user approved"
msgid_plural "%s users approved"
@@ -8924,7 +8919,7 @@ msgstr[1] "%s пользователя одобрено"
msgstr[2] "%s пользователей одобрено"
msgstr[3] "%s пользователей одобрено"
-#: src/Module/Moderation/Users/Pending.php:51
+#: src/Module/Moderation/Users/Pending.php:37
#, php-format
msgid "%s registration revoked"
msgid_plural "%s registrations revoked"
@@ -8933,420 +8928,406 @@ msgstr[1] "%s регистрации отменены"
msgstr[2] "%s регистраций отменены"
msgstr[3] "%s регистраций отменены"
-#: src/Module/Moderation/Users/Pending.php:76
+#: src/Module/Moderation/Users/Pending.php:62
msgid "Account approved."
msgstr "Аккаунт утвержден."
-#: src/Module/Moderation/Users/Pending.php:82
+#: src/Module/Moderation/Users/Pending.php:68
msgid "Registration revoked"
msgstr "Регистрация отменена"
-#: src/Module/Moderation/Users/Pending.php:97
+#: src/Module/Moderation/Users/Pending.php:83
msgid "User registrations awaiting review"
msgstr "Регистрации пользователей, ожидающие подтверждения"
-#: src/Module/Moderation/Users/Pending.php:99
+#: src/Module/Moderation/Users/Pending.php:85
msgid "Request date"
msgstr "Запрос даты"
-#: src/Module/Moderation/Users/Pending.php:100
+#: src/Module/Moderation/Users/Pending.php:86
msgid "No registrations."
msgstr "Нет регистраций."
-#: src/Module/Moderation/Users/Pending.php:101
+#: src/Module/Moderation/Users/Pending.php:87
msgid "Note from the user"
msgstr "Сообщение от пользователя"
-#: src/Module/Moderation/Users/Pending.php:103
+#: src/Module/Moderation/Users/Pending.php:89
msgid "Deny"
msgstr "Отклонить"
-#: src/Module/Notifications/Introductions.php:105
+#: src/Module/Notifications/Introductions.php:91
msgid "Show Ignored Requests"
msgstr "Показать проигнорированные запросы"
-#: src/Module/Notifications/Introductions.php:105
+#: src/Module/Notifications/Introductions.php:91
msgid "Hide Ignored Requests"
msgstr "Скрыть проигнорированные запросы"
-#: src/Module/Notifications/Introductions.php:121
-#: src/Module/Notifications/Introductions.php:184
+#: src/Module/Notifications/Introductions.php:107
+#: src/Module/Notifications/Introductions.php:170
msgid "Notification type:"
msgstr "Тип уведомления:"
-#: src/Module/Notifications/Introductions.php:124
+#: src/Module/Notifications/Introductions.php:110
msgid "Suggested by:"
msgstr "Рекомендовано:"
-#: src/Module/Notifications/Introductions.php:149
+#: src/Module/Notifications/Introductions.php:135
msgid "Claims to be known to you: "
msgstr "Утверждения, о которых должно быть вам известно: "
-#: src/Module/Notifications/Introductions.php:158
+#: src/Module/Notifications/Introductions.php:144
msgid "Shall your connection be bidirectional or not?"
msgstr "Должно ли ваше соединение быть двухсторонним или нет?"
-#: src/Module/Notifications/Introductions.php:159
+#: src/Module/Notifications/Introductions.php:145
#, php-format
msgid ""
"Accepting %s as a friend allows %s to subscribe to your posts, and you will "
"also receive updates from them in your news feed."
msgstr "Принимая %s как друга вы позволяете %s читать ему свои записи, а также будете получать записи от него."
-#: src/Module/Notifications/Introductions.php:160
+#: src/Module/Notifications/Introductions.php:146
#, php-format
msgid ""
"Accepting %s as a subscriber allows them to subscribe to your posts, but you"
" will not receive updates from them in your news feed."
msgstr "Принимая %s как подписчика вы позволяете читать ему свои записи, но вы не будете получать записей от него."
-#: src/Module/Notifications/Introductions.php:162
+#: src/Module/Notifications/Introductions.php:148
msgid "Friend"
msgstr "Друг"
-#: src/Module/Notifications/Introductions.php:163
+#: src/Module/Notifications/Introductions.php:149
msgid "Subscriber"
msgstr "Подписчик"
-#: src/Module/Notifications/Introductions.php:222
+#: src/Module/Notifications/Introductions.php:208
msgid "No introductions."
msgstr "Запросов нет."
-#: src/Module/Notifications/Introductions.php:223
-#: src/Module/Notifications/Notifications.php:141
+#: src/Module/Notifications/Introductions.php:209
+#: src/Module/Notifications/Notifications.php:127
#, php-format
msgid "No more %s notifications."
msgstr "Больше нет уведомлений о %s."
-#: src/Module/Notifications/Notification.php:135
+#: src/Module/Notifications/Notification.php:121
msgid "You must be logged in to show this page."
msgstr "Вам нужно войти, чтобы увидеть эту страницу."
-#: src/Module/Notifications/Notifications.php:66
+#: src/Module/Notifications/Notifications.php:52
msgid "Network Notifications"
msgstr "Уведомления сети"
-#: src/Module/Notifications/Notifications.php:72
+#: src/Module/Notifications/Notifications.php:58
msgid "System Notifications"
msgstr "Уведомления системы"
-#: src/Module/Notifications/Notifications.php:78
+#: src/Module/Notifications/Notifications.php:64
msgid "Personal Notifications"
msgstr "Личные уведомления"
-#: src/Module/Notifications/Notifications.php:84
+#: src/Module/Notifications/Notifications.php:70
msgid "Home Notifications"
msgstr "Уведомления"
-#: src/Module/Notifications/Notifications.php:146
+#: src/Module/Notifications/Notifications.php:132
msgid "Show unread"
msgstr "Показать непрочитанные"
-#: src/Module/Notifications/Ping.php:220
+#: src/Module/Notifications/Ping.php:206
msgid "{0} requested registration"
msgstr "{0} запрос на регистрацию"
-#: src/Module/Notifications/Ping.php:229
+#: src/Module/Notifications/Ping.php:215
#, php-format
msgid "{0} and %d others requested registration"
msgstr "{0} и %d других запросов на регистрацию"
-#: src/Module/OAuth/Acknowledge.php:51
+#: src/Module/OAuth/Acknowledge.php:37
msgid "Authorize application connection"
msgstr "Разрешить связь с приложением"
-#: src/Module/OAuth/Acknowledge.php:53
+#: src/Module/OAuth/Acknowledge.php:39
msgid ""
"Do you want to authorize this application to access your posts and contacts,"
" and/or create new posts for you?"
msgstr "Вы действительно хотите разрешить этому приложению доступ к своим записям и контактам, а также создавать новые записи от вашего имени?"
-#: src/Module/OAuth/Authorize.php:54
+#: src/Module/OAuth/Authorize.php:40
msgid "Unsupported or missing response type"
msgstr "Неподдерживаемый или отсутствующий тип отклика"
-#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:75
+#: src/Module/OAuth/Authorize.php:45 src/Module/OAuth/Token.php:61
msgid "Incomplete request data"
msgstr "Неполные данные запроса"
-#: src/Module/OAuth/Authorize.php:106
+#: src/Module/OAuth/Authorize.php:92
#, php-format
msgid ""
"Please copy the following authentication code into your application and "
"close this window: %s"
msgstr "Пожалуйста, скопируйте следующий код аутентификации в ваше приложение и закройте это окно: %s"
-#: src/Module/OAuth/Token.php:80
+#: src/Module/OAuth/Token.php:66
msgid "Invalid data or unknown client"
msgstr "Ошибочные данные или неизвестный клиент"
-#: src/Module/OAuth/Token.php:105
+#: src/Module/OAuth/Token.php:91
msgid "Unsupported or missing grant type"
msgstr "Неподдерживаемый или отсутствующий тип гранта."
-#: src/Module/OStatus/Repair.php:83
-msgid "Resubscribing to OStatus contacts"
-msgstr "Переподписаться на OStatus-контакты."
-
-#: src/Module/OStatus/Repair.php:84 src/Module/OStatus/Subscribe.php:160
-msgid "Keep this window open until done."
-msgstr "Держать окно открытым до завершения."
-
-#: src/Module/OStatus/Repair.php:85
-msgid "✔ Done"
-msgstr "✔ Готово"
-
-#: src/Module/OStatus/Repair.php:86
-msgid "No OStatus contacts to resubscribe to."
-msgstr "Нет контактов OStatus для переподписки."
-
-#: src/Module/OStatus/Subscribe.php:72
+#: src/Module/OStatus/Subscribe.php:58
msgid "Subscribing to contacts"
msgstr "Подписка на контакты"
-#: src/Module/OStatus/Subscribe.php:81
+#: src/Module/OStatus/Subscribe.php:67
msgid "No contact provided."
msgstr "Не указан контакт."
-#: src/Module/OStatus/Subscribe.php:87
+#: src/Module/OStatus/Subscribe.php:73
msgid "Couldn't fetch information for contact."
msgstr "Невозможно получить информацию о контакте."
-#: src/Module/OStatus/Subscribe.php:98
+#: src/Module/OStatus/Subscribe.php:84
msgid "Couldn't fetch friends for contact."
msgstr "Невозможно получить друзей для контакта."
-#: src/Module/OStatus/Subscribe.php:104 src/Module/OStatus/Subscribe.php:115
+#: src/Module/OStatus/Subscribe.php:90 src/Module/OStatus/Subscribe.php:101
msgid "Couldn't fetch following contacts."
msgstr "Не удалось загрузить контакты подписчиков."
-#: src/Module/OStatus/Subscribe.php:110
+#: src/Module/OStatus/Subscribe.php:96
msgid "Couldn't fetch remote profile."
msgstr "Не получилось загрузить профиль."
-#: src/Module/OStatus/Subscribe.php:120
+#: src/Module/OStatus/Subscribe.php:106
msgid "Unsupported network"
msgstr "Сеть не поддерживается"
-#: src/Module/OStatus/Subscribe.php:136
+#: src/Module/OStatus/Subscribe.php:122
msgid "Done"
msgstr "Готово"
-#: src/Module/OStatus/Subscribe.php:150
+#: src/Module/OStatus/Subscribe.php:136
msgid "success"
msgstr "удачно"
-#: src/Module/OStatus/Subscribe.php:152
+#: src/Module/OStatus/Subscribe.php:138
msgid "failed"
msgstr "неудача"
-#: src/Module/OStatus/Subscribe.php:155
+#: src/Module/OStatus/Subscribe.php:141
msgid "ignored"
msgstr "игнорирован"
-#: src/Module/Photo.php:122
+#: src/Module/OStatus/Subscribe.php:146
+msgid "Keep this window open until done."
+msgstr "Держать окно открытым до завершения."
+
+#: src/Module/Photo.php:108
msgid "The Photo is not available."
msgstr "Фото недоступно."
-#: src/Module/Photo.php:147
+#: src/Module/Photo.php:133
#, php-format
msgid "The Photo with id %s is not available."
msgstr "Фотография с id %s недоступна."
-#: src/Module/Photo.php:188
+#: src/Module/Photo.php:174
#, php-format
msgid "Invalid external resource with url %s."
msgstr "Проблема с внешним ресурсом по адресу %s."
-#: src/Module/Photo.php:190
+#: src/Module/Photo.php:176
#, php-format
msgid "Invalid photo with id %s."
msgstr "Неправильное фото с id %s."
-#: src/Module/Post/Edit.php:82 src/Module/Post/Edit.php:96
+#: src/Module/Post/Edit.php:68 src/Module/Post/Edit.php:82
msgid "Post not found."
msgstr "Запись не найдена"
-#: src/Module/Post/Edit.php:102
+#: src/Module/Post/Edit.php:88
msgid "Edit post"
msgstr "Редактировать запись"
-#: src/Module/Post/Edit.php:136
+#: src/Module/Post/Edit.php:122
msgid "web link"
msgstr "веб-ссылка"
-#: src/Module/Post/Edit.php:137
+#: src/Module/Post/Edit.php:123
msgid "Insert video link"
msgstr "Вставить ссылку видео"
-#: src/Module/Post/Edit.php:138
+#: src/Module/Post/Edit.php:124
msgid "video link"
msgstr "видео-ссылка"
-#: src/Module/Post/Edit.php:139
+#: src/Module/Post/Edit.php:125
msgid "Insert audio link"
msgstr "Вставить ссылку аудио"
-#: src/Module/Post/Edit.php:140
+#: src/Module/Post/Edit.php:126
msgid "audio link"
msgstr "аудио-ссылка"
-#: src/Module/Post/Tag/Remove.php:106
+#: src/Module/Post/Tag/Remove.php:92
msgid "Remove Item Tag"
msgstr "Удалить ключевое слово"
-#: src/Module/Post/Tag/Remove.php:107
+#: src/Module/Post/Tag/Remove.php:93
msgid "Select a tag to remove: "
msgstr "Выберите ключевое слово для удаления: "
-#: src/Module/Post/Tag/Remove.php:108
-#: src/Module/Settings/TwoFactor/Trusted.php:147
+#: src/Module/Post/Tag/Remove.php:94
+#: src/Module/Settings/TwoFactor/Trusted.php:133
msgid "Remove"
msgstr "Удалить"
-#: src/Module/Privacy/PermissionTooltip.php:71
+#: src/Module/Privacy/PermissionTooltip.php:57
#, php-format
msgid "Wrong type \"%s\", expected one of: %s"
msgstr "Ошибочный тип \"%s\", ожидался один из: %s"
-#: src/Module/Privacy/PermissionTooltip.php:101
+#: src/Module/Privacy/PermissionTooltip.php:87
msgid "Model not found"
msgstr "Модель не найдена"
-#: src/Module/Privacy/PermissionTooltip.php:118
+#: src/Module/Privacy/PermissionTooltip.php:104
msgid "Unlisted"
msgstr "Непублично"
-#: src/Module/Privacy/PermissionTooltip.php:124
+#: src/Module/Privacy/PermissionTooltip.php:110
msgid "Remote privacy information not available."
msgstr "Личная информация удаленно недоступна."
-#: src/Module/Privacy/PermissionTooltip.php:131
+#: src/Module/Privacy/PermissionTooltip.php:117
msgid "Visible to:"
msgstr "Кто может видеть:"
-#: src/Module/Privacy/PermissionTooltip.php:133
+#: src/Module/Privacy/PermissionTooltip.php:119
msgid "CC:"
msgstr ""
-#: src/Module/Privacy/PermissionTooltip.php:134
+#: src/Module/Privacy/PermissionTooltip.php:120
msgid "BCC:"
msgstr ""
-#: src/Module/Privacy/PermissionTooltip.php:135
+#: src/Module/Privacy/PermissionTooltip.php:121
msgid "Audience:"
msgstr ""
-#: src/Module/Privacy/PermissionTooltip.php:136
+#: src/Module/Privacy/PermissionTooltip.php:122
msgid "Attributed To:"
msgstr ""
-#: src/Module/Privacy/PermissionTooltip.php:234
+#: src/Module/Privacy/PermissionTooltip.php:220
#, php-format
msgid "Collection (%s)"
msgstr "Коллекция (%s)"
-#: src/Module/Privacy/PermissionTooltip.php:238
+#: src/Module/Privacy/PermissionTooltip.php:224
#, php-format
msgid "Followers (%s)"
msgstr "Подписчики (%s)"
-#: src/Module/Privacy/PermissionTooltip.php:255
+#: src/Module/Privacy/PermissionTooltip.php:241
#, php-format
msgid "%d more"
msgstr "%d ещё"
-#: src/Module/Profile/Contacts.php:159
+#: src/Module/Profile/Contacts.php:145
msgid "No contacts."
msgstr "Нет контактов."
-#: src/Module/Profile/Conversations.php:106
-#: src/Module/Profile/Conversations.php:109 src/Module/Profile/Profile.php:353
-#: src/Module/Profile/Profile.php:356 src/Protocol/Feed.php:1114
-#: src/Protocol/OStatus.php:1011
-#, php-format
-msgid "%s's timeline"
-msgstr "Лента %s"
-
-#: src/Module/Profile/Conversations.php:107 src/Module/Profile/Profile.php:354
-#: src/Protocol/Feed.php:1118 src/Protocol/OStatus.php:1016
+#: src/Module/Profile/Conversations.php:92 src/Module/Profile/Profile.php:339
+#: src/Protocol/Feed.php:1097
#, php-format
msgid "%s's posts"
msgstr "Записи %s"
-#: src/Module/Profile/Conversations.php:108 src/Module/Profile/Profile.php:355
-#: src/Protocol/Feed.php:1121 src/Protocol/OStatus.php:1020
+#: src/Module/Profile/Conversations.php:93 src/Module/Profile/Profile.php:340
+#: src/Protocol/Feed.php:1100
#, php-format
msgid "%s's comments"
msgstr "Комментарии %s"
-#: src/Module/Profile/Photos.php:164 src/Module/Profile/Photos.php:167
-#: src/Module/Profile/Photos.php:192
-#: src/Module/Settings/Profile/Photo/Index.php:58
+#: src/Module/Profile/Conversations.php:94 src/Module/Profile/Profile.php:341
+#: src/Protocol/Feed.php:1093
+#, php-format
+msgid "%s's timeline"
+msgstr "Лента %s"
+
+#: src/Module/Profile/Photos.php:150 src/Module/Profile/Photos.php:153
+#: src/Module/Profile/Photos.php:178
+#: src/Module/Settings/Profile/Photo/Index.php:44
#, php-format
msgid "Image exceeds size limit of %s"
msgstr "Изображение превышает лимит размера в %s"
-#: src/Module/Profile/Photos.php:170
+#: src/Module/Profile/Photos.php:156
msgid "Image upload didn't complete, please try again"
msgstr "Не получилось загрузить изображение, попробуйте снова"
-#: src/Module/Profile/Photos.php:173
+#: src/Module/Profile/Photos.php:159
msgid "Image file is missing"
msgstr "Файл изображения не найден"
-#: src/Module/Profile/Photos.php:178
+#: src/Module/Profile/Photos.php:164
msgid ""
"Server can't accept new file upload at this time, please contact your "
"administrator"
msgstr "Сервер не принимает новые файлы для загрузки в настоящий момент, пожалуйста, свяжитесь с администратором"
-#: src/Module/Profile/Photos.php:200
+#: src/Module/Profile/Photos.php:186
msgid "Image file is empty."
msgstr "Файл изображения пуст."
-#: src/Module/Profile/Photos.php:352
+#: src/Module/Profile/Photos.php:338
msgid "View Album"
msgstr "Просмотреть альбом"
-#: src/Module/Profile/Profile.php:114 src/Module/Profile/Restricted.php:50
+#: src/Module/Profile/Profile.php:100 src/Module/Profile/Restricted.php:36
msgid "Profile not found."
msgstr "Профиль не найден."
-#: src/Module/Profile/Profile.php:160
+#: src/Module/Profile/Profile.php:146
#, php-format
msgid ""
"You're currently viewing your profile as %s Cancel"
msgstr "Сейчас вы видите свой профиль как %s Отмена"
-#: src/Module/Profile/Profile.php:169
+#: src/Module/Profile/Profile.php:155
msgid "Full Name:"
msgstr "Полное имя:"
-#: src/Module/Profile/Profile.php:174
+#: src/Module/Profile/Profile.php:160
msgid "Member since:"
msgstr "Зарегистрирован с:"
-#: src/Module/Profile/Profile.php:180
+#: src/Module/Profile/Profile.php:166
msgid "j F, Y"
msgstr "j F, Y"
-#: src/Module/Profile/Profile.php:181
+#: src/Module/Profile/Profile.php:167
msgid "j F"
msgstr "j F"
-#: src/Module/Profile/Profile.php:189 src/Util/Temporal.php:168
+#: src/Module/Profile/Profile.php:175 src/Util/Temporal.php:154
msgid "Birthday:"
msgstr "День рождения:"
-#: src/Module/Profile/Profile.php:192
-#: src/Module/Settings/Profile/Index.php:296 src/Util/Temporal.php:170
+#: src/Module/Profile/Profile.php:178
+#: src/Module/Settings/Profile/Index.php:282 src/Util/Temporal.php:156
msgid "Age: "
msgstr "Возраст: "
-#: src/Module/Profile/Profile.php:192
-#: src/Module/Settings/Profile/Index.php:296 src/Util/Temporal.php:170
+#: src/Module/Profile/Profile.php:178
+#: src/Module/Settings/Profile/Index.php:282 src/Util/Temporal.php:156
#, php-format
msgid "%d year old"
msgid_plural "%d years old"
@@ -9355,46 +9336,46 @@ msgstr[1] "%dгода"
msgstr[2] "%dлет"
msgstr[3] "%dлет"
-#: src/Module/Profile/Profile.php:197
-#: src/Module/Settings/Profile/Index.php:289
+#: src/Module/Profile/Profile.php:183
+#: src/Module/Settings/Profile/Index.php:275
msgid "Description:"
msgstr "Описание:"
-#: src/Module/Profile/Profile.php:263
+#: src/Module/Profile/Profile.php:249
msgid "Groups:"
msgstr "Группы:"
-#: src/Module/Profile/Profile.php:275
+#: src/Module/Profile/Profile.php:261
msgid "View profile as:"
msgstr "Посмотреть профиль как:"
-#: src/Module/Profile/Profile.php:292
+#: src/Module/Profile/Profile.php:278
msgid "View as"
msgstr "Посмотреть как"
-#: src/Module/Profile/RemoteFollow.php:82
+#: src/Module/Profile/RemoteFollow.php:68
msgid "Profile unavailable."
msgstr "Профиль недоступен."
-#: src/Module/Profile/RemoteFollow.php:88
+#: src/Module/Profile/RemoteFollow.php:74
msgid "Invalid locator"
msgstr "Недопустимый локатор"
-#: src/Module/Profile/RemoteFollow.php:95
+#: src/Module/Profile/RemoteFollow.php:81
msgid "The provided profile link doesn't seem to be valid"
msgstr "Указанная ссылка на профиль не выглядит правильной"
-#: src/Module/Profile/RemoteFollow.php:100
+#: src/Module/Profile/RemoteFollow.php:86
msgid ""
"Remote subscription can't be done for your network. Please subscribe "
"directly on your system."
msgstr "Удаленная подписка не может быть выполнена на вашей сети. Пожалуйста, подпишитесь на вашей системе."
-#: src/Module/Profile/RemoteFollow.php:128
+#: src/Module/Profile/RemoteFollow.php:114
msgid "Friend/Connection Request"
msgstr "Запрос в друзья / на подключение"
-#: src/Module/Profile/RemoteFollow.php:129
+#: src/Module/Profile/RemoteFollow.php:115
#, php-format
msgid ""
"Enter your Webfinger address (user@domain.tld) or profile URL here. If this "
@@ -9402,579 +9383,579 @@ msgid ""
" or %s directly on your system."
msgstr "Введите здесь ваш Webfinger-адрес (user@domain.tld) или ссылку на профиль. Если это не поддерживается вашей системой, вам нужно подписаться на %s или %s непосредственно на вашей системе."
-#: src/Module/Profile/RemoteFollow.php:130
+#: src/Module/Profile/RemoteFollow.php:116
#, php-format
msgid ""
"If you are not yet a member of the free social web, follow "
"this link to find a public Friendica node and join us today."
msgstr "Если вы ещё не член свободной социальной сети, пройдите по этой ссылке, чтобы найти публичный узел Friendica и присоединитесь к нам сегодня."
-#: src/Module/Profile/RemoteFollow.php:131
+#: src/Module/Profile/RemoteFollow.php:117
msgid "Your Webfinger address or profile URL:"
msgstr "Ваш адрес Webfinger или ссылка на профиль:"
-#: src/Module/Profile/Restricted.php:59
+#: src/Module/Profile/Restricted.php:45
msgid "Restricted profile"
msgstr "Закрытый профиль"
-#: src/Module/Profile/Restricted.php:60
+#: src/Module/Profile/Restricted.php:46
msgid ""
"This profile has been restricted which prevents access to their public "
"content from anonymous visitors."
msgstr "Доступ к этому профилю был ограничен, анонимные пользователи не могут его просматривать."
-#: src/Module/Profile/Schedule.php:83
+#: src/Module/Profile/Schedule.php:69
msgid "Scheduled"
msgstr "Запланировано"
-#: src/Module/Profile/Schedule.php:84
+#: src/Module/Profile/Schedule.php:70
msgid "Content"
msgstr "Содержание"
-#: src/Module/Profile/Schedule.php:85
+#: src/Module/Profile/Schedule.php:71
msgid "Remove post"
msgstr "Удалить запись"
-#: src/Module/Register.php:91
+#: src/Module/Register.php:77
msgid "Only parent users can create additional accounts."
msgstr "Только основные пользователи могут создавать дополнительные учётные записи."
-#: src/Module/Register.php:106 src/Module/User/Import.php:112
+#: src/Module/Register.php:92 src/Module/User/Import.php:98
msgid ""
"This site has exceeded the number of allowed daily account registrations. "
"Please try again tomorrow."
msgstr "Этот сайт превысил допустимое количество ежедневных регистраций. Пожалуйста, повторите попытку завтра."
-#: src/Module/Register.php:123
+#: src/Module/Register.php:109
msgid ""
"You may (optionally) fill in this form via OpenID by supplying your OpenID "
"and clicking \"Register\"."
msgstr "Вы можете (по желанию), заполнить эту форму с помощью OpenID, предоставив ваш OpenID и нажав кнопку \"Регистрация\"."
-#: src/Module/Register.php:124
+#: src/Module/Register.php:110
msgid ""
"If you are not familiar with OpenID, please leave that field blank and fill "
"in the rest of the items."
msgstr "Если вы не знакомы с OpenID, пожалуйста, оставьте это поле пустым и заполните остальные элементы."
-#: src/Module/Register.php:125
+#: src/Module/Register.php:111
msgid "Your OpenID (optional): "
msgstr "Ваш OpenID (необязательно):"
-#: src/Module/Register.php:134
+#: src/Module/Register.php:120
msgid "Include your profile in member directory?"
msgstr "Включить ваш профиль в каталог участников?"
-#: src/Module/Register.php:155
+#: src/Module/Register.php:141
msgid "Note for the admin"
msgstr "Сообщение для администратора"
-#: src/Module/Register.php:155
+#: src/Module/Register.php:141
msgid "Leave a message for the admin, why you want to join this node"
msgstr "Сообщения для администратора сайта на тему \"почему я хочу присоединиться к вам\""
-#: src/Module/Register.php:156
+#: src/Module/Register.php:142
msgid "Membership on this site is by invitation only."
msgstr "Членство на сайте только по приглашению."
-#: src/Module/Register.php:157
+#: src/Module/Register.php:143
msgid "Your invitation code: "
msgstr "Ваш код приглашения:"
-#: src/Module/Register.php:165
+#: src/Module/Register.php:151
msgid "Your Display Name (as you would like it to be displayed on this system"
msgstr "Ваше полное имя (как вы бы хотели его видеть здесь"
-#: src/Module/Register.php:166
+#: src/Module/Register.php:152
msgid ""
"Your Email Address: (Initial information will be send there, so this has to "
"be an existing address.)"
msgstr "Ваш адрес электронной почты: (Информация для входа будет отправлена туда, это должен быть существующий адрес.)"
-#: src/Module/Register.php:167
+#: src/Module/Register.php:153
msgid "Please repeat your e-mail address:"
msgstr "Пожалуйста, введите адрес электронной почты ещё раз:"
-#: src/Module/Register.php:169 src/Module/Security/PasswordTooLong.php:100
-#: src/Module/Settings/Account.php:569
+#: src/Module/Register.php:155 src/Module/Security/PasswordTooLong.php:86
+#: src/Module/Settings/Account.php:555
msgid "New Password:"
msgstr "Новый пароль:"
-#: src/Module/Register.php:169
+#: src/Module/Register.php:155
msgid "Leave empty for an auto generated password."
msgstr "Оставьте пустым для автоматической генерации пароля."
-#: src/Module/Register.php:170 src/Module/Security/PasswordTooLong.php:101
-#: src/Module/Settings/Account.php:570
+#: src/Module/Register.php:156 src/Module/Security/PasswordTooLong.php:87
+#: src/Module/Settings/Account.php:556
msgid "Confirm:"
msgstr "Подтвердите:"
-#: src/Module/Register.php:171
+#: src/Module/Register.php:157
#, php-format
msgid ""
"Choose a profile nickname. This must begin with a text character. Your "
"profile address on this site will then be \"nickname@%s\"."
msgstr "Выберите псевдоним. Он должен начинаться с буквы. Адрес вашего профиля на этом сайте будет \"псевдоним@%s\"."
-#: src/Module/Register.php:172
+#: src/Module/Register.php:158
msgid "Choose a nickname: "
msgstr "Выберите псевдоним: "
-#: src/Module/Register.php:180 src/Module/User/Import.php:118
+#: src/Module/Register.php:166 src/Module/User/Import.php:104
msgid "Import"
msgstr "Импорт"
-#: src/Module/Register.php:181
+#: src/Module/Register.php:167
msgid "Import your profile to this friendica instance"
msgstr "Импорт своего профиля в этот экземпляр friendica"
-#: src/Module/Register.php:188
+#: src/Module/Register.php:174
msgid "Note: This node explicitly contains adult content"
msgstr "Внимание: на этом сервере размещаются материалы для взрослых."
-#: src/Module/Register.php:190 src/Module/Settings/Delegation.php:181
+#: src/Module/Register.php:176 src/Module/Settings/Delegation.php:167
msgid "Parent Password:"
msgstr "Родительский пароль:"
-#: src/Module/Register.php:190 src/Module/Settings/Delegation.php:181
+#: src/Module/Register.php:176 src/Module/Settings/Delegation.php:167
msgid ""
"Please enter the password of the parent account to legitimize your request."
msgstr "Пожалуйста введите пароль от родительского аккаунта для подтверждения запроса."
-#: src/Module/Register.php:219
+#: src/Module/Register.php:205
msgid "Password doesn't match."
msgstr "Пароль не совпадает"
-#: src/Module/Register.php:225
+#: src/Module/Register.php:211
msgid "Please enter your password."
msgstr "Пожалуйста, введите ваш пароль."
-#: src/Module/Register.php:267
+#: src/Module/Register.php:253
msgid "You have entered too much information."
msgstr "Вы ввели слишком много информации."
-#: src/Module/Register.php:290
+#: src/Module/Register.php:276
msgid "Please enter the identical mail address in the second field."
msgstr "Пожалуйста, введите тот же самый адрес почты во второе поле."
-#: src/Module/Register.php:298
+#: src/Module/Register.php:284
msgid "Nickname cannot start with a digit."
msgstr "Ник не может начинаться с цифры"
-#: src/Module/Register.php:300
+#: src/Module/Register.php:286
msgid "Nickname can only contain US-ASCII characters."
msgstr "Ник может содержать только латинские символы"
-#: src/Module/Register.php:329
+#: src/Module/Register.php:315
msgid "The additional account was created."
msgstr "Дополнительная учётная запись создана."
-#: src/Module/Register.php:354
+#: src/Module/Register.php:340
msgid ""
"Registration successful. Please check your email for further instructions."
msgstr "Регистрация успешна. Пожалуйста, проверьте свою электронную почту для получения дальнейших инструкций."
-#: src/Module/Register.php:361
+#: src/Module/Register.php:347
#, php-format
msgid ""
"Failed to send email message. Here your accout details:You can enter one of your one-time recovery codes in case you lost access" " to your mobile device.
" msgstr "Вы можете ввести один из ваших одноразовых кодов восстановления в случае, если у вас нет доступа к мобильному устройству.
" -#: src/Module/Security/TwoFactor/Recovery.php:101 +#: src/Module/Security/TwoFactor/Recovery.php:87 #, php-format msgid "Don’t have your phone? Enter a two-factor recovery code" msgstr "Нет телефона? Введите код восстановления" -#: src/Module/Security/TwoFactor/Recovery.php:102 +#: src/Module/Security/TwoFactor/Recovery.php:88 msgid "Please enter a recovery code" msgstr "Пожалуйста, введите код восстановления" -#: src/Module/Security/TwoFactor/Recovery.php:103 +#: src/Module/Security/TwoFactor/Recovery.php:89 msgid "Submit recovery code and complete login" msgstr "Отправить код восстановления и завершить вход" -#: src/Module/Security/TwoFactor/SignOut.php:122 +#: src/Module/Security/TwoFactor/SignOut.php:108 msgid "Sign out of this browser?" msgstr "Выйти из этого браузера?" -#: src/Module/Security/TwoFactor/SignOut.php:123 +#: src/Module/Security/TwoFactor/SignOut.php:109 msgid "" "If you trust this browser, you will not be asked for verification code " "the next time you sign in.
" msgstr "Если вы доверяете этому браузеру, то при следующем входе код двухфакторной аутентификации запрошен не будет.
" -#: src/Module/Security/TwoFactor/SignOut.php:124 +#: src/Module/Security/TwoFactor/SignOut.php:110 msgid "Sign out" msgstr "Выйти" -#: src/Module/Security/TwoFactor/SignOut.php:126 +#: src/Module/Security/TwoFactor/SignOut.php:112 msgid "Trust and sign out" msgstr "Доверять и выйти" -#: src/Module/Security/TwoFactor/Trust.php:96 +#: src/Module/Security/TwoFactor/Trust.php:82 msgid "Couldn't save browser to Cookie." msgstr "Не удалось сохранить браузер в Cookie" -#: src/Module/Security/TwoFactor/Trust.php:141 +#: src/Module/Security/TwoFactor/Trust.php:127 msgid "Trust this browser?" msgstr "Доверять этому браузеру?" -#: src/Module/Security/TwoFactor/Trust.php:142 +#: src/Module/Security/TwoFactor/Trust.php:128 msgid "" "If you choose to trust this browser, you will not be asked for a " "verification code the next time you sign in.
" msgstr "Если вы решите доверять этому браузеру, то при следующем входе код двухфакторной аутентификации запрошен не будет.
" -#: src/Module/Security/TwoFactor/Trust.php:143 +#: src/Module/Security/TwoFactor/Trust.php:129 msgid "Not now" msgstr "Не сейчас" -#: src/Module/Security/TwoFactor/Trust.php:144 +#: src/Module/Security/TwoFactor/Trust.php:130 msgid "Don't trust" msgstr "Не доверять" -#: src/Module/Security/TwoFactor/Trust.php:145 +#: src/Module/Security/TwoFactor/Trust.php:131 msgid "Trust" msgstr "Доверять" -#: src/Module/Security/TwoFactor/Verify.php:97 +#: src/Module/Security/TwoFactor/Verify.php:83 msgid "" "Open the two-factor authentication app on your device to get an " "authentication code and verify your identity.
" msgstr "Откройте приложение для двухфакторной аутентификации на вашем устройстве, чтобы получить код аутентификации и подтвердить вашу личность.
" -#: src/Module/Security/TwoFactor/Verify.php:100 +#: src/Module/Security/TwoFactor/Verify.php:86 #, php-format msgid "" "If you do not have access to your authentication code you can use a two-factor recovery code." msgstr "Если у вас нет доступа к кодам аутентификации, вы можете использовать код восстановления." -#: src/Module/Security/TwoFactor/Verify.php:101 -#: src/Module/Settings/TwoFactor/Verify.php:158 +#: src/Module/Security/TwoFactor/Verify.php:87 +#: src/Module/Settings/TwoFactor/Verify.php:144 msgid "Please enter a code from your authentication app" msgstr "Пожалуйста, введите код из вашего приложения для аутентификации" -#: src/Module/Security/TwoFactor/Verify.php:102 +#: src/Module/Security/TwoFactor/Verify.php:88 msgid "Verify code and complete login" msgstr "Введите код для завершения входа" -#: src/Module/Settings/Account.php:96 +#: src/Module/Settings/Account.php:82 msgid "Please use a shorter name." msgstr "Пожалуйста, выберите имя короче." -#: src/Module/Settings/Account.php:99 +#: src/Module/Settings/Account.php:85 msgid "Name too short." msgstr "Имя слишком короткое" -#: src/Module/Settings/Account.php:108 +#: src/Module/Settings/Account.php:94 msgid "Wrong Password." msgstr "Неправильный пароль" -#: src/Module/Settings/Account.php:113 +#: src/Module/Settings/Account.php:99 msgid "Invalid email." msgstr "Неправильный адрес почты" -#: src/Module/Settings/Account.php:117 +#: src/Module/Settings/Account.php:103 msgid "Cannot change to that email." msgstr "Нельзя установить этот адрес почты" -#: src/Module/Settings/Account.php:146 src/Module/Settings/Account.php:195 -#: src/Module/Settings/Account.php:216 src/Module/Settings/Account.php:300 -#: src/Module/Settings/Account.php:329 +#: src/Module/Settings/Account.php:132 src/Module/Settings/Account.php:181 +#: src/Module/Settings/Account.php:202 src/Module/Settings/Account.php:286 +#: src/Module/Settings/Account.php:315 msgid "Settings were not updated." msgstr "Настройки не были изменены." -#: src/Module/Settings/Account.php:347 +#: src/Module/Settings/Account.php:333 msgid "Contact CSV file upload error" msgstr "Ошибка загрузки CSV с контактами" -#: src/Module/Settings/Account.php:366 +#: src/Module/Settings/Account.php:352 msgid "Importing Contacts done" msgstr "Импорт контактов завершён" -#: src/Module/Settings/Account.php:379 +#: src/Module/Settings/Account.php:365 msgid "Relocate message has been send to your contacts" msgstr "Перемещённое сообщение было отправлено списку контактов" -#: src/Module/Settings/Account.php:396 +#: src/Module/Settings/Account.php:382 msgid "Unable to find your profile. Please contact your admin." msgstr "Не получается найти ваш профиль. Пожалуйста свяжитесь с администратором." -#: src/Module/Settings/Account.php:438 +#: src/Module/Settings/Account.php:424 msgid "" "Account for a service that automatically shares content based on user " "defined channels." msgstr "Учётная запись, которая автоматически публикует контент из каналов, созданных пользователем." -#: src/Module/Settings/Account.php:448 +#: src/Module/Settings/Account.php:434 msgid "Personal Page Subtypes" msgstr "Подтипы личной страницы" -#: src/Module/Settings/Account.php:449 +#: src/Module/Settings/Account.php:435 msgid "Community Group Subtypes" msgstr "Типы групп сообществ" -#: src/Module/Settings/Account.php:460 +#: src/Module/Settings/Account.php:446 msgid "Account for a personal profile." msgstr "Личная учётная запись" -#: src/Module/Settings/Account.php:467 +#: src/Module/Settings/Account.php:453 msgid "" "Account for an organisation that automatically approves contact requests as " "\"Followers\"." msgstr "Учётная запись организации, которая автоматически одобряет новых подписчиков." -#: src/Module/Settings/Account.php:474 +#: src/Module/Settings/Account.php:460 msgid "" "Account for a news reflector that automatically approves contact requests as" " \"Followers\"." msgstr "Учётная запись новостной ленты, которая автоматически одобряет новых подписчиков." -#: src/Module/Settings/Account.php:481 +#: src/Module/Settings/Account.php:467 msgid "Account for community discussions." msgstr "Учётная запись для совместных обсуждений." -#: src/Module/Settings/Account.php:489 +#: src/Module/Settings/Account.php:475 msgid "" "Account for a regular personal profile that requires manual approval of " "\"Friends\" and \"Followers\"." msgstr "Личная учётная запись, которая требует ручного одобрения для новых подписчиков и друзей." -#: src/Module/Settings/Account.php:496 +#: src/Module/Settings/Account.php:482 msgid "" "Account for a public profile that automatically approves contact requests as" " \"Followers\"." msgstr "Учётная запись для публичного профиля, которая автоматически одобряет новых подписчиков." -#: src/Module/Settings/Account.php:503 +#: src/Module/Settings/Account.php:489 msgid "Automatically approves all contact requests." msgstr "Автоматически одобряет все запросы на подписку." -#: src/Module/Settings/Account.php:510 +#: src/Module/Settings/Account.php:496 msgid "Contact requests have to be manually approved." msgstr "Запросы на добавление одобряются вручную." -#: src/Module/Settings/Account.php:517 +#: src/Module/Settings/Account.php:503 msgid "" "Account for a popular profile that automatically approves contact requests " "as \"Friends\"." msgstr "Учётная запись для публичной личности, которая автоматически добавляет все новые контакты в друзья." -#: src/Module/Settings/Account.php:522 +#: src/Module/Settings/Account.php:508 msgid "Private Group [Experimental]" msgstr "Частная группа [экспериментально]" -#: src/Module/Settings/Account.php:524 +#: src/Module/Settings/Account.php:510 msgid "Requires manual approval of contact requests." msgstr "Требует ручного одобрения запросов на подписку." -#: src/Module/Settings/Account.php:533 +#: src/Module/Settings/Account.php:519 msgid "OpenID:" msgstr "OpenID:" -#: src/Module/Settings/Account.php:533 +#: src/Module/Settings/Account.php:519 msgid "(Optional) Allow this OpenID to login to this account." msgstr "(Необязательно) Разрешить этому OpenID входить в этот аккаунт" -#: src/Module/Settings/Account.php:541 +#: src/Module/Settings/Account.php:527 msgid "Publish your profile in your local site directory?" msgstr "Опубликовать ваш профиль в каталоге вашего сервера?" -#: src/Module/Settings/Account.php:541 +#: src/Module/Settings/Account.php:527 #, php-format msgid "" "Your profile will be published in this node's local " @@ -9982,94 +9963,94 @@ msgid "" " system settings." msgstr "Ваш профиль будет опубликован в локальном каталоге этого сервера. Данные вашего профиля могут быть доступны публично в зависимости от настроек." -#: src/Module/Settings/Account.php:547 +#: src/Module/Settings/Account.php:533 #, php-format msgid "" "Your profile will also be published in the global friendica directories " "(e.g. %s)." msgstr "Ваш профиль так же будет опубликован в глобальных каталогах Френдики (напр. %s)." -#: src/Module/Settings/Account.php:560 +#: src/Module/Settings/Account.php:546 msgid "Account Settings" msgstr "Настройки аккаунта" -#: src/Module/Settings/Account.php:561 +#: src/Module/Settings/Account.php:547 #, php-format msgid "Your Identity Address is '%s' or '%s'." msgstr "Ваш адрес: '%s' или '%s'." -#: src/Module/Settings/Account.php:568 +#: src/Module/Settings/Account.php:554 msgid "Password Settings" msgstr "Смена пароля" -#: src/Module/Settings/Account.php:570 +#: src/Module/Settings/Account.php:556 msgid "Leave password fields blank unless changing" msgstr "Оставьте поля пароля пустыми, если он не изменяется" -#: src/Module/Settings/Account.php:572 +#: src/Module/Settings/Account.php:558 msgid "Password:" msgstr "Пароль:" -#: src/Module/Settings/Account.php:572 +#: src/Module/Settings/Account.php:558 msgid "Your current password to confirm the changes of the email address" msgstr "Ваш текущий пароль для подтверждения смены адреса почты" -#: src/Module/Settings/Account.php:575 +#: src/Module/Settings/Account.php:561 msgid "Delete OpenID URL" msgstr "Удалить ссылку OpenID" -#: src/Module/Settings/Account.php:577 +#: src/Module/Settings/Account.php:563 msgid "Basic Settings" msgstr "Основные параметры" -#: src/Module/Settings/Account.php:578 -#: src/Module/Settings/Profile/Index.php:288 +#: src/Module/Settings/Account.php:564 +#: src/Module/Settings/Profile/Index.php:274 msgid "Display name:" msgstr "Отображаемое имя:" -#: src/Module/Settings/Account.php:579 +#: src/Module/Settings/Account.php:565 msgid "Email Address:" msgstr "Адрес электронной почты:" -#: src/Module/Settings/Account.php:580 +#: src/Module/Settings/Account.php:566 msgid "Your Timezone:" msgstr "Ваш часовой пояс:" -#: src/Module/Settings/Account.php:581 +#: src/Module/Settings/Account.php:567 msgid "Your Language:" msgstr "Ваш язык:" -#: src/Module/Settings/Account.php:581 +#: src/Module/Settings/Account.php:567 msgid "" "Set the language we use to show you friendica interface and to send you " "emails" msgstr "Выберите язык, на котором вы будете видеть интерфейс Friendica и на котором вы будете получать письма" -#: src/Module/Settings/Account.php:582 +#: src/Module/Settings/Account.php:568 msgid "Default Post Location:" msgstr "Местонахождение по умолчанию:" -#: src/Module/Settings/Account.php:583 +#: src/Module/Settings/Account.php:569 msgid "Use Browser Location:" msgstr "Использовать определение местоположения браузером:" -#: src/Module/Settings/Account.php:585 +#: src/Module/Settings/Account.php:571 msgid "Security and Privacy Settings" msgstr "Параметры безопасности и конфиденциальности" -#: src/Module/Settings/Account.php:587 +#: src/Module/Settings/Account.php:573 msgid "Maximum Friend Requests/Day:" msgstr "Максимум запросов в друзья в день:" -#: src/Module/Settings/Account.php:587 +#: src/Module/Settings/Account.php:573 msgid "(to prevent spam abuse)" msgstr "(для предотвращения спама)" -#: src/Module/Settings/Account.php:589 +#: src/Module/Settings/Account.php:575 msgid "Allow your profile to be searchable globally?" msgstr "Сделать ваш профиль доступным для поиска глобально?" -#: src/Module/Settings/Account.php:589 +#: src/Module/Settings/Account.php:575 msgid "" "Activate this setting if you want others to easily find and follow you. Your" " profile will be searchable on remote systems. This setting also determines " @@ -10077,43 +10058,43 @@ msgid "" "indexed or not." msgstr "Включите эту настройку, если вы хотите, чтобы другие люди могли легко вас находить. Ваш профиль станет доступным для поиска на других узлах. Так же эта настройка разрешает поисковым системам индексировать ваш профиль." -#: src/Module/Settings/Account.php:590 +#: src/Module/Settings/Account.php:576 msgid "Hide your contact/friend list from viewers of your profile?" msgstr "Скрыть список ваших контактов/друзей от просмотра в вашем профиле?" -#: src/Module/Settings/Account.php:590 +#: src/Module/Settings/Account.php:576 msgid "" "A list of your contacts is displayed on your profile page. Activate this " "option to disable the display of your contact list." msgstr "Список ваших контактов отображается на вашей странице профиля. Включите эту настройку, чтобы скрыть отображение вашего списка контактов." -#: src/Module/Settings/Account.php:591 +#: src/Module/Settings/Account.php:577 msgid "Hide your public content from anonymous viewers" msgstr "Скрыть ваши публичные записи от анонимных посетителей" -#: src/Module/Settings/Account.php:591 +#: src/Module/Settings/Account.php:577 msgid "" "Anonymous visitors will only see your basic profile details. Your public " "posts and replies will still be freely accessible on the remote servers of " "your followers and through relays." msgstr "Анонимные посетители увидят только основные данные профиля. Публичные записи и комментарии будут там скрыты, но при этом доступны на серверах ваших подписчиков и через релеи." -#: src/Module/Settings/Account.php:592 +#: src/Module/Settings/Account.php:578 msgid "Make public posts unlisted" msgstr "Скрыть публичные записи из общих лент" -#: src/Module/Settings/Account.php:592 +#: src/Module/Settings/Account.php:578 msgid "" "Your public posts will not appear on the community pages or in search " "results, nor be sent to relay servers. However they can still appear on " "public feeds on remote servers." msgstr "Ваши публичные записи не будут отражаться в общей ленте сервера или в результатах поиска, так же они не будут отправляться на ретранслтяторы. Тем не менее, они всё равно могут быть доступны в публичных лентах других серверов." -#: src/Module/Settings/Account.php:593 +#: src/Module/Settings/Account.php:579 msgid "Make all posted pictures accessible" msgstr "Сделать все опубликованные изображения доступными" -#: src/Module/Settings/Account.php:593 +#: src/Module/Settings/Account.php:579 msgid "" "This option makes every posted picture accessible via the direct link. This " "is a workaround for the problem that most other networks can't handle " @@ -10121,352 +10102,352 @@ msgid "" "public on your photo albums though." msgstr "Эта настройка делает все опубликованные изображения доступными по прямой ссылке. Это можно применить для решения проблем с другими социальными сетями, которые не умеют работать с разрешениями доступа для изображений. Непубличные изображения в любом случае не будут доступны для просмотра публично в ваших альбомах." -#: src/Module/Settings/Account.php:594 +#: src/Module/Settings/Account.php:580 msgid "Allow friends to post to your profile page?" msgstr "Разрешить друзьям оставлять сообщения на страницу вашего профиля?" -#: src/Module/Settings/Account.php:594 +#: src/Module/Settings/Account.php:580 msgid "" "Your contacts may write posts on your profile wall. These posts will be " "distributed to your contacts" msgstr "Ваши контакты могут оставлять записи на стене вашего профиля. Эти записи будут распространены вашим подписчикам." -#: src/Module/Settings/Account.php:595 +#: src/Module/Settings/Account.php:581 msgid "Allow friends to tag your posts?" msgstr "Разрешить друзьям отмечать ваши сообщения?" -#: src/Module/Settings/Account.php:595 +#: src/Module/Settings/Account.php:581 msgid "Your contacts can add additional tags to your posts." msgstr "Ваши контакты могут добавлять дополнительные теги к вашим записям." -#: src/Module/Settings/Account.php:596 +#: src/Module/Settings/Account.php:582 msgid "Default privacy circle for new contacts" msgstr "Круг по-умолчанию для новых контактов" -#: src/Module/Settings/Account.php:597 +#: src/Module/Settings/Account.php:583 msgid "Default privacy circle for new group contacts" msgstr "Круг по-умолчанию для новых групп" -#: src/Module/Settings/Account.php:598 +#: src/Module/Settings/Account.php:584 msgid "Default Post Permissions" msgstr "Разрешение на сообщения по умолчанию" -#: src/Module/Settings/Account.php:602 +#: src/Module/Settings/Account.php:588 msgid "Expiration settings" msgstr "Очистка старых записей" -#: src/Module/Settings/Account.php:603 +#: src/Module/Settings/Account.php:589 msgid "Automatically expire posts after this many days:" msgstr "Автоматическое истекание срока действия сообщения после стольких дней:" -#: src/Module/Settings/Account.php:603 +#: src/Module/Settings/Account.php:589 msgid "If empty, posts will not expire. Expired posts will be deleted" msgstr "Если пусто, срок действия сообщений не будет ограничен. Сообщения с истекшим сроком действия будут удалены" -#: src/Module/Settings/Account.php:604 +#: src/Module/Settings/Account.php:590 msgid "Expire posts" msgstr "Удалять старые записи" -#: src/Module/Settings/Account.php:604 +#: src/Module/Settings/Account.php:590 msgid "When activated, posts and comments will be expired." msgstr "Если включено, то старые записи и комментарии будут удаляться." -#: src/Module/Settings/Account.php:605 +#: src/Module/Settings/Account.php:591 msgid "Expire personal notes" msgstr "Удалять персональные заметки" -#: src/Module/Settings/Account.php:605 +#: src/Module/Settings/Account.php:591 msgid "" "When activated, the personal notes on your profile page will be expired." msgstr "Если включено, старые личные заметки из вашего профиля будут удаляться." -#: src/Module/Settings/Account.php:606 +#: src/Module/Settings/Account.php:592 msgid "Expire starred posts" msgstr "Удалять избранные записи" -#: src/Module/Settings/Account.php:606 +#: src/Module/Settings/Account.php:592 msgid "" "Starring posts keeps them from being expired. That behaviour is overwritten " "by this setting." msgstr "Добавление записи в избранные защищает её от удаления. Эта настройка выключает эту защиту." -#: src/Module/Settings/Account.php:607 +#: src/Module/Settings/Account.php:593 msgid "Only expire posts by others" msgstr "Удалять только записи других людей" -#: src/Module/Settings/Account.php:607 +#: src/Module/Settings/Account.php:593 msgid "" "When activated, your own posts never expire. Then the settings above are " "only valid for posts you received." msgstr "Если включено, ваши собственные записи никогда не удаляются. В этом случае все настройки выше применяются только к записям, которые вы получаете от других." -#: src/Module/Settings/Account.php:610 +#: src/Module/Settings/Account.php:596 msgid "Notification Settings" msgstr "Настройка уведомлений" -#: src/Module/Settings/Account.php:611 +#: src/Module/Settings/Account.php:597 msgid "Send a notification email when:" msgstr "Отправлять уведомление по электронной почте, когда:" -#: src/Module/Settings/Account.php:612 +#: src/Module/Settings/Account.php:598 msgid "You receive an introduction" msgstr "Вы получили запрос" -#: src/Module/Settings/Account.php:613 +#: src/Module/Settings/Account.php:599 msgid "Your introductions are confirmed" msgstr "Ваши запросы подтверждены" -#: src/Module/Settings/Account.php:614 +#: src/Module/Settings/Account.php:600 msgid "Someone writes on your profile wall" msgstr "Кто-то пишет на стене вашего профиля" -#: src/Module/Settings/Account.php:615 +#: src/Module/Settings/Account.php:601 msgid "Someone writes a followup comment" msgstr "Кто-то пишет последующий комментарий" -#: src/Module/Settings/Account.php:616 +#: src/Module/Settings/Account.php:602 msgid "You receive a private message" msgstr "Вы получаете личное сообщение" -#: src/Module/Settings/Account.php:617 +#: src/Module/Settings/Account.php:603 msgid "You receive a friend suggestion" msgstr "Вы получили предложение о добавлении в друзья" -#: src/Module/Settings/Account.php:618 +#: src/Module/Settings/Account.php:604 msgid "You are tagged in a post" msgstr "Вы отмечены в записи" -#: src/Module/Settings/Account.php:620 +#: src/Module/Settings/Account.php:606 msgid "Create a desktop notification when:" msgstr "Показывать уведомление при:" -#: src/Module/Settings/Account.php:621 +#: src/Module/Settings/Account.php:607 msgid "Someone tagged you" msgstr "Вас отметили" -#: src/Module/Settings/Account.php:622 +#: src/Module/Settings/Account.php:608 msgid "Someone directly commented on your post" msgstr "На вашу запись написали комментарий" -#: src/Module/Settings/Account.php:623 +#: src/Module/Settings/Account.php:609 msgid "Someone liked your content" msgstr "Ваша запись кому-то понравилась" -#: src/Module/Settings/Account.php:623 src/Module/Settings/Account.php:624 +#: src/Module/Settings/Account.php:609 src/Module/Settings/Account.php:610 msgid "Can only be enabled, when the direct comment notification is enabled." msgstr "Может быть включено только при включении уведомлений о комментариях к вашим записям." -#: src/Module/Settings/Account.php:624 +#: src/Module/Settings/Account.php:610 msgid "Someone shared your content" msgstr "Вашей записью поделились" -#: src/Module/Settings/Account.php:625 +#: src/Module/Settings/Account.php:611 msgid "Someone commented in your thread" msgstr "В обсуждении вашей записи написали комментарий" -#: src/Module/Settings/Account.php:626 +#: src/Module/Settings/Account.php:612 msgid "Someone commented in a thread where you commented" msgstr "Написали в диалоге, где вы оставляли комментарии" -#: src/Module/Settings/Account.php:627 +#: src/Module/Settings/Account.php:613 msgid "Someone commented in a thread where you interacted" msgstr "Написали в диалоге, где вы принимали любое участие" -#: src/Module/Settings/Account.php:629 +#: src/Module/Settings/Account.php:615 msgid "Activate desktop notifications" msgstr "Активировать уведомления на рабочем столе" -#: src/Module/Settings/Account.php:629 +#: src/Module/Settings/Account.php:615 msgid "Show desktop popup on new notifications" msgstr "Показывать уведомления на рабочем столе" -#: src/Module/Settings/Account.php:633 +#: src/Module/Settings/Account.php:619 msgid "Text-only notification emails" msgstr "Только текстовые письма" -#: src/Module/Settings/Account.php:635 +#: src/Module/Settings/Account.php:621 msgid "Send text only notification emails, without the html part" msgstr "Отправлять только текстовые уведомления, без HTML" -#: src/Module/Settings/Account.php:639 +#: src/Module/Settings/Account.php:625 msgid "Show detailled notifications" msgstr "Показывать подробные уведомления" -#: src/Module/Settings/Account.php:641 +#: src/Module/Settings/Account.php:627 msgid "" "Per default, notifications are condensed to a single notification per item. " "When enabled every notification is displayed." msgstr "По-умолчанию уведомления группируются в одно для каждой записи. Эта настройка показывает все уведомления по отдельности." -#: src/Module/Settings/Account.php:645 +#: src/Module/Settings/Account.php:631 msgid "Show notifications of ignored contacts" msgstr "Показывать уведомления игнорируемых контактов" -#: src/Module/Settings/Account.php:647 +#: src/Module/Settings/Account.php:633 msgid "" "You don't see posts from ignored contacts. But you still see their comments." " This setting controls if you want to still receive regular notifications " "that are caused by ignored contacts or not." msgstr "Вы не видите записи от игнорируемых контактов, но вы видите их комментарии. Эта настройка определяет, хотите ли вы получать уведомления от действий игнорируемых контактов или нет." -#: src/Module/Settings/Account.php:650 +#: src/Module/Settings/Account.php:636 msgid "Advanced Account/Page Type Settings" msgstr "Расширенные настройки учётной записи" -#: src/Module/Settings/Account.php:651 +#: src/Module/Settings/Account.php:637 msgid "Change the behaviour of this account for special situations" msgstr "Измените поведение этого аккаунта в специальных ситуациях" -#: src/Module/Settings/Account.php:654 +#: src/Module/Settings/Account.php:640 msgid "Import Contacts" msgstr "Импорт контактов" -#: src/Module/Settings/Account.php:655 +#: src/Module/Settings/Account.php:641 msgid "" "Upload a CSV file that contains the handle of your followed accounts in the " "first column you exported from the old account." msgstr "Загрузите файл CSV, который содержит адреса ваших контактов в первой колонке. Вы можете экспортировать его из вашей старой учётной записи." -#: src/Module/Settings/Account.php:656 +#: src/Module/Settings/Account.php:642 msgid "Upload File" msgstr "Загрузить файл" -#: src/Module/Settings/Account.php:659 +#: src/Module/Settings/Account.php:645 msgid "Relocate" msgstr "Перемещение" -#: src/Module/Settings/Account.php:660 +#: src/Module/Settings/Account.php:646 msgid "" "If you have moved this profile from another server, and some of your " "contacts don't receive your updates, try pushing this button." msgstr "Если вы переместили эту анкету с другого сервера, и некоторые из ваших контактов не получили ваши обновления, попробуйте нажать эту кнопку." -#: src/Module/Settings/Account.php:661 +#: src/Module/Settings/Account.php:647 msgid "Resend relocate message to contacts" msgstr "Отправить перемещённые сообщения контактам" -#: src/Module/Settings/Addons.php:86 +#: src/Module/Settings/Addons.php:72 msgid "Addon Settings" msgstr "Настройки дополнений" -#: src/Module/Settings/Addons.php:87 +#: src/Module/Settings/Addons.php:73 msgid "No Addon settings configured" msgstr "Настройки дополнений не изменены" -#: src/Module/Settings/Channels.php:148 +#: src/Module/Settings/Channels.php:134 msgid "" "This page can be used to define the channels that will automatically be " "reshared by your account." msgstr "На этой странице можно определить каналы, которые будут автоматически публиковаться этой учётной записью." -#: src/Module/Settings/Channels.php:153 +#: src/Module/Settings/Channels.php:139 msgid "This page can be used to define your own channels." msgstr "На этой странице вы можете определить свои собственные каналы" -#: src/Module/Settings/Channels.php:182 +#: src/Module/Settings/Channels.php:168 msgid "Publish" msgstr "Публиковать" -#: src/Module/Settings/Channels.php:182 +#: src/Module/Settings/Channels.php:168 msgid "" "When selected, the channel results are reshared. This only works for public " "ActivityPub posts from the public timeline or the user defined circles." msgstr "Если включено, содержимое канала будет публиковаться. Это будет работать только для публичных записей, поступивших по ActivityPub из публичной ленты или кругов пользователя." -#: src/Module/Settings/Channels.php:190 src/Module/Settings/Channels.php:211 -#: src/Module/Settings/Display.php:338 +#: src/Module/Settings/Channels.php:176 src/Module/Settings/Channels.php:197 +#: src/Module/Settings/Display.php:324 msgid "Label" msgstr "Название" -#: src/Module/Settings/Channels.php:191 src/Module/Settings/Channels.php:212 -#: src/Module/Settings/Display.php:339 -#: src/Module/Settings/TwoFactor/AppSpecific.php:137 +#: src/Module/Settings/Channels.php:177 src/Module/Settings/Channels.php:198 +#: src/Module/Settings/Display.php:325 +#: src/Module/Settings/TwoFactor/AppSpecific.php:123 msgid "Description" msgstr "Описание" -#: src/Module/Settings/Channels.php:192 src/Module/Settings/Channels.php:213 +#: src/Module/Settings/Channels.php:178 src/Module/Settings/Channels.php:199 msgid "Access Key" msgstr "Горячая клавиша" -#: src/Module/Settings/Channels.php:193 src/Module/Settings/Channels.php:214 +#: src/Module/Settings/Channels.php:179 src/Module/Settings/Channels.php:200 msgid "Circle/Channel" msgstr "Круг/Канал" -#: src/Module/Settings/Channels.php:194 src/Module/Settings/Channels.php:215 +#: src/Module/Settings/Channels.php:180 src/Module/Settings/Channels.php:201 msgid "Include Tags" msgstr "Включить теги" -#: src/Module/Settings/Channels.php:195 src/Module/Settings/Channels.php:216 +#: src/Module/Settings/Channels.php:181 src/Module/Settings/Channels.php:202 msgid "Exclude Tags" msgstr "Исключить теги" -#: src/Module/Settings/Channels.php:196 src/Module/Settings/Channels.php:217 +#: src/Module/Settings/Channels.php:182 src/Module/Settings/Channels.php:203 msgid "Minimum Size" msgstr "Минимальный размер" -#: src/Module/Settings/Channels.php:197 src/Module/Settings/Channels.php:218 +#: src/Module/Settings/Channels.php:183 src/Module/Settings/Channels.php:204 msgid "Maximum Size" msgstr "Максимальный размер" -#: src/Module/Settings/Channels.php:198 src/Module/Settings/Channels.php:219 +#: src/Module/Settings/Channels.php:184 src/Module/Settings/Channels.php:205 msgid "Full Text Search" msgstr "Полнотекстовый поиск" -#: src/Module/Settings/Channels.php:202 src/Module/Settings/Channels.php:223 +#: src/Module/Settings/Channels.php:188 src/Module/Settings/Channels.php:209 msgid "Select all languages that you want to see in this channel." msgstr "Выберите все языки, которые вы хотите видеть в этом канале." -#: src/Module/Settings/Channels.php:204 +#: src/Module/Settings/Channels.php:190 msgid "Delete channel" msgstr "Удалить канал" -#: src/Module/Settings/Channels.php:204 +#: src/Module/Settings/Channels.php:190 msgid "Check to delete this entry from the channel list" msgstr "Отметьте, чтобы удалить этот канал из списка" -#: src/Module/Settings/Channels.php:211 +#: src/Module/Settings/Channels.php:197 msgid "Short name for the channel. It is displayed on the channels widget." msgstr "Короткое название для канала, будет отображаться в их списке." -#: src/Module/Settings/Channels.php:212 +#: src/Module/Settings/Channels.php:198 msgid "This should describe the content of the channel in a few word." msgstr "Описание содержимого канала в нескольких словах." -#: src/Module/Settings/Channels.php:213 +#: src/Module/Settings/Channels.php:199 msgid "" "When you want to access this channel via an access key, you can define it " "here. Pay attention to not use an already used one." msgstr "Если вы хотите сделать доступ к каналу по горячей клавише, определите её здесь. Будьте внимательны и не берите уже используемую где-то клавишу." -#: src/Module/Settings/Channels.php:214 +#: src/Module/Settings/Channels.php:200 msgid "Select a circle or channel, that your channel should be based on." msgstr "Выберите круг или канал, на основе которого будет создан этот." -#: src/Module/Settings/Channels.php:215 +#: src/Module/Settings/Channels.php:201 msgid "" "Comma separated list of tags. A post will be used when it contains any of " "the listed tags." msgstr "Список тегов через запятую. Запись попадёт в канал, если в ней есть любой из них." -#: src/Module/Settings/Channels.php:216 +#: src/Module/Settings/Channels.php:202 msgid "" "Comma separated list of tags. If a post contain any of these tags, then it " "will not be part of nthis channel." msgstr "Список тегов через запятую. Запись не попадёт в канал, если в ней есть любой из них." -#: src/Module/Settings/Channels.php:217 +#: src/Module/Settings/Channels.php:203 msgid "" "Minimum post size. Leave empty for no minimum size. The size is calculated " "without links, attached posts, mentions or hashtags." msgstr "Минимальный размер записи. Оставьте пустым для отключения. Размер считается без учёта ссылок, приложенных записей, отметок и тегов." -#: src/Module/Settings/Channels.php:218 +#: src/Module/Settings/Channels.php:204 msgid "" "Maximum post size. Leave empty for no maximum size. The size is calculated " "without links, attached posts, mentions or hashtags." msgstr "Максимальный размер записи. Оставьте пустым для отключения. Размер считается без учёта ссылок, приложенных записей, отметок и тегов." -#: src/Module/Settings/Channels.php:219 +#: src/Module/Settings/Channels.php:205 #, php-format msgid "" "Search terms for the body, supports the \"boolean mode\" operators from " @@ -10474,600 +10455,589 @@ msgid "" "keywords: %s" msgstr "Поисковый запрос для записей, можно использовать операторы \"boolean mode\" для MariaDB. Справка по операторам и ключевым словам: %s" -#: src/Module/Settings/Channels.php:220 +#: src/Module/Settings/Channels.php:206 msgid "Check to display images in the channel." msgstr "Отметьте для включения записей с картинками." -#: src/Module/Settings/Channels.php:221 +#: src/Module/Settings/Channels.php:207 msgid "Check to display videos in the channel." msgstr "Отметьте для включения записей с видео." -#: src/Module/Settings/Channels.php:222 +#: src/Module/Settings/Channels.php:208 msgid "Check to display audio in the channel." msgstr "Отметьте для включения записей со аудио." -#: src/Module/Settings/Channels.php:227 +#: src/Module/Settings/Channels.php:213 msgid "Add new entry to the channel list" msgstr "Добавить в список каналов" -#: src/Module/Settings/Channels.php:228 +#: src/Module/Settings/Channels.php:214 msgid "Add" msgstr "Добавить" -#: src/Module/Settings/Channels.php:230 +#: src/Module/Settings/Channels.php:216 msgid "Current Entries in the channel list" msgstr "Текущий список каналов" -#: src/Module/Settings/Channels.php:233 +#: src/Module/Settings/Channels.php:219 msgid "Delete entry from the channel list" msgstr "Удалить из списка каналов" -#: src/Module/Settings/Channels.php:234 +#: src/Module/Settings/Channels.php:220 msgid "Delete entry from the channel list?" msgstr "Удалить запись из списка каналов?" -#: src/Module/Settings/Connectors.php:122 +#: src/Module/Settings/Connectors.php:108 msgid "Failed to connect with email account using the settings provided." msgstr "Не удалось подключиться к аккаунту e-mail, используя указанные настройки." -#: src/Module/Settings/Connectors.php:169 -#: src/Module/Settings/Connectors.php:170 +#: src/Module/Settings/Connectors.php:155 +#: src/Module/Settings/Connectors.php:156 msgid "Diaspora (Socialhome, Hubzilla)" msgstr "Diaspora (Socialhome, Hubzilla)" -#: src/Module/Settings/Connectors.php:169 -#: src/Module/Settings/Connectors.php:173 +#: src/Module/Settings/Connectors.php:155 #, php-format msgid "Built-in support for %s connectivity is enabled" msgstr "Встроенная поддержка для %s включена" -#: src/Module/Settings/Connectors.php:170 -#: src/Module/Settings/Connectors.php:172 +#: src/Module/Settings/Connectors.php:156 #, php-format msgid "Built-in support for %s connectivity is disabled" msgstr "Встроенная поддержка для %s отключена" -#: src/Module/Settings/Connectors.php:172 -#: src/Module/Settings/Connectors.php:173 -msgid "OStatus (GNU Social)" -msgstr "OStatus (GNU Social)" - -#: src/Module/Settings/Connectors.php:185 +#: src/Module/Settings/Connectors.php:167 msgid "Email access is disabled on this site." msgstr "Доступ эл. почты отключен на этом сайте." -#: src/Module/Settings/Connectors.php:200 -#: src/Module/Settings/Connectors.php:254 +#: src/Module/Settings/Connectors.php:182 +#: src/Module/Settings/Connectors.php:233 msgid "None" msgstr "Ничего" -#: src/Module/Settings/Connectors.php:204 +#: src/Module/Settings/Connectors.php:186 msgid "Default (Mastodon will display the title and a link to the post)" msgstr "По-умолчанию (Mastodon будет показывать запись как заголовок и ссылку на статью)" -#: src/Module/Settings/Connectors.php:205 +#: src/Module/Settings/Connectors.php:187 msgid "" "Use the summary (Mastodon and some others will treat it as content warning)" msgstr "Показывать выдержку (Mastodon и некоторые другие платформы покажут это как предупреждение о контенте)" -#: src/Module/Settings/Connectors.php:206 +#: src/Module/Settings/Connectors.php:188 msgid "Embed the title in the body" msgstr "Добавлять заголовок в текст записи" -#: src/Module/Settings/Connectors.php:218 +#: src/Module/Settings/Connectors.php:199 msgid "General Social Media Settings" msgstr "Общие настройки социальных медиа" -#: src/Module/Settings/Connectors.php:221 +#: src/Module/Settings/Connectors.php:202 msgid "Followed content scope" msgstr "Какие записи показывать в ленте" -#: src/Module/Settings/Connectors.php:223 +#: src/Module/Settings/Connectors.php:204 msgid "" "By default, conversations in which your follows participated but didn't " "start will be shown in your timeline. You can turn this behavior off, or " "expand it to the conversations in which your follows liked a post." msgstr "По-умолчанию в вашу ленту попадают и записи, которые ваши контакты не создали сами, а лишь прокомментировали. Вы можете отключить это, либо наоборот расширить до загрузки записей, которым ваши контакты поставили отметку \"нравится\"." -#: src/Module/Settings/Connectors.php:225 +#: src/Module/Settings/Connectors.php:206 msgid "Only conversations my follows started" msgstr "Только записи, созданные моими контактами" -#: src/Module/Settings/Connectors.php:226 +#: src/Module/Settings/Connectors.php:207 msgid "Conversations my follows started or commented on (default)" msgstr "Записи, которые мои контакты создали или прокомментировали (по-умолчанию)" -#: src/Module/Settings/Connectors.php:227 +#: src/Module/Settings/Connectors.php:208 msgid "Any conversation my follows interacted with, including likes" msgstr "Любые записи, с которыми мои контакты взаимодействовали, включая лайки" -#: src/Module/Settings/Connectors.php:230 +#: src/Module/Settings/Connectors.php:211 msgid "Collapse sensitive posts" msgstr "Сворачивать чувствительные записи" -#: src/Module/Settings/Connectors.php:230 +#: src/Module/Settings/Connectors.php:211 msgid "" "If a post is marked as \"sensitive\", it will be displayed in a collapsed " "state, if this option is enabled." msgstr "Если это включено и запись помечена как \"чувствительная\", она будет отображаться в свёрнутом виде." -#: src/Module/Settings/Connectors.php:231 +#: src/Module/Settings/Connectors.php:212 msgid "Enable intelligent shortening" msgstr "Включить умное сокращение" -#: src/Module/Settings/Connectors.php:231 +#: src/Module/Settings/Connectors.php:212 msgid "" "Normally the system tries to find the best link to add to shortened posts. " "If disabled, every shortened post will always point to the original " "friendica post." msgstr "Обычно система пытается найти лучшую ссылку для добавления к сокращенной записи. Если эта настройка включена, то каждая сокращенная запись будет указывать на оригинальную запись в Friendica." -#: src/Module/Settings/Connectors.php:232 +#: src/Module/Settings/Connectors.php:213 msgid "Enable simple text shortening" msgstr "Включить простое сокращение текста" -#: src/Module/Settings/Connectors.php:232 +#: src/Module/Settings/Connectors.php:213 msgid "" "Normally the system shortens posts at the next line feed. If this option is " "enabled then the system will shorten the text at the maximum character " "limit." msgstr "Обычно система обрезает записи на следующей строке. Если эта настройка включена, система будет сокращать записи по достижении лимита символов." -#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Connectors.php:214 msgid "Attach the link title" msgstr "Присоединять заголовок ссылок" -#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Connectors.php:214 msgid "" "When activated, the title of the attached link will be added as a title on " "posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that" " share feed content." msgstr "Если включено. заголовок добавленной ссылки будет добавлен к записи в Диаспоре как заголовок. Это в основном нужно для контактов \"мой двойник\", которые публикуют содержимое ленты." -#: src/Module/Settings/Connectors.php:234 +#: src/Module/Settings/Connectors.php:215 msgid "API: Use spoiler field as title" msgstr "API: Использовать спойлер как заголовок" -#: src/Module/Settings/Connectors.php:234 +#: src/Module/Settings/Connectors.php:215 msgid "" "When activated, the \"spoiler_text\" field in the API will be used for the " "title on standalone posts. When deactivated it will be used for spoiler " "text. For comments it will always be used for spoiler text." msgstr "Если включено, поле \"spoiler_text\" в API будет использоваться как заголовок для отдельных записей. Если отключено, то оно будет использоваться как спойлер. Для комментариев оно всегда используется как спойлер." -#: src/Module/Settings/Connectors.php:235 +#: src/Module/Settings/Connectors.php:216 msgid "API: Automatically links at the end of the post as attached posts" msgstr "API: Автоматически загружать ссылки в конце записей" -#: src/Module/Settings/Connectors.php:235 +#: src/Module/Settings/Connectors.php:216 msgid "" "When activated, added links at the end of the post react the same way as " "added links in the web interface." msgstr "Если включено, ссылки в конце записей будут обрабатываться так же, как ссылки, добавленные через веб-интерфейс." -#: src/Module/Settings/Connectors.php:236 +#: src/Module/Settings/Connectors.php:217 msgid "Article Mode" msgstr "Режим статей" -#: src/Module/Settings/Connectors.php:236 +#: src/Module/Settings/Connectors.php:217 msgid "" "Controls how posts with titles are transmitted. Mastodon and its forks don't" " display the content of these posts if the post is created in the correct " "(default) way." msgstr "Как будут передаваться записи, у которых указан заголовок. Mastodon и похожие платформы не показывают содержимое таких записей, если они созданы в обычном формате (по-умолчанию), оставляя лишь ссылку на них." -#: src/Module/Settings/Connectors.php:237 +#: src/Module/Settings/Connectors.php:218 msgid "Your legacy ActivityPub/GNU Social account" msgstr "Ваша старая учётная запись ActivityPub/GNU Social" -#: src/Module/Settings/Connectors.php:237 +#: src/Module/Settings/Connectors.php:218 msgid "" "If you enter your old account name from an ActivityPub based system or your " "GNU Social/Statusnet account name here (in the format user@domain.tld), your" " contacts will be added automatically. The field will be emptied when done." msgstr "Если вы введете тут вашу старую учетную запись от платформы совместимой с ActivityPub или GNU Social/Statusnet (в виде пользователь@домен), ваши контакты оттуда будут автоматически добавлены. Поле будет очищено когда все контакты будут добавлены." -#: src/Module/Settings/Connectors.php:239 -msgid "Repair OStatus subscriptions" -msgstr "Починить подписки OStatus" - -#: src/Module/Settings/Connectors.php:243 +#: src/Module/Settings/Connectors.php:222 msgid "Email/Mailbox Setup" msgstr "Настройка эл. почты / почтового ящика" -#: src/Module/Settings/Connectors.php:244 +#: src/Module/Settings/Connectors.php:223 msgid "" "If you wish to communicate with email contacts using this service " "(optional), please specify how to connect to your mailbox." msgstr "Если вы хотите общаться с Email контактами, используя этот сервис (по желанию), пожалуйста, уточните, как подключиться к вашему почтовому ящику." -#: src/Module/Settings/Connectors.php:245 +#: src/Module/Settings/Connectors.php:224 msgid "Last successful email check:" msgstr "Последняя успешная проверка электронной почты:" -#: src/Module/Settings/Connectors.php:247 +#: src/Module/Settings/Connectors.php:226 msgid "IMAP server name:" msgstr "Имя IMAP сервера:" -#: src/Module/Settings/Connectors.php:248 +#: src/Module/Settings/Connectors.php:227 msgid "IMAP port:" msgstr "Порт IMAP:" -#: src/Module/Settings/Connectors.php:249 +#: src/Module/Settings/Connectors.php:228 msgid "Security:" msgstr "Безопасность:" -#: src/Module/Settings/Connectors.php:250 +#: src/Module/Settings/Connectors.php:229 msgid "Email login name:" msgstr "Логин эл. почты:" -#: src/Module/Settings/Connectors.php:251 +#: src/Module/Settings/Connectors.php:230 msgid "Email password:" msgstr "Пароль эл. почты:" -#: src/Module/Settings/Connectors.php:252 +#: src/Module/Settings/Connectors.php:231 msgid "Reply-to address:" msgstr "Адрес для ответа:" -#: src/Module/Settings/Connectors.php:253 +#: src/Module/Settings/Connectors.php:232 msgid "Send public posts to all email contacts:" msgstr "Отправлять открытые сообщения на все контакты электронной почты:" -#: src/Module/Settings/Connectors.php:254 +#: src/Module/Settings/Connectors.php:233 msgid "Action after import:" msgstr "Действие после импорта:" -#: src/Module/Settings/Connectors.php:254 +#: src/Module/Settings/Connectors.php:233 msgid "Move to folder" msgstr "Переместить в папку" -#: src/Module/Settings/Connectors.php:255 +#: src/Module/Settings/Connectors.php:234 msgid "Move to folder:" msgstr "Переместить в папку:" -#: src/Module/Settings/Delegation.php:73 +#: src/Module/Settings/Delegation.php:59 msgid "Delegation successfully granted." msgstr "Делегирование успешно предоставлено." -#: src/Module/Settings/Delegation.php:75 +#: src/Module/Settings/Delegation.php:61 msgid "Parent user not found, unavailable or password doesn't match." msgstr "Родительский пользователь не найден, недоступен или пароль не совпадает." -#: src/Module/Settings/Delegation.php:79 +#: src/Module/Settings/Delegation.php:65 msgid "Delegation successfully revoked." msgstr "Делегирование успешно отменено." -#: src/Module/Settings/Delegation.php:98 -#: src/Module/Settings/Delegation.php:120 +#: src/Module/Settings/Delegation.php:84 +#: src/Module/Settings/Delegation.php:106 msgid "" "Delegated administrators can view but not change delegation permissions." msgstr "Администраторы-делегаты могут видеть, но не менять разрешения делегирования." -#: src/Module/Settings/Delegation.php:112 +#: src/Module/Settings/Delegation.php:98 msgid "Delegate user not found." msgstr "Пользователь-делегат не найден." -#: src/Module/Settings/Delegation.php:169 +#: src/Module/Settings/Delegation.php:155 msgid "No parent user" msgstr "Нет родительского пользователя" -#: src/Module/Settings/Delegation.php:180 -#: src/Module/Settings/Delegation.php:191 +#: src/Module/Settings/Delegation.php:166 +#: src/Module/Settings/Delegation.php:177 msgid "Parent User" msgstr "Родительский пользователь" -#: src/Module/Settings/Delegation.php:188 +#: src/Module/Settings/Delegation.php:174 msgid "Additional Accounts" msgstr "Дополнительные учётные записи" -#: src/Module/Settings/Delegation.php:189 +#: src/Module/Settings/Delegation.php:175 msgid "" "Register additional accounts that are automatically connected to your " "existing account so you can manage them from this account." msgstr "Регистрируйте дополнительные учётные записи, которые будут автоматически соединены с вашей основной учётной записью и вы сможете ими из неё управлять." -#: src/Module/Settings/Delegation.php:190 +#: src/Module/Settings/Delegation.php:176 msgid "Register an additional account" msgstr "Зарегистрируйте дополнительную учётную запись" -#: src/Module/Settings/Delegation.php:192 +#: src/Module/Settings/Delegation.php:178 msgid "" "Parent users have total control about this account, including the account " "settings. Please double check whom you give this access." msgstr "Родительские пользователи имеют полное управление этим профилем, включая все его настройки. Будьте очень осторожны с предоставлением этого доступа." -#: src/Module/Settings/Delegation.php:195 +#: src/Module/Settings/Delegation.php:181 msgid "Delegates" msgstr "Делегаты" -#: src/Module/Settings/Delegation.php:196 +#: src/Module/Settings/Delegation.php:182 msgid "" "Delegates are able to manage all aspects of this account/page except for " "basic account settings. Please do not delegate your personal account to " "anybody that you do not trust completely." msgstr "Доверенные лица могут управлять всеми аспектами этого аккаунта/страницы, за исключением основных настроек аккаунта. Пожалуйста, не предоставляйте доступ в личный кабинет тому, кому вы не полностью доверяете." -#: src/Module/Settings/Delegation.php:197 +#: src/Module/Settings/Delegation.php:183 msgid "Existing Page Delegates" msgstr "Существующие уполномоченные страницы" -#: src/Module/Settings/Delegation.php:198 +#: src/Module/Settings/Delegation.php:184 msgid "Potential Delegates" msgstr "Возможные доверенные лица" -#: src/Module/Settings/Delegation.php:199 +#: src/Module/Settings/Delegation.php:185 msgid "No entries." msgstr "Нет записей." -#: src/Module/Settings/Display.php:183 +#: src/Module/Settings/Display.php:169 msgid "The theme you chose isn't available." msgstr "Выбранная вами тема недоступна." -#: src/Module/Settings/Display.php:223 +#: src/Module/Settings/Display.php:209 #, php-format msgid "%s - (Unsupported)" msgstr "%s - (Не поддерживается)" -#: src/Module/Settings/Display.php:260 +#: src/Module/Settings/Display.php:246 msgid "No preview" msgstr "Нет предпросмотра" -#: src/Module/Settings/Display.php:261 +#: src/Module/Settings/Display.php:247 msgid "No image" msgstr "Без изображения" -#: src/Module/Settings/Display.php:262 +#: src/Module/Settings/Display.php:248 msgid "Small Image" msgstr "Маленькое изображение" -#: src/Module/Settings/Display.php:263 +#: src/Module/Settings/Display.php:249 msgid "Large Image" msgstr "Большое изображение" -#: src/Module/Settings/Display.php:308 +#: src/Module/Settings/Display.php:294 msgid "Display Settings" msgstr "Внешний вид" -#: src/Module/Settings/Display.php:310 +#: src/Module/Settings/Display.php:296 msgid "General Theme Settings" msgstr "Общие настройки тем" -#: src/Module/Settings/Display.php:311 +#: src/Module/Settings/Display.php:297 msgid "Custom Theme Settings" msgstr "Личные настройки тем" -#: src/Module/Settings/Display.php:312 +#: src/Module/Settings/Display.php:298 msgid "Content Settings" msgstr "Настройки контента" -#: src/Module/Settings/Display.php:313 view/theme/duepuntozero/config.php:86 -#: view/theme/frio/config.php:151 view/theme/quattro/config.php:88 -#: view/theme/vier/config.php:136 +#: src/Module/Settings/Display.php:299 view/theme/duepuntozero/config.php:74 +#: view/theme/frio/config.php:139 view/theme/quattro/config.php:76 +#: view/theme/vier/config.php:124 msgid "Theme settings" msgstr "Настройки темы" -#: src/Module/Settings/Display.php:314 +#: src/Module/Settings/Display.php:300 msgid "Timelines" msgstr "Ленты" -#: src/Module/Settings/Display.php:321 +#: src/Module/Settings/Display.php:307 msgid "Display Theme:" msgstr "Показать тему:" -#: src/Module/Settings/Display.php:322 +#: src/Module/Settings/Display.php:308 msgid "Mobile Theme:" msgstr "Мобильная тема:" -#: src/Module/Settings/Display.php:325 +#: src/Module/Settings/Display.php:311 msgid "Number of items to display per page:" msgstr "Количество элементов, отображаемых на одной странице:" -#: src/Module/Settings/Display.php:325 src/Module/Settings/Display.php:326 +#: src/Module/Settings/Display.php:311 src/Module/Settings/Display.php:312 msgid "Maximum of 100 items" msgstr "Максимум 100 элементов" -#: src/Module/Settings/Display.php:326 +#: src/Module/Settings/Display.php:312 msgid "Number of items to display per page when viewed from mobile device:" msgstr "Количество элементов на странице, когда просмотр осуществляется с мобильных устройств:" -#: src/Module/Settings/Display.php:327 +#: src/Module/Settings/Display.php:313 msgid "Update browser every xx seconds" msgstr "Обновление браузера каждые хх секунд" -#: src/Module/Settings/Display.php:327 +#: src/Module/Settings/Display.php:313 msgid "Minimum of 10 seconds. Enter -1 to disable it." msgstr "Минимум 10 секунд. Введите -1 для отключения." -#: src/Module/Settings/Display.php:328 +#: src/Module/Settings/Display.php:314 msgid "Display emoticons" msgstr "Показывать смайлики" -#: src/Module/Settings/Display.php:328 +#: src/Module/Settings/Display.php:314 msgid "When enabled, emoticons are replaced with matching symbols." msgstr "Когда включено, соответствующие символы отображаются как смайлики." -#: src/Module/Settings/Display.php:329 +#: src/Module/Settings/Display.php:315 msgid "Infinite scroll" msgstr "Бесконечная прокрутка" -#: src/Module/Settings/Display.php:329 +#: src/Module/Settings/Display.php:315 msgid "Automatic fetch new items when reaching the page end." msgstr "Автоматически подгружать новые записи, когда вы оказываетесь в конце страницы." -#: src/Module/Settings/Display.php:330 +#: src/Module/Settings/Display.php:316 msgid "Enable Smart Threading" msgstr "Включить умное ветвление обсуждений" -#: src/Module/Settings/Display.php:330 +#: src/Module/Settings/Display.php:316 msgid "Enable the automatic suppression of extraneous thread indentation." msgstr "Включить автоматическое удаление излишних отступов в ветках обсуждений." -#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/Display.php:317 msgid "Display the Dislike feature" msgstr "Показывать \"Не нравится\"" -#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/Display.php:317 msgid "" "Display the Dislike button and dislike reactions on posts and comments." msgstr "Показывать кнопку \"Не нравится\" и соответствующие реакции на записях и комментариях." -#: src/Module/Settings/Display.php:332 +#: src/Module/Settings/Display.php:318 msgid "Display the resharer" msgstr "Показывать поделившегося" -#: src/Module/Settings/Display.php:332 +#: src/Module/Settings/Display.php:318 msgid "Display the first resharer as icon and text on a reshared item." msgstr "Показывать первого из поделившихся записью в виде значка над этой записью." -#: src/Module/Settings/Display.php:333 +#: src/Module/Settings/Display.php:319 msgid "Stay local" msgstr "Оставаться локально" -#: src/Module/Settings/Display.php:333 +#: src/Module/Settings/Display.php:319 msgid "Don't go to a remote system when following a contact link." msgstr "Не переходить на другие серверы по ссылкам профилей." -#: src/Module/Settings/Display.php:334 +#: src/Module/Settings/Display.php:320 msgid "Show the post deletion checkbox" msgstr "Показывать отметку для удаления записи" -#: src/Module/Settings/Display.php:334 +#: src/Module/Settings/Display.php:320 msgid "Display the checkbox for the post deletion on the network page." msgstr "Показывать галочку отметки записей для удаления на странице ленты" -#: src/Module/Settings/Display.php:335 +#: src/Module/Settings/Display.php:321 msgid "DIsplay the event list" msgstr "Показывать события" -#: src/Module/Settings/Display.php:335 +#: src/Module/Settings/Display.php:321 msgid "Display the birthday reminder and event list on the network page." msgstr "Показывать напоминания о днях рождения и список событий на странице ленты." -#: src/Module/Settings/Display.php:336 +#: src/Module/Settings/Display.php:322 msgid "Link preview mode" msgstr "Предпросмотр ссылок" -#: src/Module/Settings/Display.php:336 +#: src/Module/Settings/Display.php:322 msgid "Appearance of the link preview that is added to each post with a link." msgstr "Внешний вид предпросмотра ссылок, который появляется в записях со ссылками." -#: src/Module/Settings/Display.php:341 +#: src/Module/Settings/Display.php:327 msgid "Bookmark" msgstr "Главное меню" -#: src/Module/Settings/Display.php:343 +#: src/Module/Settings/Display.php:329 msgid "" "Enable timelines that you want to see in the channels widget. Bookmark " "timelines that you want to see in the top menu." msgstr "Включите ленты, которые вы хотите видеть в меню каналов слева, выберите ленты, которые будут отображаться в главном меню сверху." -#: src/Module/Settings/Display.php:345 +#: src/Module/Settings/Display.php:331 msgid "Channel languages:" msgstr "Языки каналов:" -#: src/Module/Settings/Display.php:345 +#: src/Module/Settings/Display.php:331 msgid "Select all languages that you want to see in your channels." msgstr "Выберите все языки, которые вы хотите видеть в своих каналах." -#: src/Module/Settings/Display.php:347 +#: src/Module/Settings/Display.php:333 msgid "Beginning of week:" msgstr "Начало недели:" -#: src/Module/Settings/Display.php:348 +#: src/Module/Settings/Display.php:334 msgid "Default calendar view:" msgstr "Вид календаря по-умолчанию:" -#: src/Module/Settings/Features.php:73 +#: src/Module/Settings/Features.php:59 msgid "Additional Features" msgstr "Дополнительные возможности" -#: src/Module/Settings/OAuth.php:71 +#: src/Module/Settings/OAuth.php:57 msgid "Connected Apps" msgstr "Подключенные приложения" -#: src/Module/Settings/OAuth.php:75 +#: src/Module/Settings/OAuth.php:61 msgid "Remove authorization" msgstr "Удалить авторизацию" -#: src/Module/Settings/Profile/Index.php:116 +#: src/Module/Settings/Profile/Index.php:102 msgid "Display Name is required." msgstr "Необходимо указать имя" -#: src/Module/Settings/Profile/Index.php:170 +#: src/Module/Settings/Profile/Index.php:156 msgid "Profile couldn't be updated." msgstr "Профиль не получилось обновить." -#: src/Module/Settings/Profile/Index.php:210 -#: src/Module/Settings/Profile/Index.php:231 +#: src/Module/Settings/Profile/Index.php:196 +#: src/Module/Settings/Profile/Index.php:217 msgid "Label:" msgstr "Поле:" -#: src/Module/Settings/Profile/Index.php:211 -#: src/Module/Settings/Profile/Index.php:232 +#: src/Module/Settings/Profile/Index.php:197 +#: src/Module/Settings/Profile/Index.php:218 msgid "Value:" msgstr "Значение:" -#: src/Module/Settings/Profile/Index.php:222 -#: src/Module/Settings/Profile/Index.php:243 +#: src/Module/Settings/Profile/Index.php:208 +#: src/Module/Settings/Profile/Index.php:229 msgid "Field Permissions" msgstr "Право просмотра поля" -#: src/Module/Settings/Profile/Index.php:223 -#: src/Module/Settings/Profile/Index.php:244 +#: src/Module/Settings/Profile/Index.php:209 +#: src/Module/Settings/Profile/Index.php:230 msgid "(click to open/close)" msgstr "(нажмите, чтобы открыть / закрыть)" -#: src/Module/Settings/Profile/Index.php:229 +#: src/Module/Settings/Profile/Index.php:215 msgid "Add a new profile field" msgstr "Добавить новое поле профиля" -#: src/Module/Settings/Profile/Index.php:252 +#: src/Module/Settings/Profile/Index.php:238 msgid "" "The homepage is verified. A rel=\"me\" link back to your Friendica profile " "page was found on the homepage." msgstr "Домашняя страница подтверждена. Ссылка с атрибутом rel=\"me\", указывающая на ваш профиль Friendica, была найдена на странице." -#: src/Module/Settings/Profile/Index.php:254 +#: src/Module/Settings/Profile/Index.php:240 #, php-format msgid "" "To verify your homepage, add a rel=\"me\" link to it, pointing to your " "profile URL (%s)." msgstr "Для верификации вашей домашней страницы добавьте на неё ссылку с атрибутом rel=\"me\" указывающую на ваш профиль (%s)." -#: src/Module/Settings/Profile/Index.php:260 +#: src/Module/Settings/Profile/Index.php:246 msgid "Profile Actions" msgstr "Действия профиля" -#: src/Module/Settings/Profile/Index.php:261 +#: src/Module/Settings/Profile/Index.php:247 msgid "Edit Profile Details" msgstr "Редактировать детали профиля" -#: src/Module/Settings/Profile/Index.php:263 +#: src/Module/Settings/Profile/Index.php:249 msgid "Change Profile Photo" msgstr "Изменить фото профиля" -#: src/Module/Settings/Profile/Index.php:266 +#: src/Module/Settings/Profile/Index.php:252 msgid "Profile picture" msgstr "Картинка профиля" -#: src/Module/Settings/Profile/Index.php:267 +#: src/Module/Settings/Profile/Index.php:253 msgid "Location" msgstr "Местонахождение" -#: src/Module/Settings/Profile/Index.php:268 src/Util/Temporal.php:97 -#: src/Util/Temporal.php:99 +#: src/Module/Settings/Profile/Index.php:254 src/Util/Temporal.php:83 +#: src/Util/Temporal.php:85 msgid "Miscellaneous" msgstr "Разное" -#: src/Module/Settings/Profile/Index.php:269 +#: src/Module/Settings/Profile/Index.php:255 msgid "Custom Profile Fields" msgstr "Произвольные поля профиля" -#: src/Module/Settings/Profile/Index.php:270 src/Module/Welcome.php:58 +#: src/Module/Settings/Profile/Index.php:256 src/Module/Welcome.php:44 msgid "Upload Profile Photo" msgstr "Загрузить фото профиля" -#: src/Module/Settings/Profile/Index.php:271 +#: src/Module/Settings/Profile/Index.php:257 #, php-format msgid "" "Custom fields appear on your profile page.
\n" @@ -11077,396 +11047,396 @@ msgid "" "\t\t\t\tNon-public fields can only be seen by the selected Friendica contacts or the Friendica contacts in the selected circles.
" msgstr "Произвольные поля видны на вашей странице профиля.
\n\t\t\t\tВы можете использовать BBCode в значениях полей.
\n\t\t\t\tМеняйте порядок перетаскиванием.
\n\t\t\t\tСотрите название для удаления поля.
\n\t\t\t\tЗакрытые поля будут видны только выбранным контактам из Friendica, либо контактам из выбранных кругов.
" -#: src/Module/Settings/Profile/Index.php:291 +#: src/Module/Settings/Profile/Index.php:277 msgid "Street Address:" msgstr "Адрес:" -#: src/Module/Settings/Profile/Index.php:292 +#: src/Module/Settings/Profile/Index.php:278 msgid "Locality/City:" msgstr "Город / Населенный пункт:" -#: src/Module/Settings/Profile/Index.php:293 +#: src/Module/Settings/Profile/Index.php:279 msgid "Region/State:" msgstr "Район / Область:" -#: src/Module/Settings/Profile/Index.php:294 +#: src/Module/Settings/Profile/Index.php:280 msgid "Postal/Zip Code:" msgstr "Почтовый индекс:" -#: src/Module/Settings/Profile/Index.php:295 +#: src/Module/Settings/Profile/Index.php:281 msgid "Country:" msgstr "Страна:" -#: src/Module/Settings/Profile/Index.php:297 +#: src/Module/Settings/Profile/Index.php:283 msgid "XMPP (Jabber) address:" msgstr "Адрес XMPP (Jabber):" -#: src/Module/Settings/Profile/Index.php:297 +#: src/Module/Settings/Profile/Index.php:283 msgid "" "The XMPP address will be published so that people can follow you there." msgstr "Этот адрес XMPP будет виден в профиле, чтобы другие люди могли вас там найти." -#: src/Module/Settings/Profile/Index.php:298 +#: src/Module/Settings/Profile/Index.php:284 msgid "Matrix (Element) address:" msgstr "Адрес Matrix (Element):" -#: src/Module/Settings/Profile/Index.php:298 +#: src/Module/Settings/Profile/Index.php:284 msgid "" "The Matrix address will be published so that people can follow you there." msgstr "Этот адрес Matrix будет виден в профиле, чтобы другие люди могли вас там найти." -#: src/Module/Settings/Profile/Index.php:299 +#: src/Module/Settings/Profile/Index.php:285 msgid "Homepage URL:" msgstr "Адрес домашней странички:" -#: src/Module/Settings/Profile/Index.php:300 +#: src/Module/Settings/Profile/Index.php:286 msgid "Public Keywords:" msgstr "Общественные ключевые слова:" -#: src/Module/Settings/Profile/Index.php:300 +#: src/Module/Settings/Profile/Index.php:286 msgid "(Used for suggesting potential friends, can be seen by others)" msgstr "(Используется для предложения потенциальным друзьям, могут увидеть другие)" -#: src/Module/Settings/Profile/Index.php:301 +#: src/Module/Settings/Profile/Index.php:287 msgid "Private Keywords:" msgstr "Личные ключевые слова:" -#: src/Module/Settings/Profile/Index.php:301 +#: src/Module/Settings/Profile/Index.php:287 msgid "(Used for searching profiles, never shown to others)" msgstr "(Используется для поиска профилей, никогда не показывается другим)" -#: src/Module/Settings/Profile/Photo/Crop.php:107 -#: src/Module/Settings/Profile/Photo/Crop.php:125 -#: src/Module/Settings/Profile/Photo/Crop.php:143 -#: src/Module/Settings/Profile/Photo/Index.php:100 +#: src/Module/Settings/Profile/Photo/Crop.php:93 +#: src/Module/Settings/Profile/Photo/Crop.php:111 +#: src/Module/Settings/Profile/Photo/Crop.php:129 +#: src/Module/Settings/Profile/Photo/Index.php:86 #, php-format msgid "Image size reduction [%s] failed." msgstr "Уменьшение размера изображения [%s] не удалось." -#: src/Module/Settings/Profile/Photo/Crop.php:150 +#: src/Module/Settings/Profile/Photo/Crop.php:136 msgid "" "Shift-reload the page or clear browser cache if the new photo does not " "display immediately." msgstr "Перезагрузите страницу с зажатой клавишей \"Shift\" для того, чтобы увидеть свое новое фото немедленно." -#: src/Module/Settings/Profile/Photo/Crop.php:155 +#: src/Module/Settings/Profile/Photo/Crop.php:141 msgid "Unable to process image" msgstr "Не удается обработать изображение" -#: src/Module/Settings/Profile/Photo/Crop.php:174 +#: src/Module/Settings/Profile/Photo/Crop.php:160 msgid "Photo not found." msgstr "Фото не найдено." -#: src/Module/Settings/Profile/Photo/Crop.php:196 +#: src/Module/Settings/Profile/Photo/Crop.php:182 msgid "Profile picture successfully updated." msgstr "Картинка профиля успешно обновлена." -#: src/Module/Settings/Profile/Photo/Crop.php:222 -#: src/Module/Settings/Profile/Photo/Crop.php:226 +#: src/Module/Settings/Profile/Photo/Crop.php:208 +#: src/Module/Settings/Profile/Photo/Crop.php:212 msgid "Crop Image" msgstr "Обрезать изображение" -#: src/Module/Settings/Profile/Photo/Crop.php:223 +#: src/Module/Settings/Profile/Photo/Crop.php:209 msgid "Please adjust the image cropping for optimum viewing." msgstr "Пожалуйста, настройте обрезку изображения для оптимального просмотра." -#: src/Module/Settings/Profile/Photo/Crop.php:225 +#: src/Module/Settings/Profile/Photo/Crop.php:211 msgid "Use Image As Is" msgstr "Использовать картинку как есть" -#: src/Module/Settings/Profile/Photo/Index.php:46 +#: src/Module/Settings/Profile/Photo/Index.php:32 msgid "Missing uploaded image." msgstr "Отсутствует загруженное изображение" -#: src/Module/Settings/Profile/Photo/Index.php:123 +#: src/Module/Settings/Profile/Photo/Index.php:109 msgid "Profile Picture Settings" msgstr "Настройки картинки профиля" -#: src/Module/Settings/Profile/Photo/Index.php:124 +#: src/Module/Settings/Profile/Photo/Index.php:110 msgid "Current Profile Picture" msgstr "Текущая картинка профиля" -#: src/Module/Settings/Profile/Photo/Index.php:125 +#: src/Module/Settings/Profile/Photo/Index.php:111 msgid "Upload Profile Picture" msgstr "Загрузить картинку профиля" -#: src/Module/Settings/Profile/Photo/Index.php:126 +#: src/Module/Settings/Profile/Photo/Index.php:112 msgid "Upload Picture:" msgstr "Загрузить картинку:" -#: src/Module/Settings/Profile/Photo/Index.php:131 +#: src/Module/Settings/Profile/Photo/Index.php:117 msgid "or" msgstr "или" -#: src/Module/Settings/Profile/Photo/Index.php:133 +#: src/Module/Settings/Profile/Photo/Index.php:119 msgid "skip this step" msgstr "пропустить этот шаг" -#: src/Module/Settings/Profile/Photo/Index.php:135 +#: src/Module/Settings/Profile/Photo/Index.php:121 msgid "select a photo from your photo albums" msgstr "выберите фото из ваших фотоальбомов" -#: src/Module/Settings/RemoveMe.php:76 +#: src/Module/Settings/RemoveMe.php:62 msgid "" "There was a validation error, please make sure you're logged in with the " "account you want to remove and try again." msgstr "Возникла ошибка валидации, пожалуйста, проверьте, что вы зашли под учётной записью, которую хотите удалить, и попробуйте ещё." -#: src/Module/Settings/RemoveMe.php:76 +#: src/Module/Settings/RemoveMe.php:62 msgid "If this error persists, please contact your administrator." msgstr "Если эта ошибка сохраняется, пожалуйста, свяжитесь с администратором." -#: src/Module/Settings/RemoveMe.php:90 -#: src/Navigation/Notifications/Repository/Notify.php:471 -#: src/Navigation/Notifications/Repository/Notify.php:492 +#: src/Module/Settings/RemoveMe.php:76 +#: src/Navigation/Notifications/Repository/Notify.php:457 +#: src/Navigation/Notifications/Repository/Notify.php:478 msgid "[Friendica System Notify]" msgstr "[Системное уведомление Friendica]" -#: src/Module/Settings/RemoveMe.php:90 +#: src/Module/Settings/RemoveMe.php:76 msgid "User deleted their account" msgstr "Пользователь удалил свою учётную запись" -#: src/Module/Settings/RemoveMe.php:91 +#: src/Module/Settings/RemoveMe.php:77 msgid "" "On your Friendica node an user deleted their account. Please ensure that " "their data is removed from the backups." msgstr "Пользователь удалил свою учётную запись на вашем сервере Friendica. Пожалуйста, убедитесь, что их данные будут удалены из резервных копий." -#: src/Module/Settings/RemoveMe.php:92 +#: src/Module/Settings/RemoveMe.php:78 #, php-format msgid "The user id is %d" msgstr "id пользователя: %d" -#: src/Module/Settings/RemoveMe.php:105 +#: src/Module/Settings/RemoveMe.php:91 msgid "Your account has been successfully removed. Bye bye!" msgstr "Ваша учётная запись была успешно удалена. Всего хорошего!" -#: src/Module/Settings/RemoveMe.php:130 +#: src/Module/Settings/RemoveMe.php:116 msgid "Remove My Account" msgstr "Удалить мой аккаунт" -#: src/Module/Settings/RemoveMe.php:131 +#: src/Module/Settings/RemoveMe.php:117 msgid "" "This will completely remove your account. Once this has been done it is not " "recoverable." msgstr "Это позволит полностью удалить ваш аккаунт. Как только это будет сделано, аккаунт восстановлению не подлежит." -#: src/Module/Settings/RemoveMe.php:136 +#: src/Module/Settings/RemoveMe.php:122 msgid "Please enter your password for verification:" msgstr "Пожалуйста, введите свой пароль для проверки:" -#: src/Module/Settings/Server/Action.php:60 +#: src/Module/Settings/Server/Action.php:46 msgid "Do you want to ignore this server?" msgstr "Вы хотите игнорировать этот сервер?" -#: src/Module/Settings/Server/Action.php:64 +#: src/Module/Settings/Server/Action.php:50 msgid "Do you want to unignore this server?" msgstr "Вы хотите прекратить игнорировать этот сервер?" -#: src/Module/Settings/Server/Action.php:74 -#: src/Module/Settings/Server/Index.php:104 +#: src/Module/Settings/Server/Action.php:60 +#: src/Module/Settings/Server/Index.php:90 msgid "Remote server settings" msgstr "Настройки сервера" -#: src/Module/Settings/Server/Action.php:77 +#: src/Module/Settings/Server/Action.php:63 msgid "Server URL" msgstr "URL сервера" -#: src/Module/Settings/Server/Index.php:78 +#: src/Module/Settings/Server/Index.php:64 msgid "Settings saved" msgstr "Настройки сохранены" -#: src/Module/Settings/Server/Index.php:105 +#: src/Module/Settings/Server/Index.php:91 msgid "" "Here you can find all the remote servers you have taken individual " "moderation actions against. For a list of servers your node has blocked, " "please check out the Information page." msgstr "Здесь вы можете найти все серверы, к которым вы применяли действия модерации. Чтобы посмотреть список серверов, которые заблокировал ваш узел, пожалуйста, посмотрите страницу информации об узле." -#: src/Module/Settings/Server/Index.php:110 +#: src/Module/Settings/Server/Index.php:96 msgid "Delete all your settings for the remote server" msgstr "Удалить ваши настройки для удалённого сервера" -#: src/Module/Settings/Server/Index.php:111 +#: src/Module/Settings/Server/Index.php:97 msgid "Save changes" msgstr "Сохранить изменения" -#: src/Module/Settings/TwoFactor/AppSpecific.php:69 -#: src/Module/Settings/TwoFactor/Recovery.php:67 -#: src/Module/Settings/TwoFactor/Trusted.php:70 -#: src/Module/Settings/TwoFactor/Verify.php:72 +#: src/Module/Settings/TwoFactor/AppSpecific.php:55 +#: src/Module/Settings/TwoFactor/Recovery.php:53 +#: src/Module/Settings/TwoFactor/Trusted.php:56 +#: src/Module/Settings/TwoFactor/Verify.php:58 msgid "Please enter your password to access this page." msgstr "Пожалуйста, введите ваш пароль для доступа к этой странице." -#: src/Module/Settings/TwoFactor/AppSpecific.php:87 +#: src/Module/Settings/TwoFactor/AppSpecific.php:73 msgid "App-specific password generation failed: The description is empty." msgstr "Создание пароля приложения не удалось: не указано описание" -#: src/Module/Settings/TwoFactor/AppSpecific.php:90 +#: src/Module/Settings/TwoFactor/AppSpecific.php:76 msgid "" "App-specific password generation failed: This description already exists." msgstr "Создание пароля приложения не удалось: такое описание уже есть." -#: src/Module/Settings/TwoFactor/AppSpecific.php:94 +#: src/Module/Settings/TwoFactor/AppSpecific.php:80 msgid "New app-specific password generated." msgstr "Новый пароль приложения сгенерирован" -#: src/Module/Settings/TwoFactor/AppSpecific.php:100 +#: src/Module/Settings/TwoFactor/AppSpecific.php:86 msgid "App-specific passwords successfully revoked." msgstr "Пароли для приложений успешно отозваны" -#: src/Module/Settings/TwoFactor/AppSpecific.php:110 +#: src/Module/Settings/TwoFactor/AppSpecific.php:96 msgid "App-specific password successfully revoked." msgstr "Пароль для приложения успешно отозван" -#: src/Module/Settings/TwoFactor/AppSpecific.php:131 +#: src/Module/Settings/TwoFactor/AppSpecific.php:117 msgid "Two-factor app-specific passwords" msgstr "Пароли для приложений" -#: src/Module/Settings/TwoFactor/AppSpecific.php:133 +#: src/Module/Settings/TwoFactor/AppSpecific.php:119 msgid "" "App-specific passwords are randomly generated passwords used instead your" " regular password to authenticate your account on third-party applications " "that don't support two-factor authentication.
" msgstr "Пароли для приложений это случайно сгенерированные пароли, используемые вместо основного пароля для приложений, которые не поддерживают двухфакторную аутентификацию.
" -#: src/Module/Settings/TwoFactor/AppSpecific.php:134 +#: src/Module/Settings/TwoFactor/AppSpecific.php:120 msgid "" "Make sure to copy your new app-specific password now. You won’t be able to " "see it again!" msgstr "Убедитесь, что вы скопировали этот новый пароль сейчас. Вы больше его не увидите!" -#: src/Module/Settings/TwoFactor/AppSpecific.php:138 +#: src/Module/Settings/TwoFactor/AppSpecific.php:124 msgid "Last Used" msgstr "Последнее использование" -#: src/Module/Settings/TwoFactor/AppSpecific.php:139 +#: src/Module/Settings/TwoFactor/AppSpecific.php:125 msgid "Revoke" msgstr "Отозвать" -#: src/Module/Settings/TwoFactor/AppSpecific.php:140 +#: src/Module/Settings/TwoFactor/AppSpecific.php:126 msgid "Revoke All" msgstr "Отозвать все" -#: src/Module/Settings/TwoFactor/AppSpecific.php:143 +#: src/Module/Settings/TwoFactor/AppSpecific.php:129 msgid "" "When you generate a new app-specific password, you must use it right away, " "it will be shown to you once after you generate it." msgstr "Когда вы создадите новый пароль приложения, вам нужно использовать его сразу же. Он будет показан один раз после его создания." -#: src/Module/Settings/TwoFactor/AppSpecific.php:144 +#: src/Module/Settings/TwoFactor/AppSpecific.php:130 msgid "Generate new app-specific password" msgstr "Создать новый пароль приложения" -#: src/Module/Settings/TwoFactor/AppSpecific.php:145 +#: src/Module/Settings/TwoFactor/AppSpecific.php:131 msgid "Friendiqa on my Fairphone 2..." msgstr "Friendiqa на моём Fairphone 2..." -#: src/Module/Settings/TwoFactor/AppSpecific.php:146 +#: src/Module/Settings/TwoFactor/AppSpecific.php:132 msgid "Generate" msgstr "Сгенерировать" -#: src/Module/Settings/TwoFactor/Index.php:88 +#: src/Module/Settings/TwoFactor/Index.php:74 msgid "Two-factor authentication successfully disabled." msgstr "Двухфакторная аутентификация успешно выключена." -#: src/Module/Settings/TwoFactor/Index.php:141 +#: src/Module/Settings/TwoFactor/Index.php:127 msgid "" "Use an application on a mobile device to get two-factor authentication " "codes when prompted on login.
" msgstr "Используйте приложение на мобильном устройстве для получения кодов второго фактора при входе.
" -#: src/Module/Settings/TwoFactor/Index.php:145 +#: src/Module/Settings/TwoFactor/Index.php:131 msgid "Authenticator app" msgstr "Приложение аутентификации" -#: src/Module/Settings/TwoFactor/Index.php:146 +#: src/Module/Settings/TwoFactor/Index.php:132 msgid "Configured" msgstr "Настроено" -#: src/Module/Settings/TwoFactor/Index.php:146 +#: src/Module/Settings/TwoFactor/Index.php:132 msgid "Not Configured" msgstr "Не настроено" -#: src/Module/Settings/TwoFactor/Index.php:147 +#: src/Module/Settings/TwoFactor/Index.php:133 msgid "You haven't finished configuring your authenticator app.
" msgstr "Вы не закончили настройку приложения для аутентификации.
" -#: src/Module/Settings/TwoFactor/Index.php:148 +#: src/Module/Settings/TwoFactor/Index.php:134 msgid "Your authenticator app is correctly configured.
" msgstr "Ваше приложение для аутентификации настроено.
" -#: src/Module/Settings/TwoFactor/Index.php:150 +#: src/Module/Settings/TwoFactor/Index.php:136 msgid "Recovery codes" msgstr "Коды восстановления" -#: src/Module/Settings/TwoFactor/Index.php:151 +#: src/Module/Settings/TwoFactor/Index.php:137 msgid "Remaining valid codes" msgstr "Оставшиеся коды восстановления" -#: src/Module/Settings/TwoFactor/Index.php:153 +#: src/Module/Settings/TwoFactor/Index.php:139 msgid "" "These one-use codes can replace an authenticator app code in case you " "have lost access to it.
" msgstr "Эти одноразовые коды могут заменить приложение для аутентификации, если вы его потеряете.
" -#: src/Module/Settings/TwoFactor/Index.php:155 +#: src/Module/Settings/TwoFactor/Index.php:141 msgid "App-specific passwords" msgstr "Пароли для приложений" -#: src/Module/Settings/TwoFactor/Index.php:156 +#: src/Module/Settings/TwoFactor/Index.php:142 msgid "Generated app-specific passwords" msgstr "Пароли для приложений" -#: src/Module/Settings/TwoFactor/Index.php:158 +#: src/Module/Settings/TwoFactor/Index.php:144 msgid "" "These randomly generated passwords allow you to authenticate on apps not " "supporting two-factor authentication.
" msgstr "Эти случайно сгенерированные пароли могут быть использованы в приложениях, не поддерживающих двухфакторную аутентификацию.
" -#: src/Module/Settings/TwoFactor/Index.php:161 +#: src/Module/Settings/TwoFactor/Index.php:147 msgid "Current password:" msgstr "Текущий пароль:" -#: src/Module/Settings/TwoFactor/Index.php:161 +#: src/Module/Settings/TwoFactor/Index.php:147 msgid "" "You need to provide your current password to change two-factor " "authentication settings." msgstr "Вам нужно ввести ваш текущий пароль для изменения настроек аутентификации." -#: src/Module/Settings/TwoFactor/Index.php:162 +#: src/Module/Settings/TwoFactor/Index.php:148 msgid "Enable two-factor authentication" msgstr "Включить двухфакторную аутентификацию" -#: src/Module/Settings/TwoFactor/Index.php:163 +#: src/Module/Settings/TwoFactor/Index.php:149 msgid "Disable two-factor authentication" msgstr "Отключить двухфакторную аутентификацию" -#: src/Module/Settings/TwoFactor/Index.php:164 +#: src/Module/Settings/TwoFactor/Index.php:150 msgid "Show recovery codes" msgstr "Показать коды восстановления" -#: src/Module/Settings/TwoFactor/Index.php:165 +#: src/Module/Settings/TwoFactor/Index.php:151 msgid "Manage app-specific passwords" msgstr "Управление паролями приложений" -#: src/Module/Settings/TwoFactor/Index.php:166 +#: src/Module/Settings/TwoFactor/Index.php:152 msgid "Manage trusted browsers" msgstr "Управление доверенными браузерами" -#: src/Module/Settings/TwoFactor/Index.php:167 +#: src/Module/Settings/TwoFactor/Index.php:153 msgid "Finish app configuration" msgstr "Закончить настройку приложения" -#: src/Module/Settings/TwoFactor/Recovery.php:83 +#: src/Module/Settings/TwoFactor/Recovery.php:69 msgid "New recovery codes successfully generated." msgstr "Новые коды восстановления успешно сгенерированы." -#: src/Module/Settings/TwoFactor/Recovery.php:109 +#: src/Module/Settings/TwoFactor/Recovery.php:95 msgid "Two-factor recovery codes" msgstr "Коды восстановления для ДФА" -#: src/Module/Settings/TwoFactor/Recovery.php:111 +#: src/Module/Settings/TwoFactor/Recovery.php:97 msgid "" "Recovery codes can be used to access your account in the event you lose " "access to your device and cannot receive two-factor authentication " @@ -11475,68 +11445,68 @@ msgid "" "account.
" msgstr "Коды восстановления могут быть использованы для входа в случае, если вы потеряли доступ к приложению и не можете получить коды второго фактора.
Храните их в безопасном месте! Если вы потеряете устройство с приложением и эти коды, то вы потеряете доступ к вашей учётной записи.
" -#: src/Module/Settings/TwoFactor/Recovery.php:113 +#: src/Module/Settings/TwoFactor/Recovery.php:99 msgid "" "When you generate new recovery codes, you must copy the new codes. Your old " "codes won’t work anymore." msgstr "Когда вы создаёте новые коды восстановления, вам нужно их сохранить. Ранее созданные коды больше не будут работать." -#: src/Module/Settings/TwoFactor/Recovery.php:114 +#: src/Module/Settings/TwoFactor/Recovery.php:100 msgid "Generate new recovery codes" msgstr "Сгенерировать новые коды восстановления." -#: src/Module/Settings/TwoFactor/Recovery.php:116 +#: src/Module/Settings/TwoFactor/Recovery.php:102 msgid "Next: Verification" msgstr "Далее: Проверка" -#: src/Module/Settings/TwoFactor/Trusted.php:87 +#: src/Module/Settings/TwoFactor/Trusted.php:73 msgid "Trusted browsers successfully removed." msgstr "Доверенные браузеры успешно удалены." -#: src/Module/Settings/TwoFactor/Trusted.php:97 +#: src/Module/Settings/TwoFactor/Trusted.php:83 msgid "Trusted browser successfully removed." msgstr "Доверенный браузер успешно удалён." -#: src/Module/Settings/TwoFactor/Trusted.php:139 +#: src/Module/Settings/TwoFactor/Trusted.php:125 msgid "Two-factor Trusted Browsers" msgstr "Доверенные браузеры" -#: src/Module/Settings/TwoFactor/Trusted.php:140 +#: src/Module/Settings/TwoFactor/Trusted.php:126 msgid "" "Trusted browsers are individual browsers you chose to skip two-factor " "authentication to access Friendica. Please use this feature sparingly, as it" " can negate the benefit of two-factor authentication." msgstr "Доверенные браузеры это браузеры, где вы можете пропускать использование двухфакторной аутентификации. Используйте эту возможность с осторожностью, так как это может лишить преимуществ двухфакторной аутентификации." -#: src/Module/Settings/TwoFactor/Trusted.php:141 +#: src/Module/Settings/TwoFactor/Trusted.php:127 msgid "Device" msgstr "Устройство" -#: src/Module/Settings/TwoFactor/Trusted.php:142 +#: src/Module/Settings/TwoFactor/Trusted.php:128 msgid "OS" msgstr "ОС" -#: src/Module/Settings/TwoFactor/Trusted.php:144 +#: src/Module/Settings/TwoFactor/Trusted.php:130 msgid "Trusted" msgstr "Доверие" -#: src/Module/Settings/TwoFactor/Trusted.php:145 +#: src/Module/Settings/TwoFactor/Trusted.php:131 msgid "Created At" msgstr "Создано" -#: src/Module/Settings/TwoFactor/Trusted.php:146 +#: src/Module/Settings/TwoFactor/Trusted.php:132 msgid "Last Use" msgstr "Последнее использование" -#: src/Module/Settings/TwoFactor/Trusted.php:148 +#: src/Module/Settings/TwoFactor/Trusted.php:134 msgid "Remove All" msgstr "Удалить все" -#: src/Module/Settings/TwoFactor/Verify.php:94 +#: src/Module/Settings/TwoFactor/Verify.php:80 msgid "Two-factor authentication successfully activated." msgstr "Двухфакторная аутентификация успешно включена." -#: src/Module/Settings/TwoFactor/Verify.php:128 +#: src/Module/Settings/TwoFactor/Verify.php:114 #, php-format msgid "" "Or you can submit the authentication settings manually:
\n" @@ -11556,105 +11526,105 @@ msgid "" "" msgstr "Или вы можете ввести настройки аутентификации вручную:
\nPlease scan this QR Code with your authenticator app and submit the " "provided code.
" msgstr "Пожалуйста, отсканируйте этот QR-код вашим приложением для аутентификации и введите полученный код.
" -#: src/Module/Settings/TwoFactor/Verify.php:152 +#: src/Module/Settings/TwoFactor/Verify.php:138 #, php-format msgid "" "Or you can open the following URL in your mobile device:
" msgstr "Или вы можете открыть следующую ссылку на вашем мобильном устройстве:
" -#: src/Module/Settings/TwoFactor/Verify.php:159 +#: src/Module/Settings/TwoFactor/Verify.php:145 msgid "Verify code and enable two-factor authentication" msgstr "Проверить код и включить двухфакторную аутентификацию" -#: src/Module/Settings/UserExport.php:90 +#: src/Module/Settings/UserExport.php:76 msgid "Export account" msgstr "Экспорт аккаунта" -#: src/Module/Settings/UserExport.php:90 +#: src/Module/Settings/UserExport.php:76 msgid "" "Export your account info and contacts. Use this to make a backup of your " "account and/or to move it to another server." msgstr "Экспорт ваших регистрационных данные и контактов. Используйте, чтобы создать резервную копию вашего аккаунта и/или переместить его на другой сервер." -#: src/Module/Settings/UserExport.php:91 +#: src/Module/Settings/UserExport.php:77 msgid "Export all" msgstr "Экспорт всего" -#: src/Module/Settings/UserExport.php:91 +#: src/Module/Settings/UserExport.php:77 msgid "" "Export your account info, contacts and all your items as json. Could be a " "very big file, and could take a lot of time. Use this to make a full backup " "of your account (photos are not exported)" msgstr "Выгрузить информацию о вашей учётной записи, контактах и всех ваших записях как файл JSON. Это может занять много времени и создать очень большой файл. Используйте это для создания резервной копии вашей учётной записи (изображения в неё не войдут)." -#: src/Module/Settings/UserExport.php:92 +#: src/Module/Settings/UserExport.php:78 msgid "Export Contacts to CSV" msgstr "Экспорт контактов в CSV" -#: src/Module/Settings/UserExport.php:92 +#: src/Module/Settings/UserExport.php:78 msgid "" "Export the list of the accounts you are following as CSV file. Compatible to" " e.g. Mastodon." msgstr "Выгрузить список пользователей, на которых вы подписаны, в CSV-файл. Совместимо с Mastodon и др." -#: src/Module/Special/DisplayNotFound.php:35 +#: src/Module/Special/DisplayNotFound.php:21 msgid "The top-level post isn't visible." msgstr "Родительская запись скрыта." -#: src/Module/Special/DisplayNotFound.php:36 +#: src/Module/Special/DisplayNotFound.php:22 msgid "The top-level post was deleted." msgstr "Родительская запись была удалена." -#: src/Module/Special/DisplayNotFound.php:37 +#: src/Module/Special/DisplayNotFound.php:23 msgid "" "This node has blocked the top-level author or the author of the shared post." msgstr "Этот узел заблокировал автора основной записи или поделившегося ей." -#: src/Module/Special/DisplayNotFound.php:38 +#: src/Module/Special/DisplayNotFound.php:24 msgid "" "You have ignored or blocked the top-level author or the author of the shared" " post." msgstr "Вы игнорируете или заблокировали автора основной записи или поделившегося ей." -#: src/Module/Special/DisplayNotFound.php:39 +#: src/Module/Special/DisplayNotFound.php:25 msgid "" "You have ignored the top-level author's server or the shared post author's " "server." msgstr "Вы игорируете сервер автора основной записи или сервер поделившегося ей." -#: src/Module/Special/DisplayNotFound.php:45 +#: src/Module/Special/DisplayNotFound.php:31 msgid "Conversation Not Found" msgstr "Запись не найдена" -#: src/Module/Special/DisplayNotFound.php:46 +#: src/Module/Special/DisplayNotFound.php:32 msgid "Unfortunately, the requested conversation isn't available to you." msgstr "К сожалению, эта запись вам недоступна." -#: src/Module/Special/DisplayNotFound.php:47 +#: src/Module/Special/DisplayNotFound.php:33 msgid "Possible reasons include:" msgstr "Возможные причины этого:" -#: src/Module/Special/HTTPException.php:78 +#: src/Module/Special/HTTPException.php:64 msgid "Stack trace:" msgstr "Stack trace:" -#: src/Module/Special/HTTPException.php:83 +#: src/Module/Special/HTTPException.php:69 #, php-format msgid "Exception thrown in %s:%d" msgstr "Exception thrown in %s:%d" -#: src/Module/Tos.php:58 src/Module/Tos.php:107 +#: src/Module/Tos.php:44 src/Module/Tos.php:93 msgid "" "At the time of registration, and for providing communications between the " "user account and their contacts, the user has to provide a display name (pen" @@ -11667,14 +11637,14 @@ msgid "" "settings, it is not necessary for communication." msgstr "При регистрации и для организации взаимодействия между пользователем и другими контактами, пользователь должен указать отображаемое имя (псевдоним), имя учётной записи (ник) и действующий адрес электронной почты. Имена будут видны на странице профиля для любого посетителя, даже если другие данные будут скрыты. Адрес электронной почты будет использоваться только для отправки пользователю уведомлений о действиях, но не будет нигде отображаться. Добавление пользователя в каталог узла или глобальный каталог опционально и управляется настройками, оно не обязательно для общения в сети." -#: src/Module/Tos.php:59 src/Module/Tos.php:108 +#: src/Module/Tos.php:45 src/Module/Tos.php:94 msgid "" "This data is required for communication and is passed on to the nodes of the" " communication partners and is stored there. Users can enter additional " "private data that may be transmitted to the communication partners accounts." msgstr "Эти данные необходимы для взаимодействия и передаются другим узлам партнёров по сети и сохраняются там. Пользователи могут добавить дополнительные личные данные, которые тоже могут передаваться на другие узлы." -#: src/Module/Tos.php:60 src/Module/Tos.php:109 +#: src/Module/Tos.php:46 src/Module/Tos.php:95 #, php-format msgid "" "At any point in time a logged in user can export their account data from the" @@ -11685,98 +11655,98 @@ msgid "" "from the nodes of the communication partners." msgstr "В любой момент вошедший в систему пользователь может экспортировать свои данные через настройки. Если пользователь хочет удалить свою учётную запись, они могут сделать это через %1$s/settings/removeme. Удаление данных будет без возможности восстановления. Запрос на удаление данных будет так же передан на узлы партнёров по сети." -#: src/Module/Tos.php:63 src/Module/Tos.php:106 +#: src/Module/Tos.php:49 src/Module/Tos.php:92 msgid "Privacy Statement" msgstr "Положение о конфиденциальности" -#: src/Module/Tos.php:103 +#: src/Module/Tos.php:89 msgid "Rules" msgstr "Правила" -#: src/Module/Update/Display.php:45 +#: src/Module/Update/Display.php:31 msgid "Parameter uri_id is missing." msgstr "Параметр uri_id отсутствует." -#: src/Module/Update/Display.php:55 +#: src/Module/Update/Display.php:41 msgid "The requested item doesn't exist or has been deleted." msgstr "Запрошенная запись не существует или была удалена." -#: src/Module/User/Delegation.php:146 +#: src/Module/User/Delegation.php:132 #, php-format msgid "You are now logged in as %s" msgstr "Вы вошли как %s" -#: src/Module/User/Delegation.php:185 +#: src/Module/User/Delegation.php:171 msgid "Switch between your accounts" msgstr "Переключить учётную запись" -#: src/Module/User/Delegation.php:186 +#: src/Module/User/Delegation.php:172 msgid "Manage your accounts" msgstr "Управление учётными записями" -#: src/Module/User/Delegation.php:187 +#: src/Module/User/Delegation.php:173 msgid "" "Toggle between different identities or community/group pages which share " "your account details or which you have been granted \"manage\" permissions" msgstr "Переключайтесь между разными профилями или страницами сообществ/групп, которые зарегистрированы на одинаковые контактные данные, либо вам предоставлено право управления ими." -#: src/Module/User/Delegation.php:188 +#: src/Module/User/Delegation.php:174 msgid "Select an identity to manage: " msgstr "Выберите учётную запись:" -#: src/Module/User/Import.php:104 +#: src/Module/User/Import.php:90 msgid "User imports on closed servers can only be done by an administrator." msgstr "Импорт пользователей на закрытых серверах может быть произведён только администратором." -#: src/Module/User/Import.php:120 +#: src/Module/User/Import.php:106 msgid "Move account" msgstr "Удалить аккаунт" -#: src/Module/User/Import.php:121 +#: src/Module/User/Import.php:107 msgid "You can import an account from another Friendica server." msgstr "Вы можете импортировать учетную запись с другого сервера Friendica." -#: src/Module/User/Import.php:122 +#: src/Module/User/Import.php:108 msgid "" "You need to export your account from the old server and upload it here. We " "will recreate your old account here with all your contacts. We will try also" " to inform your friends that you moved here." msgstr "Вам нужно экспортировать свой аккаунт со старого сервера и загрузить его сюда. Мы восстановим ваш старый аккаунт здесь со всеми вашими контактами. Мы постараемся также сообщить друзьям, что вы переехали сюда." -#: src/Module/User/Import.php:123 +#: src/Module/User/Import.php:109 msgid "" "This feature is experimental. We can't import contacts from the OStatus " "network (GNU Social/Statusnet) or from Diaspora" msgstr "Это экспериментальная функция. Мы не можем импортировать контакты из сети OStatus (GNU Social/ StatusNet) или из Diaspora" -#: src/Module/User/Import.php:124 +#: src/Module/User/Import.php:110 msgid "Account file" msgstr "Файл аккаунта" -#: src/Module/User/Import.php:124 +#: src/Module/User/Import.php:110 msgid "" "To export your account, go to \"Settings->Export your personal data\" and " "select \"Export account\"" msgstr "Для экспорта аккаунта, перейдите в \"Настройки->Экспортировать ваши данные\" и выберите \"Экспорт аккаунта\"" -#: src/Module/User/Import.php:218 +#: src/Module/User/Import.php:204 msgid "Error decoding account file" msgstr "Ошибка расшифровки файла аккаунта" -#: src/Module/User/Import.php:223 +#: src/Module/User/Import.php:209 msgid "Error! No version data in file! This is not a Friendica account file?" msgstr "Ошибка! Неправильная версия данных в файле! Это не файл аккаунта Friendica?" -#: src/Module/User/Import.php:231 +#: src/Module/User/Import.php:217 #, php-format msgid "User '%s' already exists on this server!" msgstr "Пользователь '%s' уже существует на этом сервере!" -#: src/Module/User/Import.php:268 +#: src/Module/User/Import.php:254 msgid "User creation error" msgstr "Ошибка создания пользователя" -#: src/Module/User/Import.php:317 +#: src/Module/User/Import.php:303 #, php-format msgid "%d contact not imported" msgid_plural "%d contacts not imported" @@ -11785,23 +11755,23 @@ msgstr[1] "%d контакты не импортированы" msgstr[2] "%d контакты не импортированы" msgstr[3] "%d контакты не импортированы" -#: src/Module/User/Import.php:366 +#: src/Module/User/Import.php:352 msgid "User profile creation error" msgstr "Ошибка создания профиля пользователя" -#: src/Module/User/Import.php:417 +#: src/Module/User/Import.php:403 msgid "Done. You can now login with your username and password" msgstr "Завершено. Теперь вы можете войти с вашим логином и паролем" -#: src/Module/Welcome.php:44 +#: src/Module/Welcome.php:30 msgid "Welcome to Friendica" msgstr "Добро пожаловать в Friendica" -#: src/Module/Welcome.php:45 +#: src/Module/Welcome.php:31 msgid "New Member Checklist" msgstr "Новый контрольный список участников" -#: src/Module/Welcome.php:46 +#: src/Module/Welcome.php:32 msgid "" "We would like to offer some tips and links to help make your experience " "enjoyable. Click any item to visit the relevant page. A link to this page " @@ -11809,33 +11779,33 @@ msgid "" "registration and then will quietly disappear." msgstr "Мы хотели бы предложить некоторые советы и ссылки, помогающие сделать вашу работу приятнее. Нажмите на любой элемент, чтобы посетить соответствующую страницу. Ссылка на эту страницу будет видна на вашей домашней странице в течение двух недель после первоначальной регистрации, а затем она исчезнет." -#: src/Module/Welcome.php:48 +#: src/Module/Welcome.php:34 msgid "Getting Started" msgstr "Начало работы" -#: src/Module/Welcome.php:49 +#: src/Module/Welcome.php:35 msgid "Friendica Walk-Through" msgstr "Знакомство с Friendica" -#: src/Module/Welcome.php:50 +#: src/Module/Welcome.php:36 msgid "" "On your Quick Start page - find a brief introduction to your " "profile and network tabs, make some new connections, and find some groups to" " join." msgstr "На вашей странице Быстрый старт - можно найти краткое введение в ваш профиль и сетевые закладки, создать новые связи, и найти группы, чтобы присоединиться к ним." -#: src/Module/Welcome.php:53 +#: src/Module/Welcome.php:39 msgid "Go to Your Settings" msgstr "Перейти к вашим настройкам" -#: src/Module/Welcome.php:54 +#: src/Module/Welcome.php:40 msgid "" "On your Settings page - change your initial password. Also make a " "note of your Identity Address. This looks just like an email address - and " "will be useful in making friends on the free social web." msgstr "На вашей странице Настройки - вы можете изменить свой первоначальный пароль. Также обратите внимание на ваш личный адрес. Он выглядит так же, как адрес электронной почты - и будет полезен для поиска друзей в свободной социальной сети." -#: src/Module/Welcome.php:55 +#: src/Module/Welcome.php:41 msgid "" "Review the other settings, particularly the privacy settings. An unpublished" " directory listing is like having an unlisted phone number. In general, you " @@ -11843,77 +11813,77 @@ msgid "" "potential friends know exactly how to find you." msgstr "Просмотрите другие установки, в частности, параметры конфиденциальности. Неопубликованные пункты каталога с частными номерами телефона. В общем, вам, вероятно, следует опубликовать свою информацию - если все ваши друзья и потенциальные друзья точно знают, как вас найти." -#: src/Module/Welcome.php:59 +#: src/Module/Welcome.php:45 msgid "" "Upload a profile photo if you have not done so already. Studies have shown " "that people with real photos of themselves are ten times more likely to make" " friends than people who do not." msgstr "Загрузите фотографию профиля, если вы еще не сделали это. Исследования показали, что люди с реальными фотографиями имеют в десять раз больше шансов подружиться, чем люди, которые этого не делают." -#: src/Module/Welcome.php:60 +#: src/Module/Welcome.php:46 msgid "Edit Your Profile" msgstr "Редактировать профиль" -#: src/Module/Welcome.php:61 +#: src/Module/Welcome.php:47 msgid "" "Edit your default profile to your liking. Review the " "settings for hiding your list of friends and hiding the profile from unknown" " visitors." msgstr "Отредактируйте профиль по умолчанию на свой вкус. Просмотрите установки для сокрытия вашего списка друзей и сокрытия профиля от неизвестных посетителей." -#: src/Module/Welcome.php:62 +#: src/Module/Welcome.php:48 msgid "Profile Keywords" msgstr "Ключевые слова профиля" -#: src/Module/Welcome.php:63 +#: src/Module/Welcome.php:49 msgid "" "Set some public keywords for your profile which describe your interests. We " "may be able to find other people with similar interests and suggest " "friendships." msgstr "Установите некоторые публичные ключевые слова для вашего профиля, которые описывают ваши интересы. Мы можем помочь найти других людей со схожими интересами и предложить дружбу." -#: src/Module/Welcome.php:65 +#: src/Module/Welcome.php:51 msgid "Connecting" msgstr "Подключение" -#: src/Module/Welcome.php:67 +#: src/Module/Welcome.php:53 msgid "Importing Emails" msgstr "Импортирование Email-ов" -#: src/Module/Welcome.php:68 +#: src/Module/Welcome.php:54 msgid "" "Enter your email access information on your Connector Settings page if you " "wish to import and interact with friends or mailing lists from your email " "INBOX" msgstr "Введите информацию о доступе к вашему email на странице настроек вашего коннектора, если вы хотите импортировать, и общаться с друзьями или получать рассылки на ваш ящик электронной почты" -#: src/Module/Welcome.php:69 +#: src/Module/Welcome.php:55 msgid "Go to Your Contacts Page" msgstr "Перейти на страницу ваших контактов" -#: src/Module/Welcome.php:70 +#: src/Module/Welcome.php:56 msgid "" "Your Contacts page is your gateway to managing friendships and connecting " "with friends on other networks. Typically you enter their address or site " "URL in the Add New Contact dialog." msgstr "Ваша страница контактов - это ваш шлюз к управлению дружбой и общением с друзьями в других сетях. Обычно вы вводите свой адрес или адрес сайта в диалог Добавить новый контакт." -#: src/Module/Welcome.php:71 +#: src/Module/Welcome.php:57 msgid "Go to Your Site's Directory" msgstr "Перейти в каталог вашего сайта" -#: src/Module/Welcome.php:72 +#: src/Module/Welcome.php:58 msgid "" "The Directory page lets you find other people in this network or other " "federated sites. Look for a Connect or Follow link on " "their profile page. Provide your own Identity Address if requested." msgstr "На странице каталога вы можете найти других людей в этой сети или на других похожих сайтах. Ищите ссылки Подключить или Подписаться на страницах их профилей. Укажите свой собственный адрес идентификации, если требуется." -#: src/Module/Welcome.php:73 +#: src/Module/Welcome.php:59 msgid "Finding New People" msgstr "Поиск людей" -#: src/Module/Welcome.php:74 +#: src/Module/Welcome.php:60 msgid "" "On the side panel of the Contacts page are several tools to find new " "friends. We can match people by interest, look up people by name or " @@ -11922,412 +11892,408 @@ msgid "" "hours." msgstr "На боковой панели страницы Контакты есть несколько инструментов, чтобы найти новых друзей. Мы можем искать по соответствию интересам, посмотреть людей по имени или интересам, и внести предложения на основе сетевых отношений. На новом сайте, предложения дружбы, как правило, начинают заполняться в течение 24 часов." -#: src/Module/Welcome.php:77 +#: src/Module/Welcome.php:63 msgid "Add Your Contacts To Circle" msgstr "Добавьте ваши контакты в круги" -#: src/Module/Welcome.php:78 +#: src/Module/Welcome.php:64 msgid "" "Once you have made some friends, organize them into private conversation " "circles from the sidebar of your Contacts page and then you can interact " "with each circle privately on your Network page." msgstr "После того, как вы найдете несколько друзей, соберите их в круги частных бесед в боковой панели на странице Контакты, а затем вы можете взаимодействовать с каждой группой приватно в вашей ленте." -#: src/Module/Welcome.php:80 +#: src/Module/Welcome.php:66 msgid "Why Aren't My Posts Public?" msgstr "Почему мои записи не публичные?" -#: src/Module/Welcome.php:81 +#: src/Module/Welcome.php:67 msgid "" "Friendica respects your privacy. By default, your posts will only show up to" " people you've added as friends. For more information, see the help section " "from the link above." msgstr "Friendica уважает вашу приватность. По умолчанию, ваши сообщения будут показываться только для людей, которых вы добавили в список друзей. Для получения дополнительной информации см. раздел справки по ссылке выше." -#: src/Module/Welcome.php:83 +#: src/Module/Welcome.php:69 msgid "Getting Help" msgstr "Получить помощь" -#: src/Module/Welcome.php:84 +#: src/Module/Welcome.php:70 msgid "Go to the Help Section" msgstr "Перейти в раздел справки" -#: src/Module/Welcome.php:85 +#: src/Module/Welcome.php:71 msgid "" "Our help pages may be consulted for detail on other program" " features and resources." msgstr "Наши страницы помощи могут проконсультировать о подробностях и возможностях программы и ресурса." -#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:161 +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:147 msgid "{0} wants to follow you" msgstr "{0} хочет подписаться на вас" -#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:163 +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:149 msgid "{0} has started following you" msgstr "{0} подписался на вас" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:96 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:82 #, php-format msgid "%s liked %s's post" msgstr "%s нравится %s сообшение" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:108 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:94 #, php-format msgid "%s disliked %s's post" msgstr "%s не нравится сообщение %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:120 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:106 #, php-format msgid "%s is attending %s's event" msgstr "%s будет присутствовать на событии %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:132 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:118 #, php-format msgid "%s is not attending %s's event" msgstr "%s не будет присутствовать на событии %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:144 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:130 #, php-format msgid "%s may attending %s's event" msgstr "%s возможно будет присутствовать на событии %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:174 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:160 #, php-format msgid "%s is now friends with %s" msgstr "%s теперь друзья с %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:341 -#: src/Navigation/Notifications/Factory/FormattedNotify.php:379 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:327 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:365 #, php-format msgid "%s commented on %s's post" msgstr "%s прокомментировал %s сообщение" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:378 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:364 #, php-format msgid "%s created a new post" msgstr "%s написал новое сообщение" -#: src/Navigation/Notifications/Factory/Introduction.php:132 +#: src/Navigation/Notifications/Factory/Introduction.php:118 msgid "Friend Suggestion" msgstr "Предложение в друзья" -#: src/Navigation/Notifications/Factory/Introduction.php:158 +#: src/Navigation/Notifications/Factory/Introduction.php:144 msgid "Friend/Connect Request" msgstr "Запрос в друзья / на подключение" -#: src/Navigation/Notifications/Factory/Introduction.php:158 -msgid "New Follower" -msgstr "Новый подписчик" - -#: src/Navigation/Notifications/Factory/Notification.php:134 +#: src/Navigation/Notifications/Factory/Notification.php:120 #, php-format msgid "%1$s wants to follow you" msgstr "%1$s хочет подписаться на вас." -#: src/Navigation/Notifications/Factory/Notification.php:136 +#: src/Navigation/Notifications/Factory/Notification.php:122 #, php-format msgid "%1$s has started following you" msgstr "%1$s подписался на вас" -#: src/Navigation/Notifications/Factory/Notification.php:208 +#: src/Navigation/Notifications/Factory/Notification.php:194 #, php-format msgid "%1$s liked your comment on %2$s" msgstr "%1$s нравится ваш комментарий %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:211 +#: src/Navigation/Notifications/Factory/Notification.php:197 #, php-format msgid "%1$s liked your post %2$s" msgstr "%1$s нравится ваша запись %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:218 +#: src/Navigation/Notifications/Factory/Notification.php:204 #, php-format msgid "%1$s disliked your comment on %2$s" msgstr "%1$s не нравится ваш комментарий %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:221 +#: src/Navigation/Notifications/Factory/Notification.php:207 #, php-format msgid "%1$s disliked your post %2$s" msgstr "%1$s не нравится ваша запись %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:228 +#: src/Navigation/Notifications/Factory/Notification.php:214 #, php-format msgid "%1$s shared your comment %2$s" msgstr "%1$s поделился вашим комментарием %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:231 -#: src/Navigation/Notifications/Factory/Notification.php:316 +#: src/Navigation/Notifications/Factory/Notification.php:217 +#: src/Navigation/Notifications/Factory/Notification.php:302 #, php-format msgid "%1$s shared your post %2$s" msgstr "%1$s поделился вашей записью %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:235 -#: src/Navigation/Notifications/Factory/Notification.php:305 +#: src/Navigation/Notifications/Factory/Notification.php:221 +#: src/Navigation/Notifications/Factory/Notification.php:291 #, php-format msgid "%1$s shared the post %2$s from %3$s" msgstr "%1$s поделился записью %2$s от %3$s" -#: src/Navigation/Notifications/Factory/Notification.php:237 -#: src/Navigation/Notifications/Factory/Notification.php:307 +#: src/Navigation/Notifications/Factory/Notification.php:223 +#: src/Navigation/Notifications/Factory/Notification.php:293 #, php-format msgid "%1$s shared a post from %3$s" msgstr "%1$s поделился записью от %3$s" -#: src/Navigation/Notifications/Factory/Notification.php:239 -#: src/Navigation/Notifications/Factory/Notification.php:309 +#: src/Navigation/Notifications/Factory/Notification.php:225 +#: src/Navigation/Notifications/Factory/Notification.php:295 #, php-format msgid "%1$s shared the post %2$s" msgstr "%1$s поделился записью %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:241 -#: src/Navigation/Notifications/Factory/Notification.php:311 +#: src/Navigation/Notifications/Factory/Notification.php:227 +#: src/Navigation/Notifications/Factory/Notification.php:297 #, php-format msgid "%1$s shared a post" msgstr "%1$s поделился записью" -#: src/Navigation/Notifications/Factory/Notification.php:249 +#: src/Navigation/Notifications/Factory/Notification.php:235 #, php-format msgid "%1$s wants to attend your event %2$s" msgstr "%1$s хочет прийти на ваше событие %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:256 +#: src/Navigation/Notifications/Factory/Notification.php:242 #, php-format msgid "%1$s does not want to attend your event %2$s" msgstr "%1$s не хочет приходить на ваше событие %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:263 +#: src/Navigation/Notifications/Factory/Notification.php:249 #, php-format msgid "%1$s maybe wants to attend your event %2$s" msgstr "%1$s возможно захочет прийти на в ваше событие %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:270 +#: src/Navigation/Notifications/Factory/Notification.php:256 #, php-format msgid "%1$s tagged you on %2$s" msgstr "%1$s отметил(а) вас в %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:274 +#: src/Navigation/Notifications/Factory/Notification.php:260 #, php-format msgid "%1$s replied to you on %2$s" msgstr "%1$s ответил(а) на %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:278 +#: src/Navigation/Notifications/Factory/Notification.php:264 #, php-format msgid "%1$s commented in your thread %2$s" msgstr "%1$s ответил(а) в вашем обсуждении %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:282 +#: src/Navigation/Notifications/Factory/Notification.php:268 #, php-format msgid "%1$s commented on your comment %2$s" msgstr "%1$s ответил(а) на ваш комментарий %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:289 +#: src/Navigation/Notifications/Factory/Notification.php:275 #, php-format msgid "%1$s commented in their thread %2$s" msgstr "%1$s ответил(а) в своём обсуждении %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:291 +#: src/Navigation/Notifications/Factory/Notification.php:277 #, php-format msgid "%1$s commented in their thread" msgstr "%1$s ответил(а) в своём обсуждении" -#: src/Navigation/Notifications/Factory/Notification.php:293 +#: src/Navigation/Notifications/Factory/Notification.php:279 #, php-format msgid "%1$s commented in the thread %2$s from %3$s" msgstr "%1$s ответил(а) в обсуждении %2$s от %3$s" -#: src/Navigation/Notifications/Factory/Notification.php:295 +#: src/Navigation/Notifications/Factory/Notification.php:281 #, php-format msgid "%1$s commented in the thread from %3$s" msgstr "%1$s ответил(а) в обсуждении от %3$s" -#: src/Navigation/Notifications/Factory/Notification.php:300 +#: src/Navigation/Notifications/Factory/Notification.php:286 #, php-format msgid "%1$s commented on your thread %2$s" msgstr "%1$s ответил(а) в вашем обсуждении %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:225 -#: src/Navigation/Notifications/Repository/Notify.php:754 +#: src/Navigation/Notifications/Repository/Notify.php:211 +#: src/Navigation/Notifications/Repository/Notify.php:740 msgid "[Friendica:Notify]" msgstr "[Friendica]" -#: src/Navigation/Notifications/Repository/Notify.php:293 +#: src/Navigation/Notifications/Repository/Notify.php:279 #, php-format msgid "%s New mail received at %s" msgstr "%s Новая почта получена в %s" -#: src/Navigation/Notifications/Repository/Notify.php:295 +#: src/Navigation/Notifications/Repository/Notify.php:281 #, php-format msgid "%1$s sent you a new private message at %2$s." msgstr "%1$s отправил вам новое личное сообщение на %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:296 +#: src/Navigation/Notifications/Repository/Notify.php:282 msgid "a private message" msgstr "личное сообщение" -#: src/Navigation/Notifications/Repository/Notify.php:296 +#: src/Navigation/Notifications/Repository/Notify.php:282 #, php-format msgid "%1$s sent you %2$s." msgstr "%1$s послал вам %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:298 +#: src/Navigation/Notifications/Repository/Notify.php:284 #, php-format msgid "Please visit %s to view and/or reply to your private messages." msgstr "Пожалуйста, посетите %s для просмотра и/или ответа на личные сообщения." -#: src/Navigation/Notifications/Repository/Notify.php:328 +#: src/Navigation/Notifications/Repository/Notify.php:314 #, php-format msgid "%1$s commented on %2$s's %3$s %4$s" msgstr "%1$s прокомментировал(а) %2$s %3$s %4$s" -#: src/Navigation/Notifications/Repository/Notify.php:333 +#: src/Navigation/Notifications/Repository/Notify.php:319 #, php-format msgid "%1$s commented on your %2$s %3$s" msgstr "%1$s прокомментировал(а) ваш %2$s %3$s" -#: src/Navigation/Notifications/Repository/Notify.php:337 +#: src/Navigation/Notifications/Repository/Notify.php:323 #, php-format msgid "%1$s commented on their %2$s %3$s" msgstr "%1$s прокомментировал(а) свой %2$s %3$s" -#: src/Navigation/Notifications/Repository/Notify.php:341 -#: src/Navigation/Notifications/Repository/Notify.php:788 +#: src/Navigation/Notifications/Repository/Notify.php:327 +#: src/Navigation/Notifications/Repository/Notify.php:774 #, php-format msgid "%1$s Comment to conversation #%2$d by %3$s" msgstr "%1$s Комментариев к разговору #%2$d от %3$s" -#: src/Navigation/Notifications/Repository/Notify.php:343 +#: src/Navigation/Notifications/Repository/Notify.php:329 #, php-format msgid "%s commented on an item/conversation you have been following." msgstr "%s оставил комментарий к элементу/беседе, за которой вы следите." -#: src/Navigation/Notifications/Repository/Notify.php:347 -#: src/Navigation/Notifications/Repository/Notify.php:362 -#: src/Navigation/Notifications/Repository/Notify.php:814 +#: src/Navigation/Notifications/Repository/Notify.php:333 +#: src/Navigation/Notifications/Repository/Notify.php:348 +#: src/Navigation/Notifications/Repository/Notify.php:800 #, php-format msgid "Please visit %s to view and/or reply to the conversation." msgstr "Пожалуйста посетите %s для просмотра и/или ответа в беседу." -#: src/Navigation/Notifications/Repository/Notify.php:354 +#: src/Navigation/Notifications/Repository/Notify.php:340 #, php-format msgid "%s %s posted to your profile wall" msgstr "%s %s размещены на стене вашего профиля" -#: src/Navigation/Notifications/Repository/Notify.php:356 +#: src/Navigation/Notifications/Repository/Notify.php:342 #, php-format msgid "%1$s posted to your profile wall at %2$s" msgstr "%1$s написал на вашей стене на %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:357 +#: src/Navigation/Notifications/Repository/Notify.php:343 #, php-format msgid "%1$s posted to [url=%2$s]your wall[/url]" msgstr "%1$s написал на [url=%2$s]вашей стене[/url]" -#: src/Navigation/Notifications/Repository/Notify.php:370 +#: src/Navigation/Notifications/Repository/Notify.php:356 #, php-format msgid "%s Introduction received" msgstr "%s Входящих получено" -#: src/Navigation/Notifications/Repository/Notify.php:372 +#: src/Navigation/Notifications/Repository/Notify.php:358 #, php-format msgid "You've received an introduction from '%1$s' at %2$s" msgstr "Вы получили запрос от '%1$s' на %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:373 +#: src/Navigation/Notifications/Repository/Notify.php:359 #, php-format msgid "You've received [url=%1$s]an introduction[/url] from %2$s." msgstr "Вы получили [url=%1$s]запрос[/url] от %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:378 -#: src/Navigation/Notifications/Repository/Notify.php:424 +#: src/Navigation/Notifications/Repository/Notify.php:364 +#: src/Navigation/Notifications/Repository/Notify.php:410 #, php-format msgid "You may visit their profile at %s" msgstr "Вы можете посмотреть его профиль здесь %s" -#: src/Navigation/Notifications/Repository/Notify.php:380 +#: src/Navigation/Notifications/Repository/Notify.php:366 #, php-format msgid "Please visit %s to approve or reject the introduction." msgstr "Посетите %s для подтверждения или отказа запроса." -#: src/Navigation/Notifications/Repository/Notify.php:387 +#: src/Navigation/Notifications/Repository/Notify.php:373 #, php-format msgid "%s A new person is sharing with you" msgstr "%s Новый человек поделился с Вами" -#: src/Navigation/Notifications/Repository/Notify.php:389 -#: src/Navigation/Notifications/Repository/Notify.php:390 +#: src/Navigation/Notifications/Repository/Notify.php:375 +#: src/Navigation/Notifications/Repository/Notify.php:376 #, php-format msgid "%1$s is sharing with you at %2$s" msgstr "%1$s делится с вами на %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:397 +#: src/Navigation/Notifications/Repository/Notify.php:383 #, php-format msgid "%s You have a new follower" msgstr "%s У Вас новый подписчик" -#: src/Navigation/Notifications/Repository/Notify.php:399 -#: src/Navigation/Notifications/Repository/Notify.php:400 +#: src/Navigation/Notifications/Repository/Notify.php:385 +#: src/Navigation/Notifications/Repository/Notify.php:386 #, php-format msgid "You have a new follower at %2$s : %1$s" msgstr "У вас новый подписчик на %2$s : %1$s" -#: src/Navigation/Notifications/Repository/Notify.php:413 +#: src/Navigation/Notifications/Repository/Notify.php:399 #, php-format msgid "%s Friend suggestion received" msgstr "%s Получено дружеское приглашение" -#: src/Navigation/Notifications/Repository/Notify.php:415 +#: src/Navigation/Notifications/Repository/Notify.php:401 #, php-format msgid "You've received a friend suggestion from '%1$s' at %2$s" msgstr "Вы получили предложение дружбы от '%1$s' на %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:416 +#: src/Navigation/Notifications/Repository/Notify.php:402 #, php-format msgid "" "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." msgstr "У вас [url=%1$s]новое предложение дружбы[/url] для %2$s от %3$s." -#: src/Navigation/Notifications/Repository/Notify.php:422 +#: src/Navigation/Notifications/Repository/Notify.php:408 msgid "Name:" msgstr "Имя:" -#: src/Navigation/Notifications/Repository/Notify.php:423 +#: src/Navigation/Notifications/Repository/Notify.php:409 msgid "Photo:" msgstr "Фото:" -#: src/Navigation/Notifications/Repository/Notify.php:426 +#: src/Navigation/Notifications/Repository/Notify.php:412 #, php-format msgid "Please visit %s to approve or reject the suggestion." msgstr "Пожалуйста, посетите %s для подтверждения, или отказа запроса." -#: src/Navigation/Notifications/Repository/Notify.php:434 -#: src/Navigation/Notifications/Repository/Notify.php:449 +#: src/Navigation/Notifications/Repository/Notify.php:420 +#: src/Navigation/Notifications/Repository/Notify.php:435 #, php-format msgid "%s Connection accepted" msgstr "%s Соединение принято" -#: src/Navigation/Notifications/Repository/Notify.php:436 -#: src/Navigation/Notifications/Repository/Notify.php:451 +#: src/Navigation/Notifications/Repository/Notify.php:422 +#: src/Navigation/Notifications/Repository/Notify.php:437 #, php-format msgid "'%1$s' has accepted your connection request at %2$s" msgstr "'%1$s' принял соединение с вами на %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:437 -#: src/Navigation/Notifications/Repository/Notify.php:452 +#: src/Navigation/Notifications/Repository/Notify.php:423 +#: src/Navigation/Notifications/Repository/Notify.php:438 #, php-format msgid "%2$s has accepted your [url=%1$s]connection request[/url]." msgstr "%2$s принял ваше [url=%1$s]предложение о соединении[/url]." -#: src/Navigation/Notifications/Repository/Notify.php:442 +#: src/Navigation/Notifications/Repository/Notify.php:428 msgid "" "You are now mutual friends and may exchange status updates, photos, and " "email without restriction." msgstr "Вы теперь взаимные друзья и можете обмениваться статусами, фотографиями и письмами без ограничений." -#: src/Navigation/Notifications/Repository/Notify.php:444 +#: src/Navigation/Notifications/Repository/Notify.php:430 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "Посетите %s если вы хотите сделать изменения в этом отношении." -#: src/Navigation/Notifications/Repository/Notify.php:457 +#: src/Navigation/Notifications/Repository/Notify.php:443 #, php-format msgid "" "'%1$s' has chosen to accept you a fan, which restricts some forms of " @@ -12336,34 +12302,34 @@ msgid "" "automatically." msgstr "%1$s решил принять приглашение и пометил вас как фаната, что запрещает некоторые формы общения - например, личные сообщения и некоторые действия с профилем. Если эта страница знаменитости или сообщества, то эти настройки были применены автоматически." -#: src/Navigation/Notifications/Repository/Notify.php:459 +#: src/Navigation/Notifications/Repository/Notify.php:445 #, php-format msgid "" "'%1$s' may choose to extend this into a two-way or more permissive " "relationship in the future." msgstr "%1$s может расширить взаимоотношения до более мягких в будущем." -#: src/Navigation/Notifications/Repository/Notify.php:461 +#: src/Navigation/Notifications/Repository/Notify.php:447 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "Посетите %s если вы хотите сделать изменения в этом отношении." -#: src/Navigation/Notifications/Repository/Notify.php:471 +#: src/Navigation/Notifications/Repository/Notify.php:457 msgid "registration request" msgstr "запрос регистрации" -#: src/Navigation/Notifications/Repository/Notify.php:473 +#: src/Navigation/Notifications/Repository/Notify.php:459 #, php-format msgid "You've received a registration request from '%1$s' at %2$s" msgstr "Вы получили запрос на регистрацию от '%1$s' на %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:474 +#: src/Navigation/Notifications/Repository/Notify.php:460 #, php-format msgid "You've received a [url=%1$s]registration request[/url] from %2$s." msgstr "Вы получили [url=%1$s]запрос регистрации[/url] от %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:479 -#: src/Navigation/Notifications/Repository/Notify.php:500 +#: src/Navigation/Notifications/Repository/Notify.php:465 +#: src/Navigation/Notifications/Repository/Notify.php:486 #, php-format msgid "" "Display Name:\t%s\n" @@ -12371,288 +12337,288 @@ msgid "" "Login Name:\t%s (%s)" msgstr "Полное имя:\t%s\nРасположение:\t%s\nИмя для входа:\t%s (%s)" -#: src/Navigation/Notifications/Repository/Notify.php:485 +#: src/Navigation/Notifications/Repository/Notify.php:471 #, php-format msgid "Please visit %s to approve or reject the request." msgstr "Пожалуйста, посетите %s чтобы подтвердить или отвергнуть запрос." -#: src/Navigation/Notifications/Repository/Notify.php:492 +#: src/Navigation/Notifications/Repository/Notify.php:478 msgid "new registration" msgstr "новая регистрация" -#: src/Navigation/Notifications/Repository/Notify.php:494 +#: src/Navigation/Notifications/Repository/Notify.php:480 #, php-format msgid "You've received a new registration from '%1$s' at %2$s" msgstr "У вас новая регистрация от '%1$s' на %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:495 +#: src/Navigation/Notifications/Repository/Notify.php:481 #, php-format msgid "You've received a [url=%1$s]new registration[/url] from %2$s." msgstr "У вас [url=%1$s]новая регистрация[/url] от %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:506 +#: src/Navigation/Notifications/Repository/Notify.php:492 #, php-format msgid "Please visit %s to have a look at the new registration." msgstr "Пожалуйста, посетите %s для просмотра новой регистрации." -#: src/Navigation/Notifications/Repository/Notify.php:782 +#: src/Navigation/Notifications/Repository/Notify.php:768 #, php-format msgid "%s %s tagged you" msgstr "%s %s отметил(и) Вас" -#: src/Navigation/Notifications/Repository/Notify.php:785 +#: src/Navigation/Notifications/Repository/Notify.php:771 #, php-format msgid "%s %s shared a new post" msgstr "%s %s поделился(-ась) новой записью" -#: src/Navigation/Notifications/Repository/Notify.php:793 +#: src/Navigation/Notifications/Repository/Notify.php:779 #, php-format msgid "%1$s %2$s liked your post #%3$d" msgstr "%1$s %2$s нравится ваша запись #%3$d" -#: src/Navigation/Notifications/Repository/Notify.php:796 +#: src/Navigation/Notifications/Repository/Notify.php:782 #, php-format msgid "%1$s %2$s liked your comment on #%3$d" msgstr "%1$s %2$s нравится ваш комментарий в #%3$d" -#: src/Object/EMail/ItemCCEMail.php:42 +#: src/Object/EMail/ItemCCEMail.php:28 #, php-format msgid "" "This message was sent to you by %s, a member of the Friendica social " "network." msgstr "Это сообщение было отправлено вам %s, участником социальной сети Friendica." -#: src/Object/EMail/ItemCCEMail.php:44 +#: src/Object/EMail/ItemCCEMail.php:30 #, php-format msgid "You may visit them online at %s" msgstr "Вы можете посетить их в онлайне на %s" -#: src/Object/EMail/ItemCCEMail.php:45 +#: src/Object/EMail/ItemCCEMail.php:31 msgid "" "Please contact the sender by replying to this post if you do not wish to " "receive these messages." msgstr "Пожалуйста, свяжитесь с отправителем, ответив на это сообщение, если вы не хотите получать эти сообщения." -#: src/Object/EMail/ItemCCEMail.php:49 +#: src/Object/EMail/ItemCCEMail.php:35 #, php-format msgid "%s posted an update." msgstr "%s отправил/а/ обновление." -#: src/Object/Post.php:138 +#: src/Object/Post.php:124 msgid "Private Message" msgstr "Приватная запись" -#: src/Object/Post.php:142 +#: src/Object/Post.php:128 msgid "Public Message" msgstr "Публичная запись" -#: src/Object/Post.php:146 +#: src/Object/Post.php:132 msgid "Unlisted Message" msgstr "Запись без публикации в общих лентах" -#: src/Object/Post.php:182 +#: src/Object/Post.php:168 msgid "This entry was edited" msgstr "Эта запись была отредактирована" -#: src/Object/Post.php:210 +#: src/Object/Post.php:196 msgid "Connector Message" msgstr "Сообщение-коннектор" -#: src/Object/Post.php:239 src/Object/Post.php:241 +#: src/Object/Post.php:225 src/Object/Post.php:227 msgid "Edit" msgstr "Редактировать" -#: src/Object/Post.php:275 +#: src/Object/Post.php:261 msgid "Delete globally" msgstr "Удалить везде" -#: src/Object/Post.php:275 +#: src/Object/Post.php:261 msgid "Remove locally" msgstr "Убрать для себя" -#: src/Object/Post.php:282 +#: src/Object/Post.php:268 #, php-format msgid "Block %s" msgstr "Заблокировать %s" -#: src/Object/Post.php:287 +#: src/Object/Post.php:273 #, php-format msgid "Ignore %s" msgstr "Игнорировать %s" -#: src/Object/Post.php:292 +#: src/Object/Post.php:278 #, php-format msgid "Collapse %s" msgstr "Сворачивать %s" -#: src/Object/Post.php:296 +#: src/Object/Post.php:282 msgid "Report post" msgstr "Пожаловаться" -#: src/Object/Post.php:307 +#: src/Object/Post.php:293 msgid "Save to folder" msgstr "Сохранить в папку" -#: src/Object/Post.php:347 +#: src/Object/Post.php:333 msgid "I will attend" msgstr "Я буду" -#: src/Object/Post.php:347 +#: src/Object/Post.php:333 msgid "I will not attend" msgstr "Меня не будет" -#: src/Object/Post.php:347 +#: src/Object/Post.php:333 msgid "I might attend" msgstr "Возможно" -#: src/Object/Post.php:394 +#: src/Object/Post.php:380 msgid "Ignore thread" msgstr "Игнорировать обсуждение" -#: src/Object/Post.php:395 +#: src/Object/Post.php:381 msgid "Unignore thread" msgstr "Не игнорировать обсуждение" -#: src/Object/Post.php:396 +#: src/Object/Post.php:382 msgid "Toggle ignore status" msgstr "Переключить игнорирование" -#: src/Object/Post.php:406 +#: src/Object/Post.php:392 msgid "Add star" msgstr "Добавить в Избранное" -#: src/Object/Post.php:407 +#: src/Object/Post.php:393 msgid "Remove star" msgstr "Убрать из Избранного" -#: src/Object/Post.php:408 +#: src/Object/Post.php:394 msgid "Toggle star status" msgstr "Добавить/убрать из Избранного" -#: src/Object/Post.php:419 +#: src/Object/Post.php:405 msgid "Pin" msgstr "Закрепить" -#: src/Object/Post.php:420 +#: src/Object/Post.php:406 msgid "Unpin" msgstr "Открепить" -#: src/Object/Post.php:421 +#: src/Object/Post.php:407 msgid "Toggle pin status" msgstr "Закрепить/открепить" -#: src/Object/Post.php:424 +#: src/Object/Post.php:410 msgid "Pinned" msgstr "Закреплено" -#: src/Object/Post.php:429 +#: src/Object/Post.php:415 msgid "Add tag" msgstr "Добавить тег" -#: src/Object/Post.php:444 +#: src/Object/Post.php:430 msgid "Quote share this" msgstr "Поделиться с комментарием" -#: src/Object/Post.php:444 +#: src/Object/Post.php:430 msgid "Quote Share" msgstr "Цитировать" -#: src/Object/Post.php:447 +#: src/Object/Post.php:433 msgid "Reshare this" msgstr "Поделиться этим с подписчиками" -#: src/Object/Post.php:447 +#: src/Object/Post.php:433 msgid "Reshare" msgstr "Поделиться" -#: src/Object/Post.php:448 +#: src/Object/Post.php:434 msgid "Cancel your Reshare" msgstr "Отменить репост" -#: src/Object/Post.php:448 +#: src/Object/Post.php:434 msgid "Unshare" msgstr "Отменить репост" -#: src/Object/Post.php:492 +#: src/Object/Post.php:478 #, php-format msgid "%s (Received %s)" msgstr "%s (Получено %s)" -#: src/Object/Post.php:498 +#: src/Object/Post.php:484 msgid "Comment this item on your system" msgstr "Прокомментировать это на вашем узле" -#: src/Object/Post.php:498 +#: src/Object/Post.php:484 msgid "Remote comment" msgstr "Загруженный комментарий" -#: src/Object/Post.php:520 +#: src/Object/Post.php:506 msgid "Share via ..." msgstr "Отправить в ..." -#: src/Object/Post.php:520 +#: src/Object/Post.php:506 msgid "Share via external services" msgstr "Поделиться через сторонние сервисы" -#: src/Object/Post.php:527 +#: src/Object/Post.php:513 msgid "Unknown parent" msgstr "Источник неизвестен" -#: src/Object/Post.php:531 +#: src/Object/Post.php:517 #, php-format msgid "in reply to %s" msgstr "в ответ на %s" -#: src/Object/Post.php:533 +#: src/Object/Post.php:519 msgid "Parent is probably private or not federated." msgstr "Источник приватный или не федерируется." -#: src/Object/Post.php:557 +#: src/Object/Post.php:543 msgid "to" msgstr "к" -#: src/Object/Post.php:558 +#: src/Object/Post.php:544 msgid "via" msgstr "через" -#: src/Object/Post.php:559 +#: src/Object/Post.php:545 msgid "Wall-to-Wall" msgstr "Стена-на-Стену" -#: src/Object/Post.php:560 +#: src/Object/Post.php:546 msgid "via Wall-To-Wall:" msgstr "через Стена-на-Стену:" -#: src/Object/Post.php:613 +#: src/Object/Post.php:599 #, php-format msgid "Reply to %s" msgstr "Ответ %s" -#: src/Object/Post.php:616 +#: src/Object/Post.php:602 msgid "More" msgstr "Ещё" -#: src/Object/Post.php:635 +#: src/Object/Post.php:621 msgid "Notifier task is pending" msgstr "Постановка в очередь" -#: src/Object/Post.php:636 +#: src/Object/Post.php:622 msgid "Delivery to remote servers is pending" msgstr "Ожидается отправка адресатам" -#: src/Object/Post.php:637 +#: src/Object/Post.php:623 msgid "Delivery to remote servers is underway" msgstr "Отправка адресатам в процессе" -#: src/Object/Post.php:638 +#: src/Object/Post.php:624 msgid "Delivery to remote servers is mostly done" msgstr "Отправка адресатам почти завершилась" -#: src/Object/Post.php:639 +#: src/Object/Post.php:625 msgid "Delivery to remote servers is done" msgstr "Отправка адресатам завершена" -#: src/Object/Post.php:661 +#: src/Object/Post.php:647 #, php-format msgid "%d comment" msgid_plural "%d comments" @@ -12661,485 +12627,467 @@ msgstr[1] "%d комментариев" msgstr[2] "%d комментариев" msgstr[3] "%d комментариев" -#: src/Object/Post.php:662 +#: src/Object/Post.php:648 msgid "Show more" msgstr "Показать больше" -#: src/Object/Post.php:663 +#: src/Object/Post.php:649 msgid "Show fewer" msgstr "Показать меньше" -#: src/Object/Post.php:700 +#: src/Object/Post.php:686 #, php-format msgid "Reshared by: %s" msgstr "Репост от: %s" -#: src/Object/Post.php:705 +#: src/Object/Post.php:691 #, php-format msgid "Viewed by: %s" msgstr "Просмотрено: %s" -#: src/Object/Post.php:710 +#: src/Object/Post.php:696 #, php-format msgid "Read by: %s" msgstr "Прочитано: %s" -#: src/Object/Post.php:715 +#: src/Object/Post.php:701 #, php-format msgid "Liked by: %s" msgstr "Понравилось: %s" -#: src/Object/Post.php:720 +#: src/Object/Post.php:706 #, php-format msgid "Disliked by: %s" msgstr "Не понравилось: %s" -#: src/Object/Post.php:725 +#: src/Object/Post.php:711 #, php-format msgid "Attended by: %s" msgstr "Присутствуют: %s" -#: src/Object/Post.php:730 +#: src/Object/Post.php:716 #, php-format msgid "Maybe attended by: %s" msgstr "Под вопросом: %s" -#: src/Object/Post.php:735 +#: src/Object/Post.php:721 #, php-format msgid "Not attended by: %s" msgstr "Не присутствуют: %s" -#: src/Object/Post.php:740 +#: src/Object/Post.php:726 #, php-format msgid "Commented by: %s" msgstr "Прокомментировали: %s" -#: src/Object/Post.php:745 +#: src/Object/Post.php:731 #, php-format msgid "Reacted with %s by: %s" msgstr "Отреагировали как %s : %s" -#: src/Object/Post.php:768 +#: src/Object/Post.php:754 #, php-format msgid "Quote shared by: %s" msgstr "Процитировано: %s" -#: src/Protocol/ActivityPub/Receiver.php:571 +#: src/Protocol/ActivityPub/Receiver.php:557 msgid "Chat" msgstr "Чат" -#: src/Protocol/Delivery.php:544 +#: src/Protocol/Delivery.php:530 msgid "(no subject)" msgstr "(нет темы)" -#: src/Protocol/OStatus.php:1392 -#, php-format -msgid "%s is now following %s." -msgstr "%s теперь подписан на %s." - -#: src/Protocol/OStatus.php:1393 -msgid "following" -msgstr "следует" - -#: src/Protocol/OStatus.php:1396 -#, php-format -msgid "%s stopped following %s." -msgstr "%s отписался от %s." - -#: src/Protocol/OStatus.php:1397 -msgid "stopped following" -msgstr "отписка от" - -#: src/Render/FriendicaSmartyEngine.php:56 +#: src/Render/FriendicaSmartyEngine.php:42 #, php-format msgid "The folder %s must be writable by webserver." msgstr "Каталог %s должен быть доступен для записи веб-сервером." -#: src/Security/Authentication.php:214 +#: src/Security/Authentication.php:200 msgid "Login failed." msgstr "Войти не удалось." -#: src/Security/Authentication.php:259 +#: src/Security/Authentication.php:245 msgid "Login failed. Please check your credentials." msgstr "Ошибка входа. Пожалуйста, проверьте данные для входа." -#: src/Security/Authentication.php:373 +#: src/Security/Authentication.php:359 #, php-format msgid "Welcome %s" msgstr "Добро пожаловать, %s" -#: src/Security/Authentication.php:374 +#: src/Security/Authentication.php:360 msgid "Please upload a profile photo." msgstr "Пожалуйста, загрузите фотографию профиля." -#: src/Security/OpenWebAuth.php:163 +#: src/Security/OpenWebAuth.php:149 #, php-format msgid "OpenWebAuth: %1$s welcomes %2$s" msgstr "OpenWebAuth: %1$s приветствует %2$s" -#: src/Util/EMailer/MailBuilder.php:260 +#: src/Util/EMailer/MailBuilder.php:246 msgid "Friendica Notification" msgstr "Уведомление Friendica" -#: src/Util/EMailer/NotifyMailBuilder.php:78 -#: src/Util/EMailer/SystemMailBuilder.php:54 +#: src/Util/EMailer/NotifyMailBuilder.php:64 +#: src/Util/EMailer/SystemMailBuilder.php:40 #, php-format msgid "%1$s, %2$s Administrator" msgstr "%1$s, %2$s Администратор" -#: src/Util/EMailer/NotifyMailBuilder.php:80 -#: src/Util/EMailer/SystemMailBuilder.php:56 +#: src/Util/EMailer/NotifyMailBuilder.php:66 +#: src/Util/EMailer/SystemMailBuilder.php:42 #, php-format msgid "%s Administrator" msgstr "%s Администратор" -#: src/Util/EMailer/NotifyMailBuilder.php:193 -#: src/Util/EMailer/NotifyMailBuilder.php:217 -#: src/Util/EMailer/SystemMailBuilder.php:101 -#: src/Util/EMailer/SystemMailBuilder.php:118 +#: src/Util/EMailer/NotifyMailBuilder.php:179 +#: src/Util/EMailer/NotifyMailBuilder.php:203 +#: src/Util/EMailer/SystemMailBuilder.php:87 +#: src/Util/EMailer/SystemMailBuilder.php:104 msgid "thanks" msgstr "спасибо" -#: src/Util/Temporal.php:172 +#: src/Util/Temporal.php:158 msgid "YYYY-MM-DD or MM-DD" msgstr "YYYY-MM-DD или MM-DD" -#: src/Util/Temporal.php:280 +#: src/Util/Temporal.php:266 #, php-format msgid "Time zone: %s Change in Settings" msgstr "Временная зона: %s Изменить в Настройках" -#: src/Util/Temporal.php:320 src/Util/Temporal.php:329 +#: src/Util/Temporal.php:306 src/Util/Temporal.php:315 msgid "never" msgstr "никогда" -#: src/Util/Temporal.php:343 +#: src/Util/Temporal.php:329 msgid "less than a second ago" msgstr "менее секунды назад" -#: src/Util/Temporal.php:352 +#: src/Util/Temporal.php:338 msgid "year" msgstr "год" -#: src/Util/Temporal.php:352 +#: src/Util/Temporal.php:338 msgid "years" msgstr "лет" -#: src/Util/Temporal.php:353 +#: src/Util/Temporal.php:339 msgid "months" msgstr "мес." -#: src/Util/Temporal.php:354 +#: src/Util/Temporal.php:340 msgid "weeks" msgstr "нед." -#: src/Util/Temporal.php:355 +#: src/Util/Temporal.php:341 msgid "days" msgstr "дней" -#: src/Util/Temporal.php:356 +#: src/Util/Temporal.php:342 msgid "hour" msgstr "час" -#: src/Util/Temporal.php:356 +#: src/Util/Temporal.php:342 msgid "hours" msgstr "час." -#: src/Util/Temporal.php:357 +#: src/Util/Temporal.php:343 msgid "minute" msgstr "мин." -#: src/Util/Temporal.php:357 +#: src/Util/Temporal.php:343 msgid "minutes" msgstr "мин." -#: src/Util/Temporal.php:358 +#: src/Util/Temporal.php:344 msgid "second" msgstr "секунда" -#: src/Util/Temporal.php:358 +#: src/Util/Temporal.php:344 msgid "seconds" msgstr "сек." -#: src/Util/Temporal.php:367 +#: src/Util/Temporal.php:353 #, php-format msgid "in %1$d %2$s" msgstr "через %1$d %2$s" -#: src/Util/Temporal.php:370 +#: src/Util/Temporal.php:356 #, php-format msgid "%1$d %2$s ago" msgstr "%1$d %2$s назад" -#: src/Worker/PushSubscription.php:110 +#: src/Worker/PushSubscription.php:96 msgid "Notification from Friendica" msgstr "Уведомление от Friendica" -#: src/Worker/PushSubscription.php:111 +#: src/Worker/PushSubscription.php:97 msgid "Empty Post" msgstr "Пустая запись" -#: view/theme/duepuntozero/config.php:68 +#: view/theme/duepuntozero/config.php:56 msgid "default" msgstr "По умолчанию" -#: view/theme/duepuntozero/config.php:69 +#: view/theme/duepuntozero/config.php:57 msgid "greenzero" msgstr "greenzero" -#: view/theme/duepuntozero/config.php:70 +#: view/theme/duepuntozero/config.php:58 msgid "purplezero" msgstr "purplezero" -#: view/theme/duepuntozero/config.php:71 +#: view/theme/duepuntozero/config.php:59 msgid "easterbunny" msgstr "easterbunny" -#: view/theme/duepuntozero/config.php:72 +#: view/theme/duepuntozero/config.php:60 msgid "darkzero" msgstr "darkzero" -#: view/theme/duepuntozero/config.php:73 +#: view/theme/duepuntozero/config.php:61 msgid "comix" msgstr "comix" -#: view/theme/duepuntozero/config.php:74 +#: view/theme/duepuntozero/config.php:62 msgid "slackr" msgstr "slackr" -#: view/theme/duepuntozero/config.php:87 +#: view/theme/duepuntozero/config.php:75 msgid "Variations" msgstr "Вариации" -#: view/theme/frio/config.php:146 +#: view/theme/frio/config.php:134 msgid "Note" msgstr "Примечание" -#: view/theme/frio/config.php:146 +#: view/theme/frio/config.php:134 msgid "Check image permissions if all users are allowed to see the image" msgstr "Проверьте настройки разрешений изображения, оно должно быть видно всем пользователям" -#: view/theme/frio/config.php:152 +#: view/theme/frio/config.php:140 msgid "Appearance" msgstr "Внешний вид" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Accent color" msgstr "Цвет акцентов" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Blue" msgstr "Синий" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Red" msgstr "Красный" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Purple" msgstr "Фиолетовый" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Green" msgstr "Зелёный" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Pink" msgstr "Розовый" -#: view/theme/frio/config.php:154 +#: view/theme/frio/config.php:142 msgid "Copy or paste schemestring" msgstr "Скопируйте или вставьте код темы" -#: view/theme/frio/config.php:154 +#: view/theme/frio/config.php:142 msgid "" "You can copy this string to share your theme with others. Pasting here " "applies the schemestring" msgstr "Вы можете скопировать эту строку и поделиться настройками вашей темы с другими. Вставка строки здесь применяет настройки оформления темы." -#: view/theme/frio/config.php:155 +#: view/theme/frio/config.php:143 msgid "Navigation bar background color" msgstr "Цвет фона навигационной панели" -#: view/theme/frio/config.php:156 +#: view/theme/frio/config.php:144 msgid "Navigation bar icon color " msgstr "Цвет значков навигационной панели" -#: view/theme/frio/config.php:157 +#: view/theme/frio/config.php:145 msgid "Link color" msgstr "Цвет ссылок" -#: view/theme/frio/config.php:158 +#: view/theme/frio/config.php:146 msgid "Set the background color" msgstr "Установить цвет фона" -#: view/theme/frio/config.php:159 +#: view/theme/frio/config.php:147 msgid "Content background opacity" msgstr "Прозрачность фона основного содержимого" -#: view/theme/frio/config.php:160 +#: view/theme/frio/config.php:148 msgid "Set the background image" msgstr "Установить фоновую картинку" -#: view/theme/frio/config.php:161 +#: view/theme/frio/config.php:149 msgid "Background image style" msgstr "Стиль фонового изображения" -#: view/theme/frio/config.php:164 +#: view/theme/frio/config.php:152 msgid "Always open Compose page" msgstr "Всегда открывать страницу редактора" -#: view/theme/frio/config.php:164 +#: view/theme/frio/config.php:152 msgid "" "The New Post button always open the Compose page " "instead of the modal form. When this is disabled, the Compose page can be " "accessed with a middle click on the link or from the modal." msgstr "Кнопка создания новой записи всегда будет открывать страницу редактора вместо всплывающего окна. Когда это отключено, страница редактора может быть развёрнута из всплывающего окна, либо при открытии ссылки кнопки в новой вкладке." -#: view/theme/frio/config.php:168 +#: view/theme/frio/config.php:156 msgid "Login page background image" msgstr "Фоновое изображение страницы входа" -#: view/theme/frio/config.php:172 +#: view/theme/frio/config.php:160 msgid "Login page background color" msgstr "Цвет фона страницы входа" -#: view/theme/frio/config.php:172 +#: view/theme/frio/config.php:160 msgid "Leave background image and color empty for theme defaults" msgstr "Оставьте настройки фоновых цвета и изображения пустыми, чтобы применить настройки темы по-умолчанию." -#: view/theme/frio/php/Image.php:39 +#: view/theme/frio/php/Image.php:27 msgid "Top Banner" msgstr "Верхний баннер" -#: view/theme/frio/php/Image.php:39 +#: view/theme/frio/php/Image.php:27 msgid "" "Resize image to the width of the screen and show background color below on " "long pages." msgstr "Растянуть изображение по ширине экрана и показать заливку цветом под ним на длинных страницах." -#: view/theme/frio/php/Image.php:40 +#: view/theme/frio/php/Image.php:28 msgid "Full screen" msgstr "Во весь экран" -#: view/theme/frio/php/Image.php:40 +#: view/theme/frio/php/Image.php:28 msgid "" "Resize image to fill entire screen, clipping either the right or the bottom." msgstr "Растянуть изображение во весь экран, обрезав его часть справа или снизу." -#: view/theme/frio/php/Image.php:41 +#: view/theme/frio/php/Image.php:29 msgid "Single row mosaic" msgstr "Мозаика в один ряд" -#: view/theme/frio/php/Image.php:41 +#: view/theme/frio/php/Image.php:29 msgid "" "Resize image to repeat it on a single row, either vertical or horizontal." msgstr "Растянуть и размножить изображение в один ряд, вертикально или горизонтально." -#: view/theme/frio/php/Image.php:42 +#: view/theme/frio/php/Image.php:30 msgid "Mosaic" msgstr "Мозаика" -#: view/theme/frio/php/Image.php:42 +#: view/theme/frio/php/Image.php:30 msgid "Repeat image to fill the screen." msgstr "Размножить изображение по всему экрану." -#: view/theme/frio/php/default.php:82 view/theme/frio/php/standard.php:40 +#: view/theme/frio/php/default.php:70 view/theme/frio/php/standard.php:28 msgid "Skip to main content" msgstr "Пропустить до основного содержимого" -#: view/theme/frio/php/default.php:153 view/theme/frio/php/standard.php:75 +#: view/theme/frio/php/default.php:141 view/theme/frio/php/standard.php:63 msgid "Back to top" msgstr "Наверх" -#: view/theme/frio/php/scheme.php:105 +#: view/theme/frio/php/scheme.php:93 msgid "Light" msgstr "Светлая" -#: view/theme/frio/php/scheme.php:106 +#: view/theme/frio/php/scheme.php:94 msgid "Dark" msgstr "Тёмная" -#: view/theme/frio/php/scheme.php:107 +#: view/theme/frio/php/scheme.php:95 msgid "Black" msgstr "Чёрная" -#: view/theme/frio/php/scheme.php:118 +#: view/theme/frio/php/scheme.php:106 msgid "Custom" msgstr "Другое" -#: view/theme/frio/theme.php:214 +#: view/theme/frio/theme.php:202 msgid "Guest" msgstr "Гость" -#: view/theme/frio/theme.php:217 +#: view/theme/frio/theme.php:205 msgid "Visitor" msgstr "Посетитель" -#: view/theme/quattro/config.php:89 +#: view/theme/quattro/config.php:77 msgid "Alignment" msgstr "Выравнивание" -#: view/theme/quattro/config.php:89 +#: view/theme/quattro/config.php:77 msgid "Left" msgstr "Слева" -#: view/theme/quattro/config.php:89 +#: view/theme/quattro/config.php:77 msgid "Center" msgstr "Центр" -#: view/theme/quattro/config.php:90 +#: view/theme/quattro/config.php:78 msgid "Color scheme" msgstr "Цветовая схема" -#: view/theme/quattro/config.php:91 +#: view/theme/quattro/config.php:79 msgid "Posts font size" msgstr "Размер шрифта записей" -#: view/theme/quattro/config.php:92 +#: view/theme/quattro/config.php:80 msgid "Textareas font size" msgstr "Размер шрифта текстовых полей" -#: view/theme/vier/config.php:91 +#: view/theme/vier/config.php:79 msgid "Comma separated list of helper groups" msgstr "Список групп поддержки через запятую" -#: view/theme/vier/config.php:131 +#: view/theme/vier/config.php:119 msgid "don't show" msgstr "не показывать" -#: view/theme/vier/config.php:131 +#: view/theme/vier/config.php:119 msgid "show" msgstr "показывать" -#: view/theme/vier/config.php:137 +#: view/theme/vier/config.php:125 msgid "Set style" msgstr "Установить стиль" -#: view/theme/vier/config.php:138 +#: view/theme/vier/config.php:126 msgid "Community Pages" msgstr "Страницы сообщества" -#: view/theme/vier/config.php:139 view/theme/vier/theme.php:148 +#: view/theme/vier/config.php:127 view/theme/vier/theme.php:136 msgid "Community Profiles" msgstr "Профили сообщества" -#: view/theme/vier/config.php:140 +#: view/theme/vier/config.php:128 msgid "Help or @NewHere ?" msgstr "Помощь" -#: view/theme/vier/config.php:141 view/theme/vier/theme.php:319 +#: view/theme/vier/config.php:129 view/theme/vier/theme.php:307 msgid "Connect Services" msgstr "Подключить службы" -#: view/theme/vier/config.php:142 +#: view/theme/vier/config.php:130 msgid "Find Friends" msgstr "Найти друзей" -#: view/theme/vier/config.php:143 view/theme/vier/theme.php:175 +#: view/theme/vier/config.php:131 view/theme/vier/theme.php:163 msgid "Last users" msgstr "Последние пользователи" -#: view/theme/vier/theme.php:234 +#: view/theme/vier/theme.php:222 msgid "Quick Start" msgstr "Быстрый старт" diff --git a/view/lang/ru/strings.php b/view/lang/ru/strings.php index ff41a5321d..27c37c762e 100644 --- a/view/lang/ru/strings.php +++ b/view/lang/ru/strings.php @@ -856,7 +856,6 @@ $a->strings['An author or name was not found.'] = 'Автор или имя не $a->strings['No browser URL could be matched to this address.'] = 'Нет URL браузера, который соответствует этому адресу.'; $a->strings['Unable to match @-style Identity Address with a known protocol or email contact.'] = 'Не получается совместить этот адрес с известным протоколом или контактом электронной почты.'; $a->strings['Use mailto: in front of address to force email check.'] = 'Bcgjkmpeqnt mailto: перед адресом для быстрого доступа к email.'; -$a->strings['The profile address specified belongs to a network which has been disabled on this site.'] = 'Указанный адрес профиля принадлежит сети, недоступной на этом сайта.'; $a->strings['Limited profile. This person will be unable to receive direct/personal notifications from you.'] = 'Ограниченный профиль. Этот человек не сможет получить прямые / личные уведомления от вас.'; $a->strings['Unable to retrieve contact information.'] = 'Невозможно получить контактную информацию.'; $a->strings['Starts:'] = 'Начало:'; @@ -881,7 +880,6 @@ $a->strings['Show map'] = 'Показать карту'; $a->strings['Hide map'] = 'Скрыть карту'; $a->strings['%s\'s birthday'] = 'день рождения %s'; $a->strings['Happy Birthday %s'] = 'С днём рождения %s'; -$a->strings['Detected languages in this post:\n%s'] = 'Обнаруженные в этой записи языки:\n%s'; $a->strings['activity'] = 'активность'; $a->strings['comment'] = 'комментарий'; $a->strings['post'] = 'пост'; @@ -1263,8 +1261,6 @@ $a->strings['Posts per user on community page'] = 'Число записей н $a->strings['Enable Mail support'] = 'Включить поддержку электронной почты'; $a->strings['Enable built-in mail support to poll IMAP folders and to reply via mail.'] = 'Включает встроенную поддержку электронной почты, позволяющую работать с папками IMAP и отвечать по почте.'; $a->strings['Mail support can\'t be enabled because the PHP IMAP module is not installed.'] = 'Поддержка почты не может быть включена, так как не установлен модуль PHP IMAP.'; -$a->strings['Enable OStatus support'] = 'Включить поддержку OStatus'; -$a->strings['Enable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public.'] = 'Включить встроенную поддержку OStatus (StatusNet, GNU Social и т.п.). Всё общение в OStatus происходит публично.'; $a->strings['Diaspora support can\'t be enabled because Friendica was installed into a sub directory.'] = 'Поддержка Diaspora не может быть включена, так как Френдика была установлена в подкаталог.'; $a->strings['Enable Diaspora support'] = 'Включить поддержку Diaspora'; $a->strings['Enable built-in Diaspora network compatibility for communicating with diaspora servers.'] = 'Включить встроенную поддержку Diaspora для общения с серверами сети Diaspora.'; @@ -1306,7 +1302,6 @@ $a->strings['When the database cleanup is enabled, this defines the days after w $a->strings['Lifespan of unclaimed items'] = 'Время жизни ничейных элементов'; $a->strings['When the database cleanup is enabled, this defines the days after which unclaimed remote items (mostly content from the relay) will be deleted. Default value is 90 days. Defaults to the general lifespan value of remote items if set to 0.'] = 'Когда очистка базы данных включена, эта настройка определяет число дней, после которого ничейные элементы (в основном, данные с ретранслятора) будут удалены. Значение по умолчанию 90 дней. Приравнивается ко времени жизни элементов других серверов, если выставлено в 0.'; $a->strings['Lifespan of raw conversation data'] = 'Время жизни необработанных данных коммуникаций.'; -$a->strings['The conversation data is used for ActivityPub and OStatus, as well as for debug purposes. It should be safe to remove it after 14 days, default is 90 days.'] = 'Эти данные используются для ActivityPub и OStatus, а так же для диагностики. Обычно их можно спокойно удалять после 14 дней, значение по-умолчанию 90 дней.'; $a->strings['Maximum numbers of comments per post'] = 'Максимальное число комментариев для записи'; $a->strings['How much comments should be shown for each post? Default value is 100.'] = 'Сколько комментариев должно быть показано для каждой записи? Значение по-умолчанию: 100.'; $a->strings['Maximum numbers of comments per post on the display page'] = 'Максимальное число комментариев на запись при его просмотре'; @@ -1580,7 +1575,6 @@ $a->strings['Submit Request'] = 'Отправить запрос'; $a->strings['You already added this contact.'] = 'Вы уже добавили этот контакт.'; $a->strings['The network type couldn\'t be detected. Contact can\'t be added.'] = 'Тип сети не может быть определен. Контакт не может быть добавлен.'; $a->strings['Diaspora support isn\'t enabled. Contact can\'t be added.'] = 'Поддержка Diaspora не включена. Контакт не может быть добавлен.'; -$a->strings['OStatus support is disabled. Contact can\'t be added.'] = 'Поддержка OStatus выключена. Контакт не может быть добавлен.'; $a->strings['Please answer the following:'] = 'Пожалуйста, ответьте следующее:'; $a->strings['Your Identity Address:'] = 'Ваш адрес:'; $a->strings['Profile URL'] = 'URL профиля'; @@ -2087,10 +2081,6 @@ $a->strings['Incomplete request data'] = 'Неполные данные запр $a->strings['Please copy the following authentication code into your application and close this window: %s'] = 'Пожалуйста, скопируйте следующий код аутентификации в ваше приложение и закройте это окно: %s'; $a->strings['Invalid data or unknown client'] = 'Ошибочные данные или неизвестный клиент'; $a->strings['Unsupported or missing grant type'] = 'Неподдерживаемый или отсутствующий тип гранта.'; -$a->strings['Resubscribing to OStatus contacts'] = 'Переподписаться на OStatus-контакты.'; -$a->strings['Keep this window open until done.'] = 'Держать окно открытым до завершения.'; -$a->strings['✔ Done'] = '✔ Готово'; -$a->strings['No OStatus contacts to resubscribe to.'] = 'Нет контактов OStatus для переподписки.'; $a->strings['Subscribing to contacts'] = 'Подписка на контакты'; $a->strings['No contact provided.'] = 'Не указан контакт.'; $a->strings['Couldn\'t fetch information for contact.'] = 'Невозможно получить информацию о контакте.'; @@ -2102,6 +2092,7 @@ $a->strings['Done'] = 'Готово'; $a->strings['success'] = 'удачно'; $a->strings['failed'] = 'неудача'; $a->strings['ignored'] = 'игнорирован'; +$a->strings['Keep this window open until done.'] = 'Держать окно открытым до завершения.'; $a->strings['The Photo is not available.'] = 'Фото недоступно.'; $a->strings['The Photo with id %s is not available.'] = 'Фотография с id %s недоступна.'; $a->strings['Invalid external resource with url %s.'] = 'Проблема с внешним ресурсом по адресу %s.'; @@ -2125,9 +2116,9 @@ $a->strings['Collection (%s)'] = 'Коллекция (%s)'; $a->strings['Followers (%s)'] = 'Подписчики (%s)'; $a->strings['%d more'] = '%d ещё'; $a->strings['No contacts.'] = 'Нет контактов.'; -$a->strings['%s\'s timeline'] = 'Лента %s'; $a->strings['%s\'s posts'] = 'Записи %s'; $a->strings['%s\'s comments'] = 'Комментарии %s'; +$a->strings['%s\'s timeline'] = 'Лента %s'; $a->strings['Image exceeds size limit of %s'] = 'Изображение превышает лимит размера в %s'; $a->strings['Image upload didn\'t complete, please try again'] = 'Не получилось загрузить изображение, попробуйте снова'; $a->strings['Image file is missing'] = 'Файл изображения не найден'; @@ -2403,7 +2394,6 @@ $a->strings['Failed to connect with email account using the settings provided.'] $a->strings['Diaspora (Socialhome, Hubzilla)'] = 'Diaspora (Socialhome, Hubzilla)'; $a->strings['Built-in support for %s connectivity is enabled'] = 'Встроенная поддержка для %s включена'; $a->strings['Built-in support for %s connectivity is disabled'] = 'Встроенная поддержка для %s отключена'; -$a->strings['OStatus (GNU Social)'] = 'OStatus (GNU Social)'; $a->strings['Email access is disabled on this site.'] = 'Доступ эл. почты отключен на этом сайте.'; $a->strings['None'] = 'Ничего'; $a->strings['Default (Mastodon will display the title and a link to the post)'] = 'По-умолчанию (Mastodon будет показывать запись как заголовок и ссылку на статью)'; @@ -2431,7 +2421,6 @@ $a->strings['Article Mode'] = 'Режим статей'; $a->strings['Controls how posts with titles are transmitted. Mastodon and its forks don\'t display the content of these posts if the post is created in the correct (default) way.'] = 'Как будут передаваться записи, у которых указан заголовок. Mastodon и похожие платформы не показывают содержимое таких записей, если они созданы в обычном формате (по-умолчанию), оставляя лишь ссылку на них.'; $a->strings['Your legacy ActivityPub/GNU Social account'] = 'Ваша старая учётная запись ActivityPub/GNU Social'; $a->strings['If you enter your old account name from an ActivityPub based system or your GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done.'] = 'Если вы введете тут вашу старую учетную запись от платформы совместимой с ActivityPub или GNU Social/Statusnet (в виде пользователь@домен), ваши контакты оттуда будут автоматически добавлены. Поле будет очищено когда все контакты будут добавлены.'; -$a->strings['Repair OStatus subscriptions'] = 'Починить подписки OStatus'; $a->strings['Email/Mailbox Setup'] = 'Настройка эл. почты / почтового ящика'; $a->strings['If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox.'] = 'Если вы хотите общаться с Email контактами, используя этот сервис (по желанию), пожалуйста, уточните, как подключиться к вашему почтовому ящику.'; $a->strings['Last successful email check:'] = 'Последняя успешная проверка электронной почты:'; @@ -2757,7 +2746,6 @@ $a->strings['%s commented on %s\'s post'] = '%s прокомментировал $a->strings['%s created a new post'] = '%s написал новое сообщение'; $a->strings['Friend Suggestion'] = 'Предложение в друзья'; $a->strings['Friend/Connect Request'] = 'Запрос в друзья / на подключение'; -$a->strings['New Follower'] = 'Новый подписчик'; $a->strings['%1$s wants to follow you'] = '%1$s хочет подписаться на вас.'; $a->strings['%1$s has started following you'] = '%1$s подписался на вас'; $a->strings['%1$s liked your comment on %2$s'] = '%1$s нравится ваш комментарий %2$s'; @@ -2914,10 +2902,6 @@ $a->strings['Reacted with %s by: %s'] = 'Отреагировали как %s : $a->strings['Quote shared by: %s'] = 'Процитировано: %s'; $a->strings['Chat'] = 'Чат'; $a->strings['(no subject)'] = '(нет темы)'; -$a->strings['%s is now following %s.'] = '%s теперь подписан на %s.'; -$a->strings['following'] = 'следует'; -$a->strings['%s stopped following %s.'] = '%s отписался от %s.'; -$a->strings['stopped following'] = 'отписка от'; $a->strings['The folder %s must be writable by webserver.'] = 'Каталог %s должен быть доступен для записи веб-сервером.'; $a->strings['Login failed.'] = 'Войти не удалось.'; $a->strings['Login failed. Please check your credentials.'] = 'Ошибка входа. Пожалуйста, проверьте данные для входа.'; diff --git a/view/lang/sv/messages.po b/view/lang/sv/messages.po index 9840d159a6..080c40c757 100644 --- a/view/lang/sv/messages.po +++ b/view/lang/sv/messages.po @@ -1,8 +1,7 @@ # FRIENDICA Distributed Social Network -# SPDX-FileCopyrightText: Copyright (C) 2010-2024, the Friendica project -# -# SPDX-License-Identifier: AGPL-3.0-or-later -# +# Copyright (C) 2010-2024, the Friendica project +# This file is distributed under the same license as the Friendica package. +# # Translators: # Hypolite Petovanupload_max_filesize
is set to %s (%s byte)"
msgstr ""
-#: src/Module/Admin/Site.php:497
+#: src/Module/Admin/Site.php:489
msgid "Maximum image length"
msgstr "Maximal bildlängd"
-#: src/Module/Admin/Site.php:497
+#: src/Module/Admin/Site.php:489
msgid ""
"Maximum length in pixels of the longest side of uploaded images. Default is "
"-1, which means no limits."
msgstr ""
-#: src/Module/Admin/Site.php:498
+#: src/Module/Admin/Site.php:490
msgid "JPEG image quality"
msgstr "Kvalité för JPEG-bilden"
-#: src/Module/Admin/Site.php:498
+#: src/Module/Admin/Site.php:490
msgid ""
"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
"100, which is full quality."
msgstr ""
-#: src/Module/Admin/Site.php:500
+#: src/Module/Admin/Site.php:491
+msgid "Maximum media file size"
+msgstr ""
+
+#: src/Module/Admin/Site.php:491
+#, php-format
+msgid ""
+"Maximum size in bytes of uploaded media files. Default is 0, which means no limits. You can put k, m, or g behind the desired value for KiB, MiB, GiB, respectively.\n"
+"\t\t\t\t\t\t\t\t\t\t\t\t\tThe value of upload_max_filesize
in your PHP.ini
needs be set to at least the desired limit.\n"
+"\t\t\t\t\t\t\t\t\t\t\t\t\tCurrently upload_max_filesize
is set to %s (%s byte)"
+msgstr ""
+
+#: src/Module/Admin/Site.php:496
msgid "Register policy"
msgstr "Registrera policy"
-#: src/Module/Admin/Site.php:501
+#: src/Module/Admin/Site.php:497
msgid "Maximum Users"
msgstr ""
-#: src/Module/Admin/Site.php:501
+#: src/Module/Admin/Site.php:497
msgid ""
"If defined, the register policy is automatically closed when the given "
"number of users is reached and reopens the registry when the number drops "
@@ -4732,167 +4749,167 @@ msgid ""
"not when the policy is set to approval."
msgstr ""
-#: src/Module/Admin/Site.php:502
+#: src/Module/Admin/Site.php:498
msgid "Maximum Daily Registrations"
msgstr "Maximala registreringar varje dag"
-#: src/Module/Admin/Site.php:502
+#: src/Module/Admin/Site.php:498
msgid ""
"If registration is permitted above, this sets the maximum number of new user"
" registrations to accept per day. If register is set to closed, this "
"setting has no effect."
msgstr ""
-#: src/Module/Admin/Site.php:503
+#: src/Module/Admin/Site.php:499
msgid "Register text"
msgstr "Registrera text"
-#: src/Module/Admin/Site.php:503
+#: src/Module/Admin/Site.php:499
msgid ""
"Will be displayed prominently on the registration page. You can use BBCode "
"here."
msgstr ""
-#: src/Module/Admin/Site.php:504
+#: src/Module/Admin/Site.php:500
msgid "Forbidden Nicknames"
msgstr "Förbjudna smeknamn"
-#: src/Module/Admin/Site.php:504
+#: src/Module/Admin/Site.php:500
msgid ""
"Comma separated list of nicknames that are forbidden from registration. "
"Preset is a list of role names according RFC 2142."
msgstr ""
-#: src/Module/Admin/Site.php:505
+#: src/Module/Admin/Site.php:501
msgid "Accounts abandoned after x days"
msgstr "Konton som övergavs efter x dagar"
-#: src/Module/Admin/Site.php:505
+#: src/Module/Admin/Site.php:501
msgid ""
"Will not waste system resources polling external sites for abandonded "
"accounts. Enter 0 for no time limit."
msgstr ""
-#: src/Module/Admin/Site.php:506
+#: src/Module/Admin/Site.php:502
msgid "Allowed friend domains"
msgstr "Tillåtna vän-domäner"
-#: src/Module/Admin/Site.php:506
+#: src/Module/Admin/Site.php:502
msgid ""
"Comma separated list of domains which are allowed to establish friendships "
"with this site. Wildcards are accepted. Empty to allow any domains"
msgstr ""
-#: src/Module/Admin/Site.php:507
+#: src/Module/Admin/Site.php:503
msgid "Allowed email domains"
msgstr "Tillåtna e-postdomäner"
-#: src/Module/Admin/Site.php:507
+#: src/Module/Admin/Site.php:503
msgid ""
"Comma separated list of domains which are allowed in email addresses for "
"registrations to this site. Wildcards are accepted. Empty to allow any "
"domains"
msgstr ""
-#: src/Module/Admin/Site.php:508
+#: src/Module/Admin/Site.php:504
msgid "Disallowed email domains"
msgstr ""
-#: src/Module/Admin/Site.php:508
+#: src/Module/Admin/Site.php:504
msgid ""
"Comma separated list of domains which are rejected as email addresses for "
"registrations to this site. Wildcards are accepted."
msgstr ""
-#: src/Module/Admin/Site.php:509
+#: src/Module/Admin/Site.php:505
msgid "No OEmbed rich content"
msgstr ""
-#: src/Module/Admin/Site.php:509
+#: src/Module/Admin/Site.php:505
msgid ""
"Don't show the rich content (e.g. embedded PDF), except from the domains "
"listed below."
msgstr ""
-#: src/Module/Admin/Site.php:510
+#: src/Module/Admin/Site.php:506
msgid "Trusted third-party domains"
msgstr ""
-#: src/Module/Admin/Site.php:510
+#: src/Module/Admin/Site.php:506
msgid ""
"Comma separated list of domains from which content is allowed to be embedded"
" in posts like with OEmbed. All sub-domains of the listed domains are "
"allowed as well."
msgstr ""
-#: src/Module/Admin/Site.php:511
+#: src/Module/Admin/Site.php:507
msgid "Block public"
msgstr "Blockera publik"
-#: src/Module/Admin/Site.php:511
+#: src/Module/Admin/Site.php:507
msgid ""
"Check to block public access to all otherwise public personal pages on this "
"site unless you are currently logged in."
msgstr ""
-#: src/Module/Admin/Site.php:512
+#: src/Module/Admin/Site.php:508
msgid "Force publish"
msgstr "Tvinga publicering"
-#: src/Module/Admin/Site.php:512
+#: src/Module/Admin/Site.php:508
msgid ""
"Check to force all profiles on this site to be listed in the site directory."
msgstr ""
-#: src/Module/Admin/Site.php:512
+#: src/Module/Admin/Site.php:508
msgid "Enabling this may violate privacy laws like the GDPR"
msgstr ""
-#: src/Module/Admin/Site.php:513
+#: src/Module/Admin/Site.php:509
msgid "Global directory URL"
msgstr ""
-#: src/Module/Admin/Site.php:513
+#: src/Module/Admin/Site.php:509
msgid ""
"URL to the global directory. If this is not set, the global directory is "
"completely unavailable to the application."
msgstr ""
-#: src/Module/Admin/Site.php:514
+#: src/Module/Admin/Site.php:510
msgid "Private posts by default for new users"
msgstr "Privata inlägg som standard för nya användare"
-#: src/Module/Admin/Site.php:514
+#: src/Module/Admin/Site.php:510
msgid ""
"Set default post permissions for all new members to the default privacy "
"circle rather than public."
msgstr ""
-#: src/Module/Admin/Site.php:515
+#: src/Module/Admin/Site.php:511
msgid "Don't include post content in email notifications"
msgstr "Inkludera inte inläggets innehåll i aviseringar för e-post"
-#: src/Module/Admin/Site.php:515
+#: src/Module/Admin/Site.php:511
msgid ""
"Don't include the content of a post/comment/private message/etc. in the "
"email notifications that are sent out from this site, as a privacy measure."
msgstr ""
-#: src/Module/Admin/Site.php:516
+#: src/Module/Admin/Site.php:512
msgid "Disallow public access to addons listed in the apps menu."
msgstr ""
-#: src/Module/Admin/Site.php:516
+#: src/Module/Admin/Site.php:512
msgid ""
"Checking this box will restrict addons listed in the apps menu to members "
"only."
msgstr ""
-#: src/Module/Admin/Site.php:517
+#: src/Module/Admin/Site.php:513
msgid "Don't embed private images in posts"
msgstr ""
-#: src/Module/Admin/Site.php:517
+#: src/Module/Admin/Site.php:513
msgid ""
"Don't replace locally-hosted private photos in posts with an embedded copy "
"of the image. This means that contacts who receive posts containing private "
@@ -4900,11 +4917,11 @@ msgid ""
"while."
msgstr ""
-#: src/Module/Admin/Site.php:518
+#: src/Module/Admin/Site.php:514
msgid "Explicit Content"
msgstr ""
-#: src/Module/Admin/Site.php:518
+#: src/Module/Admin/Site.php:514
msgid ""
"Set this to announce that your node is used mostly for explicit content that"
" might not be suited for minors. This information will be published in the "
@@ -4913,329 +4930,319 @@ msgid ""
"will be shown at the user registration page."
msgstr ""
-#: src/Module/Admin/Site.php:519
+#: src/Module/Admin/Site.php:515
msgid "Only local search"
msgstr ""
-#: src/Module/Admin/Site.php:519
+#: src/Module/Admin/Site.php:515
msgid ""
"Blocks search for users who are not logged in to prevent crawlers from "
"blocking your system."
msgstr ""
-#: src/Module/Admin/Site.php:520
+#: src/Module/Admin/Site.php:516
msgid "Blocked tags for trending tags"
msgstr ""
-#: src/Module/Admin/Site.php:520
+#: src/Module/Admin/Site.php:516
msgid ""
"Comma separated list of hashtags that shouldn't be displayed in the trending"
" tags."
msgstr ""
-#: src/Module/Admin/Site.php:521
+#: src/Module/Admin/Site.php:517
msgid "Cache contact avatars"
msgstr ""
-#: src/Module/Admin/Site.php:521
+#: src/Module/Admin/Site.php:517
msgid ""
"Locally store the avatar pictures of the contacts. This uses a lot of "
"storage space but it increases the performance."
msgstr ""
-#: src/Module/Admin/Site.php:522
+#: src/Module/Admin/Site.php:518
msgid "Allow Users to set remote_self"
msgstr ""
-#: src/Module/Admin/Site.php:522
+#: src/Module/Admin/Site.php:518
msgid ""
"With checking this, every user is allowed to mark every contact as a "
"remote_self in the repair contact dialog. Setting this flag on a contact "
"causes mirroring every posting of that contact in the users stream."
msgstr ""
-#: src/Module/Admin/Site.php:523
+#: src/Module/Admin/Site.php:519
msgid "Allow Users to set up relay channels"
msgstr ""
-#: src/Module/Admin/Site.php:523
+#: src/Module/Admin/Site.php:519
msgid ""
"If enabled, it is possible to create relay users that are used to reshare "
"content based on user defined channels."
msgstr ""
-#: src/Module/Admin/Site.php:524
+#: src/Module/Admin/Site.php:520
msgid "Adjust the feed poll frequency"
msgstr ""
-#: src/Module/Admin/Site.php:524
+#: src/Module/Admin/Site.php:520
msgid "Automatically detect and set the best feed poll frequency."
msgstr ""
-#: src/Module/Admin/Site.php:525
+#: src/Module/Admin/Site.php:521
msgid "Minimum poll interval"
msgstr ""
-#: src/Module/Admin/Site.php:525
+#: src/Module/Admin/Site.php:521
msgid ""
"Minimal distance in minutes between two polls for mail and feed contacts. "
"Reasonable values are between 1 and 59."
msgstr ""
-#: src/Module/Admin/Site.php:526
+#: src/Module/Admin/Site.php:522
msgid "Enable multiple registrations"
msgstr ""
-#: src/Module/Admin/Site.php:526
+#: src/Module/Admin/Site.php:522
msgid "Enable users to register additional accounts for use as pages."
msgstr ""
-#: src/Module/Admin/Site.php:527
+#: src/Module/Admin/Site.php:523
msgid "Enable OpenID"
msgstr ""
-#: src/Module/Admin/Site.php:527
+#: src/Module/Admin/Site.php:523
msgid "Enable OpenID support for registration and logins."
msgstr ""
-#: src/Module/Admin/Site.php:528
+#: src/Module/Admin/Site.php:524
msgid "Enable full name check"
msgstr ""
-#: src/Module/Admin/Site.php:528
+#: src/Module/Admin/Site.php:524
msgid ""
"Prevents users from registering with a display name with fewer than two "
"parts separated by spaces."
msgstr ""
-#: src/Module/Admin/Site.php:529
+#: src/Module/Admin/Site.php:525
msgid "Email administrators on new registration"
msgstr ""
-#: src/Module/Admin/Site.php:529
+#: src/Module/Admin/Site.php:525
msgid ""
"If enabled and the system is set to an open registration, an email for each "
"new registration is sent to the administrators."
msgstr ""
-#: src/Module/Admin/Site.php:530
+#: src/Module/Admin/Site.php:526
msgid "Community pages for visitors"
msgstr ""
-#: src/Module/Admin/Site.php:530
+#: src/Module/Admin/Site.php:526
msgid ""
"Which community pages should be available for visitors. Local users always "
"see both pages."
msgstr ""
-#: src/Module/Admin/Site.php:531
+#: src/Module/Admin/Site.php:527
msgid "Posts per user on community page"
msgstr ""
-#: src/Module/Admin/Site.php:531
+#: src/Module/Admin/Site.php:527
msgid ""
"The maximum number of posts per user on the local community page. This is "
"useful, when a single user floods the local community page."
msgstr ""
-#: src/Module/Admin/Site.php:532
+#: src/Module/Admin/Site.php:528
msgid "Posts per server on community page"
msgstr ""
-#: src/Module/Admin/Site.php:532
+#: src/Module/Admin/Site.php:528
msgid ""
"The maximum number of posts per server on the global community page. This is"
" useful, when posts from a single server flood the global community page."
msgstr ""
-#: src/Module/Admin/Site.php:534
+#: src/Module/Admin/Site.php:530
msgid "Enable Mail support"
msgstr ""
-#: src/Module/Admin/Site.php:534
+#: src/Module/Admin/Site.php:530
msgid ""
"Enable built-in mail support to poll IMAP folders and to reply via mail."
msgstr ""
-#: src/Module/Admin/Site.php:535
+#: src/Module/Admin/Site.php:531
msgid ""
"Mail support can't be enabled because the PHP IMAP module is not installed."
msgstr ""
-#: src/Module/Admin/Site.php:536
-msgid "Enable OStatus support"
-msgstr ""
-
-#: src/Module/Admin/Site.php:536
-msgid ""
-"Enable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
-"communications in OStatus are public."
-msgstr ""
-
-#: src/Module/Admin/Site.php:538
+#: src/Module/Admin/Site.php:533
msgid ""
"Diaspora support can't be enabled because Friendica was installed into a sub"
" directory."
msgstr ""
-#: src/Module/Admin/Site.php:539
+#: src/Module/Admin/Site.php:534
msgid "Enable Diaspora support"
msgstr "Aktivera Diaspora-support"
-#: src/Module/Admin/Site.php:539
+#: src/Module/Admin/Site.php:534
msgid ""
"Enable built-in Diaspora network compatibility for communicating with "
"diaspora servers."
msgstr ""
-#: src/Module/Admin/Site.php:540
+#: src/Module/Admin/Site.php:535
msgid "Verify SSL"
msgstr "Bekräfta SSL"
-#: src/Module/Admin/Site.php:540
+#: src/Module/Admin/Site.php:535
msgid ""
"If you wish, you can turn on strict certificate checking. This will mean you"
" cannot connect (at all) to self-signed SSL sites."
msgstr ""
-#: src/Module/Admin/Site.php:541
+#: src/Module/Admin/Site.php:536
msgid "Proxy user"
msgstr "Proxy-användare"
-#: src/Module/Admin/Site.php:541
+#: src/Module/Admin/Site.php:536
msgid "User name for the proxy server."
msgstr ""
-#: src/Module/Admin/Site.php:542
+#: src/Module/Admin/Site.php:537
msgid "Proxy URL"
msgstr "URL för proxy"
-#: src/Module/Admin/Site.php:542
+#: src/Module/Admin/Site.php:537
msgid ""
"If you want to use a proxy server that Friendica should use to connect to "
"the network, put the URL of the proxy here."
msgstr ""
-#: src/Module/Admin/Site.php:543
+#: src/Module/Admin/Site.php:538
msgid "Network timeout"
msgstr "Tidsgräns för nätverket"
-#: src/Module/Admin/Site.php:543
+#: src/Module/Admin/Site.php:538
msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
msgstr "Värdet är i sekunder. Ställ in det till 0 för obegränsat (rekommenderas inte)."
-#: src/Module/Admin/Site.php:544
+#: src/Module/Admin/Site.php:539
msgid "Maximum Load Average"
msgstr ""
-#: src/Module/Admin/Site.php:544
+#: src/Module/Admin/Site.php:539
#, php-format
msgid ""
"Maximum system load before delivery and poll processes are deferred - "
"default %d."
msgstr ""
-#: src/Module/Admin/Site.php:545
+#: src/Module/Admin/Site.php:540
msgid "Minimal Memory"
msgstr ""
-#: src/Module/Admin/Site.php:545
+#: src/Module/Admin/Site.php:540
msgid ""
"Minimal free memory in MB for the worker. Needs access to /proc/meminfo - "
"default 0 (deactivated)."
msgstr ""
-#: src/Module/Admin/Site.php:546
+#: src/Module/Admin/Site.php:541
msgid "Periodically optimize tables"
msgstr ""
-#: src/Module/Admin/Site.php:546
+#: src/Module/Admin/Site.php:541
msgid "Periodically optimize tables like the cache and the workerqueue"
msgstr ""
-#: src/Module/Admin/Site.php:548
+#: src/Module/Admin/Site.php:543
msgid "Discover followers/followings from contacts"
msgstr ""
-#: src/Module/Admin/Site.php:548
+#: src/Module/Admin/Site.php:543
msgid ""
"If enabled, contacts are checked for their followers and following contacts."
msgstr ""
-#: src/Module/Admin/Site.php:549
+#: src/Module/Admin/Site.php:544
msgid "None - deactivated"
msgstr ""
-#: src/Module/Admin/Site.php:550
+#: src/Module/Admin/Site.php:545
msgid ""
"Local contacts - contacts of our local contacts are discovered for their "
"followers/followings."
msgstr ""
-#: src/Module/Admin/Site.php:551
+#: src/Module/Admin/Site.php:546
msgid ""
"Interactors - contacts of our local contacts and contacts who interacted on "
"locally visible postings are discovered for their followers/followings."
msgstr ""
-#: src/Module/Admin/Site.php:553
+#: src/Module/Admin/Site.php:548
msgid "Only update contacts/servers with local data"
msgstr ""
-#: src/Module/Admin/Site.php:553
+#: src/Module/Admin/Site.php:548
msgid ""
"If enabled, the system will only look for changes in contacts and servers "
"that engaged on this system by either being in a contact list of a user or "
"when posts or comments exists from the contact on this system."
msgstr ""
-#: src/Module/Admin/Site.php:554
+#: src/Module/Admin/Site.php:549
msgid "Synchronize the contacts with the directory server"
msgstr ""
-#: src/Module/Admin/Site.php:554
+#: src/Module/Admin/Site.php:549
msgid ""
"if enabled, the system will check periodically for new contacts on the "
"defined directory server."
msgstr ""
-#: src/Module/Admin/Site.php:556
+#: src/Module/Admin/Site.php:551
msgid "Discover contacts from other servers"
msgstr ""
-#: src/Module/Admin/Site.php:556
+#: src/Module/Admin/Site.php:551
msgid ""
"Periodically query other servers for contacts and servers that they know of."
" The system queries Friendica, Mastodon and Hubzilla servers. Keep it "
"deactivated on small machines to decrease the database size and load."
msgstr ""
-#: src/Module/Admin/Site.php:557
+#: src/Module/Admin/Site.php:552
msgid "Days between requery"
msgstr ""
-#: src/Module/Admin/Site.php:557
+#: src/Module/Admin/Site.php:552
msgid ""
"Number of days after which a server is requeried for their contacts and "
"servers it knows of. This is only used when the discovery is activated."
msgstr ""
-#: src/Module/Admin/Site.php:558
+#: src/Module/Admin/Site.php:553
msgid "Search the local directory"
msgstr ""
-#: src/Module/Admin/Site.php:558
+#: src/Module/Admin/Site.php:553
msgid ""
"Search the local directory instead of the global directory. When searching "
"locally, every search will be executed on the global directory in the "
"background. This improves the search results when the search is repeated."
msgstr ""
-#: src/Module/Admin/Site.php:560
+#: src/Module/Admin/Site.php:555
msgid "Publish server information"
msgstr ""
-#: src/Module/Admin/Site.php:560
+#: src/Module/Admin/Site.php:555
msgid ""
"If enabled, general server and usage data will be published. The data "
"contains the name and version of the server, number of users with public "
@@ -5243,50 +5250,50 @@ msgid ""
" href=\"http://the-federation.info/\">the-federation.info for details."
msgstr ""
-#: src/Module/Admin/Site.php:562
+#: src/Module/Admin/Site.php:557
msgid "Check upstream version"
msgstr ""
-#: src/Module/Admin/Site.php:562
+#: src/Module/Admin/Site.php:557
msgid ""
"Enables checking for new Friendica versions at github. If there is a new "
"version, you will be informed in the admin panel overview."
msgstr ""
-#: src/Module/Admin/Site.php:563
+#: src/Module/Admin/Site.php:558
msgid "Suppress Tags"
msgstr ""
-#: src/Module/Admin/Site.php:563
+#: src/Module/Admin/Site.php:558
msgid "Suppress showing a list of hashtags at the end of the posting."
msgstr ""
-#: src/Module/Admin/Site.php:564
+#: src/Module/Admin/Site.php:559
msgid "Clean database"
msgstr ""
-#: src/Module/Admin/Site.php:564
+#: src/Module/Admin/Site.php:559
msgid ""
"Remove old remote items, orphaned database records and old content from some"
" other helper tables."
msgstr ""
-#: src/Module/Admin/Site.php:565
+#: src/Module/Admin/Site.php:560
msgid "Lifespan of remote items"
msgstr ""
-#: src/Module/Admin/Site.php:565
+#: src/Module/Admin/Site.php:560
msgid ""
"When the database cleanup is enabled, this defines the days after which "
"remote items will be deleted. Own items, and marked or filed items are "
"always kept. 0 disables this behaviour."
msgstr ""
-#: src/Module/Admin/Site.php:566
+#: src/Module/Admin/Site.php:561
msgid "Lifespan of unclaimed items"
msgstr ""
-#: src/Module/Admin/Site.php:566
+#: src/Module/Admin/Site.php:561
msgid ""
"When the database cleanup is enabled, this defines the days after which "
"unclaimed remote items (mostly content from the relay) will be deleted. "
@@ -5294,175 +5301,184 @@ msgid ""
"items if set to 0."
msgstr ""
-#: src/Module/Admin/Site.php:567
+#: src/Module/Admin/Site.php:562
msgid "Lifespan of raw conversation data"
msgstr ""
-#: src/Module/Admin/Site.php:567
+#: src/Module/Admin/Site.php:562
msgid ""
-"The conversation data is used for ActivityPub and OStatus, as well as for "
-"debug purposes. It should be safe to remove it after 14 days, default is 90 "
-"days."
+"The conversation data is used for ActivityPub, as well as for debug "
+"purposes. It should be safe to remove it after 14 days, default is 90 days."
msgstr ""
-#: src/Module/Admin/Site.php:568
+#: src/Module/Admin/Site.php:563
msgid "Maximum numbers of comments per post"
msgstr ""
-#: src/Module/Admin/Site.php:568
+#: src/Module/Admin/Site.php:563
msgid "How much comments should be shown for each post? Default value is 100."
msgstr ""
-#: src/Module/Admin/Site.php:569
+#: src/Module/Admin/Site.php:564
msgid "Maximum numbers of comments per post on the display page"
msgstr ""
-#: src/Module/Admin/Site.php:569
+#: src/Module/Admin/Site.php:564
msgid ""
"How many comments should be shown on the single view for each post? Default "
"value is 1000."
msgstr ""
-#: src/Module/Admin/Site.php:570
+#: src/Module/Admin/Site.php:565
msgid "Items per page"
msgstr ""
-#: src/Module/Admin/Site.php:570
+#: src/Module/Admin/Site.php:565
msgid ""
"Number of items per page in stream pages (network, community, "
"profile/contact statuses, search)."
msgstr ""
-#: src/Module/Admin/Site.php:571
+#: src/Module/Admin/Site.php:566
msgid "Items per page for mobile devices"
msgstr ""
-#: src/Module/Admin/Site.php:571
+#: src/Module/Admin/Site.php:566
msgid ""
"Number of items per page in stream pages (network, community, "
"profile/contact statuses, search) for mobile devices."
msgstr ""
-#: src/Module/Admin/Site.php:572
+#: src/Module/Admin/Site.php:567
msgid "Temp path"
msgstr "Tillfällig genväg"
-#: src/Module/Admin/Site.php:572
+#: src/Module/Admin/Site.php:567
msgid ""
"If you have a restricted system where the webserver can't access the system "
"temp path, enter another path here."
msgstr ""
-#: src/Module/Admin/Site.php:573
+#: src/Module/Admin/Site.php:568
msgid "Only search in tags"
msgstr "Sök endast i taggar"
-#: src/Module/Admin/Site.php:573
+#: src/Module/Admin/Site.php:568
msgid "On large systems the text search can slow down the system extremely."
msgstr ""
-#: src/Module/Admin/Site.php:574
+#: src/Module/Admin/Site.php:569
+msgid "Limited search scope"
+msgstr ""
+
+#: src/Module/Admin/Site.php:569
+msgid ""
+"If enabled, searches will only be performed in the data used for the "
+"channels and not in all posts."
+msgstr ""
+
+#: src/Module/Admin/Site.php:570
msgid "Maximum age of items in the search table"
msgstr ""
-#: src/Module/Admin/Site.php:574
+#: src/Module/Admin/Site.php:570
msgid ""
"Maximum age of items in the search table in days. Lower values will increase"
" the performance and reduce disk usage. 0 means no age restriction."
msgstr ""
-#: src/Module/Admin/Site.php:575
+#: src/Module/Admin/Site.php:571
msgid "Generate counts per contact circle when calculating network count"
msgstr ""
-#: src/Module/Admin/Site.php:575
+#: src/Module/Admin/Site.php:571
msgid ""
"On systems with users that heavily use contact circles the query can be very"
" expensive."
msgstr ""
-#: src/Module/Admin/Site.php:576
+#: src/Module/Admin/Site.php:572
msgid "Process \"view\" activities"
msgstr ""
-#: src/Module/Admin/Site.php:576
+#: src/Module/Admin/Site.php:572
msgid ""
"\"view\" activities are mostly geberated by Peertube systems. Per default "
"they are not processed for performance reasons. Only activate this option on"
" performant system."
msgstr ""
-#: src/Module/Admin/Site.php:577
+#: src/Module/Admin/Site.php:573
msgid "Days, after which a contact is archived"
msgstr ""
-#: src/Module/Admin/Site.php:577
+#: src/Module/Admin/Site.php:573
msgid ""
"Number of days that we try to deliver content or to update the contact data "
"before we archive a contact."
msgstr ""
-#: src/Module/Admin/Site.php:579
+#: src/Module/Admin/Site.php:575
msgid "Maximum number of parallel workers"
msgstr ""
-#: src/Module/Admin/Site.php:579
+#: src/Module/Admin/Site.php:575
#, php-format
msgid ""
"On shared hosters set this to %d. On larger systems, values of %d are great."
" Default value is %d."
msgstr ""
-#: src/Module/Admin/Site.php:580
+#: src/Module/Admin/Site.php:576
msgid "Maximum load for workers"
msgstr ""
-#: src/Module/Admin/Site.php:580
+#: src/Module/Admin/Site.php:576
msgid "Maximum load that causes a cooldown before each worker function call."
msgstr ""
-#: src/Module/Admin/Site.php:581
+#: src/Module/Admin/Site.php:577
msgid "Enable fastlane"
msgstr ""
-#: src/Module/Admin/Site.php:581
+#: src/Module/Admin/Site.php:577
msgid ""
"When enabed, the fastlane mechanism starts an additional worker if processes"
" with higher priority are blocked by processes of lower priority."
msgstr ""
-#: src/Module/Admin/Site.php:582
+#: src/Module/Admin/Site.php:578
msgid "Decoupled receiver"
msgstr ""
-#: src/Module/Admin/Site.php:582
+#: src/Module/Admin/Site.php:578
msgid ""
"Decouple incoming ActivityPub posts by processing them in the background via"
" a worker process. Only enable this on fast systems."
msgstr ""
-#: src/Module/Admin/Site.php:583
+#: src/Module/Admin/Site.php:579
msgid "Cron interval"
msgstr ""
-#: src/Module/Admin/Site.php:583
+#: src/Module/Admin/Site.php:579
msgid "Minimal period in minutes between two calls of the \"Cron\" worker job."
msgstr ""
-#: src/Module/Admin/Site.php:584
+#: src/Module/Admin/Site.php:580
msgid "Worker defer limit"
msgstr ""
-#: src/Module/Admin/Site.php:584
+#: src/Module/Admin/Site.php:580
msgid ""
"Per default the systems tries delivering for 15 times before dropping it."
msgstr ""
-#: src/Module/Admin/Site.php:585
+#: src/Module/Admin/Site.php:581
msgid "Worker fetch limit"
msgstr ""
-#: src/Module/Admin/Site.php:585
+#: src/Module/Admin/Site.php:581
msgid ""
"Number of worker tasks that are fetched in a single query. Higher values "
"should increase the performance, too high values will mostly likely decrease"
@@ -5470,214 +5486,214 @@ msgid ""
"system."
msgstr ""
-#: src/Module/Admin/Site.php:587
+#: src/Module/Admin/Site.php:583
msgid "Direct relay transfer"
msgstr ""
-#: src/Module/Admin/Site.php:587
+#: src/Module/Admin/Site.php:583
msgid ""
"Enables the direct transfer to other servers without using the relay servers"
msgstr ""
-#: src/Module/Admin/Site.php:588
+#: src/Module/Admin/Site.php:584
msgid "Relay scope"
msgstr ""
-#: src/Module/Admin/Site.php:588
+#: src/Module/Admin/Site.php:584
msgid ""
"Can be \"all\" or \"tags\". \"all\" means that every public post should be "
"received. \"tags\" means that only posts with selected tags should be "
"received."
msgstr ""
-#: src/Module/Admin/Site.php:588 src/Module/Contact/Profile.php:314
-#: src/Module/Settings/TwoFactor/Index.php:146
+#: src/Module/Admin/Site.php:584 src/Module/Contact/Profile.php:314
+#: src/Module/Settings/TwoFactor/Index.php:132
msgid "Disabled"
msgstr ""
-#: src/Module/Admin/Site.php:588
+#: src/Module/Admin/Site.php:584
msgid "all"
msgstr ""
-#: src/Module/Admin/Site.php:588
+#: src/Module/Admin/Site.php:584
msgid "tags"
msgstr ""
-#: src/Module/Admin/Site.php:589
+#: src/Module/Admin/Site.php:585
msgid "Server tags"
msgstr ""
-#: src/Module/Admin/Site.php:589
+#: src/Module/Admin/Site.php:585
msgid "Comma separated list of tags for the \"tags\" subscription."
msgstr ""
-#: src/Module/Admin/Site.php:590
+#: src/Module/Admin/Site.php:586
msgid "Deny Server tags"
msgstr ""
-#: src/Module/Admin/Site.php:590
+#: src/Module/Admin/Site.php:586
msgid "Comma separated list of tags that are rejected."
msgstr ""
-#: src/Module/Admin/Site.php:591
+#: src/Module/Admin/Site.php:587
msgid "Maximum amount of tags"
msgstr ""
-#: src/Module/Admin/Site.php:591
+#: src/Module/Admin/Site.php:587
msgid ""
"Maximum amount of tags in a post before it is rejected as spam. The post has"
" to contain at least one link. Posts from subscribed accounts will not be "
"rejected."
msgstr ""
-#: src/Module/Admin/Site.php:592
+#: src/Module/Admin/Site.php:588
msgid "Allow user tags"
msgstr ""
-#: src/Module/Admin/Site.php:592
+#: src/Module/Admin/Site.php:588
msgid ""
"If enabled, the tags from the saved searches will used for the \"tags\" "
"subscription in addition to the \"relay_server_tags\"."
msgstr ""
-#: src/Module/Admin/Site.php:593
+#: src/Module/Admin/Site.php:589
msgid "Deny undetected languages"
msgstr ""
-#: src/Module/Admin/Site.php:593
+#: src/Module/Admin/Site.php:589
msgid "If enabled, posts with undetected languages will be rejected."
msgstr ""
-#: src/Module/Admin/Site.php:594
+#: src/Module/Admin/Site.php:590
msgid "Language Quality"
msgstr ""
-#: src/Module/Admin/Site.php:594
+#: src/Module/Admin/Site.php:590
msgid "The minimum language quality that is required to accept the post."
msgstr ""
-#: src/Module/Admin/Site.php:595
+#: src/Module/Admin/Site.php:591
msgid "Number of languages for the language detection"
msgstr ""
-#: src/Module/Admin/Site.php:595
+#: src/Module/Admin/Site.php:591
msgid ""
"The system detects a list of languages per post. Only if the desired "
"languages are in the list, the message will be accepted. The higher the "
"number, the more posts will be falsely detected."
msgstr ""
-#: src/Module/Admin/Site.php:597
+#: src/Module/Admin/Site.php:593
msgid "Maximum age of channel"
msgstr ""
-#: src/Module/Admin/Site.php:597
+#: src/Module/Admin/Site.php:593
msgid ""
"This defines the maximum age in hours of items that should be displayed in "
"channels. This affects the channel performance."
msgstr ""
-#: src/Module/Admin/Site.php:598
+#: src/Module/Admin/Site.php:594
msgid "Maximum number of channel posts"
msgstr ""
-#: src/Module/Admin/Site.php:598
+#: src/Module/Admin/Site.php:594
msgid ""
"For performance reasons, the channels use a dedicated table to store "
"content. The higher the value the slower the channels."
msgstr ""
-#: src/Module/Admin/Site.php:599
+#: src/Module/Admin/Site.php:595
msgid "Interaction score days"
msgstr ""
-#: src/Module/Admin/Site.php:599
+#: src/Module/Admin/Site.php:595
msgid "Number of days that are used to calculate the interaction score."
msgstr ""
-#: src/Module/Admin/Site.php:600
+#: src/Module/Admin/Site.php:596
msgid "Maximum number of posts per author"
msgstr ""
-#: src/Module/Admin/Site.php:600
+#: src/Module/Admin/Site.php:596
msgid ""
"Maximum number of posts per page by author if the contact frequency is set "
"to \"Display only few posts\". If there are more posts, then the post with "
"the most interactions will be displayed."
msgstr ""
-#: src/Module/Admin/Site.php:601
+#: src/Module/Admin/Site.php:597
msgid "Sharer interaction days"
msgstr ""
-#: src/Module/Admin/Site.php:601
+#: src/Module/Admin/Site.php:597
msgid ""
"Number of days of the last interaction that are used to define which sharers"
" are used for the \"sharers of sharers\" channel."
msgstr ""
-#: src/Module/Admin/Site.php:604
+#: src/Module/Admin/Site.php:600
msgid "Start Relocation"
msgstr ""
-#: src/Module/Admin/Storage.php:46
+#: src/Module/Admin/Storage.php:32
#, php-format
msgid "Storage backend, %s is invalid."
msgstr ""
-#: src/Module/Admin/Storage.php:73
+#: src/Module/Admin/Storage.php:59
#, php-format
msgid "Storage backend %s error: %s"
msgstr ""
-#: src/Module/Admin/Storage.php:84 src/Module/Admin/Storage.php:87
+#: src/Module/Admin/Storage.php:70 src/Module/Admin/Storage.php:73
msgid "Invalid storage backend setting value."
msgstr ""
-#: src/Module/Admin/Storage.php:139
+#: src/Module/Admin/Storage.php:125
msgid "Current Storage Backend"
msgstr ""
-#: src/Module/Admin/Storage.php:140
+#: src/Module/Admin/Storage.php:126
msgid "Storage Configuration"
msgstr ""
-#: src/Module/Admin/Storage.php:141 src/Module/BaseAdmin.php:91
+#: src/Module/Admin/Storage.php:127 src/Module/BaseAdmin.php:77
msgid "Storage"
msgstr ""
-#: src/Module/Admin/Storage.php:143
+#: src/Module/Admin/Storage.php:129
msgid "Save & Use storage backend"
msgstr ""
-#: src/Module/Admin/Storage.php:144
+#: src/Module/Admin/Storage.php:130
msgid "Use storage backend"
msgstr ""
-#: src/Module/Admin/Storage.php:145
+#: src/Module/Admin/Storage.php:131
msgid "Save & Reload"
msgstr ""
-#: src/Module/Admin/Storage.php:146
+#: src/Module/Admin/Storage.php:132
msgid "This backend doesn't have custom settings"
msgstr ""
-#: src/Module/Admin/Storage.php:148
+#: src/Module/Admin/Storage.php:134
msgid ""
"Changing the current backend is prohibited because it is set by an "
"environment variable"
msgstr ""
-#: src/Module/Admin/Storage.php:150
+#: src/Module/Admin/Storage.php:136
msgid "Database (legacy)"
msgstr ""
-#: src/Module/Admin/Summary.php:55
+#: src/Module/Admin/Summary.php:41
#, php-format
msgid "Template engine (%s) error: %s"
msgstr ""
-#: src/Module/Admin/Summary.php:59
+#: src/Module/Admin/Summary.php:45
#, php-format
msgid ""
"Your DB still runs with MyISAM tables. You should change the engine type to "
@@ -5688,7 +5704,7 @@ msgid ""
" an automatic conversion.The server domain pattern syntax is case-insensitive shell wildcard, comprising the following special characters:
\n" "This file can be downloaded from the /friendica
path of any "
"Friendica server.
debug.store_source
config key is set in "
"config/local.config.php
for future items to have sources."
msgstr ""
-#: src/Module/Moderation/Item/Source.php:92
+#: src/Module/Moderation/Item/Source.php:84
msgid "Item Guid"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:95
+#: src/Module/Moderation/Report/Create.php:81
msgid "Contact not found or their server is already blocked on this node."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:136
+#: src/Module/Moderation/Report/Create.php:122
msgid "Please login to access this page."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:165
-#: src/Module/Moderation/Report/Create.php:180
-#: src/Module/Moderation/Report/Create.php:208
-#: src/Module/Moderation/Report/Create.php:260
-#: src/Module/Moderation/Report/Create.php:279
+#: src/Module/Moderation/Report/Create.php:151
+#: src/Module/Moderation/Report/Create.php:166
+#: src/Module/Moderation/Report/Create.php:194
+#: src/Module/Moderation/Report/Create.php:246
+#: src/Module/Moderation/Report/Create.php:265
msgid "Create Moderation Report"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:166
+#: src/Module/Moderation/Report/Create.php:152
msgid "Pick Contact"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:167
+#: src/Module/Moderation/Report/Create.php:153
msgid ""
"Please enter below the contact address or profile URL you would like to "
"create a moderation report about."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:171
+#: src/Module/Moderation/Report/Create.php:157
msgid "Contact address/URL"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:181
+#: src/Module/Moderation/Report/Create.php:167
msgid "Pick Category"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:182
+#: src/Module/Moderation/Report/Create.php:168
msgid "Please pick below the category of your report."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:186
-#: src/Module/Moderation/Report/Create.php:311
+#: src/Module/Moderation/Report/Create.php:172
+#: src/Module/Moderation/Report/Create.php:297
msgid "Spam"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:186
+#: src/Module/Moderation/Report/Create.php:172
msgid ""
"This contact is publishing many repeated/overly long posts/replies or "
"advertising their product/websites in otherwise irrelevant conversations."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:187
-#: src/Module/Moderation/Report/Create.php:312
+#: src/Module/Moderation/Report/Create.php:173
+#: src/Module/Moderation/Report/Create.php:298
msgid "Illegal Content"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:187
+#: src/Module/Moderation/Report/Create.php:173
msgid ""
"This contact is publishing content that is considered illegal in this node's"
" hosting juridiction."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:188
-#: src/Module/Moderation/Report/Create.php:313
+#: src/Module/Moderation/Report/Create.php:174
+#: src/Module/Moderation/Report/Create.php:299
msgid "Community Safety"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:188
+#: src/Module/Moderation/Report/Create.php:174
msgid ""
"This contact aggravated you or other people, by being provocative or "
"insensitive, intentionally or not. This includes disclosing people's private"
@@ -8452,12 +8460,12 @@ msgid ""
"replies."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:189
-#: src/Module/Moderation/Report/Create.php:314
+#: src/Module/Moderation/Report/Create.php:175
+#: src/Module/Moderation/Report/Create.php:300
msgid "Unwanted Content/Behavior"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:189
+#: src/Module/Moderation/Report/Create.php:175
msgid ""
"This contact has repeatedly published content irrelevant to the node's theme"
" or is openly criticizing the node's administration/moderation without "
@@ -8465,89 +8473,89 @@ msgid ""
"nitpicking on a sensitive topic."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:190
-#: src/Module/Moderation/Report/Create.php:315
+#: src/Module/Moderation/Report/Create.php:176
+#: src/Module/Moderation/Report/Create.php:301
msgid "Rules Violation"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:190
+#: src/Module/Moderation/Report/Create.php:176
msgid ""
"This contact violated one or more rules of this node. You will be able to "
"pick which one(s) in the next step."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:191
+#: src/Module/Moderation/Report/Create.php:177
msgid ""
"Please elaborate below why you submitted this report. The more details you "
"provide, the better your report can be handled."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:193
+#: src/Module/Moderation/Report/Create.php:179
msgid "Additional Information"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:193
+#: src/Module/Moderation/Report/Create.php:179
msgid ""
"Please provide any additional information relevant to this particular "
"report. You will be able to attach posts by this contact in the next step, "
"but any context is welcome."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:209
+#: src/Module/Moderation/Report/Create.php:195
msgid "Pick Rules"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:210
+#: src/Module/Moderation/Report/Create.php:196
msgid "Please pick below the node rules you believe this contact violated."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:261
+#: src/Module/Moderation/Report/Create.php:247
msgid "Pick Posts"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:262
+#: src/Module/Moderation/Report/Create.php:248
msgid "Please optionally pick posts to attach to your report."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:281
+#: src/Module/Moderation/Report/Create.php:267
msgid "Submit Report"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:282
+#: src/Module/Moderation/Report/Create.php:268
msgid "Further Action"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:283
+#: src/Module/Moderation/Report/Create.php:269
msgid ""
"You can also perform one of the following action on the contact you "
"reported:"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:291
+#: src/Module/Moderation/Report/Create.php:277
msgid "Nothing"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:292
+#: src/Module/Moderation/Report/Create.php:278
msgid "Collapse contact"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:292
+#: src/Module/Moderation/Report/Create.php:278
msgid ""
"Their posts and replies will keep appearing in your Network page but their "
"content will be collapsed by default."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:293
+#: src/Module/Moderation/Report/Create.php:279
msgid ""
"Their posts won't appear in your Network page anymore, but their replies can"
" appear in forum threads. They still can follow you."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:294
+#: src/Module/Moderation/Report/Create.php:280
msgid "Block contact"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:294
+#: src/Module/Moderation/Report/Create.php:280
msgid ""
"Their posts won't appear in your Network page anymore, but their replies can"
" appear in forum threads, with their content collapsed by default. They "
@@ -8555,708 +8563,694 @@ msgid ""
"means."
msgstr ""
-#: src/Module/Moderation/Report/Create.php:297
+#: src/Module/Moderation/Report/Create.php:283
msgid "Forward report"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:297
+#: src/Module/Moderation/Report/Create.php:283
msgid "Would you ike to forward this report to the remote server?"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:330
+#: src/Module/Moderation/Report/Create.php:316
msgid "1. Pick a contact"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:331
+#: src/Module/Moderation/Report/Create.php:317
msgid "2. Pick a category"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:332
+#: src/Module/Moderation/Report/Create.php:318
msgid "2a. Pick rules"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:333
+#: src/Module/Moderation/Report/Create.php:319
msgid "2b. Add comment"
msgstr ""
-#: src/Module/Moderation/Report/Create.php:334
+#: src/Module/Moderation/Report/Create.php:320
msgid "3. Pick posts"
msgstr ""
-#: src/Module/Moderation/Reports.php:105
+#: src/Module/Moderation/Reports.php:97
msgid "List of reports"
msgstr ""
-#: src/Module/Moderation/Reports.php:106
+#: src/Module/Moderation/Reports.php:98
msgid "This page display reports created by our or remote users."
msgstr ""
-#: src/Module/Moderation/Reports.php:107
+#: src/Module/Moderation/Reports.php:99
msgid "No report exists at this node."
msgstr ""
-#: src/Module/Moderation/Reports.php:110
+#: src/Module/Moderation/Reports.php:102
msgid "Category"
msgstr ""
-#: src/Module/Moderation/Reports.php:114
+#: src/Module/Moderation/Reports.php:106
#, php-format
msgid "%s total report"
msgid_plural "%s total reports"
msgstr[0] ""
msgstr[1] ""
-#: src/Module/Moderation/Reports.php:117
+#: src/Module/Moderation/Reports.php:109
msgid "URL of the reported contact."
msgstr ""
-#: src/Module/Moderation/Summary.php:57 src/Module/Settings/Account.php:431
+#: src/Module/Moderation/Summary.php:43 src/Module/Settings/Account.php:422
msgid "Channel Relay"
msgstr ""
-#: src/Module/Moderation/Summary.php:77
+#: src/Module/Moderation/Summary.php:63
msgid "Registered users"
msgstr "Registrerade användare"
-#: src/Module/Moderation/Summary.php:79
+#: src/Module/Moderation/Summary.php:65
msgid "Pending registrations"
msgstr "Väntande registreringar"
-#: src/Module/Moderation/Users/Active.php:43
-#: src/Module/Moderation/Users/Index.php:43
+#: src/Module/Moderation/Users/Active.php:29
+#: src/Module/Moderation/Users/Index.php:29
#, php-format
msgid "%s user blocked"
msgid_plural "%s users blocked"
msgstr[0] ""
msgstr[1] ""
-#: src/Module/Moderation/Users/Active.php:51
-#: src/Module/Moderation/Users/Active.php:85
-#: src/Module/Moderation/Users/Blocked.php:51
-#: src/Module/Moderation/Users/Blocked.php:85
-#: src/Module/Moderation/Users/Index.php:58
-#: src/Module/Moderation/Users/Index.php:92
+#: src/Module/Moderation/Users/Active.php:37
+#: src/Module/Moderation/Users/Active.php:71
+#: src/Module/Moderation/Users/Blocked.php:37
+#: src/Module/Moderation/Users/Blocked.php:71
+#: src/Module/Moderation/Users/Index.php:44
+#: src/Module/Moderation/Users/Index.php:78
msgid "You can't remove yourself"
msgstr ""
-#: src/Module/Moderation/Users/Active.php:55
-#: src/Module/Moderation/Users/Blocked.php:55
-#: src/Module/Moderation/Users/Index.php:62
+#: src/Module/Moderation/Users/Active.php:41
+#: src/Module/Moderation/Users/Blocked.php:41
+#: src/Module/Moderation/Users/Index.php:48
#, php-format
msgid "%s user deleted"
msgid_plural "%s users deleted"
msgstr[0] "%sanvändare togs bort"
msgstr[1] "%s användare togs bort"
-#: src/Module/Moderation/Users/Active.php:83
-#: src/Module/Moderation/Users/Blocked.php:83
-#: src/Module/Moderation/Users/Index.php:90
+#: src/Module/Moderation/Users/Active.php:69
+#: src/Module/Moderation/Users/Blocked.php:69
+#: src/Module/Moderation/Users/Index.php:76
#, php-format
msgid "User \"%s\" deleted"
msgstr ""
-#: src/Module/Moderation/Users/Active.php:93
-#: src/Module/Moderation/Users/Index.php:100
+#: src/Module/Moderation/Users/Active.php:79
+#: src/Module/Moderation/Users/Index.php:86
#, php-format
msgid "User \"%s\" blocked"
msgstr ""
-#: src/Module/Moderation/Users/Active.php:126
-#: src/Module/Moderation/Users/Blocked.php:126
-#: src/Module/Moderation/Users/Deleted.php:83
-#: src/Module/Moderation/Users/Index.php:140
-#: src/Module/Moderation/Users/Index.php:160
+#: src/Module/Moderation/Users/Active.php:112
+#: src/Module/Moderation/Users/Blocked.php:112
+#: src/Module/Moderation/Users/Deleted.php:69
+#: src/Module/Moderation/Users/Index.php:126
+#: src/Module/Moderation/Users/Index.php:146
msgid "Register date"
msgstr "Datum för registrering"
-#: src/Module/Moderation/Users/Active.php:126
-#: src/Module/Moderation/Users/Blocked.php:126
-#: src/Module/Moderation/Users/Deleted.php:83
-#: src/Module/Moderation/Users/Index.php:140
-#: src/Module/Moderation/Users/Index.php:160
+#: src/Module/Moderation/Users/Active.php:112
+#: src/Module/Moderation/Users/Blocked.php:112
+#: src/Module/Moderation/Users/Deleted.php:69
+#: src/Module/Moderation/Users/Index.php:126
+#: src/Module/Moderation/Users/Index.php:146
msgid "Last login"
msgstr "Senaste inloggning"
-#: src/Module/Moderation/Users/Active.php:126
-#: src/Module/Moderation/Users/Blocked.php:126
-#: src/Module/Moderation/Users/Deleted.php:83
-#: src/Module/Moderation/Users/Index.php:140
-#: src/Module/Moderation/Users/Index.php:160
+#: src/Module/Moderation/Users/Active.php:112
+#: src/Module/Moderation/Users/Blocked.php:112
+#: src/Module/Moderation/Users/Deleted.php:69
+#: src/Module/Moderation/Users/Index.php:126
+#: src/Module/Moderation/Users/Index.php:146
msgid "Last public item"
msgstr ""
-#: src/Module/Moderation/Users/Active.php:134
+#: src/Module/Moderation/Users/Active.php:120
msgid "Active Accounts"
msgstr ""
-#: src/Module/Moderation/Users/Active.php:138
-#: src/Module/Moderation/Users/Blocked.php:137
-#: src/Module/Moderation/Users/Index.php:153
+#: src/Module/Moderation/Users/Active.php:124
+#: src/Module/Moderation/Users/Blocked.php:123
+#: src/Module/Moderation/Users/Index.php:139
msgid "User blocked"
msgstr ""
-#: src/Module/Moderation/Users/Active.php:139
-#: src/Module/Moderation/Users/Blocked.php:139
-#: src/Module/Moderation/Users/Index.php:155
+#: src/Module/Moderation/Users/Active.php:125
+#: src/Module/Moderation/Users/Blocked.php:125
+#: src/Module/Moderation/Users/Index.php:141
msgid "Site admin"
msgstr ""
-#: src/Module/Moderation/Users/Active.php:140
-#: src/Module/Moderation/Users/Blocked.php:140
-#: src/Module/Moderation/Users/Index.php:156
+#: src/Module/Moderation/Users/Active.php:126
+#: src/Module/Moderation/Users/Blocked.php:126
+#: src/Module/Moderation/Users/Index.php:142
msgid "Account expired"
msgstr "Kontot slutade gälla"
-#: src/Module/Moderation/Users/Active.php:141
-#: src/Module/Moderation/Users/Index.php:159
+#: src/Module/Moderation/Users/Active.php:127
+#: src/Module/Moderation/Users/Index.php:145
msgid "Create a new user"
msgstr ""
-#: src/Module/Moderation/Users/Active.php:147
-#: src/Module/Moderation/Users/Blocked.php:146
-#: src/Module/Moderation/Users/Index.php:165
+#: src/Module/Moderation/Users/Active.php:133
+#: src/Module/Moderation/Users/Blocked.php:132
+#: src/Module/Moderation/Users/Index.php:151
msgid ""
"Selected users will be deleted!\\n\\nEverything these users had posted on "
"this site will be permanently deleted!\\n\\nAre you sure?"
msgstr ""
-#: src/Module/Moderation/Users/Active.php:148
-#: src/Module/Moderation/Users/Blocked.php:147
-#: src/Module/Moderation/Users/Index.php:166
+#: src/Module/Moderation/Users/Active.php:134
+#: src/Module/Moderation/Users/Blocked.php:133
+#: src/Module/Moderation/Users/Index.php:152
msgid ""
"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
"site will be permanently deleted!\\n\\nAre you sure?"
msgstr ""
-#: src/Module/Moderation/Users/Blocked.php:43
-#: src/Module/Moderation/Users/Index.php:50
+#: src/Module/Moderation/Users/Blocked.php:29
+#: src/Module/Moderation/Users/Index.php:36
#, php-format
msgid "%s user unblocked"
msgid_plural "%s users unblocked"
msgstr[0] ""
msgstr[1] ""
-#: src/Module/Moderation/Users/Blocked.php:92
-#: src/Module/Moderation/Users/Index.php:106
+#: src/Module/Moderation/Users/Blocked.php:78
+#: src/Module/Moderation/Users/Index.php:92
#, php-format
msgid "User \"%s\" unblocked"
msgstr ""
-#: src/Module/Moderation/Users/Blocked.php:134
+#: src/Module/Moderation/Users/Blocked.php:120
msgid "Blocked Users"
msgstr ""
-#: src/Module/Moderation/Users/Create.php:62
+#: src/Module/Moderation/Users/Create.php:48
msgid "New User"
msgstr "Ny användare"
-#: src/Module/Moderation/Users/Create.php:63
+#: src/Module/Moderation/Users/Create.php:49
msgid "Add User"
msgstr "Lägg till användare"
-#: src/Module/Moderation/Users/Create.php:70
+#: src/Module/Moderation/Users/Create.php:56
msgid "Name of the new user."
msgstr "Namn på den nya användaren."
-#: src/Module/Moderation/Users/Create.php:71
+#: src/Module/Moderation/Users/Create.php:57
msgid "Nickname"
msgstr "Smeknamn"
-#: src/Module/Moderation/Users/Create.php:71
+#: src/Module/Moderation/Users/Create.php:57
msgid "Nickname of the new user."
msgstr "Smeknamn på den nya användaren."
-#: src/Module/Moderation/Users/Create.php:72
+#: src/Module/Moderation/Users/Create.php:58
msgid "Email address of the new user."
msgstr "E-postadress för den nya användaren."
-#: src/Module/Moderation/Users/Deleted.php:81
+#: src/Module/Moderation/Users/Deleted.php:67
msgid "Users awaiting permanent deletion"
msgstr ""
-#: src/Module/Moderation/Users/Deleted.php:83
-#: src/Module/Moderation/Users/Index.php:160
+#: src/Module/Moderation/Users/Deleted.php:69
+#: src/Module/Moderation/Users/Index.php:146
msgid "Permanent deletion"
msgstr ""
-#: src/Module/Moderation/Users/Index.php:150
+#: src/Module/Moderation/Users/Index.php:136
msgid "User waiting for permanent deletion"
msgstr ""
-#: src/Module/Moderation/Users/Pending.php:44
+#: src/Module/Moderation/Users/Pending.php:30
#, php-format
msgid "%s user approved"
msgid_plural "%s users approved"
msgstr[0] ""
msgstr[1] ""
-#: src/Module/Moderation/Users/Pending.php:51
+#: src/Module/Moderation/Users/Pending.php:37
#, php-format
msgid "%s registration revoked"
msgid_plural "%s registrations revoked"
msgstr[0] ""
msgstr[1] ""
-#: src/Module/Moderation/Users/Pending.php:76
+#: src/Module/Moderation/Users/Pending.php:62
msgid "Account approved."
msgstr "Kontot har godkänts."
-#: src/Module/Moderation/Users/Pending.php:82
+#: src/Module/Moderation/Users/Pending.php:68
msgid "Registration revoked"
msgstr ""
-#: src/Module/Moderation/Users/Pending.php:97
+#: src/Module/Moderation/Users/Pending.php:83
msgid "User registrations awaiting review"
msgstr ""
-#: src/Module/Moderation/Users/Pending.php:99
+#: src/Module/Moderation/Users/Pending.php:85
msgid "Request date"
msgstr "Datum för begäran"
-#: src/Module/Moderation/Users/Pending.php:100
+#: src/Module/Moderation/Users/Pending.php:86
msgid "No registrations."
msgstr "Inga registreringar."
-#: src/Module/Moderation/Users/Pending.php:101
+#: src/Module/Moderation/Users/Pending.php:87
msgid "Note from the user"
msgstr ""
-#: src/Module/Moderation/Users/Pending.php:103
+#: src/Module/Moderation/Users/Pending.php:89
msgid "Deny"
msgstr "Avslå"
-#: src/Module/Notifications/Introductions.php:99
+#: src/Module/Notifications/Introductions.php:91
msgid "Show Ignored Requests"
msgstr "Visa förfrågningar du ignorerat"
-#: src/Module/Notifications/Introductions.php:99
+#: src/Module/Notifications/Introductions.php:91
msgid "Hide Ignored Requests"
msgstr "Dölj förfrågningar du ignorerat"
-#: src/Module/Notifications/Introductions.php:115
-#: src/Module/Notifications/Introductions.php:178
+#: src/Module/Notifications/Introductions.php:107
+#: src/Module/Notifications/Introductions.php:170
msgid "Notification type:"
msgstr ""
-#: src/Module/Notifications/Introductions.php:118
+#: src/Module/Notifications/Introductions.php:110
msgid "Suggested by:"
msgstr ""
-#: src/Module/Notifications/Introductions.php:143
+#: src/Module/Notifications/Introductions.php:135
msgid "Claims to be known to you: "
msgstr "Hävdar att du vet vem han/hon är: "
-#: src/Module/Notifications/Introductions.php:152
+#: src/Module/Notifications/Introductions.php:144
msgid "Shall your connection be bidirectional or not?"
msgstr ""
-#: src/Module/Notifications/Introductions.php:153
+#: src/Module/Notifications/Introductions.php:145
#, php-format
msgid ""
"Accepting %s as a friend allows %s to subscribe to your posts, and you will "
"also receive updates from them in your news feed."
msgstr ""
-#: src/Module/Notifications/Introductions.php:154
+#: src/Module/Notifications/Introductions.php:146
#, php-format
msgid ""
"Accepting %s as a subscriber allows them to subscribe to your posts, but you"
" will not receive updates from them in your news feed."
msgstr ""
-#: src/Module/Notifications/Introductions.php:156
+#: src/Module/Notifications/Introductions.php:148
msgid "Friend"
msgstr "Vän"
-#: src/Module/Notifications/Introductions.php:157
+#: src/Module/Notifications/Introductions.php:149
msgid "Subscriber"
msgstr ""
-#: src/Module/Notifications/Introductions.php:216
+#: src/Module/Notifications/Introductions.php:208
msgid "No introductions."
msgstr "Inga presentationer."
-#: src/Module/Notifications/Introductions.php:217
-#: src/Module/Notifications/Notifications.php:135
+#: src/Module/Notifications/Introductions.php:209
+#: src/Module/Notifications/Notifications.php:127
#, php-format
msgid "No more %s notifications."
msgstr ""
-#: src/Module/Notifications/Notification.php:135
+#: src/Module/Notifications/Notification.php:121
msgid "You must be logged in to show this page."
msgstr ""
-#: src/Module/Notifications/Notifications.php:66
+#: src/Module/Notifications/Notifications.php:52
msgid "Network Notifications"
msgstr "Nätverksaviseringar"
-#: src/Module/Notifications/Notifications.php:72
+#: src/Module/Notifications/Notifications.php:58
msgid "System Notifications"
msgstr "Systemets aviseringar"
-#: src/Module/Notifications/Notifications.php:78
+#: src/Module/Notifications/Notifications.php:64
msgid "Personal Notifications"
msgstr "Privata aviseringar"
-#: src/Module/Notifications/Notifications.php:84
+#: src/Module/Notifications/Notifications.php:70
msgid "Home Notifications"
msgstr "Hem-aviseringar"
-#: src/Module/Notifications/Notifications.php:140
+#: src/Module/Notifications/Notifications.php:132
msgid "Show unread"
msgstr ""
-#: src/Module/Notifications/Ping.php:220
+#: src/Module/Notifications/Ping.php:206
msgid "{0} requested registration"
msgstr "{0} bad om registrering"
-#: src/Module/Notifications/Ping.php:229
+#: src/Module/Notifications/Ping.php:215
#, php-format
msgid "{0} and %d others requested registration"
msgstr "{0} och %d andra bad om registrering"
-#: src/Module/OAuth/Acknowledge.php:51
+#: src/Module/OAuth/Acknowledge.php:37
msgid "Authorize application connection"
msgstr ""
-#: src/Module/OAuth/Acknowledge.php:53
+#: src/Module/OAuth/Acknowledge.php:39
msgid ""
"Do you want to authorize this application to access your posts and contacts,"
" and/or create new posts for you?"
msgstr "Vill du ge den här applikationen åtkomst till dina inlägg och kontakter, och/eller skapa nya inlägg för dig?"
-#: src/Module/OAuth/Authorize.php:54
+#: src/Module/OAuth/Authorize.php:40
msgid "Unsupported or missing response type"
msgstr ""
-#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:75
+#: src/Module/OAuth/Authorize.php:45 src/Module/OAuth/Token.php:61
msgid "Incomplete request data"
msgstr ""
-#: src/Module/OAuth/Authorize.php:106
+#: src/Module/OAuth/Authorize.php:92
#, php-format
msgid ""
"Please copy the following authentication code into your application and "
"close this window: %s"
msgstr ""
-#: src/Module/OAuth/Token.php:80
+#: src/Module/OAuth/Token.php:66
msgid "Invalid data or unknown client"
msgstr ""
-#: src/Module/OAuth/Token.php:105
+#: src/Module/OAuth/Token.php:91
msgid "Unsupported or missing grant type"
msgstr ""
-#: src/Module/OStatus/Repair.php:83
-msgid "Resubscribing to OStatus contacts"
-msgstr ""
-
-#: src/Module/OStatus/Repair.php:84 src/Module/OStatus/Subscribe.php:160
-msgid "Keep this window open until done."
-msgstr "Håll det här fönstret öppet tills du är klar."
-
-#: src/Module/OStatus/Repair.php:85
-msgid "✔ Done"
-msgstr ""
-
-#: src/Module/OStatus/Repair.php:86
-msgid "No OStatus contacts to resubscribe to."
-msgstr ""
-
-#: src/Module/OStatus/Subscribe.php:72
+#: src/Module/OStatus/Subscribe.php:58
msgid "Subscribing to contacts"
msgstr "Prenumererar på kontakter"
-#: src/Module/OStatus/Subscribe.php:81
+#: src/Module/OStatus/Subscribe.php:67
msgid "No contact provided."
msgstr "Ingen kontakt angedd"
-#: src/Module/OStatus/Subscribe.php:87
+#: src/Module/OStatus/Subscribe.php:73
msgid "Couldn't fetch information for contact."
msgstr "Kunde inte hämta information för kontakten."
-#: src/Module/OStatus/Subscribe.php:98
+#: src/Module/OStatus/Subscribe.php:84
msgid "Couldn't fetch friends for contact."
msgstr "Kunde inte hämta vänner för kontakt."
-#: src/Module/OStatus/Subscribe.php:104 src/Module/OStatus/Subscribe.php:115
+#: src/Module/OStatus/Subscribe.php:90 src/Module/OStatus/Subscribe.php:101
msgid "Couldn't fetch following contacts."
msgstr "Kunde inte hämta följande kontakter."
-#: src/Module/OStatus/Subscribe.php:110
+#: src/Module/OStatus/Subscribe.php:96
msgid "Couldn't fetch remote profile."
msgstr "Kunde inte hämta profil"
-#: src/Module/OStatus/Subscribe.php:120
+#: src/Module/OStatus/Subscribe.php:106
msgid "Unsupported network"
msgstr "Nätverket stöds inte"
-#: src/Module/OStatus/Subscribe.php:136
+#: src/Module/OStatus/Subscribe.php:122
msgid "Done"
msgstr "Färdig"
-#: src/Module/OStatus/Subscribe.php:150
+#: src/Module/OStatus/Subscribe.php:136
msgid "success"
msgstr "lyckades"
-#: src/Module/OStatus/Subscribe.php:152
+#: src/Module/OStatus/Subscribe.php:138
msgid "failed"
msgstr "misslyckades"
-#: src/Module/OStatus/Subscribe.php:155
+#: src/Module/OStatus/Subscribe.php:141
msgid "ignored"
msgstr "ignorerades"
-#: src/Module/Photo.php:124
+#: src/Module/OStatus/Subscribe.php:146
+msgid "Keep this window open until done."
+msgstr "Håll det här fönstret öppet tills du är klar."
+
+#: src/Module/Photo.php:108
msgid "The Photo is not available."
msgstr ""
-#: src/Module/Photo.php:149
+#: src/Module/Photo.php:133
#, php-format
msgid "The Photo with id %s is not available."
msgstr ""
-#: src/Module/Photo.php:190
+#: src/Module/Photo.php:174
#, php-format
msgid "Invalid external resource with url %s."
msgstr ""
-#: src/Module/Photo.php:192
+#: src/Module/Photo.php:176
#, php-format
msgid "Invalid photo with id %s."
msgstr ""
-#: src/Module/Post/Edit.php:82 src/Module/Post/Edit.php:96
+#: src/Module/Post/Edit.php:68 src/Module/Post/Edit.php:82
msgid "Post not found."
msgstr ""
-#: src/Module/Post/Edit.php:102
+#: src/Module/Post/Edit.php:88
msgid "Edit post"
msgstr "Ändra inlägg"
-#: src/Module/Post/Edit.php:136
+#: src/Module/Post/Edit.php:122
msgid "web link"
msgstr "webblänk"
-#: src/Module/Post/Edit.php:137
+#: src/Module/Post/Edit.php:123
msgid "Insert video link"
msgstr "Klistra in videolänk"
-#: src/Module/Post/Edit.php:138
+#: src/Module/Post/Edit.php:124
msgid "video link"
msgstr "videolänk"
-#: src/Module/Post/Edit.php:139
+#: src/Module/Post/Edit.php:125
msgid "Insert audio link"
msgstr "Klistra in ljudlänk"
-#: src/Module/Post/Edit.php:140
+#: src/Module/Post/Edit.php:126
msgid "audio link"
msgstr "ljudlänk"
-#: src/Module/Post/Tag/Remove.php:106
+#: src/Module/Post/Tag/Remove.php:92
msgid "Remove Item Tag"
msgstr "Ta bort tagg"
-#: src/Module/Post/Tag/Remove.php:107
+#: src/Module/Post/Tag/Remove.php:93
msgid "Select a tag to remove: "
msgstr "Välj vilken tagg som ska tas bort: "
-#: src/Module/Post/Tag/Remove.php:108
-#: src/Module/Settings/TwoFactor/Trusted.php:147
+#: src/Module/Post/Tag/Remove.php:94
+#: src/Module/Settings/TwoFactor/Trusted.php:133
msgid "Remove"
msgstr "Ta bort"
-#: src/Module/Privacy/PermissionTooltip.php:71
+#: src/Module/Privacy/PermissionTooltip.php:57
#, php-format
msgid "Wrong type \"%s\", expected one of: %s"
msgstr ""
-#: src/Module/Privacy/PermissionTooltip.php:101
+#: src/Module/Privacy/PermissionTooltip.php:87
msgid "Model not found"
msgstr ""
-#: src/Module/Privacy/PermissionTooltip.php:118
+#: src/Module/Privacy/PermissionTooltip.php:104
msgid "Unlisted"
msgstr ""
-#: src/Module/Privacy/PermissionTooltip.php:124
+#: src/Module/Privacy/PermissionTooltip.php:110
msgid "Remote privacy information not available."
msgstr "Remote privacy information not available."
-#: src/Module/Privacy/PermissionTooltip.php:131
+#: src/Module/Privacy/PermissionTooltip.php:117
msgid "Visible to:"
msgstr "Synlig för:"
-#: src/Module/Privacy/PermissionTooltip.php:133
+#: src/Module/Privacy/PermissionTooltip.php:119
msgid "CC:"
msgstr ""
-#: src/Module/Privacy/PermissionTooltip.php:134
+#: src/Module/Privacy/PermissionTooltip.php:120
msgid "BCC:"
msgstr ""
-#: src/Module/Privacy/PermissionTooltip.php:135
+#: src/Module/Privacy/PermissionTooltip.php:121
msgid "Audience:"
msgstr ""
-#: src/Module/Privacy/PermissionTooltip.php:136
+#: src/Module/Privacy/PermissionTooltip.php:122
msgid "Attributed To:"
msgstr ""
-#: src/Module/Privacy/PermissionTooltip.php:234
+#: src/Module/Privacy/PermissionTooltip.php:220
#, php-format
msgid "Collection (%s)"
msgstr ""
-#: src/Module/Privacy/PermissionTooltip.php:238
+#: src/Module/Privacy/PermissionTooltip.php:224
#, php-format
msgid "Followers (%s)"
msgstr ""
-#: src/Module/Privacy/PermissionTooltip.php:255
+#: src/Module/Privacy/PermissionTooltip.php:241
#, php-format
msgid "%d more"
msgstr ""
-#: src/Module/Profile/Contacts.php:159
+#: src/Module/Profile/Contacts.php:145
msgid "No contacts."
msgstr "Inga kontakter."
-#: src/Module/Profile/Conversations.php:106
-#: src/Module/Profile/Conversations.php:109 src/Module/Profile/Profile.php:351
-#: src/Module/Profile/Profile.php:354 src/Protocol/Feed.php:1095
-#: src/Protocol/OStatus.php:1011
-#, php-format
-msgid "%s's timeline"
-msgstr ""
-
-#: src/Module/Profile/Conversations.php:107 src/Module/Profile/Profile.php:352
-#: src/Protocol/Feed.php:1099 src/Protocol/OStatus.php:1016
+#: src/Module/Profile/Conversations.php:92 src/Module/Profile/Profile.php:339
+#: src/Protocol/Feed.php:1097
#, php-format
msgid "%s's posts"
msgstr ""
-#: src/Module/Profile/Conversations.php:108 src/Module/Profile/Profile.php:353
-#: src/Protocol/Feed.php:1102 src/Protocol/OStatus.php:1020
+#: src/Module/Profile/Conversations.php:93 src/Module/Profile/Profile.php:340
+#: src/Protocol/Feed.php:1100
#, php-format
msgid "%s's comments"
msgstr ""
-#: src/Module/Profile/Photos.php:164 src/Module/Profile/Photos.php:167
-#: src/Module/Profile/Photos.php:192
-#: src/Module/Settings/Profile/Photo/Index.php:58
+#: src/Module/Profile/Conversations.php:94 src/Module/Profile/Profile.php:341
+#: src/Protocol/Feed.php:1093
+#, php-format
+msgid "%s's timeline"
+msgstr ""
+
+#: src/Module/Profile/Photos.php:150 src/Module/Profile/Photos.php:153
+#: src/Module/Profile/Photos.php:178
+#: src/Module/Settings/Profile/Photo/Index.php:44
#, php-format
msgid "Image exceeds size limit of %s"
msgstr "Bildstorlek överstiger %s"
-#: src/Module/Profile/Photos.php:170
+#: src/Module/Profile/Photos.php:156
msgid "Image upload didn't complete, please try again"
msgstr "Uppladdningen av bilden slutfördes inte, vänligen försök igen."
-#: src/Module/Profile/Photos.php:173
+#: src/Module/Profile/Photos.php:159
msgid "Image file is missing"
msgstr "Bildfilen saknas"
-#: src/Module/Profile/Photos.php:178
+#: src/Module/Profile/Photos.php:164
msgid ""
"Server can't accept new file upload at this time, please contact your "
"administrator"
msgstr "Servern kan just nu inte acceptera uppladdning av en ny fil, vänligen kontakta din administratör"
-#: src/Module/Profile/Photos.php:200
+#: src/Module/Profile/Photos.php:186
msgid "Image file is empty."
msgstr "Bildfilen är tom."
-#: src/Module/Profile/Photos.php:352
+#: src/Module/Profile/Photos.php:338
msgid "View Album"
msgstr "Titta i album"
-#: src/Module/Profile/Profile.php:112 src/Module/Profile/Restricted.php:50
+#: src/Module/Profile/Profile.php:100 src/Module/Profile/Restricted.php:36
msgid "Profile not found."
msgstr "Profilen hittades inte."
-#: src/Module/Profile/Profile.php:158
+#: src/Module/Profile/Profile.php:146
#, php-format
msgid ""
"You're currently viewing your profile as %s Cancel"
msgstr ""
-#: src/Module/Profile/Profile.php:167
+#: src/Module/Profile/Profile.php:155
msgid "Full Name:"
msgstr "Fullständigt namn:"
-#: src/Module/Profile/Profile.php:172
+#: src/Module/Profile/Profile.php:160
msgid "Member since:"
msgstr ""
-#: src/Module/Profile/Profile.php:178
+#: src/Module/Profile/Profile.php:166
msgid "j F, Y"
msgstr "j F, Y"
-#: src/Module/Profile/Profile.php:179
+#: src/Module/Profile/Profile.php:167
msgid "j F"
msgstr "j F"
-#: src/Module/Profile/Profile.php:187 src/Util/Temporal.php:168
+#: src/Module/Profile/Profile.php:175 src/Util/Temporal.php:154
msgid "Birthday:"
msgstr "Födelsedatum:"
-#: src/Module/Profile/Profile.php:190
-#: src/Module/Settings/Profile/Index.php:291 src/Util/Temporal.php:170
+#: src/Module/Profile/Profile.php:178
+#: src/Module/Settings/Profile/Index.php:282 src/Util/Temporal.php:156
msgid "Age: "
msgstr "Ålder: "
-#: src/Module/Profile/Profile.php:190
-#: src/Module/Settings/Profile/Index.php:291 src/Util/Temporal.php:170
+#: src/Module/Profile/Profile.php:178
+#: src/Module/Settings/Profile/Index.php:282 src/Util/Temporal.php:156
#, php-format
msgid "%d year old"
msgid_plural "%d years old"
msgstr[0] ""
msgstr[1] ""
-#: src/Module/Profile/Profile.php:195
-#: src/Module/Settings/Profile/Index.php:284
+#: src/Module/Profile/Profile.php:183
+#: src/Module/Settings/Profile/Index.php:275
msgid "Description:"
msgstr "Beskrivning:"
-#: src/Module/Profile/Profile.php:261
+#: src/Module/Profile/Profile.php:249
msgid "Groups:"
msgstr ""
-#: src/Module/Profile/Profile.php:273
+#: src/Module/Profile/Profile.php:261
msgid "View profile as:"
msgstr ""
-#: src/Module/Profile/Profile.php:290
+#: src/Module/Profile/Profile.php:278
msgid "View as"
msgstr ""
-#: src/Module/Profile/RemoteFollow.php:82
+#: src/Module/Profile/RemoteFollow.php:68
msgid "Profile unavailable."
msgstr "Profilen är inte tillgänglig."
-#: src/Module/Profile/RemoteFollow.php:88
+#: src/Module/Profile/RemoteFollow.php:74
msgid "Invalid locator"
msgstr "Invalid locator"
-#: src/Module/Profile/RemoteFollow.php:95
+#: src/Module/Profile/RemoteFollow.php:81
msgid "The provided profile link doesn't seem to be valid"
msgstr ""
-#: src/Module/Profile/RemoteFollow.php:100
+#: src/Module/Profile/RemoteFollow.php:86
msgid ""
"Remote subscription can't be done for your network. Please subscribe "
"directly on your system."
msgstr ""
-#: src/Module/Profile/RemoteFollow.php:128
+#: src/Module/Profile/RemoteFollow.php:114
msgid "Friend/Connection Request"
msgstr "Vän- eller kontaktförfrågan"
-#: src/Module/Profile/RemoteFollow.php:129
+#: src/Module/Profile/RemoteFollow.php:115
#, php-format
msgid ""
"Enter your Webfinger address (user@domain.tld) or profile URL here. If this "
@@ -9264,579 +9258,579 @@ msgid ""
" or %s directly on your system."
msgstr ""
-#: src/Module/Profile/RemoteFollow.php:130
+#: src/Module/Profile/RemoteFollow.php:116
#, php-format
msgid ""
"If you are not yet a member of the free social web, follow "
"this link to find a public Friendica node and join us today."
msgstr ""
-#: src/Module/Profile/RemoteFollow.php:131
+#: src/Module/Profile/RemoteFollow.php:117
msgid "Your Webfinger address or profile URL:"
msgstr ""
-#: src/Module/Profile/Restricted.php:59
+#: src/Module/Profile/Restricted.php:45
msgid "Restricted profile"
msgstr ""
-#: src/Module/Profile/Restricted.php:60
+#: src/Module/Profile/Restricted.php:46
msgid ""
"This profile has been restricted which prevents access to their public "
"content from anonymous visitors."
msgstr ""
-#: src/Module/Profile/Schedule.php:83
+#: src/Module/Profile/Schedule.php:69
msgid "Scheduled"
msgstr ""
-#: src/Module/Profile/Schedule.php:84
+#: src/Module/Profile/Schedule.php:70
msgid "Content"
msgstr ""
-#: src/Module/Profile/Schedule.php:85
+#: src/Module/Profile/Schedule.php:71
msgid "Remove post"
msgstr ""
-#: src/Module/Register.php:85
+#: src/Module/Register.php:77
msgid "Only parent users can create additional accounts."
msgstr ""
-#: src/Module/Register.php:100 src/Module/User/Import.php:112
+#: src/Module/Register.php:92 src/Module/User/Import.php:98
msgid ""
"This site has exceeded the number of allowed daily account registrations. "
"Please try again tomorrow."
msgstr ""
-#: src/Module/Register.php:117
+#: src/Module/Register.php:109
msgid ""
"You may (optionally) fill in this form via OpenID by supplying your OpenID "
"and clicking \"Register\"."
msgstr ""
-#: src/Module/Register.php:118
+#: src/Module/Register.php:110
msgid ""
"If you are not familiar with OpenID, please leave that field blank and fill "
"in the rest of the items."
msgstr "Om du inte vet vad OpenID är, eller inte vill använda det, kan du lämna det fältet tomt och fylla i resten."
-#: src/Module/Register.php:119
+#: src/Module/Register.php:111
msgid "Your OpenID (optional): "
msgstr "OpenID (om du vill): "
-#: src/Module/Register.php:128
+#: src/Module/Register.php:120
msgid "Include your profile in member directory?"
msgstr "Ta med profilen i medlemskatalogen?"
-#: src/Module/Register.php:149
+#: src/Module/Register.php:141
msgid "Note for the admin"
msgstr ""
-#: src/Module/Register.php:149
+#: src/Module/Register.php:141
msgid "Leave a message for the admin, why you want to join this node"
msgstr ""
-#: src/Module/Register.php:150
+#: src/Module/Register.php:142
msgid "Membership on this site is by invitation only."
msgstr ""
-#: src/Module/Register.php:151
+#: src/Module/Register.php:143
msgid "Your invitation code: "
msgstr ""
-#: src/Module/Register.php:159
+#: src/Module/Register.php:151
msgid "Your Display Name (as you would like it to be displayed on this system"
msgstr ""
-#: src/Module/Register.php:160
+#: src/Module/Register.php:152
msgid ""
"Your Email Address: (Initial information will be send there, so this has to "
"be an existing address.)"
msgstr ""
-#: src/Module/Register.php:161
+#: src/Module/Register.php:153
msgid "Please repeat your e-mail address:"
msgstr ""
-#: src/Module/Register.php:163 src/Module/Security/PasswordTooLong.php:100
-#: src/Module/Settings/Account.php:564
+#: src/Module/Register.php:155 src/Module/Security/PasswordTooLong.php:86
+#: src/Module/Settings/Account.php:555
msgid "New Password:"
msgstr "Nytt lösenord"
-#: src/Module/Register.php:163
+#: src/Module/Register.php:155
msgid "Leave empty for an auto generated password."
msgstr ""
-#: src/Module/Register.php:164 src/Module/Security/PasswordTooLong.php:101
-#: src/Module/Settings/Account.php:565
+#: src/Module/Register.php:156 src/Module/Security/PasswordTooLong.php:87
+#: src/Module/Settings/Account.php:556
msgid "Confirm:"
msgstr "Bekräfta (repetera):"
-#: src/Module/Register.php:165
+#: src/Module/Register.php:157
#, php-format
msgid ""
"Choose a profile nickname. This must begin with a text character. Your "
"profile address on this site will then be \"nickname@%s\"."
msgstr ""
-#: src/Module/Register.php:166
+#: src/Module/Register.php:158
msgid "Choose a nickname: "
msgstr "Välj ett användarnamn: "
-#: src/Module/Register.php:174 src/Module/User/Import.php:118
+#: src/Module/Register.php:166 src/Module/User/Import.php:104
msgid "Import"
msgstr "Importera"
-#: src/Module/Register.php:175
+#: src/Module/Register.php:167
msgid "Import your profile to this friendica instance"
msgstr "Importera din profil till den här friendica-instansen"
-#: src/Module/Register.php:182
+#: src/Module/Register.php:174
msgid "Note: This node explicitly contains adult content"
msgstr ""
-#: src/Module/Register.php:184 src/Module/Settings/Delegation.php:181
+#: src/Module/Register.php:176 src/Module/Settings/Delegation.php:167
msgid "Parent Password:"
msgstr ""
-#: src/Module/Register.php:184 src/Module/Settings/Delegation.php:181
+#: src/Module/Register.php:176 src/Module/Settings/Delegation.php:167
msgid ""
"Please enter the password of the parent account to legitimize your request."
msgstr ""
-#: src/Module/Register.php:213
+#: src/Module/Register.php:205
msgid "Password doesn't match."
msgstr ""
-#: src/Module/Register.php:219
+#: src/Module/Register.php:211
msgid "Please enter your password."
msgstr ""
-#: src/Module/Register.php:261
+#: src/Module/Register.php:253
msgid "You have entered too much information."
msgstr ""
-#: src/Module/Register.php:284
+#: src/Module/Register.php:276
msgid "Please enter the identical mail address in the second field."
msgstr ""
-#: src/Module/Register.php:292
+#: src/Module/Register.php:284
msgid "Nickname cannot start with a digit."
msgstr ""
-#: src/Module/Register.php:294
+#: src/Module/Register.php:286
msgid "Nickname can only contain US-ASCII characters."
msgstr ""
-#: src/Module/Register.php:323
+#: src/Module/Register.php:315
msgid "The additional account was created."
msgstr ""
-#: src/Module/Register.php:348
+#: src/Module/Register.php:340
msgid ""
"Registration successful. Please check your email for further instructions."
msgstr "Registrering klar. Kolla din e-post för vidare information."
-#: src/Module/Register.php:355
+#: src/Module/Register.php:347
#, php-format
msgid ""
"Failed to send email message. Here your accout details:You can enter one of your one-time recovery codes in case you lost access" " to your mobile device.
" msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:101 +#: src/Module/Security/TwoFactor/Recovery.php:87 #, php-format msgid "Don’t have your phone? Enter a two-factor recovery code" msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:102 +#: src/Module/Security/TwoFactor/Recovery.php:88 msgid "Please enter a recovery code" msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:103 +#: src/Module/Security/TwoFactor/Recovery.php:89 msgid "Submit recovery code and complete login" msgstr "" -#: src/Module/Security/TwoFactor/SignOut.php:122 +#: src/Module/Security/TwoFactor/SignOut.php:108 msgid "Sign out of this browser?" msgstr "" -#: src/Module/Security/TwoFactor/SignOut.php:123 +#: src/Module/Security/TwoFactor/SignOut.php:109 msgid "" "If you trust this browser, you will not be asked for verification code " "the next time you sign in.
" msgstr "" -#: src/Module/Security/TwoFactor/SignOut.php:124 +#: src/Module/Security/TwoFactor/SignOut.php:110 msgid "Sign out" msgstr "" -#: src/Module/Security/TwoFactor/SignOut.php:126 +#: src/Module/Security/TwoFactor/SignOut.php:112 msgid "Trust and sign out" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:96 +#: src/Module/Security/TwoFactor/Trust.php:82 msgid "Couldn't save browser to Cookie." msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:141 +#: src/Module/Security/TwoFactor/Trust.php:127 msgid "Trust this browser?" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:142 +#: src/Module/Security/TwoFactor/Trust.php:128 msgid "" "If you choose to trust this browser, you will not be asked for a " "verification code the next time you sign in.
" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:143 +#: src/Module/Security/TwoFactor/Trust.php:129 msgid "Not now" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:144 +#: src/Module/Security/TwoFactor/Trust.php:130 msgid "Don't trust" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:145 +#: src/Module/Security/TwoFactor/Trust.php:131 msgid "Trust" msgstr "" -#: src/Module/Security/TwoFactor/Verify.php:97 +#: src/Module/Security/TwoFactor/Verify.php:83 msgid "" "Open the two-factor authentication app on your device to get an " "authentication code and verify your identity.
" msgstr "" -#: src/Module/Security/TwoFactor/Verify.php:100 +#: src/Module/Security/TwoFactor/Verify.php:86 #, php-format msgid "" "If you do not have access to your authentication code you can use a two-factor recovery code." msgstr "" -#: src/Module/Security/TwoFactor/Verify.php:101 -#: src/Module/Settings/TwoFactor/Verify.php:158 +#: src/Module/Security/TwoFactor/Verify.php:87 +#: src/Module/Settings/TwoFactor/Verify.php:144 msgid "Please enter a code from your authentication app" msgstr "" -#: src/Module/Security/TwoFactor/Verify.php:102 +#: src/Module/Security/TwoFactor/Verify.php:88 msgid "Verify code and complete login" msgstr "" -#: src/Module/Settings/Account.php:96 +#: src/Module/Settings/Account.php:82 msgid "Please use a shorter name." msgstr "Vänligen ange ett kortare namn." -#: src/Module/Settings/Account.php:99 +#: src/Module/Settings/Account.php:85 msgid "Name too short." msgstr "Namnet för kort." -#: src/Module/Settings/Account.php:108 +#: src/Module/Settings/Account.php:94 msgid "Wrong Password." msgstr "Fel lösenord." -#: src/Module/Settings/Account.php:113 +#: src/Module/Settings/Account.php:99 msgid "Invalid email." msgstr "Ogiltig e-postadress." -#: src/Module/Settings/Account.php:117 +#: src/Module/Settings/Account.php:103 msgid "Cannot change to that email." msgstr "Kan inte byta till den e-postadressen." -#: src/Module/Settings/Account.php:146 src/Module/Settings/Account.php:195 -#: src/Module/Settings/Account.php:216 src/Module/Settings/Account.php:300 -#: src/Module/Settings/Account.php:329 +#: src/Module/Settings/Account.php:132 src/Module/Settings/Account.php:181 +#: src/Module/Settings/Account.php:202 src/Module/Settings/Account.php:286 +#: src/Module/Settings/Account.php:315 msgid "Settings were not updated." msgstr "Inställningarna uppdaterades inte." -#: src/Module/Settings/Account.php:342 +#: src/Module/Settings/Account.php:333 msgid "Contact CSV file upload error" msgstr "" -#: src/Module/Settings/Account.php:361 +#: src/Module/Settings/Account.php:352 msgid "Importing Contacts done" msgstr "" -#: src/Module/Settings/Account.php:374 +#: src/Module/Settings/Account.php:365 msgid "Relocate message has been send to your contacts" msgstr "" -#: src/Module/Settings/Account.php:391 +#: src/Module/Settings/Account.php:382 msgid "Unable to find your profile. Please contact your admin." msgstr "Kunde inte hitta din profil. Vänligen kontakta din admin." -#: src/Module/Settings/Account.php:433 +#: src/Module/Settings/Account.php:424 msgid "" "Account for a service that automatically shares content based on user " "defined channels." msgstr "" -#: src/Module/Settings/Account.php:443 +#: src/Module/Settings/Account.php:434 msgid "Personal Page Subtypes" msgstr "" -#: src/Module/Settings/Account.php:444 +#: src/Module/Settings/Account.php:435 msgid "Community Group Subtypes" msgstr "" -#: src/Module/Settings/Account.php:455 +#: src/Module/Settings/Account.php:446 msgid "Account for a personal profile." msgstr "Konto för personlig profil." -#: src/Module/Settings/Account.php:462 +#: src/Module/Settings/Account.php:453 msgid "" "Account for an organisation that automatically approves contact requests as " "\"Followers\"." msgstr "" -#: src/Module/Settings/Account.php:469 +#: src/Module/Settings/Account.php:460 msgid "" "Account for a news reflector that automatically approves contact requests as" " \"Followers\"." msgstr "" -#: src/Module/Settings/Account.php:476 +#: src/Module/Settings/Account.php:467 msgid "Account for community discussions." msgstr "" -#: src/Module/Settings/Account.php:484 +#: src/Module/Settings/Account.php:475 msgid "" "Account for a regular personal profile that requires manual approval of " "\"Friends\" and \"Followers\"." msgstr "" -#: src/Module/Settings/Account.php:491 +#: src/Module/Settings/Account.php:482 msgid "" "Account for a public profile that automatically approves contact requests as" " \"Followers\"." msgstr "" -#: src/Module/Settings/Account.php:498 +#: src/Module/Settings/Account.php:489 msgid "Automatically approves all contact requests." msgstr "Godkänner automatiskt alla kontaktförfrågningar." -#: src/Module/Settings/Account.php:505 +#: src/Module/Settings/Account.php:496 msgid "Contact requests have to be manually approved." msgstr "" -#: src/Module/Settings/Account.php:512 +#: src/Module/Settings/Account.php:503 msgid "" "Account for a popular profile that automatically approves contact requests " "as \"Friends\"." msgstr "" -#: src/Module/Settings/Account.php:517 +#: src/Module/Settings/Account.php:508 msgid "Private Group [Experimental]" msgstr "" -#: src/Module/Settings/Account.php:519 +#: src/Module/Settings/Account.php:510 msgid "Requires manual approval of contact requests." msgstr "" -#: src/Module/Settings/Account.php:528 +#: src/Module/Settings/Account.php:519 msgid "OpenID:" msgstr "OpenID:" -#: src/Module/Settings/Account.php:528 +#: src/Module/Settings/Account.php:519 msgid "(Optional) Allow this OpenID to login to this account." msgstr "(Valfritt) Tillåt detta OpenID för att logga in till det här kontot." -#: src/Module/Settings/Account.php:536 +#: src/Module/Settings/Account.php:527 msgid "Publish your profile in your local site directory?" msgstr "" -#: src/Module/Settings/Account.php:536 +#: src/Module/Settings/Account.php:527 #, php-format msgid "" "Your profile will be published in this node's local " @@ -9844,94 +9838,94 @@ msgid "" " system settings." msgstr "" -#: src/Module/Settings/Account.php:542 +#: src/Module/Settings/Account.php:533 #, php-format msgid "" "Your profile will also be published in the global friendica directories " "(e.g. %s)." msgstr "" -#: src/Module/Settings/Account.php:555 +#: src/Module/Settings/Account.php:546 msgid "Account Settings" msgstr "Kontoinställningar" -#: src/Module/Settings/Account.php:556 +#: src/Module/Settings/Account.php:547 #, php-format msgid "Your Identity Address is '%s' or '%s'." msgstr "" -#: src/Module/Settings/Account.php:563 +#: src/Module/Settings/Account.php:554 msgid "Password Settings" msgstr "Lösenordsinställningar" -#: src/Module/Settings/Account.php:565 +#: src/Module/Settings/Account.php:556 msgid "Leave password fields blank unless changing" msgstr "Lämna fältet tomt om du inte vill byta lösenord" -#: src/Module/Settings/Account.php:567 +#: src/Module/Settings/Account.php:558 msgid "Password:" msgstr "Lösenord:" -#: src/Module/Settings/Account.php:567 +#: src/Module/Settings/Account.php:558 msgid "Your current password to confirm the changes of the email address" msgstr "" -#: src/Module/Settings/Account.php:570 +#: src/Module/Settings/Account.php:561 msgid "Delete OpenID URL" msgstr "" -#: src/Module/Settings/Account.php:572 +#: src/Module/Settings/Account.php:563 msgid "Basic Settings" msgstr "Grundläggande inställningar" -#: src/Module/Settings/Account.php:573 -#: src/Module/Settings/Profile/Index.php:283 +#: src/Module/Settings/Account.php:564 +#: src/Module/Settings/Profile/Index.php:274 msgid "Display name:" msgstr "" -#: src/Module/Settings/Account.php:574 +#: src/Module/Settings/Account.php:565 msgid "Email Address:" msgstr "E-postadress:" -#: src/Module/Settings/Account.php:575 +#: src/Module/Settings/Account.php:566 msgid "Your Timezone:" msgstr "Tidszon:" -#: src/Module/Settings/Account.php:576 +#: src/Module/Settings/Account.php:567 msgid "Your Language:" msgstr "Ditt språk:" -#: src/Module/Settings/Account.php:576 +#: src/Module/Settings/Account.php:567 msgid "" "Set the language we use to show you friendica interface and to send you " "emails" msgstr "" -#: src/Module/Settings/Account.php:577 +#: src/Module/Settings/Account.php:568 msgid "Default Post Location:" msgstr "Default Post Location:" -#: src/Module/Settings/Account.php:578 +#: src/Module/Settings/Account.php:569 msgid "Use Browser Location:" msgstr "Använd webbläsarens positionering:" -#: src/Module/Settings/Account.php:580 +#: src/Module/Settings/Account.php:571 msgid "Security and Privacy Settings" msgstr "Inställningar för säkerhet och sekretess" -#: src/Module/Settings/Account.php:582 +#: src/Module/Settings/Account.php:573 msgid "Maximum Friend Requests/Day:" msgstr "Maximalt antal kontaktförfrågningar per dygn:" -#: src/Module/Settings/Account.php:582 +#: src/Module/Settings/Account.php:573 msgid "(to prevent spam abuse)" msgstr "(för att motverka spam)" -#: src/Module/Settings/Account.php:584 +#: src/Module/Settings/Account.php:575 msgid "Allow your profile to be searchable globally?" msgstr "Tillåta att din profil ska vara sökbar globalt?" -#: src/Module/Settings/Account.php:584 +#: src/Module/Settings/Account.php:575 msgid "" "Activate this setting if you want others to easily find and follow you. Your" " profile will be searchable on remote systems. This setting also determines " @@ -9939,43 +9933,43 @@ msgid "" "indexed or not." msgstr "" -#: src/Module/Settings/Account.php:585 +#: src/Module/Settings/Account.php:576 msgid "Hide your contact/friend list from viewers of your profile?" msgstr "" -#: src/Module/Settings/Account.php:585 +#: src/Module/Settings/Account.php:576 msgid "" "A list of your contacts is displayed on your profile page. Activate this " "option to disable the display of your contact list." msgstr "" -#: src/Module/Settings/Account.php:586 +#: src/Module/Settings/Account.php:577 msgid "Hide your public content from anonymous viewers" msgstr "" -#: src/Module/Settings/Account.php:586 +#: src/Module/Settings/Account.php:577 msgid "" "Anonymous visitors will only see your basic profile details. Your public " "posts and replies will still be freely accessible on the remote servers of " "your followers and through relays." msgstr "" -#: src/Module/Settings/Account.php:587 +#: src/Module/Settings/Account.php:578 msgid "Make public posts unlisted" msgstr "" -#: src/Module/Settings/Account.php:587 +#: src/Module/Settings/Account.php:578 msgid "" "Your public posts will not appear on the community pages or in search " "results, nor be sent to relay servers. However they can still appear on " "public feeds on remote servers." msgstr "" -#: src/Module/Settings/Account.php:588 +#: src/Module/Settings/Account.php:579 msgid "Make all posted pictures accessible" msgstr "" -#: src/Module/Settings/Account.php:588 +#: src/Module/Settings/Account.php:579 msgid "" "This option makes every posted picture accessible via the direct link. This " "is a workaround for the problem that most other networks can't handle " @@ -9983,352 +9977,352 @@ msgid "" "public on your photo albums though." msgstr "" -#: src/Module/Settings/Account.php:589 +#: src/Module/Settings/Account.php:580 msgid "Allow friends to post to your profile page?" msgstr "Tillåta vänner att göra inlägg på din profilsida?" -#: src/Module/Settings/Account.php:589 +#: src/Module/Settings/Account.php:580 msgid "" "Your contacts may write posts on your profile wall. These posts will be " "distributed to your contacts" msgstr "" -#: src/Module/Settings/Account.php:590 +#: src/Module/Settings/Account.php:581 msgid "Allow friends to tag your posts?" msgstr "Tillåt vänner att tagga dina inlägg?" -#: src/Module/Settings/Account.php:590 +#: src/Module/Settings/Account.php:581 msgid "Your contacts can add additional tags to your posts." msgstr "Dina kontakter kan lägga till ytterligare taggar till dina inlägg." -#: src/Module/Settings/Account.php:591 +#: src/Module/Settings/Account.php:582 msgid "Default privacy circle for new contacts" msgstr "" -#: src/Module/Settings/Account.php:592 +#: src/Module/Settings/Account.php:583 msgid "Default privacy circle for new group contacts" msgstr "" -#: src/Module/Settings/Account.php:593 +#: src/Module/Settings/Account.php:584 msgid "Default Post Permissions" msgstr "Standardåtkomst för inlägg" -#: src/Module/Settings/Account.php:597 +#: src/Module/Settings/Account.php:588 msgid "Expiration settings" msgstr "" -#: src/Module/Settings/Account.php:598 +#: src/Module/Settings/Account.php:589 msgid "Automatically expire posts after this many days:" msgstr "" -#: src/Module/Settings/Account.php:598 +#: src/Module/Settings/Account.php:589 msgid "If empty, posts will not expire. Expired posts will be deleted" msgstr "" -#: src/Module/Settings/Account.php:599 +#: src/Module/Settings/Account.php:590 msgid "Expire posts" msgstr "" -#: src/Module/Settings/Account.php:599 +#: src/Module/Settings/Account.php:590 msgid "When activated, posts and comments will be expired." msgstr "" -#: src/Module/Settings/Account.php:600 +#: src/Module/Settings/Account.php:591 msgid "Expire personal notes" msgstr "" -#: src/Module/Settings/Account.php:600 +#: src/Module/Settings/Account.php:591 msgid "" "When activated, the personal notes on your profile page will be expired." msgstr "" -#: src/Module/Settings/Account.php:601 +#: src/Module/Settings/Account.php:592 msgid "Expire starred posts" msgstr "" -#: src/Module/Settings/Account.php:601 +#: src/Module/Settings/Account.php:592 msgid "" "Starring posts keeps them from being expired. That behaviour is overwritten " "by this setting." msgstr "" -#: src/Module/Settings/Account.php:602 +#: src/Module/Settings/Account.php:593 msgid "Only expire posts by others" msgstr "" -#: src/Module/Settings/Account.php:602 +#: src/Module/Settings/Account.php:593 msgid "" "When activated, your own posts never expire. Then the settings above are " "only valid for posts you received." msgstr "" -#: src/Module/Settings/Account.php:605 +#: src/Module/Settings/Account.php:596 msgid "Notification Settings" msgstr "Aviseringsinställningar" -#: src/Module/Settings/Account.php:606 +#: src/Module/Settings/Account.php:597 msgid "Send a notification email when:" msgstr "Skicka ett aviseringsmail när:" -#: src/Module/Settings/Account.php:607 +#: src/Module/Settings/Account.php:598 msgid "You receive an introduction" msgstr "En kontaktförfrågan anländer" -#: src/Module/Settings/Account.php:608 +#: src/Module/Settings/Account.php:599 msgid "Your introductions are confirmed" msgstr "Dina förfrågningar godkänns" -#: src/Module/Settings/Account.php:609 +#: src/Module/Settings/Account.php:600 msgid "Someone writes on your profile wall" msgstr "Någon gör inlägg på din profilsida" -#: src/Module/Settings/Account.php:610 +#: src/Module/Settings/Account.php:601 msgid "Someone writes a followup comment" msgstr "Någon gör ett inlägg i samma tråd som du" -#: src/Module/Settings/Account.php:611 +#: src/Module/Settings/Account.php:602 msgid "You receive a private message" msgstr "Du får personliga meddelanden" -#: src/Module/Settings/Account.php:612 +#: src/Module/Settings/Account.php:603 msgid "You receive a friend suggestion" msgstr "Du tar emot ett vän-förslag" -#: src/Module/Settings/Account.php:613 +#: src/Module/Settings/Account.php:604 msgid "You are tagged in a post" msgstr "Du är taggad i ett inlägg" -#: src/Module/Settings/Account.php:615 +#: src/Module/Settings/Account.php:606 msgid "Create a desktop notification when:" msgstr "Skapa en skrivbordsavisering när:" -#: src/Module/Settings/Account.php:616 +#: src/Module/Settings/Account.php:607 msgid "Someone tagged you" msgstr "" -#: src/Module/Settings/Account.php:617 +#: src/Module/Settings/Account.php:608 msgid "Someone directly commented on your post" msgstr "" -#: src/Module/Settings/Account.php:618 +#: src/Module/Settings/Account.php:609 msgid "Someone liked your content" msgstr "Någon gillade ditt innehåll" -#: src/Module/Settings/Account.php:618 src/Module/Settings/Account.php:619 +#: src/Module/Settings/Account.php:609 src/Module/Settings/Account.php:610 msgid "Can only be enabled, when the direct comment notification is enabled." msgstr "" -#: src/Module/Settings/Account.php:619 +#: src/Module/Settings/Account.php:610 msgid "Someone shared your content" msgstr "Någon delade ditt innehåll" -#: src/Module/Settings/Account.php:620 +#: src/Module/Settings/Account.php:611 msgid "Someone commented in your thread" msgstr "" -#: src/Module/Settings/Account.php:621 +#: src/Module/Settings/Account.php:612 msgid "Someone commented in a thread where you commented" msgstr "" -#: src/Module/Settings/Account.php:622 +#: src/Module/Settings/Account.php:613 msgid "Someone commented in a thread where you interacted" msgstr "" -#: src/Module/Settings/Account.php:624 +#: src/Module/Settings/Account.php:615 msgid "Activate desktop notifications" msgstr "Aktivera skrivbordsaviseringar" -#: src/Module/Settings/Account.php:624 +#: src/Module/Settings/Account.php:615 msgid "Show desktop popup on new notifications" msgstr "" -#: src/Module/Settings/Account.php:628 +#: src/Module/Settings/Account.php:619 msgid "Text-only notification emails" msgstr "" -#: src/Module/Settings/Account.php:630 +#: src/Module/Settings/Account.php:621 msgid "Send text only notification emails, without the html part" msgstr "" -#: src/Module/Settings/Account.php:634 +#: src/Module/Settings/Account.php:625 msgid "Show detailled notifications" msgstr "Visa detaljerade aviseringar" -#: src/Module/Settings/Account.php:636 +#: src/Module/Settings/Account.php:627 msgid "" "Per default, notifications are condensed to a single notification per item. " "When enabled every notification is displayed." msgstr "" -#: src/Module/Settings/Account.php:640 +#: src/Module/Settings/Account.php:631 msgid "Show notifications of ignored contacts" msgstr "" -#: src/Module/Settings/Account.php:642 +#: src/Module/Settings/Account.php:633 msgid "" "You don't see posts from ignored contacts. But you still see their comments." " This setting controls if you want to still receive regular notifications " "that are caused by ignored contacts or not." msgstr "" -#: src/Module/Settings/Account.php:645 +#: src/Module/Settings/Account.php:636 msgid "Advanced Account/Page Type Settings" msgstr "" -#: src/Module/Settings/Account.php:646 +#: src/Module/Settings/Account.php:637 msgid "Change the behaviour of this account for special situations" msgstr "" -#: src/Module/Settings/Account.php:649 +#: src/Module/Settings/Account.php:640 msgid "Import Contacts" msgstr "Importera kontakter" -#: src/Module/Settings/Account.php:650 +#: src/Module/Settings/Account.php:641 msgid "" "Upload a CSV file that contains the handle of your followed accounts in the " "first column you exported from the old account." msgstr "" -#: src/Module/Settings/Account.php:651 +#: src/Module/Settings/Account.php:642 msgid "Upload File" msgstr "Ladda upp fil" -#: src/Module/Settings/Account.php:654 +#: src/Module/Settings/Account.php:645 msgid "Relocate" msgstr "Omlokalisera" -#: src/Module/Settings/Account.php:655 +#: src/Module/Settings/Account.php:646 msgid "" "If you have moved this profile from another server, and some of your " "contacts don't receive your updates, try pushing this button." msgstr "Om du har flyttat den här profilen från en annan server och några av dina kontakter inte får dina uppdateringar, försök att trycka på den här knappen." -#: src/Module/Settings/Account.php:656 +#: src/Module/Settings/Account.php:647 msgid "Resend relocate message to contacts" msgstr "" -#: src/Module/Settings/Addons.php:86 +#: src/Module/Settings/Addons.php:72 msgid "Addon Settings" msgstr "Inställningar för Tillägg" -#: src/Module/Settings/Addons.php:87 +#: src/Module/Settings/Addons.php:73 msgid "No Addon settings configured" msgstr "Inga inställningar för Tillägg har gjorts" -#: src/Module/Settings/Channels.php:148 +#: src/Module/Settings/Channels.php:134 msgid "" "This page can be used to define the channels that will automatically be " "reshared by your account." msgstr "" -#: src/Module/Settings/Channels.php:153 +#: src/Module/Settings/Channels.php:139 msgid "This page can be used to define your own channels." msgstr "" -#: src/Module/Settings/Channels.php:182 +#: src/Module/Settings/Channels.php:168 msgid "Publish" msgstr "" -#: src/Module/Settings/Channels.php:182 +#: src/Module/Settings/Channels.php:168 msgid "" "When selected, the channel results are reshared. This only works for public " "ActivityPub posts from the public timeline or the user defined circles." msgstr "" -#: src/Module/Settings/Channels.php:190 src/Module/Settings/Channels.php:211 -#: src/Module/Settings/Display.php:338 +#: src/Module/Settings/Channels.php:176 src/Module/Settings/Channels.php:197 +#: src/Module/Settings/Display.php:324 msgid "Label" msgstr "" -#: src/Module/Settings/Channels.php:191 src/Module/Settings/Channels.php:212 -#: src/Module/Settings/Display.php:339 -#: src/Module/Settings/TwoFactor/AppSpecific.php:137 +#: src/Module/Settings/Channels.php:177 src/Module/Settings/Channels.php:198 +#: src/Module/Settings/Display.php:325 +#: src/Module/Settings/TwoFactor/AppSpecific.php:123 msgid "Description" msgstr "" -#: src/Module/Settings/Channels.php:192 src/Module/Settings/Channels.php:213 +#: src/Module/Settings/Channels.php:178 src/Module/Settings/Channels.php:199 msgid "Access Key" msgstr "" -#: src/Module/Settings/Channels.php:193 src/Module/Settings/Channels.php:214 +#: src/Module/Settings/Channels.php:179 src/Module/Settings/Channels.php:200 msgid "Circle/Channel" msgstr "" -#: src/Module/Settings/Channels.php:194 src/Module/Settings/Channels.php:215 +#: src/Module/Settings/Channels.php:180 src/Module/Settings/Channels.php:201 msgid "Include Tags" msgstr "" -#: src/Module/Settings/Channels.php:195 src/Module/Settings/Channels.php:216 +#: src/Module/Settings/Channels.php:181 src/Module/Settings/Channels.php:202 msgid "Exclude Tags" msgstr "" -#: src/Module/Settings/Channels.php:196 src/Module/Settings/Channels.php:217 +#: src/Module/Settings/Channels.php:182 src/Module/Settings/Channels.php:203 msgid "Minimum Size" msgstr "" -#: src/Module/Settings/Channels.php:197 src/Module/Settings/Channels.php:218 +#: src/Module/Settings/Channels.php:183 src/Module/Settings/Channels.php:204 msgid "Maximum Size" msgstr "" -#: src/Module/Settings/Channels.php:198 src/Module/Settings/Channels.php:219 +#: src/Module/Settings/Channels.php:184 src/Module/Settings/Channels.php:205 msgid "Full Text Search" msgstr "" -#: src/Module/Settings/Channels.php:202 src/Module/Settings/Channels.php:223 +#: src/Module/Settings/Channels.php:188 src/Module/Settings/Channels.php:209 msgid "Select all languages that you want to see in this channel." msgstr "" -#: src/Module/Settings/Channels.php:204 +#: src/Module/Settings/Channels.php:190 msgid "Delete channel" msgstr "" -#: src/Module/Settings/Channels.php:204 +#: src/Module/Settings/Channels.php:190 msgid "Check to delete this entry from the channel list" msgstr "" -#: src/Module/Settings/Channels.php:211 +#: src/Module/Settings/Channels.php:197 msgid "Short name for the channel. It is displayed on the channels widget." msgstr "" -#: src/Module/Settings/Channels.php:212 +#: src/Module/Settings/Channels.php:198 msgid "This should describe the content of the channel in a few word." msgstr "" -#: src/Module/Settings/Channels.php:213 +#: src/Module/Settings/Channels.php:199 msgid "" "When you want to access this channel via an access key, you can define it " "here. Pay attention to not use an already used one." msgstr "" -#: src/Module/Settings/Channels.php:214 +#: src/Module/Settings/Channels.php:200 msgid "Select a circle or channel, that your channel should be based on." msgstr "" -#: src/Module/Settings/Channels.php:215 +#: src/Module/Settings/Channels.php:201 msgid "" "Comma separated list of tags. A post will be used when it contains any of " "the listed tags." msgstr "" -#: src/Module/Settings/Channels.php:216 +#: src/Module/Settings/Channels.php:202 msgid "" "Comma separated list of tags. If a post contain any of these tags, then it " "will not be part of nthis channel." msgstr "" -#: src/Module/Settings/Channels.php:217 +#: src/Module/Settings/Channels.php:203 msgid "" "Minimum post size. Leave empty for no minimum size. The size is calculated " "without links, attached posts, mentions or hashtags." msgstr "" -#: src/Module/Settings/Channels.php:218 +#: src/Module/Settings/Channels.php:204 msgid "" "Maximum post size. Leave empty for no maximum size. The size is calculated " "without links, attached posts, mentions or hashtags." msgstr "" -#: src/Module/Settings/Channels.php:219 +#: src/Module/Settings/Channels.php:205 #, php-format msgid "" "Search terms for the body, supports the \"boolean mode\" operators from " @@ -10336,576 +10330,589 @@ msgid "" "keywords: %s" msgstr "" -#: src/Module/Settings/Channels.php:220 +#: src/Module/Settings/Channels.php:206 msgid "Check to display images in the channel." msgstr "" -#: src/Module/Settings/Channels.php:221 +#: src/Module/Settings/Channels.php:207 msgid "Check to display videos in the channel." msgstr "" -#: src/Module/Settings/Channels.php:222 +#: src/Module/Settings/Channels.php:208 msgid "Check to display audio in the channel." msgstr "" -#: src/Module/Settings/Channels.php:227 +#: src/Module/Settings/Channels.php:213 msgid "Add new entry to the channel list" msgstr "" -#: src/Module/Settings/Channels.php:228 +#: src/Module/Settings/Channels.php:214 msgid "Add" msgstr "Lägg till" -#: src/Module/Settings/Channels.php:230 +#: src/Module/Settings/Channels.php:216 msgid "Current Entries in the channel list" msgstr "" -#: src/Module/Settings/Channels.php:233 +#: src/Module/Settings/Channels.php:219 msgid "Delete entry from the channel list" msgstr "" -#: src/Module/Settings/Channels.php:234 +#: src/Module/Settings/Channels.php:220 msgid "Delete entry from the channel list?" msgstr "" -#: src/Module/Settings/Connectors.php:120 +#: src/Module/Settings/Connectors.php:108 msgid "Failed to connect with email account using the settings provided." msgstr "Kunde inte ansluta till e-postkontot med aktuella inställningar" -#: src/Module/Settings/Connectors.php:166 -#: src/Module/Settings/Connectors.php:167 +#: src/Module/Settings/Connectors.php:155 +#: src/Module/Settings/Connectors.php:156 msgid "Diaspora (Socialhome, Hubzilla)" msgstr "Diaspora (Socialhome, Hubzilla)" -#: src/Module/Settings/Connectors.php:166 -#: src/Module/Settings/Connectors.php:170 +#: src/Module/Settings/Connectors.php:155 #, php-format msgid "Built-in support for %s connectivity is enabled" msgstr "" -#: src/Module/Settings/Connectors.php:167 -#: src/Module/Settings/Connectors.php:169 +#: src/Module/Settings/Connectors.php:156 #, php-format msgid "Built-in support for %s connectivity is disabled" msgstr "" -#: src/Module/Settings/Connectors.php:169 -#: src/Module/Settings/Connectors.php:170 -msgid "OStatus (GNU Social)" -msgstr "OStatus (GNU Social)" - -#: src/Module/Settings/Connectors.php:182 +#: src/Module/Settings/Connectors.php:167 msgid "Email access is disabled on this site." msgstr "E-poståtkomst är inaktiverat på den här sidan." -#: src/Module/Settings/Connectors.php:197 -#: src/Module/Settings/Connectors.php:244 +#: src/Module/Settings/Connectors.php:182 +#: src/Module/Settings/Connectors.php:233 msgid "None" msgstr "Ingen" -#: src/Module/Settings/Connectors.php:209 +#: src/Module/Settings/Connectors.php:186 +msgid "Default (Mastodon will display the title and a link to the post)" +msgstr "" + +#: src/Module/Settings/Connectors.php:187 +msgid "" +"Use the summary (Mastodon and some others will treat it as content warning)" +msgstr "" + +#: src/Module/Settings/Connectors.php:188 +msgid "Embed the title in the body" +msgstr "" + +#: src/Module/Settings/Connectors.php:199 msgid "General Social Media Settings" msgstr "Generella inställningar för sociala medier" -#: src/Module/Settings/Connectors.php:212 +#: src/Module/Settings/Connectors.php:202 msgid "Followed content scope" msgstr "" -#: src/Module/Settings/Connectors.php:214 +#: src/Module/Settings/Connectors.php:204 msgid "" "By default, conversations in which your follows participated but didn't " "start will be shown in your timeline. You can turn this behavior off, or " "expand it to the conversations in which your follows liked a post." msgstr "" -#: src/Module/Settings/Connectors.php:216 +#: src/Module/Settings/Connectors.php:206 msgid "Only conversations my follows started" msgstr "" -#: src/Module/Settings/Connectors.php:217 +#: src/Module/Settings/Connectors.php:207 msgid "Conversations my follows started or commented on (default)" msgstr "" -#: src/Module/Settings/Connectors.php:218 +#: src/Module/Settings/Connectors.php:208 msgid "Any conversation my follows interacted with, including likes" msgstr "" -#: src/Module/Settings/Connectors.php:221 +#: src/Module/Settings/Connectors.php:211 msgid "Collapse sensitive posts" msgstr "" -#: src/Module/Settings/Connectors.php:221 +#: src/Module/Settings/Connectors.php:211 msgid "" "If a post is marked as \"sensitive\", it will be displayed in a collapsed " "state, if this option is enabled." msgstr "" -#: src/Module/Settings/Connectors.php:222 +#: src/Module/Settings/Connectors.php:212 msgid "Enable intelligent shortening" msgstr "Aktivera intelligent förkortning" -#: src/Module/Settings/Connectors.php:222 +#: src/Module/Settings/Connectors.php:212 msgid "" "Normally the system tries to find the best link to add to shortened posts. " "If disabled, every shortened post will always point to the original " "friendica post." msgstr "" -#: src/Module/Settings/Connectors.php:223 +#: src/Module/Settings/Connectors.php:213 msgid "Enable simple text shortening" msgstr "" -#: src/Module/Settings/Connectors.php:223 +#: src/Module/Settings/Connectors.php:213 msgid "" "Normally the system shortens posts at the next line feed. If this option is " "enabled then the system will shorten the text at the maximum character " "limit." msgstr "" -#: src/Module/Settings/Connectors.php:224 +#: src/Module/Settings/Connectors.php:214 msgid "Attach the link title" msgstr "" -#: src/Module/Settings/Connectors.php:224 +#: src/Module/Settings/Connectors.php:214 msgid "" "When activated, the title of the attached link will be added as a title on " "posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that" " share feed content." msgstr "" -#: src/Module/Settings/Connectors.php:225 +#: src/Module/Settings/Connectors.php:215 msgid "API: Use spoiler field as title" msgstr "" -#: src/Module/Settings/Connectors.php:225 +#: src/Module/Settings/Connectors.php:215 msgid "" "When activated, the \"spoiler_text\" field in the API will be used for the " "title on standalone posts. When deactivated it will be used for spoiler " "text. For comments it will always be used for spoiler text." msgstr "" -#: src/Module/Settings/Connectors.php:226 +#: src/Module/Settings/Connectors.php:216 msgid "API: Automatically links at the end of the post as attached posts" msgstr "" -#: src/Module/Settings/Connectors.php:226 +#: src/Module/Settings/Connectors.php:216 msgid "" "When activated, added links at the end of the post react the same way as " "added links in the web interface." msgstr "" -#: src/Module/Settings/Connectors.php:227 +#: src/Module/Settings/Connectors.php:217 +msgid "Article Mode" +msgstr "" + +#: src/Module/Settings/Connectors.php:217 +msgid "" +"Controls how posts with titles are transmitted. Mastodon and its forks don't" +" display the content of these posts if the post is created in the correct " +"(default) way." +msgstr "" + +#: src/Module/Settings/Connectors.php:218 msgid "Your legacy ActivityPub/GNU Social account" msgstr "" -#: src/Module/Settings/Connectors.php:227 +#: src/Module/Settings/Connectors.php:218 msgid "" "If you enter your old account name from an ActivityPub based system or your " "GNU Social/Statusnet account name here (in the format user@domain.tld), your" " contacts will be added automatically. The field will be emptied when done." msgstr "" -#: src/Module/Settings/Connectors.php:229 -msgid "Repair OStatus subscriptions" -msgstr "Reparera OStatus-prenumerationer" - -#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Connectors.php:222 msgid "Email/Mailbox Setup" msgstr "" -#: src/Module/Settings/Connectors.php:234 +#: src/Module/Settings/Connectors.php:223 msgid "" "If you wish to communicate with email contacts using this service " "(optional), please specify how to connect to your mailbox." msgstr "För att kommunicera via e-post med denna tjänst (valfritt), vänligen ange anslutningssätt till ditt e-postkonto." -#: src/Module/Settings/Connectors.php:235 +#: src/Module/Settings/Connectors.php:224 msgid "Last successful email check:" msgstr "" -#: src/Module/Settings/Connectors.php:237 +#: src/Module/Settings/Connectors.php:226 msgid "IMAP server name:" msgstr "Namn på IMAP-server:" -#: src/Module/Settings/Connectors.php:238 +#: src/Module/Settings/Connectors.php:227 msgid "IMAP port:" msgstr "Port för IMAP:" -#: src/Module/Settings/Connectors.php:239 +#: src/Module/Settings/Connectors.php:228 msgid "Security:" msgstr "Säkerhet:" -#: src/Module/Settings/Connectors.php:240 +#: src/Module/Settings/Connectors.php:229 msgid "Email login name:" msgstr "Inloggningsnamn för e-post:" -#: src/Module/Settings/Connectors.php:241 +#: src/Module/Settings/Connectors.php:230 msgid "Email password:" msgstr "Lösenord för e-post:" -#: src/Module/Settings/Connectors.php:242 +#: src/Module/Settings/Connectors.php:231 msgid "Reply-to address:" msgstr "Svara till-adress:" -#: src/Module/Settings/Connectors.php:243 +#: src/Module/Settings/Connectors.php:232 msgid "Send public posts to all email contacts:" msgstr "Skicka publika inlägg till alla e-postkontakter:" -#: src/Module/Settings/Connectors.php:244 +#: src/Module/Settings/Connectors.php:233 msgid "Action after import:" msgstr "Åtgärd efter importering:" -#: src/Module/Settings/Connectors.php:244 +#: src/Module/Settings/Connectors.php:233 msgid "Move to folder" msgstr "Flytta till mapp" -#: src/Module/Settings/Connectors.php:245 +#: src/Module/Settings/Connectors.php:234 msgid "Move to folder:" msgstr "Flytta till mapp:" -#: src/Module/Settings/Delegation.php:73 +#: src/Module/Settings/Delegation.php:59 msgid "Delegation successfully granted." msgstr "" -#: src/Module/Settings/Delegation.php:75 +#: src/Module/Settings/Delegation.php:61 msgid "Parent user not found, unavailable or password doesn't match." msgstr "" -#: src/Module/Settings/Delegation.php:79 +#: src/Module/Settings/Delegation.php:65 msgid "Delegation successfully revoked." msgstr "" -#: src/Module/Settings/Delegation.php:98 -#: src/Module/Settings/Delegation.php:120 +#: src/Module/Settings/Delegation.php:84 +#: src/Module/Settings/Delegation.php:106 msgid "" "Delegated administrators can view but not change delegation permissions." msgstr "" -#: src/Module/Settings/Delegation.php:112 +#: src/Module/Settings/Delegation.php:98 msgid "Delegate user not found." msgstr "" -#: src/Module/Settings/Delegation.php:169 +#: src/Module/Settings/Delegation.php:155 msgid "No parent user" msgstr "" -#: src/Module/Settings/Delegation.php:180 -#: src/Module/Settings/Delegation.php:191 +#: src/Module/Settings/Delegation.php:166 +#: src/Module/Settings/Delegation.php:177 msgid "Parent User" msgstr "" -#: src/Module/Settings/Delegation.php:188 +#: src/Module/Settings/Delegation.php:174 msgid "Additional Accounts" msgstr "" -#: src/Module/Settings/Delegation.php:189 +#: src/Module/Settings/Delegation.php:175 msgid "" "Register additional accounts that are automatically connected to your " "existing account so you can manage them from this account." msgstr "" -#: src/Module/Settings/Delegation.php:190 +#: src/Module/Settings/Delegation.php:176 msgid "Register an additional account" msgstr "" -#: src/Module/Settings/Delegation.php:192 +#: src/Module/Settings/Delegation.php:178 msgid "" "Parent users have total control about this account, including the account " "settings. Please double check whom you give this access." msgstr "" -#: src/Module/Settings/Delegation.php:195 +#: src/Module/Settings/Delegation.php:181 msgid "Delegates" msgstr "" -#: src/Module/Settings/Delegation.php:196 +#: src/Module/Settings/Delegation.php:182 msgid "" "Delegates are able to manage all aspects of this account/page except for " "basic account settings. Please do not delegate your personal account to " "anybody that you do not trust completely." msgstr "" -#: src/Module/Settings/Delegation.php:197 +#: src/Module/Settings/Delegation.php:183 msgid "Existing Page Delegates" msgstr "" -#: src/Module/Settings/Delegation.php:198 +#: src/Module/Settings/Delegation.php:184 msgid "Potential Delegates" msgstr "Potentiella delegater" -#: src/Module/Settings/Delegation.php:199 +#: src/Module/Settings/Delegation.php:185 msgid "No entries." msgstr "Inga poster." -#: src/Module/Settings/Display.php:183 +#: src/Module/Settings/Display.php:169 msgid "The theme you chose isn't available." msgstr "" -#: src/Module/Settings/Display.php:223 +#: src/Module/Settings/Display.php:209 #, php-format msgid "%s - (Unsupported)" msgstr "" -#: src/Module/Settings/Display.php:260 +#: src/Module/Settings/Display.php:246 msgid "No preview" msgstr "" -#: src/Module/Settings/Display.php:261 +#: src/Module/Settings/Display.php:247 msgid "No image" msgstr "" -#: src/Module/Settings/Display.php:262 +#: src/Module/Settings/Display.php:248 msgid "Small Image" msgstr "" -#: src/Module/Settings/Display.php:263 +#: src/Module/Settings/Display.php:249 msgid "Large Image" msgstr "" -#: src/Module/Settings/Display.php:308 +#: src/Module/Settings/Display.php:294 msgid "Display Settings" msgstr "Skärm-inställningar" -#: src/Module/Settings/Display.php:310 +#: src/Module/Settings/Display.php:296 msgid "General Theme Settings" msgstr "" -#: src/Module/Settings/Display.php:311 +#: src/Module/Settings/Display.php:297 msgid "Custom Theme Settings" msgstr "" -#: src/Module/Settings/Display.php:312 +#: src/Module/Settings/Display.php:298 msgid "Content Settings" msgstr "" -#: src/Module/Settings/Display.php:313 view/theme/duepuntozero/config.php:86 -#: view/theme/frio/config.php:151 view/theme/quattro/config.php:88 -#: view/theme/vier/config.php:136 +#: src/Module/Settings/Display.php:299 view/theme/duepuntozero/config.php:74 +#: view/theme/frio/config.php:139 view/theme/quattro/config.php:76 +#: view/theme/vier/config.php:124 msgid "Theme settings" msgstr "Tema-inställningar" -#: src/Module/Settings/Display.php:314 +#: src/Module/Settings/Display.php:300 msgid "Timelines" msgstr "" -#: src/Module/Settings/Display.php:321 +#: src/Module/Settings/Display.php:307 msgid "Display Theme:" msgstr "Tema/utseende:" -#: src/Module/Settings/Display.php:322 +#: src/Module/Settings/Display.php:308 msgid "Mobile Theme:" msgstr "Mobil-tema:" -#: src/Module/Settings/Display.php:325 +#: src/Module/Settings/Display.php:311 msgid "Number of items to display per page:" msgstr "Antalet objekt att visa per sida:" -#: src/Module/Settings/Display.php:325 src/Module/Settings/Display.php:326 +#: src/Module/Settings/Display.php:311 src/Module/Settings/Display.php:312 msgid "Maximum of 100 items" msgstr "Maximalt 100 objekt" -#: src/Module/Settings/Display.php:326 +#: src/Module/Settings/Display.php:312 msgid "Number of items to display per page when viewed from mobile device:" msgstr "" -#: src/Module/Settings/Display.php:327 +#: src/Module/Settings/Display.php:313 msgid "Update browser every xx seconds" msgstr "Uppdatera webbläsaren var xx sekunder" -#: src/Module/Settings/Display.php:327 +#: src/Module/Settings/Display.php:313 msgid "Minimum of 10 seconds. Enter -1 to disable it." msgstr "" -#: src/Module/Settings/Display.php:328 +#: src/Module/Settings/Display.php:314 msgid "Display emoticons" msgstr "" -#: src/Module/Settings/Display.php:328 +#: src/Module/Settings/Display.php:314 msgid "When enabled, emoticons are replaced with matching symbols." msgstr "" -#: src/Module/Settings/Display.php:329 +#: src/Module/Settings/Display.php:315 msgid "Infinite scroll" msgstr "Oändlig skroll" -#: src/Module/Settings/Display.php:329 +#: src/Module/Settings/Display.php:315 msgid "Automatic fetch new items when reaching the page end." msgstr "" -#: src/Module/Settings/Display.php:330 +#: src/Module/Settings/Display.php:316 msgid "Enable Smart Threading" msgstr "" -#: src/Module/Settings/Display.php:330 +#: src/Module/Settings/Display.php:316 msgid "Enable the automatic suppression of extraneous thread indentation." msgstr "" -#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/Display.php:317 msgid "Display the Dislike feature" msgstr "" -#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/Display.php:317 msgid "" "Display the Dislike button and dislike reactions on posts and comments." msgstr "" -#: src/Module/Settings/Display.php:332 +#: src/Module/Settings/Display.php:318 msgid "Display the resharer" msgstr "" -#: src/Module/Settings/Display.php:332 +#: src/Module/Settings/Display.php:318 msgid "Display the first resharer as icon and text on a reshared item." msgstr "" -#: src/Module/Settings/Display.php:333 +#: src/Module/Settings/Display.php:319 msgid "Stay local" msgstr "" -#: src/Module/Settings/Display.php:333 +#: src/Module/Settings/Display.php:319 msgid "Don't go to a remote system when following a contact link." msgstr "" -#: src/Module/Settings/Display.php:334 +#: src/Module/Settings/Display.php:320 msgid "Show the post deletion checkbox" msgstr "" -#: src/Module/Settings/Display.php:334 +#: src/Module/Settings/Display.php:320 msgid "Display the checkbox for the post deletion on the network page." msgstr "" -#: src/Module/Settings/Display.php:335 +#: src/Module/Settings/Display.php:321 msgid "DIsplay the event list" msgstr "" -#: src/Module/Settings/Display.php:335 +#: src/Module/Settings/Display.php:321 msgid "Display the birthday reminder and event list on the network page." msgstr "" -#: src/Module/Settings/Display.php:336 +#: src/Module/Settings/Display.php:322 msgid "Link preview mode" msgstr "" -#: src/Module/Settings/Display.php:336 +#: src/Module/Settings/Display.php:322 msgid "Appearance of the link preview that is added to each post with a link." msgstr "" -#: src/Module/Settings/Display.php:341 +#: src/Module/Settings/Display.php:327 msgid "Bookmark" msgstr "" -#: src/Module/Settings/Display.php:343 +#: src/Module/Settings/Display.php:329 msgid "" "Enable timelines that you want to see in the channels widget. Bookmark " "timelines that you want to see in the top menu." msgstr "" -#: src/Module/Settings/Display.php:345 +#: src/Module/Settings/Display.php:331 msgid "Channel languages:" msgstr "" -#: src/Module/Settings/Display.php:345 +#: src/Module/Settings/Display.php:331 msgid "Select all languages that you want to see in your channels." msgstr "" -#: src/Module/Settings/Display.php:347 +#: src/Module/Settings/Display.php:333 msgid "Beginning of week:" msgstr "" -#: src/Module/Settings/Display.php:348 +#: src/Module/Settings/Display.php:334 msgid "Default calendar view:" msgstr "" -#: src/Module/Settings/Features.php:73 +#: src/Module/Settings/Features.php:59 msgid "Additional Features" msgstr "Ytterligare funktioner" -#: src/Module/Settings/OAuth.php:71 +#: src/Module/Settings/OAuth.php:57 msgid "Connected Apps" msgstr "Anslutna appar" -#: src/Module/Settings/OAuth.php:75 +#: src/Module/Settings/OAuth.php:61 msgid "Remove authorization" msgstr "Ta bort autentisering" -#: src/Module/Settings/Profile/Index.php:116 +#: src/Module/Settings/Profile/Index.php:102 msgid "Display Name is required." msgstr "" -#: src/Module/Settings/Profile/Index.php:167 +#: src/Module/Settings/Profile/Index.php:156 msgid "Profile couldn't be updated." msgstr "" -#: src/Module/Settings/Profile/Index.php:205 -#: src/Module/Settings/Profile/Index.php:226 +#: src/Module/Settings/Profile/Index.php:196 +#: src/Module/Settings/Profile/Index.php:217 msgid "Label:" msgstr "" -#: src/Module/Settings/Profile/Index.php:206 -#: src/Module/Settings/Profile/Index.php:227 +#: src/Module/Settings/Profile/Index.php:197 +#: src/Module/Settings/Profile/Index.php:218 msgid "Value:" msgstr "" -#: src/Module/Settings/Profile/Index.php:217 -#: src/Module/Settings/Profile/Index.php:238 +#: src/Module/Settings/Profile/Index.php:208 +#: src/Module/Settings/Profile/Index.php:229 msgid "Field Permissions" msgstr "" -#: src/Module/Settings/Profile/Index.php:218 -#: src/Module/Settings/Profile/Index.php:239 +#: src/Module/Settings/Profile/Index.php:209 +#: src/Module/Settings/Profile/Index.php:230 msgid "(click to open/close)" msgstr "(klicka för att öppna/stänga)" -#: src/Module/Settings/Profile/Index.php:224 +#: src/Module/Settings/Profile/Index.php:215 msgid "Add a new profile field" msgstr "" -#: src/Module/Settings/Profile/Index.php:247 +#: src/Module/Settings/Profile/Index.php:238 msgid "" "The homepage is verified. A rel=\"me\" link back to your Friendica profile " "page was found on the homepage." msgstr "" -#: src/Module/Settings/Profile/Index.php:249 +#: src/Module/Settings/Profile/Index.php:240 #, php-format msgid "" "To verify your homepage, add a rel=\"me\" link to it, pointing to your " "profile URL (%s)." msgstr "" -#: src/Module/Settings/Profile/Index.php:255 +#: src/Module/Settings/Profile/Index.php:246 msgid "Profile Actions" msgstr "" -#: src/Module/Settings/Profile/Index.php:256 +#: src/Module/Settings/Profile/Index.php:247 msgid "Edit Profile Details" msgstr "Ändra profilen" -#: src/Module/Settings/Profile/Index.php:258 +#: src/Module/Settings/Profile/Index.php:249 msgid "Change Profile Photo" msgstr "Byt profilfoto" -#: src/Module/Settings/Profile/Index.php:261 +#: src/Module/Settings/Profile/Index.php:252 msgid "Profile picture" msgstr "Profilbild" -#: src/Module/Settings/Profile/Index.php:262 +#: src/Module/Settings/Profile/Index.php:253 msgid "Location" msgstr "Plats" -#: src/Module/Settings/Profile/Index.php:263 src/Util/Temporal.php:97 -#: src/Util/Temporal.php:99 +#: src/Module/Settings/Profile/Index.php:254 src/Util/Temporal.php:83 +#: src/Util/Temporal.php:85 msgid "Miscellaneous" msgstr "Blandat" -#: src/Module/Settings/Profile/Index.php:264 +#: src/Module/Settings/Profile/Index.php:255 msgid "Custom Profile Fields" msgstr "" -#: src/Module/Settings/Profile/Index.php:265 src/Module/Welcome.php:58 +#: src/Module/Settings/Profile/Index.php:256 src/Module/Welcome.php:44 msgid "Upload Profile Photo" msgstr "Ladda upp profilbild" -#: src/Module/Settings/Profile/Index.php:266 +#: src/Module/Settings/Profile/Index.php:257 #, php-format msgid "" "Custom fields appear on your profile page.
\n" @@ -10915,396 +10922,396 @@ msgid "" "\t\t\t\tNon-public fields can only be seen by the selected Friendica contacts or the Friendica contacts in the selected circles.
" msgstr "" -#: src/Module/Settings/Profile/Index.php:286 +#: src/Module/Settings/Profile/Index.php:277 msgid "Street Address:" msgstr "Gatuadress:" -#: src/Module/Settings/Profile/Index.php:287 +#: src/Module/Settings/Profile/Index.php:278 msgid "Locality/City:" msgstr "Plats/Stad:" -#: src/Module/Settings/Profile/Index.php:288 +#: src/Module/Settings/Profile/Index.php:279 msgid "Region/State:" msgstr "Region:" -#: src/Module/Settings/Profile/Index.php:289 +#: src/Module/Settings/Profile/Index.php:280 msgid "Postal/Zip Code:" msgstr "Postnummer:" -#: src/Module/Settings/Profile/Index.php:290 +#: src/Module/Settings/Profile/Index.php:281 msgid "Country:" msgstr "Land:" -#: src/Module/Settings/Profile/Index.php:292 +#: src/Module/Settings/Profile/Index.php:283 msgid "XMPP (Jabber) address:" msgstr "" -#: src/Module/Settings/Profile/Index.php:292 +#: src/Module/Settings/Profile/Index.php:283 msgid "" "The XMPP address will be published so that people can follow you there." msgstr "" -#: src/Module/Settings/Profile/Index.php:293 +#: src/Module/Settings/Profile/Index.php:284 msgid "Matrix (Element) address:" msgstr "" -#: src/Module/Settings/Profile/Index.php:293 +#: src/Module/Settings/Profile/Index.php:284 msgid "" "The Matrix address will be published so that people can follow you there." msgstr "" -#: src/Module/Settings/Profile/Index.php:294 +#: src/Module/Settings/Profile/Index.php:285 msgid "Homepage URL:" msgstr "Hemsida: (URL)" -#: src/Module/Settings/Profile/Index.php:295 +#: src/Module/Settings/Profile/Index.php:286 msgid "Public Keywords:" msgstr "Offentliga nyckelord:" -#: src/Module/Settings/Profile/Index.php:295 +#: src/Module/Settings/Profile/Index.php:286 msgid "(Used for suggesting potential friends, can be seen by others)" msgstr "(Obs, synliga för andra. Används för att föreslå potentiella vänner.)" -#: src/Module/Settings/Profile/Index.php:296 +#: src/Module/Settings/Profile/Index.php:287 msgid "Private Keywords:" msgstr "Privata nyckelord:" -#: src/Module/Settings/Profile/Index.php:296 +#: src/Module/Settings/Profile/Index.php:287 msgid "(Used for searching profiles, never shown to others)" msgstr "(Obs, kan ge sökträffar vid sökning av profiler. Visas annars inte för andra.)" -#: src/Module/Settings/Profile/Photo/Crop.php:107 -#: src/Module/Settings/Profile/Photo/Crop.php:125 -#: src/Module/Settings/Profile/Photo/Crop.php:143 -#: src/Module/Settings/Profile/Photo/Index.php:100 +#: src/Module/Settings/Profile/Photo/Crop.php:93 +#: src/Module/Settings/Profile/Photo/Crop.php:111 +#: src/Module/Settings/Profile/Photo/Crop.php:129 +#: src/Module/Settings/Profile/Photo/Index.php:86 #, php-format msgid "Image size reduction [%s] failed." msgstr "" -#: src/Module/Settings/Profile/Photo/Crop.php:150 +#: src/Module/Settings/Profile/Photo/Crop.php:136 msgid "" "Shift-reload the page or clear browser cache if the new photo does not " "display immediately." msgstr "" -#: src/Module/Settings/Profile/Photo/Crop.php:155 +#: src/Module/Settings/Profile/Photo/Crop.php:141 msgid "Unable to process image" msgstr "Det gick inte att behandla bilden" -#: src/Module/Settings/Profile/Photo/Crop.php:174 +#: src/Module/Settings/Profile/Photo/Crop.php:160 msgid "Photo not found." msgstr "" -#: src/Module/Settings/Profile/Photo/Crop.php:196 +#: src/Module/Settings/Profile/Photo/Crop.php:182 msgid "Profile picture successfully updated." msgstr "" -#: src/Module/Settings/Profile/Photo/Crop.php:222 -#: src/Module/Settings/Profile/Photo/Crop.php:226 +#: src/Module/Settings/Profile/Photo/Crop.php:208 +#: src/Module/Settings/Profile/Photo/Crop.php:212 msgid "Crop Image" msgstr "Beskär bild" -#: src/Module/Settings/Profile/Photo/Crop.php:223 +#: src/Module/Settings/Profile/Photo/Crop.php:209 msgid "Please adjust the image cropping for optimum viewing." msgstr "Välj hur bilden ska beskäras för att bli så bra som möjligt." -#: src/Module/Settings/Profile/Photo/Crop.php:225 +#: src/Module/Settings/Profile/Photo/Crop.php:211 msgid "Use Image As Is" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:46 +#: src/Module/Settings/Profile/Photo/Index.php:32 msgid "Missing uploaded image." msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:123 +#: src/Module/Settings/Profile/Photo/Index.php:109 msgid "Profile Picture Settings" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:124 +#: src/Module/Settings/Profile/Photo/Index.php:110 msgid "Current Profile Picture" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:125 +#: src/Module/Settings/Profile/Photo/Index.php:111 msgid "Upload Profile Picture" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:126 +#: src/Module/Settings/Profile/Photo/Index.php:112 msgid "Upload Picture:" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:131 +#: src/Module/Settings/Profile/Photo/Index.php:117 msgid "or" msgstr "eller" -#: src/Module/Settings/Profile/Photo/Index.php:133 +#: src/Module/Settings/Profile/Photo/Index.php:119 msgid "skip this step" msgstr "hoppa över det här steget" -#: src/Module/Settings/Profile/Photo/Index.php:135 +#: src/Module/Settings/Profile/Photo/Index.php:121 msgid "select a photo from your photo albums" msgstr "välj en bild från ett album" -#: src/Module/Settings/RemoveMe.php:76 +#: src/Module/Settings/RemoveMe.php:62 msgid "" "There was a validation error, please make sure you're logged in with the " "account you want to remove and try again." msgstr "" -#: src/Module/Settings/RemoveMe.php:76 +#: src/Module/Settings/RemoveMe.php:62 msgid "If this error persists, please contact your administrator." msgstr "" -#: src/Module/Settings/RemoveMe.php:90 -#: src/Navigation/Notifications/Repository/Notify.php:471 -#: src/Navigation/Notifications/Repository/Notify.php:492 +#: src/Module/Settings/RemoveMe.php:76 +#: src/Navigation/Notifications/Repository/Notify.php:457 +#: src/Navigation/Notifications/Repository/Notify.php:478 msgid "[Friendica System Notify]" msgstr "[System-avisering för Friendica]" -#: src/Module/Settings/RemoveMe.php:90 +#: src/Module/Settings/RemoveMe.php:76 msgid "User deleted their account" msgstr "Användaren tog bort sitt konto" -#: src/Module/Settings/RemoveMe.php:91 +#: src/Module/Settings/RemoveMe.php:77 msgid "" "On your Friendica node an user deleted their account. Please ensure that " "their data is removed from the backups." msgstr "" -#: src/Module/Settings/RemoveMe.php:92 +#: src/Module/Settings/RemoveMe.php:78 #, php-format msgid "The user id is %d" msgstr "ID för användaren är %d" -#: src/Module/Settings/RemoveMe.php:105 +#: src/Module/Settings/RemoveMe.php:91 msgid "Your account has been successfully removed. Bye bye!" msgstr "" -#: src/Module/Settings/RemoveMe.php:130 +#: src/Module/Settings/RemoveMe.php:116 msgid "Remove My Account" msgstr "Ta bort mitt konto" -#: src/Module/Settings/RemoveMe.php:131 +#: src/Module/Settings/RemoveMe.php:117 msgid "" "This will completely remove your account. Once this has been done it is not " "recoverable." msgstr "Detta kommer att ta bort kontot helt och hållet. Efter att det är gjort går det inte att återställa." -#: src/Module/Settings/RemoveMe.php:136 +#: src/Module/Settings/RemoveMe.php:122 msgid "Please enter your password for verification:" msgstr "Ange lösenordet igen för säkerhets skull:" -#: src/Module/Settings/Server/Action.php:60 +#: src/Module/Settings/Server/Action.php:46 msgid "Do you want to ignore this server?" msgstr "" -#: src/Module/Settings/Server/Action.php:64 +#: src/Module/Settings/Server/Action.php:50 msgid "Do you want to unignore this server?" msgstr "" -#: src/Module/Settings/Server/Action.php:74 -#: src/Module/Settings/Server/Index.php:104 +#: src/Module/Settings/Server/Action.php:60 +#: src/Module/Settings/Server/Index.php:90 msgid "Remote server settings" msgstr "" -#: src/Module/Settings/Server/Action.php:77 +#: src/Module/Settings/Server/Action.php:63 msgid "Server URL" msgstr "" -#: src/Module/Settings/Server/Index.php:78 +#: src/Module/Settings/Server/Index.php:64 msgid "Settings saved" msgstr "" -#: src/Module/Settings/Server/Index.php:105 +#: src/Module/Settings/Server/Index.php:91 msgid "" "Here you can find all the remote servers you have taken individual " "moderation actions against. For a list of servers your node has blocked, " "please check out the Information page." msgstr "" -#: src/Module/Settings/Server/Index.php:110 +#: src/Module/Settings/Server/Index.php:96 msgid "Delete all your settings for the remote server" msgstr "" -#: src/Module/Settings/Server/Index.php:111 +#: src/Module/Settings/Server/Index.php:97 msgid "Save changes" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:69 -#: src/Module/Settings/TwoFactor/Recovery.php:67 -#: src/Module/Settings/TwoFactor/Trusted.php:70 -#: src/Module/Settings/TwoFactor/Verify.php:72 +#: src/Module/Settings/TwoFactor/AppSpecific.php:55 +#: src/Module/Settings/TwoFactor/Recovery.php:53 +#: src/Module/Settings/TwoFactor/Trusted.php:56 +#: src/Module/Settings/TwoFactor/Verify.php:58 msgid "Please enter your password to access this page." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:87 +#: src/Module/Settings/TwoFactor/AppSpecific.php:73 msgid "App-specific password generation failed: The description is empty." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:90 +#: src/Module/Settings/TwoFactor/AppSpecific.php:76 msgid "" "App-specific password generation failed: This description already exists." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:94 +#: src/Module/Settings/TwoFactor/AppSpecific.php:80 msgid "New app-specific password generated." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:100 +#: src/Module/Settings/TwoFactor/AppSpecific.php:86 msgid "App-specific passwords successfully revoked." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:110 +#: src/Module/Settings/TwoFactor/AppSpecific.php:96 msgid "App-specific password successfully revoked." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:131 +#: src/Module/Settings/TwoFactor/AppSpecific.php:117 msgid "Two-factor app-specific passwords" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:133 +#: src/Module/Settings/TwoFactor/AppSpecific.php:119 msgid "" "App-specific passwords are randomly generated passwords used instead your" " regular password to authenticate your account on third-party applications " "that don't support two-factor authentication.
" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:134 +#: src/Module/Settings/TwoFactor/AppSpecific.php:120 msgid "" "Make sure to copy your new app-specific password now. You won’t be able to " "see it again!" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:138 +#: src/Module/Settings/TwoFactor/AppSpecific.php:124 msgid "Last Used" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:139 +#: src/Module/Settings/TwoFactor/AppSpecific.php:125 msgid "Revoke" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:140 +#: src/Module/Settings/TwoFactor/AppSpecific.php:126 msgid "Revoke All" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:143 +#: src/Module/Settings/TwoFactor/AppSpecific.php:129 msgid "" "When you generate a new app-specific password, you must use it right away, " "it will be shown to you once after you generate it." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:144 +#: src/Module/Settings/TwoFactor/AppSpecific.php:130 msgid "Generate new app-specific password" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:145 +#: src/Module/Settings/TwoFactor/AppSpecific.php:131 msgid "Friendiqa on my Fairphone 2..." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:146 +#: src/Module/Settings/TwoFactor/AppSpecific.php:132 msgid "Generate" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:88 +#: src/Module/Settings/TwoFactor/Index.php:74 msgid "Two-factor authentication successfully disabled." msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:141 +#: src/Module/Settings/TwoFactor/Index.php:127 msgid "" "Use an application on a mobile device to get two-factor authentication " "codes when prompted on login.
" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:145 +#: src/Module/Settings/TwoFactor/Index.php:131 msgid "Authenticator app" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:146 +#: src/Module/Settings/TwoFactor/Index.php:132 msgid "Configured" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:146 +#: src/Module/Settings/TwoFactor/Index.php:132 msgid "Not Configured" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:147 +#: src/Module/Settings/TwoFactor/Index.php:133 msgid "You haven't finished configuring your authenticator app.
" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:148 +#: src/Module/Settings/TwoFactor/Index.php:134 msgid "Your authenticator app is correctly configured.
" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:150 +#: src/Module/Settings/TwoFactor/Index.php:136 msgid "Recovery codes" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:151 +#: src/Module/Settings/TwoFactor/Index.php:137 msgid "Remaining valid codes" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:153 +#: src/Module/Settings/TwoFactor/Index.php:139 msgid "" "These one-use codes can replace an authenticator app code in case you " "have lost access to it.
" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:155 +#: src/Module/Settings/TwoFactor/Index.php:141 msgid "App-specific passwords" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:156 +#: src/Module/Settings/TwoFactor/Index.php:142 msgid "Generated app-specific passwords" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:158 +#: src/Module/Settings/TwoFactor/Index.php:144 msgid "" "These randomly generated passwords allow you to authenticate on apps not " "supporting two-factor authentication.
" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:161 +#: src/Module/Settings/TwoFactor/Index.php:147 msgid "Current password:" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:161 +#: src/Module/Settings/TwoFactor/Index.php:147 msgid "" "You need to provide your current password to change two-factor " "authentication settings." msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:162 +#: src/Module/Settings/TwoFactor/Index.php:148 msgid "Enable two-factor authentication" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:163 +#: src/Module/Settings/TwoFactor/Index.php:149 msgid "Disable two-factor authentication" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:164 +#: src/Module/Settings/TwoFactor/Index.php:150 msgid "Show recovery codes" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:165 +#: src/Module/Settings/TwoFactor/Index.php:151 msgid "Manage app-specific passwords" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:166 +#: src/Module/Settings/TwoFactor/Index.php:152 msgid "Manage trusted browsers" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:167 +#: src/Module/Settings/TwoFactor/Index.php:153 msgid "Finish app configuration" msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:83 +#: src/Module/Settings/TwoFactor/Recovery.php:69 msgid "New recovery codes successfully generated." msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:109 +#: src/Module/Settings/TwoFactor/Recovery.php:95 msgid "Two-factor recovery codes" msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:111 +#: src/Module/Settings/TwoFactor/Recovery.php:97 msgid "" "Recovery codes can be used to access your account in the event you lose " "access to your device and cannot receive two-factor authentication " @@ -11313,68 +11320,68 @@ msgid "" "account.
" msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:113 +#: src/Module/Settings/TwoFactor/Recovery.php:99 msgid "" "When you generate new recovery codes, you must copy the new codes. Your old " "codes won’t work anymore." msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:114 +#: src/Module/Settings/TwoFactor/Recovery.php:100 msgid "Generate new recovery codes" msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:116 +#: src/Module/Settings/TwoFactor/Recovery.php:102 msgid "Next: Verification" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:87 +#: src/Module/Settings/TwoFactor/Trusted.php:73 msgid "Trusted browsers successfully removed." msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:97 +#: src/Module/Settings/TwoFactor/Trusted.php:83 msgid "Trusted browser successfully removed." msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:139 +#: src/Module/Settings/TwoFactor/Trusted.php:125 msgid "Two-factor Trusted Browsers" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:140 +#: src/Module/Settings/TwoFactor/Trusted.php:126 msgid "" "Trusted browsers are individual browsers you chose to skip two-factor " "authentication to access Friendica. Please use this feature sparingly, as it" " can negate the benefit of two-factor authentication." msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:141 +#: src/Module/Settings/TwoFactor/Trusted.php:127 msgid "Device" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:142 +#: src/Module/Settings/TwoFactor/Trusted.php:128 msgid "OS" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:144 +#: src/Module/Settings/TwoFactor/Trusted.php:130 msgid "Trusted" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:145 +#: src/Module/Settings/TwoFactor/Trusted.php:131 msgid "Created At" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:146 +#: src/Module/Settings/TwoFactor/Trusted.php:132 msgid "Last Use" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:148 +#: src/Module/Settings/TwoFactor/Trusted.php:134 msgid "Remove All" msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:94 +#: src/Module/Settings/TwoFactor/Verify.php:80 msgid "Two-factor authentication successfully activated." msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:128 +#: src/Module/Settings/TwoFactor/Verify.php:114 #, php-format msgid "" "Or you can submit the authentication settings manually:
\n" @@ -11394,105 +11401,105 @@ msgid "" "" msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:148 +#: src/Module/Settings/TwoFactor/Verify.php:134 msgid "Two-factor code verification" msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:150 +#: src/Module/Settings/TwoFactor/Verify.php:136 msgid "" "Please scan this QR Code with your authenticator app and submit the " "provided code.
" msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:152 +#: src/Module/Settings/TwoFactor/Verify.php:138 #, php-format msgid "" "Or you can open the following URL in your mobile device:
" msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:159 +#: src/Module/Settings/TwoFactor/Verify.php:145 msgid "Verify code and enable two-factor authentication" msgstr "" -#: src/Module/Settings/UserExport.php:90 +#: src/Module/Settings/UserExport.php:76 msgid "Export account" msgstr "Exportera konto" -#: src/Module/Settings/UserExport.php:90 +#: src/Module/Settings/UserExport.php:76 msgid "" "Export your account info and contacts. Use this to make a backup of your " "account and/or to move it to another server." msgstr "" -#: src/Module/Settings/UserExport.php:91 +#: src/Module/Settings/UserExport.php:77 msgid "Export all" msgstr "Exportera allt" -#: src/Module/Settings/UserExport.php:91 +#: src/Module/Settings/UserExport.php:77 msgid "" "Export your account info, contacts and all your items as json. Could be a " "very big file, and could take a lot of time. Use this to make a full backup " "of your account (photos are not exported)" msgstr "" -#: src/Module/Settings/UserExport.php:92 +#: src/Module/Settings/UserExport.php:78 msgid "Export Contacts to CSV" msgstr "" -#: src/Module/Settings/UserExport.php:92 +#: src/Module/Settings/UserExport.php:78 msgid "" "Export the list of the accounts you are following as CSV file. Compatible to" " e.g. Mastodon." msgstr "" -#: src/Module/Special/DisplayNotFound.php:35 +#: src/Module/Special/DisplayNotFound.php:21 msgid "The top-level post isn't visible." msgstr "" -#: src/Module/Special/DisplayNotFound.php:36 +#: src/Module/Special/DisplayNotFound.php:22 msgid "The top-level post was deleted." msgstr "" -#: src/Module/Special/DisplayNotFound.php:37 +#: src/Module/Special/DisplayNotFound.php:23 msgid "" "This node has blocked the top-level author or the author of the shared post." msgstr "" -#: src/Module/Special/DisplayNotFound.php:38 +#: src/Module/Special/DisplayNotFound.php:24 msgid "" "You have ignored or blocked the top-level author or the author of the shared" " post." msgstr "" -#: src/Module/Special/DisplayNotFound.php:39 +#: src/Module/Special/DisplayNotFound.php:25 msgid "" "You have ignored the top-level author's server or the shared post author's " "server." msgstr "" -#: src/Module/Special/DisplayNotFound.php:45 +#: src/Module/Special/DisplayNotFound.php:31 msgid "Conversation Not Found" msgstr "" -#: src/Module/Special/DisplayNotFound.php:46 +#: src/Module/Special/DisplayNotFound.php:32 msgid "Unfortunately, the requested conversation isn't available to you." msgstr "" -#: src/Module/Special/DisplayNotFound.php:47 +#: src/Module/Special/DisplayNotFound.php:33 msgid "Possible reasons include:" msgstr "" -#: src/Module/Special/HTTPException.php:78 +#: src/Module/Special/HTTPException.php:64 msgid "Stack trace:" msgstr "" -#: src/Module/Special/HTTPException.php:83 +#: src/Module/Special/HTTPException.php:69 #, php-format msgid "Exception thrown in %s:%d" msgstr "" -#: src/Module/Tos.php:58 src/Module/Tos.php:107 +#: src/Module/Tos.php:44 src/Module/Tos.php:93 msgid "" "At the time of registration, and for providing communications between the " "user account and their contacts, the user has to provide a display name (pen" @@ -11505,14 +11512,14 @@ msgid "" "settings, it is not necessary for communication." msgstr "" -#: src/Module/Tos.php:59 src/Module/Tos.php:108 +#: src/Module/Tos.php:45 src/Module/Tos.php:94 msgid "" "This data is required for communication and is passed on to the nodes of the" " communication partners and is stored there. Users can enter additional " "private data that may be transmitted to the communication partners accounts." msgstr "" -#: src/Module/Tos.php:60 src/Module/Tos.php:109 +#: src/Module/Tos.php:46 src/Module/Tos.php:95 #, php-format msgid "" "At any point in time a logged in user can export their account data from the" @@ -11523,121 +11530,121 @@ msgid "" "from the nodes of the communication partners." msgstr "" -#: src/Module/Tos.php:63 src/Module/Tos.php:106 +#: src/Module/Tos.php:49 src/Module/Tos.php:92 msgid "Privacy Statement" msgstr "" -#: src/Module/Tos.php:103 +#: src/Module/Tos.php:89 msgid "Rules" msgstr "" -#: src/Module/Update/Display.php:45 +#: src/Module/Update/Display.php:31 msgid "Parameter uri_id is missing." msgstr "" -#: src/Module/Update/Display.php:55 +#: src/Module/Update/Display.php:41 msgid "The requested item doesn't exist or has been deleted." msgstr "" -#: src/Module/User/Delegation.php:146 +#: src/Module/User/Delegation.php:132 #, php-format msgid "You are now logged in as %s" msgstr "Du är nu inloggad som %s" -#: src/Module/User/Delegation.php:185 +#: src/Module/User/Delegation.php:171 msgid "Switch between your accounts" msgstr "Växla mellan dina konton" -#: src/Module/User/Delegation.php:186 +#: src/Module/User/Delegation.php:172 msgid "Manage your accounts" msgstr "Hantera dina konton" -#: src/Module/User/Delegation.php:187 +#: src/Module/User/Delegation.php:173 msgid "" "Toggle between different identities or community/group pages which share " "your account details or which you have been granted \"manage\" permissions" msgstr "" -#: src/Module/User/Delegation.php:188 +#: src/Module/User/Delegation.php:174 msgid "Select an identity to manage: " msgstr "Välj vilken identitet du vill hantera: " -#: src/Module/User/Import.php:104 +#: src/Module/User/Import.php:90 msgid "User imports on closed servers can only be done by an administrator." msgstr "" -#: src/Module/User/Import.php:120 +#: src/Module/User/Import.php:106 msgid "Move account" msgstr "Flytta konto" -#: src/Module/User/Import.php:121 +#: src/Module/User/Import.php:107 msgid "You can import an account from another Friendica server." msgstr "Du kan importera ett konto från en annan Friendica-server." -#: src/Module/User/Import.php:122 +#: src/Module/User/Import.php:108 msgid "" "You need to export your account from the old server and upload it here. We " "will recreate your old account here with all your contacts. We will try also" " to inform your friends that you moved here." msgstr "" -#: src/Module/User/Import.php:123 +#: src/Module/User/Import.php:109 msgid "" "This feature is experimental. We can't import contacts from the OStatus " "network (GNU Social/Statusnet) or from Diaspora" msgstr "" -#: src/Module/User/Import.php:124 +#: src/Module/User/Import.php:110 msgid "Account file" msgstr "" -#: src/Module/User/Import.php:124 +#: src/Module/User/Import.php:110 msgid "" "To export your account, go to \"Settings->Export your personal data\" and " "select \"Export account\"" msgstr "För att exportera ditt konto, gå till \"Inställningar->Exportera din personliga data\" och välj \"Exportera konto\"" -#: src/Module/User/Import.php:218 +#: src/Module/User/Import.php:204 msgid "Error decoding account file" msgstr "" -#: src/Module/User/Import.php:223 +#: src/Module/User/Import.php:209 msgid "Error! No version data in file! This is not a Friendica account file?" msgstr "" -#: src/Module/User/Import.php:231 +#: src/Module/User/Import.php:217 #, php-format msgid "User '%s' already exists on this server!" msgstr "Användaren '%s' existerar redan i den här servern!" -#: src/Module/User/Import.php:268 +#: src/Module/User/Import.php:254 msgid "User creation error" msgstr "Fel uppstod när användaren skulle skapas" -#: src/Module/User/Import.php:317 +#: src/Module/User/Import.php:303 #, php-format msgid "%d contact not imported" msgid_plural "%d contacts not imported" msgstr[0] "%d kontakt importerades inte" msgstr[1] "%d kontakterna importerades inte" -#: src/Module/User/Import.php:366 +#: src/Module/User/Import.php:352 msgid "User profile creation error" msgstr "" -#: src/Module/User/Import.php:417 +#: src/Module/User/Import.php:403 msgid "Done. You can now login with your username and password" msgstr "Färdig. Du kan nu logga in med ditt användarnamn och lösenord" -#: src/Module/Welcome.php:44 +#: src/Module/Welcome.php:30 msgid "Welcome to Friendica" msgstr "Välkommen till Friendica" -#: src/Module/Welcome.php:45 +#: src/Module/Welcome.php:31 msgid "New Member Checklist" msgstr "" -#: src/Module/Welcome.php:46 +#: src/Module/Welcome.php:32 msgid "" "We would like to offer some tips and links to help make your experience " "enjoyable. Click any item to visit the relevant page. A link to this page " @@ -11645,33 +11652,33 @@ msgid "" "registration and then will quietly disappear." msgstr "" -#: src/Module/Welcome.php:48 +#: src/Module/Welcome.php:34 msgid "Getting Started" msgstr "Komma igång" -#: src/Module/Welcome.php:49 +#: src/Module/Welcome.php:35 msgid "Friendica Walk-Through" msgstr "Genomgång av Friendica" -#: src/Module/Welcome.php:50 +#: src/Module/Welcome.php:36 msgid "" "On your Quick Start page - find a brief introduction to your " "profile and network tabs, make some new connections, and find some groups to" " join." msgstr "" -#: src/Module/Welcome.php:53 +#: src/Module/Welcome.php:39 msgid "Go to Your Settings" msgstr "Gå till dina inställningar" -#: src/Module/Welcome.php:54 +#: src/Module/Welcome.php:40 msgid "" "On your Settings page - change your initial password. Also make a " "note of your Identity Address. This looks just like an email address - and " "will be useful in making friends on the free social web." msgstr "" -#: src/Module/Welcome.php:55 +#: src/Module/Welcome.php:41 msgid "" "Review the other settings, particularly the privacy settings. An unpublished" " directory listing is like having an unlisted phone number. In general, you " @@ -11679,77 +11686,77 @@ msgid "" "potential friends know exactly how to find you." msgstr "" -#: src/Module/Welcome.php:59 +#: src/Module/Welcome.php:45 msgid "" "Upload a profile photo if you have not done so already. Studies have shown " "that people with real photos of themselves are ten times more likely to make" " friends than people who do not." msgstr "" -#: src/Module/Welcome.php:60 +#: src/Module/Welcome.php:46 msgid "Edit Your Profile" msgstr "Redigera din profil" -#: src/Module/Welcome.php:61 +#: src/Module/Welcome.php:47 msgid "" "Edit your default profile to your liking. Review the " "settings for hiding your list of friends and hiding the profile from unknown" " visitors." msgstr "" -#: src/Module/Welcome.php:62 +#: src/Module/Welcome.php:48 msgid "Profile Keywords" msgstr "" -#: src/Module/Welcome.php:63 +#: src/Module/Welcome.php:49 msgid "" "Set some public keywords for your profile which describe your interests. We " "may be able to find other people with similar interests and suggest " "friendships." msgstr "" -#: src/Module/Welcome.php:65 +#: src/Module/Welcome.php:51 msgid "Connecting" msgstr "Ansluter" -#: src/Module/Welcome.php:67 +#: src/Module/Welcome.php:53 msgid "Importing Emails" msgstr "Importerar e-post" -#: src/Module/Welcome.php:68 +#: src/Module/Welcome.php:54 msgid "" "Enter your email access information on your Connector Settings page if you " "wish to import and interact with friends or mailing lists from your email " "INBOX" msgstr "" -#: src/Module/Welcome.php:69 +#: src/Module/Welcome.php:55 msgid "Go to Your Contacts Page" msgstr "" -#: src/Module/Welcome.php:70 +#: src/Module/Welcome.php:56 msgid "" "Your Contacts page is your gateway to managing friendships and connecting " "with friends on other networks. Typically you enter their address or site " "URL in the Add New Contact dialog." msgstr "" -#: src/Module/Welcome.php:71 +#: src/Module/Welcome.php:57 msgid "Go to Your Site's Directory" msgstr "" -#: src/Module/Welcome.php:72 +#: src/Module/Welcome.php:58 msgid "" "The Directory page lets you find other people in this network or other " "federated sites. Look for a Connect or Follow link on " "their profile page. Provide your own Identity Address if requested." msgstr "" -#: src/Module/Welcome.php:73 +#: src/Module/Welcome.php:59 msgid "Finding New People" msgstr "Hitta nya personer" -#: src/Module/Welcome.php:74 +#: src/Module/Welcome.php:60 msgid "" "On the side panel of the Contacts page are several tools to find new " "friends. We can match people by interest, look up people by name or " @@ -11758,412 +11765,408 @@ msgid "" "hours." msgstr "" -#: src/Module/Welcome.php:77 +#: src/Module/Welcome.php:63 msgid "Add Your Contacts To Circle" msgstr "" -#: src/Module/Welcome.php:78 +#: src/Module/Welcome.php:64 msgid "" "Once you have made some friends, organize them into private conversation " "circles from the sidebar of your Contacts page and then you can interact " "with each circle privately on your Network page." msgstr "" -#: src/Module/Welcome.php:80 +#: src/Module/Welcome.php:66 msgid "Why Aren't My Posts Public?" msgstr "Varför visas inte mina inlägg publikt?" -#: src/Module/Welcome.php:81 +#: src/Module/Welcome.php:67 msgid "" "Friendica respects your privacy. By default, your posts will only show up to" " people you've added as friends. For more information, see the help section " "from the link above." msgstr "" -#: src/Module/Welcome.php:83 +#: src/Module/Welcome.php:69 msgid "Getting Help" msgstr "Få hjälp" -#: src/Module/Welcome.php:84 +#: src/Module/Welcome.php:70 msgid "Go to the Help Section" msgstr "Gå till Hjälp-sektionen" -#: src/Module/Welcome.php:85 +#: src/Module/Welcome.php:71 msgid "" "Our help pages may be consulted for detail on other program" " features and resources." msgstr "" -#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:161 +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:147 msgid "{0} wants to follow you" msgstr "" -#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:163 +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:149 msgid "{0} has started following you" msgstr "" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:96 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:82 #, php-format msgid "%s liked %s's post" msgstr "%sgillade %s's inlägg" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:108 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:94 #, php-format msgid "%s disliked %s's post" msgstr "%s gillade inte %s's inlägg" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:120 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:106 #, php-format msgid "%s is attending %s's event" msgstr "" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:132 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:118 #, php-format msgid "%s is not attending %s's event" msgstr "" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:144 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:130 #, php-format msgid "%s may attending %s's event" msgstr "" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:174 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:160 #, php-format msgid "%s is now friends with %s" msgstr "%s är nu vänner med %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:341 -#: src/Navigation/Notifications/Factory/FormattedNotify.php:379 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:327 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:365 #, php-format msgid "%s commented on %s's post" msgstr "%s kommenterade på %s's inlägg" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:378 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:364 #, php-format msgid "%s created a new post" msgstr "%s skapade ett nytt inlägg" -#: src/Navigation/Notifications/Factory/Introduction.php:132 +#: src/Navigation/Notifications/Factory/Introduction.php:118 msgid "Friend Suggestion" msgstr "Vän-förslag" -#: src/Navigation/Notifications/Factory/Introduction.php:158 +#: src/Navigation/Notifications/Factory/Introduction.php:144 msgid "Friend/Connect Request" msgstr "Vän- eller kontaktförfrågan" -#: src/Navigation/Notifications/Factory/Introduction.php:158 -msgid "New Follower" -msgstr "En som vill följa dig" - -#: src/Navigation/Notifications/Factory/Notification.php:134 +#: src/Navigation/Notifications/Factory/Notification.php:120 #, php-format msgid "%1$s wants to follow you" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:136 +#: src/Navigation/Notifications/Factory/Notification.php:122 #, php-format msgid "%1$s has started following you" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:208 +#: src/Navigation/Notifications/Factory/Notification.php:194 #, php-format msgid "%1$s liked your comment on %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:211 +#: src/Navigation/Notifications/Factory/Notification.php:197 #, php-format msgid "%1$s liked your post %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:218 +#: src/Navigation/Notifications/Factory/Notification.php:204 #, php-format msgid "%1$s disliked your comment on %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:221 +#: src/Navigation/Notifications/Factory/Notification.php:207 #, php-format msgid "%1$s disliked your post %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:228 +#: src/Navigation/Notifications/Factory/Notification.php:214 #, php-format msgid "%1$s shared your comment %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:231 -#: src/Navigation/Notifications/Factory/Notification.php:316 +#: src/Navigation/Notifications/Factory/Notification.php:217 +#: src/Navigation/Notifications/Factory/Notification.php:302 #, php-format msgid "%1$s shared your post %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:235 -#: src/Navigation/Notifications/Factory/Notification.php:305 +#: src/Navigation/Notifications/Factory/Notification.php:221 +#: src/Navigation/Notifications/Factory/Notification.php:291 #, php-format msgid "%1$s shared the post %2$s from %3$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:237 -#: src/Navigation/Notifications/Factory/Notification.php:307 +#: src/Navigation/Notifications/Factory/Notification.php:223 +#: src/Navigation/Notifications/Factory/Notification.php:293 #, php-format msgid "%1$s shared a post from %3$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:239 -#: src/Navigation/Notifications/Factory/Notification.php:309 +#: src/Navigation/Notifications/Factory/Notification.php:225 +#: src/Navigation/Notifications/Factory/Notification.php:295 #, php-format msgid "%1$s shared the post %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:241 -#: src/Navigation/Notifications/Factory/Notification.php:311 +#: src/Navigation/Notifications/Factory/Notification.php:227 +#: src/Navigation/Notifications/Factory/Notification.php:297 #, php-format msgid "%1$s shared a post" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:249 +#: src/Navigation/Notifications/Factory/Notification.php:235 #, php-format msgid "%1$s wants to attend your event %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:256 +#: src/Navigation/Notifications/Factory/Notification.php:242 #, php-format msgid "%1$s does not want to attend your event %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:263 +#: src/Navigation/Notifications/Factory/Notification.php:249 #, php-format msgid "%1$s maybe wants to attend your event %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:270 +#: src/Navigation/Notifications/Factory/Notification.php:256 #, php-format msgid "%1$s tagged you on %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:274 +#: src/Navigation/Notifications/Factory/Notification.php:260 #, php-format msgid "%1$s replied to you on %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:278 +#: src/Navigation/Notifications/Factory/Notification.php:264 #, php-format msgid "%1$s commented in your thread %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:282 +#: src/Navigation/Notifications/Factory/Notification.php:268 #, php-format msgid "%1$s commented on your comment %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:289 +#: src/Navigation/Notifications/Factory/Notification.php:275 #, php-format msgid "%1$s commented in their thread %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:291 +#: src/Navigation/Notifications/Factory/Notification.php:277 #, php-format msgid "%1$s commented in their thread" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:293 +#: src/Navigation/Notifications/Factory/Notification.php:279 #, php-format msgid "%1$s commented in the thread %2$s from %3$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:295 +#: src/Navigation/Notifications/Factory/Notification.php:281 #, php-format msgid "%1$s commented in the thread from %3$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:300 +#: src/Navigation/Notifications/Factory/Notification.php:286 #, php-format msgid "%1$s commented on your thread %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:225 -#: src/Navigation/Notifications/Repository/Notify.php:754 +#: src/Navigation/Notifications/Repository/Notify.php:211 +#: src/Navigation/Notifications/Repository/Notify.php:740 msgid "[Friendica:Notify]" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:293 +#: src/Navigation/Notifications/Repository/Notify.php:279 #, php-format msgid "%s New mail received at %s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:295 +#: src/Navigation/Notifications/Repository/Notify.php:281 #, php-format msgid "%1$s sent you a new private message at %2$s." msgstr "%1$sskickade ett privat meddelande till dig %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:296 +#: src/Navigation/Notifications/Repository/Notify.php:282 msgid "a private message" msgstr "ett privat meddelande" -#: src/Navigation/Notifications/Repository/Notify.php:296 +#: src/Navigation/Notifications/Repository/Notify.php:282 #, php-format msgid "%1$s sent you %2$s." msgstr "%1$sskickade%2$s." -#: src/Navigation/Notifications/Repository/Notify.php:298 +#: src/Navigation/Notifications/Repository/Notify.php:284 #, php-format msgid "Please visit %s to view and/or reply to your private messages." msgstr "Gå till %sför att se och svara på dina privata meddelanden." -#: src/Navigation/Notifications/Repository/Notify.php:328 +#: src/Navigation/Notifications/Repository/Notify.php:314 #, php-format msgid "%1$s commented on %2$s's %3$s %4$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:333 +#: src/Navigation/Notifications/Repository/Notify.php:319 #, php-format msgid "%1$s commented on your %2$s %3$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:337 +#: src/Navigation/Notifications/Repository/Notify.php:323 #, php-format msgid "%1$s commented on their %2$s %3$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:341 -#: src/Navigation/Notifications/Repository/Notify.php:788 +#: src/Navigation/Notifications/Repository/Notify.php:327 +#: src/Navigation/Notifications/Repository/Notify.php:774 #, php-format msgid "%1$s Comment to conversation #%2$d by %3$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:343 +#: src/Navigation/Notifications/Repository/Notify.php:329 #, php-format msgid "%s commented on an item/conversation you have been following." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:347 -#: src/Navigation/Notifications/Repository/Notify.php:362 -#: src/Navigation/Notifications/Repository/Notify.php:814 +#: src/Navigation/Notifications/Repository/Notify.php:333 +#: src/Navigation/Notifications/Repository/Notify.php:348 +#: src/Navigation/Notifications/Repository/Notify.php:800 #, php-format msgid "Please visit %s to view and/or reply to the conversation." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:354 +#: src/Navigation/Notifications/Repository/Notify.php:340 #, php-format msgid "%s %s posted to your profile wall" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:356 +#: src/Navigation/Notifications/Repository/Notify.php:342 #, php-format msgid "%1$s posted to your profile wall at %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:357 +#: src/Navigation/Notifications/Repository/Notify.php:343 #, php-format msgid "%1$s posted to [url=%2$s]your wall[/url]" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:370 +#: src/Navigation/Notifications/Repository/Notify.php:356 #, php-format msgid "%s Introduction received" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:372 +#: src/Navigation/Notifications/Repository/Notify.php:358 #, php-format msgid "You've received an introduction from '%1$s' at %2$s" msgstr "Du tog emot en introduktion från '%1$s' vid %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:373 +#: src/Navigation/Notifications/Repository/Notify.php:359 #, php-format msgid "You've received [url=%1$s]an introduction[/url] from %2$s." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:378 -#: src/Navigation/Notifications/Repository/Notify.php:424 +#: src/Navigation/Notifications/Repository/Notify.php:364 +#: src/Navigation/Notifications/Repository/Notify.php:410 #, php-format msgid "You may visit their profile at %s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:380 +#: src/Navigation/Notifications/Repository/Notify.php:366 #, php-format msgid "Please visit %s to approve or reject the introduction." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:387 +#: src/Navigation/Notifications/Repository/Notify.php:373 #, php-format msgid "%s A new person is sharing with you" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:389 -#: src/Navigation/Notifications/Repository/Notify.php:390 +#: src/Navigation/Notifications/Repository/Notify.php:375 +#: src/Navigation/Notifications/Repository/Notify.php:376 #, php-format msgid "%1$s is sharing with you at %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:397 +#: src/Navigation/Notifications/Repository/Notify.php:383 #, php-format msgid "%s You have a new follower" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:399 -#: src/Navigation/Notifications/Repository/Notify.php:400 +#: src/Navigation/Notifications/Repository/Notify.php:385 +#: src/Navigation/Notifications/Repository/Notify.php:386 #, php-format msgid "You have a new follower at %2$s : %1$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:413 +#: src/Navigation/Notifications/Repository/Notify.php:399 #, php-format msgid "%s Friend suggestion received" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:415 +#: src/Navigation/Notifications/Repository/Notify.php:401 #, php-format msgid "You've received a friend suggestion from '%1$s' at %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:416 +#: src/Navigation/Notifications/Repository/Notify.php:402 #, php-format msgid "" "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:422 +#: src/Navigation/Notifications/Repository/Notify.php:408 msgid "Name:" msgstr "Namn:" -#: src/Navigation/Notifications/Repository/Notify.php:423 +#: src/Navigation/Notifications/Repository/Notify.php:409 msgid "Photo:" msgstr "Foto:" -#: src/Navigation/Notifications/Repository/Notify.php:426 +#: src/Navigation/Notifications/Repository/Notify.php:412 #, php-format msgid "Please visit %s to approve or reject the suggestion." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:434 -#: src/Navigation/Notifications/Repository/Notify.php:449 +#: src/Navigation/Notifications/Repository/Notify.php:420 +#: src/Navigation/Notifications/Repository/Notify.php:435 #, php-format msgid "%s Connection accepted" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:436 -#: src/Navigation/Notifications/Repository/Notify.php:451 +#: src/Navigation/Notifications/Repository/Notify.php:422 +#: src/Navigation/Notifications/Repository/Notify.php:437 #, php-format msgid "'%1$s' has accepted your connection request at %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:437 -#: src/Navigation/Notifications/Repository/Notify.php:452 +#: src/Navigation/Notifications/Repository/Notify.php:423 +#: src/Navigation/Notifications/Repository/Notify.php:438 #, php-format msgid "%2$s has accepted your [url=%1$s]connection request[/url]." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:442 +#: src/Navigation/Notifications/Repository/Notify.php:428 msgid "" "You are now mutual friends and may exchange status updates, photos, and " "email without restriction." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:444 +#: src/Navigation/Notifications/Repository/Notify.php:430 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:457 +#: src/Navigation/Notifications/Repository/Notify.php:443 #, php-format msgid "" "'%1$s' has chosen to accept you a fan, which restricts some forms of " @@ -12172,34 +12175,34 @@ msgid "" "automatically." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:459 +#: src/Navigation/Notifications/Repository/Notify.php:445 #, php-format msgid "" "'%1$s' may choose to extend this into a two-way or more permissive " "relationship in the future." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:461 +#: src/Navigation/Notifications/Repository/Notify.php:447 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:471 +#: src/Navigation/Notifications/Repository/Notify.php:457 msgid "registration request" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:473 +#: src/Navigation/Notifications/Repository/Notify.php:459 #, php-format msgid "You've received a registration request from '%1$s' at %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:474 +#: src/Navigation/Notifications/Repository/Notify.php:460 #, php-format msgid "You've received a [url=%1$s]registration request[/url] from %2$s." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:479 -#: src/Navigation/Notifications/Repository/Notify.php:500 +#: src/Navigation/Notifications/Repository/Notify.php:465 +#: src/Navigation/Notifications/Repository/Notify.php:486 #, php-format msgid "" "Display Name:\t%s\n" @@ -12207,768 +12210,755 @@ msgid "" "Login Name:\t%s (%s)" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:485 +#: src/Navigation/Notifications/Repository/Notify.php:471 #, php-format msgid "Please visit %s to approve or reject the request." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:492 +#: src/Navigation/Notifications/Repository/Notify.php:478 msgid "new registration" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:494 +#: src/Navigation/Notifications/Repository/Notify.php:480 #, php-format msgid "You've received a new registration from '%1$s' at %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:495 +#: src/Navigation/Notifications/Repository/Notify.php:481 #, php-format msgid "You've received a [url=%1$s]new registration[/url] from %2$s." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:506 +#: src/Navigation/Notifications/Repository/Notify.php:492 #, php-format msgid "Please visit %s to have a look at the new registration." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:782 +#: src/Navigation/Notifications/Repository/Notify.php:768 #, php-format msgid "%s %s tagged you" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:785 +#: src/Navigation/Notifications/Repository/Notify.php:771 #, php-format msgid "%s %s shared a new post" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:793 +#: src/Navigation/Notifications/Repository/Notify.php:779 #, php-format msgid "%1$s %2$s liked your post #%3$d" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:796 +#: src/Navigation/Notifications/Repository/Notify.php:782 #, php-format msgid "%1$s %2$s liked your comment on #%3$d" msgstr "" -#: src/Object/EMail/ItemCCEMail.php:42 +#: src/Object/EMail/ItemCCEMail.php:28 #, php-format msgid "" "This message was sent to you by %s, a member of the Friendica social " "network." msgstr "" -#: src/Object/EMail/ItemCCEMail.php:44 +#: src/Object/EMail/ItemCCEMail.php:30 #, php-format msgid "You may visit them online at %s" msgstr "" -#: src/Object/EMail/ItemCCEMail.php:45 +#: src/Object/EMail/ItemCCEMail.php:31 msgid "" "Please contact the sender by replying to this post if you do not wish to " "receive these messages." msgstr "Kontakta avsändaren genom att svara på det här meddelandet om du inte vill ha sådana här meddelanden." -#: src/Object/EMail/ItemCCEMail.php:49 +#: src/Object/EMail/ItemCCEMail.php:35 #, php-format msgid "%s posted an update." msgstr "%s har gjort ett inlägg." -#: src/Object/Post.php:138 +#: src/Object/Post.php:124 msgid "Private Message" msgstr "Privat meddelande" -#: src/Object/Post.php:142 +#: src/Object/Post.php:128 msgid "Public Message" msgstr "" -#: src/Object/Post.php:146 +#: src/Object/Post.php:132 msgid "Unlisted Message" msgstr "" -#: src/Object/Post.php:182 +#: src/Object/Post.php:168 msgid "This entry was edited" msgstr "Den här posten redigerades" -#: src/Object/Post.php:210 +#: src/Object/Post.php:196 msgid "Connector Message" msgstr "" -#: src/Object/Post.php:239 src/Object/Post.php:241 +#: src/Object/Post.php:225 src/Object/Post.php:227 msgid "Edit" msgstr "Ändra" -#: src/Object/Post.php:275 +#: src/Object/Post.php:261 msgid "Delete globally" msgstr "" -#: src/Object/Post.php:275 +#: src/Object/Post.php:261 msgid "Remove locally" msgstr "" -#: src/Object/Post.php:282 +#: src/Object/Post.php:268 #, php-format msgid "Block %s" msgstr "" -#: src/Object/Post.php:287 +#: src/Object/Post.php:273 #, php-format msgid "Ignore %s" msgstr "" -#: src/Object/Post.php:292 +#: src/Object/Post.php:278 #, php-format msgid "Collapse %s" msgstr "" -#: src/Object/Post.php:296 +#: src/Object/Post.php:282 msgid "Report post" msgstr "" -#: src/Object/Post.php:307 +#: src/Object/Post.php:293 msgid "Save to folder" msgstr "" -#: src/Object/Post.php:347 +#: src/Object/Post.php:333 msgid "I will attend" msgstr "" -#: src/Object/Post.php:347 +#: src/Object/Post.php:333 msgid "I will not attend" msgstr "" -#: src/Object/Post.php:347 +#: src/Object/Post.php:333 msgid "I might attend" msgstr "" -#: src/Object/Post.php:394 +#: src/Object/Post.php:380 msgid "Ignore thread" msgstr "" -#: src/Object/Post.php:395 +#: src/Object/Post.php:381 msgid "Unignore thread" msgstr "" -#: src/Object/Post.php:396 +#: src/Object/Post.php:382 msgid "Toggle ignore status" msgstr "" -#: src/Object/Post.php:406 +#: src/Object/Post.php:392 msgid "Add star" msgstr "" -#: src/Object/Post.php:407 +#: src/Object/Post.php:393 msgid "Remove star" msgstr "" -#: src/Object/Post.php:408 +#: src/Object/Post.php:394 msgid "Toggle star status" msgstr "" -#: src/Object/Post.php:419 +#: src/Object/Post.php:405 msgid "Pin" msgstr "" -#: src/Object/Post.php:420 +#: src/Object/Post.php:406 msgid "Unpin" msgstr "" -#: src/Object/Post.php:421 +#: src/Object/Post.php:407 msgid "Toggle pin status" msgstr "" -#: src/Object/Post.php:424 +#: src/Object/Post.php:410 msgid "Pinned" msgstr "" -#: src/Object/Post.php:429 +#: src/Object/Post.php:415 msgid "Add tag" msgstr "" -#: src/Object/Post.php:444 +#: src/Object/Post.php:430 msgid "Quote share this" msgstr "" -#: src/Object/Post.php:444 +#: src/Object/Post.php:430 msgid "Quote Share" msgstr "" -#: src/Object/Post.php:447 +#: src/Object/Post.php:433 msgid "Reshare this" msgstr "" -#: src/Object/Post.php:447 +#: src/Object/Post.php:433 msgid "Reshare" msgstr "" -#: src/Object/Post.php:448 +#: src/Object/Post.php:434 msgid "Cancel your Reshare" msgstr "" -#: src/Object/Post.php:448 +#: src/Object/Post.php:434 msgid "Unshare" msgstr "" -#: src/Object/Post.php:492 +#: src/Object/Post.php:478 #, php-format msgid "%s (Received %s)" msgstr "" -#: src/Object/Post.php:498 +#: src/Object/Post.php:484 msgid "Comment this item on your system" msgstr "" -#: src/Object/Post.php:498 +#: src/Object/Post.php:484 msgid "Remote comment" msgstr "" -#: src/Object/Post.php:520 +#: src/Object/Post.php:506 msgid "Share via ..." msgstr "" -#: src/Object/Post.php:520 +#: src/Object/Post.php:506 msgid "Share via external services" msgstr "" -#: src/Object/Post.php:527 +#: src/Object/Post.php:513 msgid "Unknown parent" msgstr "" -#: src/Object/Post.php:531 +#: src/Object/Post.php:517 #, php-format msgid "in reply to %s" msgstr "" -#: src/Object/Post.php:533 +#: src/Object/Post.php:519 msgid "Parent is probably private or not federated." msgstr "" -#: src/Object/Post.php:557 +#: src/Object/Post.php:543 msgid "to" msgstr "till" -#: src/Object/Post.php:558 +#: src/Object/Post.php:544 msgid "via" msgstr "via" -#: src/Object/Post.php:559 +#: src/Object/Post.php:545 msgid "Wall-to-Wall" msgstr "Profil-till-profil" -#: src/Object/Post.php:560 +#: src/Object/Post.php:546 msgid "via Wall-To-Wall:" msgstr "via profil-till-profil:" -#: src/Object/Post.php:613 +#: src/Object/Post.php:599 #, php-format msgid "Reply to %s" msgstr "" -#: src/Object/Post.php:616 +#: src/Object/Post.php:602 msgid "More" msgstr "" -#: src/Object/Post.php:635 +#: src/Object/Post.php:621 msgid "Notifier task is pending" msgstr "" -#: src/Object/Post.php:636 +#: src/Object/Post.php:622 msgid "Delivery to remote servers is pending" msgstr "" -#: src/Object/Post.php:637 +#: src/Object/Post.php:623 msgid "Delivery to remote servers is underway" msgstr "" -#: src/Object/Post.php:638 +#: src/Object/Post.php:624 msgid "Delivery to remote servers is mostly done" msgstr "" -#: src/Object/Post.php:639 +#: src/Object/Post.php:625 msgid "Delivery to remote servers is done" msgstr "" -#: src/Object/Post.php:661 +#: src/Object/Post.php:647 #, php-format msgid "%d comment" msgid_plural "%d comments" msgstr[0] "%d kommentar" msgstr[1] "%d kommentarer" -#: src/Object/Post.php:662 +#: src/Object/Post.php:648 msgid "Show more" msgstr "" -#: src/Object/Post.php:663 +#: src/Object/Post.php:649 msgid "Show fewer" msgstr "" -#: src/Object/Post.php:700 +#: src/Object/Post.php:686 #, php-format msgid "Reshared by: %s" msgstr "" -#: src/Object/Post.php:705 +#: src/Object/Post.php:691 #, php-format msgid "Viewed by: %s" msgstr "" -#: src/Object/Post.php:710 +#: src/Object/Post.php:696 #, php-format msgid "Read by: %s" msgstr "" -#: src/Object/Post.php:715 +#: src/Object/Post.php:701 #, php-format msgid "Liked by: %s" msgstr "" -#: src/Object/Post.php:720 +#: src/Object/Post.php:706 #, php-format msgid "Disliked by: %s" msgstr "" -#: src/Object/Post.php:725 +#: src/Object/Post.php:711 #, php-format msgid "Attended by: %s" msgstr "" -#: src/Object/Post.php:730 +#: src/Object/Post.php:716 #, php-format msgid "Maybe attended by: %s" msgstr "" -#: src/Object/Post.php:735 +#: src/Object/Post.php:721 #, php-format msgid "Not attended by: %s" msgstr "" -#: src/Object/Post.php:740 +#: src/Object/Post.php:726 #, php-format msgid "Commented by: %s" msgstr "" -#: src/Object/Post.php:745 +#: src/Object/Post.php:731 #, php-format msgid "Reacted with %s by: %s" msgstr "" -#: src/Object/Post.php:768 +#: src/Object/Post.php:754 #, php-format msgid "Quote shared by: %s" msgstr "" -#: src/Protocol/ActivityPub/Receiver.php:568 +#: src/Protocol/ActivityPub/Receiver.php:557 msgid "Chat" msgstr "" -#: src/Protocol/Delivery.php:544 +#: src/Protocol/Delivery.php:530 msgid "(no subject)" msgstr "" -#: src/Protocol/OStatus.php:1392 -#, php-format -msgid "%s is now following %s." -msgstr "" - -#: src/Protocol/OStatus.php:1393 -msgid "following" -msgstr "följer" - -#: src/Protocol/OStatus.php:1396 -#, php-format -msgid "%s stopped following %s." -msgstr "" - -#: src/Protocol/OStatus.php:1397 -msgid "stopped following" -msgstr "följer inte längre" - -#: src/Render/FriendicaSmartyEngine.php:56 +#: src/Render/FriendicaSmartyEngine.php:42 #, php-format msgid "The folder %s must be writable by webserver." msgstr "" -#: src/Security/Authentication.php:216 +#: src/Security/Authentication.php:200 msgid "Login failed." msgstr "Inloggningen misslyckades." -#: src/Security/Authentication.php:261 +#: src/Security/Authentication.php:245 msgid "Login failed. Please check your credentials." msgstr "" -#: src/Security/Authentication.php:375 +#: src/Security/Authentication.php:359 #, php-format msgid "Welcome %s" msgstr "" -#: src/Security/Authentication.php:376 +#: src/Security/Authentication.php:360 msgid "Please upload a profile photo." msgstr "Vänligen ladda upp ett profil-foto." -#: src/Util/EMailer/MailBuilder.php:260 +#: src/Security/OpenWebAuth.php:149 +#, php-format +msgid "OpenWebAuth: %1$s welcomes %2$s" +msgstr "OpenWebAuth: %1$s välkomnar %2$s" + +#: src/Util/EMailer/MailBuilder.php:246 msgid "Friendica Notification" msgstr "" -#: src/Util/EMailer/NotifyMailBuilder.php:78 -#: src/Util/EMailer/SystemMailBuilder.php:54 +#: src/Util/EMailer/NotifyMailBuilder.php:64 +#: src/Util/EMailer/SystemMailBuilder.php:40 #, php-format msgid "%1$s, %2$s Administrator" msgstr "" -#: src/Util/EMailer/NotifyMailBuilder.php:80 -#: src/Util/EMailer/SystemMailBuilder.php:56 +#: src/Util/EMailer/NotifyMailBuilder.php:66 +#: src/Util/EMailer/SystemMailBuilder.php:42 #, php-format msgid "%s Administrator" msgstr "" -#: src/Util/EMailer/NotifyMailBuilder.php:193 -#: src/Util/EMailer/NotifyMailBuilder.php:217 -#: src/Util/EMailer/SystemMailBuilder.php:101 -#: src/Util/EMailer/SystemMailBuilder.php:118 +#: src/Util/EMailer/NotifyMailBuilder.php:179 +#: src/Util/EMailer/NotifyMailBuilder.php:203 +#: src/Util/EMailer/SystemMailBuilder.php:87 +#: src/Util/EMailer/SystemMailBuilder.php:104 msgid "thanks" msgstr "" -#: src/Util/Temporal.php:172 +#: src/Util/Temporal.php:158 msgid "YYYY-MM-DD or MM-DD" msgstr "" -#: src/Util/Temporal.php:280 +#: src/Util/Temporal.php:266 #, php-format msgid "Time zone: %s Change in Settings" msgstr "" -#: src/Util/Temporal.php:320 src/Util/Temporal.php:329 +#: src/Util/Temporal.php:306 src/Util/Temporal.php:315 msgid "never" msgstr "" -#: src/Util/Temporal.php:343 +#: src/Util/Temporal.php:329 msgid "less than a second ago" msgstr "" -#: src/Util/Temporal.php:352 +#: src/Util/Temporal.php:338 msgid "year" msgstr "" -#: src/Util/Temporal.php:352 +#: src/Util/Temporal.php:338 msgid "years" msgstr "" -#: src/Util/Temporal.php:353 +#: src/Util/Temporal.php:339 msgid "months" msgstr "" -#: src/Util/Temporal.php:354 +#: src/Util/Temporal.php:340 msgid "weeks" msgstr "" -#: src/Util/Temporal.php:355 +#: src/Util/Temporal.php:341 msgid "days" msgstr "" -#: src/Util/Temporal.php:356 +#: src/Util/Temporal.php:342 msgid "hour" msgstr "" -#: src/Util/Temporal.php:356 +#: src/Util/Temporal.php:342 msgid "hours" msgstr "" -#: src/Util/Temporal.php:357 +#: src/Util/Temporal.php:343 msgid "minute" msgstr "" -#: src/Util/Temporal.php:357 +#: src/Util/Temporal.php:343 msgid "minutes" msgstr "" -#: src/Util/Temporal.php:358 +#: src/Util/Temporal.php:344 msgid "second" msgstr "" -#: src/Util/Temporal.php:358 +#: src/Util/Temporal.php:344 msgid "seconds" msgstr "" -#: src/Util/Temporal.php:367 +#: src/Util/Temporal.php:353 #, php-format msgid "in %1$d %2$s" msgstr "" -#: src/Util/Temporal.php:370 +#: src/Util/Temporal.php:356 #, php-format msgid "%1$d %2$s ago" msgstr "" -#: src/Worker/PushSubscription.php:110 +#: src/Worker/PushSubscription.php:96 msgid "Notification from Friendica" msgstr "" -#: src/Worker/PushSubscription.php:111 +#: src/Worker/PushSubscription.php:97 msgid "Empty Post" msgstr "" -#: view/theme/duepuntozero/config.php:68 +#: view/theme/duepuntozero/config.php:56 msgid "default" msgstr "" -#: view/theme/duepuntozero/config.php:69 +#: view/theme/duepuntozero/config.php:57 msgid "greenzero" msgstr "" -#: view/theme/duepuntozero/config.php:70 +#: view/theme/duepuntozero/config.php:58 msgid "purplezero" msgstr "" -#: view/theme/duepuntozero/config.php:71 +#: view/theme/duepuntozero/config.php:59 msgid "easterbunny" msgstr "" -#: view/theme/duepuntozero/config.php:72 +#: view/theme/duepuntozero/config.php:60 msgid "darkzero" msgstr "" -#: view/theme/duepuntozero/config.php:73 +#: view/theme/duepuntozero/config.php:61 msgid "comix" msgstr "" -#: view/theme/duepuntozero/config.php:74 +#: view/theme/duepuntozero/config.php:62 msgid "slackr" msgstr "" -#: view/theme/duepuntozero/config.php:87 +#: view/theme/duepuntozero/config.php:75 msgid "Variations" msgstr "" -#: view/theme/frio/config.php:146 +#: view/theme/frio/config.php:134 msgid "Note" msgstr "" -#: view/theme/frio/config.php:146 +#: view/theme/frio/config.php:134 msgid "Check image permissions if all users are allowed to see the image" msgstr "" -#: view/theme/frio/config.php:152 +#: view/theme/frio/config.php:140 msgid "Appearance" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Accent color" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Blue" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Red" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Purple" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Green" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Pink" msgstr "" -#: view/theme/frio/config.php:154 +#: view/theme/frio/config.php:142 msgid "Copy or paste schemestring" msgstr "" -#: view/theme/frio/config.php:154 +#: view/theme/frio/config.php:142 msgid "" "You can copy this string to share your theme with others. Pasting here " "applies the schemestring" msgstr "" -#: view/theme/frio/config.php:155 +#: view/theme/frio/config.php:143 msgid "Navigation bar background color" msgstr "" -#: view/theme/frio/config.php:156 +#: view/theme/frio/config.php:144 msgid "Navigation bar icon color " msgstr "" -#: view/theme/frio/config.php:157 +#: view/theme/frio/config.php:145 msgid "Link color" msgstr "" -#: view/theme/frio/config.php:158 +#: view/theme/frio/config.php:146 msgid "Set the background color" msgstr "" -#: view/theme/frio/config.php:159 +#: view/theme/frio/config.php:147 msgid "Content background opacity" msgstr "" -#: view/theme/frio/config.php:160 +#: view/theme/frio/config.php:148 msgid "Set the background image" msgstr "" -#: view/theme/frio/config.php:161 +#: view/theme/frio/config.php:149 msgid "Background image style" msgstr "" -#: view/theme/frio/config.php:164 +#: view/theme/frio/config.php:152 msgid "Always open Compose page" msgstr "" -#: view/theme/frio/config.php:164 +#: view/theme/frio/config.php:152 msgid "" "The New Post button always open the Compose page " "instead of the modal form. When this is disabled, the Compose page can be " "accessed with a middle click on the link or from the modal." msgstr "" -#: view/theme/frio/config.php:168 +#: view/theme/frio/config.php:156 msgid "Login page background image" msgstr "" -#: view/theme/frio/config.php:172 +#: view/theme/frio/config.php:160 msgid "Login page background color" msgstr "" -#: view/theme/frio/config.php:172 +#: view/theme/frio/config.php:160 msgid "Leave background image and color empty for theme defaults" msgstr "" -#: view/theme/frio/php/Image.php:39 +#: view/theme/frio/php/Image.php:27 msgid "Top Banner" msgstr "" -#: view/theme/frio/php/Image.php:39 +#: view/theme/frio/php/Image.php:27 msgid "" "Resize image to the width of the screen and show background color below on " "long pages." msgstr "" -#: view/theme/frio/php/Image.php:40 +#: view/theme/frio/php/Image.php:28 msgid "Full screen" msgstr "" -#: view/theme/frio/php/Image.php:40 +#: view/theme/frio/php/Image.php:28 msgid "" "Resize image to fill entire screen, clipping either the right or the bottom." msgstr "" -#: view/theme/frio/php/Image.php:41 +#: view/theme/frio/php/Image.php:29 msgid "Single row mosaic" msgstr "" -#: view/theme/frio/php/Image.php:41 +#: view/theme/frio/php/Image.php:29 msgid "" "Resize image to repeat it on a single row, either vertical or horizontal." msgstr "" -#: view/theme/frio/php/Image.php:42 +#: view/theme/frio/php/Image.php:30 msgid "Mosaic" msgstr "" -#: view/theme/frio/php/Image.php:42 +#: view/theme/frio/php/Image.php:30 msgid "Repeat image to fill the screen." msgstr "" -#: view/theme/frio/php/default.php:82 view/theme/frio/php/standard.php:40 +#: view/theme/frio/php/default.php:70 view/theme/frio/php/standard.php:28 msgid "Skip to main content" msgstr "" -#: view/theme/frio/php/default.php:153 view/theme/frio/php/standard.php:75 +#: view/theme/frio/php/default.php:141 view/theme/frio/php/standard.php:63 msgid "Back to top" msgstr "" -#: view/theme/frio/php/scheme.php:105 +#: view/theme/frio/php/scheme.php:93 msgid "Light" msgstr "" -#: view/theme/frio/php/scheme.php:106 +#: view/theme/frio/php/scheme.php:94 msgid "Dark" msgstr "" -#: view/theme/frio/php/scheme.php:107 +#: view/theme/frio/php/scheme.php:95 msgid "Black" msgstr "" -#: view/theme/frio/php/scheme.php:118 +#: view/theme/frio/php/scheme.php:106 msgid "Custom" msgstr "" -#: view/theme/frio/theme.php:214 +#: view/theme/frio/theme.php:202 msgid "Guest" msgstr "" -#: view/theme/frio/theme.php:217 +#: view/theme/frio/theme.php:205 msgid "Visitor" msgstr "" -#: view/theme/quattro/config.php:89 +#: view/theme/quattro/config.php:77 msgid "Alignment" msgstr "" -#: view/theme/quattro/config.php:89 +#: view/theme/quattro/config.php:77 msgid "Left" msgstr "" -#: view/theme/quattro/config.php:89 +#: view/theme/quattro/config.php:77 msgid "Center" msgstr "" -#: view/theme/quattro/config.php:90 +#: view/theme/quattro/config.php:78 msgid "Color scheme" msgstr "" -#: view/theme/quattro/config.php:91 +#: view/theme/quattro/config.php:79 msgid "Posts font size" msgstr "" -#: view/theme/quattro/config.php:92 +#: view/theme/quattro/config.php:80 msgid "Textareas font size" msgstr "" -#: view/theme/vier/config.php:91 +#: view/theme/vier/config.php:79 msgid "Comma separated list of helper groups" msgstr "" -#: view/theme/vier/config.php:131 +#: view/theme/vier/config.php:119 msgid "don't show" msgstr "" -#: view/theme/vier/config.php:131 +#: view/theme/vier/config.php:119 msgid "show" msgstr "" -#: view/theme/vier/config.php:137 +#: view/theme/vier/config.php:125 msgid "Set style" msgstr "" -#: view/theme/vier/config.php:138 +#: view/theme/vier/config.php:126 msgid "Community Pages" msgstr "" -#: view/theme/vier/config.php:139 view/theme/vier/theme.php:148 +#: view/theme/vier/config.php:127 view/theme/vier/theme.php:136 msgid "Community Profiles" msgstr "" -#: view/theme/vier/config.php:140 +#: view/theme/vier/config.php:128 msgid "Help or @NewHere ?" msgstr "" -#: view/theme/vier/config.php:141 view/theme/vier/theme.php:319 +#: view/theme/vier/config.php:129 view/theme/vier/theme.php:307 msgid "Connect Services" msgstr "" -#: view/theme/vier/config.php:142 +#: view/theme/vier/config.php:130 msgid "Find Friends" msgstr "" -#: view/theme/vier/config.php:143 view/theme/vier/theme.php:175 +#: view/theme/vier/config.php:131 view/theme/vier/theme.php:163 msgid "Last users" msgstr "" -#: view/theme/vier/theme.php:234 +#: view/theme/vier/theme.php:222 msgid "Quick Start" msgstr "" diff --git a/view/lang/sv/strings.php b/view/lang/sv/strings.php index dffa8e521d..246d3858df 100644 --- a/view/lang/sv/strings.php +++ b/view/lang/sv/strings.php @@ -531,7 +531,6 @@ $a->strings['Show map'] = 'Visa karta'; $a->strings['Hide map'] = 'Göm karta'; $a->strings['%s\'s birthday'] = '%s\'s födelsedag'; $a->strings['Happy Birthday %s'] = 'Grattis på födelsedagen %s'; -$a->strings['Detected languages in this post:\n%s'] = 'Upptäckte språken i det här inlägget:\n%s'; $a->strings['activity'] = 'aktivitet'; $a->strings['comment'] = 'kommentar'; $a->strings['post'] = 'inlägg'; @@ -553,7 +552,6 @@ $a->strings['g A l F d'] = 'g A l F d'; $a->strings['[No description]'] = '[Ingen beskrivning]'; $a->strings['Event Reminders'] = 'Evenemangspåminnare'; $a->strings['Upcoming events the next 7 days:'] = 'Evenemang som kommer de kommande 7 dagarna:'; -$a->strings['OpenWebAuth: %1$s welcomes %2$s'] = 'OpenWebAuth: %1$s välkomnar %2$s'; $a->strings['Hometown:'] = 'Hemstad:'; $a->strings['Marital Status:'] = 'Civilstånd:'; $a->strings['With:'] = 'Med:'; @@ -799,7 +797,6 @@ $a->strings['Submit Request'] = 'Skicka förfrågan'; $a->strings['You already added this contact.'] = 'Du har redan lagt till den här kontakten.'; $a->strings['The network type couldn\'t be detected. Contact can\'t be added.'] = 'Nätverkstypen kunde inte upptäckas. Kontakten kan inte läggas till.'; $a->strings['Diaspora support isn\'t enabled. Contact can\'t be added.'] = 'Stödet för Diaspora är inte aktiverat. Kontakten kan inte läggas till.'; -$a->strings['OStatus support is disabled. Contact can\'t be added.'] = 'Stödet för OStatus är inaktiverat. Kontakten kan inte läggas till.'; $a->strings['Please answer the following:'] = 'Var vänlig besvara följande:'; $a->strings['Your Identity Address:'] = 'Din adress (ditt ID):'; $a->strings['Profile URL'] = 'URL för profil'; @@ -976,7 +973,6 @@ $a->strings['Home Notifications'] = 'Hem-aviseringar'; $a->strings['{0} requested registration'] = '{0} bad om registrering'; $a->strings['{0} and %d others requested registration'] = '{0} och %d andra bad om registrering'; $a->strings['Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?'] = 'Vill du ge den här applikationen åtkomst till dina inlägg och kontakter, och/eller skapa nya inlägg för dig?'; -$a->strings['Keep this window open until done.'] = 'Håll det här fönstret öppet tills du är klar.'; $a->strings['Subscribing to contacts'] = 'Prenumererar på kontakter'; $a->strings['No contact provided.'] = 'Ingen kontakt angedd'; $a->strings['Couldn\'t fetch information for contact.'] = 'Kunde inte hämta information för kontakten.'; @@ -988,6 +984,7 @@ $a->strings['Done'] = 'Färdig'; $a->strings['success'] = 'lyckades'; $a->strings['failed'] = 'misslyckades'; $a->strings['ignored'] = 'ignorerades'; +$a->strings['Keep this window open until done.'] = 'Håll det här fönstret öppet tills du är klar.'; $a->strings['Edit post'] = 'Ändra inlägg'; $a->strings['web link'] = 'webblänk'; $a->strings['Insert video link'] = 'Klistra in videolänk'; @@ -1092,12 +1089,10 @@ $a->strings['No Addon settings configured'] = 'Inga inställningar för Tillägg $a->strings['Add'] = 'Lägg till'; $a->strings['Failed to connect with email account using the settings provided.'] = 'Kunde inte ansluta till e-postkontot med aktuella inställningar'; $a->strings['Diaspora (Socialhome, Hubzilla)'] = 'Diaspora (Socialhome, Hubzilla)'; -$a->strings['OStatus (GNU Social)'] = 'OStatus (GNU Social)'; $a->strings['Email access is disabled on this site.'] = 'E-poståtkomst är inaktiverat på den här sidan.'; $a->strings['None'] = 'Ingen'; $a->strings['General Social Media Settings'] = 'Generella inställningar för sociala medier'; $a->strings['Enable intelligent shortening'] = 'Aktivera intelligent förkortning'; -$a->strings['Repair OStatus subscriptions'] = 'Reparera OStatus-prenumerationer'; $a->strings['If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox.'] = 'För att kommunicera via e-post med denna tjänst (valfritt), vänligen ange anslutningssätt till ditt e-postkonto.'; $a->strings['IMAP server name:'] = 'Namn på IMAP-server:'; $a->strings['IMAP port:'] = 'Port för IMAP:'; @@ -1185,7 +1180,6 @@ $a->strings['%s commented on %s\'s post'] = '%s kommenterade på %s\'s inlägg'; $a->strings['%s created a new post'] = '%s skapade ett nytt inlägg'; $a->strings['Friend Suggestion'] = 'Vän-förslag'; $a->strings['Friend/Connect Request'] = 'Vän- eller kontaktförfrågan'; -$a->strings['New Follower'] = 'En som vill följa dig'; $a->strings['%1$s sent you a new private message at %2$s.'] = '%1$sskickade ett privat meddelande till dig %2$s.'; $a->strings['a private message'] = 'ett privat meddelande'; $a->strings['%1$s sent you %2$s.'] = '%1$sskickade%2$s.'; @@ -1206,7 +1200,6 @@ $a->strings['%d comment'] = [ 0 => '%d kommentar', 1 => '%d kommentarer', ]; -$a->strings['following'] = 'följer'; -$a->strings['stopped following'] = 'följer inte längre'; $a->strings['Login failed.'] = 'Inloggningen misslyckades.'; $a->strings['Please upload a profile photo.'] = 'Vänligen ladda upp ett profil-foto.'; +$a->strings['OpenWebAuth: %1$s welcomes %2$s'] = 'OpenWebAuth: %1$s välkomnar %2$s'; diff --git a/view/templates/admin/federation.tpl b/view/templates/admin/federation.tpl index 55d975b2f1..3668050952 100644 --- a/view/templates/admin/federation.tpl +++ b/view/templates/admin/federation.tpl @@ -57,17 +57,18 @@ } }); - +{{if $c[0]['svg']}}{{/if}} | {{$c[0]['platform']}} | {{$c[0]['total']}} | {{$c[0]['network']}} | |||
---|---|---|---|---|---|---|
+ |
|
|||||
+ |