diff --git a/doc/BBCode.md b/doc/BBCode.md index 3fe599130..43b777727 100644 --- a/doc/BBCode.md +++ b/doc/BBCode.md @@ -191,7 +191,7 @@ code You should not read any further if you want to be surprised.
Click to open/close -
+
@@ -202,7 +202,7 @@ code Author wrote:
Click to open/close -
+
diff --git a/doc/de/BBCode.md b/doc/de/BBCode.md index a978c4f45..7caef5d0a 100644 --- a/doc/de/BBCode.md +++ b/doc/de/BBCode.md @@ -192,7 +192,7 @@ Zeilen Du solltest nicht weiter lesen, wenn du das Ende des Films nicht vorher erfahren willst.
Zum öffnen/schließen klicken -
+
@@ -203,7 +203,7 @@ Zeilen Autor hat geschrieben
Zum öffnen/schließen klicken -
+
diff --git a/src/App.php b/src/App.php index 0d4e8880d..e8385b7f2 100644 --- a/src/App.php +++ b/src/App.php @@ -27,6 +27,8 @@ use Friendica\App\BaseURL; use Friendica\Capabilities\ICanCreateResponses; use Friendica\Core\Config\Factory\Config; use Friendica\Core\Session\Capability\IHandleUserSessions; +use Friendica\Database\Definition\DbaDefinition; +use Friendica\Database\Definition\ViewDefinition; use Friendica\Model\User; use Friendica\Module\Maintenance; use Friendica\Security\Authentication; @@ -337,27 +339,29 @@ class App * @param App\Arguments $args The Friendica Arguments of the call * @param IManagePersonalConfigValues $pConfig Personal configuration * @param IHandleUserSessions $session The (User)Session handler + * @param DbaDefinition $dbaDefinition + * @param ViewDefinition $viewDefinition */ - public function __construct(Database $database, IManageConfigValues $config, App\Mode $mode, BaseURL $baseURL, LoggerInterface $logger, Profiler $profiler, L10n $l10n, Arguments $args, IManagePersonalConfigValues $pConfig, IHandleUserSessions $session) + public function __construct(Database $database, IManageConfigValues $config, App\Mode $mode, BaseURL $baseURL, LoggerInterface $logger, Profiler $profiler, L10n $l10n, Arguments $args, IManagePersonalConfigValues $pConfig, IHandleUserSessions $session, DbaDefinition $dbaDefinition, ViewDefinition $viewDefinition) { - $this->database = $database; - $this->config = $config; - $this->mode = $mode; - $this->baseURL = $baseURL; - $this->profiler = $profiler; - $this->logger = $logger; - $this->l10n = $l10n; - $this->args = $args; - $this->pConfig = $pConfig; - $this->session = $session; + $this->database = $database; + $this->config = $config; + $this->mode = $mode; + $this->baseURL = $baseURL; + $this->profiler = $profiler; + $this->logger = $logger; + $this->l10n = $l10n; + $this->args = $args; + $this->pConfig = $pConfig; + $this->session = $session; - $this->load(); + $this->load($dbaDefinition, $viewDefinition); } /** * Load the whole app instance */ - public function load() + protected function load(DbaDefinition $dbaDefinition, ViewDefinition $viewDefinition) { set_time_limit(0); @@ -386,6 +390,10 @@ class App Core\Hook::loadHooks(); $loader = (new Config())->createConfigFileLoader($this->getBasePath(), $_SERVER); Core\Hook::callAll('load_config', $loader); + + // Hooks are now working, reload the whole definitions with hook enabled + $dbaDefinition->load(true); + $viewDefinition->load(true); } $this->loadDefaultTimezone(); diff --git a/src/Content/Text/BBCode.php b/src/Content/Text/BBCode.php index 62ad04a43..2070d22d1 100644 --- a/src/Content/Text/BBCode.php +++ b/src/Content/Text/BBCode.php @@ -2355,7 +2355,7 @@ class BBCode DI::profiler()->startRecording('rendering'); $ret = []; - self::performWithEscapedTags($string, ['noparse', 'pre', 'code', 'img'], function ($string) use (&$ret) { + self::performWithEscapedTags($string, ['noparse', 'pre', 'code', 'img', 'attachment'], function ($string) use (&$ret) { // Convert hashtag links to hashtags $string = preg_replace('/#\[url\=([^\[\]]*)\](.*?)\[\/url\]/ism', '#$2 ', $string); @@ -2599,7 +2599,7 @@ class BBCode // Bypass attachment if parse url for a comment if (!$tryAttachment) { DI::profiler()->stopRecording(); - return "\n" . '[url=' . $url . ']' . $siteinfo['title'] . '[/url]'; + return "\n" . '[url=' . $url . ']' . ($siteinfo['title'] ?? $url) . '[/url]'; } // Format it as BBCode attachment diff --git a/src/Core/ACL.php b/src/Core/ACL.php index a2db32afc..200c8266a 100644 --- a/src/Core/ACL.php +++ b/src/Core/ACL.php @@ -35,7 +35,7 @@ class ACL { /** * Returns the default lock state for the given user id - * @param int $uid + * @param int $uid * @return bool "true" if the default settings are non public */ public static function getLockstateForUserId(int $uid) @@ -294,7 +294,7 @@ class ACL !empty($mailacct['pubmail']) ] ]; - + } } Hook::callAll('jot_networks', $jotnets_fields); @@ -320,7 +320,7 @@ class ACL '$public_title' => DI::l10n()->t('Public'), '$public_desc' => DI::l10n()->t('This content will be shown to all your followers and can be seen in the community pages and by anyone with its link.'), '$custom_title' => DI::l10n()->t('Limited/Private'), - '$custom_desc' => DI::l10n()->t('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.'), + '$custom_desc' => DI::l10n()->t('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.') . DI::l10n()->t('Start typing the name of a contact or a group to show a filtered list. You can also mention the special groups "Followers" and "Mutuals".'), '$allow_label' => DI::l10n()->t('Show to:'), '$deny_label' => DI::l10n()->t('Except to:'), '$emailcc' => DI::l10n()->t('CC: email addresses'), diff --git a/src/Database/DBStructure.php b/src/Database/DBStructure.php index 6e50c9fb2..cdb5d4ef9 100644 --- a/src/Database/DBStructure.php +++ b/src/Database/DBStructure.php @@ -249,7 +249,8 @@ class DBStructure // Get the definition if (is_null($definition)) { - $definition = DI::dbaDefinition()->getAll(); + // just for Update purpose, reload the DBA definition with addons to explicit get the whole definition + $definition = DI::dbaDefinition()->load(true)->getAll(); } // MySQL >= 5.7.4 doesn't support the IGNORE keyword in ALTER TABLE statements diff --git a/src/Database/View.php b/src/Database/View.php index d64e544cc..ca6078956 100644 --- a/src/Database/View.php +++ b/src/Database/View.php @@ -49,7 +49,8 @@ class View } } - $definition = DI::viewDefinition()->getAll(); + // just for Create purpose, reload the view definition with addons to explicit get the whole definition + $definition = DI::viewDefinition()->load(true)->getAll(); foreach ($definition as $name => $structure) { if (self::isView($name)) { diff --git a/src/Model/GServer.php b/src/Model/GServer.php index a128060f4..e93c34762 100644 --- a/src/Model/GServer.php +++ b/src/Model/GServer.php @@ -314,25 +314,20 @@ class GServer /** * Remove unwanted content from the given URL * - * @param string $url + * @param string $dirtyUrl * * @return string cleaned URL + * @throws Exception */ - public static function cleanURL(string $url): string + public static function cleanURL(string $dirtyUrl): string { - $url = trim($url, '/'); - $url = str_replace('/index.php', '', $url); - - $urlparts = parse_url($url); - if (empty($urlparts)) { + try { + $url = str_replace('/index.php', '', trim($dirtyUrl, '/')); + return (string)(new Uri($url))->withUserInfo('')->withQuery('')->withFragment(''); + } catch (\Throwable $e) { + Logger::warning('Invalid URL', ['dirtyUrl' => $dirtyUrl, 'url' => $url]); return ''; } - - unset($urlparts['user']); - unset($urlparts['pass']); - unset($urlparts['query']); - unset($urlparts['fragment']); - return (string)Uri::fromParts($urlparts); } /** diff --git a/src/Model/Item.php b/src/Model/Item.php index 8dce7a788..33ba8ee7a 100644 --- a/src/Model/Item.php +++ b/src/Model/Item.php @@ -3016,7 +3016,11 @@ class Item $item['hashtags'] = $tags['hashtags']; $item['mentions'] = $tags['mentions']; - $body = $item['body'] = Post\Media::removeFromEndOfBody($item['body'] ?? ''); + if (!$is_preview) { + $item['body'] = Post\Media::removeFromEndOfBody($item['body'] ?? ''); + } + + $body = $item['body']; $fields = ['uri-id', 'uri', 'body', 'title', 'author-name', 'author-link', 'author-avatar', 'guid', 'created', 'plink', 'network', 'has-media', 'quote-uri-id', 'post-type']; @@ -3144,122 +3148,14 @@ class Item * @return string * @throws \Friendica\Network\HTTPException\ServiceUnavailableException */ - public static function makeImageGrid(array $images): string + private static function makeImageGrid(array $images): string { - $landscapeimages = []; - $portraitimages = []; - - foreach ($images as $image) { - ($image['attachment']['width'] > $image['attachment']['height']) ? ($landscapeimages[] = $image) : ($portraitimages[] = $image); - } - // Image for first column (fc) and second column (sc) $images_fc = []; $images_sc = []; - $lcount = count($landscapeimages); - $pcount = count($portraitimages); - if ($lcount == 0 || $pcount == 0) { - if ($lcount == 0) { - // only portrait - for ($i = 0; $i < $pcount; $i++) { - ($i % 2 == 0) ? ($images_fc[] = $portraitimages[$i]) : ($images_sc[] = $portraitimages[$i]); - } - } - if ($pcount == 0) { - // ony landscapes - for ($i = 0; $i < $lcount; $i++) { - ($i % 2 == 0) ? ($images_fc[] = $landscapeimages[$i]) : ($images_sc[] = $landscapeimages[$i]); - } - } - } else { - // Mix of landscape and portrait images. - if ($lcount == $pcount) { - // equal amount of landscapes and portraits - if ($lcount == 1) { - // one left / one right - $images_fc[] = $landscapeimages[0]; - $images_sc[] = $portraitimages[0]; - } else { - // Distribute equal to both columns - for ($l = 0; $l < $lcount; $l++) { - if ($l % 2 == 0) { - // landscape left and portrait right for even numbers - $images_fc[] = $landscapeimages[$l]; - $images_fc[] = $portraitimages[$l]; - } else { - // portraits left and landscape right for odd numbers - $images_sc[] = $portraitimages[$l]; - $images_sc[] = $landscapeimages[$l]; - } - } - } - } - if ($lcount > $pcount) { - // More landscapes than portraits - $p = 0; - $l = 0; - while ($l < $lcount) { - if (($lcount > $l + 1) && ($pcount > $l)) { - // we have one more landscape that can be used for the l-th portrait - $images_fc[] = $landscapeimages[$l++]; - } - $images_fc[] = $landscapeimages[$l++]; - if ($pcount > $p) { - $images_sc[] = $portraitimages[$p++]; - } - } - } - if ($lcount < $pcount) { - // More portraits than landscapes - if ($lcount % 2 == 0 && $pcount % 2 == 0) { - /* - * even number of landscapes and portraits, but fewer landscapes than portraits. Iterate to the end - * of landscapes array - */ - $i = 0; - while ($i < $lcount) { - if ($i % 2 == 0) { - $images_fc[] = $landscapeimages[$i]; - $images_fc[] = $portraitimages[$i]; - } else { - $images_sc[] = $portraitimages[$i]; - $images_sc[] = $landscapeimages[$i]; - } - $i++; - } - // Rest portraits - while ($i < $pcount) { - if ($i % 2 == 0) { - $images_fc[] = $portraitimages[$i]; - } else { - $images_sc[] = $portraitimages[$i]; - } - $i++; - } - - } - if ($lcount % 2 != 0 && $pcount % 2 == 0) { - // uneven landscapes count even portraits count. - for ($p = 0; $p < $pcount; $p++) { - // --> First all portraits until - if ($p % 2 == 0) { - $images_fc[] = $portraitimages[$p]; - } else { - $images_sc[] = $portraitimages[$p]; - } - } - // and now the (uneven) landscapes - for ($l = 0; $l < $lcount; $l++) { - // --> First all portraits until - if ($l % 2 == 0) { - $images_fc[] = $landscapeimages[$l]; - } else { - $images_sc[] = $landscapeimages[$l]; - } - } - } - } + for ($i = 0; $i < count($images); $i++) { + ($i % 2 == 0) ? ($images_fc[] = $images[$i]) : ($images_sc[] = $images[$i]); } return Renderer::replaceMacros(Renderer::getMarkupTemplate('content/image_grid.tpl'), [ @@ -3269,6 +3165,7 @@ class Item ], ]); } + /** * Check if the body contains a link @@ -3438,15 +3335,15 @@ class Item } if ($shared) { - $content = str_replace(BBCode::TOP_ANCHOR, '
' . $leading . '
' . BBCode::TOP_ANCHOR, $content); - $content = str_replace(BBCode::BOTTOM_ANCHOR, '
' . $trailing . '
' . BBCode::BOTTOM_ANCHOR, $content); + $content = str_replace(BBCode::TOP_ANCHOR, '
' . $leading . '
' . BBCode::TOP_ANCHOR, $content); + $content = str_replace(BBCode::BOTTOM_ANCHOR, '
' . $trailing . '
' . BBCode::BOTTOM_ANCHOR, $content); } else { if ($leading != '') { - $content = '
' . $leading . '
' . $content; + $content = '
' . $leading . '
' . $content; } if ($trailing != '') { - $content .= '
' . $trailing . '
'; + $content .= '
' . $trailing . '
'; } } @@ -3606,7 +3503,7 @@ class Item } if ($trailing != '') { - $content .= '
' . $trailing . '
'; + $content .= '
' . $trailing . '
'; } DI::profiler()->stopRecording(); diff --git a/src/Module/Admin/Features.php b/src/Module/Admin/Features.php index 6fdefb0a9..e6a80f6eb 100644 --- a/src/Module/Admin/Features.php +++ b/src/Module/Admin/Features.php @@ -50,7 +50,7 @@ class Features extends BaseAdmin DI::config()->set('feature', $feature, $val); if (!empty($_POST[$featurelock])) { - DI::config()->set('feature_lock', $feature, $val); + DI::config()->set('feature_lock', $feature, 1); } else { DI::config()->delete('feature_lock', $feature); } diff --git a/src/Module/Admin/Site.php b/src/Module/Admin/Site.php index 9e23d6a63..ef7d5b987 100644 --- a/src/Module/Admin/Site.php +++ b/src/Module/Admin/Site.php @@ -475,7 +475,7 @@ class Site extends BaseAdmin '$maximagesize' => ['maximagesize', DI::l10n()->t('Maximum image size'), DI::config()->get('system', 'maximagesize'), DI::l10n()->t('Maximum size in bytes of uploaded images. Default is 0, which means no limits. You can put k, m, or g behind the desired value for KiB, MiB, GiB, respectively. The value of upload_max_filesize in your PHP.ini needs be set to at least the desired limit. - Currently upload_max_filesize is set to %s (%sB)', Strings::getBytesFromShorthand(ini_get('upload_max_filesize')), ini_get('upload_max_filesize')), + Currently upload_max_filesize is set to %s (%s byte)', Strings::formatBytes(Strings::getBytesFromShorthand(ini_get('upload_max_filesize'))), Strings::getBytesFromShorthand(ini_get('upload_max_filesize'))), '', 'pattern="\d+(?:\s*[kmg])?"'], '$maximagelength' => ['maximagelength', DI::l10n()->t('Maximum image length'), DI::config()->get('system', 'max_image_length'), DI::l10n()->t('Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits.')], '$jpegimagequality' => ['jpegimagequality', DI::l10n()->t('JPEG image quality'), DI::config()->get('system', 'jpeg_quality'), DI::l10n()->t('Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality.')], diff --git a/src/Module/Api/Twitter/Followers/Ids.php b/src/Module/Api/Twitter/Followers/Ids.php index 6acf7c831..2a810849b 100644 --- a/src/Module/Api/Twitter/Followers/Ids.php +++ b/src/Module/Api/Twitter/Followers/Ids.php @@ -23,6 +23,7 @@ namespace Friendica\Module\Api\Twitter\Followers; use Friendica\Core\System; use Friendica\Database\DBA; +use Friendica\Model\Contact; use Friendica\Module\Api\Twitter\ContactEndpoint; use Friendica\Module\BaseApi; @@ -47,35 +48,64 @@ class Ids extends ContactEndpoint $max_id = $this->getRequestValue($request, 'max_id', 0, 0); $min_id = $this->getRequestValue($request, 'min_id', 0, 0); - $params = ['order' => ['relation-cid' => true], 'limit' => $count]; + if ($cid == Contact::getPublicIdByUserId($uid)) { + $params = ['order' => ['pid' => true], 'limit' => $count]; - $condition = ['cid' => $cid, 'follows' => true]; + $condition = ['uid' => $uid, 'self' => false, 'pending' => false, 'rel' => [Contact::FOLLOWER, Contact::FRIEND]]; + + $total_count = (int)DBA::count('contact', $condition); - $total_count = (int)DBA::count('contact-relation', $condition); + if (!empty($max_id)) { + $condition = DBA::mergeConditions($condition, ["`pid` < ?", $max_id]); + } + + if (!empty($since_id)) { + $condition = DBA::mergeConditions($condition, ["`pid` > ?", $since_id]); + } + + if (!empty($min_id)) { + $condition = DBA::mergeConditions($condition, ["`pid` > ?", $min_id]); + + $params['order'] = ['pid']; + } + + $ids = []; + + foreach (Contact::selectAccountToArray(['pid'], $condition, $params) as $follower) { + self::setBoundaries($follower['pid']); + $ids[] = $follower['pid']; + } + } else { + $params = ['order' => ['relation-cid' => true], 'limit' => $count]; - if (!empty($max_id)) { - $condition = DBA::mergeConditions($condition, ["`relation-cid` < ?", $max_id]); + $condition = ['cid' => $cid, 'follows' => true]; + + $total_count = (int)DBA::count('contact-relation', $condition); + + if (!empty($max_id)) { + $condition = DBA::mergeConditions($condition, ["`relation-cid` < ?", $max_id]); + } + + if (!empty($since_id)) { + $condition = DBA::mergeConditions($condition, ["`relation-cid` > ?", $since_id]); + } + + if (!empty($min_id)) { + $condition = DBA::mergeConditions($condition, ["`relation-cid` > ?", $min_id]); + + $params['order'] = ['relation-cid']; + } + + $ids = []; + + $followers = DBA::select('contact-relation', ['relation-cid'], $condition, $params); + while ($follower = DBA::fetch($followers)) { + self::setBoundaries($follower['relation-cid']); + $ids[] = $follower['relation-cid']; + } + DBA::close($followers); } - if (!empty($since_id)) { - $condition = DBA::mergeConditions($condition, ["`relation-cid` > ?", $since_id]); - } - - if (!empty($min_id)) { - $condition = DBA::mergeConditions($condition, ["`relation-cid` > ?", $min_id]); - - $params['order'] = ['relation-cid']; - } - - $ids = []; - - $followers = DBA::select('contact-relation', ['relation-cid'], $condition, $params); - while ($follower = DBA::fetch($followers)) { - self::setBoundaries($follower['relation-cid']); - $ids[] = $follower['relation-cid']; - } - DBA::close($followers); - if (!empty($min_id)) { $ids = array_reverse($ids); } diff --git a/src/Module/Api/Twitter/Followers/Lists.php b/src/Module/Api/Twitter/Followers/Lists.php index fbae33652..04bddf83c 100644 --- a/src/Module/Api/Twitter/Followers/Lists.php +++ b/src/Module/Api/Twitter/Followers/Lists.php @@ -21,8 +21,8 @@ namespace Friendica\Module\Api\Twitter\Followers; -use Friendica\Core\System; use Friendica\Database\DBA; +use Friendica\Model\Contact; use Friendica\Module\Api\Twitter\ContactEndpoint; use Friendica\Module\BaseApi; @@ -48,42 +48,71 @@ class Lists extends ContactEndpoint $max_id = $this->getRequestValue($request, 'max_id', 0, 0); $min_id = $this->getRequestValue($request, 'min_id', 0, 0); - $params = ['order' => ['relation-cid' => true], 'limit' => $count]; + if ($cid == Contact::getPublicIdByUserId($uid)) { + $params = ['order' => ['pid' => true], 'limit' => $count]; - $condition = ['cid' => $cid, 'follows' => true]; + $condition = ['uid' => $uid, 'self' => false, 'pending' => false, 'rel' => [Contact::FOLLOWER, Contact::FRIEND]]; + + $total_count = (int)DBA::count('contact', $condition); - $total_count = (int)DBA::count('contact-relation', $condition); + if (!empty($max_id)) { + $condition = DBA::mergeConditions($condition, ["`pid` < ?", $max_id]); + } + + if (!empty($since_id)) { + $condition = DBA::mergeConditions($condition, ["`pid` > ?", $since_id]); + } + + if (!empty($min_id)) { + $condition = DBA::mergeConditions($condition, ["`pid` > ?", $min_id]); + + $params['order'] = ['pid']; + } + + $ids = []; + + foreach (Contact::selectAccountToArray(['pid'], $condition, $params) as $follower) { + self::setBoundaries($follower['pid']); + $ids[] = $follower['pid']; + } + } else { + $params = ['order' => ['relation-cid' => true], 'limit' => $count]; - if (!empty($max_id)) { - $condition = DBA::mergeConditions($condition, ["`relation-cid` < ?", $max_id]); + $condition = ['cid' => $cid, 'follows' => true]; + + $total_count = (int)DBA::count('contact-relation', $condition); + + if (!empty($max_id)) { + $condition = DBA::mergeConditions($condition, ["`relation-cid` < ?", $max_id]); + } + + if (!empty($since_id)) { + $condition = DBA::mergeConditions($condition, ["`relation-cid` > ?", $since_id]); + } + + if (!empty($min_id)) { + $condition = DBA::mergeConditions($condition, ["`relation-cid` > ?", $min_id]); + + $params['order'] = ['relation-cid']; + } + + $ids = []; + + $followers = DBA::select('contact-relation', ['relation-cid'], $condition, $params); + while ($follower = DBA::fetch($followers)) { + self::setBoundaries($follower['relation-cid']); + $ids[] = $follower['relation-cid']; + } + DBA::close($followers); } - if (!empty($since_id)) { - $condition = DBA::mergeConditions($condition, ["`relation-cid` > ?", $since_id]); - } - - if (!empty($min_id)) { - $condition = DBA::mergeConditions($condition, ["`relation-cid` > ?", $min_id]); - - $params['order'] = ['relation-cid']; - } - - $ids = []; - - $followers = DBA::select('contact-relation', ['relation-cid'], $condition, $params); - while ($follower = DBA::fetch($followers)) { - self::setBoundaries($follower['relation-cid']); - $ids[] = $follower['relation-cid']; - } - DBA::close($followers); - if (!empty($min_id)) { $ids = array_reverse($ids); } $return = self::list($ids, $total_count, $uid, $cursor, $count, $skip_status, $include_user_entities); - self::setLinkHeader(); + $this->response->setHeader(self::getLinkHeader()); $this->response->exit('lists', ['lists' => $return]); } diff --git a/src/Module/Api/Twitter/Friends/Ids.php b/src/Module/Api/Twitter/Friends/Ids.php index a46be8deb..d12e082cf 100644 --- a/src/Module/Api/Twitter/Friends/Ids.php +++ b/src/Module/Api/Twitter/Friends/Ids.php @@ -23,6 +23,7 @@ namespace Friendica\Module\Api\Twitter\Friends; use Friendica\Core\System; use Friendica\Database\DBA; +use Friendica\Model\Contact; use Friendica\Module\Api\Twitter\ContactEndpoint; use Friendica\Module\BaseApi; @@ -47,35 +48,64 @@ class Ids extends ContactEndpoint $max_id = $this->getRequestValue($request, 'max_id', 0, 0); $min_id = $this->getRequestValue($request, 'min_id', 0, 0); - $params = ['order' => ['cid' => true], 'limit' => $count]; + if ($cid == Contact::getPublicIdByUserId($uid)) { + $params = ['order' => ['pid' => true], 'limit' => $count]; - $condition = ['relation-cid' => $cid, 'follows' => true]; + $condition = ['uid' => $uid, 'self' => false, 'pending' => false, 'rel' => [Contact::SHARING, Contact::FRIEND]]; + + $total_count = (int)DBA::count('contact', $condition); - $total_count = (int)DBA::count('contact-relation', $condition); + if (!empty($max_id)) { + $condition = DBA::mergeConditions($condition, ["`pid` < ?", $max_id]); + } + + if (!empty($since_id)) { + $condition = DBA::mergeConditions($condition, ["`pid` > ?", $since_id]); + } + + if (!empty($min_id)) { + $condition = DBA::mergeConditions($condition, ["`pid` > ?", $min_id]); + + $params['order'] = ['pid']; + } + + $ids = []; + + foreach (Contact::selectAccountToArray(['pid'], $condition, $params) as $follower) { + self::setBoundaries($follower['pid']); + $ids[] = $follower['pid']; + } + } else { + $params = ['order' => ['cid' => true], 'limit' => $count]; - if (!empty($max_id)) { - $condition = DBA::mergeConditions($condition, ["`cid` < ?", $max_id]); + $condition = ['relation-cid' => $cid, 'follows' => true]; + + $total_count = (int)DBA::count('contact-relation', $condition); + + if (!empty($max_id)) { + $condition = DBA::mergeConditions($condition, ["`cid` < ?", $max_id]); + } + + if (!empty($since_id)) { + $condition = DBA::mergeConditions($condition, ["`cid` > ?", $since_id]); + } + + if (!empty($min_id)) { + $condition = DBA::mergeConditions($condition, ["`cid` > ?", $min_id]); + + $params['order'] = ['cid']; + } + + $ids = []; + + $followers = DBA::select('contact-relation', ['cid'], $condition, $params); + while ($follower = DBA::fetch($followers)) { + self::setBoundaries($follower['cid']); + $ids[] = $follower['cid']; + } + DBA::close($followers); } - if (!empty($since_id)) { - $condition = DBA::mergeConditions($condition, ["`cid` > ?", $since_id]); - } - - if (!empty($min_id)) { - $condition = DBA::mergeConditions($condition, ["`cid` > ?", $min_id]); - - $params['order'] = ['cid']; - } - - $ids = []; - - $followers = DBA::select('contact-relation', ['cid'], $condition, $params); - while ($follower = DBA::fetch($followers)) { - self::setBoundaries($follower['cid']); - $ids[] = $follower['cid']; - } - DBA::close($followers); - if (!empty($min_id)) { $ids = array_reverse($ids); } diff --git a/src/Module/Api/Twitter/Friends/Lists.php b/src/Module/Api/Twitter/Friends/Lists.php index 304f19db9..1abce5364 100644 --- a/src/Module/Api/Twitter/Friends/Lists.php +++ b/src/Module/Api/Twitter/Friends/Lists.php @@ -21,8 +21,8 @@ namespace Friendica\Module\Api\Twitter\Friends; -use Friendica\Core\System; use Friendica\Database\DBA; +use Friendica\Model\Contact; use Friendica\Module\Api\Twitter\ContactEndpoint; use Friendica\Module\BaseApi; @@ -48,42 +48,71 @@ class Lists extends ContactEndpoint $max_id = $this->getRequestValue($request, 'max_id', 0, 0); $min_id = $this->getRequestValue($request, 'min_id', 0, 0); - $params = ['order' => ['cid' => true], 'limit' => $count]; + if ($cid == Contact::getPublicIdByUserId($uid)) { + $params = ['order' => ['pid' => true], 'limit' => $count]; - $condition = ['relation-cid' => $cid, 'follows' => true]; + $condition = ['uid' => $uid, 'self' => false, 'pending' => false, 'rel' => [Contact::SHARING, Contact::FRIEND]]; + + $total_count = (int)DBA::count('contact', $condition); - $total_count = (int)DBA::count('contact-relation', $condition); + if (!empty($max_id)) { + $condition = DBA::mergeConditions($condition, ["`pid` < ?", $max_id]); + } + + if (!empty($since_id)) { + $condition = DBA::mergeConditions($condition, ["`pid` > ?", $since_id]); + } + + if (!empty($min_id)) { + $condition = DBA::mergeConditions($condition, ["`pid` > ?", $min_id]); + + $params['order'] = ['pid']; + } + + $ids = []; + + foreach (Contact::selectAccountToArray(['pid'], $condition, $params) as $follower) { + self::setBoundaries($follower['pid']); + $ids[] = $follower['pid']; + } + } else { + $params = ['order' => ['cid' => true], 'limit' => $count]; - if (!empty($max_id)) { - $condition = DBA::mergeConditions($condition, ["`cid` < ?", $max_id]); + $condition = ['relation-cid' => $cid, 'follows' => true]; + + $total_count = (int)DBA::count('contact-relation', $condition); + + if (!empty($max_id)) { + $condition = DBA::mergeConditions($condition, ["`cid` < ?", $max_id]); + } + + if (!empty($since_id)) { + $condition = DBA::mergeConditions($condition, ["`cid` > ?", $since_id]); + } + + if (!empty($min_id)) { + $condition = DBA::mergeConditions($condition, ["`cid` > ?", $min_id]); + + $params['order'] = ['cid']; + } + + $ids = []; + + $followers = DBA::select('contact-relation', ['cid'], $condition, $params); + while ($follower = DBA::fetch($followers)) { + self::setBoundaries($follower['cid']); + $ids[] = $follower['cid']; + } + DBA::close($followers); } - if (!empty($since_id)) { - $condition = DBA::mergeConditions($condition, ["`cid` > ?", $since_id]); - } - - if (!empty($min_id)) { - $condition = DBA::mergeConditions($condition, ["`cid` > ?", $min_id]); - - $params['order'] = ['cid']; - } - - $ids = []; - - $followers = DBA::select('contact-relation', ['cid'], $condition, $params); - while ($follower = DBA::fetch($followers)) { - self::setBoundaries($follower['cid']); - $ids[] = $follower['cid']; - } - DBA::close($followers); - if (!empty($min_id)) { $ids = array_reverse($ids); } $return = self::list($ids, $total_count, $uid, $cursor, $count, $skip_status, $include_user_entities); - self::setLinkHeader(); + $this->response->setHeader(self::getLinkHeader()); $this->response->exit('lists', ['lists' => $return]); } diff --git a/src/Module/Api/Twitter/Friendships/Incoming.php b/src/Module/Api/Twitter/Friendships/Incoming.php index d34d79fae..89a7b4bce 100644 --- a/src/Module/Api/Twitter/Friendships/Incoming.php +++ b/src/Module/Api/Twitter/Friendships/Incoming.php @@ -21,7 +21,6 @@ namespace Friendica\Module\Api\Twitter\Friendships; -use Friendica\Core\System; use Friendica\Database\DBA; use Friendica\Module\Api\Twitter\ContactEndpoint; use Friendica\Module\BaseApi; @@ -81,7 +80,7 @@ class Incoming extends ContactEndpoint $return = self::ids($ids, $total_count, $cursor, $count, $stringify_ids); - self::setLinkHeader(); + $this->response->setHeader(self::getLinkHeader()); $this->response->exit('incoming', ['incoming' => $return]); } diff --git a/src/Module/BaseApi.php b/src/Module/BaseApi.php index 47557928a..1d5249ac8 100644 --- a/src/Module/BaseApi.php +++ b/src/Module/BaseApi.php @@ -139,13 +139,13 @@ class BaseApi extends BaseModule } /** - * Set the "link" header with "next" and "prev" links - * @return void + * Get the "link" header with "next" and "prev" links + * @return string */ - protected static function setLinkHeader() + protected static function getLinkHeader(): string { if (empty(self::$boundaries)) { - return; + return ''; } $request = self::$request; @@ -164,7 +164,19 @@ class BaseApi extends BaseModule $prev = $command . '?' . http_build_query($prev_request); $next = $command . '?' . http_build_query($next_request); - header('Link: <' . $next . '>; rel="next", <' . $prev . '>; rel="prev"'); + return 'Link: <' . $next . '>; rel="next", <' . $prev . '>; rel="prev"'; + } + + /** + * Set the "link" header with "next" and "prev" links + * @return void + */ + protected static function setLinkHeader() + { + $header = self::getLinkHeader(); + if (!empty($header)) { + header($header); + } } /** diff --git a/src/Module/Calendar/Show.php b/src/Module/Calendar/Show.php index 9a3e768ec..783495883 100644 --- a/src/Module/Calendar/Show.php +++ b/src/Module/Calendar/Show.php @@ -31,6 +31,7 @@ use Friendica\Core\Renderer; use Friendica\Core\Session\Capability\IHandleUserSessions; use Friendica\Core\Theme; use Friendica\Model\Event; +use Friendica\Model\Profile; use Friendica\Model\User; use Friendica\Module\BaseProfile; use Friendica\Module\Response; @@ -68,7 +69,7 @@ class Show extends BaseModule throw new HTTPException\UnauthorizedException(); } - $owner = User::getOwnerDataByNick($nickname); + $owner = Profile::load($this->app, $nickname, false); if (!$owner || $owner['account_expired'] || $owner['account_removed']) { throw new HTTPException\NotFoundException($this->t('User not found.')); } @@ -102,8 +103,9 @@ class Show extends BaseModule Nav::setSelected($is_owner ? 'home' : 'calendar'); - if (!$is_owner) { - $this->page['aside'] .= Widget\VCard::getHTML($owner); + if ($is_owner) { + // Removing the vCard added by Profile::load for owners + $this->page['aside'] = ''; } $this->page['aside'] .= Widget\CalendarExport::getHTML($owner['uid']); diff --git a/src/Module/Contact.php b/src/Module/Contact.php index 9ed250177..db71ab00c 100644 --- a/src/Module/Contact.php +++ b/src/Module/Contact.php @@ -191,7 +191,7 @@ class Contact extends BaseModule $rel_widget = Widget::contactRels($_SERVER['REQUEST_URI'], $rel); $groups_widget = Widget::groups($_SERVER['REQUEST_URI'], $group); - DI::page()['aside'] .= $vcard_widget . $findpeople_widget . $follow_widget . $account_widget . $groups_widget . $networks_widget . $rel_widget; + DI::page()['aside'] .= $vcard_widget . $findpeople_widget . $follow_widget . $rel_widget . $groups_widget . $networks_widget . $account_widget; $tpl = Renderer::getMarkupTemplate('contacts-head.tpl'); DI::page()['htmlhead'] .= Renderer::replaceMacros($tpl, [ diff --git a/src/Module/Notifications/Ping.php b/src/Module/Notifications/Ping.php index df75c047a..c16dec311 100644 --- a/src/Module/Notifications/Ping.php +++ b/src/Module/Notifications/Ping.php @@ -116,8 +116,8 @@ class Ping extends BaseModule $birthday_count = 0; $today_birthday_count = 0; - - if ($this->session->getLocalUserId()) { + // Suppress notification display for forum accounts + if ($this->session->getLocalUserId() && $this->session->get('page_flags', '') != User::PAGE_FLAGS_COMMUNITY) { if ($this->pconfig->get($this->session->getLocalUserId(), 'system', 'detailed_notif')) { $notifications = $this->notificationRepo->selectDetailedForUser($this->session->getLocalUserId()); } else { diff --git a/src/Module/OStatus/Subscribe.php b/src/Module/OStatus/Subscribe.php index 52bd19aef..da05cfa63 100644 --- a/src/Module/OStatus/Subscribe.php +++ b/src/Module/OStatus/Subscribe.php @@ -142,7 +142,7 @@ class Subscribe extends \Friendica\BaseModule $o .= '

' . $counter . '/' . $total . ': ' . $url; $probed = Contact::getByURL($url); - if (in_array($probed['network'], Protocol::FEDERATED)) { + if (!empty($probed['network']) && in_array($probed['network'], Protocol::FEDERATED)) { $result = Contact::createFromProbeForUser($this->session->getLocalUserId(), $probed['url']); if ($result['success']) { $o .= ' - ' . $this->t('success'); diff --git a/src/Module/Photo.php b/src/Module/Photo.php index 5f1d65845..35348be70 100644 --- a/src/Module/Photo.php +++ b/src/Module/Photo.php @@ -377,7 +377,7 @@ class Photo extends BaseModule $url = Contact::getDefaultAvatar($contact ?: [], Proxy::SIZE_SMALL); } } - return MPhoto::createPhotoForExternalResource($url, 0, $mimetext, $contact['blurhash'], $customsize, $customsize); + return MPhoto::createPhotoForExternalResource($url, 0, $mimetext, $contact['blurhash'] ?? null, $customsize, $customsize); case 'header': $fields = ['uid', 'url', 'header', 'network', 'gsid']; $contact = Contact::getById($id, $fields); diff --git a/view/global.css b/view/global.css index d327da0c2..78e187c8b 100644 --- a/view/global.css +++ b/view/global.css @@ -35,11 +35,6 @@ a.btn, a.btn:hover { text-decoration: overline; } -.icon { - width: 48px; - height: 48px; -} - .template-icon { width: 24px; height: 24px; @@ -706,4 +701,9 @@ audio { } /** * Image grid settings END - **/ \ No newline at end of file + **/ + +#contactblock .icon { + width: 48px; + height: 48px; +} diff --git a/view/lang/C/messages.po b/view/lang/C/messages.po index 2332aa2b2..0b28facf4 100644 --- a/view/lang/C/messages.po +++ b/view/lang/C/messages.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: 2022.12-rc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-07 07:12+0000\n" +"POT-Creation-Date: 2022-12-14 21:56-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -1516,7 +1516,7 @@ msgstr "" msgid "show more" msgstr "" -#: src/Content/Item.php:294 src/Model/Item.php:2914 +#: src/Content/Item.php:294 src/Model/Item.php:2925 msgid "event" msgstr "" @@ -1525,7 +1525,7 @@ msgstr "" msgid "status" msgstr "" -#: src/Content/Item.php:303 src/Model/Item.php:2916 +#: src/Content/Item.php:303 src/Model/Item.php:2927 #: src/Module/Post/Tag/Add.php:123 msgid "photo" msgstr "" @@ -1539,31 +1539,31 @@ msgstr "" msgid "Follow Thread" msgstr "" -#: src/Content/Item.php:387 src/Model/Contact.php:1209 +#: src/Content/Item.php:387 src/Model/Contact.php:1213 msgid "View Status" msgstr "" -#: src/Content/Item.php:388 src/Content/Item.php:406 src/Model/Contact.php:1147 -#: src/Model/Contact.php:1201 src/Model/Contact.php:1210 +#: src/Content/Item.php:388 src/Content/Item.php:406 src/Model/Contact.php:1151 +#: src/Model/Contact.php:1205 src/Model/Contact.php:1214 #: src/Module/Directory.php:157 src/Module/Settings/Profile/Index.php:234 msgid "View Profile" msgstr "" -#: src/Content/Item.php:389 src/Model/Contact.php:1211 +#: src/Content/Item.php:389 src/Model/Contact.php:1215 msgid "View Photos" msgstr "" -#: src/Content/Item.php:390 src/Model/Contact.php:1202 -#: src/Model/Contact.php:1212 +#: src/Content/Item.php:390 src/Model/Contact.php:1206 +#: src/Model/Contact.php:1216 msgid "Network Posts" msgstr "" -#: src/Content/Item.php:391 src/Model/Contact.php:1203 -#: src/Model/Contact.php:1213 +#: src/Content/Item.php:391 src/Model/Contact.php:1207 +#: src/Model/Contact.php:1217 msgid "View Contact" msgstr "" -#: src/Content/Item.php:392 src/Model/Contact.php:1214 +#: src/Content/Item.php:392 src/Model/Contact.php:1218 msgid "Send PM" msgstr "" @@ -1588,7 +1588,7 @@ msgid "Languages" msgstr "" #: src/Content/Item.php:403 src/Content/Widget.php:80 -#: src/Model/Contact.php:1204 src/Model/Contact.php:1215 +#: src/Model/Contact.php:1208 src/Model/Contact.php:1219 #: src/Module/Contact/Follow.php:167 view/theme/vier/theme.php:196 msgid "Connect/Follow" msgstr "" @@ -1920,8 +1920,8 @@ msgid "" "%2$s %3$s" msgstr "" -#: src/Content/Text/BBCode.php:1257 src/Model/Item.php:3539 -#: src/Model/Item.php:3545 src/Model/Item.php:3546 +#: src/Content/Text/BBCode.php:1257 src/Model/Item.php:3688 +#: src/Model/Item.php:3694 src/Model/Item.php:3695 msgid "Link to source" msgstr "" @@ -2081,7 +2081,7 @@ msgstr "" msgid "Organisations" msgstr "" -#: src/Content/Widget.php:523 src/Model/Contact.php:1641 +#: src/Content/Widget.php:523 src/Model/Contact.php:1655 msgid "News" msgstr "" @@ -2162,8 +2162,8 @@ msgstr "" msgid "Network:" msgstr "" -#: src/Content/Widget/VCard.php:111 src/Model/Contact.php:1205 -#: src/Model/Contact.php:1216 src/Model/Profile.php:465 +#: src/Content/Widget/VCard.php:111 src/Model/Contact.php:1209 +#: src/Model/Contact.php:1220 src/Model/Profile.php:465 #: src/Module/Contact/Profile.php:419 msgid "Unfollow" msgstr "" @@ -2203,6 +2203,12 @@ msgid "" "anywhere public." msgstr "" +#: src/Core/ACL.php:323 +msgid "" +"Start typing the name of a contact or a group to show a filtered list. You " +"can also mention the special groups \"Followers\" and \"Mutuals\"." +msgstr "" + #: src/Core/ACL.php:324 msgid "Show to:" msgstr "" @@ -2860,77 +2866,77 @@ msgstr "" msgid "Legacy module file not found: %s" msgstr "" -#: src/Model/Contact.php:1222 src/Module/Moderation/Users/Pending.php:102 +#: src/Model/Contact.php:1226 src/Module/Moderation/Users/Pending.php:102 #: src/Module/Notifications/Introductions.php:132 #: src/Module/Notifications/Introductions.php:204 msgid "Approve" msgstr "" -#: src/Model/Contact.php:1637 +#: src/Model/Contact.php:1651 msgid "Organisation" msgstr "" -#: src/Model/Contact.php:1645 +#: src/Model/Contact.php:1659 msgid "Forum" msgstr "" -#: src/Model/Contact.php:2849 +#: src/Model/Contact.php:2884 msgid "Disallowed profile URL." msgstr "" -#: src/Model/Contact.php:2854 src/Module/Friendica.php:82 +#: src/Model/Contact.php:2889 src/Module/Friendica.php:82 msgid "Blocked domain" msgstr "" -#: src/Model/Contact.php:2859 +#: src/Model/Contact.php:2894 msgid "Connect URL missing." msgstr "" -#: src/Model/Contact.php:2868 +#: src/Model/Contact.php:2903 msgid "" "The contact could not be added. Please check the relevant network " "credentials in your Settings -> Social Networks page." msgstr "" -#: src/Model/Contact.php:2910 +#: src/Model/Contact.php:2945 msgid "The profile address specified does not provide adequate information." msgstr "" -#: src/Model/Contact.php:2912 +#: src/Model/Contact.php:2947 msgid "No compatible communication protocols or feeds were discovered." msgstr "" -#: src/Model/Contact.php:2915 +#: src/Model/Contact.php:2950 msgid "An author or name was not found." msgstr "" -#: src/Model/Contact.php:2918 +#: src/Model/Contact.php:2953 msgid "No browser URL could be matched to this address." msgstr "" -#: src/Model/Contact.php:2921 +#: src/Model/Contact.php:2956 msgid "" "Unable to match @-style Identity Address with a known protocol or email " "contact." msgstr "" -#: src/Model/Contact.php:2922 +#: src/Model/Contact.php:2957 msgid "Use mailto: in front of address to force email check." msgstr "" -#: src/Model/Contact.php:2928 +#: src/Model/Contact.php:2963 msgid "" "The profile address specified belongs to a network which has been disabled " "on this site." msgstr "" -#: src/Model/Contact.php:2933 +#: src/Model/Contact.php:2968 msgid "" "Limited profile. This person will be unable to receive direct/personal " "notifications from you." msgstr "" -#: src/Model/Contact.php:2992 +#: src/Model/Contact.php:3027 msgid "Unable to retrieve contact information." msgstr "" @@ -2957,21 +2963,22 @@ msgid "Sept" msgstr "" #: src/Model/Event.php:462 src/Module/Calendar/Show.php:126 +#: src/Util/Temporal.php:339 msgid "today" msgstr "" #: src/Model/Event.php:463 src/Module/Calendar/Show.php:127 -#: src/Util/Temporal.php:341 +#: src/Util/Temporal.php:349 msgid "month" msgstr "" #: src/Model/Event.php:464 src/Module/Calendar/Show.php:128 -#: src/Util/Temporal.php:342 +#: src/Util/Temporal.php:350 msgid "week" msgstr "" #: src/Model/Event.php:465 src/Module/Calendar/Show.php:129 -#: src/Util/Temporal.php:343 +#: src/Util/Temporal.php:351 msgid "day" msgstr "" @@ -3083,69 +3090,69 @@ msgstr "" msgid "Detected languages in this post:\\n%s" msgstr "" -#: src/Model/Item.php:2918 +#: src/Model/Item.php:2929 msgid "activity" msgstr "" -#: src/Model/Item.php:2920 +#: src/Model/Item.php:2931 msgid "comment" msgstr "" -#: src/Model/Item.php:2923 +#: src/Model/Item.php:2934 msgid "post" msgstr "" -#: src/Model/Item.php:3064 +#: src/Model/Item.php:3077 #, php-format msgid "Content warning: %s" msgstr "" -#: src/Model/Item.php:3451 +#: src/Model/Item.php:3600 msgid "bytes" msgstr "" -#: src/Model/Item.php:3482 +#: src/Model/Item.php:3631 #, 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:3484 +#: src/Model/Item.php:3633 #, php-format msgid "%2$s (%1$d vote)" msgid_plural "%2$s (%1$d votes)" msgstr[0] "" msgstr[1] "" -#: src/Model/Item.php:3489 +#: src/Model/Item.php:3638 #, php-format msgid "%d voter. Poll end: %s" msgid_plural "%d voters. Poll end: %s" msgstr[0] "" msgstr[1] "" -#: src/Model/Item.php:3491 +#: src/Model/Item.php:3640 #, php-format msgid "%d voter." msgid_plural "%d voters." msgstr[0] "" msgstr[1] "" -#: src/Model/Item.php:3493 +#: src/Model/Item.php:3642 #, php-format msgid "Poll end: %s" msgstr "" -#: src/Model/Item.php:3527 src/Model/Item.php:3528 +#: src/Model/Item.php:3676 src/Model/Item.php:3677 msgid "View on separate page" msgstr "" -#: src/Model/Mail.php:137 src/Model/Mail.php:265 +#: src/Model/Mail.php:136 src/Model/Mail.php:264 msgid "[no subject]" msgstr "" -#: src/Model/Photo.php:1152 src/Module/Media/Photo/Upload.php:198 +#: src/Model/Photo.php:1178 src/Module/Media/Photo/Upload.php:198 msgid "Wall Photos" msgstr "" @@ -4261,7 +4268,7 @@ msgid "" "\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 (%sB)" +"to %s (%s byte)" msgstr "" #: src/Module/Admin/Site.php:480 @@ -5328,26 +5335,26 @@ msgstr "" msgid "User registrations waiting for confirmation" msgstr "" -#: src/Module/BaseApi.php:242 src/Module/BaseApi.php:258 -#: src/Module/BaseApi.php:274 +#: src/Module/BaseApi.php:254 src/Module/BaseApi.php:270 +#: src/Module/BaseApi.php:286 msgid "Too Many Requests" msgstr "" -#: src/Module/BaseApi.php:243 +#: src/Module/BaseApi.php:255 #, php-format msgid "Daily posting limit of %d post reached. The post was rejected." msgid_plural "Daily posting limit of %d posts reached. The post was rejected." msgstr[0] "" msgstr[1] "" -#: src/Module/BaseApi.php:259 +#: src/Module/BaseApi.php:271 #, 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] "" msgstr[1] "" -#: src/Module/BaseApi.php:275 +#: src/Module/BaseApi.php:287 #, php-format msgid "Monthly posting limit of %d post reached. The post was rejected." msgid_plural "" @@ -7962,11 +7969,11 @@ msgstr "" msgid "Show unread" msgstr "" -#: src/Module/Notifications/Ping.php:240 +#: src/Module/Notifications/Ping.php:245 msgid "{0} requested registration" msgstr "" -#: src/Module/Notifications/Ping.php:249 +#: src/Module/Notifications/Ping.php:254 #, php-format msgid "{0} and %d others requested registration" msgstr "" @@ -10547,11 +10554,11 @@ msgid "" "features and resources." msgstr "" -#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:151 +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:161 msgid "{0} wants to follow you" msgstr "" -#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:153 +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:163 msgid "{0} has started following you" msgstr "" @@ -11288,64 +11295,64 @@ msgstr "" msgid "Time zone: %s Change in Settings" msgstr "" -#: src/Util/Temporal.php:317 src/Util/Temporal.php:324 +#: src/Util/Temporal.php:318 src/Util/Temporal.php:325 msgid "never" msgstr "" -#: src/Util/Temporal.php:331 +#: src/Util/Temporal.php:339 msgid "less than a second ago" msgstr "" -#: src/Util/Temporal.php:340 +#: src/Util/Temporal.php:348 msgid "year" msgstr "" -#: src/Util/Temporal.php:340 +#: src/Util/Temporal.php:348 msgid "years" msgstr "" -#: src/Util/Temporal.php:341 +#: src/Util/Temporal.php:349 msgid "months" msgstr "" -#: src/Util/Temporal.php:342 +#: src/Util/Temporal.php:350 msgid "weeks" msgstr "" -#: src/Util/Temporal.php:343 +#: src/Util/Temporal.php:351 msgid "days" msgstr "" -#: src/Util/Temporal.php:344 +#: src/Util/Temporal.php:352 msgid "hour" msgstr "" -#: src/Util/Temporal.php:344 +#: src/Util/Temporal.php:352 msgid "hours" msgstr "" -#: src/Util/Temporal.php:345 +#: src/Util/Temporal.php:353 msgid "minute" msgstr "" -#: src/Util/Temporal.php:345 +#: src/Util/Temporal.php:353 msgid "minutes" msgstr "" -#: src/Util/Temporal.php:346 +#: src/Util/Temporal.php:354 msgid "second" msgstr "" -#: src/Util/Temporal.php:346 +#: src/Util/Temporal.php:354 msgid "seconds" msgstr "" -#: src/Util/Temporal.php:356 +#: src/Util/Temporal.php:364 #, php-format msgid "in %1$d %2$s" msgstr "" -#: src/Util/Temporal.php:359 +#: src/Util/Temporal.php:367 #, php-format msgid "%1$d %2$s ago" msgstr "" diff --git a/view/lang/de/messages.po b/view/lang/de/messages.po index 5d364d7cc..3f09b7537 100644 --- a/view/lang/de/messages.po +++ b/view/lang/de/messages.po @@ -50,7 +50,7 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-07 07:12+0000\n" +"POT-Creation-Date: 2022-12-14 21:56-0500\n" "PO-Revision-Date: 2011-05-05 10:19+0000\n" "Last-Translator: Tobias Diekershoff , 2016-2022\n" "Language-Team: German (http://www.transifex.com/Friendica/friendica/language/de/)\n" @@ -1558,7 +1558,7 @@ msgstr "weniger anzeigen" msgid "show more" msgstr "mehr anzeigen" -#: src/Content/Item.php:294 src/Model/Item.php:2914 +#: src/Content/Item.php:294 src/Model/Item.php:2925 msgid "event" msgstr "Veranstaltung" @@ -1567,7 +1567,7 @@ msgstr "Veranstaltung" msgid "status" msgstr "Status" -#: src/Content/Item.php:303 src/Model/Item.php:2916 +#: src/Content/Item.php:303 src/Model/Item.php:2927 #: src/Module/Post/Tag/Add.php:123 msgid "photo" msgstr "Foto" @@ -1581,32 +1581,32 @@ msgstr "%1$s hat %2$ss %3$s mit %4$s getaggt" msgid "Follow Thread" msgstr "Folge der Unterhaltung" -#: src/Content/Item.php:387 src/Model/Contact.php:1209 +#: src/Content/Item.php:387 src/Model/Contact.php:1213 msgid "View Status" msgstr "Status anschauen" #: src/Content/Item.php:388 src/Content/Item.php:406 -#: src/Model/Contact.php:1147 src/Model/Contact.php:1201 -#: src/Model/Contact.php:1210 src/Module/Directory.php:157 +#: src/Model/Contact.php:1151 src/Model/Contact.php:1205 +#: src/Model/Contact.php:1214 src/Module/Directory.php:157 #: src/Module/Settings/Profile/Index.php:234 msgid "View Profile" msgstr "Profil anschauen" -#: src/Content/Item.php:389 src/Model/Contact.php:1211 +#: src/Content/Item.php:389 src/Model/Contact.php:1215 msgid "View Photos" msgstr "Bilder anschauen" -#: src/Content/Item.php:390 src/Model/Contact.php:1202 -#: src/Model/Contact.php:1212 +#: src/Content/Item.php:390 src/Model/Contact.php:1206 +#: src/Model/Contact.php:1216 msgid "Network Posts" msgstr "Netzwerkbeiträge" -#: src/Content/Item.php:391 src/Model/Contact.php:1203 -#: src/Model/Contact.php:1213 +#: src/Content/Item.php:391 src/Model/Contact.php:1207 +#: src/Model/Contact.php:1217 msgid "View Contact" msgstr "Kontakt anzeigen" -#: src/Content/Item.php:392 src/Model/Contact.php:1214 +#: src/Content/Item.php:392 src/Model/Contact.php:1218 msgid "Send PM" msgstr "Private Nachricht senden" @@ -1631,7 +1631,7 @@ msgid "Languages" msgstr "Sprachen" #: src/Content/Item.php:403 src/Content/Widget.php:80 -#: src/Model/Contact.php:1204 src/Model/Contact.php:1215 +#: src/Model/Contact.php:1208 src/Model/Contact.php:1219 #: src/Module/Contact/Follow.php:167 view/theme/vier/theme.php:196 msgid "Connect/Follow" msgstr "Verbinden/Folgen" @@ -1962,8 +1962,8 @@ msgstr "Bild/Foto" msgid "%2$s %3$s" msgstr "%2$s%3$s" -#: src/Content/Text/BBCode.php:1257 src/Model/Item.php:3539 -#: src/Model/Item.php:3545 src/Model/Item.php:3546 +#: src/Content/Text/BBCode.php:1257 src/Model/Item.php:3688 +#: src/Model/Item.php:3694 src/Model/Item.php:3695 msgid "Link to source" msgstr "Link zum Originalbeitrag" @@ -2123,7 +2123,7 @@ msgstr "Personen" msgid "Organisations" msgstr "Organisationen" -#: src/Content/Widget.php:523 src/Model/Contact.php:1641 +#: src/Content/Widget.php:523 src/Model/Contact.php:1655 msgid "News" msgstr "Nachrichten" @@ -2204,8 +2204,8 @@ msgstr "Ort:" msgid "Network:" msgstr "Netzwerk:" -#: src/Content/Widget/VCard.php:111 src/Model/Contact.php:1205 -#: src/Model/Contact.php:1216 src/Model/Profile.php:465 +#: src/Content/Widget/VCard.php:111 src/Model/Contact.php:1209 +#: src/Model/Contact.php:1220 src/Model/Profile.php:465 #: src/Module/Contact/Profile.php:419 msgid "Unfollow" msgstr "Entfolgen" @@ -2245,6 +2245,12 @@ msgid "" "anywhere public." msgstr "Dieser Inhalt wird außschließlich den Kontakten gezeigt, die du in der ersten Box ausgewählt hast, mit den Ausnahmen derer die du in der zweiten Box auflistest. Er wird nicht öffentlich zugänglich sein." +#: src/Core/ACL.php:323 +msgid "" +"Start typing the name of a contact or a group to show a filtered list. You " +"can also mention the special groups \"Followers\" and \"Mutuals\"." +msgstr "Fange an den Namen eines Kontakts oder einer Gruppe zu schreiben, diese werden dir dann in einer Liste angezeigt. Außerdem kannst du spezielle Gruppen wie \"Folgende\" oder \"Beidseitige Freundschaft\" verwenden." + #: src/Core/ACL.php:324 msgid "Show to:" msgstr "Sichtbar für:" @@ -2902,77 +2908,77 @@ msgstr "Interner Serverfehler" msgid "Legacy module file not found: %s" msgstr "Legacy-Moduldatei nicht gefunden: %s" -#: src/Model/Contact.php:1222 src/Module/Moderation/Users/Pending.php:102 +#: src/Model/Contact.php:1226 src/Module/Moderation/Users/Pending.php:102 #: src/Module/Notifications/Introductions.php:132 #: src/Module/Notifications/Introductions.php:204 msgid "Approve" msgstr "Genehmigen" -#: src/Model/Contact.php:1637 +#: src/Model/Contact.php:1651 msgid "Organisation" msgstr "Organisation" -#: src/Model/Contact.php:1645 +#: src/Model/Contact.php:1659 msgid "Forum" msgstr "Forum" -#: src/Model/Contact.php:2849 +#: src/Model/Contact.php:2884 msgid "Disallowed profile URL." msgstr "Nicht erlaubte Profil-URL." -#: src/Model/Contact.php:2854 src/Module/Friendica.php:82 +#: src/Model/Contact.php:2889 src/Module/Friendica.php:82 msgid "Blocked domain" msgstr "Blockierte Domain" -#: src/Model/Contact.php:2859 +#: src/Model/Contact.php:2894 msgid "Connect URL missing." msgstr "Connect-URL fehlt" -#: src/Model/Contact.php:2868 +#: src/Model/Contact.php:2903 msgid "" "The contact could not be added. Please check the relevant network " "credentials in your Settings -> Social Networks page." msgstr "Der Kontakt konnte nicht hinzugefügt werden. Bitte überprüfe die Einstellungen unter Einstellungen -> Soziale Netzwerke" -#: src/Model/Contact.php:2910 +#: src/Model/Contact.php:2945 msgid "The profile address specified does not provide adequate information." msgstr "Die angegebene Profiladresse liefert unzureichende Informationen." -#: src/Model/Contact.php:2912 +#: src/Model/Contact.php:2947 msgid "No compatible communication protocols or feeds were discovered." msgstr "Es wurden keine kompatiblen Kommunikationsprotokolle oder Feeds gefunden." -#: src/Model/Contact.php:2915 +#: src/Model/Contact.php:2950 msgid "An author or name was not found." msgstr "Es wurde kein Autor oder Name gefunden." -#: src/Model/Contact.php:2918 +#: src/Model/Contact.php:2953 msgid "No browser URL could be matched to this address." msgstr "Zu dieser Adresse konnte keine passende Browser-URL gefunden werden." -#: src/Model/Contact.php:2921 +#: src/Model/Contact.php:2956 msgid "" "Unable to match @-style Identity Address with a known protocol or email " "contact." msgstr "Konnte die @-Adresse mit keinem der bekannten Protokolle oder Email-Kontakte abgleichen." -#: src/Model/Contact.php:2922 +#: src/Model/Contact.php:2957 msgid "Use mailto: in front of address to force email check." msgstr "Verwende mailto: vor der E-Mail-Adresse, um eine Überprüfung der E-Mail-Adresse zu erzwingen." -#: src/Model/Contact.php:2928 +#: src/Model/Contact.php:2963 msgid "" "The profile address specified belongs to a network which has been disabled " "on this site." msgstr "Die Adresse dieses Profils gehört zu einem Netzwerk, mit dem die Kommunikation auf dieser Seite ausgeschaltet wurde." -#: src/Model/Contact.php:2933 +#: src/Model/Contact.php:2968 msgid "" "Limited profile. This person will be unable to receive direct/personal " "notifications from you." msgstr "Eingeschränktes Profil. Diese Person wird keine direkten/privaten Nachrichten von dir erhalten können." -#: src/Model/Contact.php:2992 +#: src/Model/Contact.php:3027 msgid "Unable to retrieve contact information." msgstr "Konnte die Kontaktinformationen nicht empfangen." @@ -2999,21 +3005,22 @@ msgid "Sept" msgstr "Sep" #: src/Model/Event.php:462 src/Module/Calendar/Show.php:126 +#: src/Util/Temporal.php:339 msgid "today" msgstr "Heute" #: src/Model/Event.php:463 src/Module/Calendar/Show.php:127 -#: src/Util/Temporal.php:341 +#: src/Util/Temporal.php:349 msgid "month" msgstr "Monat" #: src/Model/Event.php:464 src/Module/Calendar/Show.php:128 -#: src/Util/Temporal.php:342 +#: src/Util/Temporal.php:350 msgid "week" msgstr "Woche" #: src/Model/Event.php:465 src/Module/Calendar/Show.php:129 -#: src/Util/Temporal.php:343 +#: src/Util/Temporal.php:351 msgid "day" msgstr "Tag" @@ -3125,69 +3132,69 @@ msgstr "Gruppen bearbeiten" msgid "Detected languages in this post:\\n%s" msgstr "Erkannte Sprachen in diesem Beitrag:\\n%s" -#: src/Model/Item.php:2918 +#: src/Model/Item.php:2929 msgid "activity" msgstr "Aktivität" -#: src/Model/Item.php:2920 +#: src/Model/Item.php:2931 msgid "comment" msgstr "Kommentar" -#: src/Model/Item.php:2923 +#: src/Model/Item.php:2934 msgid "post" msgstr "Beitrag" -#: src/Model/Item.php:3064 +#: src/Model/Item.php:3077 #, php-format msgid "Content warning: %s" msgstr "Inhaltswarnung: %s" -#: src/Model/Item.php:3451 +#: src/Model/Item.php:3600 msgid "bytes" msgstr "Byte" -#: src/Model/Item.php:3482 +#: src/Model/Item.php:3631 #, php-format msgid "%2$s (%3$d%%, %1$d vote)" msgid_plural "%2$s (%3$d%%, %1$d votes)" msgstr[0] "%2$s (%3$d%%, %1$d Stimme)" msgstr[1] "%2$s (%3$d%%, %1$d Stimmen)" -#: src/Model/Item.php:3484 +#: src/Model/Item.php:3633 #, php-format msgid "%2$s (%1$d vote)" msgid_plural "%2$s (%1$d votes)" msgstr[0] "%2$s (%1$d Stimme)" msgstr[1] "%2$s (%1$d Stimmen)" -#: src/Model/Item.php:3489 +#: src/Model/Item.php:3638 #, php-format msgid "%d voter. Poll end: %s" msgid_plural "%d voters. Poll end: %s" msgstr[0] "%d Stimme, Abstimmung endet: %s" msgstr[1] "%d Stimmen, Abstimmung endet: %s" -#: src/Model/Item.php:3491 +#: src/Model/Item.php:3640 #, php-format msgid "%d voter." msgid_plural "%d voters." msgstr[0] "%d Stimme." msgstr[1] "%d Stimmen." -#: src/Model/Item.php:3493 +#: src/Model/Item.php:3642 #, php-format msgid "Poll end: %s" msgstr "Abstimmung endet: %s" -#: src/Model/Item.php:3527 src/Model/Item.php:3528 +#: src/Model/Item.php:3676 src/Model/Item.php:3677 msgid "View on separate page" msgstr "Auf separater Seite ansehen" -#: src/Model/Mail.php:137 src/Model/Mail.php:265 +#: src/Model/Mail.php:136 src/Model/Mail.php:264 msgid "[no subject]" msgstr "[kein Betreff]" -#: src/Model/Photo.php:1152 src/Module/Media/Photo/Upload.php:198 +#: src/Model/Photo.php:1178 src/Module/Media/Photo/Upload.php:198 msgid "Wall Photos" msgstr "Pinnwand-Bilder" @@ -4287,8 +4294,8 @@ msgstr "Maximale Bildgröße" msgid "" "Maximum size in bytes of uploaded images. Default is 0, which means no limits. You can put k, m, or g behind the desired value for KiB, MiB, GiB, respectively.\n" "\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 (%sB)" -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 (%sB) gesetzt." +"\t\t\t\t\t\t\t\t\t\t\t\t\tCurrently upload_max_filesize is set to %s (%s byte)" +msgstr "Die maximale Größe von Bildern in Bytes. Grundeinstellung ist 0, welches keine Limitierung durch die Bildgröße bedeutet. Du kannst k, m oder g als Abkürzung hinter der Zahl angeben um KiB, MIB oder GiB zu definieren.\n\t\t\t\t\t\t\t\t\t\t\t\t\tDer Wert der 1upload_max_filesize1 Variable in der php.ini Datei muss diesem Limit mindestens entsprechen.\n\t\t\t\t\t\t\t\t\t\t\t\t\tDerzeit ist 3upload_max_filesize3 auf %s (%sByte) gesetzt." #: src/Module/Admin/Site.php:480 msgid "Maximum image length" @@ -5356,19 +5363,19 @@ msgstr "Addon Features" msgid "User registrations waiting for confirmation" msgstr "Nutzeranmeldungen, die auf Bestätigung warten" -#: src/Module/BaseApi.php:242 src/Module/BaseApi.php:258 -#: src/Module/BaseApi.php:274 +#: src/Module/BaseApi.php:254 src/Module/BaseApi.php:270 +#: src/Module/BaseApi.php:286 msgid "Too Many Requests" msgstr "Zu viele Abfragen" -#: src/Module/BaseApi.php:243 +#: src/Module/BaseApi.php:255 #, 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:259 +#: src/Module/BaseApi.php:271 #, php-format msgid "Weekly posting limit of %d post reached. The post was rejected." msgid_plural "" @@ -5376,7 +5383,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:275 +#: src/Module/BaseApi.php:287 #, php-format msgid "Monthly posting limit of %d post reached. The post was rejected." msgid_plural "" @@ -7988,11 +7995,11 @@ msgstr "Pinnwandbenachrichtigungen" msgid "Show unread" msgstr "Ungelesene anzeigen" -#: src/Module/Notifications/Ping.php:240 +#: src/Module/Notifications/Ping.php:245 msgid "{0} requested registration" msgstr "{0} möchte sich registrieren" -#: src/Module/Notifications/Ping.php:249 +#: src/Module/Notifications/Ping.php:254 #, php-format msgid "{0} and %d others requested registration" msgstr "{0} und %d weitere möchten sich registrieren" @@ -10577,11 +10584,11 @@ msgid "" " 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:151 +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:161 msgid "{0} wants to follow you" msgstr "{0} möchte dir folgen" -#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:153 +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:163 msgid "{0} has started following you" msgstr "{0} folgt dir jetzt" @@ -11320,64 +11327,64 @@ msgstr "YYYY-MM-DD oder MM-DD" msgid "Time zone: %s Change in Settings" msgstr "Zeitzone: %s Änderbar in den Einstellungen" -#: src/Util/Temporal.php:317 src/Util/Temporal.php:324 +#: src/Util/Temporal.php:318 src/Util/Temporal.php:325 msgid "never" msgstr "nie" -#: src/Util/Temporal.php:331 +#: src/Util/Temporal.php:339 msgid "less than a second ago" msgstr "vor weniger als einer Sekunde" -#: src/Util/Temporal.php:340 +#: src/Util/Temporal.php:348 msgid "year" msgstr "Jahr" -#: src/Util/Temporal.php:340 +#: src/Util/Temporal.php:348 msgid "years" msgstr "Jahre" -#: src/Util/Temporal.php:341 +#: src/Util/Temporal.php:349 msgid "months" msgstr "Monate" -#: src/Util/Temporal.php:342 +#: src/Util/Temporal.php:350 msgid "weeks" msgstr "Wochen" -#: src/Util/Temporal.php:343 +#: src/Util/Temporal.php:351 msgid "days" msgstr "Tage" -#: src/Util/Temporal.php:344 +#: src/Util/Temporal.php:352 msgid "hour" msgstr "Stunde" -#: src/Util/Temporal.php:344 +#: src/Util/Temporal.php:352 msgid "hours" msgstr "Stunden" -#: src/Util/Temporal.php:345 +#: src/Util/Temporal.php:353 msgid "minute" msgstr "Minute" -#: src/Util/Temporal.php:345 +#: src/Util/Temporal.php:353 msgid "minutes" msgstr "Minuten" -#: src/Util/Temporal.php:346 +#: src/Util/Temporal.php:354 msgid "second" msgstr "Sekunde" -#: src/Util/Temporal.php:346 +#: src/Util/Temporal.php:354 msgid "seconds" msgstr "Sekunden" -#: src/Util/Temporal.php:356 +#: src/Util/Temporal.php:364 #, php-format msgid "in %1$d %2$s" msgstr "in %1$d %2$s" -#: src/Util/Temporal.php:359 +#: src/Util/Temporal.php:367 #, php-format msgid "%1$d %2$s ago" msgstr "%1$d %2$s her" diff --git a/view/lang/de/strings.php b/view/lang/de/strings.php index 2678eb82d..045e8ae4e 100644 --- a/view/lang/de/strings.php +++ b/view/lang/de/strings.php @@ -545,6 +545,7 @@ $a->strings['Public'] = 'Öffentlich'; $a->strings['This content will be shown to all your followers and can be seen in the community pages and by anyone with its link.'] = 'Dieser Inhalt wird all deine Abonenten sowie auf der Gemeinschaftsseite angezeigt. Außerdem kann ihn jeder sehen, der den Link kennt.'; $a->strings['Limited/Private'] = 'Begrenzt/Privat'; $a->strings['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.'] = 'Dieser Inhalt wird außschließlich den Kontakten gezeigt, die du in der ersten Box ausgewählt hast, mit den Ausnahmen derer die du in der zweiten Box auflistest. Er wird nicht öffentlich zugänglich sein.'; +$a->strings['Start typing the name of a contact or a group to show a filtered list. You can also mention the special groups "Followers" and "Mutuals".'] = 'Fange an den Namen eines Kontakts oder einer Gruppe zu schreiben, diese werden dir dann in einer Liste angezeigt. Außerdem kannst du spezielle Gruppen wie "Folgende" oder "Beidseitige Freundschaft" verwenden.'; $a->strings['Show to:'] = 'Sichtbar für:'; $a->strings['Except to:'] = 'Ausgenommen:'; $a->strings['CC: email addresses'] = 'Cc: E-Mail-Addressen'; @@ -1146,9 +1147,9 @@ $a->strings['Make this instance multi-user or single-user for the named user'] = $a->strings['Maximum image size'] = 'Maximale Bildgröße'; $a->strings['Maximum size in bytes of uploaded images. Default is 0, which means no limits. You can put k, m, or g behind the desired value for KiB, MiB, GiB, respectively. The value of upload_max_filesize in your PHP.ini needs be set to at least the desired limit. - Currently upload_max_filesize is set to %s (%sB)'] = '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. + Currently upload_max_filesize is set to %s (%s byte)'] = '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. Der Wert der 1upload_max_filesize1 Variable in der php.ini Datei muss diesem Limit mindestens entsprechen. - Derzeit ist 3upload_max_filesize3 auf %s (%sB) gesetzt.'; + Derzeit ist 3upload_max_filesize3 auf %s (%sByte) gesetzt.'; $a->strings['Maximum image length'] = 'Maximale Bildlänge'; $a->strings['Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits.'] = 'Maximale Länge in Pixeln der längsten Seite eines hochgeladenen Bildes. Grundeinstellung ist -1, was keine Einschränkung bedeutet.'; $a->strings['JPEG image quality'] = 'Qualität des JPEG Bildes'; diff --git a/view/lang/fr/messages.po b/view/lang/fr/messages.po index 39ab6110f..c589eae44 100644 --- a/view/lang/fr/messages.po +++ b/view/lang/fr/messages.po @@ -34,7 +34,7 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-07 07:12+0000\n" +"POT-Creation-Date: 2022-12-14 21:56-0500\n" "PO-Revision-Date: 2011-05-05 10:19+0000\n" "Last-Translator: Nicolas Derive, 2022\n" "Language-Team: French (http://www.transifex.com/Friendica/friendica/language/fr/)\n" @@ -1543,7 +1543,7 @@ msgstr "voir moins" msgid "show more" msgstr "montrer plus" -#: src/Content/Item.php:294 src/Model/Item.php:2914 +#: src/Content/Item.php:294 src/Model/Item.php:2925 msgid "event" msgstr "évènement" @@ -1552,7 +1552,7 @@ msgstr "évènement" msgid "status" msgstr "le statut" -#: src/Content/Item.php:303 src/Model/Item.php:2916 +#: src/Content/Item.php:303 src/Model/Item.php:2927 #: src/Module/Post/Tag/Add.php:123 msgid "photo" msgstr "photo" @@ -1566,32 +1566,32 @@ msgstr "%1$s a mentionné %3$s de %2$s avec %4$s" msgid "Follow Thread" msgstr "Suivre le fil" -#: src/Content/Item.php:387 src/Model/Contact.php:1209 +#: src/Content/Item.php:387 src/Model/Contact.php:1213 msgid "View Status" msgstr "Voir les statuts" #: src/Content/Item.php:388 src/Content/Item.php:406 -#: src/Model/Contact.php:1147 src/Model/Contact.php:1201 -#: src/Model/Contact.php:1210 src/Module/Directory.php:157 +#: src/Model/Contact.php:1151 src/Model/Contact.php:1205 +#: src/Model/Contact.php:1214 src/Module/Directory.php:157 #: src/Module/Settings/Profile/Index.php:234 msgid "View Profile" msgstr "Voir le profil" -#: src/Content/Item.php:389 src/Model/Contact.php:1211 +#: src/Content/Item.php:389 src/Model/Contact.php:1215 msgid "View Photos" msgstr "Voir les photos" -#: src/Content/Item.php:390 src/Model/Contact.php:1202 -#: src/Model/Contact.php:1212 +#: src/Content/Item.php:390 src/Model/Contact.php:1206 +#: src/Model/Contact.php:1216 msgid "Network Posts" msgstr "Publications du réseau" -#: src/Content/Item.php:391 src/Model/Contact.php:1203 -#: src/Model/Contact.php:1213 +#: src/Content/Item.php:391 src/Model/Contact.php:1207 +#: src/Model/Contact.php:1217 msgid "View Contact" msgstr "Voir Contact" -#: src/Content/Item.php:392 src/Model/Contact.php:1214 +#: src/Content/Item.php:392 src/Model/Contact.php:1218 msgid "Send PM" msgstr "Message privé" @@ -1616,7 +1616,7 @@ msgid "Languages" msgstr "Langues" #: src/Content/Item.php:403 src/Content/Widget.php:80 -#: src/Model/Contact.php:1204 src/Model/Contact.php:1215 +#: src/Model/Contact.php:1208 src/Model/Contact.php:1219 #: src/Module/Contact/Follow.php:167 view/theme/vier/theme.php:196 msgid "Connect/Follow" msgstr "Se connecter/Suivre" @@ -1947,8 +1947,8 @@ msgstr "Image/photo" msgid "%2$s %3$s" msgstr "%2$s %3$s" -#: src/Content/Text/BBCode.php:1257 src/Model/Item.php:3539 -#: src/Model/Item.php:3545 src/Model/Item.php:3546 +#: src/Content/Text/BBCode.php:1257 src/Model/Item.php:3688 +#: src/Model/Item.php:3694 src/Model/Item.php:3695 msgid "Link to source" msgstr "Lien vers la source" @@ -2110,7 +2110,7 @@ msgstr "Personnes" msgid "Organisations" msgstr "Organisations" -#: src/Content/Widget.php:523 src/Model/Contact.php:1641 +#: src/Content/Widget.php:523 src/Model/Contact.php:1655 msgid "News" msgstr "Nouvelles" @@ -2193,8 +2193,8 @@ msgstr "Localisation :" msgid "Network:" msgstr "Réseau" -#: src/Content/Widget/VCard.php:111 src/Model/Contact.php:1205 -#: src/Model/Contact.php:1216 src/Model/Profile.php:465 +#: src/Content/Widget/VCard.php:111 src/Model/Contact.php:1209 +#: src/Model/Contact.php:1220 src/Model/Profile.php:465 #: src/Module/Contact/Profile.php:419 msgid "Unfollow" msgstr "Se désabonner" @@ -2234,6 +2234,12 @@ msgid "" "anywhere public." msgstr "Ce contenu sera visible uniquement par les groupes et contacts listés dans le premier champ, sauf par les groupes et contacts listés dans le second champ. Il ne sera pas visible publiquement." +#: src/Core/ACL.php:323 +msgid "" +"Start typing the name of a contact or a group to show a filtered list. You " +"can also mention the special groups \"Followers\" and \"Mutuals\"." +msgstr "" + #: src/Core/ACL.php:324 msgid "Show to:" msgstr "Visible par :" @@ -2891,77 +2897,77 @@ msgstr "Erreur du site" msgid "Legacy module file not found: %s" msgstr "Module original non trouvé: %s" -#: src/Model/Contact.php:1222 src/Module/Moderation/Users/Pending.php:102 +#: src/Model/Contact.php:1226 src/Module/Moderation/Users/Pending.php:102 #: src/Module/Notifications/Introductions.php:132 #: src/Module/Notifications/Introductions.php:204 msgid "Approve" msgstr "Approuver" -#: src/Model/Contact.php:1637 +#: src/Model/Contact.php:1651 msgid "Organisation" msgstr "Organisation" -#: src/Model/Contact.php:1645 +#: src/Model/Contact.php:1659 msgid "Forum" msgstr "Forum" -#: src/Model/Contact.php:2849 +#: src/Model/Contact.php:2884 msgid "Disallowed profile URL." msgstr "URL de profil interdite." -#: src/Model/Contact.php:2854 src/Module/Friendica.php:82 +#: src/Model/Contact.php:2889 src/Module/Friendica.php:82 msgid "Blocked domain" msgstr "Domaine bloqué" -#: src/Model/Contact.php:2859 +#: src/Model/Contact.php:2894 msgid "Connect URL missing." msgstr "URL de connexion manquante." -#: src/Model/Contact.php:2868 +#: src/Model/Contact.php:2903 msgid "" "The contact could not be added. Please check the relevant network " "credentials in your Settings -> Social Networks page." msgstr "Le contact n'a pu être ajouté. Veuillez vérifier les identifiants du réseau concerné dans la page Réglages -> Réseaux Sociaux si pertinent." -#: src/Model/Contact.php:2910 +#: src/Model/Contact.php:2945 msgid "The profile address specified does not provide adequate information." msgstr "L'adresse de profil indiquée ne fournit par les informations adéquates." -#: src/Model/Contact.php:2912 +#: src/Model/Contact.php:2947 msgid "No compatible communication protocols or feeds were discovered." msgstr "Aucun protocole de communication ni aucun flux n'a pu être découvert." -#: src/Model/Contact.php:2915 +#: src/Model/Contact.php:2950 msgid "An author or name was not found." msgstr "Aucun auteur ou nom d'auteur n'a pu être trouvé." -#: src/Model/Contact.php:2918 +#: src/Model/Contact.php:2953 msgid "No browser URL could be matched to this address." msgstr "Aucune URL de navigation ne correspond à cette adresse." -#: src/Model/Contact.php:2921 +#: src/Model/Contact.php:2956 msgid "" "Unable to match @-style Identity Address with a known protocol or email " "contact." msgstr "Impossible de faire correspondre l'adresse d'identité en \"@\" avec un protocole connu ou un contact courriel." -#: src/Model/Contact.php:2922 +#: src/Model/Contact.php:2957 msgid "Use mailto: in front of address to force email check." msgstr "Utilisez mailto: en face d'une adresse pour l'obliger à être reconnue comme courriel." -#: src/Model/Contact.php:2928 +#: src/Model/Contact.php:2963 msgid "" "The profile address specified belongs to a network which has been disabled " "on this site." msgstr "L'adresse de profil spécifiée correspond à un réseau qui a été désactivé sur ce site." -#: src/Model/Contact.php:2933 +#: src/Model/Contact.php:2968 msgid "" "Limited profile. This person will be unable to receive direct/personal " "notifications from you." msgstr "Profil limité. Cette personne ne sera pas capable de recevoir des notifications directes/personnelles de votre part." -#: src/Model/Contact.php:2992 +#: src/Model/Contact.php:3027 msgid "Unable to retrieve contact information." msgstr "Impossible de récupérer les informations du contact." @@ -2988,21 +2994,22 @@ msgid "Sept" msgstr "Sep" #: src/Model/Event.php:462 src/Module/Calendar/Show.php:126 +#: src/Util/Temporal.php:339 msgid "today" msgstr "aujourd'hui" #: src/Model/Event.php:463 src/Module/Calendar/Show.php:127 -#: src/Util/Temporal.php:341 +#: src/Util/Temporal.php:349 msgid "month" msgstr "mois" #: src/Model/Event.php:464 src/Module/Calendar/Show.php:128 -#: src/Util/Temporal.php:342 +#: src/Util/Temporal.php:350 msgid "week" msgstr "semaine" #: src/Model/Event.php:465 src/Module/Calendar/Show.php:129 -#: src/Util/Temporal.php:343 +#: src/Util/Temporal.php:351 msgid "day" msgstr "jour" @@ -3114,28 +3121,28 @@ msgstr "Modifier les groupes" msgid "Detected languages in this post:\\n%s" msgstr "Langues détectées dans cette publication :\\n%s" -#: src/Model/Item.php:2918 +#: src/Model/Item.php:2929 msgid "activity" msgstr "activité" -#: src/Model/Item.php:2920 +#: src/Model/Item.php:2931 msgid "comment" msgstr "commentaire" -#: src/Model/Item.php:2923 +#: src/Model/Item.php:2934 msgid "post" msgstr "publication" -#: src/Model/Item.php:3064 +#: src/Model/Item.php:3077 #, php-format msgid "Content warning: %s" msgstr "Avertissement de contenu: %s" -#: src/Model/Item.php:3451 +#: src/Model/Item.php:3600 msgid "bytes" msgstr "octets" -#: src/Model/Item.php:3482 +#: src/Model/Item.php:3631 #, php-format msgid "%2$s (%3$d%%, %1$d vote)" msgid_plural "%2$s (%3$d%%, %1$d votes)" @@ -3143,7 +3150,7 @@ msgstr[0] "%2$s (%3$d%%, %1$d vote)" msgstr[1] "%2$s (%3$d%%, %1$d votes)" msgstr[2] "%2$s (%3$d%%, %1$d vote)" -#: src/Model/Item.php:3484 +#: src/Model/Item.php:3633 #, php-format msgid "%2$s (%1$d vote)" msgid_plural "%2$s (%1$d votes)" @@ -3151,7 +3158,7 @@ msgstr[0] "%2$s (%1$d vote)" msgstr[1] "%2$s (%1$d votes)" msgstr[2] "%2$s (%1$d vote)" -#: src/Model/Item.php:3489 +#: src/Model/Item.php:3638 #, php-format msgid "%d voter. Poll end: %s" msgid_plural "%d voters. Poll end: %s" @@ -3159,7 +3166,7 @@ msgstr[0] "%d votant. Fin du sondage : %s" msgstr[1] "%d votants. Fin du sondage : %s" msgstr[2] "%d votant. Fin du sondage : %s" -#: src/Model/Item.php:3491 +#: src/Model/Item.php:3640 #, php-format msgid "%d voter." msgid_plural "%d voters." @@ -3167,20 +3174,20 @@ msgstr[0] "%d votant." msgstr[1] "%d votants." msgstr[2] "%d votant." -#: src/Model/Item.php:3493 +#: src/Model/Item.php:3642 #, php-format msgid "Poll end: %s" msgstr "Fin du sondage : %s" -#: src/Model/Item.php:3527 src/Model/Item.php:3528 +#: src/Model/Item.php:3676 src/Model/Item.php:3677 msgid "View on separate page" msgstr "Voir dans une nouvelle page" -#: src/Model/Mail.php:137 src/Model/Mail.php:265 +#: src/Model/Mail.php:136 src/Model/Mail.php:264 msgid "[no subject]" msgstr "[pas de sujet]" -#: src/Model/Photo.php:1152 src/Module/Media/Photo/Upload.php:198 +#: src/Model/Photo.php:1178 src/Module/Media/Photo/Upload.php:198 msgid "Wall Photos" msgstr "Photos du mur" @@ -4290,8 +4297,8 @@ msgstr "Taille maximale des images" msgid "" "Maximum size in bytes of uploaded images. Default is 0, which means no limits. You can put k, m, or g behind the desired value for KiB, MiB, GiB, respectively.\n" "\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 (%sB)" -msgstr "La taille maximum 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 derrière la valeur désirée pour Kio, Mio et 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 a minima à la valeur désirée.\n\t\t\t\t\t\t\t\t\t\t\t\t\tActuellement, upload_max_filesize est défini à %s (%so) " +"\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:480 msgid "Maximum image length" @@ -5359,12 +5366,12 @@ msgstr "Fonctionnalités des addons" msgid "User registrations waiting for confirmation" msgstr "Inscriptions en attente de confirmation" -#: src/Module/BaseApi.php:242 src/Module/BaseApi.php:258 -#: src/Module/BaseApi.php:274 +#: src/Module/BaseApi.php:254 src/Module/BaseApi.php:270 +#: src/Module/BaseApi.php:286 msgid "Too Many Requests" msgstr "Trop de requêtes" -#: src/Module/BaseApi.php:243 +#: src/Module/BaseApi.php:255 #, 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." @@ -5372,7 +5379,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:259 +#: src/Module/BaseApi.php:271 #, php-format msgid "Weekly posting limit of %d post reached. The post was rejected." msgid_plural "" @@ -5381,7 +5388,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:275 +#: src/Module/BaseApi.php:287 #, php-format msgid "Monthly posting limit of %d post reached. The post was rejected." msgid_plural "" @@ -8014,11 +8021,11 @@ msgstr "Notifications de page d'accueil" msgid "Show unread" msgstr "Afficher non-lus" -#: src/Module/Notifications/Ping.php:240 +#: src/Module/Notifications/Ping.php:245 msgid "{0} requested registration" msgstr "{0} a demandé à s'inscrire" -#: src/Module/Notifications/Ping.php:249 +#: src/Module/Notifications/Ping.php:254 #, php-format msgid "{0} and %d others requested registration" msgstr "{0} et %d autres attendent la confirmation de leur inscription." @@ -9595,19 +9602,19 @@ msgstr "%s- (non supporté)" #: src/Module/Settings/Display.php:196 msgid "No preview" -msgstr "" +msgstr "Pas d'aperçu" #: src/Module/Settings/Display.php:197 msgid "No image" -msgstr "" +msgstr "Pas d'image" #: src/Module/Settings/Display.php:198 msgid "Small Image" -msgstr "" +msgstr "Petite image" #: src/Module/Settings/Display.php:199 msgid "Large Image" -msgstr "" +msgstr "Grande image" #: src/Module/Settings/Display.php:210 msgid "Display Settings" @@ -9721,7 +9728,7 @@ msgstr "Ne pas aller sur un système distant lors du suivi du lien d'un contact. #: src/Module/Settings/Display.php:236 msgid "Link preview mode" -msgstr "" +msgstr "Mode de prévisualisation des liens" #: src/Module/Settings/Display.php:238 msgid "Beginning of week:" @@ -10605,11 +10612,11 @@ msgid "" " 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:151 +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:161 msgid "{0} wants to follow you" msgstr "{0} souhaite vous suivre" -#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:153 +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:163 msgid "{0} has started following you" msgstr "{0} a commencé à vous suivre" @@ -11349,64 +11356,64 @@ msgstr "AAAA-MM-JJ ou MM-JJ" msgid "Time zone: %s Change in Settings" msgstr "Fuseau horaire : %s Le changer dans les paramètres" -#: src/Util/Temporal.php:317 src/Util/Temporal.php:324 +#: src/Util/Temporal.php:318 src/Util/Temporal.php:325 msgid "never" msgstr "jamais" -#: src/Util/Temporal.php:331 +#: src/Util/Temporal.php:339 msgid "less than a second ago" msgstr "il y a moins d'une seconde" -#: src/Util/Temporal.php:340 +#: src/Util/Temporal.php:348 msgid "year" msgstr "année" -#: src/Util/Temporal.php:340 +#: src/Util/Temporal.php:348 msgid "years" msgstr "années" -#: src/Util/Temporal.php:341 +#: src/Util/Temporal.php:349 msgid "months" msgstr "mois" -#: src/Util/Temporal.php:342 +#: src/Util/Temporal.php:350 msgid "weeks" msgstr "semaines" -#: src/Util/Temporal.php:343 +#: src/Util/Temporal.php:351 msgid "days" msgstr "jours" -#: src/Util/Temporal.php:344 +#: src/Util/Temporal.php:352 msgid "hour" msgstr "heure" -#: src/Util/Temporal.php:344 +#: src/Util/Temporal.php:352 msgid "hours" msgstr "heures" -#: src/Util/Temporal.php:345 +#: src/Util/Temporal.php:353 msgid "minute" msgstr "minute" -#: src/Util/Temporal.php:345 +#: src/Util/Temporal.php:353 msgid "minutes" msgstr "minutes" -#: src/Util/Temporal.php:346 +#: src/Util/Temporal.php:354 msgid "second" msgstr "seconde" -#: src/Util/Temporal.php:346 +#: src/Util/Temporal.php:354 msgid "seconds" msgstr "secondes" -#: src/Util/Temporal.php:356 +#: src/Util/Temporal.php:364 #, php-format msgid "in %1$d %2$s" msgstr "dans %1$d %2$s" -#: src/Util/Temporal.php:359 +#: src/Util/Temporal.php:367 #, php-format msgid "%1$d %2$s ago" msgstr "Il y a %1$d %2$s" diff --git a/view/lang/fr/strings.php b/view/lang/fr/strings.php index 25d0a88ee..7ec0c9767 100644 --- a/view/lang/fr/strings.php +++ b/view/lang/fr/strings.php @@ -1173,11 +1173,6 @@ $a->strings['Displays the menu entry for the Help pages from the navigation menu $a->strings['Single user instance'] = 'Instance mono-utilisateur'; $a->strings['Make this instance multi-user or single-user for the named user'] = 'Transformer cette en instance en multi-utilisateur ou mono-utilisateur pour cet l\'utilisateur.'; $a->strings['Maximum image size'] = 'Taille maximale des images'; -$a->strings['Maximum size in bytes of uploaded images. Default is 0, which means no limits. You can put k, m, or g behind the desired value for KiB, MiB, GiB, respectively. - The value of upload_max_filesize in your PHP.ini needs be set to at least the desired limit. - Currently upload_max_filesize is set to %s (%sB)'] = 'La taille maximum 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 derrière la valeur désirée pour Kio, Mio et Gio respectivement. - La valeur de upload_max_filesize dans votre PHP.ini doit être définie a minima à la valeur désirée. - Actuellement, upload_max_filesize est défini à %s (%so) '; $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'; @@ -2418,6 +2413,10 @@ $a->strings['Add'] = 'Ajouter'; $a->strings['No entries.'] = 'Aucune entrée.'; $a->strings['The theme you chose isn\'t available.'] = 'Le thème que vous avez choisi n\'est pas disponible.'; $a->strings['%s - (Unsupported)'] = '%s- (non supporté)'; +$a->strings['No preview'] = 'Pas d\'aperçu'; +$a->strings['No image'] = 'Pas d\'image'; +$a->strings['Small Image'] = 'Petite image'; +$a->strings['Large Image'] = 'Grande image'; $a->strings['Display Settings'] = 'Affichage'; $a->strings['General Theme Settings'] = 'Paramètres généraux de thème'; $a->strings['Custom Theme Settings'] = 'Paramètres personnalisés de thème'; @@ -2444,6 +2443,7 @@ $a->strings['Display the resharer'] = 'Afficher le repartageur'; $a->strings['Display the first resharer as icon and text on a reshared item.'] = 'Afficher le premier repartageur en tant qu\'icône et texte sur un élément repartagé.'; $a->strings['Stay local'] = 'Rester local'; $a->strings['Don\'t go to a remote system when following a contact link.'] = 'Ne pas aller sur un système distant lors du suivi du lien d\'un contact.'; +$a->strings['Link preview mode'] = 'Mode de prévisualisation des liens'; $a->strings['Beginning of week:'] = 'Début de la semaine :'; $a->strings['Additional Features'] = 'Fonctions supplémentaires'; $a->strings['Connected Apps'] = 'Applications connectées'; diff --git a/view/lang/hu/messages.po b/view/lang/hu/messages.po index 91de201ca..725f47a96 100644 --- a/view/lang/hu/messages.po +++ b/view/lang/hu/messages.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-08-09 13:22-0400\n" +"POT-Creation-Date: 2022-12-14 21:56-0500\n" "PO-Revision-Date: 2011-05-05 10:19+0000\n" "Last-Translator: Balázs Úr, 2020-2022\n" "Language-Team: Hungarian (http://www.transifex.com/Friendica/friendica/language/hu/)\n" @@ -22,526 +22,66 @@ msgstr "" "Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: mod/cal.php:46 mod/cal.php:50 mod/follow.php:39 mod/redir.php:36 -#: mod/redir.php:177 src/Module/Conversation/Community.php:181 -#: src/Module/Debug/ItemBody.php:38 src/Module/Diaspora/Receive.php:57 -#: src/Module/Item/Follow.php:42 src/Module/Item/Ignore.php:41 -#: src/Module/Item/Pin.php:42 src/Module/Item/Pin.php:57 -#: src/Module/Item/Star.php:43 -msgid "Access denied." -msgstr "Hozzáférés megtagadva." - -#: mod/cal.php:63 mod/cal.php:80 mod/photos.php:69 mod/photos.php:140 -#: mod/photos.php:798 src/Model/Profile.php:235 src/Module/Feed.php:72 -#: src/Module/HCard.php:52 src/Module/Profile/Common.php:41 -#: src/Module/Profile/Common.php:52 src/Module/Profile/Contacts.php:40 -#: src/Module/Profile/Contacts.php:50 src/Module/Profile/Media.php:38 -#: src/Module/Profile/Status.php:59 src/Module/Register.php:267 -#: src/Module/RemoteFollow.php:58 -msgid "User not found." -msgstr "A felhasználó nem található." - -#: mod/cal.php:122 mod/display.php:262 src/Module/Profile/Profile.php:94 -#: src/Module/Profile/Profile.php:109 src/Module/Profile/Status.php:110 -#: src/Module/Update/Profile.php:56 -msgid "Access to this profile has been restricted." -msgstr "A profilhoz való hozzáférés korlátozva lett." - -#: mod/cal.php:243 mod/events.php:374 src/Content/Nav.php:196 -#: src/Content/Nav.php:260 src/Module/BaseProfile.php:84 -#: src/Module/BaseProfile.php:95 view/theme/frio/theme.php:224 -#: view/theme/frio/theme.php:228 -msgid "Events" -msgstr "Események" - -#: mod/cal.php:244 mod/events.php:375 -msgid "View" -msgstr "Nézet" - -#: mod/cal.php:245 mod/events.php:377 -msgid "Previous" -msgstr "Előző" - -#: mod/cal.php:246 mod/events.php:378 src/Module/Install.php:214 -msgid "Next" -msgstr "Következő" - -#: mod/cal.php:249 mod/events.php:383 src/Model/Event.php:460 -msgid "today" -msgstr "ma" - -#: mod/cal.php:250 mod/events.php:384 src/Model/Event.php:461 -#: src/Util/Temporal.php:334 -msgid "month" -msgstr "hónap" - -#: mod/cal.php:251 mod/events.php:385 src/Model/Event.php:462 -#: src/Util/Temporal.php:335 -msgid "week" -msgstr "hét" - -#: mod/cal.php:252 mod/events.php:386 src/Model/Event.php:463 -#: src/Util/Temporal.php:336 -msgid "day" -msgstr "nap" - -#: mod/cal.php:253 mod/events.php:387 -msgid "list" -msgstr "lista" - -#: mod/cal.php:265 src/Console/User.php:182 src/Model/User.php:663 -#: src/Module/Admin/Users/Active.php:73 src/Module/Admin/Users/Blocked.php:74 -#: src/Module/Admin/Users/Index.php:80 src/Module/Admin/Users/Pending.php:71 -#: src/Module/Api/Twitter/ContactEndpoint.php:74 -msgid "User not found" -msgstr "A felhasználó nem található" - -#: mod/cal.php:274 -msgid "This calendar format is not supported" -msgstr "Ez a naptárformátum nem támogatott" - -#: mod/cal.php:276 -msgid "No exportable data found" -msgstr "Nem található exportálható adat" - -#: mod/cal.php:292 -msgid "calendar" -msgstr "naptár" - -#: mod/display.php:143 mod/photos.php:802 -#: src/Module/Conversation/Community.php:175 src/Module/Directory.php:49 -#: src/Module/Search/Index.php:65 -msgid "Public access denied." -msgstr "Nyilvános hozzáférés megtagadva." - -#: mod/display.php:213 mod/display.php:287 -msgid "The requested item doesn't exist or has been deleted." -msgstr "A kért elem nem létezik vagy törölték." - -#: mod/display.php:367 -msgid "The feed for this item is unavailable." -msgstr "Ennek az elemnek a hírforrása nem érhető el." - -#: mod/editpost.php:38 mod/events.php:217 mod/follow.php:56 mod/follow.php:130 -#: mod/item.php:181 mod/item.php:186 mod/item.php:870 mod/message.php:69 -#: mod/message.php:111 mod/notes.php:44 mod/ostatus_subscribe.php:33 -#: mod/photos.php:160 mod/photos.php:891 mod/repair_ostatus.php:31 -#: mod/settings.php:40 mod/settings.php:50 mod/settings.php:156 -#: mod/suggest.php:34 mod/uimport.php:33 mod/unfollow.php:35 -#: mod/unfollow.php:50 mod/unfollow.php:82 mod/wall_attach.php:67 -#: mod/wall_attach.php:69 mod/wall_upload.php:89 mod/wall_upload.php:91 -#: mod/wallmessage.php:37 mod/wallmessage.php:56 mod/wallmessage.php:90 -#: mod/wallmessage.php:110 src/Module/Attach.php:56 src/Module/BaseApi.php:93 -#: src/Module/BaseNotifications.php:97 src/Module/Contact/Advanced.php:60 -#: src/Module/Delegation.php:119 src/Module/FollowConfirm.php:38 -#: src/Module/FriendSuggest.php:56 src/Module/Group.php:42 -#: src/Module/Group.php:85 src/Module/Invite.php:42 src/Module/Invite.php:131 -#: src/Module/Notifications/Notification.php:75 -#: src/Module/Notifications/Notification.php:106 -#: src/Module/Profile/Common.php:56 src/Module/Profile/Contacts.php:56 -#: src/Module/Profile/Schedule.php:39 src/Module/Profile/Schedule.php:56 -#: src/Module/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:49 -#: src/Module/Settings/Account.php:409 src/Module/Settings/Delegation.php:42 -#: src/Module/Settings/Delegation.php:70 src/Module/Settings/Display.php:42 -#: src/Module/Settings/Display.php:120 -#: src/Module/Settings/Profile/Photo/Crop.php:166 -#: src/Module/Settings/Profile/Photo/Index.php:112 -#: src/Module/Settings/UserExport.php:58 src/Module/Settings/UserExport.php:92 -#: src/Module/Settings/UserExport.php:196 -#: src/Module/Settings/UserExport.php:216 -#: src/Module/Settings/UserExport.php:281 -msgid "Permission denied." -msgstr "Hozzáférés megtagadva." - -#: mod/editpost.php:45 mod/editpost.php:55 -msgid "Item not found" -msgstr "Az elem nem található" - -#: mod/editpost.php:64 -msgid "Edit post" -msgstr "Bejegyzés szerkesztése" - -#: mod/editpost.php:91 mod/notes.php:56 src/Content/Text/HTML.php:882 -#: src/Module/Admin/Storage.php:142 src/Module/Filer/SaveTag.php:73 -msgid "Save" -msgstr "Mentés" - -#: mod/editpost.php:92 mod/photos.php:1338 src/Content/Conversation.php:338 -#: src/Object/Post.php:993 -msgid "Loading..." -msgstr "Betöltés…" - -#: mod/editpost.php:93 mod/message.php:198 mod/message.php:355 -#: mod/wallmessage.php:140 src/Content/Conversation.php:339 -msgid "Upload photo" -msgstr "Fénykép feltöltése" - -#: mod/editpost.php:94 src/Content/Conversation.php:340 -msgid "upload photo" -msgstr "fénykép feltöltése" - -#: mod/editpost.php:95 src/Content/Conversation.php:341 -msgid "Attach file" -msgstr "Fájl csatolása" - -#: mod/editpost.php:96 src/Content/Conversation.php:342 -msgid "attach file" -msgstr "fájl csatolása" - -#: mod/editpost.php:97 mod/message.php:199 mod/message.php:356 -#: mod/wallmessage.php:141 -msgid "Insert web link" -msgstr "Webhivatkozás beszúrása" - -#: mod/editpost.php:98 -msgid "web link" -msgstr "webhivatkozás" - -#: mod/editpost.php:99 -msgid "Insert video link" -msgstr "Videohivatkozás beszúrása" - -#: mod/editpost.php:100 -msgid "video link" -msgstr "videohivatkozás" - -#: mod/editpost.php:101 -msgid "Insert audio link" -msgstr "Hanghivatkozás beszúrása" - -#: mod/editpost.php:102 -msgid "audio link" -msgstr "hanghivatkozás" - -#: mod/editpost.php:103 src/Content/Conversation.php:352 -#: src/Module/Item/Compose.php:173 -msgid "Set your location" -msgstr "Az Ön helyének beállítása" - -#: mod/editpost.php:104 src/Content/Conversation.php:353 -msgid "set location" -msgstr "hely beállítása" - -#: mod/editpost.php:105 src/Content/Conversation.php:354 -msgid "Clear browser location" -msgstr "Böngésző helyének törlése" - -#: mod/editpost.php:106 src/Content/Conversation.php:355 -msgid "clear location" -msgstr "hely törlése" - -#: mod/editpost.php:107 mod/message.php:200 mod/message.php:358 -#: mod/photos.php:1489 mod/wallmessage.php:142 -#: src/Content/Conversation.php:368 src/Content/Conversation.php:713 -#: src/Module/Item/Compose.php:177 src/Object/Post.php:538 -msgid "Please wait" -msgstr "Kis türelmet" - -#: mod/editpost.php:108 src/Content/Conversation.php:369 -msgid "Permission settings" -msgstr "Jogosultsági beállítások" - -#: mod/editpost.php:116 src/Core/ACL.php:326 -msgid "CC: email addresses" -msgstr "Másolat: e-mail-címek" - -#: mod/editpost.php:117 src/Content/Conversation.php:379 -msgid "Public post" -msgstr "Nyilvános bejegyzés" - -#: mod/editpost.php:120 src/Content/Conversation.php:357 -#: src/Module/Item/Compose.php:178 -msgid "Set title" -msgstr "Cím beállítása" - -#: mod/editpost.php:122 src/Content/Conversation.php:359 -#: src/Module/Item/Compose.php:179 -msgid "Categories (comma-separated list)" -msgstr "Kategóriák (vesszővel elválasztott lista)" - -#: mod/editpost.php:123 src/Core/ACL.php:327 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Példa: bob@example.com, mary@example.com" - -#: mod/editpost.php:128 mod/events.php:513 mod/photos.php:1337 -#: mod/photos.php:1393 mod/photos.php:1467 src/Content/Conversation.php:383 -#: src/Module/Item/Compose.php:172 src/Object/Post.php:1003 -msgid "Preview" -msgstr "Előnézet" - -#: mod/editpost.php:130 mod/fbrowser.php:118 mod/fbrowser.php:145 -#: mod/follow.php:144 mod/photos.php:1004 mod/photos.php:1105 mod/tagrm.php:35 -#: mod/tagrm.php:127 mod/unfollow.php:97 src/Content/Conversation.php:386 -#: src/Module/Contact/Revoke.php:108 src/Module/RemoteFollow.php:127 -#: src/Module/Security/TwoFactor/SignOut.php:125 -msgid "Cancel" -msgstr "Mégse" - -#: mod/editpost.php:134 src/Content/Conversation.php:343 -#: src/Module/Item/Compose.php:163 src/Object/Post.php:994 -msgid "Bold" -msgstr "Félkövér" - -#: mod/editpost.php:135 src/Content/Conversation.php:344 -#: src/Module/Item/Compose.php:164 src/Object/Post.php:995 -msgid "Italic" -msgstr "Dőlt" - -#: mod/editpost.php:136 src/Content/Conversation.php:345 -#: src/Module/Item/Compose.php:165 src/Object/Post.php:996 -msgid "Underline" -msgstr "Aláhúzott" - -#: mod/editpost.php:137 src/Content/Conversation.php:346 -#: src/Module/Item/Compose.php:166 src/Object/Post.php:997 -msgid "Quote" -msgstr "Idézet" - -#: mod/editpost.php:138 src/Content/Conversation.php:347 -#: src/Module/Item/Compose.php:167 src/Object/Post.php:998 -msgid "Code" -msgstr "Kód" - -#: mod/editpost.php:139 src/Content/Conversation.php:349 -#: src/Module/Item/Compose.php:169 src/Object/Post.php:1000 -msgid "Link" -msgstr "Hivatkozás" - -#: mod/editpost.php:140 src/Content/Conversation.php:350 -#: src/Module/Item/Compose.php:170 src/Object/Post.php:1001 -msgid "Link or Media" -msgstr "Hivatkozás vagy média" - -#: mod/editpost.php:143 src/Content/Conversation.php:393 -#: src/Content/Widget/VCard.php:113 src/Model/Profile.php:466 -#: src/Module/Admin/Logs/View.php:93 -msgid "Message" -msgstr "Üzenet" - -#: mod/editpost.php:144 src/Content/Conversation.php:394 -#: src/Module/Settings/TwoFactor/Trusted.php:138 -msgid "Browser" -msgstr "Böngésző" - -#: mod/editpost.php:145 mod/events.php:518 mod/photos.php:939 -#: mod/photos.php:1291 src/Content/Conversation.php:370 -msgid "Permissions" -msgstr "Jogosultságok" - -#: mod/editpost.php:147 src/Content/Conversation.php:396 -msgid "Open Compose page" -msgstr "Írás oldal megnyitása" - -#: mod/events.php:124 mod/events.php:126 -msgid "Event can not end before it has started." -msgstr "Az esemény nem fejeződhet be, mielőtt elkezdődött volna." - -#: mod/events.php:132 mod/events.php:134 -msgid "Event title and start time are required." -msgstr "Az esemény címe és a kezdési idő kötelező." - -#: mod/events.php:376 -msgid "Create New Event" -msgstr "Új esemény létrehozása" - -#: mod/events.php:474 src/Module/Admin/Logs/View.php:97 -msgid "Event details" -msgstr "Esemény részletei" - -#: mod/events.php:475 -msgid "Starting date and Title are required." -msgstr "A kezdési dátum és a cím kötelező." - -#: mod/events.php:476 mod/events.php:481 -msgid "Event Starts:" -msgstr "Esemény kezdete:" - -#: mod/events.php:476 mod/events.php:506 -#: src/Module/Admin/Blocklist/Server/Add.php:136 -#: src/Module/Admin/Blocklist/Server/Add.php:138 -#: src/Module/Admin/Blocklist/Server/Import.php:128 -#: src/Module/Admin/Blocklist/Server/Index.php:84 -#: src/Module/Admin/Blocklist/Server/Index.php:85 -#: src/Module/Admin/Blocklist/Server/Index.php:113 -#: src/Module/Admin/Blocklist/Server/Index.php:114 -#: src/Module/Admin/Item/Delete.php:69 src/Module/Debug/Probe.php:59 -#: src/Module/Install.php:207 src/Module/Install.php:240 -#: src/Module/Install.php:245 src/Module/Install.php:264 -#: src/Module/Install.php:275 src/Module/Install.php:280 -#: src/Module/Install.php:286 src/Module/Install.php:291 -#: src/Module/Install.php:305 src/Module/Install.php:320 -#: src/Module/Install.php:347 src/Module/Register.php:148 -#: src/Module/Security/TwoFactor/Verify.php:101 -#: src/Module/Settings/TwoFactor/Index.php:141 -#: src/Module/Settings/TwoFactor/Verify.php:154 -msgid "Required" -msgstr "Kötelező" - -#: mod/events.php:489 mod/events.php:512 -msgid "Finish date/time is not known or not relevant" -msgstr "A befejezési dátum vagy idő nem ismert vagy nem fontos" - -#: mod/events.php:491 mod/events.php:496 -msgid "Event Finishes:" -msgstr "Esemény befejezése:" - -#: mod/events.php:502 src/Module/Profile/Profile.php:172 -#: src/Module/Settings/Profile/Index.php:238 -msgid "Description:" -msgstr "Leírás:" - -#: mod/events.php:504 src/Content/Widget/VCard.php:104 src/Model/Event.php:80 -#: src/Model/Event.php:107 src/Model/Event.php:469 src/Model/Event.php:919 -#: src/Model/Profile.php:374 src/Module/Contact/Profile.php:369 -#: src/Module/Directory.php:148 src/Module/Notifications/Introductions.php:185 -#: src/Module/Profile/Profile.php:194 -msgid "Location:" -msgstr "Hely:" - -#: mod/events.php:506 mod/events.php:508 -msgid "Title:" -msgstr "Cím:" - -#: mod/events.php:509 mod/events.php:510 -msgid "Share this event" -msgstr "Az esemény megosztása" - -#: mod/events.php:515 mod/message.php:201 mod/message.php:357 -#: mod/photos.php:921 mod/photos.php:1025 mod/photos.php:1295 -#: mod/photos.php:1336 mod/photos.php:1392 mod/photos.php:1466 -#: src/Module/Admin/Item/Source.php:60 src/Module/Contact/Advanced.php:132 -#: src/Module/Contact/Profile.php:327 -#: 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/Delegation.php:148 src/Module/FriendSuggest.php:144 -#: src/Module/Install.php:252 src/Module/Install.php:294 -#: src/Module/Install.php:331 src/Module/Invite.php:178 -#: src/Module/Item/Compose.php:162 src/Module/Profile/Profile.php:247 -#: src/Module/Settings/Profile/Index.php:222 src/Object/Post.php:992 -#: view/theme/duepuntozero/config.php:69 view/theme/frio/config.php:160 -#: view/theme/quattro/config.php:71 view/theme/vier/config.php:119 -msgid "Submit" -msgstr "Elküldés" - -#: mod/events.php:516 src/Module/Profile/Profile.php:248 -msgid "Basic" -msgstr "Alap" - -#: mod/events.php:517 src/Module/Admin/Site.php:441 src/Module/Contact.php:474 -#: src/Module/Profile/Profile.php:249 -msgid "Advanced" -msgstr "Speciális" - -#: mod/events.php:534 -msgid "Failed to remove event" -msgstr "Nem sikerült eltávolítani az eseményt" - -#: mod/fbrowser.php:61 src/Content/Nav.php:194 src/Module/BaseProfile.php:64 -#: view/theme/frio/theme.php:222 -msgid "Photos" -msgstr "Fényképek" - -#: mod/fbrowser.php:120 mod/fbrowser.php:147 -#: src/Module/Settings/Profile/Photo/Index.php:129 -msgid "Upload" -msgstr "Feltöltés" - -#: mod/fbrowser.php:142 -msgid "Files" -msgstr "Fájlok" - -#: mod/follow.php:74 mod/unfollow.php:96 src/Module/RemoteFollow.php:126 -msgid "Submit Request" -msgstr "Kérés elküldése" - -#: mod/follow.php:84 -msgid "You already added this contact." -msgstr "Már hozzáadta ezt a partnert." - -#: mod/follow.php:100 -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." - -#: mod/follow.php:108 -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." - -#: mod/follow.php:113 -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." - -#: mod/follow.php:138 src/Content/Item.php:397 src/Content/Widget.php:80 -#: src/Model/Contact.php:1109 src/Model/Contact.php:1120 -#: view/theme/vier/theme.php:181 -msgid "Connect/Follow" -msgstr "Kapcsolódás vagy követés" - -#: mod/follow.php:139 src/Module/RemoteFollow.php:125 -msgid "Please answer the following:" -msgstr "Válaszoljon a következőre:" - -#: mod/follow.php:140 mod/unfollow.php:94 -msgid "Your Identity Address:" -msgstr "Az Ön személyazonosság-címe:" - -#: mod/follow.php:141 mod/unfollow.php:100 -#: src/Module/Admin/Blocklist/Contact.php:116 -#: src/Module/Contact/Profile.php:365 -#: src/Module/Notifications/Introductions.php:127 -#: src/Module/Notifications/Introductions.php:196 -msgid "Profile URL" -msgstr "Profil URL" - -#: mod/follow.php:142 src/Module/Contact/Profile.php:377 -#: src/Module/Notifications/Introductions.php:189 -#: src/Module/Profile/Profile.php:207 -msgid "Tags:" -msgstr "Címkék:" - -#: mod/follow.php:153 -#, php-format -msgid "%s knows you" -msgstr "%s ismeri Önt" - -#: mod/follow.php:154 -msgid "Add a personal note:" -msgstr "Személyes jegyzet hozzáadása:" - -#: mod/follow.php:163 mod/unfollow.php:109 src/Module/BaseProfile.php:59 -#: src/Module/Contact.php:444 -msgid "Status Messages and Posts" -msgstr "Állapotüzenetek és bejegyzések" - -#: mod/follow.php:191 -msgid "The contact could not be added." -msgstr "A partnert nem sikerült hozzáadni." - -#: mod/item.php:131 mod/item.php:135 +#: mod/item.php:129 mod/item.php:133 msgid "Unable to locate original post." msgstr "Nem lehet megtalálni az eredeti bejegyzést." -#: mod/item.php:337 mod/item.php:342 +#: mod/item.php:179 mod/item.php:184 mod/item.php:855 mod/message.php:69 +#: mod/message.php:114 mod/notes.php:44 mod/photos.php:157 mod/photos.php:674 +#: src/Model/Event.php:522 src/Module/Attach.php:55 src/Module/BaseApi.php:94 +#: src/Module/BaseNotifications.php:98 src/Module/BaseSettings.php:52 +#: src/Module/Calendar/Event/API.php:88 src/Module/Calendar/Event/Form.php:84 +#: src/Module/Calendar/Export.php:62 src/Module/Calendar/Show.php:81 +#: src/Module/Contact/Advanced.php:60 src/Module/Contact/Follow.php:86 +#: 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/Delegation.php:118 src/Module/FollowConfirm.php:38 +#: src/Module/FriendSuggest.php:57 src/Module/Group.php:40 +#: src/Module/Group.php:83 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:55 +#: src/Module/Profile/Contacts.php:55 src/Module/Profile/Photos.php:92 +#: src/Module/Profile/Schedule.php:39 src/Module/Profile/Schedule.php:56 +#: src/Module/Profile/UnkMail.php:69 src/Module/Profile/UnkMail.php:121 +#: src/Module/Profile/UnkMail.php:132 src/Module/Register.php:77 +#: src/Module/Register.php:90 src/Module/Register.php:206 +#: src/Module/Register.php:245 src/Module/Search/Directory.php:37 +#: src/Module/Settings/Account.php:50 src/Module/Settings/Account.php:407 +#: src/Module/Settings/Delegation.php:41 src/Module/Settings/Delegation.php:69 +#: src/Module/Settings/Display.php:43 src/Module/Settings/Display.php:123 +#: src/Module/Settings/Profile/Photo/Crop.php:165 +#: src/Module/Settings/Profile/Photo/Index.php:111 +#: src/Module/Settings/RemoveMe.php:117 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/Import.php:84 +#: src/Module/User/Import.php:91 +msgid "Permission denied." +msgstr "Hozzáférés megtagadva." + +#: mod/item.php:330 mod/item.php:335 msgid "Empty post discarded." msgstr "Az üres bejegyzés elvetve." -#: mod/item.php:682 +#: mod/item.php:673 msgid "Post updated." msgstr "Bejegyzés frissítve." -#: mod/item.php:692 mod/item.php:697 +#: mod/item.php:683 mod/item.php:688 msgid "Item wasn't stored." msgstr "Az elem nem lett eltárolva." -#: mod/item.php:708 +#: mod/item.php:699 msgid "Item couldn't be fetched." msgstr "Az elemet nem sikerült lekérni." -#: mod/item.php:848 src/Module/Admin/Themes/Details.php:39 +#: mod/item.php:831 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/Debug/ItemBody.php:57 src/Module/Item/Feed.php:80 msgid "Item not found." msgstr "Az elem nem található." @@ -679,134 +219,157 @@ msgstr "\n\t\t\tA bejelentkezés részletei a következők:\n\n\t\t\tOldal címe msgid "Your password has been changed at %s" msgstr "A jelszava meg lett változtatva itt: %s" -#: mod/match.php:62 -msgid "No keywords to match. Please add keywords to your profile." -msgstr "Nincs illesztendő kulcsszó. Adjon kulcsszavakat a profiljához." - -#: mod/match.php:93 src/Module/BaseSearch.php:119 -msgid "No matches" -msgstr "Nincs találat" - -#: mod/match.php:98 -msgid "Profile Match" -msgstr "Profilegyezés" - -#: mod/message.php:46 mod/message.php:126 src/Content/Nav.php:288 +#: mod/message.php:46 mod/message.php:129 src/Content/Nav.php:285 msgid "New Message" msgstr "Új üzenet" -#: mod/message.php:83 mod/wallmessage.php:70 +#: mod/message.php:83 src/Module/Profile/UnkMail.php:100 msgid "No recipient selected." msgstr "Nincs címzett kiválasztva." -#: mod/message.php:87 +#: mod/message.php:88 msgid "Unable to locate contact information." msgstr "Nem lehet megtalálni a partner információit." -#: mod/message.php:90 mod/wallmessage.php:76 +#: mod/message.php:92 src/Module/Profile/UnkMail.php:106 msgid "Message could not be sent." msgstr "Az üzenetet nem sikerült elküldeni." -#: mod/message.php:93 mod/wallmessage.php:79 +#: mod/message.php:96 src/Module/Profile/UnkMail.php:109 msgid "Message collection failure." msgstr "Üzenet-összegyűjtési hiba." -#: mod/message.php:120 src/Module/Notifications/Introductions.php:133 -#: src/Module/Notifications/Introductions.php:168 -#: src/Module/Notifications/Notification.php:84 +#: mod/message.php:123 src/Module/Notifications/Introductions.php:135 +#: src/Module/Notifications/Introductions.php:170 +#: src/Module/Notifications/Notification.php:85 msgid "Discard" msgstr "Elvetés" -#: mod/message.php:133 src/Content/Nav.php:285 view/theme/frio/theme.php:229 +#: mod/message.php:136 src/Content/Nav.php:282 view/theme/frio/theme.php:247 msgid "Messages" msgstr "Üzenetek" -#: mod/message.php:146 +#: mod/message.php:149 msgid "Conversation not found." msgstr "A beszélgetés nem található." -#: mod/message.php:151 +#: mod/message.php:154 msgid "Message was not deleted." msgstr "Az üzenet nem lett törölve." -#: mod/message.php:166 +#: mod/message.php:169 msgid "Conversation was not removed." msgstr "A beszélgetés nem lett eltávolítva." -#: mod/message.php:180 mod/message.php:286 mod/wallmessage.php:124 +#: mod/message.php:183 mod/message.php:289 src/Module/Profile/UnkMail.php:146 msgid "Please enter a link URL:" msgstr "Írjon be egy hivatkozás URL-t:" -#: mod/message.php:189 mod/wallmessage.php:129 +#: mod/message.php:192 src/Module/Profile/UnkMail.php:152 msgid "Send Private Message" msgstr "Személyes üzenet küldése" -#: mod/message.php:190 mod/message.php:347 mod/wallmessage.php:131 +#: mod/message.php:193 mod/message.php:349 msgid "To:" msgstr "Címzett:" -#: mod/message.php:191 mod/message.php:348 mod/wallmessage.php:132 +#: mod/message.php:194 mod/message.php:350 msgid "Subject:" msgstr "Tárgy:" -#: mod/message.php:195 mod/message.php:351 mod/wallmessage.php:138 -#: src/Module/Invite.php:171 +#: mod/message.php:198 mod/message.php:353 src/Module/Invite.php:171 msgid "Your message:" msgstr "Az üzenete:" -#: mod/message.php:222 +#: mod/message.php:201 mod/message.php:357 src/Content/Conversation.php:342 +#: src/Module/Post/Edit.php:128 +msgid "Upload photo" +msgstr "Fénykép feltöltése" + +#: mod/message.php:202 mod/message.php:358 src/Module/Post/Edit.php:132 +#: src/Module/Profile/UnkMail.php:154 +msgid "Insert web link" +msgstr "Webhivatkozás beszúrása" + +#: mod/message.php:203 mod/message.php:360 mod/photos.php:1290 +#: src/Content/Conversation.php:371 src/Content/Conversation.php:717 +#: src/Module/Item/Compose.php:204 src/Module/Post/Edit.php:142 +#: src/Module/Profile/UnkMail.php:155 src/Object/Post.php:537 +msgid "Please wait" +msgstr "Kis türelmet" + +#: mod/message.php:204 mod/message.php:359 mod/photos.php:707 +#: mod/photos.php:824 mod/photos.php:1096 mod/photos.php:1137 +#: mod/photos.php:1193 mod/photos.php:1267 +#: src/Module/Calendar/Event/Form.php:250 src/Module/Contact/Advanced.php:132 +#: src/Module/Contact/Profile.php:327 +#: 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/Delegation.php:147 src/Module/FriendSuggest.php:145 +#: src/Module/Install.php:252 src/Module/Install.php:294 +#: src/Module/Install.php:331 src/Module/Invite.php:178 +#: src/Module/Item/Compose.php:189 src/Module/Moderation/Item/Source.php:79 +#: src/Module/Profile/Profile.php:239 src/Module/Profile/UnkMail.php:156 +#: src/Module/Settings/Profile/Index.php:231 src/Object/Post.php:986 +#: view/theme/duepuntozero/config.php:85 view/theme/frio/config.php:171 +#: view/theme/quattro/config.php:87 view/theme/vier/config.php:135 +msgid "Submit" +msgstr "Elküldés" + +#: mod/message.php:225 msgid "No messages." msgstr "Nincsenek üzenetek." -#: mod/message.php:278 +#: mod/message.php:281 msgid "Message not available." msgstr "Az üzenet nem érhető el." -#: mod/message.php:323 +#: mod/message.php:326 msgid "Delete message" msgstr "Üzenet törlése" -#: mod/message.php:325 mod/message.php:457 +#: mod/message.php:328 mod/message.php:459 msgid "D, d M Y - g:i A" msgstr "Y. M. j., D. – H:i" -#: mod/message.php:340 mod/message.php:454 +#: mod/message.php:343 mod/message.php:456 msgid "Delete conversation" msgstr "Beszélgetés törlése" -#: mod/message.php:342 +#: mod/message.php:345 msgid "" "No secure communications available. You may be able to " "respond from the sender's profile page." msgstr "Nem érhető el biztonságos kommunikáció. Esetleg válaszolhat a küldő profiloldaláról." -#: mod/message.php:346 +#: mod/message.php:348 msgid "Send Reply" msgstr "Válasz küldése" -#: mod/message.php:428 +#: mod/message.php:430 #, php-format msgid "Unknown sender - %s" msgstr "Ismeretlen küldő – %s" -#: mod/message.php:430 +#: mod/message.php:432 #, php-format msgid "You and %s" msgstr "Ön és %s" -#: mod/message.php:432 +#: mod/message.php:434 #, php-format msgid "%s and You" msgstr "%s és Ön" -#: mod/message.php:460 +#: mod/message.php:462 #, php-format msgid "%d message" msgid_plural "%d messages" msgstr[0] "%d üzenet" msgstr[1] "%d üzenet" -#: mod/notes.php:51 src/Module/BaseProfile.php:106 +#: mod/notes.php:51 src/Module/BaseProfile.php:108 msgid "Personal Notes" msgstr "Személyes jegyzetek" @@ -814,777 +377,312 @@ msgstr "Személyes jegyzetek" msgid "Personal notes are visible only by yourself." msgstr "A személyes jegyzetek csak az Ön számára láthatók." -#: mod/ostatus_subscribe.php:38 -msgid "Subscribing to contacts" -msgstr "Feliratkozás a partnerekre" +#: mod/notes.php:56 src/Content/Text/HTML.php:882 +#: src/Module/Admin/Storage.php:142 src/Module/Filer/SaveTag.php:74 +#: src/Module/Post/Edit.php:126 +msgid "Save" +msgstr "Mentés" -#: mod/ostatus_subscribe.php:48 -msgid "No contact provided." -msgstr "Nincs partner megadva." +#: mod/photos.php:66 mod/photos.php:137 mod/photos.php:582 +#: src/Model/Event.php:514 src/Model/Profile.php:234 +#: src/Module/Calendar/Export.php:67 src/Module/Calendar/Show.php:73 +#: src/Module/DFRN/Poll.php:43 src/Module/Feed.php:65 src/Module/HCard.php:51 +#: src/Module/Profile/Common.php:40 src/Module/Profile/Common.php:51 +#: src/Module/Profile/Contacts.php:39 src/Module/Profile/Contacts.php:49 +#: src/Module/Profile/Media.php:38 src/Module/Profile/Photos.php:83 +#: src/Module/Profile/RemoteFollow.php:71 src/Module/Profile/Status.php:58 +#: src/Module/Register.php:267 +msgid "User not found." +msgstr "A felhasználó nem található." -#: mod/ostatus_subscribe.php:54 -msgid "Couldn't fetch information for contact." -msgstr "Nem sikerült lekérni a partner információit." - -#: mod/ostatus_subscribe.php:65 -msgid "Couldn't fetch friends for contact." -msgstr "Nem sikerült lekérni a partner ismerőseit." - -#: mod/ostatus_subscribe.php:71 mod/ostatus_subscribe.php:82 -msgid "Couldn't fetch following contacts." -msgstr "Nem sikerült lekérni a következő partnereket." - -#: mod/ostatus_subscribe.php:77 -msgid "Couldn't fetch remote profile." -msgstr "Nem sikerült lekérni a távoli profilt." - -#: mod/ostatus_subscribe.php:87 -msgid "Unsupported network" -msgstr "Nem támogatott hálózat" - -#: mod/ostatus_subscribe.php:103 mod/repair_ostatus.php:51 -msgid "Done" -msgstr "Kész" - -#: mod/ostatus_subscribe.php:117 -msgid "success" -msgstr "sikeres" - -#: mod/ostatus_subscribe.php:119 -msgid "failed" -msgstr "sikertelen" - -#: mod/ostatus_subscribe.php:122 -msgid "ignored" -msgstr "mellőzve" - -#: mod/ostatus_subscribe.php:127 mod/repair_ostatus.php:57 -msgid "Keep this window open until done." -msgstr "Tartsa nyitva ezt az ablakot, amíg el nem készül." - -#: mod/photos.php:108 src/Module/BaseProfile.php:67 +#: mod/photos.php:105 src/Module/BaseProfile.php:68 +#: src/Module/Profile/Photos.php:407 msgid "Photo Albums" msgstr "Fényképalbumok" -#: mod/photos.php:109 mod/photos.php:1584 +#: mod/photos.php:106 src/Module/Profile/Photos.php:408 +#: src/Module/Profile/Photos.php:423 msgid "Recent Photos" msgstr "Legutóbbi fényképek" -#: mod/photos.php:111 mod/photos.php:1073 mod/photos.php:1586 +#: mod/photos.php:108 mod/photos.php:872 src/Module/Profile/Photos.php:410 +#: src/Module/Profile/Photos.php:425 msgid "Upload New Photos" msgstr "Új fényképek feltöltése" -#: mod/photos.php:129 src/Module/BaseSettings.php:35 +#: mod/photos.php:126 src/Module/BaseSettings.php:74 +#: src/Module/Profile/Photos.php:391 msgid "everybody" msgstr "mindenki" -#: mod/photos.php:167 +#: mod/photos.php:164 msgid "Contact information unavailable" msgstr "A partner információi nem érhetők el" -#: mod/photos.php:196 +#: mod/photos.php:193 msgid "Album not found." msgstr "Az album nem található." -#: mod/photos.php:250 +#: mod/photos.php:247 msgid "Album successfully deleted" msgstr "Az album sikeresen törölve" -#: mod/photos.php:252 +#: mod/photos.php:249 msgid "Album was empty." msgstr "Az album üres volt." -#: mod/photos.php:284 +#: mod/photos.php:281 msgid "Failed to delete the photo." msgstr "Nem sikerült törölni a fényképet." -#: mod/photos.php:553 +#: mod/photos.php:549 msgid "a photo" msgstr "egy fényképen" -#: mod/photos.php:553 +#: mod/photos.php:549 #, php-format msgid "%1$s was tagged in %2$s by %3$s" msgstr "%1$s meg lett jelölve %2$s %3$s által" -#: mod/photos.php:636 mod/photos.php:639 mod/photos.php:666 -#: mod/wall_upload.php:201 src/Module/Settings/Profile/Photo/Index.php:60 -#, php-format -msgid "Image exceeds size limit of %s" -msgstr "A kép meghaladja a beállított %s méretkorlátot" +#: mod/photos.php:586 src/Module/Conversation/Community.php:187 +#: src/Module/Directory.php:48 src/Module/Profile/Photos.php:315 +#: src/Module/Search/Index.php:64 +msgid "Public access denied." +msgstr "Nyilvános hozzáférés megtagadva." -#: mod/photos.php:642 -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" - -#: mod/photos.php:645 -msgid "Image file is missing" -msgstr "A képfájl hiányzik" - -#: mod/photos.php:650 -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" - -#: mod/photos.php:674 -msgid "Image file is empty." -msgstr "A képfájl üres." - -#: mod/photos.php:689 mod/wall_upload.php:163 -#: src/Module/Settings/Profile/Photo/Index.php:69 -msgid "Unable to process image." -msgstr "Nem lehet feldolgozni a képet." - -#: mod/photos.php:715 mod/wall_upload.php:226 -#: src/Module/Settings/Profile/Photo/Index.php:96 -msgid "Image upload failed." -msgstr "A kép feltöltése sikertelen." - -#: mod/photos.php:807 +#: mod/photos.php:591 msgid "No photos selected" msgstr "Nincsenek fényképek kijelölve" -#: mod/photos.php:876 -msgid "Access to this item is restricted." -msgstr "Az elemhez való hozzáférés korlátozott." +#: mod/photos.php:723 +#, php-format +msgid "The maximum accepted image size is %s" +msgstr "A legnagyobb elfogadott képméret %s" -#: mod/photos.php:931 +#: mod/photos.php:730 msgid "Upload Photos" msgstr "Fényképek feltöltése" -#: mod/photos.php:935 mod/photos.php:1021 +#: mod/photos.php:734 mod/photos.php:820 msgid "New album name: " msgstr "Új album neve: " -#: mod/photos.php:936 +#: mod/photos.php:735 msgid "or select existing album:" msgstr "vagy meglévő album kiválasztása:" -#: mod/photos.php:937 +#: mod/photos.php:736 msgid "Do not show a status post for this upload" msgstr "Ne jelenítsen meg állapotbejegyzést ehhez a feltöltéshez" -#: mod/photos.php:1002 +#: mod/photos.php:738 mod/photos.php:1092 src/Content/Conversation.php:373 +#: src/Module/Calendar/Event/Form.php:253 src/Module/Post/Edit.php:179 +msgid "Permissions" +msgstr "Jogosultságok" + +#: mod/photos.php:801 msgid "Do you really want to delete this photo album and all its photos?" msgstr "Valóban törölni szeretné ezt a fényképalbumot és az összes fényképét?" -#: mod/photos.php:1003 mod/photos.php:1026 +#: mod/photos.php:802 mod/photos.php:825 msgid "Delete Album" msgstr "Album törlése" -#: mod/photos.php:1030 +#: mod/photos.php:803 mod/photos.php:904 src/Content/Conversation.php:389 +#: 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:164 +#: src/Module/Post/Tag/Remove.php:109 src/Module/Profile/RemoteFollow.php:134 +#: src/Module/Security/TwoFactor/SignOut.php:125 +msgid "Cancel" +msgstr "Mégse" + +#: mod/photos.php:829 msgid "Edit Album" msgstr "Album szerkesztése" -#: mod/photos.php:1031 +#: mod/photos.php:830 msgid "Drop Album" msgstr "Album eldobása" -#: mod/photos.php:1035 +#: mod/photos.php:834 msgid "Show Newest First" msgstr "Legújabb megjelenítése először" -#: mod/photos.php:1037 +#: mod/photos.php:836 msgid "Show Oldest First" msgstr "Legrégebbi megjelenítése először" -#: mod/photos.php:1058 mod/photos.php:1569 +#: mod/photos.php:857 src/Module/Profile/Photos.php:378 msgid "View Photo" msgstr "Fénykép megtekintése" -#: mod/photos.php:1091 +#: mod/photos.php:890 msgid "Permission denied. Access to this item may be restricted." msgstr "Hozzáférés megtagadva. Az elemhez való hozzáférés korlátozva lehet." -#: mod/photos.php:1093 +#: mod/photos.php:892 msgid "Photo not available" msgstr "A fénykép nem érhető el" -#: mod/photos.php:1103 +#: mod/photos.php:902 msgid "Do you really want to delete this photo?" msgstr "Valóban törölni szeretné ezt a fényképet?" -#: mod/photos.php:1104 mod/photos.php:1296 +#: mod/photos.php:903 mod/photos.php:1097 msgid "Delete Photo" msgstr "Fénykép törlése" -#: mod/photos.php:1196 +#: mod/photos.php:995 msgid "View photo" msgstr "Fénykép megtekintése" -#: mod/photos.php:1198 +#: mod/photos.php:997 msgid "Edit photo" msgstr "Fénykép szerkesztése" -#: mod/photos.php:1199 +#: mod/photos.php:998 msgid "Delete photo" msgstr "Fénykép törlése" -#: mod/photos.php:1200 +#: mod/photos.php:999 msgid "Use as profile photo" msgstr "Használat profilfényképként" -#: mod/photos.php:1207 +#: mod/photos.php:1006 msgid "Private Photo" msgstr "Személyes fénykép" -#: mod/photos.php:1213 +#: mod/photos.php:1012 msgid "View Full Size" msgstr "Teljes méret megtekintése" -#: mod/photos.php:1264 +#: mod/photos.php:1065 msgid "Tags: " msgstr "Címkék: " -#: mod/photos.php:1267 +#: mod/photos.php:1068 msgid "[Select tags to remove]" msgstr "[Eltávolítandó címkék kiválasztása]" -#: mod/photos.php:1282 +#: mod/photos.php:1083 msgid "New album name" msgstr "Új album neve" -#: mod/photos.php:1283 +#: mod/photos.php:1084 msgid "Caption" msgstr "Felirat" -#: mod/photos.php:1284 +#: mod/photos.php:1085 msgid "Add a Tag" msgstr "Címke hozzáadása" -#: mod/photos.php:1284 +#: mod/photos.php:1085 msgid "" "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" msgstr "Példa: @bob, @Barbara_Jensen, @jim@example.com, #Budapest, #kemping" -#: mod/photos.php:1285 +#: mod/photos.php:1086 msgid "Do not rotate" msgstr "Ne forgassa el" -#: mod/photos.php:1286 +#: mod/photos.php:1087 msgid "Rotate CW (right)" msgstr "Forgatás jobbra" -#: mod/photos.php:1287 +#: mod/photos.php:1088 msgid "Rotate CCW (left)" msgstr "Forgatás balra" -#: mod/photos.php:1333 mod/photos.php:1389 mod/photos.php:1463 -#: src/Module/Contact.php:544 src/Module/Item/Compose.php:160 -#: src/Object/Post.php:989 +#: mod/photos.php:1134 mod/photos.php:1190 mod/photos.php:1264 +#: src/Module/Contact.php:547 src/Module/Item/Compose.php:188 +#: src/Object/Post.php:983 msgid "This is you" msgstr "Ez Ön" -#: mod/photos.php:1335 mod/photos.php:1391 mod/photos.php:1465 -#: src/Object/Post.php:532 src/Object/Post.php:991 +#: mod/photos.php:1136 mod/photos.php:1192 mod/photos.php:1266 +#: src/Object/Post.php:531 src/Object/Post.php:985 msgid "Comment" msgstr "Hozzászólás" -#: mod/photos.php:1424 src/Content/Conversation.php:629 -#: src/Object/Post.php:256 +#: mod/photos.php:1138 mod/photos.php:1194 mod/photos.php:1268 +#: src/Content/Conversation.php:386 src/Module/Calendar/Event/Form.php:248 +#: src/Module/Item/Compose.php:199 src/Module/Post/Edit.php:162 +#: src/Object/Post.php:997 +msgid "Preview" +msgstr "Előnézet" + +#: mod/photos.php:1139 src/Content/Conversation.php:341 +#: src/Module/Post/Edit.php:127 src/Object/Post.php:987 +msgid "Loading..." +msgstr "Betöltés…" + +#: mod/photos.php:1225 src/Content/Conversation.php:633 +#: src/Object/Post.php:255 msgid "Select" msgstr "Kiválasztás" -#: mod/photos.php:1425 mod/settings.php:350 src/Content/Conversation.php:630 -#: src/Module/Admin/Users/Active.php:139 -#: src/Module/Admin/Users/Blocked.php:140 src/Module/Admin/Users/Index.php:153 +#: mod/photos.php:1226 src/Content/Conversation.php:634 +#: 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:242 msgid "Delete" msgstr "Törlés" -#: mod/photos.php:1486 src/Object/Post.php:379 +#: mod/photos.php:1287 src/Object/Post.php:378 msgid "Like" msgstr "Tetszik" -#: mod/photos.php:1487 src/Object/Post.php:379 +#: mod/photos.php:1288 src/Object/Post.php:378 msgid "I like this (toggle)" msgstr "Ezt kedvelem (átváltás)" -#: mod/photos.php:1488 src/Object/Post.php:380 +#: mod/photos.php:1289 src/Object/Post.php:379 msgid "Dislike" msgstr "Nem tetszik" -#: mod/photos.php:1490 src/Object/Post.php:380 +#: mod/photos.php:1291 src/Object/Post.php:379 msgid "I don't like this (toggle)" msgstr "Ezt nem kedvelem (átváltás)" -#: mod/photos.php:1512 +#: mod/photos.php:1313 msgid "Map" msgstr "Térkép" -#: mod/photos.php:1575 -msgid "View Album" -msgstr "Album megtekintése" - -#: mod/redir.php:51 mod/redir.php:104 -msgid "Bad Request." -msgstr "Hibás kérés." - -#: mod/redir.php:57 mod/redir.php:131 src/Module/Contact/Advanced.php:70 -#: src/Module/Contact/Advanced.php:109 src/Module/Contact/Contacts.php:55 -#: src/Module/Contact/Conversations.php:78 -#: src/Module/Contact/Conversations.php:83 -#: src/Module/Contact/Conversations.php:88 src/Module/Contact/Media.php:43 -#: src/Module/Contact/Posts.php:72 src/Module/Contact/Posts.php:77 -#: src/Module/Contact/Posts.php:82 src/Module/Contact/Profile.php:141 -#: src/Module/Contact/Profile.php:146 src/Module/Contact/Profile.php:151 -#: src/Module/FriendSuggest.php:70 src/Module/FriendSuggest.php:108 -#: src/Module/Group.php:99 src/Module/Group.php:108 -msgid "Contact not found." -msgstr "A partner nem található." - -#: mod/removeme.php:65 src/Navigation/Notifications/Repository/Notify.php:464 -msgid "[Friendica System Notify]" -msgstr "[Friendica rendszerértesítés]" - -#: mod/removeme.php:65 -msgid "User deleted their account" -msgstr "A felhasználó törölte a fiókját" - -#: mod/removeme.php:66 -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." - -#: mod/removeme.php:67 -#, php-format -msgid "The user id is %d" -msgstr "A felhasználó-azonosító %d" - -#: mod/removeme.php:101 mod/removeme.php:104 -msgid "Remove My Account" -msgstr "Saját fiók eltávolítása" - -#: mod/removeme.php:102 -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ó." - -#: mod/removeme.php:103 -msgid "Please enter your password for verification:" -msgstr "Adja meg a jelszavát az ellenőrzéshez:" - -#: mod/repair_ostatus.php:36 -msgid "Resubscribing to OStatus contacts" -msgstr "Újrafeliratkozás az OStatus partnerekre" - -#: mod/repair_ostatus.php:46 src/Module/Debug/ActivityPubConversion.php:129 -#: src/Module/Debug/Babel.php:293 src/Module/Security/TwoFactor/Verify.php:98 -msgid "Error" -msgid_plural "Errors" -msgstr[0] "Hiba" -msgstr[1] "Hibák" - -#: mod/settings.php:122 -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." - -#: mod/settings.php:175 -msgid "Connected Apps" -msgstr "Kapcsolt alkalmazások" - -#: mod/settings.php:176 src/Module/Admin/Blocklist/Contact.php:106 -#: src/Module/Admin/Users/Active.php:129 -#: src/Module/Admin/Users/Blocked.php:130 src/Module/Admin/Users/Create.php:71 -#: src/Module/Admin/Users/Deleted.php:88 src/Module/Admin/Users/Index.php:142 -#: src/Module/Admin/Users/Index.php:162 src/Module/Admin/Users/Pending.php:104 -#: src/Module/Contact/Advanced.php:134 -msgid "Name" -msgstr "Név" - -#: mod/settings.php:177 src/Content/Nav.php:214 -msgid "Home Page" -msgstr "Kezdőlap" - -#: mod/settings.php:178 src/Module/Admin/Queue.php:78 -msgid "Created" -msgstr "Létrehozva" - -#: mod/settings.php:179 -msgid "Remove authorization" -msgstr "Felhatalmazás eltávolítása" - -#: mod/settings.php:205 mod/settings.php:237 mod/settings.php:268 -#: mod/settings.php:352 src/Module/Admin/Addons/Index.php:69 -#: src/Module/Admin/Features.php:87 src/Module/Admin/Logs/Settings.php:81 -#: src/Module/Admin/Site.php:436 src/Module/Admin/Themes/Index.php:113 -#: src/Module/Admin/Tos.php:83 src/Module/Settings/Account.php:562 -#: src/Module/Settings/Delegation.php:170 src/Module/Settings/Display.php:193 -msgid "Save Settings" -msgstr "Beállítások mentése" - -#: mod/settings.php:213 -msgid "Addon Settings" -msgstr "Bővítménybeállítások" - -#: mod/settings.php:214 -msgid "No Addon settings configured" -msgstr "Nincsenek bővítménybeállítások meghatározva" - -#: mod/settings.php:235 -msgid "Additional Features" -msgstr "További funkciók" - -#: mod/settings.php:273 -msgid "Diaspora (Socialhome, Hubzilla)" -msgstr "Diaspora (Socialhome, Hubzilla)" - -#: mod/settings.php:273 mod/settings.php:274 -msgid "enabled" -msgstr "engedélyezve" - -#: mod/settings.php:273 mod/settings.php:274 -msgid "disabled" -msgstr "letiltva" - -#: mod/settings.php:273 mod/settings.php:274 -#, php-format -msgid "Built-in support for %s connectivity is %s" -msgstr "A(z) %s összekapcsolhatóságának beépített támogatása %s" - -#: mod/settings.php:274 -msgid "OStatus (GNU Social)" -msgstr "OStatus (GNU Social)" - -#: mod/settings.php:300 -msgid "Email access is disabled on this site." -msgstr "Az e-mailes hozzáférés le van tiltva ezen az oldalon." - -#: mod/settings.php:305 mod/settings.php:350 -msgid "None" -msgstr "Nincs" - -#: mod/settings.php:311 src/Module/BaseSettings.php:78 -msgid "Social Networks" -msgstr "Közösségi hálózatok" - -#: mod/settings.php:316 -msgid "General Social Media Settings" -msgstr "Általános közösségimédia-beállítások" - -#: mod/settings.php:319 -msgid "Followed content scope" -msgstr "Követett tartalom hatóköre" - -#: mod/settings.php:321 -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." - -#: mod/settings.php:323 -msgid "Only conversations my follows started" -msgstr "Csak a követőim által indított beszélgetések" - -#: mod/settings.php:324 -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)" - -#: mod/settings.php:325 -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" - -#: mod/settings.php:328 -msgid "Enable Content Warning" -msgstr "Tartalomfigyelmeztetés engedélyezése" - -#: mod/settings.php:328 -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." -msgstr "Például a Mastodon vagy a Pleroma hálózatán lévő felhasználók képesek egy olyan tartalomfigyelmeztetési mezőt beállítani, amely alapértelmezetten összecsukja a bejegyzéseiket. Ez engedélyezi az automatikus összecsukást, ahelyett hogy beállítaná a tartalomfigyelmeztetést a bejegyzés címeként. Nincs hatással semmilyen más tartalomszűrésre, amelyet végül beállított." - -#: mod/settings.php:329 -msgid "Enable intelligent shortening" -msgstr "Intelligens rövidítés engedélyezése" - -#: mod/settings.php:329 -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." - -#: mod/settings.php:330 -msgid "Enable simple text shortening" -msgstr "Egyszerű szövegrövidítés engedélyezése" - -#: mod/settings.php:330 -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." - -#: mod/settings.php:331 -msgid "Attach the link title" -msgstr "A hivatkozás címének csatolása" - -#: mod/settings.php:331 -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." - -#: mod/settings.php:332 -msgid "Your legacy ActivityPub/GNU Social account" -msgstr "Az örökölt ActivityPub/GNU Social fiókja" - -#: mod/settings.php:332 -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." - -#: mod/settings.php:335 -msgid "Repair OStatus subscriptions" -msgstr "OStatus feliratkozások javítása" - -#: mod/settings.php:339 -msgid "Email/Mailbox Setup" -msgstr "E-mail vagy postafiók-beállítások" - -#: mod/settings.php:340 -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." - -#: mod/settings.php:341 -msgid "Last successful email check:" -msgstr "Legutóbbi sikeres e-mail-ellenőrzés:" - -#: mod/settings.php:343 -msgid "IMAP server name:" -msgstr "IMAP-kiszolgáló neve:" - -#: mod/settings.php:344 -msgid "IMAP port:" -msgstr "IMAP port:" - -#: mod/settings.php:345 -msgid "Security:" -msgstr "Biztonság:" - -#: mod/settings.php:346 -msgid "Email login name:" -msgstr "E-mail bejelentkezési neve:" - -#: mod/settings.php:347 -msgid "Email password:" -msgstr "E-mail jelszava:" - -#: mod/settings.php:348 -msgid "Reply-to address:" -msgstr "Válaszcím:" - -#: mod/settings.php:349 -msgid "Send public posts to all email contacts:" -msgstr "Nyilvános bejegyzések küldése az összes e-mail partnernek:" - -#: mod/settings.php:350 -msgid "Action after import:" -msgstr "Importálás utáni művelet:" - -#: mod/settings.php:350 src/Content/Nav.php:282 -msgid "Mark as seen" -msgstr "Megjelölés olvasottként" - -#: mod/settings.php:350 -msgid "Move to folder" -msgstr "Áthelyezés mappába" - -#: mod/settings.php:351 -msgid "Move to folder:" -msgstr "Áthelyezés mappába:" - -#: mod/suggest.php:44 -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." - -#: mod/suggest.php:55 src/Content/Widget.php:83 view/theme/vier/theme.php:184 -msgid "Friend Suggestions" -msgstr "Ismerős javaslatok" - -#: mod/tagger.php:78 src/Content/Item.php:297 src/Model/Item.php:2765 -msgid "photo" -msgstr "fénykép" - -#: mod/tagger.php:78 src/Content/Item.php:291 src/Content/Item.php:301 -msgid "status" -msgstr "állapot" - -#: mod/tagger.php:111 src/Content/Item.php:311 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s megjelölte %2$s %3$s vele: %4$s" - -#: mod/tagrm.php:113 -msgid "Remove Item Tag" -msgstr "Elem címkéjének eltávolítása" - -#: mod/tagrm.php:115 -msgid "Select a tag to remove: " -msgstr "Eltávolítandó címke kiválasztása: " - -#: mod/tagrm.php:126 src/Module/Settings/Delegation.php:179 -#: src/Module/Settings/TwoFactor/Trusted.php:142 -msgid "Remove" -msgstr "Eltávolítás" - -#: mod/uimport.php:46 -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." - -#: mod/uimport.php:55 src/Module/Register.php:99 -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." - -#: mod/uimport.php:62 src/Module/Register.php:173 -msgid "Import" -msgstr "Importálás" - -#: mod/uimport.php:64 -msgid "Move account" -msgstr "Fiók áthelyezése" - -#: mod/uimport.php:65 -msgid "You can import an account from another Friendica server." -msgstr "Importálhat egy fiókot egy másik Friendica kiszolgálóról." - -#: mod/uimport.php:66 -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." - -#: mod/uimport.php:67 -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." - -#: mod/uimport.php:68 -msgid "Account file" -msgstr "Fiókfájl" - -#: mod/uimport.php:68 -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." - -#: mod/unfollow.php:65 mod/unfollow.php:134 -msgid "You aren't following this contact." -msgstr "Ön nem követi ezt a partnert." - -#: mod/unfollow.php:71 -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." - -#: mod/unfollow.php:92 -msgid "Disconnect/Unfollow" -msgstr "Leválasztás vagy követés megszüntetése" - -#: mod/unfollow.php:143 -msgid "Contact was successfully unfollowed" -msgstr "A partner követése sikeresen meg lett szüntetve" - -#: mod/unfollow.php:146 -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" - -#: mod/wall_attach.php:40 mod/wall_attach.php:46 mod/wall_attach.php:75 -#: mod/wall_upload.php:54 mod/wall_upload.php:63 mod/wall_upload.php:97 -#: mod/wall_upload.php:148 mod/wall_upload.php:150 -msgid "Invalid request." -msgstr "Érvénytelen kérés." - -#: mod/wall_attach.php:93 -msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" -msgstr "Elnézést, talán a feltöltése nagyobb annál, amit a PHP beállítása megenged" - -#: mod/wall_attach.php:93 -msgid "Or - did you try to upload an empty file?" -msgstr "Vagy – egy üres fájlt próbált meg feltölteni?" - -#: mod/wall_attach.php:104 -#, php-format -msgid "File exceeds size limit of %s" -msgstr "A fájl meghaladja a beállított %s méretkorlátot" - -#: mod/wall_attach.php:119 -msgid "File upload failed." -msgstr "A fájl feltöltése sikertelen." - -#: mod/wall_upload.php:218 src/Model/Photo.php:1087 -msgid "Wall Photos" -msgstr "Falfényképek" - -#: mod/wallmessage.php:62 mod/wallmessage.php:116 -#, php-format -msgid "Number of daily wall messages for %s exceeded. Message failed." -msgstr "A(z) %s napi falüzeneteinek száma túllépve. Az üzenet sikertelen." - -#: mod/wallmessage.php:73 -msgid "Unable to check your home location." -msgstr "Nem lehet ellenőrizni az otthona helyét." - -#: mod/wallmessage.php:97 mod/wallmessage.php:104 -msgid "No recipient." -msgstr "Nincs címzett." - -#: mod/wallmessage.php:130 -#, php-format -msgid "" -"If you wish for %s to respond, please check that the privacy settings on " -"your site allow private mail from unknown senders." -msgstr "Ha azt szeretné, hogy %s válaszoljon, ellenőrizze, hogy az Ön oldalán lévő adatvédelmi beállítások lehetővé teszik-e az ismeretlen küldőktől származó személyes leveleket." - -#: src/App.php:473 +#: src/App.php:492 msgid "No system theme config value set." msgstr "Nincs rendszertéma beállítási érték megadva." -#: src/App.php:594 +#: src/App.php:613 msgid "Apologies but the website is unavailable at the moment." msgstr "Elnézést, de a weboldal jelenleg nem érhető el." -#: src/App/Page.php:276 +#: src/App/Page.php:246 msgid "Delete this item?" msgstr "Törli ezt az elemet?" -#: src/App/Page.php:277 +#: src/App/Page.php:247 msgid "" "Block this author? They won't be able to follow you nor see your public " "posts, and you won't be able to see their posts and their notifications." msgstr "Tiltja ezt a szerzőt? Nem lesz képes követni Önt, és a nyilvános bejegyzéseit sem látja, valamint Ön sem lesz képes megtekinteni az ő bejegyzéseit és értesítéseit." -#: src/App/Page.php:347 +#: src/App/Page.php:317 msgid "toggle mobile" msgstr "váltás mobilra" -#: src/App/Router.php:282 +#: src/App/Router.php:309 #, php-format msgid "Method not allowed for this module. Allowed method(s): %s" msgstr "A módszer nem engedélyezett ennél a modulnál. Az engedélyezett módszerek: %s" -#: src/App/Router.php:284 src/Module/HTTPException/PageNotFound.php:49 +#: src/App/Router.php:311 src/Module/HTTPException/PageNotFound.php:49 msgid "Page not found." msgstr "Az oldal nem található." -#: src/App/Router.php:312 +#: src/App/Router.php:323 msgid "You must be logged in to use addons. " msgstr "Bejelentkezve kell lennie a bővítmények használatához." @@ -1599,18 +697,18 @@ msgid "All contacts" msgstr "Összes partner" #: src/BaseModule.php:424 src/Content/Widget.php:235 src/Core/ACL.php:194 -#: src/Module/Contact.php:367 src/Module/PermissionTooltip.php:122 +#: src/Module/Contact.php:370 src/Module/PermissionTooltip.php:122 #: src/Module/PermissionTooltip.php:144 msgid "Followers" msgstr "Követők" #: src/BaseModule.php:429 src/Content/Widget.php:236 -#: src/Module/Contact.php:368 +#: src/Module/Contact.php:371 msgid "Following" msgstr "Követés" #: src/BaseModule.php:434 src/Content/Widget.php:237 -#: src/Module/Contact.php:369 +#: src/Module/Contact.php:372 msgid "Mutual friends" msgstr "Kölcsönösen ismerősök" @@ -1640,73 +738,73 @@ msgid "The contact entries have been archived" msgstr "A partnerbejegyzések archiválva lettek" #: src/Console/GlobalCommunityBlock.php:96 -#: src/Module/Admin/Blocklist/Contact.php:49 +#: src/Module/Moderation/Blocklist/Contact.php:65 #, php-format msgid "Could not find any contact entry for this URL (%s)" msgstr "Nem sikerült találni egyetlen partnerbejegyzést sem erről az URL-ről (%s)" #: src/Console/GlobalCommunityBlock.php:101 -#: src/Module/Admin/Blocklist/Contact.php:66 +#: src/Module/Moderation/Blocklist/Contact.php:82 msgid "The contact has been blocked from the node" msgstr "A partner tiltva lett a csomópontról" -#: src/Console/MergeContacts.php:74 +#: src/Console/MergeContacts.php:75 #, php-format msgid "%d %s, %d duplicates." msgstr "%d %s, %d kettőzés." -#: src/Console/MergeContacts.php:77 +#: src/Console/MergeContacts.php:78 #, php-format msgid "uri-id is empty for contact %s." msgstr "Az URI-azonosító üres %s partnernél." -#: src/Console/MergeContacts.php:90 +#: src/Console/MergeContacts.php:91 #, php-format msgid "No valid first contact found for uri-id %d." msgstr "Nem található érvényes első partner a(z) %d. URI-azonosítóhoz." -#: src/Console/MergeContacts.php:101 +#: src/Console/MergeContacts.php:102 #, php-format msgid "Wrong duplicate found for uri-id %d in %d (url: %s != %s)." msgstr "Hibás kettőzés található a(z) %d. URI-azonosítónál ebben: %d (URL: %s != %s)." -#: src/Console/MergeContacts.php:105 +#: src/Console/MergeContacts.php:106 #, php-format msgid "Wrong duplicate found for uri-id %d in %d (nurl: %s != %s)." msgstr "Hibás kettőzés található a(z) %d. URI-azonosítónál ebben: %d (NURL: %s != %s)." -#: src/Console/MergeContacts.php:141 +#: src/Console/MergeContacts.php:142 #, php-format msgid "Deletion of id %d failed" msgstr "A(z) %d. azonosító törlése sikertelen" -#: src/Console/MergeContacts.php:143 +#: src/Console/MergeContacts.php:144 #, php-format msgid "Deletion of id %d was successful" msgstr "A(z) %d. azonosító törlése sikeres volt" -#: src/Console/MergeContacts.php:149 +#: src/Console/MergeContacts.php:150 #, php-format msgid "Updating \"%s\" in \"%s\" from %d to %d" msgstr "„%s” frissítése ebben: „%s”, %d. értéktől %d. értékig" -#: src/Console/MergeContacts.php:151 +#: src/Console/MergeContacts.php:152 msgid " - found" msgstr " – megtalálva" -#: src/Console/MergeContacts.php:158 +#: src/Console/MergeContacts.php:159 msgid " - failed" msgstr " – sikertelen" -#: src/Console/MergeContacts.php:160 +#: src/Console/MergeContacts.php:161 msgid " - success" msgstr " – sikeres" -#: src/Console/MergeContacts.php:164 +#: src/Console/MergeContacts.php:165 msgid " - deleted" msgstr " – törölve" -#: src/Console/MergeContacts.php:167 +#: src/Console/MergeContacts.php:168 msgid " - done" msgstr " – kész" @@ -1764,17 +862,26 @@ msgstr "Az összes függőben lévő bejegyzésfrissítés kész." msgid "Enter user nickname: " msgstr "Felhasználó becenevének megadása: " +#: src/Console/User.php:182 src/Model/User.php:662 +#: 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 +msgid "User not found" +msgstr "A felhasználó nem található" + #: src/Console/User.php:202 msgid "Enter new password: " msgstr "Új jelszó megadása: " -#: src/Console/User.php:210 src/Module/Security/PasswordTooLong.php:65 -#: src/Module/Settings/Account.php:74 +#: src/Console/User.php:210 src/Module/Security/PasswordTooLong.php:69 +#: src/Module/Settings/Account.php:75 msgid "Password update failed. Please try again." msgstr "A jelszó frissítése sikertelen. Próbálja újra." -#: src/Console/User.php:213 src/Module/Security/PasswordTooLong.php:68 -#: src/Module/Settings/Account.php:77 +#: src/Console/User.php:213 src/Module/Security/PasswordTooLong.php:72 +#: src/Module/Settings/Account.php:78 msgid "Password changed." msgstr "A jelszó megváltoztatva." @@ -1863,10 +970,14 @@ msgstr "OStatus" msgid "RSS/Atom" msgstr "RSS/Atom" -#: src/Content/ContactSelector.php:129 src/Module/Admin/Users/Active.php:129 -#: src/Module/Admin/Users/Blocked.php:130 src/Module/Admin/Users/Create.php:73 -#: src/Module/Admin/Users/Deleted.php:88 src/Module/Admin/Users/Index.php:142 -#: src/Module/Admin/Users/Index.php:162 src/Module/Admin/Users/Pending.php:104 +#: 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:73 +#: 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 msgid "Email" msgstr "E-mail" @@ -1927,258 +1038,355 @@ msgstr "pnut" msgid "%s (via %s)" msgstr "%s (ezen keresztül: %s)" -#: src/Content/Conversation.php:207 +#: src/Content/Conversation.php:210 #, php-format msgid "%s likes this." msgstr "%s kedveli ezt." -#: src/Content/Conversation.php:210 +#: src/Content/Conversation.php:213 #, php-format msgid "%s doesn't like this." msgstr "%s nem kedveli ezt." -#: src/Content/Conversation.php:213 +#: src/Content/Conversation.php:216 #, php-format msgid "%s attends." msgstr "%s részt vesz." -#: src/Content/Conversation.php:216 +#: src/Content/Conversation.php:219 #, php-format msgid "%s doesn't attend." msgstr "%s nem vesz részt." -#: src/Content/Conversation.php:219 +#: src/Content/Conversation.php:222 #, php-format msgid "%s attends maybe." msgstr "%s talán részt vesz." -#: src/Content/Conversation.php:222 src/Content/Conversation.php:260 -#: src/Content/Conversation.php:873 +#: src/Content/Conversation.php:225 src/Content/Conversation.php:263 +#: src/Content/Conversation.php:877 #, php-format msgid "%s reshared this." msgstr "%s újra megosztotta ezt." -#: src/Content/Conversation.php:228 +#: src/Content/Conversation.php:231 msgid "and" msgstr "és" -#: src/Content/Conversation.php:231 +#: src/Content/Conversation.php:234 #, php-format msgid "and %d other people" msgstr "és %d más személy" -#: src/Content/Conversation.php:239 +#: src/Content/Conversation.php:242 #, php-format msgid "%2$d people like this" msgstr "%2$d személy kedveli ezt" -#: src/Content/Conversation.php:240 +#: src/Content/Conversation.php:243 #, php-format msgid "%s like this." msgstr "%s kedveli ezt." -#: src/Content/Conversation.php:243 +#: src/Content/Conversation.php:246 #, php-format msgid "%2$d people don't like this" msgstr "%2$d személy nem kedveli ezt" -#: src/Content/Conversation.php:244 +#: src/Content/Conversation.php:247 #, php-format msgid "%s don't like this." msgstr "%s nem kedveli ezt." -#: src/Content/Conversation.php:247 +#: src/Content/Conversation.php:250 #, php-format msgid "%2$d people attend" msgstr "%2$d személy részt vesz" -#: src/Content/Conversation.php:248 +#: src/Content/Conversation.php:251 #, php-format msgid "%s attend." msgstr "%s részt vesz." -#: src/Content/Conversation.php:251 +#: src/Content/Conversation.php:254 #, php-format msgid "%2$d people don't attend" msgstr "%2$d személy nem vesz részt" -#: src/Content/Conversation.php:252 +#: src/Content/Conversation.php:255 #, php-format msgid "%s don't attend." msgstr "%s nem vesz részt." -#: src/Content/Conversation.php:255 +#: src/Content/Conversation.php:258 #, php-format msgid "%2$d people attend maybe" msgstr "%2$d személy talán részt vesz" -#: src/Content/Conversation.php:256 +#: src/Content/Conversation.php:259 #, php-format msgid "%s attend maybe." msgstr "%s talán részt vesz." -#: src/Content/Conversation.php:259 +#: src/Content/Conversation.php:262 #, php-format msgid "%2$d people reshared this" msgstr "%2$d személy újra megosztotta ezt" -#: src/Content/Conversation.php:307 +#: src/Content/Conversation.php:310 msgid "Visible to everybody" msgstr "Látható mindenkinek" -#: src/Content/Conversation.php:308 src/Module/Item/Compose.php:171 -#: src/Object/Post.php:1002 +#: src/Content/Conversation.php:311 src/Module/Item/Compose.php:198 +#: src/Object/Post.php:996 msgid "Please enter a image/video/audio/webpage URL:" msgstr "Írjon be egy kép, videó, hang vagy weboldal URL-t:" -#: src/Content/Conversation.php:309 +#: src/Content/Conversation.php:312 msgid "Tag term:" msgstr "Címkézési kifejezés:" -#: src/Content/Conversation.php:310 src/Module/Filer/SaveTag.php:72 +#: src/Content/Conversation.php:313 src/Module/Filer/SaveTag.php:73 msgid "Save to Folder:" msgstr "Mentés mappába:" -#: src/Content/Conversation.php:311 +#: src/Content/Conversation.php:314 msgid "Where are you right now?" msgstr "Hol van most éppen?" -#: src/Content/Conversation.php:312 +#: src/Content/Conversation.php:315 msgid "Delete item(s)?" msgstr "Törli az elemeket?" -#: src/Content/Conversation.php:324 src/Module/Item/Compose.php:143 +#: src/Content/Conversation.php:327 src/Module/Item/Compose.php:175 msgid "Created at" msgstr "Létrehozva" -#: src/Content/Conversation.php:334 +#: src/Content/Conversation.php:337 msgid "New Post" msgstr "Új bejegyzés" -#: src/Content/Conversation.php:337 +#: src/Content/Conversation.php:340 msgid "Share" msgstr "Megosztás" -#: src/Content/Conversation.php:348 src/Module/Item/Compose.php:168 -#: src/Object/Post.php:999 +#: src/Content/Conversation.php:343 src/Module/Post/Edit.php:129 +msgid "upload photo" +msgstr "fénykép feltöltése" + +#: src/Content/Conversation.php:344 src/Module/Post/Edit.php:130 +msgid "Attach file" +msgstr "Fájl csatolása" + +#: src/Content/Conversation.php:345 src/Module/Post/Edit.php:131 +msgid "attach file" +msgstr "fájl csatolása" + +#: src/Content/Conversation.php:346 src/Module/Item/Compose.php:190 +#: src/Module/Post/Edit.php:168 src/Object/Post.php:988 +msgid "Bold" +msgstr "Félkövér" + +#: src/Content/Conversation.php:347 src/Module/Item/Compose.php:191 +#: src/Module/Post/Edit.php:169 src/Object/Post.php:989 +msgid "Italic" +msgstr "Dőlt" + +#: src/Content/Conversation.php:348 src/Module/Item/Compose.php:192 +#: src/Module/Post/Edit.php:170 src/Object/Post.php:990 +msgid "Underline" +msgstr "Aláhúzott" + +#: src/Content/Conversation.php:349 src/Module/Item/Compose.php:193 +#: src/Module/Post/Edit.php:171 src/Object/Post.php:991 +msgid "Quote" +msgstr "Idézet" + +#: src/Content/Conversation.php:350 src/Module/Item/Compose.php:194 +#: src/Module/Post/Edit.php:172 src/Object/Post.php:992 +msgid "Code" +msgstr "Kód" + +#: src/Content/Conversation.php:351 src/Module/Item/Compose.php:195 +#: src/Object/Post.php:993 msgid "Image" msgstr "Kép" -#: src/Content/Conversation.php:351 +#: src/Content/Conversation.php:352 src/Module/Item/Compose.php:196 +#: src/Module/Post/Edit.php:173 src/Object/Post.php:994 +msgid "Link" +msgstr "Hivatkozás" + +#: src/Content/Conversation.php:353 src/Module/Item/Compose.php:197 +#: src/Module/Post/Edit.php:174 src/Object/Post.php:995 +msgid "Link or Media" +msgstr "Hivatkozás vagy média" + +#: src/Content/Conversation.php:354 msgid "Video" msgstr "Videó" -#: src/Content/Conversation.php:364 src/Module/Item/Compose.php:184 +#: src/Content/Conversation.php:355 src/Module/Item/Compose.php:200 +#: src/Module/Post/Edit.php:138 +msgid "Set your location" +msgstr "Az Ön helyének beállítása" + +#: src/Content/Conversation.php:356 src/Module/Post/Edit.php:139 +msgid "set location" +msgstr "hely beállítása" + +#: src/Content/Conversation.php:357 src/Module/Post/Edit.php:140 +msgid "Clear browser location" +msgstr "Böngésző helyének törlése" + +#: src/Content/Conversation.php:358 src/Module/Post/Edit.php:141 +msgid "clear location" +msgstr "hely törlése" + +#: src/Content/Conversation.php:360 src/Module/Item/Compose.php:205 +#: src/Module/Post/Edit.php:154 +msgid "Set title" +msgstr "Cím beállítása" + +#: src/Content/Conversation.php:362 src/Module/Item/Compose.php:206 +#: src/Module/Post/Edit.php:156 +msgid "Categories (comma-separated list)" +msgstr "Kategóriák (vesszővel elválasztott lista)" + +#: src/Content/Conversation.php:367 src/Module/Item/Compose.php:222 msgid "Scheduled at" msgstr "Ütemezve ekkor" -#: src/Content/Conversation.php:657 src/Object/Post.php:244 +#: src/Content/Conversation.php:372 src/Module/Post/Edit.php:143 +msgid "Permission settings" +msgstr "Jogosultsági beállítások" + +#: src/Content/Conversation.php:382 src/Module/Post/Edit.php:152 +msgid "Public post" +msgstr "Nyilvános bejegyzés" + +#: src/Content/Conversation.php:396 src/Content/Widget/VCard.php:113 +#: src/Model/Profile.php:469 src/Module/Admin/Logs/View.php:93 +#: src/Module/Post/Edit.php:177 +msgid "Message" +msgstr "Üzenet" + +#: src/Content/Conversation.php:397 src/Module/Post/Edit.php:178 +#: src/Module/Settings/TwoFactor/Trusted.php:140 +msgid "Browser" +msgstr "Böngésző" + +#: src/Content/Conversation.php:399 src/Module/Post/Edit.php:181 +msgid "Open Compose page" +msgstr "Írás oldal megnyitása" + +#: src/Content/Conversation.php:661 src/Object/Post.php:243 msgid "Pinned item" msgstr "Kitűzött elem" -#: src/Content/Conversation.php:673 src/Object/Post.php:486 -#: src/Object/Post.php:487 +#: src/Content/Conversation.php:677 src/Object/Post.php:485 +#: src/Object/Post.php:486 #, php-format msgid "View %s's profile @ %s" msgstr "%s profiljának megtekintése ezen: %s" -#: src/Content/Conversation.php:686 src/Object/Post.php:474 +#: src/Content/Conversation.php:690 src/Object/Post.php:473 msgid "Categories:" msgstr "Kategóriák:" -#: src/Content/Conversation.php:687 src/Object/Post.php:475 +#: src/Content/Conversation.php:691 src/Object/Post.php:474 msgid "Filed under:" msgstr "Iktatva itt:" -#: src/Content/Conversation.php:695 src/Object/Post.php:500 +#: src/Content/Conversation.php:699 src/Object/Post.php:499 #, php-format msgid "%s from %s" msgstr "%s tőle: %s" -#: src/Content/Conversation.php:711 +#: src/Content/Conversation.php:715 msgid "View in context" msgstr "Megtekintés környezetben" -#: src/Content/Conversation.php:776 +#: src/Content/Conversation.php:780 msgid "remove" msgstr "eltávolítás" -#: src/Content/Conversation.php:780 +#: src/Content/Conversation.php:784 msgid "Delete Selected Items" msgstr "Kijelölt elemek törlése" -#: src/Content/Conversation.php:845 src/Content/Conversation.php:848 -#: src/Content/Conversation.php:851 src/Content/Conversation.php:854 +#: src/Content/Conversation.php:849 src/Content/Conversation.php:852 +#: src/Content/Conversation.php:855 src/Content/Conversation.php:858 #, php-format msgid "You had been addressed (%s)." msgstr "Önt megszólították (%s)." -#: src/Content/Conversation.php:857 +#: src/Content/Conversation.php:861 #, php-format msgid "You are following %s." msgstr "Ön követi őt: %s." -#: src/Content/Conversation.php:860 +#: src/Content/Conversation.php:864 msgid "You subscribed to one or more tags in this post." msgstr "Ön feliratkozott egy vagy több címkére ebben a bejegyzésben." -#: src/Content/Conversation.php:875 +#: src/Content/Conversation.php:879 msgid "Reshared" msgstr "Újra megosztva" -#: src/Content/Conversation.php:875 +#: src/Content/Conversation.php:879 #, php-format msgid "Reshared by %s <%s>" msgstr "%s <%s> újra megosztotta" -#: src/Content/Conversation.php:878 +#: src/Content/Conversation.php:882 #, php-format msgid "%s is participating in this thread." msgstr "%s részt vesz ebben a szálban." -#: src/Content/Conversation.php:881 +#: src/Content/Conversation.php:885 msgid "Stored for general reasons" msgstr "Általános okokból tárolva" -#: src/Content/Conversation.php:884 +#: src/Content/Conversation.php:888 msgid "Global post" msgstr "Globális bejegyzés" -#: src/Content/Conversation.php:887 +#: src/Content/Conversation.php:891 msgid "Sent via an relay server" msgstr "Elküldve egy továbbító kiszolgálón keresztül" -#: src/Content/Conversation.php:887 +#: src/Content/Conversation.php:891 #, php-format msgid "Sent via the relay server %s <%s>" msgstr "Elküldve a(z) %s <%s> továbbító kiszolgálón keresztül" -#: src/Content/Conversation.php:890 +#: src/Content/Conversation.php:894 msgid "Fetched" msgstr "Lekérve" -#: src/Content/Conversation.php:890 +#: src/Content/Conversation.php:894 #, php-format msgid "Fetched because of %s <%s>" msgstr "Lekérve %s <%s> miatt" -#: src/Content/Conversation.php:893 +#: src/Content/Conversation.php:897 msgid "Stored because of a child post to complete this thread." msgstr "Eltárolva egy gyermekbejegyzés miatt, hogy befejezze ezt a szálat." -#: src/Content/Conversation.php:896 +#: src/Content/Conversation.php:900 msgid "Local delivery" msgstr "Helyi kézbesítés" -#: src/Content/Conversation.php:899 +#: src/Content/Conversation.php:903 msgid "Stored because of your activity (like, comment, star, ...)" msgstr "Eltárolva az Ön tevékenysége miatt (kedvelés, hozzászólás, csillagozás stb.)" -#: src/Content/Conversation.php:902 +#: src/Content/Conversation.php:906 msgid "Distributed" msgstr "Elosztott" -#: src/Content/Conversation.php:905 +#: src/Content/Conversation.php:909 msgid "Pushed to us" msgstr "Leküldve nekünk" @@ -2280,7 +1488,21 @@ msgstr "Tagsági dátum megjelenítése" msgid "Display membership date in profile" msgstr "Tagsági dátum megjelenítése a profilban." -#: src/Content/ForumManager.php:151 src/Content/Nav.php:241 +#: src/Content/Feature.php:126 +msgid "Advanced Calendar Settings" +msgstr "Speciális naptárbeállítások" + +#: src/Content/Feature.php:127 +msgid "Allow anonymous access to your calendar" +msgstr "Névtelen hozzáférés engedélyezése a naptárához" + +#: src/Content/Feature.php:127 +msgid "" +"Allows anonymous visitors to consult your calendar and your public events. " +"Contact birthday events are private to you." +msgstr "Lehetővé teszi a névtelen látogatók számára a naptára és a nyilvános eseményei megtekintését. A partner születésnapi eseményei az Ön számára magánjellegűek." + +#: src/Content/ForumManager.php:151 src/Content/Nav.php:242 #: src/Content/Text/HTML.php:903 src/Content/Widget.php:524 msgid "Forums" msgstr "Fórumok" @@ -2298,62 +1520,84 @@ msgstr "kevesebb megjelenítése" msgid "show more" msgstr "több megjelenítése" -#: src/Content/Item.php:288 src/Model/Item.php:2763 +#: src/Content/Item.php:294 src/Model/Item.php:2925 msgid "event" msgstr "esemény" -#: src/Content/Item.php:380 view/theme/frio/theme.php:250 +#: src/Content/Item.php:297 src/Content/Item.php:307 +#: src/Module/Post/Tag/Add.php:123 +msgid "status" +msgstr "állapot" + +#: src/Content/Item.php:303 src/Model/Item.php:2927 +#: src/Module/Post/Tag/Add.php:123 +msgid "photo" +msgstr "fénykép" + +#: src/Content/Item.php:317 src/Module/Post/Tag/Add.php:141 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s megjelölte %2$s %3$s vele: %4$s" + +#: src/Content/Item.php:386 view/theme/frio/theme.php:268 msgid "Follow Thread" msgstr "Szál követése" -#: src/Content/Item.php:381 src/Model/Contact.php:1114 +#: src/Content/Item.php:387 src/Model/Contact.php:1213 msgid "View Status" msgstr "Állapot megtekintése" -#: src/Content/Item.php:382 src/Content/Item.php:400 -#: src/Model/Contact.php:1052 src/Model/Contact.php:1106 -#: src/Model/Contact.php:1115 src/Module/Directory.php:158 -#: src/Module/Settings/Profile/Index.php:225 +#: src/Content/Item.php:388 src/Content/Item.php:406 +#: src/Model/Contact.php:1151 src/Model/Contact.php:1205 +#: src/Model/Contact.php:1214 src/Module/Directory.php:157 +#: src/Module/Settings/Profile/Index.php:234 msgid "View Profile" msgstr "Profil megtekintése" -#: src/Content/Item.php:383 src/Model/Contact.php:1116 +#: src/Content/Item.php:389 src/Model/Contact.php:1215 msgid "View Photos" msgstr "Fényképek megtekintése" -#: src/Content/Item.php:384 src/Model/Contact.php:1107 -#: src/Model/Contact.php:1117 +#: src/Content/Item.php:390 src/Model/Contact.php:1206 +#: src/Model/Contact.php:1216 msgid "Network Posts" msgstr "Hálózati bejegyzések" -#: src/Content/Item.php:385 src/Model/Contact.php:1108 -#: src/Model/Contact.php:1118 +#: src/Content/Item.php:391 src/Model/Contact.php:1207 +#: src/Model/Contact.php:1217 msgid "View Contact" msgstr "Partner megtekintése" -#: src/Content/Item.php:386 src/Model/Contact.php:1119 +#: src/Content/Item.php:392 src/Model/Contact.php:1218 msgid "Send PM" msgstr "Személyes üzenet küldése" -#: src/Content/Item.php:387 src/Module/Admin/Blocklist/Contact.php:100 -#: src/Module/Admin/Users/Active.php:140 src/Module/Admin/Users/Index.php:154 -#: src/Module/Contact.php:398 src/Module/Contact/Profile.php:348 -#: src/Module/Contact/Profile.php:449 +#: src/Content/Item.php:393 src/Module/Contact.php:401 +#: src/Module/Contact/Profile.php:348 src/Module/Contact/Profile.php:467 +#: src/Module/Moderation/Blocklist/Contact.php:116 +#: src/Module/Moderation/Users/Active.php:137 +#: src/Module/Moderation/Users/Index.php:152 msgid "Block" msgstr "Tiltás" -#: src/Content/Item.php:388 src/Module/Contact.php:399 -#: src/Module/Contact/Profile.php:349 src/Module/Contact/Profile.php:457 -#: src/Module/Notifications/Introductions.php:132 -#: src/Module/Notifications/Introductions.php:204 -#: src/Module/Notifications/Notification.php:88 +#: src/Content/Item.php:394 src/Module/Contact.php:402 +#: src/Module/Contact/Profile.php:349 src/Module/Contact/Profile.php:475 +#: src/Module/Notifications/Introductions.php:134 +#: src/Module/Notifications/Introductions.php:206 +#: src/Module/Notifications/Notification.php:89 msgid "Ignore" msgstr "Mellőzés" -#: src/Content/Item.php:392 src/Object/Post.php:455 +#: src/Content/Item.php:398 src/Object/Post.php:454 msgid "Languages" msgstr "Nyelvek" +#: src/Content/Item.php:403 src/Content/Widget.php:80 +#: src/Model/Contact.php:1208 src/Model/Contact.php:1219 +#: src/Module/Contact/Follow.php:167 view/theme/vier/theme.php:196 +msgid "Connect/Follow" +msgstr "Kapcsolódás vagy követés" + #: src/Content/Nav.php:90 msgid "Nothing new here" msgstr "Semmi új nincs itt" @@ -2370,244 +1614,279 @@ msgstr "Értesítések törlése" msgid "@name, !forum, #tags, content" msgstr "@név, !fórum, #címkék, tartalom" -#: src/Content/Nav.php:185 src/Module/Security/Login.php:158 +#: src/Content/Nav.php:186 src/Module/Security/Login.php:158 msgid "Logout" msgstr "Kijelentkezés" -#: src/Content/Nav.php:185 +#: src/Content/Nav.php:186 msgid "End this session" msgstr "Munkamenet befejezése" -#: src/Content/Nav.php:187 src/Module/Bookmarklet.php:44 +#: src/Content/Nav.php:188 src/Module/Bookmarklet.php:44 #: src/Module/Security/Login.php:159 msgid "Login" msgstr "Bejelentkezés" -#: src/Content/Nav.php:187 +#: src/Content/Nav.php:188 msgid "Sign in" msgstr "Bejelentkezés" -#: src/Content/Nav.php:192 src/Module/BaseProfile.php:56 -#: src/Module/Contact.php:433 src/Module/Contact/Profile.php:380 -#: src/Module/Settings/TwoFactor/Index.php:120 view/theme/frio/theme.php:220 +#: src/Content/Nav.php:193 src/Module/BaseProfile.php:57 +#: src/Module/Contact.php:436 src/Module/Contact/Profile.php:380 +#: src/Module/Settings/TwoFactor/Index.php:119 view/theme/frio/theme.php:235 msgid "Status" msgstr "Állapot" -#: src/Content/Nav.php:192 src/Content/Nav.php:275 -#: view/theme/frio/theme.php:220 +#: src/Content/Nav.php:193 src/Content/Nav.php:272 +#: view/theme/frio/theme.php:235 msgid "Your posts and conversations" msgstr "Az Ön bejegyzései és beszélgetései" -#: src/Content/Nav.php:193 src/Module/BaseProfile.php:48 -#: src/Module/BaseSettings.php:55 src/Module/Contact.php:457 -#: src/Module/Contact/Profile.php:382 src/Module/Profile/Profile.php:241 -#: src/Module/Welcome.php:57 view/theme/frio/theme.php:221 +#: src/Content/Nav.php:194 src/Module/BaseProfile.php:49 +#: src/Module/BaseSettings.php:100 src/Module/Contact.php:460 +#: src/Module/Contact/Profile.php:382 src/Module/Profile/Profile.php:233 +#: src/Module/Welcome.php:57 view/theme/frio/theme.php:236 msgid "Profile" msgstr "Profil" -#: src/Content/Nav.php:193 view/theme/frio/theme.php:221 +#: src/Content/Nav.php:194 view/theme/frio/theme.php:236 msgid "Your profile page" msgstr "Az Ön profiloldala" -#: src/Content/Nav.php:194 view/theme/frio/theme.php:222 +#: src/Content/Nav.php:195 src/Module/BaseProfile.php:65 +#: src/Module/Media/Photo/Browser.php:74 view/theme/frio/theme.php:240 +msgid "Photos" +msgstr "Fényképek" + +#: src/Content/Nav.php:195 view/theme/frio/theme.php:240 msgid "Your photos" msgstr "Az Ön fényképei" -#: src/Content/Nav.php:195 src/Module/BaseProfile.php:72 -#: src/Module/BaseProfile.php:75 src/Module/Contact.php:449 -#: view/theme/frio/theme.php:223 +#: src/Content/Nav.php:196 src/Module/BaseProfile.php:73 +#: src/Module/BaseProfile.php:76 src/Module/Contact.php:452 +#: view/theme/frio/theme.php:241 msgid "Media" msgstr "Média" -#: src/Content/Nav.php:195 view/theme/frio/theme.php:223 +#: src/Content/Nav.php:196 view/theme/frio/theme.php:241 msgid "Your postings with media" msgstr "Az Ön médiával rendelkező beküldései" -#: src/Content/Nav.php:196 view/theme/frio/theme.php:224 -msgid "Your events" -msgstr "Az Ön eseményei" +#: src/Content/Nav.php:197 src/Content/Nav.php:257 +#: 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:216 view/theme/frio/theme.php:242 +#: view/theme/frio/theme.php:246 +msgid "Calendar" +msgstr "Naptár" -#: src/Content/Nav.php:197 +#: src/Content/Nav.php:197 view/theme/frio/theme.php:242 +msgid "Your calendar" +msgstr "Az Ön naptára" + +#: src/Content/Nav.php:198 msgid "Personal notes" msgstr "Személyes jegyzetek" -#: src/Content/Nav.php:197 +#: src/Content/Nav.php:198 msgid "Your personal notes" msgstr "Az Ön személyes jegyzetei" -#: src/Content/Nav.php:214 src/Content/Nav.php:275 +#: src/Content/Nav.php:215 src/Content/Nav.php:272 msgid "Home" msgstr "Kezdőlap" -#: src/Content/Nav.php:218 src/Module/Register.php:168 +#: src/Content/Nav.php:215 src/Module/Settings/OAuth.php:74 +msgid "Home Page" +msgstr "Kezdőlap" + +#: src/Content/Nav.php:219 src/Module/Register.php:168 #: src/Module/Security/Login.php:124 msgid "Register" msgstr "Regisztráció" -#: src/Content/Nav.php:218 +#: src/Content/Nav.php:219 msgid "Create an account" msgstr "Fiók létrehozása" -#: src/Content/Nav.php:224 src/Module/Help.php:67 -#: src/Module/Settings/TwoFactor/AppSpecific.php:127 -#: src/Module/Settings/TwoFactor/Index.php:119 -#: src/Module/Settings/TwoFactor/Recovery.php:105 -#: src/Module/Settings/TwoFactor/Verify.php:145 view/theme/vier/theme.php:226 +#: src/Content/Nav.php:225 src/Module/Help.php:67 +#: src/Module/Settings/TwoFactor/AppSpecific.php:129 +#: src/Module/Settings/TwoFactor/Index.php:118 +#: src/Module/Settings/TwoFactor/Recovery.php:107 +#: src/Module/Settings/TwoFactor/Verify.php:146 view/theme/vier/theme.php:241 msgid "Help" msgstr "Súgó" -#: src/Content/Nav.php:224 +#: src/Content/Nav.php:225 msgid "Help and documentation" msgstr "Súgó és dokumentáció" -#: src/Content/Nav.php:228 +#: src/Content/Nav.php:229 msgid "Apps" msgstr "Alkalmazások" -#: src/Content/Nav.php:228 +#: src/Content/Nav.php:229 msgid "Addon applications, utilities, games" msgstr "Bővítményalkalmazások, segédprogramok és játékok" -#: src/Content/Nav.php:232 src/Content/Text/HTML.php:888 -#: src/Module/Admin/Logs/View.php:87 src/Module/Search/Index.php:112 +#: src/Content/Nav.php:233 src/Content/Text/HTML.php:888 +#: src/Module/Admin/Logs/View.php:87 src/Module/Search/Index.php:111 msgid "Search" msgstr "Keresés" -#: src/Content/Nav.php:232 +#: src/Content/Nav.php:233 msgid "Search site content" msgstr "Oldaltartalom keresése" -#: src/Content/Nav.php:235 src/Content/Text/HTML.php:897 +#: src/Content/Nav.php:236 src/Content/Text/HTML.php:897 msgid "Full Text" msgstr "Teljes szöveg" -#: src/Content/Nav.php:236 src/Content/Text/HTML.php:898 +#: src/Content/Nav.php:237 src/Content/Text/HTML.php:898 #: src/Content/Widget/TagCloud.php:68 msgid "Tags" msgstr "Címkék" -#: src/Content/Nav.php:237 src/Content/Nav.php:296 -#: src/Content/Text/HTML.php:899 src/Module/BaseProfile.php:125 -#: src/Module/BaseProfile.php:128 src/Module/Contact.php:370 -#: src/Module/Contact.php:464 view/theme/frio/theme.php:231 +#: src/Content/Nav.php:238 src/Content/Nav.php:293 +#: src/Content/Text/HTML.php:899 src/Module/BaseProfile.php:127 +#: src/Module/BaseProfile.php:130 src/Module/Contact.php:373 +#: src/Module/Contact.php:467 view/theme/frio/theme.php:249 msgid "Contacts" msgstr "Partnerek" -#: src/Content/Nav.php:256 +#: src/Content/Nav.php:253 msgid "Community" msgstr "Közösség" -#: src/Content/Nav.php:256 +#: src/Content/Nav.php:253 msgid "Conversations on this and other servers" msgstr "Beszélgetések ezen és más kiszolgálókon" -#: src/Content/Nav.php:260 src/Module/BaseProfile.php:87 -#: src/Module/BaseProfile.php:98 view/theme/frio/theme.php:228 -msgid "Events and Calendar" -msgstr "Események és naptár" - -#: src/Content/Nav.php:263 +#: src/Content/Nav.php:260 msgid "Directory" msgstr "Könyvtár" -#: src/Content/Nav.php:263 +#: src/Content/Nav.php:260 msgid "People directory" msgstr "Emberek könyvtár" -#: src/Content/Nav.php:265 src/Module/BaseAdmin.php:88 +#: src/Content/Nav.php:262 src/Module/BaseAdmin.php:85 +#: src/Module/BaseModeration.php:108 msgid "Information" msgstr "Információk" -#: src/Content/Nav.php:265 +#: src/Content/Nav.php:262 msgid "Information about this friendica instance" msgstr "Információk erről a Friendica példányról" -#: src/Content/Nav.php:268 src/Module/Admin/Tos.php:76 -#: src/Module/BaseAdmin.php:99 src/Module/Register.php:176 -#: src/Module/Tos.php:87 +#: src/Content/Nav.php:265 src/Module/Admin/Tos.php:78 +#: src/Module/BaseAdmin.php:95 src/Module/Register.php:176 +#: src/Module/Tos.php:98 msgid "Terms of Service" msgstr "Használati feltételek" -#: src/Content/Nav.php:268 +#: src/Content/Nav.php:265 msgid "Terms of Service of this Friendica instance" msgstr "Ezen Friendica példány használati feltételei" -#: src/Content/Nav.php:273 view/theme/frio/theme.php:227 +#: src/Content/Nav.php:270 view/theme/frio/theme.php:245 msgid "Network" msgstr "Hálózat" -#: src/Content/Nav.php:273 view/theme/frio/theme.php:227 +#: src/Content/Nav.php:270 view/theme/frio/theme.php:245 msgid "Conversations from your friends" msgstr "Ismerősökkel való beszélgetések" -#: src/Content/Nav.php:279 +#: src/Content/Nav.php:276 msgid "Introductions" msgstr "Bemutatkozások" -#: src/Content/Nav.php:279 +#: src/Content/Nav.php:276 msgid "Friend Requests" msgstr "Ismerőskérések" -#: src/Content/Nav.php:280 src/Module/BaseNotifications.php:148 -#: src/Module/Notifications/Introductions.php:73 +#: src/Content/Nav.php:277 src/Module/BaseNotifications.php:149 +#: src/Module/Notifications/Introductions.php:75 msgid "Notifications" msgstr "Értesítések" -#: src/Content/Nav.php:281 +#: src/Content/Nav.php:278 msgid "See all notifications" msgstr "Összes értesítés megtekintése" -#: src/Content/Nav.php:282 +#: src/Content/Nav.php:279 src/Module/Settings/Connectors.php:242 +msgid "Mark as seen" +msgstr "Megjelölés olvasottként" + +#: src/Content/Nav.php:279 msgid "Mark all system notifications as seen" msgstr "Összes rendszerértesítés megjelölése olvasottként" -#: src/Content/Nav.php:285 view/theme/frio/theme.php:229 +#: src/Content/Nav.php:282 view/theme/frio/theme.php:247 msgid "Private mail" msgstr "Személyes levél" -#: src/Content/Nav.php:286 +#: src/Content/Nav.php:283 msgid "Inbox" msgstr "Beérkezett üzenetek" -#: src/Content/Nav.php:287 +#: src/Content/Nav.php:284 msgid "Outbox" msgstr "Elküldött üzenetek" -#: src/Content/Nav.php:291 +#: src/Content/Nav.php:288 msgid "Accounts" msgstr "Fiókok" -#: src/Content/Nav.php:291 +#: src/Content/Nav.php:288 msgid "Manage other pages" msgstr "Más oldalak kezelése" -#: src/Content/Nav.php:294 src/Module/Admin/Addons/Details.php:114 -#: src/Module/Admin/Themes/Details.php:93 src/Module/BaseSettings.php:122 -#: src/Module/Welcome.php:52 view/theme/frio/theme.php:230 +#: src/Content/Nav.php:291 src/Module/Admin/Addons/Details.php:114 +#: src/Module/Admin/Themes/Details.php:93 src/Module/BaseSettings.php:170 +#: src/Module/Welcome.php:52 view/theme/frio/theme.php:248 msgid "Settings" msgstr "Beállítások" -#: src/Content/Nav.php:294 view/theme/frio/theme.php:230 +#: src/Content/Nav.php:291 view/theme/frio/theme.php:248 msgid "Account settings" msgstr "Fiókbeállítások" -#: src/Content/Nav.php:296 view/theme/frio/theme.php:231 +#: src/Content/Nav.php:293 view/theme/frio/theme.php:249 msgid "Manage/edit friends and contacts" msgstr "Ismerősök és partnerek kezelése vagy szerkesztése" -#: src/Content/Nav.php:301 src/Module/BaseAdmin.php:129 +#: src/Content/Nav.php:298 src/Module/BaseAdmin.php:119 msgid "Admin" msgstr "Adminisztráció" -#: src/Content/Nav.php:301 +#: src/Content/Nav.php:298 msgid "Site setup and configuration" msgstr "Oldal beállítása és konfigurálás" -#: src/Content/Nav.php:304 +#: src/Content/Nav.php:299 src/Module/BaseModeration.php:127 +#: src/Module/Moderation/Blocklist/Contact.php:110 +#: src/Module/Moderation/Blocklist/Server/Add.php:119 +#: src/Module/Moderation/Blocklist/Server/Import.php:115 +#: src/Module/Moderation/Blocklist/Server/Index.php:92 +#: src/Module/Moderation/Item/Delete.php:61 +#: src/Module/Moderation/Summary.php:76 +#: 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 +msgid "Moderation" +msgstr "Moderálás" + +#: src/Content/Nav.php:299 +msgid "Content and user moderation" +msgstr "Tartalom- és felhasználómoderálás" + +#: src/Content/Nav.php:302 msgid "Navigation" msgstr "Navigáció" -#: src/Content/Nav.php:304 +#: src/Content/Nav.php:302 msgid "Site map" msgstr "Oldaltérkép" @@ -2635,38 +1914,38 @@ msgstr "következő" msgid "last" msgstr "utolsó" -#: src/Content/Text/BBCode.php:998 src/Content/Text/BBCode.php:1833 -#: src/Content/Text/BBCode.php:1834 +#: src/Content/Text/BBCode.php:1015 src/Content/Text/BBCode.php:1877 +#: src/Content/Text/BBCode.php:1878 msgid "Image/photo" msgstr "Kép vagy fénykép" -#: src/Content/Text/BBCode.php:1188 +#: src/Content/Text/BBCode.php:1232 #, php-format msgid "%2$s %3$s" msgstr "%2$s %3$s" -#: src/Content/Text/BBCode.php:1213 src/Model/Item.php:3339 -#: src/Model/Item.php:3345 src/Model/Item.php:3346 +#: src/Content/Text/BBCode.php:1257 src/Model/Item.php:3688 +#: src/Model/Item.php:3694 src/Model/Item.php:3695 msgid "Link to source" msgstr "Hivatkozás a forráshoz" -#: src/Content/Text/BBCode.php:1751 src/Content/Text/HTML.php:940 +#: src/Content/Text/BBCode.php:1795 src/Content/Text/HTML.php:940 msgid "Click to open/close" msgstr "Kattintson a megnyitáshoz vagy bezáráshoz" -#: src/Content/Text/BBCode.php:1782 +#: src/Content/Text/BBCode.php:1826 msgid "$1 wrote:" msgstr "$1 írta:" -#: src/Content/Text/BBCode.php:1838 src/Content/Text/BBCode.php:1839 +#: src/Content/Text/BBCode.php:1882 src/Content/Text/BBCode.php:1883 msgid "Encrypted content" msgstr "Titkosított tartalom" -#: src/Content/Text/BBCode.php:2057 +#: src/Content/Text/BBCode.php:2110 msgid "Invalid source protocol" msgstr "Érvénytelen forrásprotokoll" -#: src/Content/Text/BBCode.php:2072 +#: src/Content/Text/BBCode.php:2125 msgid "Invalid link protocol" msgstr "Érvénytelen hivatkozási protokoll" @@ -2679,7 +1958,7 @@ msgid "The end" msgstr "Vége" #: src/Content/Text/HTML.php:882 src/Content/Widget/VCard.php:109 -#: src/Model/Profile.php:460 +#: src/Model/Profile.php:463 src/Module/Contact/Profile.php:427 msgid "Follow" msgstr "Követés" @@ -2706,46 +1985,51 @@ msgid_plural "%d invitations available" msgstr[0] "%d meghívás érhető el" msgstr[1] "%d meghívás érhető el" -#: src/Content/Widget.php:78 view/theme/vier/theme.php:179 +#: src/Content/Widget.php:78 view/theme/vier/theme.php:194 msgid "Find People" msgstr "Emberek keresése" -#: src/Content/Widget.php:79 view/theme/vier/theme.php:180 +#: src/Content/Widget.php:79 view/theme/vier/theme.php:195 msgid "Enter name or interest" msgstr "Név vagy érdeklődés beírása" -#: src/Content/Widget.php:81 view/theme/vier/theme.php:182 +#: src/Content/Widget.php:81 view/theme/vier/theme.php:197 msgid "Examples: Robert Morgenstein, Fishing" msgstr "Példák: Szabó János, Halászat" -#: src/Content/Widget.php:82 src/Module/Contact.php:391 -#: src/Module/Directory.php:97 view/theme/vier/theme.php:183 +#: src/Content/Widget.php:82 src/Module/Contact.php:394 +#: src/Module/Directory.php:96 view/theme/vier/theme.php:198 msgid "Find" msgstr "Keresés" -#: src/Content/Widget.php:84 view/theme/vier/theme.php:185 +#: src/Content/Widget.php:83 src/Module/Contact/Suggestions.php:73 +#: view/theme/vier/theme.php:199 +msgid "Friend Suggestions" +msgstr "Ismerős javaslatok" + +#: src/Content/Widget.php:84 view/theme/vier/theme.php:200 msgid "Similar Interests" msgstr "Hasonló érdeklődések" -#: src/Content/Widget.php:85 view/theme/vier/theme.php:186 +#: src/Content/Widget.php:85 view/theme/vier/theme.php:201 msgid "Random Profile" msgstr "Véletlen profil" -#: src/Content/Widget.php:86 view/theme/vier/theme.php:187 +#: src/Content/Widget.php:86 view/theme/vier/theme.php:202 msgid "Invite Friends" msgstr "Ismerősök meghívása" -#: src/Content/Widget.php:87 src/Module/Directory.php:89 -#: view/theme/vier/theme.php:188 +#: src/Content/Widget.php:87 src/Module/Directory.php:88 +#: view/theme/vier/theme.php:203 msgid "Global Directory" msgstr "Globális könyvtár" -#: src/Content/Widget.php:89 view/theme/vier/theme.php:190 +#: src/Content/Widget.php:89 view/theme/vier/theme.php:205 msgid "Local Directory" msgstr "Helyi könyvtár" #: src/Content/Widget.php:211 src/Model/Group.php:587 -#: src/Module/Contact.php:354 src/Module/Welcome.php:76 +#: src/Module/Contact.php:357 src/Module/Welcome.php:76 msgid "Groups" msgstr "Csoportok" @@ -2757,8 +2041,8 @@ msgstr "Mindenki" msgid "Relationships" msgstr "Kapcsolatok" -#: src/Content/Widget.php:244 src/Module/Contact.php:306 -#: src/Module/Group.php:293 +#: src/Content/Widget.php:244 src/Module/Contact.php:309 +#: src/Module/Group.php:291 msgid "All Contacts" msgstr "Összes partner" @@ -2801,27 +2085,27 @@ msgstr "Személyek" msgid "Organisations" msgstr "Szervezetek" -#: src/Content/Widget.php:523 src/Model/Contact.php:1541 +#: src/Content/Widget.php:523 src/Model/Contact.php:1655 msgid "News" msgstr "Hírek" -#: src/Content/Widget.php:527 src/Module/Settings/Account.php:455 +#: src/Content/Widget.php:527 src/Module/Settings/Account.php:453 msgid "Account Types" msgstr "Fióktípusok" -#: src/Content/Widget.php:528 src/Module/Admin/BaseUsers.php:51 +#: src/Content/Widget.php:528 src/Module/Moderation/BaseUsers.php:69 msgid "All" msgstr "Összes" -#: src/Content/Widget/CalendarExport.php:54 +#: src/Content/Widget/CalendarExport.php:56 msgid "Export" msgstr "Exportálás" -#: src/Content/Widget/CalendarExport.php:55 +#: src/Content/Widget/CalendarExport.php:57 msgid "Export calendar as ical" msgstr "Naptár exportálása iCal-ként" -#: src/Content/Widget/CalendarExport.php:56 +#: src/Content/Widget/CalendarExport.php:58 msgid "Export calendar as csv" msgstr "Naptár exportálása CSV-ként" @@ -2829,14 +2113,14 @@ msgstr "Naptár exportálása CSV-ként" msgid "No contacts" msgstr "Nincsenek partnerek" -#: src/Content/Widget/ContactBlock.php:108 +#: src/Content/Widget/ContactBlock.php:110 #, php-format msgid "%d Contact" msgid_plural "%d Contacts" msgstr[0] "%d partner" msgstr[1] "%d partner" -#: src/Content/Widget/ContactBlock.php:125 +#: src/Content/Widget/ContactBlock.php:127 msgid "View Contacts" msgstr "Partnerek megtekintése" @@ -2848,37 +2132,47 @@ msgstr "Kifejezés eltávolítása" msgid "Saved Searches" msgstr "Mentett keresések" -#: src/Content/Widget/TrendingTags.php:51 +#: src/Content/Widget/TrendingTags.php:52 #, php-format msgid "Trending Tags (last %d hour)" msgid_plural "Trending Tags (last %d hours)" msgstr[0] "Népszerű címkék (legutóbbi %d óra)" msgstr[1] "Népszerű címkék (legutóbbi %d óra)" -#: src/Content/Widget/TrendingTags.php:52 +#: src/Content/Widget/TrendingTags.php:53 msgid "More Trending Tags" msgstr "További népszerű címkék" -#: src/Content/Widget/VCard.php:102 src/Model/Profile.php:379 -#: src/Module/Contact/Profile.php:371 src/Module/Profile/Profile.php:176 +#: src/Content/Widget/VCard.php:102 src/Model/Profile.php:378 +#: src/Module/Contact/Profile.php:371 src/Module/Profile/Profile.php:168 msgid "XMPP:" msgstr "XMPP:" -#: src/Content/Widget/VCard.php:103 src/Model/Profile.php:380 -#: src/Module/Contact/Profile.php:373 src/Module/Profile/Profile.php:180 +#: src/Content/Widget/VCard.php:103 src/Model/Profile.php:379 +#: src/Module/Contact/Profile.php:373 src/Module/Profile/Profile.php:172 msgid "Matrix:" msgstr "Mátrix:" -#: src/Content/Widget/VCard.php:107 src/Model/Profile.php:472 -#: src/Module/Notifications/Introductions.php:199 +#: src/Content/Widget/VCard.php:104 src/Model/Event.php:82 +#: src/Model/Event.php:109 src/Model/Event.php:471 src/Model/Event.php:958 +#: src/Model/Profile.php:373 src/Module/Contact/Profile.php:369 +#: src/Module/Directory.php:147 src/Module/Notifications/Introductions.php:187 +#: src/Module/Profile/Profile.php:186 +msgid "Location:" +msgstr "Hely:" + +#: src/Content/Widget/VCard.php:107 src/Model/Profile.php:476 +#: src/Module/Notifications/Introductions.php:201 msgid "Network:" msgstr "Hálózat:" -#: src/Content/Widget/VCard.php:111 src/Model/Profile.php:462 +#: src/Content/Widget/VCard.php:111 src/Model/Contact.php:1209 +#: src/Model/Contact.php:1220 src/Model/Profile.php:465 +#: src/Module/Contact/Profile.php:419 msgid "Unfollow" msgstr "Követés megszüntetése" -#: src/Core/ACL.php:165 src/Module/Profile/Profile.php:242 +#: src/Core/ACL.php:165 src/Module/Profile/Profile.php:234 msgid "Yourself" msgstr "Önmaga" @@ -2913,6 +2207,12 @@ msgid "" "anywhere public." msgstr "Ez a tartalom csak az első mezőben lévő embereknek fog megjelenni, kivéve a második mezőben említett embereknek. Nem jelenik meg sehol sem nyilvánosan." +#: src/Core/ACL.php:323 +msgid "" +"Start typing the name of a contact or a group to show a filtered list. You " +"can also mention the special groups \"Followers\" and \"Mutuals\"." +msgstr "" + #: src/Core/ACL.php:324 msgid "Show to:" msgstr "Megjelenítés nekik:" @@ -2921,6 +2221,14 @@ msgstr "Megjelenítés nekik:" msgid "Except to:" msgstr "Kivéve nekik:" +#: src/Core/ACL.php:326 src/Module/Post/Edit.php:151 +msgid "CC: email addresses" +msgstr "Másolat: e-mail-címek" + +#: src/Core/ACL.php:327 src/Module/Post/Edit.php:157 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Példa: bob@example.com, mary@example.com" + #: src/Core/ACL.php:328 msgid "Connectors" msgstr "Összekötők" @@ -3244,137 +2552,142 @@ msgstr "Az adatbázis már használatban van." msgid "Could not connect to database." msgstr "Nem sikerült kapcsolódni az adatbázishoz." -#: src/Core/L10n.php:403 src/Model/Event.php:428 -#: src/Module/Settings/Display.php:182 +#: src/Core/L10n.php:403 src/Model/Event.php:430 +#: src/Module/Settings/Display.php:187 msgid "Monday" msgstr "Hétfő" -#: src/Core/L10n.php:403 src/Model/Event.php:429 +#: src/Core/L10n.php:403 src/Model/Event.php:431 +#: src/Module/Settings/Display.php:188 msgid "Tuesday" msgstr "Kedd" -#: src/Core/L10n.php:403 src/Model/Event.php:430 +#: src/Core/L10n.php:403 src/Model/Event.php:432 +#: src/Module/Settings/Display.php:189 msgid "Wednesday" msgstr "Szerda" -#: src/Core/L10n.php:403 src/Model/Event.php:431 +#: src/Core/L10n.php:403 src/Model/Event.php:433 +#: src/Module/Settings/Display.php:190 msgid "Thursday" msgstr "Csütörtök" -#: src/Core/L10n.php:403 src/Model/Event.php:432 +#: src/Core/L10n.php:403 src/Model/Event.php:434 +#: src/Module/Settings/Display.php:191 msgid "Friday" msgstr "Péntek" -#: src/Core/L10n.php:403 src/Model/Event.php:433 +#: src/Core/L10n.php:403 src/Model/Event.php:435 +#: src/Module/Settings/Display.php:192 msgid "Saturday" msgstr "Szombat" -#: src/Core/L10n.php:403 src/Model/Event.php:427 -#: src/Module/Settings/Display.php:182 +#: src/Core/L10n.php:403 src/Model/Event.php:429 +#: src/Module/Settings/Display.php:186 msgid "Sunday" msgstr "Vasárnap" -#: src/Core/L10n.php:407 src/Model/Event.php:448 +#: src/Core/L10n.php:407 src/Model/Event.php:450 msgid "January" msgstr "Január" -#: src/Core/L10n.php:407 src/Model/Event.php:449 +#: src/Core/L10n.php:407 src/Model/Event.php:451 msgid "February" msgstr "Február" -#: src/Core/L10n.php:407 src/Model/Event.php:450 +#: src/Core/L10n.php:407 src/Model/Event.php:452 msgid "March" msgstr "Március" -#: src/Core/L10n.php:407 src/Model/Event.php:451 +#: src/Core/L10n.php:407 src/Model/Event.php:453 msgid "April" msgstr "Április" -#: src/Core/L10n.php:407 src/Core/L10n.php:426 src/Model/Event.php:439 +#: src/Core/L10n.php:407 src/Core/L10n.php:426 src/Model/Event.php:441 msgid "May" msgstr "Május" -#: src/Core/L10n.php:407 src/Model/Event.php:452 +#: src/Core/L10n.php:407 src/Model/Event.php:454 msgid "June" msgstr "Június" -#: src/Core/L10n.php:407 src/Model/Event.php:453 +#: src/Core/L10n.php:407 src/Model/Event.php:455 msgid "July" msgstr "Július" -#: src/Core/L10n.php:407 src/Model/Event.php:454 +#: src/Core/L10n.php:407 src/Model/Event.php:456 msgid "August" msgstr "Augusztus" -#: src/Core/L10n.php:407 src/Model/Event.php:455 +#: src/Core/L10n.php:407 src/Model/Event.php:457 msgid "September" msgstr "Szeptember" -#: src/Core/L10n.php:407 src/Model/Event.php:456 +#: src/Core/L10n.php:407 src/Model/Event.php:458 msgid "October" msgstr "Október" -#: src/Core/L10n.php:407 src/Model/Event.php:457 +#: src/Core/L10n.php:407 src/Model/Event.php:459 msgid "November" msgstr "November" -#: src/Core/L10n.php:407 src/Model/Event.php:458 +#: src/Core/L10n.php:407 src/Model/Event.php:460 msgid "December" msgstr "December" -#: src/Core/L10n.php:422 src/Model/Event.php:420 +#: src/Core/L10n.php:422 src/Model/Event.php:422 msgid "Mon" msgstr "Hét" -#: src/Core/L10n.php:422 src/Model/Event.php:421 +#: src/Core/L10n.php:422 src/Model/Event.php:423 msgid "Tue" msgstr "Ked" -#: src/Core/L10n.php:422 src/Model/Event.php:422 +#: src/Core/L10n.php:422 src/Model/Event.php:424 msgid "Wed" msgstr "Sze" -#: src/Core/L10n.php:422 src/Model/Event.php:423 +#: src/Core/L10n.php:422 src/Model/Event.php:425 msgid "Thu" msgstr "Csü" -#: src/Core/L10n.php:422 src/Model/Event.php:424 +#: src/Core/L10n.php:422 src/Model/Event.php:426 msgid "Fri" msgstr "Pén" -#: src/Core/L10n.php:422 src/Model/Event.php:425 +#: src/Core/L10n.php:422 src/Model/Event.php:427 msgid "Sat" msgstr "Szo" -#: src/Core/L10n.php:422 src/Model/Event.php:419 +#: src/Core/L10n.php:422 src/Model/Event.php:421 msgid "Sun" msgstr "Vas" -#: src/Core/L10n.php:426 src/Model/Event.php:435 +#: src/Core/L10n.php:426 src/Model/Event.php:437 msgid "Jan" msgstr "Jan" -#: src/Core/L10n.php:426 src/Model/Event.php:436 +#: src/Core/L10n.php:426 src/Model/Event.php:438 msgid "Feb" msgstr "Feb" -#: src/Core/L10n.php:426 src/Model/Event.php:437 +#: src/Core/L10n.php:426 src/Model/Event.php:439 msgid "Mar" msgstr "Már" -#: src/Core/L10n.php:426 src/Model/Event.php:438 +#: src/Core/L10n.php:426 src/Model/Event.php:440 msgid "Apr" msgstr "Ápr" -#: src/Core/L10n.php:426 src/Model/Event.php:440 +#: src/Core/L10n.php:426 src/Model/Event.php:442 msgid "Jun" msgstr "Jún" -#: src/Core/L10n.php:426 src/Model/Event.php:441 +#: src/Core/L10n.php:426 src/Model/Event.php:443 msgid "Jul" msgstr "Júl" -#: src/Core/L10n.php:426 src/Model/Event.php:442 +#: src/Core/L10n.php:426 src/Model/Event.php:444 msgid "Aug" msgstr "Aug" @@ -3382,31 +2695,31 @@ msgstr "Aug" msgid "Sep" msgstr "Sze" -#: src/Core/L10n.php:426 src/Model/Event.php:444 +#: src/Core/L10n.php:426 src/Model/Event.php:446 msgid "Oct" msgstr "Okt" -#: src/Core/L10n.php:426 src/Model/Event.php:445 +#: src/Core/L10n.php:426 src/Model/Event.php:447 msgid "Nov" msgstr "Nov" -#: src/Core/L10n.php:426 src/Model/Event.php:446 +#: src/Core/L10n.php:426 src/Model/Event.php:448 msgid "Dec" msgstr "Dec" #: src/Core/Renderer.php:89 src/Core/Renderer.php:118 -#: src/Core/Renderer.php:145 src/Core/Renderer.php:179 -#: src/Render/FriendicaSmartyEngine.php:57 +#: src/Core/Renderer.php:147 src/Core/Renderer.php:181 +#: src/Render/FriendicaSmartyEngine.php:60 msgid "" "Friendica can't display this page at the moment, please contact the " "administrator." msgstr "A Friendica jelenleg nem tudja megjeleníteni ezt az oldalt. Vegye fel a kapcsolatot a rendszergazdával." -#: src/Core/Renderer.php:141 +#: src/Core/Renderer.php:143 msgid "template engine cannot be registered without a name." msgstr "a sablonmotort nem lehet regisztrálni név nélkül." -#: src/Core/Renderer.php:175 +#: src/Core/Renderer.php:177 msgid "template engine is not registered!" msgstr "a sablonmotor nincs regisztrálva!" @@ -3424,36 +2737,36 @@ msgstr "Az a mappa, ahova a feltöltött fájlok mentve lesznek. A legnagyobb bi msgid "Enter a valid existing folder" msgstr "Adjon meg egy érvényes, létező mappát" -#: src/Core/Update.php:67 +#: src/Core/Update.php:70 #, php-format msgid "" "Updates from version %s are not supported. Please update at least to version" " 2021.01 and wait until the postupdate finished version 1383." msgstr "A korábbi %s verzióról való frissítések nem támogatottak. Frissítsen legalább a 2021.01-es verzióra, és várja meg, amíg a bejegyzésfrissítés befejezi az 1383-as verziót." -#: src/Core/Update.php:78 +#: src/Core/Update.php:81 #, php-format msgid "" "Updates from postupdate version %s are not supported. Please update at least" " to version 2021.01 and wait until the postupdate finished version 1383." msgstr "A korábbi %s bejegyzésfrissítési verzióról való frissítések nem támogatottak. Frissítsen legalább a 2021.01-es verzióra, és várja meg, amíg a bejegyzésfrissítés befejezi az 1383-as verziót." -#: src/Core/Update.php:153 +#: src/Core/Update.php:156 #, php-format msgid "%s: executing pre update %d" msgstr "%s: %d előfrissítés végrehajtása" -#: src/Core/Update.php:191 +#: src/Core/Update.php:194 #, php-format msgid "%s: executing post update %d" msgstr "%s: %d bejegyzésfrissítés végrehajtása" -#: src/Core/Update.php:261 +#: src/Core/Update.php:264 #, php-format msgid "Update %s failed. See error logs." msgstr "A(z) %s frissítés sikertelen. Nézze meg a hibanaplókat." -#: src/Core/Update.php:315 +#: src/Core/Update.php:304 #, php-format msgid "" "\n" @@ -3463,53 +2776,21 @@ msgid "" "\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." msgstr "\n\t\t\t\tA Friendica fejlesztői nemrég kiadták a(z) %s frissítést, de amikor\n\t\t\t\tmegpróbáltam telepíteni, valami nagyon elromlott.\n\t\t\t\tEzt hamarosan javítani kell, és én nem tudom egyedül elvégezni.\n\t\t\t\tVegye fel a kapcsolatot egy Friendica fejlesztővel, ha egyedül nem\n\t\t\t\ttud nekem segíteni. Az adatbázisunk érvénytelen lehet." -#: src/Core/Update.php:321 +#: src/Core/Update.php:310 #, php-format msgid "The error message is\\n[pre]%s[/pre]" msgstr "A hibaüzenet a következő:\\n[pre]%s[/pre]" -#: src/Core/Update.php:325 src/Core/Update.php:367 +#: src/Core/Update.php:314 src/Core/Update.php:342 msgid "[Friendica Notify] Database update" msgstr "[Friendica értesítés] Adatbázis-frissítés" -#: src/Core/Update.php:361 +#: src/Core/Update.php:336 #, php-format msgid "" "\n" -"\t\t\t\t\tThe friendica database was successfully updated from %s to %s." -msgstr "\n\t\t\t\t\tA Friendica adatbázisa sikeresen frissítve lett: %s → %s." - -#: src/Core/UserImport.php:126 -msgid "Error decoding account file" -msgstr "Hiba a fiókfájl dekódolásakor" - -#: src/Core/UserImport.php:132 -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/Core/UserImport.php:140 -#, php-format -msgid "User '%s' already exists on this server!" -msgstr "„%s” felhasználó már létezik ezen a kiszolgálón!" - -#: src/Core/UserImport.php:176 -msgid "User creation error" -msgstr "Felhasználó-létrehozási hiba" - -#: src/Core/UserImport.php:221 -#, 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/Core/UserImport.php:274 -msgid "User profile creation error" -msgstr "Felhasználóiprofil-létrehozási hiba" - -#: src/Core/UserImport.php:327 -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." +"\t\t\t\tThe friendica database was successfully updated from %s to %s." +msgstr "\n\t\t\t\tA Friendica adatbázisa sikeresen frissítve lett: %s → %s." #: src/Database/DBStructure.php:57 #, php-format @@ -3589,152 +2870,177 @@ msgstr "Belső kiszolgálóhiba" msgid "Legacy module file not found: %s" msgstr "Az örökölt modulfájl nem található: %s" -#: src/Model/Contact.php:1110 src/Model/Contact.php:1121 -msgid "UnFollow" -msgstr "Követés megszüntetése" - -#: src/Model/Contact.php:1127 src/Module/Admin/Users/Pending.php:107 -#: src/Module/Notifications/Introductions.php:130 -#: src/Module/Notifications/Introductions.php:202 +#: src/Model/Contact.php:1226 src/Module/Moderation/Users/Pending.php:102 +#: src/Module/Notifications/Introductions.php:132 +#: src/Module/Notifications/Introductions.php:204 msgid "Approve" msgstr "Jóváhagyás" -#: src/Model/Contact.php:1537 +#: src/Model/Contact.php:1651 msgid "Organisation" msgstr "Szervezet" -#: src/Model/Contact.php:1545 +#: src/Model/Contact.php:1659 msgid "Forum" msgstr "Fórum" -#: src/Model/Contact.php:2634 +#: src/Model/Contact.php:2884 msgid "Disallowed profile URL." msgstr "Nem engedélyezett profil URL." -#: src/Model/Contact.php:2639 src/Module/Friendica.php:81 +#: src/Model/Contact.php:2889 src/Module/Friendica.php:82 msgid "Blocked domain" msgstr "Tiltott tartomány" -#: src/Model/Contact.php:2644 +#: src/Model/Contact.php:2894 msgid "Connect URL missing." msgstr "A kapcsolódási URL hiányzik." -#: src/Model/Contact.php:2653 +#: src/Model/Contact.php:2903 msgid "" "The contact could not be added. Please check the relevant network " "credentials in your Settings -> Social Networks page." msgstr "A partnert nem sikerült hozzáadni. Ellenőrizze a hozzá tartozó hálózat hitelesítési adatait a Beállítások → Közösségi hálózatok oldalon." -#: src/Model/Contact.php:2695 +#: src/Model/Contact.php:2945 msgid "The profile address specified does not provide adequate information." msgstr "A megadott profilcím nem biztosít elegendő információt." -#: src/Model/Contact.php:2697 +#: src/Model/Contact.php:2947 msgid "No compatible communication protocols or feeds were discovered." msgstr "Nem lettek megfelelő kommunikációs protokollok vagy hírforrások felfedezve." -#: src/Model/Contact.php:2700 +#: src/Model/Contact.php:2950 msgid "An author or name was not found." msgstr "Egy szerző vagy név nem található." -#: src/Model/Contact.php:2703 +#: src/Model/Contact.php:2953 msgid "No browser URL could be matched to this address." msgstr "Egyetlen böngésző URL-t sem sikerült illeszteni ehhez a címhez." -#: src/Model/Contact.php:2706 +#: src/Model/Contact.php:2956 msgid "" "Unable to match @-style Identity Address with a known protocol or email " "contact." msgstr "Nem lehet illeszteni @-stílusú személyazonosság-címet egy ismert protokollal vagy e-mailes partnerrel." -#: src/Model/Contact.php:2707 +#: src/Model/Contact.php:2957 msgid "Use mailto: in front of address to force email check." msgstr "Használja a mailto: előtagot a cím előtt az e-mail-ellenőrzés kényszerítéséhez." -#: src/Model/Contact.php:2713 +#: src/Model/Contact.php:2963 msgid "" "The profile address specified belongs to a network which has been disabled " "on this site." msgstr "A megadott profilcím egy olyan hálózathoz tartozik, amely le lett tiltva ezen az oldalon." -#: src/Model/Contact.php:2718 +#: src/Model/Contact.php:2968 msgid "" "Limited profile. This person will be unable to receive direct/personal " "notifications from you." msgstr "Korlátozott profil. Ez a személy nem lesz képes közvetlen vagy személyes értesítéseket fogadni Öntől." -#: src/Model/Contact.php:2777 +#: src/Model/Contact.php:3027 msgid "Unable to retrieve contact information." msgstr "Nem lehet lekérni a partner információit." -#: src/Model/Event.php:52 +#: src/Model/Event.php:54 msgid "l F d, Y \\@ g:i A \\G\\M\\TP (e)" msgstr "Y. F j., l, H:i \\G\\M\\TP (e)" -#: src/Model/Event.php:73 src/Model/Event.php:90 src/Model/Event.php:467 -#: src/Model/Event.php:901 +#: src/Model/Event.php:75 src/Model/Event.php:92 src/Model/Event.php:469 +#: src/Model/Event.php:940 msgid "Starts:" msgstr "Kezdődik:" -#: src/Model/Event.php:76 src/Model/Event.php:96 src/Model/Event.php:468 -#: src/Model/Event.php:905 +#: src/Model/Event.php:78 src/Model/Event.php:98 src/Model/Event.php:470 +#: src/Model/Event.php:944 msgid "Finishes:" msgstr "Befejeződik:" -#: src/Model/Event.php:417 +#: src/Model/Event.php:419 msgid "all-day" msgstr "egész nap" -#: src/Model/Event.php:443 +#: src/Model/Event.php:445 msgid "Sept" msgstr "Szept" -#: src/Model/Event.php:465 +#: src/Model/Event.php:462 src/Module/Calendar/Show.php:126 +#: src/Util/Temporal.php:339 +msgid "today" +msgstr "ma" + +#: src/Model/Event.php:463 src/Module/Calendar/Show.php:127 +#: src/Util/Temporal.php:349 +msgid "month" +msgstr "hónap" + +#: src/Model/Event.php:464 src/Module/Calendar/Show.php:128 +#: src/Util/Temporal.php:350 +msgid "week" +msgstr "hét" + +#: src/Model/Event.php:465 src/Module/Calendar/Show.php:129 +#: src/Util/Temporal.php:351 +msgid "day" +msgstr "nap" + +#: src/Model/Event.php:467 msgid "No events to display" msgstr "Nincsenek megjelenítendő események" -#: src/Model/Event.php:581 +#: src/Model/Event.php:518 src/Module/DFRN/Poll.php:47 src/Module/Feed.php:69 +#: src/Module/Update/Profile.php:55 +msgid "Access to this profile has been restricted." +msgstr "A profilhoz való hozzáférés korlátozva lett." + +#: src/Model/Event.php:559 src/Module/Calendar/Event/Show.php:67 +msgid "Event not found." +msgstr "Az esemény nem található." + +#: src/Model/Event.php:637 msgid "l, F j" msgstr "F j., l" -#: src/Model/Event.php:612 +#: src/Model/Event.php:664 msgid "Edit event" msgstr "Esemény szerkesztése" -#: src/Model/Event.php:613 +#: src/Model/Event.php:665 msgid "Duplicate event" msgstr "Esemény kettőzése" -#: src/Model/Event.php:614 +#: src/Model/Event.php:666 msgid "Delete event" msgstr "Esemény törlése" -#: src/Model/Event.php:857 src/Module/Debug/Localtime.php:38 +#: src/Model/Event.php:896 src/Module/Debug/Localtime.php:38 msgid "l F d, Y \\@ g:i A" msgstr "Y. F j., l, H:i" -#: src/Model/Event.php:858 +#: src/Model/Event.php:897 msgid "D g:i A" msgstr "D H:i" -#: src/Model/Event.php:859 +#: src/Model/Event.php:898 msgid "g:i A" msgstr "H:i" -#: src/Model/Event.php:920 src/Model/Event.php:922 +#: src/Model/Event.php:959 src/Model/Event.php:961 msgid "Show map" msgstr "Térkép megjelenítése" -#: src/Model/Event.php:921 +#: src/Model/Event.php:960 msgid "Hide map" msgstr "Térkép elrejtése" -#: src/Model/Event.php:1014 +#: src/Model/Event.php:1053 #, php-format msgid "%s's birthday" msgstr "%s születésnapja" -#: src/Model/Event.php:1015 +#: src/Model/Event.php:1054 #, php-format msgid "Happy Birthday %s" msgstr "Boldog születésnapot, %s" @@ -3766,7 +3072,7 @@ msgstr "hozzáadás" msgid "Edit group" msgstr "Csoport szerkesztése" -#: src/Model/Group.php:592 src/Module/Group.php:194 +#: src/Model/Group.php:592 src/Module/Group.php:192 msgid "Contacts not in any group" msgstr "Egyetlen csoportban sem lévő partnerek" @@ -3774,8 +3080,8 @@ msgstr "Egyetlen csoportban sem lévő partnerek" msgid "Create a new group" msgstr "Új csoport létrehozása" -#: src/Model/Group.php:595 src/Module/Group.php:179 src/Module/Group.php:202 -#: src/Module/Group.php:277 +#: src/Model/Group.php:595 src/Module/Group.php:177 src/Module/Group.php:200 +#: src/Module/Group.php:275 msgid "Group Name: " msgstr "Csoport neve: " @@ -3783,353 +3089,362 @@ msgstr "Csoport neve: " msgid "Edit groups" msgstr "Csoportok szerkesztése" -#: src/Model/Item.php:1861 +#: src/Model/Item.php:2026 #, php-format msgid "Detected languages in this post:\\n%s" msgstr "A bejegyzésben felismert nyelvek:\\n%s" -#: src/Model/Item.php:2767 +#: src/Model/Item.php:2929 msgid "activity" msgstr "tevékenység" -#: src/Model/Item.php:2769 +#: src/Model/Item.php:2931 msgid "comment" msgstr "hozzászólás" -#: src/Model/Item.php:2772 +#: src/Model/Item.php:2934 msgid "post" msgstr "bejegyzés" -#: src/Model/Item.php:2888 +#: src/Model/Item.php:3077 #, php-format msgid "Content warning: %s" msgstr "Tartalom figyelmeztetés: %s" -#: src/Model/Item.php:3251 +#: src/Model/Item.php:3600 msgid "bytes" msgstr "bájt" -#: src/Model/Item.php:3282 +#: src/Model/Item.php:3631 #, php-format msgid "%2$s (%3$d%%, %1$d vote)" msgid_plural "%2$s (%3$d%%, %1$d votes)" msgstr[0] "%2$s (%3$d%%, %1$d szavazat)" msgstr[1] "%2$s (%3$d%%, %1$d szavazat)" -#: src/Model/Item.php:3284 +#: src/Model/Item.php:3633 #, php-format msgid "%2$s (%1$d vote)" msgid_plural "%2$s (%1$d votes)" msgstr[0] "%2$s (%1$d szavazat)" msgstr[1] "%2$s (%1$d szavazat)" -#: src/Model/Item.php:3289 +#: src/Model/Item.php:3638 #, php-format msgid "%d voter. Poll end: %s" msgid_plural "%d voters. Poll end: %s" msgstr[0] "%d szavazó. A szavazás vége: %s" msgstr[1] "%d szavazó. A szavazás vége: %s" -#: src/Model/Item.php:3291 +#: src/Model/Item.php:3640 #, php-format msgid "%d voter." msgid_plural "%d voters." msgstr[0] "%d szavazó." msgstr[1] "%d szavazó." -#: src/Model/Item.php:3293 +#: src/Model/Item.php:3642 #, php-format msgid "Poll end: %s" msgstr "Szavazás vége: %s" -#: src/Model/Item.php:3327 src/Model/Item.php:3328 +#: src/Model/Item.php:3676 src/Model/Item.php:3677 msgid "View on separate page" msgstr "Megtekintés külön oldalon" -#: src/Model/Mail.php:137 src/Model/Mail.php:265 +#: src/Model/Mail.php:136 src/Model/Mail.php:264 msgid "[no subject]" msgstr "[nincs tárgy]" -#: src/Model/Profile.php:362 src/Module/Profile/Profile.php:256 -#: src/Module/Profile/Profile.php:258 +#: src/Model/Photo.php:1178 src/Module/Media/Photo/Upload.php:198 +msgid "Wall Photos" +msgstr "Falfényképek" + +#: src/Model/Profile.php:361 src/Module/Profile/Profile.php:248 +#: src/Module/Profile/Profile.php:250 msgid "Edit profile" msgstr "Profil szerkesztése" -#: src/Model/Profile.php:364 +#: src/Model/Profile.php:363 msgid "Change profile photo" msgstr "Profilfénykép megváltoztatása" -#: src/Model/Profile.php:377 src/Module/Directory.php:153 -#: src/Module/Profile/Profile.php:184 +#: src/Model/Profile.php:376 src/Module/Directory.php:152 +#: src/Module/Profile/Profile.php:176 msgid "Homepage:" msgstr "Honlap:" -#: src/Model/Profile.php:378 src/Module/Contact/Profile.php:375 -#: src/Module/Notifications/Introductions.php:187 +#: src/Model/Profile.php:377 src/Module/Contact/Profile.php:375 +#: src/Module/Notifications/Introductions.php:189 msgid "About:" msgstr "Névjegy:" -#: src/Model/Profile.php:464 +#: src/Model/Profile.php:467 msgid "Atom feed" msgstr "Atom hírforrás" -#: src/Model/Profile.php:507 +#: src/Model/Profile.php:474 +msgid "This website has been verified to belong to the same person." +msgstr "Ez a weboldal ellenőrizve lett, hogy ugyanahhoz a személyhez tartozik." + +#: src/Model/Profile.php:511 msgid "F d" msgstr "F j." -#: src/Model/Profile.php:571 src/Model/Profile.php:660 +#: src/Model/Profile.php:575 src/Model/Profile.php:664 msgid "[today]" msgstr "[ma]" -#: src/Model/Profile.php:580 +#: src/Model/Profile.php:584 msgid "Birthday Reminders" msgstr "Születésnapi emlékeztetők" -#: src/Model/Profile.php:581 +#: src/Model/Profile.php:585 msgid "Birthdays this week:" msgstr "Születésnapok ezen a héten:" -#: src/Model/Profile.php:609 +#: src/Model/Profile.php:613 msgid "g A l F d" msgstr "F j., l, H" -#: src/Model/Profile.php:647 +#: src/Model/Profile.php:651 msgid "[No description]" msgstr "[Nincs leírás]" -#: src/Model/Profile.php:673 +#: src/Model/Profile.php:677 msgid "Event Reminders" msgstr "Eseményemlékeztetők" -#: src/Model/Profile.php:674 +#: src/Model/Profile.php:678 msgid "Upcoming events the next 7 days:" msgstr "Közelgő események a következő 7 napon:" -#: src/Model/Profile.php:868 +#: src/Model/Profile.php:873 #, php-format msgid "OpenWebAuth: %1$s welcomes %2$s" msgstr "OpenWebAuth: %1$s üdvözli őt: %2$s" -#: src/Model/Profile.php:1008 +#: src/Model/Profile.php:1013 msgid "Hometown:" msgstr "Szülőváros:" -#: src/Model/Profile.php:1009 +#: src/Model/Profile.php:1014 msgid "Marital Status:" msgstr "Családi állapot:" -#: src/Model/Profile.php:1010 +#: src/Model/Profile.php:1015 msgid "With:" msgstr "Ezzel:" -#: src/Model/Profile.php:1011 +#: src/Model/Profile.php:1016 msgid "Since:" msgstr "Ekkortól:" -#: src/Model/Profile.php:1012 +#: src/Model/Profile.php:1017 msgid "Sexual Preference:" msgstr "Szexuális irányultság:" -#: src/Model/Profile.php:1013 +#: src/Model/Profile.php:1018 msgid "Political Views:" msgstr "Politikai nézetek:" -#: src/Model/Profile.php:1014 +#: src/Model/Profile.php:1019 msgid "Religious Views:" msgstr "Vallási néztek:" -#: src/Model/Profile.php:1015 +#: src/Model/Profile.php:1020 msgid "Likes:" msgstr "Kedvelések:" -#: src/Model/Profile.php:1016 +#: src/Model/Profile.php:1021 msgid "Dislikes:" msgstr "Nem kedvelések:" -#: src/Model/Profile.php:1017 +#: src/Model/Profile.php:1022 msgid "Title/Description:" msgstr "Cím vagy leírás:" -#: src/Model/Profile.php:1018 src/Module/Admin/Summary.php:234 +#: src/Model/Profile.php:1023 src/Module/Admin/Summary.php:217 +#: src/Module/Moderation/Summary.php:77 msgid "Summary" msgstr "Összefoglaló" -#: src/Model/Profile.php:1019 +#: src/Model/Profile.php:1024 msgid "Musical interests" msgstr "Zenei érdeklődések" -#: src/Model/Profile.php:1020 +#: src/Model/Profile.php:1025 msgid "Books, literature" msgstr "Könyvek, irodalom" -#: src/Model/Profile.php:1021 +#: src/Model/Profile.php:1026 msgid "Television" msgstr "Televízió" -#: src/Model/Profile.php:1022 +#: src/Model/Profile.php:1027 msgid "Film/dance/culture/entertainment" msgstr "Film, tánc, kultúra, szórakozás" -#: src/Model/Profile.php:1023 +#: src/Model/Profile.php:1028 msgid "Hobbies/Interests" msgstr "Hobbik, érdeklődések" -#: src/Model/Profile.php:1024 +#: src/Model/Profile.php:1029 msgid "Love/romance" msgstr "Szerelem, romantika" -#: src/Model/Profile.php:1025 +#: src/Model/Profile.php:1030 msgid "Work/employment" msgstr "Munka, foglalkoztatás" -#: src/Model/Profile.php:1026 +#: src/Model/Profile.php:1031 msgid "School/education" msgstr "Iskola, oktatás" -#: src/Model/Profile.php:1027 +#: src/Model/Profile.php:1032 msgid "Contact information and Social Networks" msgstr "Partnerinformációk és közösségi hálózatok" -#: src/Model/User.php:212 src/Model/User.php:1085 +#: src/Model/User.php:213 src/Model/User.php:1103 msgid "SERIOUS ERROR: Generation of security keys failed." msgstr "SÚLYOS HIBA: a biztonsági kulcsok előállítása nem sikerült." -#: src/Model/User.php:572 src/Model/User.php:605 +#: src/Model/User.php:571 src/Model/User.php:604 msgid "Login failed" msgstr "Bejelentkezés sikertelen" -#: src/Model/User.php:637 +#: src/Model/User.php:636 msgid "Not enough information to authenticate" msgstr "Nincs elegendő információ a hitelesítéshez" -#: src/Model/User.php:732 +#: src/Model/User.php:753 msgid "Password can't be empty" msgstr "A jelszó nem lehet üres" -#: src/Model/User.php:774 +#: src/Model/User.php:795 msgid "Empty passwords are not allowed." msgstr "Az üres jelszavak nem megengedettek." -#: src/Model/User.php:778 +#: src/Model/User.php:799 msgid "" "The new password has been exposed in a public data dump, please choose " "another." msgstr "Az új jelszót közzétették egy nyilvános adattárban. Válasszon egy másikat." -#: src/Model/User.php:782 +#: src/Model/User.php:803 msgid "The password length is limited to 72 characters." msgstr "A jelszó hossza 72 karakterre van korlátozva." -#: src/Model/User.php:786 +#: src/Model/User.php:807 msgid "" "The password can't contain accentuated letters, white spaces or colons (:)" msgstr "A jelszó nem tartalmazhat ékezetes betűket, üres karaktereket vagy kettőspontot (:)" -#: src/Model/User.php:965 +#: src/Model/User.php:986 msgid "Passwords do not match. Password unchanged." msgstr "A jelszavak nem egyeznek. A jelszó változatlan maradt." -#: src/Model/User.php:972 +#: src/Model/User.php:993 msgid "An invitation is required." msgstr "Egy meghívás szükséges." -#: src/Model/User.php:976 +#: src/Model/User.php:997 msgid "Invitation could not be verified." msgstr "A meghívást nem sikerült ellenőrizni." -#: src/Model/User.php:984 +#: src/Model/User.php:1005 msgid "Invalid OpenID url" msgstr "Érvénytelen OpenID URL" -#: src/Model/User.php:997 src/Security/Authentication.php:240 +#: src/Model/User.php:1018 src/Security/Authentication.php:241 msgid "" "We encountered a problem while logging in with the OpenID you provided. " "Please check the correct spelling of the ID." msgstr "Problémába ütköztünk a megadott OpenID-val történő bejelentkezés közben. Ellenőrizze az azonosító helyesírását." -#: src/Model/User.php:997 src/Security/Authentication.php:240 +#: src/Model/User.php:1018 src/Security/Authentication.php:241 msgid "The error message was:" msgstr "A hibaüzenet ez volt:" -#: src/Model/User.php:1003 +#: src/Model/User.php:1024 msgid "Please enter the required information." msgstr "Adja meg a szükséges információkat." -#: src/Model/User.php:1017 +#: src/Model/User.php:1038 #, php-format msgid "" "system.username_min_length (%s) and system.username_max_length (%s) are " "excluding each other, swapping values." msgstr "A system.username_min_length (%s) és a system.username_max_length (%s) kizárják egymást, értékek felcserélése." -#: src/Model/User.php:1024 +#: src/Model/User.php:1045 #, php-format msgid "Username should be at least %s character." msgid_plural "Username should be at least %s characters." msgstr[0] "A felhasználónévnek legalább %s karakternek kell lennie." msgstr[1] "A felhasználónévnek legalább %s karakternek kell lennie." -#: src/Model/User.php:1028 +#: src/Model/User.php:1049 #, php-format msgid "Username should be at most %s character." msgid_plural "Username should be at most %s characters." msgstr[0] "A felhasználónévnek legfeljebb %s karakternek kell lennie." msgstr[1] "A felhasználónévnek legfeljebb %s karakternek kell lennie." -#: src/Model/User.php:1036 +#: src/Model/User.php:1057 msgid "That doesn't appear to be your full (First Last) name." msgstr "Úgy tűnik, hogy ez nem a teljes neve (vezetéknév és keresztnév)." -#: src/Model/User.php:1041 +#: src/Model/User.php:1062 msgid "Your email domain is not among those allowed on this site." msgstr "Az e-mail tartománya nem tartozik azok közé, amelyek megengedettek ezen az oldalon." -#: src/Model/User.php:1045 +#: src/Model/User.php:1066 msgid "Not a valid email address." msgstr "Nem érvényes e-mail-cím." -#: src/Model/User.php:1048 +#: src/Model/User.php:1069 msgid "The nickname was blocked from registration by the nodes admin." msgstr "A becenevet a csomópont adminisztrátora tiltotta a regisztrációtól." -#: src/Model/User.php:1052 src/Model/User.php:1060 +#: src/Model/User.php:1073 src/Model/User.php:1079 msgid "Cannot use that email." msgstr "Nem lehet használni azt az e-mail-címet." -#: src/Model/User.php:1067 +#: src/Model/User.php:1085 msgid "Your nickname can only contain a-z, 0-9 and _." msgstr "A becenév csak a-z, 0-9 és _ karaktereket tartalmazhat." -#: src/Model/User.php:1075 src/Model/User.php:1132 +#: src/Model/User.php:1093 src/Model/User.php:1150 msgid "Nickname is already registered. Please choose another." msgstr "A becenév már regisztrálva van. Válasszon egy másikat." -#: src/Model/User.php:1119 src/Model/User.php:1123 +#: src/Model/User.php:1137 src/Model/User.php:1141 msgid "An error occurred during registration. Please try again." msgstr "Hiba történt a regisztráció során. Próbálja újra." -#: src/Model/User.php:1146 +#: src/Model/User.php:1164 msgid "An error occurred creating your default profile. Please try again." msgstr "Hiba történt az alapértelmezett profil létrehozásakor. Próbálja újra." -#: src/Model/User.php:1153 +#: src/Model/User.php:1171 msgid "An error occurred creating your self contact. Please try again." msgstr "Hiba történt a saját partnere létrehozásakor. Próbálja újra." -#: src/Model/User.php:1158 +#: src/Model/User.php:1176 msgid "Friends" msgstr "Ismerősök" -#: src/Model/User.php:1162 +#: src/Model/User.php:1180 msgid "" "An error occurred creating your default contact group. Please try again." msgstr "Hiba történt az alapértelmezett partnercsoport létrehozásakor. Próbálja újra." -#: src/Model/User.php:1201 +#: src/Model/User.php:1219 msgid "Profile Photos" msgstr "Profilfényképek" -#: src/Model/User.php:1394 +#: src/Model/User.php:1412 #, php-format msgid "" "\n" @@ -4137,7 +3452,7 @@ msgid "" "\t\t\tthe administrator of %2$s has set up an account for you." msgstr "\n\t\tKedves %1$s!\n\t\t\tA(z) %2$s adminisztrátora beállított egy fiókot Önnek." -#: src/Model/User.php:1397 +#: src/Model/User.php:1415 #, php-format msgid "" "\n" @@ -4164,17 +3479,17 @@ msgid "" "\t\tIf you are new and do not know anybody here, they may help\n" "\t\tyou to make some new and interesting friends.\n" "\n" -"\t\tIf you ever want to delete your account, you can do so at %1$s/removeme\n" +"\t\tIf you ever want to delete your account, you can do so at %1$s/settings/removeme\n" "\n" "\t\tThank you and welcome to %4$s." -msgstr "\n\t\tA bejelentkezés részletei a következők:\n\n\t\tOldal címe:\t%1$s\n\t\tBejelentkezési név:\t\t%2$s\n\t\tJelszó:\t\t%3$s\n\n\t\tA jelszavát a fiókja „Beállítások” oldalán változtathatja meg, miután\n\t\tbejelentkezett.\n\n\t\tSzánjon pár percet a többi fiókbeállítás felülvizsgálatára is azon az oldalon.\n\n\t\tÉrdemes lehet néhány alapvető információt is hozzáadnia az\n\t\talapértelmezett profiljához (a „Profilok” oldalon), azért hogy más\n\t\temberek egyszerűen megtalálják Önt.\n\n\t\tAzt ajánljuk, hogy állítsa be a teljes nevét, adjon hozzá\n\t\tprofilfényképet, adjon hozzá néhány profil „kulcsszót” (nagyon hasznos\n\t\túj ismerősök kereséséhez), valamint talán azt, hogy mely országban él,\n\t\tha nem szeretne annál pontosabbat megadni.\n\n\t\tTeljes mértékben tiszteletben tartjuk az adatvédelemmel kapcsolatos\n\t\tjogát, és ezen elemek egyike sem kötelező. Ha még új itt, és senkit\n\t\tsem ismer, akkor ezek segíthetnek Önnek néhány új és érdekes\n\t\tismerőst találni.\n\n\t\tHa bármikor törölni szeretné a fiókját, akkor megteheti azt a\n\t\tkövetkező címen: %1$s/removeme\n\n\t\t\tKöszönjük, és üdvözöljük a %4$s oldalon." +msgstr "\n\t\tA bejelentkezés részletei a következők:\n\n\t\tOldal címe:\t%1$s\n\t\tBejelentkezési név:\t\t%2$s\n\t\tJelszó:\t\t%3$s\n\n\t\tA jelszavát a fiókja „Beállítások” oldalán változtathatja meg, miután\n\t\tbejelentkezett.\n\n\t\tSzánjon pár percet a többi fiókbeállítás felülvizsgálatára is azon az oldalon.\n\n\t\tÉrdemes lehet néhány alapvető információt is hozzáadnia az\n\t\talapértelmezett profiljához (a „Profilok” oldalon), azért hogy más\n\t\temberek egyszerűen megtalálják Önt.\n\n\t\tAzt ajánljuk, hogy állítsa be a teljes nevét, adjon hozzá\n\t\tprofilfényképet, adjon hozzá néhány profil „kulcsszót” (nagyon hasznos\n\t\túj ismerősök kereséséhez), valamint talán azt, hogy mely országban él,\n\t\tha nem szeretne annál pontosabbat megadni.\n\n\t\tTeljes mértékben tiszteletben tartjuk az adatvédelemmel kapcsolatos\n\t\tjogát, és ezen elemek egyike sem kötelező. Ha még új itt, és senkit\n\t\tsem ismer, akkor ezek segíthetnek Önnek néhány új és érdekes\n\t\tismerőst találni.\n\n\t\tHa bármikor törölni szeretné a fiókját, akkor megteheti azt a\n\t\tkövetkező címen: %1$s/settings/removeme\n\n\t\t\tKöszönjük, és üdvözöljük a %4$s oldalon." -#: src/Model/User.php:1430 src/Model/User.php:1537 +#: src/Model/User.php:1448 src/Model/User.php:1555 #, php-format msgid "Registration details for %s" msgstr "Regisztrációs részletek ehhez: %s" -#: src/Model/User.php:1450 +#: src/Model/User.php:1468 #, php-format msgid "" "\n" @@ -4189,12 +3504,12 @@ msgid "" "\t\t" msgstr "\n\t\t\tKedves %1$s!\n\t\t\t\tKöszönjük, hogy regisztrált itt: %2$s. A fiókja adminisztrátori jóváhagyásra vár.\n\n\t\t\tA bejelentkezés részletei a következők:\n\n\t\t\tOldal címe:\t%3$s\n\t\t\tBejelentkezési név:\t\t%4$s\n\t\t\tJelszó:\t\t%5$s\n\t\t" -#: src/Model/User.php:1469 +#: src/Model/User.php:1487 #, php-format msgid "Registration at %s" msgstr "Regisztráció itt: %s" -#: src/Model/User.php:1493 +#: src/Model/User.php:1511 #, php-format msgid "" "\n" @@ -4203,7 +3518,7 @@ msgid "" "\t\t\t" msgstr "\n\t\t\t\tKedves %1$s!\n\t\t\t\tKöszönjük, hogy regisztrált itt: %2$s. A fiókja létrejött.\n\t\t\t" -#: src/Model/User.php:1501 +#: src/Model/User.php:1519 #, php-format msgid "" "\n" @@ -4230,25 +3545,10 @@ msgid "" "\t\t\tIf you are new and do not know anybody here, they may help\n" "\t\t\tyou to make some new and interesting friends.\n" "\n" -"\t\t\tIf you ever want to delete your account, you can do so at %3$s/removeme\n" +"\t\t\tIf you ever want to delete your account, you can do so at %3$s/settings/removeme\n" "\n" "\t\t\tThank you and welcome to %2$s." -msgstr "\n\t\t\tA bejelentkezés részletei a következők:\n\n\t\t\tOldal címe:\t%3$s\n\t\t\tBejelentkezési név:\t\t%1$s\n\t\t\tJelszó:\t\t%5$s\n\n\t\t\tA jelszavát a fiókja „Beállítások” oldalán változtathatja meg, miután\n\t\t\tbejelentkezett.\n\n\t\t\tSzánjon pár percet a többi fiókbeállítás felülvizsgálatára is azon az oldalon.\n\n\t\t\tÉrdemes lehet néhány alapvető információt is hozzáadnia az\n\t\t\talapértelmezett profiljához (a „Profilok” oldalon), azért hogy más\n\t\t\temberek egyszerűen megtalálják Önt.\n\n\t\t\tAzt ajánljuk, hogy állítsa be a teljes nevét, adjon hozzá\n\t\t\tprofilfényképet, adjon hozzá néhány profil „kulcsszót” (nagyon hasznos\n\t\t\túj ismerősök kereséséhez), valamint talán azt, hogy mely országban él,\n\t\t\tha nem szeretne annál pontosabbat megadni.\n\n\t\t\tTeljes mértékben tiszteletben tartjuk az adatvédelemmel kapcsolatos\n\t\t\tjogát, és ezen elemek egyike sem kötelező. Ha még új itt, és senkit\n\t\t\tsem ismer, akkor ezek segíthetnek Önnek néhány új és érdekes\n\t\t\tismerőst találni.\n\n\t\t\tHa bármikor törölni szeretné a fiókját, akkor megteheti azt a\n\t\t\tkövetkező címen: %3$s/removeme\n\n\t\t\tKöszönjük, és üdvözöljük a %2$s oldalon." - -#: src/Moderation/DomainPatternBlocklist.php:218 -#, php-format -msgid "[%s] Notice of remote server domain pattern block list update" -msgstr "[%s] Értesítés a távoli kiszolgálótartomány-minta tiltólistájának frissítéséről" - -#: src/Moderation/DomainPatternBlocklist.php:220 -#, php-format -msgid "" -"Dear %s,\n" -"\n" -"You are receiving this email because the Friendica node at %s where you are registered as a user updated their remote server domain pattern block list.\n" -"\n" -"Please review the updated list at %s at your earliest convenience." -msgstr "Kedves %s!\n\nAzért kapta ezt az e-mailt, mert a(z) %s címen lévő Friendica csomópont, ahol felhasználóként van regisztrálva, frissítette a távoli kiszolgálótartomány-mintája tiltólistáját.\n\nNézze át a(z) %s címen lévő frissített listát a lehető leghamarabb." +msgstr "\n\t\t\tA bejelentkezés részletei a következők:\n\n\t\t\tOldal címe:\t%3$s\n\t\t\tBejelentkezési név:\t\t%1$s\n\t\t\tJelszó:\t\t%5$s\n\n\t\t\tA jelszavát a fiókja „Beállítások” oldalán változtathatja meg, miután\n\t\t\tbejelentkezett.\n\n\t\t\tSzánjon pár percet a többi fiókbeállítás felülvizsgálatára is azon az oldalon.\n\n\t\t\tÉrdemes lehet néhány alapvető információt is hozzáadnia az\n\t\t\talapértelmezett profiljához (a „Profilok” oldalon), azért hogy más\n\t\t\temberek egyszerűen megtalálják Önt.\n\n\t\t\tAzt ajánljuk, hogy állítsa be a teljes nevét, adjon hozzá\n\t\t\tprofilfényképet, adjon hozzá néhány profil „kulcsszót” (nagyon hasznos\n\t\t\túj ismerősök kereséséhez), valamint talán azt, hogy mely országban él,\n\t\t\tha nem szeretne annál pontosabbat megadni.\n\n\t\t\tTeljes mértékben tiszteletben tartjuk az adatvédelemmel kapcsolatos\n\t\t\tjogát, és ezen elemek egyike sem kötelező. Ha még új itt, és senkit\n\t\t\tsem ismer, akkor ezek segíthetnek Önnek néhány új és érdekes\n\t\t\tismerőst találni.\n\n\t\t\tHa bármikor törölni szeretné a fiókját, akkor megteheti azt a\n\t\t\tkövetkező címen: %3$s/settings/removeme\n\n\t\t\tKöszönjük, és üdvözöljük a %2$s oldalon." #: src/Module/Admin/Addons/Details.php:65 msgid "Addon not found." @@ -4275,27 +3575,20 @@ msgid "Enable" msgstr "Engedélyezés" #: src/Module/Admin/Addons/Details.php:111 -#: src/Module/Admin/Addons/Index.php:67 -#: src/Module/Admin/Blocklist/Contact.php:94 -#: src/Module/Admin/Blocklist/Server/Add.php:121 -#: src/Module/Admin/Blocklist/Server/Import.php:117 -#: src/Module/Admin/Blocklist/Server/Index.php:93 -#: src/Module/Admin/Federation.php:200 src/Module/Admin/Item/Delete.php:64 +#: src/Module/Admin/Addons/Index.php:67 src/Module/Admin/Federation.php:202 #: src/Module/Admin/Logs/Settings.php:79 src/Module/Admin/Logs/View.php:84 -#: src/Module/Admin/Queue.php:72 src/Module/Admin/Site.php:433 -#: src/Module/Admin/Storage.php:138 src/Module/Admin/Summary.php:233 +#: src/Module/Admin/Queue.php:72 src/Module/Admin/Site.php:437 +#: src/Module/Admin/Storage.php:138 src/Module/Admin/Summary.php:216 #: src/Module/Admin/Themes/Details.php:90 -#: src/Module/Admin/Themes/Index.php:111 src/Module/Admin/Tos.php:75 -#: src/Module/Admin/Users/Active.php:136 -#: src/Module/Admin/Users/Blocked.php:137 src/Module/Admin/Users/Create.php:61 -#: src/Module/Admin/Users/Deleted.php:85 src/Module/Admin/Users/Index.php:149 -#: src/Module/Admin/Users/Pending.php:101 +#: 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 msgid "Administration" msgstr "Adminisztráció" #: src/Module/Admin/Addons/Details.php:112 -#: src/Module/Admin/Addons/Index.php:68 src/Module/BaseAdmin.php:96 -#: src/Module/BaseSettings.php:85 +#: src/Module/Admin/Addons/Index.php:68 src/Module/BaseAdmin.php:92 +#: src/Module/BaseSettings.php:134 msgid "Addons" msgstr "Bővítmények" @@ -4323,6 +3616,17 @@ msgstr "Bővítmények újratöltve" msgid "Addon %s failed to install." msgstr "A(z) „%s” bővítmény telepítése sikertelen." +#: src/Module/Admin/Addons/Index.php:69 src/Module/Admin/Features.php:87 +#: src/Module/Admin/Logs/Settings.php:81 src/Module/Admin/Site.php:440 +#: src/Module/Admin/Themes/Index.php:113 src/Module/Admin/Tos.php:86 +#: src/Module/Settings/Account.php:560 src/Module/Settings/Addons.php:81 +#: src/Module/Settings/Connectors.php:159 +#: src/Module/Settings/Connectors.php:244 +#: src/Module/Settings/Delegation.php:169 src/Module/Settings/Display.php:211 +#: src/Module/Settings/Features.php:76 +msgid "Save Settings" +msgstr "Beállítások mentése" + #: src/Module/Admin/Addons/Index.php:70 msgid "Reload active addons" msgstr "Bekapcsolt bővítmények újratöltése" @@ -4335,414 +3639,6 @@ msgid "" " the open addon registry at %2$s" msgstr "Jelenleg nem érhetők el bővítmények az Ön csomópontján. A hivatalos bővítménytároló megtalálható a %1$s oldalon, és esetleg egyéb érdekes bővítményeket is találhat a %2$s címen elérhető nyílt bővítményjegyzékben." -#: src/Module/Admin/BaseUsers.php:54 -msgid "List of all users" -msgstr "Összes felhasználó listája" - -#: src/Module/Admin/BaseUsers.php:59 -msgid "Active" -msgstr "Aktív" - -#: src/Module/Admin/BaseUsers.php:62 -msgid "List of active accounts" -msgstr "Aktív fiókok listája" - -#: src/Module/Admin/BaseUsers.php:67 src/Module/Contact.php:314 -#: src/Module/Contact.php:374 -msgid "Pending" -msgstr "Függőben" - -#: src/Module/Admin/BaseUsers.php:70 -msgid "List of pending registrations" -msgstr "Függőben lévő regisztrációk listája" - -#: src/Module/Admin/BaseUsers.php:75 src/Module/Contact.php:322 -#: src/Module/Contact.php:375 -msgid "Blocked" -msgstr "Tiltva" - -#: src/Module/Admin/BaseUsers.php:78 -msgid "List of blocked users" -msgstr "Tiltott felhasználók listája" - -#: src/Module/Admin/BaseUsers.php:83 -msgid "Deleted" -msgstr "Törölve" - -#: src/Module/Admin/BaseUsers.php:86 -msgid "List of pending user deletions" -msgstr "Függőben lévő felhasználó-törlések listája" - -#: src/Module/Admin/BaseUsers.php:100 src/Module/Settings/Account.php:493 -msgid "Normal Account Page" -msgstr "Normál fiókoldal" - -#: src/Module/Admin/BaseUsers.php:101 src/Module/Settings/Account.php:500 -msgid "Soapbox Page" -msgstr "Szappantartó oldal" - -#: src/Module/Admin/BaseUsers.php:102 src/Module/Settings/Account.php:507 -msgid "Public Forum" -msgstr "Nyilvános fórum" - -#: src/Module/Admin/BaseUsers.php:103 src/Module/Settings/Account.php:514 -msgid "Automatic Friend Page" -msgstr "Automatikus ismerős oldal" - -#: src/Module/Admin/BaseUsers.php:104 -msgid "Private Forum" -msgstr "Személyes fórum" - -#: src/Module/Admin/BaseUsers.php:107 src/Module/Settings/Account.php:465 -msgid "Personal Page" -msgstr "Személyes oldal" - -#: src/Module/Admin/BaseUsers.php:108 src/Module/Settings/Account.php:472 -msgid "Organisation Page" -msgstr "Szervezeti oldal" - -#: src/Module/Admin/BaseUsers.php:109 src/Module/Settings/Account.php:479 -msgid "News Page" -msgstr "Hírek oldal" - -#: src/Module/Admin/BaseUsers.php:110 src/Module/Settings/Account.php:486 -msgid "Community Forum" -msgstr "Közösségi fórum" - -#: src/Module/Admin/BaseUsers.php:111 -msgid "Relay" -msgstr "Továbbítás" - -#: src/Module/Admin/Blocklist/Contact.php:54 -msgid "You can't block a local contact, please block the user instead" -msgstr "Nem tilthat egy helyi partnert, inkább a felhasználót tiltsa" - -#: src/Module/Admin/Blocklist/Contact.php:73 -#, php-format -msgid "%s contact unblocked" -msgid_plural "%s contacts unblocked" -msgstr[0] "%s partner tiltása feloldva" -msgstr[1] "%s partner tiltása feloldva" - -#: src/Module/Admin/Blocklist/Contact.php:95 -msgid "Remote Contact Blocklist" -msgstr "Távoli partnerek tiltólistája" - -#: src/Module/Admin/Blocklist/Contact.php:96 -msgid "" -"This page allows you to prevent any message from a remote contact to reach " -"your node." -msgstr "Ez az oldal lehetővé teszi, hogy megakadályozzon egy távoli partnertől származó minden üzenetet, amely elérné a csomópontját." - -#: src/Module/Admin/Blocklist/Contact.php:97 -msgid "Block Remote Contact" -msgstr "Távoli partner tiltása" - -#: src/Module/Admin/Blocklist/Contact.php:98 -#: src/Module/Admin/Users/Active.php:138 -#: src/Module/Admin/Users/Blocked.php:139 src/Module/Admin/Users/Index.php:151 -#: src/Module/Admin/Users/Pending.php:103 -msgid "select all" -msgstr "összes kijelölése" - -#: src/Module/Admin/Blocklist/Contact.php:99 -msgid "select none" -msgstr "kijelölés törlése" - -#: src/Module/Admin/Blocklist/Contact.php:101 -#: src/Module/Admin/Users/Blocked.php:142 src/Module/Admin/Users/Index.php:156 -#: src/Module/Contact.php:398 src/Module/Contact/Profile.php:348 -#: src/Module/Contact/Profile.php:449 -msgid "Unblock" -msgstr "Tiltás feloldása" - -#: src/Module/Admin/Blocklist/Contact.php:102 -msgid "No remote contact is blocked from this node." -msgstr "Nincs olyan távoli partner, aki tiltva lenne erről a csomópontról." - -#: src/Module/Admin/Blocklist/Contact.php:104 -msgid "Blocked Remote Contacts" -msgstr "Tiltott távoli partnerek" - -#: src/Module/Admin/Blocklist/Contact.php:105 -msgid "Block New Remote Contact" -msgstr "Új távoli partner tiltása" - -#: src/Module/Admin/Blocklist/Contact.php:106 -msgid "Photo" -msgstr "Fénykép" - -#: src/Module/Admin/Blocklist/Contact.php:106 -msgid "Reason" -msgstr "Indok" - -#: src/Module/Admin/Blocklist/Contact.php:114 -#, php-format -msgid "%s total blocked contact" -msgid_plural "%s total blocked contacts" -msgstr[0] "Összesen %s tiltott partner" -msgstr[1] "Összesen %s tiltott partner" - -#: src/Module/Admin/Blocklist/Contact.php:116 -msgid "URL of the remote contact to block." -msgstr "A tiltandó távoli partner URL-je." - -#: src/Module/Admin/Blocklist/Contact.php:117 -msgid "Also purge contact" -msgstr "Távolítsa el a partnert is" - -#: src/Module/Admin/Blocklist/Contact.php:117 -msgid "" -"Removes all content related to this contact from the node. Keeps the contact" -" record. This action cannot be undone." -msgstr "Eltávolítja az ehhez a partnerhez kapcsolódó összes partnert a csomópontról. Megtartja a partner rekordját. Ezt a műveletet nem lehet visszavonni." - -#: src/Module/Admin/Blocklist/Contact.php:118 -#: src/Module/Admin/Blocklist/Server/Import.php:123 -msgid "Block Reason" -msgstr "Tiltás oka" - -#: src/Module/Admin/Blocklist/Server/Add.php:80 -msgid "Server domain pattern added to the blocklist." -msgstr "A tiltólistához hozzáadott kiszolgáló tartománymintája." - -#: src/Module/Admin/Blocklist/Server/Add.php:88 -#, php-format -msgid "%s server scheduled to be purged." -msgid_plural "%s servers scheduled to be purged." -msgstr[0] "%s kiszolgáló van ütemezve eltávolításra." -msgstr[1] "%s kiszolgáló van ütemezve eltávolításra." - -#: src/Module/Admin/Blocklist/Server/Add.php:120 -#: src/Module/Admin/Blocklist/Server/Import.php:116 -msgid "← Return to the list" -msgstr "← Vissza a listához" - -#: src/Module/Admin/Blocklist/Server/Add.php:122 -msgid "Block A New Server Domain Pattern" -msgstr "Új kiszolgálótartomány-minta tiltása" - -#: src/Module/Admin/Blocklist/Server/Add.php:123 -#: src/Module/Admin/Blocklist/Server/Index.php:97 -msgid "" -"

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

\n" -"" -msgstr "

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

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

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

" -msgstr "

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

" - -#: src/Module/Admin/Blocklist/Server/Import.php:120 -#: src/Module/Admin/Blocklist/Server/Index.php:104 -msgid "Upload file" -msgstr "Fájl feltöltése" - -#: src/Module/Admin/Blocklist/Server/Import.php:121 -msgid "Patterns to import" -msgstr "Importálandó minták" - -#: src/Module/Admin/Blocklist/Server/Import.php:122 -msgid "Domain Pattern" -msgstr "Tartományminta" - -#: src/Module/Admin/Blocklist/Server/Import.php:124 -msgid "Import Mode" -msgstr "Mód importálása" - -#: src/Module/Admin/Blocklist/Server/Import.php:125 -msgid "Import Patterns" -msgstr "Minták importálása" - -#: src/Module/Admin/Blocklist/Server/Import.php:126 -#, php-format -msgid "%d total pattern" -msgid_plural "%d total patterns" -msgstr[0] "%d minta összesen" -msgstr[1] "%d minta összesen" - -#: src/Module/Admin/Blocklist/Server/Import.php:128 -#: src/Module/Admin/Blocklist/Server/Index.php:113 -msgid "Server domain pattern blocklist CSV file" -msgstr "Kiszolgálótartomány-minta tiltólista CSV-fájl" - -#: src/Module/Admin/Blocklist/Server/Import.php:129 -msgid "Append" -msgstr "Hozzáfűzés" - -#: src/Module/Admin/Blocklist/Server/Import.php:129 -msgid "" -"Imports patterns from the file that weren't already existing in the current " -"blocklist." -msgstr "Olyan mintákat importál a fájlból, amelyek még nem léteztek a jelenlegi tiltólistán." - -#: src/Module/Admin/Blocklist/Server/Import.php:130 -msgid "Replace" -msgstr "Csere" - -#: src/Module/Admin/Blocklist/Server/Import.php:130 -msgid "Replaces the current blocklist by the imported patterns." -msgstr "Lecseréli a jelenlegi tiltólistát az importált mintákkal." - -#: src/Module/Admin/Blocklist/Server/Index.php:84 -#: src/Module/Admin/Blocklist/Server/Index.php:108 -msgid "Blocked server domain pattern" -msgstr "Tiltott kiszolgálótartomány-minta" - -#: src/Module/Admin/Blocklist/Server/Index.php:85 -#: src/Module/Admin/Blocklist/Server/Index.php:109 src/Module/Friendica.php:82 -msgid "Reason for the block" -msgstr "A tiltás oka" - -#: src/Module/Admin/Blocklist/Server/Index.php:86 -msgid "Delete server domain pattern" -msgstr "Kiszolgálótartomány-minta törlése" - -#: src/Module/Admin/Blocklist/Server/Index.php:86 -msgid "Check to delete this entry from the blocklist" -msgstr "Jelölje be a bejegyzés tiltólistából való törléséhez" - -#: src/Module/Admin/Blocklist/Server/Index.php:94 -msgid "Server Domain Pattern Blocklist" -msgstr "Kiszolgálótartomány-minta tiltólistája" - -#: src/Module/Admin/Blocklist/Server/Index.php:95 -msgid "" -"This page can be used to define a blocklist of server domain patterns from " -"the federated network that are not allowed to interact with your node. For " -"each domain pattern you should also provide the reason why you block it." -msgstr "Ez az oldal használható a föderált hálózatból származó azon kiszolgálótartomány-minták tiltólistájának meghatározásához, amelyeknek nem engedélyezett kapcsolatba lépniük az Ön csomópontjával. Minden egyes tartománymintához meg kell adnia az indokot is, hogy miért tiltja azt." - -#: src/Module/Admin/Blocklist/Server/Index.php:96 -msgid "" -"The list of blocked server domain patterns will be made publically available" -" on the /friendica page so that your users and " -"people investigating communication problems can find the reason easily." -msgstr "A tiltott kiszolgálótartomány-minták listája nyilvánosan elérhetővé lesz téve a /friendica oldalon, azért hogy a kommunikációs problémákat kivizsgáló felhasználók és emberek egyszerűen megtalálják az okot." - -#: src/Module/Admin/Blocklist/Server/Index.php:102 -msgid "Import server domain pattern blocklist" -msgstr "Kiszolgálótartomány-minta tiltólistájának importálása" - -#: src/Module/Admin/Blocklist/Server/Index.php:103 -msgid "Add new entry to the blocklist" -msgstr "Új bejegyzés hozzáadása a tiltólistához" - -#: src/Module/Admin/Blocklist/Server/Index.php:106 -msgid "Save changes to the blocklist" -msgstr "Változtatások mentése a tiltólistába" - -#: src/Module/Admin/Blocklist/Server/Index.php:107 -msgid "Current Entries in the Blocklist" -msgstr "Jelenlegi bejegyzések a tiltólistán" - -#: src/Module/Admin/Blocklist/Server/Index.php:110 -msgid "Delete entry from the blocklist" -msgstr "Bejegyzés törlése a tiltólistáról" - -#: src/Module/Admin/Blocklist/Server/Index.php:111 -msgid "Delete entry from the blocklist?" -msgstr "Törli a bejegyzést a tiltólistáról?" - #: src/Module/Admin/DBSync.php:51 msgid "Update has been marked successful" msgstr "A frissítés sikeresen meg lett jelölve" @@ -4811,75 +3707,75 @@ msgstr "%s funkció zárolása" msgid "Manage Additional Features" msgstr "További funkciók kezelése" -#: src/Module/Admin/Federation.php:68 +#: src/Module/Admin/Federation.php:70 msgid "Other" msgstr "Egyéb" -#: src/Module/Admin/Federation.php:140 src/Module/Admin/Federation.php:389 +#: src/Module/Admin/Federation.php:142 src/Module/Admin/Federation.php:391 msgid "unknown" msgstr "ismeretlen" -#: src/Module/Admin/Federation.php:173 +#: src/Module/Admin/Federation.php:175 #, php-format msgid "%2$s total system" msgid_plural "%2$s total systems" msgstr[0] "%2$s rendszer összesen" msgstr[1] "%2$s rendszer összesen" -#: src/Module/Admin/Federation.php:174 +#: src/Module/Admin/Federation.php:176 #, php-format msgid "%2$s active user last month" msgid_plural "%2$s active users last month" msgstr[0] "%2$s aktív felhasználó az elmúlt hónapban" msgstr[1] "%2$s aktív felhasználó az elmúlt hónapban" -#: src/Module/Admin/Federation.php:175 +#: src/Module/Admin/Federation.php:177 #, php-format msgid "%2$s active user last six months" msgid_plural "%2$s active users last six months" msgstr[0] "%2$s aktív felhasználó az elmúlt hat hónapban" msgstr[1] "%2$s aktív felhasználó az elmúlt hat hónapban" -#: src/Module/Admin/Federation.php:176 +#: src/Module/Admin/Federation.php:178 #, php-format msgid "%2$s registered user" msgid_plural "%2$s registered users" msgstr[0] "%2$s regisztrált felhasználó" msgstr[1] "%2$s regisztrált felhasználó" -#: src/Module/Admin/Federation.php:177 +#: src/Module/Admin/Federation.php:179 #, php-format msgid "%2$s locally created post or comment" msgid_plural "%2$s locally created posts and comments" msgstr[0] "%2$s helyileg létrehozott bejegyzés vagy hozzászólás" msgstr[1] "%2$s helyileg létrehozott bejegyzés és hozzászólás" -#: src/Module/Admin/Federation.php:180 +#: src/Module/Admin/Federation.php:182 #, php-format msgid "%2$s post per user" msgid_plural "%2$s posts per user" msgstr[0] "%2$s bejegyzés felhasználónként" msgstr[1] "%2$s bejegyzés felhasználónként" -#: src/Module/Admin/Federation.php:185 +#: src/Module/Admin/Federation.php:187 #, php-format msgid "%2$s user per system" msgid_plural "%2$s users per system" msgstr[0] "%2$s felhasználó rendszerenként" msgstr[1] "%2$s felhasználó rendszerenként" -#: src/Module/Admin/Federation.php:195 +#: src/Module/Admin/Federation.php:197 msgid "" "This page offers you some numbers to the known part of the federated social " "network your Friendica node is part of. These numbers are not complete but " "only reflect the part of the network your node is aware of." msgstr "Ez az oldal néhány számadatot nyújt a föderált közösségi hálózat azon ismert részéhez, amelynek része az Ön Friendica csomópontja. Ezek a számok nem teljesek, hanem csak a hálózat azon részét tükrözik, amelyről a csomópontja tud." -#: src/Module/Admin/Federation.php:201 src/Module/BaseAdmin.php:90 +#: src/Module/Admin/Federation.php:203 src/Module/BaseAdmin.php:87 msgid "Federation Statistics" msgstr "Föderációs statisztikák" -#: src/Module/Admin/Federation.php:205 +#: src/Module/Admin/Federation.php:207 #, php-format msgid "" "Currently this node is aware of %2$s node (%3$s active users last month, " @@ -4892,84 +3788,6 @@ msgid_plural "" msgstr[0] "Jelenleg erről a csomópontról %2$s csomópontnak van tudomása (%3$s aktív felhasználóval az elmúlt hónapban, %4$s aktív felhasználóval az elmúlt hat hónapban, összesen %5$s regisztrált felhasználóval) a következő platformokról:" msgstr[1] "Jelenleg erről a csomópontról %2$s csomópontnak van tudomása (%3$s aktív felhasználóval az elmúlt hónapban, %4$s aktív felhasználóval az elmúlt hat hónapban, összesen %5$s regisztrált felhasználóval) a következő platformokról:" -#: src/Module/Admin/Item/Delete.php:53 -msgid "Item marked for deletion." -msgstr "Az elem megjelölve törlésre." - -#: src/Module/Admin/Item/Delete.php:65 src/Module/BaseAdmin.php:109 -msgid "Delete Item" -msgstr "Elem törlése" - -#: src/Module/Admin/Item/Delete.php:66 -msgid "Delete this Item" -msgstr "Az elem törlése" - -#: src/Module/Admin/Item/Delete.php:67 -msgid "" -"On this page you can delete an item from your node. If the item is a top " -"level posting, the entire thread will be deleted." -msgstr "Ezen az oldalon törölhet egy elemet a csomópontjáról. Ha az elem egy felső szintű beküldés, akkor a teljes szál törlésre fog kerülni." - -#: src/Module/Admin/Item/Delete.php:68 -msgid "" -"You need to know the GUID of the item. You can find it e.g. by looking at " -"the display URL. The last part of http://example.com/display/123456 is the " -"GUID, here 123456." -msgstr "Tudnia kell az elem GUID értékét. Ezt megtalálhatja például a megjelenített URL-re tekintve. A http://example.com/display/123456 utolsó része a GUID, itt az 123456." - -#: src/Module/Admin/Item/Delete.php:69 -msgid "GUID" -msgstr "GUID" - -#: src/Module/Admin/Item/Delete.php:69 -msgid "The GUID of the item you want to delete." -msgstr "Annak az elemnek GUID értéke, amelyet törölni szeretne." - -#: src/Module/Admin/Item/Source.php:53 src/Module/BaseAdmin.php:119 -msgid "Item Source" -msgstr "Elem forrása" - -#: src/Module/Admin/Item/Source.php:54 -msgid "Item Guid" -msgstr "Elem GUID értéke" - -#: src/Module/Admin/Item/Source.php:58 -msgid "Item Id" -msgstr "Elemazonosító" - -#: src/Module/Admin/Item/Source.php:59 -msgid "Item URI" -msgstr "Elem URI" - -#: src/Module/Admin/Item/Source.php:61 -msgid "Terms" -msgstr "Kifejezések" - -#: src/Module/Admin/Item/Source.php:62 -msgid "Tag" -msgstr "Címke" - -#: src/Module/Admin/Item/Source.php:63 src/Module/Admin/Users/Active.php:129 -#: src/Module/Admin/Users/Blocked.php:130 src/Module/Admin/Users/Index.php:142 -msgid "Type" -msgstr "Típus" - -#: src/Module/Admin/Item/Source.php:64 -msgid "Term" -msgstr "Kifejezés" - -#: src/Module/Admin/Item/Source.php:65 -msgid "URL" -msgstr "URL" - -#: src/Module/Admin/Item/Source.php:66 -msgid "Mention" -msgstr "Említés" - -#: src/Module/Admin/Item/Source.php:67 -msgid "Implicit Mention" -msgstr "Implicit említés" - #: src/Module/Admin/Logs/Settings.php:47 #, php-format msgid "The logfile '%s' is not writable. No logging possible" @@ -4983,8 +3801,8 @@ msgstr "A PHP-naplózás jelenleg engedélyezve van." msgid "PHP log currently disabled." msgstr "A PHP-naplózás jelenleg le van tiltva." -#: src/Module/Admin/Logs/Settings.php:80 src/Module/BaseAdmin.php:111 -#: src/Module/BaseAdmin.php:112 +#: src/Module/Admin/Logs/Settings.php:80 src/Module/BaseAdmin.php:102 +#: src/Module/BaseAdmin.php:103 msgid "Logs" msgstr "Naplók" @@ -5037,7 +3855,7 @@ msgid "" "is readable." msgstr "Nem sikerült megnyitni a(z) %1$s naplófájlt.
Ellenőrizze, hogy a(z) „%1$s” fájl olvasható-e." -#: src/Module/Admin/Logs/View.php:85 src/Module/BaseAdmin.php:113 +#: src/Module/Admin/Logs/View.php:85 src/Module/BaseAdmin.php:104 msgid "View Logs" msgstr "Naplók megtekintése" @@ -5046,7 +3864,7 @@ msgid "Search in logs" msgstr "Keresés a naplókban" #: src/Module/Admin/Logs/View.php:89 -#: src/Module/Notifications/Notifications.php:139 +#: src/Module/Notifications/Notifications.php:140 msgid "Show all" msgstr "Összes megjelenítése" @@ -5074,6 +3892,10 @@ msgstr "Részletek megtekintése" msgid "Click to view details" msgstr "Kattintson a részletek megtekintéséhez" +#: src/Module/Admin/Logs/View.php:97 src/Module/Calendar/Event/Form.php:207 +msgid "Event details" +msgstr "Esemény részletei" + #: src/Module/Admin/Logs/View.php:98 msgid "Data" msgstr "Adatok" @@ -5139,463 +3961,479 @@ msgstr "Parancs" msgid "Job Parameters" msgstr "Feladat paraméterei" +#: src/Module/Admin/Queue.php:78 src/Module/Settings/OAuth.php:75 +msgid "Created" +msgstr "Létrehozva" + #: src/Module/Admin/Queue.php:79 msgid "Priority" msgstr "Prioritás" -#: src/Module/Admin/Site.php:338 src/Module/Settings/Display.php:138 +#: src/Module/Admin/Site.php:247 +#, php-format +msgid "%s is no valid input for maximum image size" +msgstr "A(z) %s nem érvényes bemenet a legnagyobb képmérethez" + +#: src/Module/Admin/Site.php:342 src/Module/Settings/Display.php:141 msgid "No special theme for mobile devices" msgstr "Nincs különleges téma a mobil eszközökhöz" -#: src/Module/Admin/Site.php:355 src/Module/Settings/Display.php:148 +#: src/Module/Admin/Site.php:359 src/Module/Settings/Display.php:151 #, php-format msgid "%s - (Experimental)" msgstr "%s – (kísérleti)" -#: src/Module/Admin/Site.php:367 -msgid "No community page for local users" -msgstr "Nincs közösségi oldal a helyi felhasználókhoz" - -#: src/Module/Admin/Site.php:368 +#: src/Module/Admin/Site.php:371 msgid "No community page" msgstr "Nincs közösségi oldal" -#: src/Module/Admin/Site.php:369 +#: src/Module/Admin/Site.php:372 +msgid "No community page for visitors" +msgstr "Nincs közösségi oldal a látogatóknak" + +#: src/Module/Admin/Site.php:373 msgid "Public postings from users of this site" msgstr "Nyilvános beküldések ezen oldal felhasználóitól" -#: src/Module/Admin/Site.php:370 +#: src/Module/Admin/Site.php:374 msgid "Public postings from the federated network" msgstr "Nyilvános beküldések a föderált hálózatból" -#: src/Module/Admin/Site.php:371 +#: src/Module/Admin/Site.php:375 msgid "Public postings from local users and the federated network" msgstr "Nyilvános beküldések a helyi felhasználóktól és a föderált hálózatból" -#: src/Module/Admin/Site.php:377 +#: src/Module/Admin/Site.php:381 msgid "Multi user instance" msgstr "Többfelhasználós példány" -#: src/Module/Admin/Site.php:404 +#: src/Module/Admin/Site.php:408 msgid "Closed" msgstr "Lezárva" -#: src/Module/Admin/Site.php:405 +#: src/Module/Admin/Site.php:409 msgid "Requires approval" msgstr "Jóváhagyást igényel" -#: src/Module/Admin/Site.php:406 +#: src/Module/Admin/Site.php:410 msgid "Open" msgstr "Nyitott" -#: src/Module/Admin/Site.php:410 src/Module/Install.php:222 +#: src/Module/Admin/Site.php:414 src/Module/Install.php:222 msgid "No SSL policy, links will track page SSL state" msgstr "Nincs SSL irányelv, a hivatkozások követik az oldal SSL állapotát" -#: src/Module/Admin/Site.php:411 src/Module/Install.php:223 +#: src/Module/Admin/Site.php:415 src/Module/Install.php:223 msgid "Force all links to use SSL" msgstr "Az összes hivatkozás kényszerítése SSL használatára" -#: src/Module/Admin/Site.php:412 src/Module/Install.php:224 +#: src/Module/Admin/Site.php:416 src/Module/Install.php:224 msgid "Self-signed certificate, use SSL for local links only (discouraged)" msgstr "Önaláírt tanúsítvány, SSL használata csak helyi hivatkozásoknál (nem ajánlott)" -#: src/Module/Admin/Site.php:416 +#: src/Module/Admin/Site.php:420 msgid "Don't check" msgstr "Ne ellenőrizze" -#: src/Module/Admin/Site.php:417 +#: src/Module/Admin/Site.php:421 msgid "check the stable version" msgstr "a stabil verzió ellenőrzése" -#: src/Module/Admin/Site.php:418 +#: src/Module/Admin/Site.php:422 msgid "check the development version" msgstr "a fejlesztői verzió ellenőrzése" -#: src/Module/Admin/Site.php:422 +#: src/Module/Admin/Site.php:426 msgid "none" msgstr "nincs" -#: src/Module/Admin/Site.php:423 +#: src/Module/Admin/Site.php:427 msgid "Local contacts" msgstr "Helyi partnerek" -#: src/Module/Admin/Site.php:424 +#: src/Module/Admin/Site.php:428 msgid "Interactors" msgstr "Interaktorok" -#: src/Module/Admin/Site.php:434 src/Module/BaseAdmin.php:93 +#: src/Module/Admin/Site.php:438 src/Module/BaseAdmin.php:90 msgid "Site" msgstr "Oldal" -#: src/Module/Admin/Site.php:435 +#: src/Module/Admin/Site.php:439 msgid "General Information" msgstr "Általános információk" -#: src/Module/Admin/Site.php:437 +#: src/Module/Admin/Site.php:441 msgid "Republish users to directory" msgstr "Felhasználók újra közzé tétele a könyvtárba" -#: src/Module/Admin/Site.php:438 src/Module/Register.php:152 +#: src/Module/Admin/Site.php:442 src/Module/Register.php:152 msgid "Registration" msgstr "Regisztráció" -#: src/Module/Admin/Site.php:439 +#: src/Module/Admin/Site.php:443 msgid "File upload" msgstr "Fájlfeltöltés" -#: src/Module/Admin/Site.php:440 +#: src/Module/Admin/Site.php:444 msgid "Policies" msgstr "Irányelvek" -#: src/Module/Admin/Site.php:442 +#: src/Module/Admin/Site.php:445 src/Module/Calendar/Event/Form.php:252 +#: src/Module/Contact.php:477 src/Module/Profile/Profile.php:241 +msgid "Advanced" +msgstr "Speciális" + +#: src/Module/Admin/Site.php:446 msgid "Auto Discovered Contact Directory" msgstr "Automatikusan felfedezett partnerkönyvtár" -#: src/Module/Admin/Site.php:443 +#: src/Module/Admin/Site.php:447 msgid "Performance" msgstr "Teljesítmény" -#: src/Module/Admin/Site.php:444 +#: src/Module/Admin/Site.php:448 msgid "Worker" msgstr "Feldolgozó" -#: src/Module/Admin/Site.php:445 +#: src/Module/Admin/Site.php:449 msgid "Message Relay" msgstr "Üzenettovábbítás" -#: src/Module/Admin/Site.php:446 +#: src/Module/Admin/Site.php:450 msgid "" "Use the command \"console relay\" in the command line to add or remove " "relays." msgstr "Használja a „console relay” parancsot a parancssorban a továbbítók hozzáadásához vagy eltávolításához." -#: src/Module/Admin/Site.php:447 +#: src/Module/Admin/Site.php:451 msgid "The system is not subscribed to any relays at the moment." msgstr "A rendszer jelenleg nincs feliratkozva semmilyen továbbítóra sem." -#: src/Module/Admin/Site.php:448 +#: src/Module/Admin/Site.php:452 msgid "The system is currently subscribed to the following relays:" msgstr "A rendszer jelenleg a következő továbbítókra van feliratkozva:" -#: src/Module/Admin/Site.php:450 +#: src/Module/Admin/Site.php:454 msgid "Relocate Node" msgstr "Csomópont áthelyezése" -#: src/Module/Admin/Site.php:451 +#: src/Module/Admin/Site.php:455 msgid "" "Relocating your node enables you to change the DNS domain of this node and " "keep all the existing users and posts. This process takes a while and can " "only be started from the relocate console command like this:" msgstr "A csomópont áthelyezése lehetővé teszi a csomópont DNS-tartományának megváltoztatását, valamint az összes meglévő felhasználó és bejegyzés megtartását. Ez a folyamat eltart egy ideig, és csak az áthelyezés konzolparanccsal indítható el az alábbi módon:" -#: src/Module/Admin/Site.php:452 +#: src/Module/Admin/Site.php:456 msgid "(Friendica directory)# bin/console relocate https://newdomain.com" msgstr "(Friendica könyvtár)# bin/console relocate https://uj-tartomany.hu" -#: src/Module/Admin/Site.php:456 +#: src/Module/Admin/Site.php:460 msgid "Site name" msgstr "Oldal neve" -#: src/Module/Admin/Site.php:457 +#: src/Module/Admin/Site.php:461 msgid "Sender Email" msgstr "Küldő e-mail-címe" -#: src/Module/Admin/Site.php:457 +#: src/Module/Admin/Site.php:461 msgid "" "The email address your server shall use to send notification emails from." msgstr "Az az e-mail-cím, amelyet a kiszolgáló használhat az értesítési e-mailek kiküldéséhez." -#: src/Module/Admin/Site.php:458 +#: src/Module/Admin/Site.php:462 msgid "Name of the system actor" msgstr "A rendszer szereplőjének neve" -#: src/Module/Admin/Site.php:458 +#: src/Module/Admin/Site.php:462 msgid "" "Name of the internal system account that is used to perform ActivityPub " "requests. This must be an unused username. If set, this can't be changed " "again." msgstr "A belső rendszerfiók neve, amely az ActivityPub kérések végrehajtásához lesz használva. Ennek egy nem használt felhasználónévnek kell lennie. Ha be van állítva, akkor ez nem változtatható meg újra." -#: src/Module/Admin/Site.php:459 +#: src/Module/Admin/Site.php:463 msgid "Banner/Logo" msgstr "Reklámcsík vagy logó" -#: src/Module/Admin/Site.php:460 +#: src/Module/Admin/Site.php:464 msgid "Email Banner/Logo" msgstr "E-mail reklámcsík vagy logó" -#: src/Module/Admin/Site.php:461 +#: src/Module/Admin/Site.php:465 msgid "Shortcut icon" msgstr "Böngészőikon" -#: src/Module/Admin/Site.php:461 +#: src/Module/Admin/Site.php:465 msgid "Link to an icon that will be used for browsers." msgstr "Hivatkozás egy ikonra, amely a böngészőknél lesz használva." -#: src/Module/Admin/Site.php:462 +#: src/Module/Admin/Site.php:466 msgid "Touch icon" msgstr "Érintő ikon" -#: src/Module/Admin/Site.php:462 +#: src/Module/Admin/Site.php:466 msgid "Link to an icon that will be used for tablets and mobiles." msgstr "Hivatkozás egy ikonra, amely táblagépeknél és mobiltelefonoknál lesz használva." -#: src/Module/Admin/Site.php:463 +#: src/Module/Admin/Site.php:467 msgid "Additional Info" msgstr "További információk" -#: src/Module/Admin/Site.php:463 +#: src/Module/Admin/Site.php:467 #, php-format msgid "" "For public servers: you can add additional information here that will be " "listed at %s/servers." msgstr "Nyilvános kiszolgálóknál: itt adhat meg további információkat, amelyek a %s/servers oldalon lesznek felsorolva." -#: src/Module/Admin/Site.php:464 +#: src/Module/Admin/Site.php:468 msgid "System language" msgstr "Rendszer nyelve" -#: src/Module/Admin/Site.php:465 +#: src/Module/Admin/Site.php:469 msgid "System theme" msgstr "Rendszer témája" -#: src/Module/Admin/Site.php:465 +#: src/Module/Admin/Site.php:469 #, php-format msgid "" "Default system theme - may be over-ridden by user profiles - Change default theme settings" msgstr "Alapértelmezett rendszertéma – a felhasználói profilok felülbírálhatják – alapértelmezett témabeállítások megváltoztatása." -#: src/Module/Admin/Site.php:466 +#: src/Module/Admin/Site.php:470 msgid "Mobile system theme" msgstr "Mobilrendszer témája" -#: src/Module/Admin/Site.php:466 +#: src/Module/Admin/Site.php:470 msgid "Theme for mobile devices" msgstr "Téma a mobil eszközökhöz." -#: src/Module/Admin/Site.php:467 src/Module/Install.php:232 +#: src/Module/Admin/Site.php:471 src/Module/Install.php:232 msgid "SSL link policy" msgstr "SSL-hivatkozás irányelve" -#: src/Module/Admin/Site.php:467 src/Module/Install.php:234 +#: src/Module/Admin/Site.php:471 src/Module/Install.php:234 msgid "Determines whether generated links should be forced to use SSL" msgstr "Meghatározza, hogy az előállított hivatkozásokat kényszeríteni kell-e SSL használatára." -#: src/Module/Admin/Site.php:468 +#: src/Module/Admin/Site.php:472 msgid "Force SSL" msgstr "SSL kényszerítése" -#: src/Module/Admin/Site.php:468 +#: src/Module/Admin/Site.php:472 msgid "" "Force all Non-SSL requests to SSL - Attention: on some systems it could lead" " to endless loops." msgstr "Az összes nem SSL kérés SSL-re kényszerítése – Figyelem: néhány rendszeren végtelen hurkokat eredményezhet." -#: src/Module/Admin/Site.php:469 +#: src/Module/Admin/Site.php:473 msgid "Show help entry from navigation menu" msgstr "Súgó bejegyzés megjelenítése a navigációs menüből" -#: src/Module/Admin/Site.php:469 +#: src/Module/Admin/Site.php:473 msgid "" "Displays the menu entry for the Help pages from the navigation menu. It is " "always accessible by calling /help directly." msgstr "Megjeleníti a súgóoldalak menübejegyzését a navigációs menüből. Ez mindig elérhető a „/help” közvetlen meghívásával." -#: src/Module/Admin/Site.php:470 +#: src/Module/Admin/Site.php:474 msgid "Single user instance" msgstr "Egyfelhasználós példány" -#: src/Module/Admin/Site.php:470 +#: src/Module/Admin/Site.php:474 msgid "Make this instance multi-user or single-user for the named user" msgstr "Többfelhasználóssá vagy a megnevezett felhasználó számára egyfelhasználóssá teszi ezt a rendszert." -#: src/Module/Admin/Site.php:472 +#: src/Module/Admin/Site.php:476 msgid "Maximum image size" msgstr "Legnagyobb képméret" -#: src/Module/Admin/Site.php:472 +#: src/Module/Admin/Site.php:476 +#, php-format msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "A feltöltött képek legnagyobb mérete bájtban. Alapértelmezetten 0, ami azt jelenti, hogy nincs korlát." +"Maximum size in bytes of uploaded images. Default is 0, which means no limits. You can put k, m, or g behind the desired value for KiB, MiB, GiB, respectively.\n" +"\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:473 +#: src/Module/Admin/Site.php:480 msgid "Maximum image length" msgstr "Legnagyobb képhossz" -#: src/Module/Admin/Site.php:473 +#: src/Module/Admin/Site.php:480 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:474 +#: src/Module/Admin/Site.php:481 msgid "JPEG image quality" msgstr "JPEG-képek minősége" -#: src/Module/Admin/Site.php:474 +#: src/Module/Admin/Site.php:481 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:476 +#: src/Module/Admin/Site.php:483 msgid "Register policy" msgstr "Regisztrációs irányelv" -#: src/Module/Admin/Site.php:477 +#: src/Module/Admin/Site.php:484 msgid "Maximum Daily Registrations" msgstr "Legtöbb napi regisztráció" -#: src/Module/Admin/Site.php:477 +#: src/Module/Admin/Site.php:484 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:478 +#: src/Module/Admin/Site.php:485 msgid "Register text" msgstr "Regisztrációs szöveg" -#: src/Module/Admin/Site.php:478 +#: src/Module/Admin/Site.php:485 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:479 +#: src/Module/Admin/Site.php:486 msgid "Forbidden Nicknames" msgstr "Tiltott becenevek" -#: src/Module/Admin/Site.php:479 +#: src/Module/Admin/Site.php:486 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:480 +#: src/Module/Admin/Site.php:487 msgid "Accounts abandoned after x days" msgstr "Fiókok elhagyottak X nap után" -#: src/Module/Admin/Site.php:480 +#: src/Module/Admin/Site.php:487 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:481 +#: src/Module/Admin/Site.php:488 msgid "Allowed friend domains" msgstr "Engedélyezett ismerőstartományok" -#: src/Module/Admin/Site.php:481 +#: src/Module/Admin/Site.php:488 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:482 +#: src/Module/Admin/Site.php:489 msgid "Allowed email domains" msgstr "Engedélyezett e-mail-tartományok" -#: src/Module/Admin/Site.php:482 +#: src/Module/Admin/Site.php:489 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:483 +#: src/Module/Admin/Site.php:490 msgid "No OEmbed rich content" msgstr "Nincs OEmbed gazdag tartalom" -#: src/Module/Admin/Site.php:483 +#: src/Module/Admin/Site.php:490 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:484 +#: src/Module/Admin/Site.php:491 msgid "Trusted third-party domains" msgstr "Megbízható harmadik fél tartományok" -#: src/Module/Admin/Site.php:484 +#: src/Module/Admin/Site.php:491 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:485 +#: src/Module/Admin/Site.php:492 msgid "Block public" msgstr "Nyilvános tiltása" -#: src/Module/Admin/Site.php:485 +#: src/Module/Admin/Site.php:492 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:486 +#: src/Module/Admin/Site.php:493 msgid "Force publish" msgstr "Közzététel kényszerítése" -#: src/Module/Admin/Site.php:486 +#: src/Module/Admin/Site.php:493 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:486 +#: src/Module/Admin/Site.php:493 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:487 +#: src/Module/Admin/Site.php:494 msgid "Global directory URL" msgstr "Globális könyvtár URL" -#: src/Module/Admin/Site.php:487 +#: src/Module/Admin/Site.php:494 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:488 +#: src/Module/Admin/Site.php:495 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:488 +#: src/Module/Admin/Site.php:495 msgid "" "Set default post permissions for all new members to the default privacy " "group rather than public." msgstr "Az összes új tag alapértelmezett bejegyzés-jogosultságainak beállítása az alapértelmezett adatvédelmi csoportra a nyilvános helyett." -#: src/Module/Admin/Site.php:489 +#: src/Module/Admin/Site.php:496 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:489 +#: src/Module/Admin/Site.php:496 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:490 +#: src/Module/Admin/Site.php:497 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:490 +#: src/Module/Admin/Site.php:497 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:491 +#: src/Module/Admin/Site.php:498 msgid "Don't embed private images in posts" msgstr "Ne ágyazzon be személyes képeket a bejegyzésekbe" -#: src/Module/Admin/Site.php:491 +#: src/Module/Admin/Site.php:498 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 " @@ -5603,11 +4441,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:492 +#: src/Module/Admin/Site.php:499 msgid "Explicit Content" msgstr "Felnőtteknek szánt tartalom" -#: src/Module/Admin/Site.php:492 +#: src/Module/Admin/Site.php:499 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 " @@ -5616,257 +4454,267 @@ 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:493 +#: src/Module/Admin/Site.php:500 msgid "Proxify external content" msgstr "Külső tartalom proxyzása" -#: src/Module/Admin/Site.php:493 +#: src/Module/Admin/Site.php:500 msgid "" "Route external content via the proxy functionality. This is used for example" " for some OEmbed accesses and in some other rare cases." msgstr "Külső tartalom átirányítása a proxy funkción keresztül. Ezt például néhány OEmbed-hozzáférésnél és egyéb ritka esetekben használják." -#: src/Module/Admin/Site.php:494 +#: src/Module/Admin/Site.php:501 msgid "Cache contact avatars" msgstr "Partnerprofilképek gyorsítótárazása" -#: src/Module/Admin/Site.php:494 +#: src/Module/Admin/Site.php:501 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:495 +#: src/Module/Admin/Site.php:502 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:495 +#: src/Module/Admin/Site.php:502 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:496 +#: src/Module/Admin/Site.php:503 msgid "Enable multiple registrations" msgstr "Többszörös regisztrációk engedélyezése" -#: src/Module/Admin/Site.php:496 +#: src/Module/Admin/Site.php:503 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:497 +#: src/Module/Admin/Site.php:504 msgid "Enable OpenID" msgstr "OpenID engedélyezése" -#: src/Module/Admin/Site.php:497 +#: src/Module/Admin/Site.php:504 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:498 +#: src/Module/Admin/Site.php:505 msgid "Enable Fullname check" msgstr "Teljes név ellenőrzésének engedélyezése" -#: src/Module/Admin/Site.php:498 +#: src/Module/Admin/Site.php:505 msgid "" "Enable check to only allow users to register with a space between the first " "name and the last name in their full name." msgstr "Lehetővé teszi annak ellenőrzését, hogy a felhasználóknak csak a teljes nevükben lévő vezetéknév és a keresztnév közti szóközzel legyen lehetőségük regisztrálniuk." -#: src/Module/Admin/Site.php:499 +#: src/Module/Admin/Site.php:506 +msgid "Email administrators on new registration" +msgstr "E-mail küldése az adminisztrátoroknak új regisztrációkor" + +#: src/Module/Admin/Site.php:506 +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:507 msgid "Community pages for visitors" msgstr "Közösségi oldalak a látogatók számára" -#: src/Module/Admin/Site.php:499 +#: src/Module/Admin/Site.php:507 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:500 +#: src/Module/Admin/Site.php:508 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:500 +#: src/Module/Admin/Site.php:508 msgid "" "The maximum number of posts per user on the community page. (Not valid for " "\"Global Community\")" msgstr "A felhasználónkénti bejegyzések legnagyobb száma a közösségi oldalon (nem érvényes a „globális közösségnél”)." -#: src/Module/Admin/Site.php:502 +#: src/Module/Admin/Site.php:510 msgid "Enable Mail support" msgstr "Levelezési támogatás engedélyezése" -#: src/Module/Admin/Site.php:502 +#: src/Module/Admin/Site.php:510 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:503 +#: src/Module/Admin/Site.php:511 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:504 +#: src/Module/Admin/Site.php:512 msgid "Enable OStatus support" msgstr "OStatus támogatás engedélyezése" -#: src/Module/Admin/Site.php:504 +#: src/Module/Admin/Site.php:512 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:506 +#: src/Module/Admin/Site.php:514 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:507 +#: src/Module/Admin/Site.php:515 msgid "Enable Diaspora support" msgstr "Diaspora támogatás engedélyezése" -#: src/Module/Admin/Site.php:507 +#: src/Module/Admin/Site.php:515 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:508 +#: src/Module/Admin/Site.php:516 msgid "Verify SSL" msgstr "SSL ellenőrzése" -#: src/Module/Admin/Site.php:508 +#: src/Module/Admin/Site.php:516 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:509 +#: src/Module/Admin/Site.php:517 msgid "Proxy user" msgstr "Proxy felhasználó" -#: src/Module/Admin/Site.php:509 +#: src/Module/Admin/Site.php:517 msgid "User name for the proxy server." msgstr "Felhasználónév a proxy-kiszolgálóhoz." -#: src/Module/Admin/Site.php:510 +#: src/Module/Admin/Site.php:518 msgid "Proxy URL" msgstr "Proxy URL" -#: src/Module/Admin/Site.php:510 +#: src/Module/Admin/Site.php:518 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-ét." -#: src/Module/Admin/Site.php:511 +#: src/Module/Admin/Site.php:519 msgid "Network timeout" msgstr "Hálózati időkorlát" -#: src/Module/Admin/Site.php:511 +#: src/Module/Admin/Site.php:519 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:512 +#: src/Module/Admin/Site.php:520 msgid "Maximum Load Average" msgstr "Legnagyobb terhelésátlag" -#: src/Module/Admin/Site.php:512 +#: src/Module/Admin/Site.php:520 #, 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:513 +#: src/Module/Admin/Site.php:521 msgid "Minimal Memory" msgstr "Legkevesebb memória" -#: src/Module/Admin/Site.php:513 +#: src/Module/Admin/Site.php:521 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:514 +#: src/Module/Admin/Site.php:522 msgid "Periodically optimize tables" msgstr "Táblák időszakos optimalizálása" -#: src/Module/Admin/Site.php:514 +#: src/Module/Admin/Site.php:522 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:516 +#: src/Module/Admin/Site.php:524 msgid "Discover followers/followings from contacts" msgstr "Követők vagy követések felfedezése a partnerekből" -#: src/Module/Admin/Site.php:516 +#: src/Module/Admin/Site.php:524 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:517 +#: src/Module/Admin/Site.php:525 msgid "None - deactivated" msgstr "Nincs: ki van kapcsolva." -#: src/Module/Admin/Site.php:518 +#: src/Module/Admin/Site.php:526 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:519 +#: src/Module/Admin/Site.php:527 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:521 +#: src/Module/Admin/Site.php:529 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:521 +#: src/Module/Admin/Site.php:529 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:523 +#: src/Module/Admin/Site.php:531 msgid "Days between requery" msgstr "Ismételt lekérdezések közti napok" -#: src/Module/Admin/Site.php:523 +#: src/Module/Admin/Site.php:531 msgid "Number of days after which a server is requeried for his contacts." msgstr "A napok száma, amely után egy kiszolgáló ismét lekérdezésre kerül a partnereiért." -#: src/Module/Admin/Site.php:524 +#: src/Module/Admin/Site.php:532 msgid "Discover contacts from other servers" msgstr "Partnerek felfedezése más kiszolgálókról" -#: src/Module/Admin/Site.php:524 +#: src/Module/Admin/Site.php:532 msgid "" "Periodically query other servers for contacts. The system queries Friendica," " Mastodon and Hubzilla servers." msgstr "Más kiszolgálók időszakos lekérdezése partnerek után. A rendszer Friendica, Mastodon és Hubzilla kiszolgálókat kérdez le." -#: src/Module/Admin/Site.php:525 +#: src/Module/Admin/Site.php:533 msgid "Search the local directory" msgstr "A helyi könyvtár keresése" -#: src/Module/Admin/Site.php:525 +#: src/Module/Admin/Site.php:533 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:527 +#: src/Module/Admin/Site.php:535 msgid "Publish server information" msgstr "Kiszolgálóinformációk közzététele" -#: src/Module/Admin/Site.php:527 +#: src/Module/Admin/Site.php:535 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 " @@ -5874,50 +4722,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:529 +#: src/Module/Admin/Site.php:537 msgid "Check upstream version" msgstr "Távoli verzió ellenőrzése" -#: src/Module/Admin/Site.php:529 +#: src/Module/Admin/Site.php:537 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:530 +#: src/Module/Admin/Site.php:538 msgid "Suppress Tags" msgstr "Címkék letiltása" -#: src/Module/Admin/Site.php:530 +#: src/Module/Admin/Site.php:538 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:531 +#: src/Module/Admin/Site.php:539 msgid "Clean database" msgstr "Adatbázis tisztítása" -#: src/Module/Admin/Site.php:531 +#: src/Module/Admin/Site.php:539 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:532 +#: src/Module/Admin/Site.php:540 msgid "Lifespan of remote items" msgstr "Távoli elemek élettartama" -#: src/Module/Admin/Site.php:532 +#: src/Module/Admin/Site.php:540 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:533 +#: src/Module/Admin/Site.php:541 msgid "Lifespan of unclaimed items" msgstr "Nem igényelt elemek élettartama" -#: src/Module/Admin/Site.php:533 +#: src/Module/Admin/Site.php:541 msgid "" "When the database cleanup is enabled, this defines the days after which " "unclaimed remote items (mostly content from the relay) will be deleted. " @@ -5925,144 +4773,144 @@ 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:534 +#: src/Module/Admin/Site.php:542 msgid "Lifespan of raw conversation data" msgstr "Nyers beszélgetési adatok élettartama" -#: src/Module/Admin/Site.php:534 +#: src/Module/Admin/Site.php:542 msgid "" "The conversation data is used for ActivityPub and OStatus, as well as for " "debug purposes. It should be safe to remove it after 14 days, default is 90 " "days." msgstr "A beszélgetési adatok az ActivityPub és az OStatus hálózatoknál, valamint hibakeresési célokhoz vannak használva. Biztonságosan el lehet távolítani azokat 14 nap után. Alapértelmezetten 90 nap." -#: src/Module/Admin/Site.php:535 +#: src/Module/Admin/Site.php:543 msgid "Maximum numbers of comments per post" msgstr "Bejegyzésenkénti hozzászólások legnagyobb száma" -#: src/Module/Admin/Site.php:535 +#: src/Module/Admin/Site.php:543 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:536 +#: src/Module/Admin/Site.php:544 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:536 +#: src/Module/Admin/Site.php:544 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:537 +#: src/Module/Admin/Site.php:545 msgid "Temp path" msgstr "Ideiglenes mappa útvonala" -#: src/Module/Admin/Site.php:537 +#: src/Module/Admin/Site.php:545 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:538 +#: src/Module/Admin/Site.php:546 msgid "Only search in tags" msgstr "Keresés csak címkékben" -#: src/Module/Admin/Site.php:538 +#: src/Module/Admin/Site.php:546 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:539 +#: src/Module/Admin/Site.php:547 msgid "Generate counts per contact group when calculating network count" msgstr "Partnercsoportonkénti számlálások előállítása a hálózatszám kiszámításakor" -#: src/Module/Admin/Site.php:539 +#: src/Module/Admin/Site.php:547 msgid "" "On systems with users that heavily use contact groups the query can be very " "expensive." msgstr "Olyan rendszereken, ahol a felhasználók nagymértékben használják a partnercsoportokat, a lekérdezés nagyon költséges lehet." -#: src/Module/Admin/Site.php:541 +#: src/Module/Admin/Site.php:549 msgid "Maximum number of parallel workers" msgstr "Párhuzamos feldolgozók legnagyobb száma" -#: src/Module/Admin/Site.php:541 +#: src/Module/Admin/Site.php:549 #, 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:542 +#: src/Module/Admin/Site.php:550 msgid "Enable fastlane" msgstr "Prioritásos sor engedélyezése" -#: src/Module/Admin/Site.php:542 +#: src/Module/Admin/Site.php:550 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:544 +#: src/Module/Admin/Site.php:552 msgid "Direct relay transfer" msgstr "Közvetlen továbbító-átvitel" -#: src/Module/Admin/Site.php:544 +#: src/Module/Admin/Site.php:552 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:545 +#: src/Module/Admin/Site.php:553 msgid "Relay scope" msgstr "Továbbítás hatóköre" -#: src/Module/Admin/Site.php:545 +#: src/Module/Admin/Site.php:553 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:545 src/Module/Contact/Profile.php:273 -#: src/Module/Settings/TwoFactor/Index.php:126 +#: src/Module/Admin/Site.php:553 src/Module/Contact/Profile.php:274 +#: src/Module/Settings/TwoFactor/Index.php:125 msgid "Disabled" msgstr "Letiltva" -#: src/Module/Admin/Site.php:545 +#: src/Module/Admin/Site.php:553 msgid "all" msgstr "összes" -#: src/Module/Admin/Site.php:545 +#: src/Module/Admin/Site.php:553 msgid "tags" msgstr "címkék" -#: src/Module/Admin/Site.php:546 +#: src/Module/Admin/Site.php:554 msgid "Server tags" msgstr "Kiszolgálócímkék" -#: src/Module/Admin/Site.php:546 +#: src/Module/Admin/Site.php:554 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:547 +#: src/Module/Admin/Site.php:555 msgid "Deny Server tags" msgstr "Kiszolgálócímkék megtagadása" -#: src/Module/Admin/Site.php:547 +#: src/Module/Admin/Site.php:555 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:548 +#: src/Module/Admin/Site.php:556 msgid "Allow user tags" msgstr "Felhasználói címkék engedélyezése" -#: src/Module/Admin/Site.php:548 +#: src/Module/Admin/Site.php:556 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:551 +#: src/Module/Admin/Site.php:559 msgid "Start Relocation" msgstr "Áthelyezés indítása" @@ -6088,7 +4936,7 @@ msgstr "Jelenlegi tároló háttérprogram" msgid "Storage Configuration" msgstr "Tároló beállításai" -#: src/Module/Admin/Storage.php:141 src/Module/BaseAdmin.php:94 +#: src/Module/Admin/Storage.php:141 src/Module/BaseAdmin.php:91 msgid "Storage" msgstr "Tároló" @@ -6112,12 +4960,12 @@ msgstr "Ennek a háttérprogramnak nincsenek egyéni beállításai" msgid "Database (legacy)" msgstr "Adatbázis (örökölt)" -#: src/Module/Admin/Summary.php:54 +#: src/Module/Admin/Summary.php:56 #, php-format msgid "Template engine (%s) error: %s" msgstr "Sablonmotor (%s) hiba: %s" -#: src/Module/Admin/Summary.php:58 +#: src/Module/Admin/Summary.php:60 #, php-format msgid "" "Your DB still runs with MyISAM tables. You should change the engine type to " @@ -6128,7 +4976,7 @@ msgid "" " an automatic conversion.
" msgstr "Az adatbázisa még mindig MyISAM táblákkal fut. Meg kell változtatnia a motor típusát InnoDB-re. Mivel a Friendica a jövőben olyan funkciókat fog használni, amely csak InnoDB használatával érhető el, ezért meg kell változtatnia! Nézze meg ezt az útmutatót, amely hasznos lehet a táblamotorok átalakításához. Használhatja a Friendica telepítésének php bin/console.php dbstructure toinnodb parancsát is az automatikus átalakításhoz.
" -#: src/Module/Admin/Summary.php:63 +#: src/Module/Admin/Summary.php:65 #, php-format msgid "" "Your DB still runs with InnoDB tables in the Antelope file format. You " @@ -6139,7 +4987,7 @@ msgid "" " installation for an automatic conversion.
" msgstr "Az adatbázisa még mindig Antelope fájlformátumban lévő InnoDB táblákkal fut. Meg kell változtatnia a fájlformátumot Barracudára. A Friendica olyan funkciókat használ, amelyeket az Antelope fájlformátum nem biztosít. Nézze meg ezt az útmutatót, amely hasznos lehet a táblamotorok átalakításához. Használhatja a Friendica telepítésének php bin/console.php dbstructure toinnodb parancsát is az automatikus átalakításhoz.
" -#: src/Module/Admin/Summary.php:73 +#: src/Module/Admin/Summary.php:75 #, php-format msgid "" "Your table_definition_cache is too low (%d). This can lead to the database " @@ -6147,39 +4995,39 @@ msgid "" " to %d. See here for more information.
" msgstr "A table_definition_cache értéke túl alacsony (%d). Ez a „Prepared statement needs to be re-prepared” adatbázishibához vezethet. Állítsa legalább %d értékre. További információkért nézze meg ezt.
" -#: src/Module/Admin/Summary.php:83 +#: src/Module/Admin/Summary.php:85 #, php-format msgid "" "There is a new version of Friendica available for download. Your current " "version is %1$s, upstream version is %2$s" msgstr "Elérhető a Friendica új verziója a letöltéshez. A jelenlegi verziója %1$s, a távoli verzió %2$s." -#: src/Module/Admin/Summary.php:92 +#: src/Module/Admin/Summary.php:94 msgid "" "The database update failed. Please run \"php bin/console.php dbstructure " "update\" from the command line and have a look at the errors that might " "appear." msgstr "Az adatbázis frissítése sikertelen. Futtassa a „php bin/console.php dbstructure update” parancsot a parancssorból, és nézze meg a hibákat, amelyek esetleg megjelennek." -#: src/Module/Admin/Summary.php:96 +#: src/Module/Admin/Summary.php:98 msgid "" "The last update failed. Please run \"php bin/console.php dbstructure " "update\" from the command line and have a look at the errors that might " "appear. (Some of the errors are possibly inside the logfile.)" msgstr "A legutóbbi frissítés sikertelen. Futtassa a „php bin/console.php dbstructure update” parancsot a parancssorból, és nézze meg a hibákat, amelyek esetleg megjelennek (néhány hiba valószínűleg a naplófájlban lesz)." -#: src/Module/Admin/Summary.php:101 +#: src/Module/Admin/Summary.php:103 msgid "The worker was never executed. Please check your database structure!" msgstr "A feldolgozó sosem lett végrehajtva. Ellenőrizze az adatbázis szerkezetét!" -#: src/Module/Admin/Summary.php:103 +#: src/Module/Admin/Summary.php:105 #, php-format msgid "" "The last worker execution was on %s UTC. This is older than one hour. Please" " check your crontab settings." msgstr "Az utolsó feldolgozó-végrehajtás ideje %s volt (UTC szerint). Ez régebbi mint egy óra. Ellenőrizze a cron-feladat beállításait." -#: src/Module/Admin/Summary.php:108 +#: src/Module/Admin/Summary.php:110 #, php-format msgid "" "Friendica's configuration now is stored in config/local.config.php, please " @@ -6188,7 +5036,7 @@ msgid "" "help with the transition." msgstr "A Friendica beállításai most a „config/local.config.php” fájlban vannak eltárolva. Másolja le a „config/local-sample.config.php” fájlt, és helyezze át a beállításokat a .htconfig.php fájlból. Az átvitelhez való segítségért nézze meg a beállítások súgóoldalát." -#: src/Module/Admin/Summary.php:112 +#: src/Module/Admin/Summary.php:114 #, php-format msgid "" "Friendica's configuration now is stored in config/local.config.php, please " @@ -6197,7 +5045,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:118 +#: src/Module/Admin/Summary.php:120 #, php-format msgid "" "%s is not reachable on your system. This is a severe " @@ -6205,83 +5053,51 @@ 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:136 +#: src/Module/Admin/Summary.php:138 #, php-format msgid "The logfile '%s' is not usable. No logging possible (error: '%s')" msgstr "A(z) „%s” naplófájl nem használható. Nem lehetséges a naplózás (hiba: „%s”)." -#: src/Module/Admin/Summary.php:150 +#: src/Module/Admin/Summary.php:152 #, php-format msgid "" "The debug logfile '%s' is not usable. No logging possible (error: '%s')" msgstr "A(z) „%s” hibakeresési naplófájl nem használható. Nem lehetséges a naplózás (hiba: „%s”)." -#: src/Module/Admin/Summary.php:166 +#: src/Module/Admin/Summary.php:168 #, 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:174 +#: src/Module/Admin/Summary.php:176 #, 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:182 +#: src/Module/Admin/Summary.php:184 #, 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:189 -msgid "Normal Account" -msgstr "Normál fiók" - -#: src/Module/Admin/Summary.php:190 -msgid "Automatic Follower Account" -msgstr "Automatikusan követő fiók" - -#: src/Module/Admin/Summary.php:191 -msgid "Public Forum Account" -msgstr "Nyilvános fórum fiók" - -#: src/Module/Admin/Summary.php:192 -msgid "Automatic Friend Account" -msgstr "Automatikus ismerős fiók" - -#: src/Module/Admin/Summary.php:193 -msgid "Blog Account" -msgstr "Blog fiók" - -#: src/Module/Admin/Summary.php:194 -msgid "Private Forum Account" -msgstr "Személyes fórumfiók" - -#: src/Module/Admin/Summary.php:214 +#: src/Module/Admin/Summary.php:195 msgid "Message queues" msgstr "Üzenet várakozási sorai" -#: src/Module/Admin/Summary.php:220 +#: src/Module/Admin/Summary.php:201 msgid "Server Settings" msgstr "Kiszolgálóbeállítások" -#: src/Module/Admin/Summary.php:236 -msgid "Registered users" -msgstr "Regisztrált felhasználók" - -#: src/Module/Admin/Summary.php:238 -msgid "Pending registrations" -msgstr "Függőben lévő regisztrációk" - -#: src/Module/Admin/Summary.php:239 +#: src/Module/Admin/Summary.php:219 msgid "Version" msgstr "Verzió" -#: src/Module/Admin/Summary.php:243 +#: src/Module/Admin/Summary.php:223 msgid "Active addons" msgstr "Bekapcsolt bővítmények" @@ -6305,7 +5121,7 @@ msgid "Screenshot" msgstr "Képernyőkép" #: src/Module/Admin/Themes/Details.php:91 -#: src/Module/Admin/Themes/Index.php:112 src/Module/BaseAdmin.php:97 +#: src/Module/Admin/Themes/Index.php:112 src/Module/BaseAdmin.php:93 msgid "Themes" msgstr "Témák" @@ -6334,21 +5150,21 @@ msgstr "[Kísérleti]" msgid "[Unsupported]" msgstr "[Nem támogatott]" -#: src/Module/Admin/Tos.php:77 +#: src/Module/Admin/Tos.php:79 msgid "Display Terms of Service" msgstr "Használati feltételek megjelenítése" -#: src/Module/Admin/Tos.php:77 +#: src/Module/Admin/Tos.php:79 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:78 +#: src/Module/Admin/Tos.php:80 msgid "Display Privacy Statement" msgstr "Adatvédelmi nyilatkozatok megjelenítése" -#: src/Module/Admin/Tos.php:78 +#: src/Module/Admin/Tos.php:80 #, php-format msgid "" "Show some informations regarding the needed information to operate the node " @@ -6356,215 +5172,34 @@ 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:79 +#: src/Module/Admin/Tos.php:81 msgid "Privacy Statement Preview" msgstr "Adatvédelmi nyilatkozat előnézete" -#: src/Module/Admin/Tos.php:81 +#: src/Module/Admin/Tos.php:83 msgid "The Terms of Service" msgstr "A használati feltételek" -#: src/Module/Admin/Tos.php:81 +#: src/Module/Admin/Tos.php:83 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/Users/Active.php:45 src/Module/Admin/Users/Index.php:45 -#, 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/Admin/Tos.php:84 +msgid "The rules" +msgstr "A szabályok" -#: src/Module/Admin/Users/Active.php:53 src/Module/Admin/Users/Active.php:88 -#: src/Module/Admin/Users/Blocked.php:54 src/Module/Admin/Users/Blocked.php:89 -#: src/Module/Admin/Users/Index.php:60 src/Module/Admin/Users/Index.php:95 -msgid "You can't remove yourself" -msgstr "Nem távolíthatja el önmagát" +#: src/Module/Admin/Tos.php:84 +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/Admin/Users/Active.php:57 src/Module/Admin/Users/Blocked.php:58 -#: src/Module/Admin/Users/Index.php:64 -#, 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/Admin/Users/Active.php:86 src/Module/Admin/Users/Blocked.php:87 -#: src/Module/Admin/Users/Index.php:93 -#, php-format -msgid "User \"%s\" deleted" -msgstr "„%s” felhasználó törölve" - -#: src/Module/Admin/Users/Active.php:96 src/Module/Admin/Users/Index.php:103 -#, php-format -msgid "User \"%s\" blocked" -msgstr "„%s” felhasználó tiltva" - -#: src/Module/Admin/Users/Active.php:129 -#: src/Module/Admin/Users/Blocked.php:130 -#: src/Module/Admin/Users/Deleted.php:88 src/Module/Admin/Users/Index.php:142 -#: src/Module/Admin/Users/Index.php:162 -msgid "Register date" -msgstr "Regisztráció dátuma" - -#: src/Module/Admin/Users/Active.php:129 -#: src/Module/Admin/Users/Blocked.php:130 -#: src/Module/Admin/Users/Deleted.php:88 src/Module/Admin/Users/Index.php:142 -#: src/Module/Admin/Users/Index.php:162 -msgid "Last login" -msgstr "Utolsó bejelentkezés" - -#: src/Module/Admin/Users/Active.php:129 -#: src/Module/Admin/Users/Blocked.php:130 -#: src/Module/Admin/Users/Deleted.php:88 src/Module/Admin/Users/Index.php:142 -#: src/Module/Admin/Users/Index.php:162 -msgid "Last public item" -msgstr "Utolsó nyilvános elem" - -#: src/Module/Admin/Users/Active.php:137 -msgid "Active Accounts" -msgstr "Aktív fiókok" - -#: src/Module/Admin/Users/Active.php:141 -#: src/Module/Admin/Users/Blocked.php:141 src/Module/Admin/Users/Index.php:155 -msgid "User blocked" -msgstr "Felhasználó tiltva" - -#: src/Module/Admin/Users/Active.php:142 -#: src/Module/Admin/Users/Blocked.php:143 src/Module/Admin/Users/Index.php:157 -msgid "Site admin" -msgstr "Oldal adminisztrátor" - -#: src/Module/Admin/Users/Active.php:143 -#: src/Module/Admin/Users/Blocked.php:144 src/Module/Admin/Users/Index.php:158 -msgid "Account expired" -msgstr "A fiók lejárt" - -#: src/Module/Admin/Users/Active.php:144 src/Module/Admin/Users/Index.php:161 -msgid "Create a new user" -msgstr "Új felhasználó létrehozása" - -#: src/Module/Admin/Users/Active.php:150 -#: src/Module/Admin/Users/Blocked.php:150 src/Module/Admin/Users/Index.php:167 -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/Admin/Users/Active.php:151 -#: src/Module/Admin/Users/Blocked.php:151 src/Module/Admin/Users/Index.php:168 -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/Admin/Users/Blocked.php:46 src/Module/Admin/Users/Index.php:52 -#, 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/Admin/Users/Blocked.php:96 src/Module/Admin/Users/Index.php:109 -#, php-format -msgid "User \"%s\" unblocked" -msgstr "„%s” felhasználó tiltása feloldva" - -#: src/Module/Admin/Users/Blocked.php:138 -msgid "Blocked Users" -msgstr "Tiltott felhasználók" - -#: src/Module/Admin/Users/Create.php:62 -msgid "New User" -msgstr "Új felhasználó" - -#: src/Module/Admin/Users/Create.php:63 -msgid "Add User" -msgstr "Felhasználó hozzáadása" - -#: src/Module/Admin/Users/Create.php:71 -msgid "Name of the new user." -msgstr "Az új felhasználó neve." - -#: src/Module/Admin/Users/Create.php:72 -msgid "Nickname" -msgstr "Becenév" - -#: src/Module/Admin/Users/Create.php:72 -msgid "Nickname of the new user." -msgstr "Az új felhasználó beceneve." - -#: src/Module/Admin/Users/Create.php:73 -msgid "Email address of the new user." -msgstr "Az új felhasználó e-mail-címe." - -#: src/Module/Admin/Users/Deleted.php:86 -msgid "Users awaiting permanent deletion" -msgstr "Végleges törlésre váró felhasználók" - -#: src/Module/Admin/Users/Deleted.php:88 src/Module/Admin/Users/Index.php:162 -msgid "Permanent deletion" -msgstr "Végleges törlés" - -#: src/Module/Admin/Users/Index.php:150 src/Module/Admin/Users/Index.php:160 -#: src/Module/BaseAdmin.php:95 -msgid "Users" -msgstr "Felhasználók" - -#: src/Module/Admin/Users/Index.php:152 -msgid "User waiting for permanent deletion" -msgstr "Végleges törlésre váró felhasználó" - -#: src/Module/Admin/Users/Pending.php:48 -#, 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/Admin/Users/Pending.php:55 -#, 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/Admin/Users/Pending.php:81 -msgid "Account approved." -msgstr "Fiók jóváhagyva." - -#: src/Module/Admin/Users/Pending.php:87 -msgid "Registration revoked" -msgstr "Regisztráció visszavonva" - -#: src/Module/Admin/Users/Pending.php:102 -msgid "User registrations awaiting review" -msgstr "Felülvizsgálatra váró felhasználói regisztrációk" - -#: src/Module/Admin/Users/Pending.php:104 -msgid "Request date" -msgstr "Kérés dátuma" - -#: src/Module/Admin/Users/Pending.php:105 -msgid "No registrations." -msgstr "Nincsenek regisztrációk." - -#: src/Module/Admin/Users/Pending.php:106 -msgid "Note from the user" -msgstr "Jegyzet a felhasználótól" - -#: src/Module/Admin/Users/Pending.php:108 -msgid "Deny" -msgstr "Elutasítás" - -#: src/Module/Api/ApiResponse.php:272 +#: src/Module/Api/ApiResponse.php:279 #, php-format msgid "API endpoint %s %s is not implemented" msgstr "A(z) %s %s API-végpont nincs megvalósítva" -#: src/Module/Api/ApiResponse.php:273 +#: src/Module/Api/ApiResponse.php:280 msgid "" "The API endpoint is currently not implemented but might be in the future." msgstr "Az API-végpont jelenleg nincs megvalósítva, de ez változhat a jövőben." @@ -6577,7 +5212,7 @@ msgstr "Hiányzó paraméterek" msgid "Only starting posts can be bookmarked" msgstr "Csak a kezdeti bejegyzéseket lehet könyvjelzőzni" -#: src/Module/Api/Mastodon/Statuses/Mute.php:50 +#: src/Module/Api/Mastodon/Statuses/Mute.php:51 msgid "Only starting posts can be muted" msgstr "Csak a kezdeti bejegyzéseket lehet némítani" @@ -6590,7 +5225,7 @@ msgstr "%s bejegyzéseit nem lehet megosztani" 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:50 +#: src/Module/Api/Mastodon/Statuses/Unmute.php:51 msgid "Only starting posts can be unmuted" msgstr "Csak a kezdeti bejegyzéseket némítását lehet megszüntetni" @@ -6603,117 +5238,106 @@ msgstr "%s bejegyzéseinek megosztását nem lehet visszavonni" msgid "Contact not found" msgstr "A partner nem található" -#: src/Module/Apps.php:54 +#: src/Module/Apps.php:55 msgid "No installed applications." msgstr "Nincsenek telepített alkalmazások." -#: src/Module/Apps.php:59 +#: src/Module/Apps.php:60 msgid "Applications" msgstr "Alkalmazások" -#: src/Module/Attach.php:50 src/Module/Attach.php:62 +#: src/Module/Attach.php:49 src/Module/Attach.php:61 msgid "Item was not found." msgstr "Az elem nem található." -#: src/Module/BaseAdmin.php:57 src/Module/BaseAdmin.php:61 +#: src/Module/BaseAdmin.php:54 src/Module/BaseAdmin.php:58 +#: src/Module/BaseModeration.php:77 src/Module/BaseModeration.php:81 msgid "Please login to continue." msgstr "Jelentkezzen be a folytatáshoz." -#: src/Module/BaseAdmin.php:66 +#: src/Module/BaseAdmin.php:63 src/Module/BaseModeration.php:86 msgid "You don't have access to administration pages." msgstr "Nincs hozzáférése az adminisztrációs oldalakhoz." -#: src/Module/BaseAdmin.php:70 +#: src/Module/BaseAdmin.php:67 src/Module/BaseModeration.php:90 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:89 +#: src/Module/BaseAdmin.php:86 src/Module/BaseModeration.php:109 msgid "Overview" msgstr "Áttekintő" -#: src/Module/BaseAdmin.php:92 +#: src/Module/BaseAdmin.php:89 src/Module/BaseModeration.php:111 msgid "Configuration" msgstr "Beállítás" -#: src/Module/BaseAdmin.php:98 src/Module/BaseSettings.php:63 +#: src/Module/BaseAdmin.php:94 src/Module/BaseSettings.php:112 msgid "Additional features" msgstr "További funkciók" -#: src/Module/BaseAdmin.php:101 +#: src/Module/BaseAdmin.php:97 msgid "Database" msgstr "Adatbázis" -#: src/Module/BaseAdmin.php:102 +#: src/Module/BaseAdmin.php:98 msgid "DB updates" msgstr "Adatbázis-frissítések" -#: src/Module/BaseAdmin.php:103 +#: src/Module/BaseAdmin.php:99 msgid "Inspect Deferred Workers" msgstr "Elhalasztott feldolgozók vizsgálata" -#: src/Module/BaseAdmin.php:104 +#: src/Module/BaseAdmin.php:100 msgid "Inspect worker Queue" msgstr "Feldolgozó várakozási sorának vizsgálata" -#: src/Module/BaseAdmin.php:106 -msgid "Tools" -msgstr "Eszközök" - -#: src/Module/BaseAdmin.php:107 -msgid "Contact Blocklist" -msgstr "Partnertiltólista" - -#: src/Module/BaseAdmin.php:108 -msgid "Server Blocklist" -msgstr "Kiszolgáló-tiltólista" - -#: src/Module/BaseAdmin.php:115 +#: src/Module/BaseAdmin.php:106 src/Module/BaseModeration.php:119 msgid "Diagnostics" msgstr "Diagnosztika" -#: src/Module/BaseAdmin.php:116 +#: src/Module/BaseAdmin.php:107 msgid "PHP Info" msgstr "PHP-információk" -#: src/Module/BaseAdmin.php:117 +#: src/Module/BaseAdmin.php:108 msgid "probe address" msgstr "Cím szondázása" -#: src/Module/BaseAdmin.php:118 +#: src/Module/BaseAdmin.php:109 msgid "check webfinger" msgstr "WebFinger ellenőrzése" -#: src/Module/BaseAdmin.php:120 +#: src/Module/BaseAdmin.php:110 msgid "Babel" msgstr "Babel" -#: src/Module/BaseAdmin.php:121 src/Module/Debug/ActivityPubConversion.php:137 +#: src/Module/BaseAdmin.php:111 src/Module/Debug/ActivityPubConversion.php:137 msgid "ActivityPub Conversion" msgstr "ActivityPub beszélgetés" -#: src/Module/BaseAdmin.php:130 +#: src/Module/BaseAdmin.php:120 msgid "Addon Features" msgstr "Bővítményszolgáltatások" -#: src/Module/BaseAdmin.php:131 +#: src/Module/BaseAdmin.php:121 src/Module/BaseModeration.php:128 msgid "User registrations waiting for confirmation" msgstr "Megerősítésre váró felhasználói regisztrációk" -#: src/Module/BaseApi.php:241 src/Module/BaseApi.php:257 -#: src/Module/BaseApi.php:273 +#: src/Module/BaseApi.php:254 src/Module/BaseApi.php:270 +#: src/Module/BaseApi.php:286 msgid "Too Many Requests" msgstr "Túl sok kérés" -#: src/Module/BaseApi.php:242 +#: src/Module/BaseApi.php:255 #, 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:258 +#: src/Module/BaseApi.php:271 #, php-format msgid "Weekly posting limit of %d post reached. The post was rejected." msgid_plural "" @@ -6721,7 +5345,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:274 +#: src/Module/BaseApi.php:287 #, php-format msgid "Monthly posting limit of %d post reached. The post was rejected." msgid_plural "" @@ -6729,23 +5353,53 @@ 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/BaseProfile.php:51 src/Module/Contact.php:460 +#: src/Module/BaseModeration.php:112 src/Module/Moderation/Users/Index.php:148 +#: src/Module/Moderation/Users/Index.php:158 +msgid "Users" +msgstr "Felhasználók" + +#: src/Module/BaseModeration.php:114 +msgid "Tools" +msgstr "Eszközök" + +#: src/Module/BaseModeration.php:115 +msgid "Contact Blocklist" +msgstr "Partnertiltólista" + +#: src/Module/BaseModeration.php:116 +msgid "Server Blocklist" +msgstr "Kiszolgáló-tiltólista" + +#: src/Module/BaseModeration.php:117 src/Module/Moderation/Item/Delete.php:62 +msgid "Delete Item" +msgstr "Elem törlése" + +#: src/Module/BaseModeration.php:120 src/Module/Moderation/Item/Source.php:76 +msgid "Item Source" +msgstr "Elem forrása" + +#: src/Module/BaseProfile.php:52 src/Module/Contact.php:463 msgid "Profile Details" msgstr "Profil részletei" -#: src/Module/BaseProfile.php:109 +#: src/Module/BaseProfile.php:60 src/Module/Contact.php:447 +#: src/Module/Contact/Follow.php:192 src/Module/Contact/Unfollow.php:138 +msgid "Status Messages and Posts" +msgstr "Állapotüzenetek és bejegyzések" + +#: src/Module/BaseProfile.php:111 msgid "Only You Can See This" msgstr "Csak Ön láthatja ezt" -#: src/Module/BaseProfile.php:114 src/Module/Profile/Schedule.php:82 +#: src/Module/BaseProfile.php:116 src/Module/Profile/Schedule.php:82 msgid "Scheduled Posts" msgstr "Ütemezett bejegyzések" -#: src/Module/BaseProfile.php:117 +#: src/Module/BaseProfile.php:119 msgid "Posts that are scheduled for publishing" msgstr "Bejegyzések, amelyek közzétételre vannak üzemezve" -#: src/Module/BaseProfile.php:136 src/Module/BaseProfile.php:139 +#: src/Module/BaseProfile.php:138 src/Module/BaseProfile.php:141 msgid "Tips for New Members" msgstr "Tippek új tagoknak" @@ -6759,32 +5413,40 @@ msgstr "Emberek keresése – %s" msgid "Forum Search - %s" msgstr "Fórum keresése – %s" -#: src/Module/BaseSettings.php:41 +#: src/Module/BaseSearch.php:119 src/Module/Contact/MatchInterests.php:139 +msgid "No matches" +msgstr "Nincs találat" + +#: src/Module/BaseSettings.php:80 msgid "Account" msgstr "Fiók" -#: src/Module/BaseSettings.php:48 src/Module/Security/TwoFactor/Verify.php:96 -#: src/Module/Settings/TwoFactor/Index.php:118 +#: src/Module/BaseSettings.php:87 src/Module/Security/TwoFactor/Verify.php:96 +#: src/Module/Settings/TwoFactor/Index.php:117 msgid "Two-factor authentication" msgstr "Kétlépcsős hitelesítés" -#: src/Module/BaseSettings.php:71 +#: src/Module/BaseSettings.php:120 msgid "Display" msgstr "Megjelenítés" -#: src/Module/BaseSettings.php:92 src/Module/Settings/Delegation.php:171 +#: src/Module/BaseSettings.php:127 src/Module/Settings/Connectors.php:203 +msgid "Social Networks" +msgstr "Közösségi hálózatok" + +#: src/Module/BaseSettings.php:141 src/Module/Settings/Delegation.php:170 msgid "Manage Accounts" msgstr "Fiókok kezelése" -#: src/Module/BaseSettings.php:99 +#: src/Module/BaseSettings.php:148 msgid "Connected apps" msgstr "Kapcsolt alkalmazások" -#: src/Module/BaseSettings.php:106 src/Module/Settings/UserExport.php:76 +#: src/Module/BaseSettings.php:155 src/Module/Settings/UserExport.php:98 msgid "Export personal data" msgstr "Személyes adatok exportálása" -#: src/Module/BaseSettings.php:113 +#: src/Module/BaseSettings.php:162 msgid "Remove account" msgstr "Fiók eltávolítása" @@ -6796,6 +5458,118 @@ msgstr "Erről az oldalról hiányzik egy URL paraméter." 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 +msgid "Invalid Request" +msgstr "Érvénytelen kérés" + +#: src/Module/Calendar/Event/API.php:109 +msgid "Event id is missing." +msgstr "Az eseményazonosító hiányzik." + +#: src/Module/Calendar/Event/API.php:131 +msgid "Failed to remove event" +msgstr "Nem sikerült eltávolítani az eseményt" + +#: src/Module/Calendar/Event/API.php:186 src/Module/Calendar/Event/API.php:188 +msgid "Event can not end before it has started." +msgstr "Az esemény nem fejeződhet be, mielőtt elkezdődött volna." + +#: src/Module/Calendar/Event/API.php:195 src/Module/Calendar/Event/API.php:197 +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 +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 +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:207 src/Module/Install.php:240 +#: src/Module/Install.php:245 src/Module/Install.php:264 +#: src/Module/Install.php:275 src/Module/Install.php:280 +#: src/Module/Install.php:286 src/Module/Install.php:291 +#: src/Module/Install.php:305 src/Module/Install.php:320 +#: src/Module/Install.php:347 +#: src/Module/Moderation/Blocklist/Server/Add.php:134 +#: src/Module/Moderation/Blocklist/Server/Add.php:136 +#: src/Module/Moderation/Blocklist/Server/Import.php:126 +#: src/Module/Moderation/Blocklist/Server/Index.php:83 +#: src/Module/Moderation/Blocklist/Server/Index.php:84 +#: src/Module/Moderation/Blocklist/Server/Index.php:112 +#: src/Module/Moderation/Blocklist/Server/Index.php:113 +#: src/Module/Moderation/Item/Delete.php:67 src/Module/Register.php:148 +#: src/Module/Security/TwoFactor/Verify.php:101 +#: src/Module/Settings/TwoFactor/Index.php:140 +#: src/Module/Settings/TwoFactor/Verify.php:155 +msgid "Required" +msgstr "Kötelező" + +#: src/Module/Calendar/Event/Form.php:223 +#: src/Module/Calendar/Event/Form.php:247 +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 +msgid "Event Finishes:" +msgstr "Esemény befejezése:" + +#: src/Module/Calendar/Event/Form.php:237 +#: src/Module/Calendar/Event/Form.php:243 +msgid "Title (BBCode not allowed)" +msgstr "Cím (BBCode nem engedélyezett)" + +#: src/Module/Calendar/Event/Form.php:239 +msgid "Description (BBCode allowed)" +msgstr "Leírás (BBCode engedélyezett)" + +#: src/Module/Calendar/Event/Form.php:241 +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 +msgid "Share this event" +msgstr "Az esemény megosztása" + +#: src/Module/Calendar/Event/Form.php:251 src/Module/Profile/Profile.php:240 +msgid "Basic" +msgstr "Alap" + +#: src/Module/Calendar/Export.php:77 +msgid "This calendar format is not supported" +msgstr "Ez a naptárformátum nem támogatott" + +#: src/Module/Calendar/Export.php:79 +msgid "No exportable data found" +msgstr "Nem található exportálható adat" + +#: src/Module/Calendar/Export.php:96 +msgid "calendar" +msgstr "naptár" + +#: src/Module/Calendar/Show.php:122 +msgid "Events" +msgstr "Események" + +#: src/Module/Calendar/Show.php:123 +msgid "View" +msgstr "Nézet" + +#: src/Module/Calendar/Show.php:124 +msgid "Create New Event" +msgstr "Új esemény létrehozása" + +#: src/Module/Calendar/Show.php:130 +msgid "list" +msgstr "lista" + #: src/Module/Contact.php:88 #, php-format msgid "%d contact edited." @@ -6803,114 +5577,145 @@ msgid_plural "%d contacts edited." msgstr[0] "%d partner szerkesztve." msgstr[1] "%d partner szerkesztve." -#: src/Module/Contact.php:309 +#: src/Module/Contact.php:312 msgid "Show all contacts" msgstr "Összes partner megjelenítése" -#: src/Module/Contact.php:317 +#: src/Module/Contact.php:317 src/Module/Contact.php:377 +#: src/Module/Moderation/BaseUsers.php:85 +msgid "Pending" +msgstr "Függőben" + +#: src/Module/Contact.php:320 msgid "Only show pending contacts" msgstr "Csak a függőben lévő partnerek megjelenítése" -#: src/Module/Contact.php:325 +#: src/Module/Contact.php:325 src/Module/Contact.php:378 +#: src/Module/Moderation/BaseUsers.php:93 +msgid "Blocked" +msgstr "Tiltva" + +#: src/Module/Contact.php:328 msgid "Only show blocked contacts" msgstr "Csak a tiltott partnerek megjelenítése" -#: src/Module/Contact.php:330 src/Module/Contact.php:377 -#: src/Object/Post.php:339 +#: src/Module/Contact.php:333 src/Module/Contact.php:380 +#: src/Object/Post.php:338 msgid "Ignored" msgstr "Mellőzve" -#: src/Module/Contact.php:333 +#: src/Module/Contact.php:336 msgid "Only show ignored contacts" msgstr "Csak a mellőzött partnerek megjelenítése" -#: src/Module/Contact.php:338 src/Module/Contact.php:378 +#: src/Module/Contact.php:341 src/Module/Contact.php:381 msgid "Archived" msgstr "Archiválva" -#: src/Module/Contact.php:341 +#: src/Module/Contact.php:344 msgid "Only show archived contacts" msgstr "Csak az archivált partnerek megjelenítése" -#: src/Module/Contact.php:346 src/Module/Contact.php:376 +#: src/Module/Contact.php:349 src/Module/Contact.php:379 msgid "Hidden" msgstr "Rejtett" -#: src/Module/Contact.php:349 +#: src/Module/Contact.php:352 msgid "Only show hidden contacts" msgstr "Csak a rejtett partnerek megjelenítése" -#: src/Module/Contact.php:357 +#: src/Module/Contact.php:360 msgid "Organize your contact groups" msgstr "Partnercsoportok szervezése" -#: src/Module/Contact.php:389 +#: src/Module/Contact.php:392 msgid "Search your contacts" msgstr "Partnerek keresése" -#: src/Module/Contact.php:390 src/Module/Search/Index.php:207 +#: src/Module/Contact.php:393 src/Module/Search/Index.php:206 #, php-format msgid "Results for: %s" msgstr "Találatok erre: %s" -#: src/Module/Contact.php:397 +#: src/Module/Contact.php:400 msgid "Update" msgstr "Frissítés" -#: src/Module/Contact.php:399 src/Module/Contact/Profile.php:349 -#: src/Module/Contact/Profile.php:457 +#: src/Module/Contact.php:401 src/Module/Contact/Profile.php:348 +#: src/Module/Contact/Profile.php:467 +#: src/Module/Moderation/Blocklist/Contact.php:117 +#: src/Module/Moderation/Users/Blocked.php:138 +#: src/Module/Moderation/Users/Index.php:154 +msgid "Unblock" +msgstr "Tiltás feloldása" + +#: src/Module/Contact.php:402 src/Module/Contact/Profile.php:349 +#: src/Module/Contact/Profile.php:475 msgid "Unignore" msgstr "Mellőzés feloldása" -#: src/Module/Contact.php:401 +#: src/Module/Contact.php:404 msgid "Batch Actions" msgstr "Tömeges műveletek" -#: src/Module/Contact.php:436 +#: src/Module/Contact.php:439 msgid "Conversations started by this contact" msgstr "A partner által elkezdett beszélgetések" -#: src/Module/Contact.php:441 +#: src/Module/Contact.php:444 msgid "Posts and Comments" msgstr "Bejegyzések és hozzászólások" -#: src/Module/Contact.php:452 +#: src/Module/Contact.php:455 msgid "Posts containing media objects" msgstr "Médiaobjektumokat tartalmazó bejegyzések" -#: src/Module/Contact.php:467 +#: src/Module/Contact.php:470 msgid "View all known contacts" msgstr "Összes ismert partner megtekintése" -#: src/Module/Contact.php:477 +#: src/Module/Contact.php:480 msgid "Advanced Contact Settings" msgstr "Speciális partnerbeállítások" -#: src/Module/Contact.php:511 +#: src/Module/Contact.php:514 msgid "Mutual Friendship" msgstr "Kölcsönös ismeretség" -#: src/Module/Contact.php:515 +#: src/Module/Contact.php:518 msgid "is a fan of yours" msgstr "az Ön rajongója" -#: src/Module/Contact.php:519 +#: src/Module/Contact.php:522 msgid "you are a fan of" msgstr "Ön rajong érte:" -#: src/Module/Contact.php:537 +#: src/Module/Contact.php:540 msgid "Pending outgoing contact request" msgstr "Függőben lévő kimenő partnerkérés" -#: src/Module/Contact.php:539 +#: src/Module/Contact.php:542 msgid "Pending incoming contact request" msgstr "Függőben lévő bejövő partnerkérés" -#: src/Module/Contact.php:552 src/Module/Contact/Profile.php:334 +#: src/Module/Contact.php:555 src/Module/Contact/Profile.php:334 #, php-format msgid "Visit %s's profile [%s]" msgstr "%s profiljának megtekintése [%s]" +#: src/Module/Contact/Advanced.php:70 src/Module/Contact/Advanced.php:109 +#: src/Module/Contact/Contacts.php:53 src/Module/Contact/Conversations.php:84 +#: src/Module/Contact/Conversations.php:89 +#: src/Module/Contact/Conversations.php:94 src/Module/Contact/Media.php:43 +#: src/Module/Contact/Posts.php:78 src/Module/Contact/Posts.php:83 +#: src/Module/Contact/Posts.php:88 src/Module/Contact/Profile.php:142 +#: src/Module/Contact/Profile.php:147 src/Module/Contact/Profile.php:152 +#: src/Module/Contact/Redir.php:94 src/Module/Contact/Redir.php:140 +#: src/Module/FriendSuggest.php:71 src/Module/FriendSuggest.php:109 +#: src/Module/Group.php:97 src/Module/Group.php:106 +msgid "Contact not found." +msgstr "A partner nem található." + #: src/Module/Contact/Advanced.php:99 msgid "Contact update failed." msgstr "A partner frissítése sikertelen." @@ -6919,6 +5724,18 @@ msgstr "A partner frissítése sikertelen." 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/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Create.php:71 +#: 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:73 +msgid "Name" +msgstr "Név" + #: src/Module/Contact/Advanced.php:135 msgid "Account Nickname" msgstr "Fiók beceneve" @@ -6935,162 +5752,240 @@ msgstr "Lekérés vagy hírforrás URL" msgid "New photo from this URL" msgstr "Új fénykép erről az URL-ről" -#: src/Module/Contact/Contacts.php:50 src/Module/Conversation/Network.php:187 -#: src/Module/Group.php:103 +#: src/Module/Contact/Contacts.php:48 src/Module/Conversation/Network.php:188 +#: src/Module/Group.php:101 msgid "Invalid contact." msgstr "Érvénytelen partner." -#: src/Module/Contact/Contacts.php:73 +#: src/Module/Contact/Contacts.php:71 msgid "No known contacts." msgstr "Nincsenek ismert partnerek." -#: src/Module/Contact/Contacts.php:87 src/Module/Profile/Common.php:98 +#: src/Module/Contact/Contacts.php:85 src/Module/Profile/Common.php:97 msgid "No common contacts." msgstr "Nincsenek közös partnerek." -#: src/Module/Contact/Contacts.php:99 src/Module/Profile/Contacts.php:96 +#: src/Module/Contact/Contacts.php:97 src/Module/Profile/Contacts.php:95 #, 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:103 src/Module/Profile/Contacts.php:99 +#: src/Module/Contact/Contacts.php:101 src/Module/Profile/Contacts.php:98 #, 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:107 src/Module/Profile/Contacts.php:102 +#: src/Module/Contact/Contacts.php:105 src/Module/Profile/Contacts.php:101 #, 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:109 src/Module/Profile/Contacts.php:104 +#: src/Module/Contact/Contacts.php:107 src/Module/Profile/Contacts.php:103 #, 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:115 src/Module/Profile/Common.php:86 +#: src/Module/Contact/Contacts.php:113 src/Module/Profile/Common.php:85 #, 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:117 src/Module/Profile/Common.php:88 +#: src/Module/Contact/Contacts.php:115 src/Module/Profile/Common.php:87 #, 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:123 src/Module/Profile/Contacts.php:110 +#: src/Module/Contact/Contacts.php:121 src/Module/Profile/Contacts.php:109 #, php-format msgid "Contact (%s)" msgid_plural "Contacts (%s)" msgstr[0] "Partner (%s)" msgstr[1] "Partnerek (%s)" -#: src/Module/Contact/Profile.php:127 +#: src/Module/Contact/Follow.php:69 src/Module/Contact/Redir.php:62 +#: src/Module/Contact/Redir.php:222 src/Module/Conversation/Community.php:193 +#: src/Module/Debug/ItemBody.php:38 src/Module/Diaspora/Receive.php:57 +#: src/Module/Item/Display.php:95 src/Module/Item/Feed.php:59 +#: src/Module/Item/Follow.php:41 src/Module/Item/Ignore.php:41 +#: src/Module/Item/Pin.php:41 src/Module/Item/Pin.php:56 +#: src/Module/Item/Star.php:42 src/Module/Update/Display.php:37 +msgid "Access denied." +msgstr "Hozzáférés megtagadva." + +#: src/Module/Contact/Follow.php:104 src/Module/Contact/Unfollow.php:125 +#: src/Module/Profile/RemoteFollow.php:133 +msgid "Submit Request" +msgstr "Kérés elküldése" + +#: src/Module/Contact/Follow.php:115 +msgid "You already added this contact." +msgstr "Már hozzáadta ezt a partnert." + +#: src/Module/Contact/Follow.php:130 +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 +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 +msgid "Please answer the following:" +msgstr "Válaszoljon a következőre:" + +#: src/Module/Contact/Follow.php:169 src/Module/Contact/Unfollow.php:123 +msgid "Your Identity Address:" +msgstr "Az Ön személyazonosság-címe:" + +#: src/Module/Contact/Follow.php:170 src/Module/Contact/Profile.php:365 +#: src/Module/Contact/Unfollow.php:129 +#: src/Module/Moderation/Blocklist/Contact.php:133 +#: src/Module/Notifications/Introductions.php:129 +#: src/Module/Notifications/Introductions.php:198 +msgid "Profile URL" +msgstr "Profil URL" + +#: src/Module/Contact/Follow.php:171 src/Module/Contact/Profile.php:377 +#: src/Module/Notifications/Introductions.php:191 +#: src/Module/Profile/Profile.php:199 +msgid "Tags:" +msgstr "Címkék:" + +#: src/Module/Contact/Follow.php:182 +#, php-format +msgid "%s knows you" +msgstr "%s ismeri Önt" + +#: src/Module/Contact/Follow.php:183 +msgid "Add a personal note:" +msgstr "Személyes jegyzet hozzáadása:" + +#: src/Module/Contact/Follow.php:221 +msgid "The contact could not be added." +msgstr "A partnert nem sikerült hozzáadni." + +#: src/Module/Contact/MatchInterests.php:94 +#: src/Module/Media/Attachment/Upload.php:79 +#: src/Module/Media/Attachment/Upload.php:84 +#: src/Module/Media/Photo/Upload.php:83 src/Module/Media/Photo/Upload.php:88 +#: src/Module/Media/Photo/Upload.php:137 +msgid "Invalid request." +msgstr "Érvénytelen kérés." + +#: src/Module/Contact/MatchInterests.php:101 +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:144 +msgid "Profile Match" +msgstr "Profilegyezés" + +#: src/Module/Contact/Profile.php:128 msgid "Failed to update contact record." msgstr "Nem sikerült frissíteni a partner rekordját." -#: src/Module/Contact/Profile.php:177 +#: src/Module/Contact/Profile.php:178 msgid "Contact has been unblocked" msgstr "A partner tiltása fel lett oldva" -#: src/Module/Contact/Profile.php:181 +#: src/Module/Contact/Profile.php:182 msgid "Contact has been blocked" msgstr "A partner tiltva lett" -#: src/Module/Contact/Profile.php:193 +#: src/Module/Contact/Profile.php:194 msgid "Contact has been unignored" msgstr "A partner figyelmen kívül hagyása fel lett oldva" -#: src/Module/Contact/Profile.php:197 +#: src/Module/Contact/Profile.php:198 msgid "Contact has been ignored" msgstr "A partner figyelmen kívül lett hagyva" -#: src/Module/Contact/Profile.php:229 +#: src/Module/Contact/Profile.php:230 #, php-format msgid "You are mutual friends with %s" msgstr "Ön kölcsönösen ismerős %s partnerrel" -#: src/Module/Contact/Profile.php:230 +#: src/Module/Contact/Profile.php:231 #, php-format msgid "You are sharing with %s" msgstr "Ön megoszt %s partnerrel" -#: src/Module/Contact/Profile.php:231 +#: src/Module/Contact/Profile.php:232 #, php-format msgid "%s is sharing with you" msgstr "%s megoszt Önnel" -#: src/Module/Contact/Profile.php:247 +#: src/Module/Contact/Profile.php:248 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:249 +#: src/Module/Contact/Profile.php:250 msgid "Never" msgstr "Soha" -#: src/Module/Contact/Profile.php:252 +#: src/Module/Contact/Profile.php:253 msgid "(Update was not successful)" msgstr "(a frissítés nem volt sikeres)" -#: src/Module/Contact/Profile.php:252 +#: src/Module/Contact/Profile.php:253 msgid "(Update was successful)" msgstr "(a frissítés sikeres volt)" -#: src/Module/Contact/Profile.php:254 src/Module/Contact/Profile.php:420 +#: src/Module/Contact/Profile.php:255 src/Module/Contact/Profile.php:438 msgid "Suggest friends" msgstr "Ismerősök ajánlása" -#: src/Module/Contact/Profile.php:258 +#: src/Module/Contact/Profile.php:259 #, php-format msgid "Network type: %s" msgstr "Hálózat típusa: %s" -#: src/Module/Contact/Profile.php:263 +#: src/Module/Contact/Profile.php:264 msgid "Communications lost with this contact!" msgstr "A kommunikációk megszakadtak ezzel a partnerrel!" -#: src/Module/Contact/Profile.php:269 +#: src/Module/Contact/Profile.php:270 msgid "Fetch further information for feeds" msgstr "További információk lekérése a hírforrásokhoz" -#: src/Module/Contact/Profile.php:271 +#: src/Module/Contact/Profile.php:272 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:274 +#: src/Module/Contact/Profile.php:275 msgid "Fetch information" msgstr "Információk lekérése" -#: src/Module/Contact/Profile.php:275 +#: src/Module/Contact/Profile.php:276 msgid "Fetch keywords" msgstr "Kulcsszavak lekérése" -#: src/Module/Contact/Profile.php:276 +#: src/Module/Contact/Profile.php:277 msgid "Fetch information and keywords" msgstr "Információk és kulcsszavak lekérése" -#: src/Module/Contact/Profile.php:286 src/Module/Contact/Profile.php:292 +#: src/Module/Contact/Profile.php:287 src/Module/Contact/Profile.php:292 #: src/Module/Contact/Profile.php:297 src/Module/Contact/Profile.php:303 msgid "No mirroring" msgstr "Nincs tükrözés" -#: src/Module/Contact/Profile.php:287 -msgid "Mirror as forwarded posting" -msgstr "Tükrözés továbbított beküldésként" - #: src/Module/Contact/Profile.php:288 src/Module/Contact/Profile.php:298 #: src/Module/Contact/Profile.php:304 msgid "Mirror as my own posting" @@ -7140,7 +6035,7 @@ msgstr "Utolsó frissítés:" msgid "Update public posts" msgstr "Nyilvános bejegyzések frissítése" -#: src/Module/Contact/Profile.php:346 src/Module/Contact/Profile.php:430 +#: src/Module/Contact/Profile.php:346 src/Module/Contact/Profile.php:448 msgid "Update now" msgstr "Frissítés most" @@ -7161,7 +6056,7 @@ msgid "Awaiting connection acknowledge" msgstr "Várakozás a kapcsolat nyugtázására" #: src/Module/Contact/Profile.php:357 -#: src/Module/Notifications/Introductions.php:190 +#: src/Module/Notifications/Introductions.php:192 msgid "Hide this contact from others" msgstr "A partner elrejtése mások elől" @@ -7189,7 +6084,7 @@ msgid "" 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:378 -#: src/Module/Settings/TwoFactor/Index.php:140 +#: src/Module/Settings/TwoFactor/Index.php:139 msgid "Actions" msgstr "Műveletek" @@ -7203,149 +6098,179 @@ msgid "" "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:440 +#: src/Module/Contact/Profile.php:458 msgid "Refetch contact data" msgstr "Partneradatok ismételt lekérése" -#: src/Module/Contact/Profile.php:451 +#: src/Module/Contact/Profile.php:469 msgid "Toggle Blocked status" msgstr "Tiltott állapot átváltása" -#: src/Module/Contact/Profile.php:459 +#: src/Module/Contact/Profile.php:477 msgid "Toggle Ignored status" msgstr "Mellőzött állapot átváltása" -#: src/Module/Contact/Profile.php:466 src/Module/Contact/Revoke.php:105 +#: src/Module/Contact/Profile.php:484 src/Module/Contact/Revoke.php:106 msgid "Revoke Follow" msgstr "Követés visszavonása" -#: src/Module/Contact/Profile.php:468 +#: src/Module/Contact/Profile.php:486 msgid "Revoke the follow from this contact" msgstr "A követés visszavonása ettől a partnertől" -#: src/Module/Contact/Revoke.php:62 +#: src/Module/Contact/Redir.php:134 src/Module/Contact/Redir.php:186 +msgid "Bad Request." +msgstr "Hibás kérés." + +#: src/Module/Contact/Revoke.php:63 msgid "Unknown contact." msgstr "Ismeretlen partner." -#: src/Module/Contact/Revoke.php:72 src/Module/Group.php:112 +#: src/Module/Contact/Revoke.php:73 src/Module/Group.php:110 msgid "Contact is deleted." msgstr "A partner törölve." -#: src/Module/Contact/Revoke.php:76 +#: src/Module/Contact/Revoke.php:77 msgid "Contact is being deleted." msgstr "A partner törlésre került." -#: src/Module/Contact/Revoke.php:90 +#: src/Module/Contact/Revoke.php:91 msgid "Follow was successfully revoked." msgstr "A követés sikeresen vissza lett vonva." -#: src/Module/Contact/Revoke.php:106 +#: src/Module/Contact/Revoke.php:107 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/Revoke.php:107 -#: src/Module/Notifications/Introductions.php:142 +#: src/Module/Contact/Revoke.php:108 +#: src/Module/Notifications/Introductions.php:144 #: src/Module/OAuth/Acknowledge.php:53 src/Module/Register.php:130 -#: src/Module/Settings/TwoFactor/Trusted.php:124 +#: src/Module/Settings/TwoFactor/Trusted.php:126 msgid "Yes" msgstr "Igen" -#: src/Module/Conversation/Community.php:68 -msgid "Local Community" -msgstr "Helyi közösség" +#: src/Module/Contact/Suggestions.php:62 +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/Conversation/Community.php:71 -msgid "Posts from local users on this server" -msgstr "Bejegyzések a kiszolgálón lévő helyi felhasználóktól" +#: src/Module/Contact/Unfollow.php:98 src/Module/Contact/Unfollow.php:167 +msgid "You aren't following this contact." +msgstr "Ön nem követi ezt a partnert." -#: src/Module/Conversation/Community.php:79 -msgid "Global Community" -msgstr "Globális közösség" +#: src/Module/Contact/Unfollow.php:103 +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/Conversation/Community.php:82 -msgid "Posts from users of the whole federated network" -msgstr "Bejegyzések a teljes föderált hálózat felhasználóitól" +#: src/Module/Contact/Unfollow.php:121 +msgid "Disconnect/Unfollow" +msgstr "Leválasztás vagy követés megszüntetése" -#: src/Module/Conversation/Community.php:115 -msgid "Own Contacts" -msgstr "Saját partnerek" +#: src/Module/Contact/Unfollow.php:175 +msgid "Contact was successfully unfollowed" +msgstr "A partner követése sikeresen meg lett szüntetve" -#: src/Module/Conversation/Community.php:119 -msgid "Include" -msgstr "Tartalmazás" +#: src/Module/Contact/Unfollow.php:178 +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/Community.php:120 -msgid "Hide" -msgstr "Elrejtés" - -#: src/Module/Conversation/Community.php:137 src/Module/Search/Index.php:152 -#: src/Module/Search/Index.php:194 -msgid "No results." -msgstr "Nincs találat." - -#: src/Module/Conversation/Community.php:162 +#: src/Module/Conversation/Community.php:73 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 folyam 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:199 +#: src/Module/Conversation/Community.php:86 +msgid "Local Community" +msgstr "Helyi közösség" + +#: src/Module/Conversation/Community.php:89 +msgid "Posts from local users on this server" +msgstr "Bejegyzések a kiszolgálón lévő helyi felhasználóktól" + +#: src/Module/Conversation/Community.php:97 +msgid "Global Community" +msgstr "Globális közösség" + +#: src/Module/Conversation/Community.php:100 +msgid "Posts from users of the whole federated network" +msgstr "Bejegyzések a teljes föderált hálózat felhasználóitól" + +#: src/Module/Conversation/Community.php:133 +msgid "Own Contacts" +msgstr "Saját partnerek" + +#: src/Module/Conversation/Community.php:137 +msgid "Include" +msgstr "Tartalmazás" + +#: src/Module/Conversation/Community.php:138 +msgid "Hide" +msgstr "Elrejtés" + +#: src/Module/Conversation/Community.php:155 src/Module/Search/Index.php:151 +#: src/Module/Search/Index.php:193 +msgid "No results." +msgstr "Nincs találat." + +#: src/Module/Conversation/Community.php:211 msgid "Community option not available." msgstr "A közösségi beállítás nem érhető el." -#: src/Module/Conversation/Community.php:215 +#: src/Module/Conversation/Community.php:227 msgid "Not available." msgstr "Nem érhető el." -#: src/Module/Conversation/Network.php:173 +#: src/Module/Conversation/Network.php:174 msgid "No such group" msgstr "Nincs ilyen csoport" -#: src/Module/Conversation/Network.php:177 +#: src/Module/Conversation/Network.php:178 #, php-format msgid "Group: %s" msgstr "Csoport: %s" -#: src/Module/Conversation/Network.php:255 +#: src/Module/Conversation/Network.php:256 msgid "Latest Activity" msgstr "Legutóbbi tevékenység" -#: src/Module/Conversation/Network.php:258 +#: src/Module/Conversation/Network.php:259 msgid "Sort by latest activity" msgstr "Rendezés a legutóbbi tevékenység szerint" -#: src/Module/Conversation/Network.php:263 +#: src/Module/Conversation/Network.php:264 msgid "Latest Posts" msgstr "Legutóbbi bejegyzések" -#: src/Module/Conversation/Network.php:266 +#: src/Module/Conversation/Network.php:267 msgid "Sort by post received date" msgstr "Rendezés a bejegyzés érkezési dátuma szerint" -#: src/Module/Conversation/Network.php:271 +#: src/Module/Conversation/Network.php:272 msgid "Latest Creation" msgstr "Legutóbbi létrehozás" -#: src/Module/Conversation/Network.php:274 +#: src/Module/Conversation/Network.php:275 msgid "Sort by post creation date" msgstr "Rendezés a bejegyzés létrehozási dátuma szerint" -#: src/Module/Conversation/Network.php:279 -#: src/Module/Settings/Profile/Index.php:227 +#: src/Module/Conversation/Network.php:280 +#: src/Module/Settings/Profile/Index.php:236 msgid "Personal" msgstr "Személyes" -#: src/Module/Conversation/Network.php:282 +#: src/Module/Conversation/Network.php:283 msgid "Posts that mention or involve you" msgstr "Bejegyzések, amelyek említik vagy tartalmazzák Önt" -#: src/Module/Conversation/Network.php:287 src/Object/Post.php:351 +#: src/Module/Conversation/Network.php:288 src/Object/Post.php:350 msgid "Starred" msgstr "Csillagozott" -#: src/Module/Conversation/Network.php:290 +#: src/Module/Conversation/Network.php:291 msgid "Favourite Posts" msgstr "Kedvenc bejegyzések" @@ -7376,6 +6301,14 @@ msgstr "Objektum adatai" msgid "Result Item" msgstr "Eredményelem" +#: src/Module/Debug/ActivityPubConversion.php:129 +#: src/Module/Debug/Babel.php:293 src/Module/Moderation/Item/Source.php:87 +#: src/Module/Security/TwoFactor/Verify.php:98 +msgid "Error" +msgid_plural "Errors" +msgstr[0] "Hiba" +msgstr[1] "Hibák" + #: src/Module/Debug/ActivityPubConversion.php:138 msgid "Source activity" msgstr "Forrástevékenység" @@ -7556,12 +6489,12 @@ msgstr "HTML" msgid "Twitter Source / Tweet URL (requires API key)" msgstr "Twitter forrás vagy Tweet URL (API-kulcsot igényel)" -#: src/Module/Debug/Feed.php:51 src/Module/Filer/SaveTag.php:46 -#: src/Module/Settings/Profile/Index.php:141 +#: src/Module/Debug/Feed.php:52 src/Module/Filer/SaveTag.php:47 +#: src/Module/Settings/Profile/Index.php:144 msgid "You must be logged in to use this module" msgstr "Bejelentkezve kell lennie a modul használatához" -#: src/Module/Debug/Feed.php:76 +#: src/Module/Debug/Feed.php:77 msgid "Source URL" msgstr "Forrás URL" @@ -7618,201 +6551,207 @@ msgstr "WebFinger diagnosztika" msgid "Lookup address:" msgstr "Keresési cím:" -#: src/Module/Delegation.php:111 +#: src/Module/Delegation.php:110 #, php-format msgid "You are now logged in as %s" msgstr "Most a következő néven van bejelentkezve: %s" -#: src/Module/Delegation.php:143 +#: src/Module/Delegation.php:142 msgid "Switch between your accounts" msgstr "Váltás a fiókjai között" -#: src/Module/Delegation.php:144 +#: src/Module/Delegation.php:143 msgid "Manage your accounts" msgstr "Fiókok kezelése" -#: src/Module/Delegation.php:145 +#: src/Module/Delegation.php:144 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/Delegation.php:146 +#: src/Module/Delegation.php:145 msgid "Select an identity to manage: " msgstr "A kezelendő személyazonosság kiválasztása: " -#: src/Module/Directory.php:75 +#: src/Module/Directory.php:74 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:90 msgid "Find on this site" msgstr "Keresés ezen az oldalon" -#: src/Module/Directory.php:93 +#: src/Module/Directory.php:92 msgid "Results for:" msgstr "Találat erre:" -#: src/Module/Directory.php:95 +#: src/Module/Directory.php:94 msgid "Site Directory" msgstr "Oldal könyvtára" -#: src/Module/Filer/RemoveTag.php:68 -msgid "Item was not removed" -msgstr "Az elem nem lett eltávolítva" - -#: src/Module/Filer/RemoveTag.php:71 +#: src/Module/Filer/RemoveTag.php:105 msgid "Item was not deleted" msgstr "Az elem nem lett törölve" -#: src/Module/Filer/SaveTag.php:72 +#: src/Module/Filer/RemoveTag.php:115 +msgid "Item was not removed" +msgstr "Az elem nem lett eltávolítva" + +#: src/Module/Filer/SaveTag.php:73 msgid "- select -" msgstr "– válasszon –" -#: src/Module/FriendSuggest.php:81 +#: src/Module/FriendSuggest.php:82 msgid "Suggested contact not found." msgstr "Az ajánlott partner nem található." -#: src/Module/FriendSuggest.php:99 +#: src/Module/FriendSuggest.php:100 msgid "Friend suggestion sent." msgstr "Az ismerősajánlás elküldve." -#: src/Module/FriendSuggest.php:136 +#: src/Module/FriendSuggest.php:137 msgid "Suggest Friends" msgstr "Ismerősök ajánlása" -#: src/Module/FriendSuggest.php:139 +#: src/Module/FriendSuggest.php:140 #, php-format msgid "Suggest a friend for %s" msgstr "Ismerős ajánlása %s számára" -#: src/Module/Friendica.php:62 +#: src/Module/Friendica.php:63 msgid "Installed addons/apps:" msgstr "Telepített bővítmények vagy alkalmazások:" -#: src/Module/Friendica.php:67 +#: src/Module/Friendica.php:68 msgid "No installed addons/apps" msgstr "Nincsenek telepített bővítmények vagy alkalmazások" -#: src/Module/Friendica.php:72 +#: src/Module/Friendica.php:73 #, 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:79 +#: src/Module/Friendica.php:80 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:84 +#: src/Module/Friendica.php:83 +#: src/Module/Moderation/Blocklist/Server/Index.php:84 +#: src/Module/Moderation/Blocklist/Server/Index.php:108 +msgid "Reason for the block" +msgstr "A tiltás oka" + +#: src/Module/Friendica.php:85 msgid "Download this list in CSV format" msgstr "A lista letöltése CSV formátumban" -#: src/Module/Friendica.php:98 +#: src/Module/Friendica.php:99 #, 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:103 +#: src/Module/Friendica.php:104 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:104 +#: src/Module/Friendica.php:105 msgid "Bug reports and issues: please visit" msgstr "Hibák és problémák jelentéséhez látogassa meg" -#: src/Module/Friendica.php:104 +#: src/Module/Friendica.php:105 msgid "the bugtracker at github" msgstr "a GitHubon lévő hibakövetőt" -#: src/Module/Friendica.php:105 +#: src/Module/Friendica.php:106 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/Group.php:58 +#: src/Module/Group.php:56 msgid "Could not create group." msgstr "Nem sikerült létrehozni a csoportot." -#: src/Module/Group.php:69 src/Module/Group.php:215 src/Module/Group.php:239 +#: src/Module/Group.php:67 src/Module/Group.php:213 src/Module/Group.php:237 msgid "Group not found." msgstr "A csoport nem található." -#: src/Module/Group.php:75 +#: src/Module/Group.php:73 msgid "Group name was not changed." msgstr "A csoport neve nem változott meg." -#: src/Module/Group.php:93 +#: src/Module/Group.php:91 msgid "Unknown group." msgstr "Ismeretlen csoport." -#: src/Module/Group.php:118 +#: src/Module/Group.php:116 msgid "Unable to add the contact to the group." msgstr "Nem lehet hozzáadni a partnert a csoporthoz." -#: src/Module/Group.php:121 +#: src/Module/Group.php:119 msgid "Contact successfully added to group." msgstr "A partner sikeresen hozzáadva a csoporthoz." -#: src/Module/Group.php:125 +#: src/Module/Group.php:123 msgid "Unable to remove the contact from the group." msgstr "Nem lehet eltávolítani a partnert a csoportból." -#: src/Module/Group.php:128 +#: src/Module/Group.php:126 msgid "Contact successfully removed from group." msgstr "A partner sikeresen eltávolítva a csoportból." -#: src/Module/Group.php:132 +#: src/Module/Group.php:130 msgid "Bad request." msgstr "Hibás kérés." -#: src/Module/Group.php:171 +#: src/Module/Group.php:169 msgid "Save Group" msgstr "Csoport mentése" -#: src/Module/Group.php:172 +#: src/Module/Group.php:170 msgid "Filter" msgstr "Szűrő" -#: src/Module/Group.php:178 +#: src/Module/Group.php:176 msgid "Create a group of contacts/friends." msgstr "Partnerek vagy ismerősök csoportjának létrehozása." -#: src/Module/Group.php:220 +#: src/Module/Group.php:218 msgid "Unable to remove group." msgstr "Nem lehet eltávolítani a csoportot." -#: src/Module/Group.php:271 +#: src/Module/Group.php:269 msgid "Delete Group" msgstr "Csoport törlése" -#: src/Module/Group.php:281 +#: src/Module/Group.php:279 msgid "Edit Group Name" msgstr "Csoport nevének szerkesztése" -#: src/Module/Group.php:291 +#: src/Module/Group.php:289 msgid "Members" msgstr "Tagok" -#: src/Module/Group.php:294 +#: src/Module/Group.php:292 msgid "Group is empty" msgstr "A csoport üres" -#: src/Module/Group.php:307 +#: src/Module/Group.php:305 msgid "Remove contact from group" msgstr "Partner eltávolítása a csoportból" -#: src/Module/Group.php:328 +#: src/Module/Group.php:326 msgid "Click on a contact to add or remove." msgstr "Kattintson egy partnerre a hozzáadáshoz vagy eltávolításhoz." -#: src/Module/Group.php:342 +#: src/Module/Group.php:340 msgid "Add contact to group" msgstr "Partner hozzáadása a csoporthoz" -#: src/Module/HCard.php:46 +#: src/Module/HCard.php:45 msgid "No profile" msgstr "Nincs profil" @@ -7850,6 +6789,10 @@ msgstr "A választható követelmény nincs kielégítve" msgid "OK" msgstr "Rendben" +#: src/Module/Install.php:214 +msgid "Next" +msgstr "Következő" + #: src/Module/Install.php:215 msgid "Check again" msgstr "Ellenőrzés újra" @@ -8090,41 +7033,67 @@ msgid "" "important, please visit http://friendi.ca" msgstr "A Friendica projekttel kapcsolatos további információkért, valamint hogy miért tartjuk ezt fontosnak, látogasson el a https://friendi.ca/ oldalra." -#: src/Module/Item/Compose.php:50 +#: src/Module/Item/Compose.php:85 msgid "Please enter a post body." msgstr "Adjon meg egy bejegyzéstörzset." -#: src/Module/Item/Compose.php:63 +#: src/Module/Item/Compose.php:98 msgid "This feature is only available with the frio theme." msgstr "Ez a funkció csak a frio témával érhető el." -#: src/Module/Item/Compose.php:90 +#: src/Module/Item/Compose.php:122 msgid "Compose new personal note" msgstr "Új személyes jegyzet írása" -#: src/Module/Item/Compose.php:99 +#: src/Module/Item/Compose.php:131 msgid "Compose new post" msgstr "Új bejegyzés írása" -#: src/Module/Item/Compose.php:153 +#: src/Module/Item/Compose.php:187 msgid "Visibility" msgstr "Láthatóság" -#: src/Module/Item/Compose.php:174 +#: src/Module/Item/Compose.php:201 msgid "Clear the location" msgstr "A hely törlése" -#: src/Module/Item/Compose.php:175 +#: src/Module/Item/Compose.php:202 msgid "Location services are unavailable on your device" msgstr "A helymeghatározó szolgáltatások nem érhetők el az Ön eszközén" -#: src/Module/Item/Compose.php:176 +#: src/Module/Item/Compose.php:203 msgid "" "Location services are disabled. Please check the website's permissions on " "your device" msgstr "A helymeghatározó szolgáltatások le vannak tiltva. Ellenőrizze a weboldal jogosultságait az Ön eszközén" -#: src/Module/Item/Follow.php:52 +#: src/Module/Item/Compose.php:209 +msgid "" +"You can make this page always open when you use the New Post button in the " +"Theme Customization settings." +msgstr "Mindig megnyitottá teheti ezt az oldalt, ha a téma személyre szabási beállításaiban lévő új bejegyzés gombot használja." + +#: src/Module/Item/Display.php:135 src/Module/Update/Display.php:55 +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/Item/Display.php:249 +msgid "" +"Unfortunately, the requested conversation isn't available to you.

\n" +"

Possible reasons include:

\n" +"

" +msgstr "Sajnos a kért beszélgetés nem érhető el Önnek.

\n

A lehetséges okok a következők:

\n

" + +#: src/Module/Item/Feed.php:86 +msgid "The feed for this item is unavailable." +msgstr "Ennek az elemnek a hírforrása nem érhető el." + +#: src/Module/Item/Follow.php:51 msgid "Unable to follow this item." msgstr "Nem lehet követni ezt az elemet." @@ -8143,98 +7112,856 @@ msgstr "Ez a Friendica csomópont jelenleg karbantartási módban van, vagy auto msgid "A Decentralized Social Network" msgstr "Egy decentralizált közösségi hálózat" -#: src/Module/Notifications/Introductions.php:97 +#: src/Module/Media/Attachment/Browser.php:58 +#: src/Module/Media/Photo/Browser.php:59 +msgid "You need to be logged in to access this page." +msgstr "Bejelentkezve kell lennie az oldalhoz való hozzáféréshez." + +#: src/Module/Media/Attachment/Browser.php:74 +msgid "Files" +msgstr "Fájlok" + +#: src/Module/Media/Attachment/Browser.php:79 +#: src/Module/Media/Photo/Browser.php:90 +#: src/Module/Settings/Profile/Photo/Index.php:128 +msgid "Upload" +msgstr "Feltöltés" + +#: src/Module/Media/Attachment/Upload.php:99 +msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" +msgstr "Elnézést, talán a feltöltése nagyobb annál, amit a PHP beállítása megenged" + +#: src/Module/Media/Attachment/Upload.php:99 +msgid "Or - did you try to upload an empty file?" +msgstr "Vagy – egy üres fájlt próbált meg feltölteni?" + +#: src/Module/Media/Attachment/Upload.php:106 +#, php-format +msgid "File exceeds size limit of %s" +msgstr "A fájl meghaladja a beállított %s méretkorlátot" + +#: src/Module/Media/Attachment/Upload.php:116 +msgid "File upload failed." +msgstr "A fájl feltöltése sikertelen." + +#: src/Module/Media/Photo/Upload.php:154 src/Module/Media/Photo/Upload.php:155 +#: src/Module/Profile/Photos.php:217 +#: src/Module/Settings/Profile/Photo/Index.php:68 +msgid "Unable to process image." +msgstr "Nem lehet feldolgozni a képet." + +#: src/Module/Media/Photo/Upload.php:188 src/Module/Profile/Photos.php:164 +#: src/Module/Profile/Photos.php:167 src/Module/Profile/Photos.php:194 +#: src/Module/Settings/Profile/Photo/Index.php:59 +#, php-format +msgid "Image exceeds size limit of %s" +msgstr "A kép meghaladja a beállított %s méretkorlátot" + +#: src/Module/Media/Photo/Upload.php:206 src/Module/Profile/Photos.php:243 +#: src/Module/Settings/Profile/Photo/Index.php:95 +msgid "Image upload failed." +msgstr "A kép feltöltése sikertelen." + +#: src/Module/Moderation/BaseUsers.php:72 +msgid "List of all users" +msgstr "Összes felhasználó listája" + +#: src/Module/Moderation/BaseUsers.php:77 +msgid "Active" +msgstr "Aktív" + +#: src/Module/Moderation/BaseUsers.php:80 +msgid "List of active accounts" +msgstr "Aktív fiókok listája" + +#: src/Module/Moderation/BaseUsers.php:88 +msgid "List of pending registrations" +msgstr "Függőben lévő regisztrációk listája" + +#: src/Module/Moderation/BaseUsers.php:96 +msgid "List of blocked users" +msgstr "Tiltott felhasználók listája" + +#: src/Module/Moderation/BaseUsers.php:101 +msgid "Deleted" +msgstr "Törölve" + +#: src/Module/Moderation/BaseUsers.php:104 +msgid "List of pending user deletions" +msgstr "Függőben lévő felhasználó-törlések listája" + +#: src/Module/Moderation/BaseUsers.php:119 src/Module/Settings/Account.php:491 +msgid "Normal Account Page" +msgstr "Normál fiókoldal" + +#: src/Module/Moderation/BaseUsers.php:120 src/Module/Settings/Account.php:498 +msgid "Soapbox Page" +msgstr "Szappantartó oldal" + +#: src/Module/Moderation/BaseUsers.php:121 src/Module/Settings/Account.php:505 +msgid "Public Forum" +msgstr "Nyilvános fórum" + +#: src/Module/Moderation/BaseUsers.php:122 src/Module/Settings/Account.php:512 +msgid "Automatic Friend Page" +msgstr "Automatikus ismerős oldal" + +#: src/Module/Moderation/BaseUsers.php:123 +msgid "Private Forum" +msgstr "Személyes fórum" + +#: src/Module/Moderation/BaseUsers.php:126 src/Module/Settings/Account.php:463 +msgid "Personal Page" +msgstr "Személyes oldal" + +#: src/Module/Moderation/BaseUsers.php:127 src/Module/Settings/Account.php:470 +msgid "Organisation Page" +msgstr "Szervezeti oldal" + +#: src/Module/Moderation/BaseUsers.php:128 src/Module/Settings/Account.php:477 +msgid "News Page" +msgstr "Hírek oldal" + +#: src/Module/Moderation/BaseUsers.php:129 src/Module/Settings/Account.php:484 +msgid "Community Forum" +msgstr "Közösségi fórum" + +#: src/Module/Moderation/BaseUsers.php:130 +msgid "Relay" +msgstr "Továbbítás" + +#: src/Module/Moderation/Blocklist/Contact.php:70 +msgid "You can't block a local contact, please block the user instead" +msgstr "Nem tilthat egy helyi partnert, inkább a felhasználót tiltsa" + +#: src/Module/Moderation/Blocklist/Contact.php:89 +#, php-format +msgid "%s contact unblocked" +msgid_plural "%s contacts unblocked" +msgstr[0] "%s partner tiltása feloldva" +msgstr[1] "%s partner tiltása feloldva" + +#: src/Module/Moderation/Blocklist/Contact.php:111 +msgid "Remote Contact Blocklist" +msgstr "Távoli partnerek tiltólistája" + +#: src/Module/Moderation/Blocklist/Contact.php:112 +msgid "" +"This page allows you to prevent any message from a remote contact to reach " +"your node." +msgstr "Ez az oldal lehetővé teszi, hogy megakadályozzon egy távoli partnertől származó minden üzenetet, amely elérné a csomópontját." + +#: src/Module/Moderation/Blocklist/Contact.php:113 +msgid "Block Remote Contact" +msgstr "Távoli partner tiltása" + +#: src/Module/Moderation/Blocklist/Contact.php:114 +#: src/Module/Moderation/Users/Active.php:135 +#: src/Module/Moderation/Users/Blocked.php:135 +#: src/Module/Moderation/Users/Index.php:149 +#: src/Module/Moderation/Users/Pending.php:98 +msgid "select all" +msgstr "összes kijelölése" + +#: src/Module/Moderation/Blocklist/Contact.php:115 +msgid "select none" +msgstr "kijelölés törlése" + +#: src/Module/Moderation/Blocklist/Contact.php:118 +msgid "No remote contact is blocked from this node." +msgstr "Nincs olyan távoli partner, aki tiltva lenne erről a csomópontról." + +#: src/Module/Moderation/Blocklist/Contact.php:120 +msgid "Blocked Remote Contacts" +msgstr "Tiltott távoli partnerek" + +#: src/Module/Moderation/Blocklist/Contact.php:121 +msgid "Block New Remote Contact" +msgstr "Új távoli partner tiltása" + +#: src/Module/Moderation/Blocklist/Contact.php:122 +msgid "Photo" +msgstr "Fénykép" + +#: src/Module/Moderation/Blocklist/Contact.php:122 +msgid "Reason" +msgstr "Indok" + +#: src/Module/Moderation/Blocklist/Contact.php:130 +#, php-format +msgid "%s total blocked contact" +msgid_plural "%s total blocked contacts" +msgstr[0] "Összesen %s tiltott partner" +msgstr[1] "Összesen %s tiltott partner" + +#: src/Module/Moderation/Blocklist/Contact.php:133 +msgid "URL of the remote contact to block." +msgstr "A tiltandó távoli partner URL-je." + +#: src/Module/Moderation/Blocklist/Contact.php:134 +msgid "Also purge contact" +msgstr "Távolítsa el a partnert is" + +#: src/Module/Moderation/Blocklist/Contact.php:134 +msgid "" +"Removes all content related to this contact from the node. Keeps the contact" +" record. This action cannot be undone." +msgstr "Eltávolítja az ehhez a partnerhez kapcsolódó összes partnert a csomópontról. Megtartja a partner rekordját. Ezt a műveletet nem lehet visszavonni." + +#: src/Module/Moderation/Blocklist/Contact.php:135 +#: src/Module/Moderation/Blocklist/Server/Import.php:121 +msgid "Block Reason" +msgstr "Tiltás oka" + +#: src/Module/Moderation/Blocklist/Server/Add.php:78 +msgid "Server domain pattern added to the blocklist." +msgstr "A tiltólistához hozzáadott kiszolgáló tartománymintája." + +#: src/Module/Moderation/Blocklist/Server/Add.php:86 +#, php-format +msgid "%s server scheduled to be purged." +msgid_plural "%s servers scheduled to be purged." +msgstr[0] "%s kiszolgáló van ütemezve eltávolításra." +msgstr[1] "%s kiszolgáló van ütemezve eltávolításra." + +#: src/Module/Moderation/Blocklist/Server/Add.php:118 +#: src/Module/Moderation/Blocklist/Server/Import.php:114 +msgid "← Return to the list" +msgstr "← Vissza a listához" + +#: src/Module/Moderation/Blocklist/Server/Add.php:120 +msgid "Block A New Server Domain Pattern" +msgstr "Új kiszolgálótartomány-minta tiltása" + +#: src/Module/Moderation/Blocklist/Server/Add.php:121 +#: src/Module/Moderation/Blocklist/Server/Index.php:96 +msgid "" +"

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

\n" +"" +msgstr "

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

\n" + +#: src/Module/Moderation/Blocklist/Server/Add.php:126 +#: src/Module/Moderation/Blocklist/Server/Index.php:104 +msgid "Check pattern" +msgstr "Minta ellenőrzése" + +#: src/Module/Moderation/Blocklist/Server/Add.php:127 +msgid "Matching known servers" +msgstr "Illeszkedő ismert kiszolgálók" + +#: src/Module/Moderation/Blocklist/Server/Add.php:128 +msgid "Server Name" +msgstr "Kiszolgáló neve" + +#: src/Module/Moderation/Blocklist/Server/Add.php:129 +msgid "Server Domain" +msgstr "Kiszolgáló tartománya" + +#: src/Module/Moderation/Blocklist/Server/Add.php:130 +msgid "Known Contacts" +msgstr "Ismert partnerek" + +#: src/Module/Moderation/Blocklist/Server/Add.php:131 +#, php-format +msgid "%d known server" +msgid_plural "%d known servers" +msgstr[0] "%d ismert kiszolgáló" +msgstr[1] "%d ismert kiszolgáló" + +#: src/Module/Moderation/Blocklist/Server/Add.php:132 +msgid "Add pattern to the blocklist" +msgstr "Minta hozzáadása a tiltólistához" + +#: src/Module/Moderation/Blocklist/Server/Add.php:134 +#: src/Module/Moderation/Blocklist/Server/Index.php:113 +msgid "Server Domain Pattern" +msgstr "Kiszolgálótartomány-minta" + +#: src/Module/Moderation/Blocklist/Server/Add.php:134 +#: src/Module/Moderation/Blocklist/Server/Index.php:113 +msgid "" +"The domain pattern of the new server to add to the blocklist. Do not include" +" the protocol." +msgstr "A tiltólistához hozzáadandó új kiszolgáló tartományának mintája. Ne tegye bele a protokollt." + +#: src/Module/Moderation/Blocklist/Server/Add.php:135 +msgid "Purge server" +msgstr "Kiszolgáló eltávolítása" + +#: src/Module/Moderation/Blocklist/Server/Add.php:135 +msgid "" +"Also purges all the locally stored content authored by the known contacts " +"registered on that server. Keeps the contacts and the server records. This " +"action cannot be undone." +msgid_plural "" +"Also purges all the locally stored content authored by the known contacts " +"registered on these servers. Keeps the contacts and the servers records. " +"This action cannot be undone." +msgstr[0] "Eltávolítja az összes olyan helyileg tárolt tartalmat is, amelyet az adott kiszolgálón regisztrált ismert partnerek hoztak létre. Megtartja a partnereket és a kiszolgáló rekordjait. Ezt a művelet nem lehet visszavonni." +msgstr[1] "Eltávolítja az összes olyan helyileg tárolt tartalmat is, amelyet az adott kiszolgálókon regisztrált ismert partnerek hoztak létre. Megtartja a partnereket és a kiszolgálók rekordjait. Ezt a művelet nem lehet visszavonni." + +#: src/Module/Moderation/Blocklist/Server/Add.php:136 +msgid "Block reason" +msgstr "Tiltás oka" + +#: src/Module/Moderation/Blocklist/Server/Add.php:136 +msgid "" +"The reason why you blocked this server domain pattern. This reason will be " +"shown publicly in the server information page." +msgstr "Az ok, amiért kitiltotta ezt a kiszolgálótartomány-mintát. Az ok nyilvánosan meg lesz jelenítve a kiszolgáló információs oldalán." + +#: src/Module/Moderation/Blocklist/Server/Import.php:73 +#: src/Module/Moderation/Blocklist/Server/Import.php:82 +msgid "Error importing pattern file" +msgstr "Hiba a mintafájl importálásakor" + +#: src/Module/Moderation/Blocklist/Server/Import.php:88 +msgid "Local blocklist replaced with the provided file." +msgstr "A helyi tiltólista le lett cserélve a megadott fájllal." + +#: src/Module/Moderation/Blocklist/Server/Import.php:92 +#, php-format +msgid "%d pattern was added to the local blocklist." +msgid_plural "%d patterns were added to the local blocklist." +msgstr[0] "%d minta lett hozzáadva a helyi tiltólistához." +msgstr[1] "%d minta lett hozzáadva a helyi tiltólistához." + +#: src/Module/Moderation/Blocklist/Server/Import.php:94 +msgid "No pattern was added to the local blocklist." +msgstr "Nem lett minta hozzáadva a helyi tiltólistához." + +#: src/Module/Moderation/Blocklist/Server/Import.php:116 +msgid "Import a Server Domain Pattern Blocklist" +msgstr "Kiszolgálótartomány-minta tiltólista importálása" + +#: src/Module/Moderation/Blocklist/Server/Import.php:117 +msgid "" +"

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

" +msgstr "

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

" + +#: src/Module/Moderation/Blocklist/Server/Import.php:118 +#: src/Module/Moderation/Blocklist/Server/Index.php:103 +msgid "Upload file" +msgstr "Fájl feltöltése" + +#: src/Module/Moderation/Blocklist/Server/Import.php:119 +msgid "Patterns to import" +msgstr "Importálandó minták" + +#: src/Module/Moderation/Blocklist/Server/Import.php:120 +msgid "Domain Pattern" +msgstr "Tartományminta" + +#: src/Module/Moderation/Blocklist/Server/Import.php:122 +msgid "Import Mode" +msgstr "Mód importálása" + +#: src/Module/Moderation/Blocklist/Server/Import.php:123 +msgid "Import Patterns" +msgstr "Minták importálása" + +#: src/Module/Moderation/Blocklist/Server/Import.php:124 +#, php-format +msgid "%d total pattern" +msgid_plural "%d total patterns" +msgstr[0] "%d minta összesen" +msgstr[1] "%d minta összesen" + +#: src/Module/Moderation/Blocklist/Server/Import.php:126 +#: src/Module/Moderation/Blocklist/Server/Index.php:112 +msgid "Server domain pattern blocklist CSV file" +msgstr "Kiszolgálótartomány-minta tiltólista CSV-fájl" + +#: src/Module/Moderation/Blocklist/Server/Import.php:127 +msgid "Append" +msgstr "Hozzáfűzés" + +#: src/Module/Moderation/Blocklist/Server/Import.php:127 +msgid "" +"Imports patterns from the file that weren't already existing in the current " +"blocklist." +msgstr "Olyan mintákat importál a fájlból, amelyek még nem léteztek a jelenlegi tiltólistán." + +#: src/Module/Moderation/Blocklist/Server/Import.php:128 +msgid "Replace" +msgstr "Csere" + +#: src/Module/Moderation/Blocklist/Server/Import.php:128 +msgid "Replaces the current blocklist by the imported patterns." +msgstr "Lecseréli a jelenlegi tiltólistát az importált mintákkal." + +#: src/Module/Moderation/Blocklist/Server/Index.php:83 +#: src/Module/Moderation/Blocklist/Server/Index.php:107 +msgid "Blocked server domain pattern" +msgstr "Tiltott kiszolgálótartomány-minta" + +#: src/Module/Moderation/Blocklist/Server/Index.php:85 +msgid "Delete server domain pattern" +msgstr "Kiszolgálótartomány-minta törlése" + +#: src/Module/Moderation/Blocklist/Server/Index.php:85 +msgid "Check to delete this entry from the blocklist" +msgstr "Jelölje be a bejegyzés tiltólistából való törléséhez" + +#: src/Module/Moderation/Blocklist/Server/Index.php:93 +msgid "Server Domain Pattern Blocklist" +msgstr "Kiszolgálótartomány-minta tiltólistája" + +#: src/Module/Moderation/Blocklist/Server/Index.php:94 +msgid "" +"This page can be used to define a blocklist of server domain patterns from " +"the federated network that are not allowed to interact with your node. For " +"each domain pattern you should also provide the reason why you block it." +msgstr "Ez az oldal használható a föderált hálózatból származó azon kiszolgálótartomány-minták tiltólistájának meghatározásához, amelyeknek nem engedélyezett kapcsolatba lépniük az Ön csomópontjával. Minden egyes tartománymintához meg kell adnia az indokot is, hogy miért tiltja azt." + +#: src/Module/Moderation/Blocklist/Server/Index.php:95 +msgid "" +"The list of blocked server domain patterns will be made publically available" +" on the /friendica page so that your users and " +"people investigating communication problems can find the reason easily." +msgstr "A tiltott kiszolgálótartomány-minták listája nyilvánosan elérhetővé lesz téve a /friendica oldalon, azért hogy a kommunikációs problémákat kivizsgáló felhasználók és emberek egyszerűen megtalálják az okot." + +#: src/Module/Moderation/Blocklist/Server/Index.php:101 +msgid "Import server domain pattern blocklist" +msgstr "Kiszolgálótartomány-minta tiltólistájának importálása" + +#: src/Module/Moderation/Blocklist/Server/Index.php:102 +msgid "Add new entry to the blocklist" +msgstr "Új bejegyzés hozzáadása a tiltólistához" + +#: src/Module/Moderation/Blocklist/Server/Index.php:105 +msgid "Save changes to the blocklist" +msgstr "Változtatások mentése a tiltólistába" + +#: src/Module/Moderation/Blocklist/Server/Index.php:106 +msgid "Current Entries in the Blocklist" +msgstr "Jelenlegi bejegyzések a tiltólistán" + +#: src/Module/Moderation/Blocklist/Server/Index.php:109 +msgid "Delete entry from the blocklist" +msgstr "Bejegyzés törlése a tiltólistáról" + +#: src/Module/Moderation/Blocklist/Server/Index.php:110 +msgid "Delete entry from the blocklist?" +msgstr "Törli a bejegyzést a tiltólistáról?" + +#: src/Module/Moderation/Item/Delete.php:50 +msgid "Item marked for deletion." +msgstr "Az elem megjelölve törlésre." + +#: src/Module/Moderation/Item/Delete.php:63 +msgid "Delete this Item" +msgstr "Az elem törlése" + +#: src/Module/Moderation/Item/Delete.php:64 +msgid "" +"On this page you can delete an item from your node. If the item is a top " +"level posting, the entire thread will be deleted." +msgstr "Ezen az oldalon törölhet egy elemet a csomópontjáról. Ha az elem egy felső szintű beküldés, akkor a teljes szál törlésre fog kerülni." + +#: src/Module/Moderation/Item/Delete.php:65 +msgid "" +"You need to know the GUID of the item. You can find it e.g. by looking at " +"the display URL. The last part of http://example.com/display/123456 is the " +"GUID, here 123456." +msgstr "Tudnia kell az elem GUID értékét. Ezt megtalálhatja például a megjelenített URL-re tekintve. A http://example.com/display/123456 utolsó része a GUID, itt az 123456." + +#: src/Module/Moderation/Item/Delete.php:67 +msgid "GUID" +msgstr "GUID" + +#: src/Module/Moderation/Item/Delete.php:67 +msgid "The GUID of the item you want to delete." +msgstr "Annak az elemnek GUID értéke, amelyet törölni szeretne." + +#: src/Module/Moderation/Item/Source.php:77 +msgid "Item Id" +msgstr "Elemazonosító" + +#: src/Module/Moderation/Item/Source.php:78 +msgid "Item URI" +msgstr "Elem URI" + +#: src/Module/Moderation/Item/Source.php:80 +msgid "Terms" +msgstr "Kifejezések" + +#: src/Module/Moderation/Item/Source.php:81 +msgid "Tag" +msgstr "Címke" + +#: src/Module/Moderation/Item/Source.php:82 +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Index.php:140 +msgid "Type" +msgstr "Típus" + +#: src/Module/Moderation/Item/Source.php:83 +msgid "Term" +msgstr "Kifejezés" + +#: src/Module/Moderation/Item/Source.php:84 +msgid "URL" +msgstr "URL" + +#: src/Module/Moderation/Item/Source.php:85 +msgid "Mention" +msgstr "Említés" + +#: src/Module/Moderation/Item/Source.php:86 +msgid "Implicit Mention" +msgstr "Implicit említés" + +#: src/Module/Moderation/Item/Source.php:88 +msgid "Item not found" +msgstr "Az elem nem található" + +#: src/Module/Moderation/Item/Source.php:89 +msgid "No source recorded" +msgstr "Nincs forrás rögzítve" + +#: src/Module/Moderation/Item/Source.php:90 +msgid "" +"Please make sure the debug.store_source config key is set in " +"config/local.config.php for future items to have sources." +msgstr "Győződjön meg arról, hogy a debug.store_source beállítási kulcs be van-e állítva a config/local.config.php fájlban, hogy a jövőbeli elemek forrásokkal rendelkezzenek." + +#: src/Module/Moderation/Item/Source.php:92 +msgid "Item Guid" +msgstr "Elem GUID értéke" + +#: src/Module/Moderation/Summary.php:53 +msgid "Normal Account" +msgstr "Normál fiók" + +#: src/Module/Moderation/Summary.php:54 +msgid "Automatic Follower Account" +msgstr "Automatikusan követő fiók" + +#: src/Module/Moderation/Summary.php:55 +msgid "Public Forum Account" +msgstr "Nyilvános fórum fiók" + +#: src/Module/Moderation/Summary.php:56 +msgid "Automatic Friend Account" +msgstr "Automatikus ismerős fiók" + +#: src/Module/Moderation/Summary.php:57 +msgid "Blog Account" +msgstr "Blog fiók" + +#: src/Module/Moderation/Summary.php:58 +msgid "Private Forum Account" +msgstr "Személyes fórumfiók" + +#: src/Module/Moderation/Summary.php:78 +msgid "Registered users" +msgstr "Regisztrált felhasználók" + +#: src/Module/Moderation/Summary.php:80 +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 +#, 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 +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 +#, 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 +#, 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 +#, 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 +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 +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 +msgid "Last public item" +msgstr "Utolsó nyilvános elem" + +#: src/Module/Moderation/Users/Active.php:134 +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 +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 +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 +msgid "Account expired" +msgstr "A fiók lejárt" + +#: src/Module/Moderation/Users/Active.php:141 +#: src/Module/Moderation/Users/Index.php:159 +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 +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 +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 +#, 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 +#, php-format +msgid "User \"%s\" unblocked" +msgstr "„%s” felhasználó tiltása feloldva" + +#: src/Module/Moderation/Users/Blocked.php:134 +msgid "Blocked Users" +msgstr "Tiltott felhasználók" + +#: src/Module/Moderation/Users/Create.php:62 +msgid "New User" +msgstr "Új felhasználó" + +#: src/Module/Moderation/Users/Create.php:63 +msgid "Add User" +msgstr "Felhasználó hozzáadása" + +#: src/Module/Moderation/Users/Create.php:71 +msgid "Name of the new user." +msgstr "Az új felhasználó neve." + +#: src/Module/Moderation/Users/Create.php:72 +msgid "Nickname" +msgstr "Becenév" + +#: src/Module/Moderation/Users/Create.php:72 +msgid "Nickname of the new user." +msgstr "Az új felhasználó beceneve." + +#: src/Module/Moderation/Users/Create.php:73 +msgid "Email address of the new user." +msgstr "Az új felhasználó e-mail-címe." + +#: src/Module/Moderation/Users/Deleted.php:81 +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 +msgid "Permanent deletion" +msgstr "Végleges törlés" + +#: src/Module/Moderation/Users/Index.php:150 +msgid "User waiting for permanent deletion" +msgstr "Végleges törlésre váró felhasználó" + +#: src/Module/Moderation/Users/Pending.php:44 +#, 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 +#, 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 +msgid "Account approved." +msgstr "Fiók jóváhagyva." + +#: src/Module/Moderation/Users/Pending.php:82 +msgid "Registration revoked" +msgstr "Regisztráció visszavonva" + +#: src/Module/Moderation/Users/Pending.php:97 +msgid "User registrations awaiting review" +msgstr "Felülvizsgálatra váró felhasználói regisztrációk" + +#: src/Module/Moderation/Users/Pending.php:99 +msgid "Request date" +msgstr "Kérés dátuma" + +#: src/Module/Moderation/Users/Pending.php:100 +msgid "No registrations." +msgstr "Nincsenek regisztrációk." + +#: src/Module/Moderation/Users/Pending.php:101 +msgid "Note from the user" +msgstr "Jegyzet a felhasználótól" + +#: src/Module/Moderation/Users/Pending.php:103 +msgid "Deny" +msgstr "Elutasítás" + +#: src/Module/Notifications/Introductions.php:99 msgid "Show Ignored Requests" msgstr "Mellőzött kérések megjelenítése" -#: src/Module/Notifications/Introductions.php:97 +#: src/Module/Notifications/Introductions.php:99 msgid "Hide Ignored Requests" msgstr "Mellőzött kérések elrejtése" -#: src/Module/Notifications/Introductions.php:113 -#: src/Module/Notifications/Introductions.php:176 +#: src/Module/Notifications/Introductions.php:115 +#: src/Module/Notifications/Introductions.php:178 msgid "Notification type:" msgstr "Értesítés típusa:" -#: src/Module/Notifications/Introductions.php:116 +#: src/Module/Notifications/Introductions.php:118 msgid "Suggested by:" msgstr "Ajánlotta:" -#: src/Module/Notifications/Introductions.php:141 +#: src/Module/Notifications/Introductions.php:143 msgid "Claims to be known to you: " msgstr "Azt állítja, hogy Ön ismeri: " -#: src/Module/Notifications/Introductions.php:142 +#: src/Module/Notifications/Introductions.php:144 #: src/Module/OAuth/Acknowledge.php:54 src/Module/Register.php:131 -#: src/Module/Settings/TwoFactor/Trusted.php:124 +#: src/Module/Settings/TwoFactor/Trusted.php:126 msgid "No" msgstr "Nem" -#: src/Module/Notifications/Introductions.php:150 +#: src/Module/Notifications/Introductions.php:152 msgid "Shall your connection be bidirectional or not?" msgstr "Legyen a kapcsolata kétirányú vagy sem?" -#: src/Module/Notifications/Introductions.php:151 +#: src/Module/Notifications/Introductions.php:153 #, 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:152 +#: src/Module/Notifications/Introductions.php:154 #, 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:154 +#: src/Module/Notifications/Introductions.php:156 msgid "Friend" msgstr "Ismerős" -#: src/Module/Notifications/Introductions.php:155 +#: src/Module/Notifications/Introductions.php:157 msgid "Subscriber" msgstr "Feliratkozó" -#: src/Module/Notifications/Introductions.php:214 +#: src/Module/Notifications/Introductions.php:216 msgid "No introductions." msgstr "Nincsenek bemutatkozások." -#: src/Module/Notifications/Introductions.php:215 -#: src/Module/Notifications/Notifications.php:134 +#: src/Module/Notifications/Introductions.php:217 +#: src/Module/Notifications/Notifications.php:135 #, php-format msgid "No more %s notifications." msgstr "Nincs több %s értesítés." -#: src/Module/Notifications/Notification.php:134 +#: src/Module/Notifications/Notification.php:135 msgid "You must be logged in to show this page." msgstr "Bejelentkezve kell lennie az oldal megtekintéséhez." -#: src/Module/Notifications/Notifications.php:65 +#: src/Module/Notifications/Notifications.php:66 msgid "Network Notifications" msgstr "Hálózati értesítések" -#: src/Module/Notifications/Notifications.php:71 +#: src/Module/Notifications/Notifications.php:72 msgid "System Notifications" msgstr "Rendszerértesítések" -#: src/Module/Notifications/Notifications.php:77 +#: src/Module/Notifications/Notifications.php:78 msgid "Personal Notifications" msgstr "Személyes értesítések" -#: src/Module/Notifications/Notifications.php:83 +#: src/Module/Notifications/Notifications.php:84 msgid "Home Notifications" msgstr "Saját értesítések" -#: src/Module/Notifications/Notifications.php:139 +#: src/Module/Notifications/Notifications.php:140 msgid "Show unread" msgstr "Olvasatlanok megjelenítése" -#: src/Module/Notifications/Ping.php:226 +#: src/Module/Notifications/Ping.php:245 msgid "{0} requested registration" msgstr "{0} regisztrációt kért" -#: src/Module/Notifications/Ping.php:237 +#: src/Module/Notifications/Ping.php:254 #, php-format msgid "{0} and %d others requested registration" msgstr "{0} és még %d személy regisztrációt kért" @@ -8268,6 +7995,66 @@ msgstr "Másolja be a következő hitelesítési kódot az alkalmazásába, és 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:158 +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:70 +msgid "Subscribing to contacts" +msgstr "Feliratkozás a partnerekre" + +#: src/Module/OStatus/Subscribe.php:79 +msgid "No contact provided." +msgstr "Nincs partner megadva." + +#: src/Module/OStatus/Subscribe.php:85 +msgid "Couldn't fetch information for contact." +msgstr "Nem sikerült lekérni a partner információit." + +#: src/Module/OStatus/Subscribe.php:96 +msgid "Couldn't fetch friends for contact." +msgstr "Nem sikerült lekérni a partner ismerőseit." + +#: src/Module/OStatus/Subscribe.php:102 src/Module/OStatus/Subscribe.php:113 +msgid "Couldn't fetch following contacts." +msgstr "Nem sikerült lekérni a következő partnereket." + +#: src/Module/OStatus/Subscribe.php:108 +msgid "Couldn't fetch remote profile." +msgstr "Nem sikerült lekérni a távoli profilt." + +#: src/Module/OStatus/Subscribe.php:118 +msgid "Unsupported network" +msgstr "Nem támogatott hálózat" + +#: src/Module/OStatus/Subscribe.php:134 +msgid "Done" +msgstr "Kész" + +#: src/Module/OStatus/Subscribe.php:148 +msgid "success" +msgstr "sikeres" + +#: src/Module/OStatus/Subscribe.php:150 +msgid "failed" +msgstr "sikertelen" + +#: src/Module/OStatus/Subscribe.php:153 +msgid "ignored" +msgstr "mellőzve" + #: src/Module/PermissionTooltip.php:49 #, php-format msgid "Wrong type \"%s\", expected one of: %s" @@ -8328,95 +8115,214 @@ msgstr "A fénykép nem érhető el." 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:174 +#: src/Module/Photo.php:178 #, 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:176 +#: src/Module/Photo.php:180 #, php-format msgid "Invalid photo with id %s." msgstr "Érvénytelen %s azonosítóval rendelkező fénykép." -#: src/Module/Profile/Contacts.php:120 +#: src/Module/Post/Edit.php:82 src/Module/Post/Edit.php:96 +msgid "Post not found." +msgstr "A bejegyzés nem található." + +#: src/Module/Post/Edit.php:102 +msgid "Edit post" +msgstr "Bejegyzés szerkesztése" + +#: src/Module/Post/Edit.php:133 +msgid "web link" +msgstr "webhivatkozás" + +#: src/Module/Post/Edit.php:134 +msgid "Insert video link" +msgstr "Videohivatkozás beszúrása" + +#: src/Module/Post/Edit.php:135 +msgid "video link" +msgstr "videohivatkozás" + +#: src/Module/Post/Edit.php:136 +msgid "Insert audio link" +msgstr "Hanghivatkozás beszúrása" + +#: src/Module/Post/Edit.php:137 +msgid "audio link" +msgstr "hanghivatkozás" + +#: src/Module/Post/Tag/Remove.php:106 +msgid "Remove Item Tag" +msgstr "Elem címkéjének eltávolítása" + +#: src/Module/Post/Tag/Remove.php:107 +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/Delegation.php:178 +#: src/Module/Settings/TwoFactor/Trusted.php:144 +msgid "Remove" +msgstr "Eltávolítás" + +#: src/Module/Profile/Contacts.php:119 msgid "No contacts." msgstr "Nincsenek partnerek." -#: src/Module/Profile/Profile.php:82 +#: src/Module/Profile/Photos.php:170 +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 +msgid "Image file is missing" +msgstr "A képfájl hiányzik" + +#: src/Module/Profile/Photos.php:178 +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:202 +msgid "Image file is empty." +msgstr "A képfájl üres." + +#: src/Module/Profile/Photos.php:384 +msgid "View Album" +msgstr "Album megtekintése" + +#: src/Module/Profile/Profile.php:81 src/Module/Profile/Restricted.php:50 msgid "Profile not found." msgstr "A profil nem található." -#: src/Module/Profile/Profile.php:135 +#: src/Module/Profile/Profile.php:127 #, 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:144 src/Module/Settings/Account.php:578 +#: src/Module/Profile/Profile.php:136 src/Module/Settings/Account.php:576 msgid "Full Name:" msgstr "Teljes név:" -#: src/Module/Profile/Profile.php:149 +#: src/Module/Profile/Profile.php:141 msgid "Member since:" msgstr "Ekkortól tag:" -#: src/Module/Profile/Profile.php:155 +#: src/Module/Profile/Profile.php:147 msgid "j F, Y" msgstr "Y. F j." -#: src/Module/Profile/Profile.php:156 +#: src/Module/Profile/Profile.php:148 msgid "j F" msgstr "F j." -#: src/Module/Profile/Profile.php:164 src/Util/Temporal.php:163 +#: src/Module/Profile/Profile.php:156 src/Util/Temporal.php:166 msgid "Birthday:" msgstr "Születésnap:" -#: src/Module/Profile/Profile.php:167 -#: src/Module/Settings/Profile/Index.php:245 src/Util/Temporal.php:165 +#: src/Module/Profile/Profile.php:159 +#: src/Module/Settings/Profile/Index.php:254 src/Util/Temporal.php:168 msgid "Age: " msgstr "Életkor: " -#: src/Module/Profile/Profile.php:167 -#: src/Module/Settings/Profile/Index.php:245 src/Util/Temporal.php:165 +#: src/Module/Profile/Profile.php:159 +#: src/Module/Settings/Profile/Index.php:254 src/Util/Temporal.php:168 #, php-format msgid "%d year old" msgid_plural "%d years old" msgstr[0] "%d éves" msgstr[1] "%d éves" -#: src/Module/Profile/Profile.php:234 +#: src/Module/Profile/Profile.php:164 +#: src/Module/Settings/Profile/Index.php:247 +msgid "Description:" +msgstr "Leírás:" + +#: src/Module/Profile/Profile.php:226 msgid "Forums:" msgstr "Fórumok:" -#: src/Module/Profile/Profile.php:246 +#: src/Module/Profile/Profile.php:238 msgid "View profile as:" msgstr "Profil megtekintése másként:" -#: src/Module/Profile/Profile.php:263 +#: src/Module/Profile/Profile.php:255 msgid "View as" msgstr "Megtekintés másként" -#: src/Module/Profile/Profile.php:326 src/Module/Profile/Profile.php:329 -#: src/Module/Profile/Status.php:66 src/Module/Profile/Status.php:69 -#: src/Protocol/Feed.php:1025 src/Protocol/OStatus.php:1046 +#: src/Module/Profile/Profile.php:318 src/Module/Profile/Profile.php:321 +#: src/Module/Profile/Status.php:65 src/Module/Profile/Status.php:68 +#: src/Protocol/Feed.php:1024 src/Protocol/OStatus.php:1047 #, php-format msgid "%s's timeline" msgstr "%s idővonala" -#: src/Module/Profile/Profile.php:327 src/Module/Profile/Status.php:67 -#: src/Protocol/Feed.php:1029 src/Protocol/OStatus.php:1051 +#: src/Module/Profile/Profile.php:319 src/Module/Profile/Status.php:66 +#: src/Protocol/Feed.php:1028 src/Protocol/OStatus.php:1052 #, php-format msgid "%s's posts" msgstr "%s bejegyzései" -#: src/Module/Profile/Profile.php:328 src/Module/Profile/Status.php:68 -#: src/Protocol/Feed.php:1032 src/Protocol/OStatus.php:1055 +#: src/Module/Profile/Profile.php:320 src/Module/Profile/Status.php:67 +#: src/Protocol/Feed.php:1031 src/Protocol/OStatus.php:1056 #, php-format msgid "%s's comments" msgstr "%s hozzászólásai" +#: src/Module/Profile/RemoteFollow.php:82 +msgid "Profile unavailable." +msgstr "A profil nem érhető el." + +#: src/Module/Profile/RemoteFollow.php:88 +msgid "Invalid locator" +msgstr "Érvénytelen kereső" + +#: src/Module/Profile/RemoteFollow.php:95 +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 +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 +msgid "Friend/Connection Request" +msgstr "Ismerős- vagy kapcsolódási kérés" + +#: src/Module/Profile/RemoteFollow.php:129 +#, php-format +msgid "" +"Enter your Webfinger address (user@domain.tld) or profile URL here. If this " +"isn't supported by your system, you have to subscribe to %s" +" 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 +#, 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 +msgid "Your Webfinger address or profile URL:" +msgstr "A WebFinger-címe vagy profil URL-je:" + +#: src/Module/Profile/Restricted.php:59 +msgid "Restricted profile" +msgstr "Korlátozott profil" + +#: src/Module/Profile/Restricted.php:60 +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:84 msgid "Scheduled" msgstr "Ütemezett" @@ -8429,10 +8335,52 @@ msgstr "Tartalom" msgid "Remove post" msgstr "Bejegyzés eltávolítása" +#: src/Module/Profile/UnkMail.php:78 +msgid "Empty message body." +msgstr "Üres üzenettörzs." + +#: src/Module/Profile/UnkMail.php:103 +msgid "Unable to check your home location." +msgstr "Nem lehet ellenőrizni az otthona helyét." + +#: src/Module/Profile/UnkMail.php:127 +msgid "Recipient not found." +msgstr "A címzett nem található." + +#: src/Module/Profile/UnkMail.php:138 +#, php-format +msgid "Number of daily wall messages for %s exceeded. Message failed." +msgstr "A(z) %s napi falüzeneteinek száma túllépve. Az üzenet sikertelen." + +#: src/Module/Profile/UnkMail.php:153 +#, php-format +msgid "" +"If you wish for %s to respond, please check that the privacy settings on " +"your site allow private mail from unknown senders." +msgstr "Ha azt szeretné, hogy %s válaszoljon, ellenőrizze, hogy az Ön oldalán lévő adatvédelmi beállítások lehetővé teszik-e az ismeretlen küldőktől származó személyes leveleket." + +#: src/Module/Profile/UnkMail.php:161 +msgid "To" +msgstr "Címzett" + +#: src/Module/Profile/UnkMail.php:162 +msgid "Subject" +msgstr "Tárgy" + +#: src/Module/Profile/UnkMail.php:163 +msgid "Your message" +msgstr "Az üzenete" + #: src/Module/Register.php:84 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:99 src/Module/User/Import.php:111 +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:116 msgid "" "You may (optionally) fill in this form via OpenID by supplying your OpenID " @@ -8483,8 +8431,8 @@ msgstr "Az e-mail-címe (a kezdeti információk ide lesznek elküldve, szóval msgid "Please repeat your e-mail address:" msgstr "Ismételje meg az e-mail-címét:" -#: src/Module/Register.php:162 src/Module/Security/PasswordTooLong.php:97 -#: src/Module/Settings/Account.php:569 +#: src/Module/Register.php:162 src/Module/Security/PasswordTooLong.php:101 +#: src/Module/Settings/Account.php:567 msgid "New Password:" msgstr "Új jelszó:" @@ -8492,8 +8440,8 @@ msgstr "Új jelszó:" msgid "Leave empty for an auto generated password." msgstr "Hagyja üresen egy automatikusan előállított jelszóhoz." -#: src/Module/Register.php:163 src/Module/Security/PasswordTooLong.php:98 -#: src/Module/Settings/Account.php:570 +#: src/Module/Register.php:163 src/Module/Security/PasswordTooLong.php:102 +#: src/Module/Settings/Account.php:568 msgid "Confirm:" msgstr "Megerősítés:" @@ -8508,6 +8456,10 @@ msgstr "Válasszon profilbecenevet. Ennek betűvel kell kezdődnie. Ezután a pr msgid "Choose a nickname: " msgstr "Becenév választása: " +#: src/Module/Register.php:173 src/Module/User/Import.php:117 +msgid "Import" +msgstr "Importálás" + #: src/Module/Register.php:174 msgid "Import your profile to this friendica instance" msgstr "A profilja importálása erre a Friendica példányra" @@ -8516,11 +8468,11 @@ msgstr "A profilja importálása erre a Friendica példányra" msgid "Note: This node explicitly contains adult content" msgstr "Megjegyzés: ez a csomópont kifejezetten tartalmaz felnőtt tartalmat" -#: src/Module/Register.php:183 src/Module/Settings/Delegation.php:155 +#: src/Module/Register.php:183 src/Module/Settings/Delegation.php:154 msgid "Parent Password:" msgstr "Fölérendelt jelszó:" -#: src/Module/Register.php:183 src/Module/Settings/Delegation.php:155 +#: src/Module/Register.php:183 src/Module/Settings/Delegation.php:154 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." @@ -8550,96 +8502,60 @@ 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:339 +#: src/Module/Register.php:342 #, php-format msgid "" "Failed to send email message. Here your accout details:
login: %s
" "password: %s

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

A jelszavát bejelentkezés után változtathatja meg." -#: src/Module/Register.php:345 +#: src/Module/Register.php:348 msgid "Registration successful." msgstr "A regisztráció sikerült." -#: src/Module/Register.php:350 src/Module/Register.php:357 +#: src/Module/Register.php:357 src/Module/Register.php:364 +#: src/Module/Register.php:374 msgid "Your registration can not be processed." msgstr "A regisztrációját nem lehet feldolgozni." -#: src/Module/Register.php:356 +#: src/Module/Register.php:363 msgid "You have to leave a request note for the admin." msgstr "Hagynia kell egy kérelmi jegyzetet az adminisztrátornak." -#: src/Module/Register.php:402 +#: src/Module/Register.php:373 +msgid "An internal error occured." +msgstr "Belső hiba történt." + +#: src/Module/Register.php:395 msgid "Your registration is pending approval by the site owner." msgstr "A regisztrációja jóváhagyásra vár az oldal tulajdonosától." -#: src/Module/RemoteFollow.php:71 -msgid "Profile unavailable." -msgstr "A profil nem érhető el." - -#: src/Module/RemoteFollow.php:77 -msgid "Invalid locator" -msgstr "Érvénytelen kereső" - -#: src/Module/RemoteFollow.php:84 -msgid "The provided profile link doesn't seem to be valid" -msgstr "A megadott profilhivatkozás nem tűnik érvényesnek" - -#: src/Module/RemoteFollow.php:89 -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/RemoteFollow.php:121 -msgid "Friend/Connection Request" -msgstr "Ismerős- vagy kapcsolódási kérés" - -#: src/Module/RemoteFollow.php:122 -#, php-format -msgid "" -"Enter your Webfinger address (user@domain.tld) or profile URL here. If this " -"isn't supported by your system, you have to subscribe to %s" -" 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/RemoteFollow.php:123 -#, 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/RemoteFollow.php:124 -msgid "Your Webfinger address or profile URL:" -msgstr "A WebFinger-címe vagy profil URL-je:" - #: src/Module/Search/Acl.php:55 msgid "You must be logged in to use this module." msgstr "Bejelentkezve kell lennie a modul használatához." -#: src/Module/Search/Index.php:69 +#: src/Module/Search/Index.php:68 msgid "Only logged in users are permitted to perform a search." msgstr "Csak bejelentkezett felhasználóknak engedélyezett a keresés végrehajtása." -#: src/Module/Search/Index.php:89 +#: src/Module/Search/Index.php:88 msgid "Only one search per minute is permitted for not logged in users." msgstr "Percenként csak egy keresés engedélyezett a nem bejelentkezett felhasználóknak." -#: src/Module/Search/Index.php:205 +#: src/Module/Search/Index.php:204 #, php-format msgid "Items tagged with: %s" msgstr "Ezzel címkézett elemek: %s" -#: src/Module/Search/Saved.php:58 +#: src/Module/Search/Saved.php:59 msgid "Search term was not saved." msgstr "A keresési kifejezés nem lett elmentve." -#: src/Module/Search/Saved.php:61 +#: src/Module/Search/Saved.php:62 msgid "Search term already saved." msgstr "A keresési kifejezés már el van mentve." -#: src/Module/Search/Saved.php:67 +#: src/Module/Search/Saved.php:68 msgid "Search term was not removed." msgstr "A keresési kifejezés nem lett eltávolítva." @@ -8689,7 +8605,7 @@ msgstr "Weboldal adatvédelmi irányelvei" msgid "privacy policy" msgstr "adatvédelmi irányelv" -#: src/Module/Security/Logout.php:83 +#: src/Module/Security/Logout.php:84 #: src/Module/Security/TwoFactor/SignOut.php:78 #: src/Module/Security/TwoFactor/SignOut.php:86 #: src/Module/Security/TwoFactor/SignOut.php:108 @@ -8713,88 +8629,88 @@ msgid "" "account to add the OpenID to it." msgstr "A fiók nem található. Regisztráljon új fiókot vagy jelentkezzen be a meglévő fiókjába, hogy hozzáadja az OpenID-t ahhoz." -#: src/Module/Security/PasswordTooLong.php:53 -#: src/Module/Settings/Account.php:66 +#: src/Module/Security/PasswordTooLong.php:57 +#: src/Module/Settings/Account.php:67 msgid "Passwords do not match." msgstr "A jelszavak nem egyeznek." -#: src/Module/Security/PasswordTooLong.php:60 +#: src/Module/Security/PasswordTooLong.php:64 msgid "Password does not need changing." msgstr "A jelszót nem kell megváltoztatni." -#: src/Module/Security/PasswordTooLong.php:73 -#: src/Module/Settings/Account.php:80 +#: src/Module/Security/PasswordTooLong.php:77 +#: src/Module/Settings/Account.php:81 msgid "Password unchanged." msgstr "A jelszó nincs megváltoztatva." -#: src/Module/Security/PasswordTooLong.php:87 +#: src/Module/Security/PasswordTooLong.php:91 msgid "Password Too Long" msgstr "A jelszó túl hosszú" -#: src/Module/Security/PasswordTooLong.php:88 +#: src/Module/Security/PasswordTooLong.php:92 msgid "" "Since version 2022.09, we've realized that any password longer than 72 " "characters is truncated during hashing. To prevent any confusion about this " "behavior, please update your password to be fewer or equal to 72 characters." msgstr "A 2022.09-es verzió óta rájöttünk, hogy a 72 karakternél hosszabb jelszavak a kivonatolás során le lesznek vágva. Az ezzel a viselkedéssel kapcsolatos félreértések elkerülése érdekében arra kérjük, frissítse jelszavát úgy, hogy az legfeljebb 72 karakterből álljon." -#: src/Module/Security/PasswordTooLong.php:89 +#: src/Module/Security/PasswordTooLong.php:93 msgid "Update Password" msgstr "Jelszó frissítése" -#: src/Module/Security/PasswordTooLong.php:96 -#: src/Module/Settings/Account.php:571 +#: src/Module/Security/PasswordTooLong.php:100 +#: src/Module/Settings/Account.php:569 msgid "Current Password:" msgstr "Jelenlegi jelszó:" -#: src/Module/Security/PasswordTooLong.php:96 -#: src/Module/Settings/Account.php:571 +#: src/Module/Security/PasswordTooLong.php:100 +#: src/Module/Settings/Account.php:569 msgid "Your current password to confirm the changes" msgstr "A jelenlegi jelszava a változtatások megerősítéséhez" -#: src/Module/Security/PasswordTooLong.php:97 -#: src/Module/Settings/Account.php:554 +#: src/Module/Security/PasswordTooLong.php:101 +#: src/Module/Settings/Account.php:552 msgid "" "Allowed characters are a-z, A-Z, 0-9 and special characters except white " "spaces, accentuated letters and colon (:)." msgstr "Az engedélyezett karakterek az a-z, A-Z, 0-9 tartományokban lévők és a különleges karakterek, kivéve az üres karaktereket, ékezetes betűket és a kettőspontot (:)." -#: src/Module/Security/PasswordTooLong.php:97 -#: src/Module/Settings/Account.php:555 +#: src/Module/Security/PasswordTooLong.php:101 +#: src/Module/Settings/Account.php:553 msgid "Password length is limited to 72 characters." msgstr "A jelszó hossza 72 karakterre van korlátozva." -#: src/Module/Security/TwoFactor/Recovery.php:73 +#: src/Module/Security/TwoFactor/Recovery.php:74 #, php-format msgid "Remaining recovery codes: %d" msgstr "Hátralévő visszaszerzési kódok: %d" -#: src/Module/Security/TwoFactor/Recovery.php:79 +#: src/Module/Security/TwoFactor/Recovery.php:80 #: src/Module/Security/TwoFactor/Verify.php:77 -#: src/Module/Settings/TwoFactor/Verify.php:94 +#: src/Module/Settings/TwoFactor/Verify.php:95 msgid "Invalid code, please retry." msgstr "Érvénytelen kód, próbálja újra." -#: src/Module/Security/TwoFactor/Recovery.php:98 +#: src/Module/Security/TwoFactor/Recovery.php:99 msgid "Two-factor recovery" msgstr "Kétlépcsős visszaszerzés" -#: src/Module/Security/TwoFactor/Recovery.php:99 +#: src/Module/Security/TwoFactor/Recovery.php:100 msgid "" "

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

" msgstr "

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

" -#: src/Module/Security/TwoFactor/Recovery.php:100 +#: src/Module/Security/TwoFactor/Recovery.php:101 #, 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:101 +#: src/Module/Security/TwoFactor/Recovery.php:102 msgid "Please enter a recovery code" msgstr "Adjon meg egy visszaszerzési kódot" -#: src/Module/Security/TwoFactor/Recovery.php:102 +#: src/Module/Security/TwoFactor/Recovery.php:103 msgid "Submit recovery code and complete login" msgstr "Visszaszerzési kód elküldése és a bejelentkezés befejezése" @@ -8816,29 +8732,29 @@ msgstr "Kijelentkezés" msgid "Trust and sign out" msgstr "Megbízás és kijelentkezés" -#: src/Module/Security/TwoFactor/Trust.php:95 +#: src/Module/Security/TwoFactor/Trust.php:96 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:140 +#: src/Module/Security/TwoFactor/Trust.php:141 msgid "Trust this browser?" msgstr "Megbízik ebben a böngészőben?" -#: src/Module/Security/TwoFactor/Trust.php:141 +#: src/Module/Security/TwoFactor/Trust.php:142 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:142 +#: src/Module/Security/TwoFactor/Trust.php:143 msgid "Not now" msgstr "Most nem" -#: src/Module/Security/TwoFactor/Trust.php:143 +#: src/Module/Security/TwoFactor/Trust.php:144 msgid "Don't trust" msgstr "Ne bízzon meg" -#: src/Module/Security/TwoFactor/Trust.php:144 +#: src/Module/Security/TwoFactor/Trust.php:145 msgid "Trust" msgstr "Megbízás" @@ -8856,7 +8772,7 @@ msgid "" 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:154 +#: src/Module/Settings/TwoFactor/Verify.php:155 msgid "Please enter a code from your authentication app" msgstr "Adjon meg egy kódot a hitelesítő alkalmazásából" @@ -8864,119 +8780,119 @@ msgstr "Adjon meg egy kódot a hitelesítő alkalmazásából" msgid "Verify code and complete login" msgstr "Kód ellenőrzése és a bejelentkezés befejezése" -#: src/Module/Settings/Account.php:95 +#: src/Module/Settings/Account.php:96 msgid "Please use a shorter name." msgstr "Használjon rövidebb nevet." -#: src/Module/Settings/Account.php:98 +#: src/Module/Settings/Account.php:99 msgid "Name too short." msgstr "A név túl rövid." -#: src/Module/Settings/Account.php:107 +#: src/Module/Settings/Account.php:108 msgid "Wrong Password." msgstr "Hibás jelszó." -#: src/Module/Settings/Account.php:112 +#: src/Module/Settings/Account.php:113 msgid "Invalid email." msgstr "Érvénytelen e-mail-cím." -#: src/Module/Settings/Account.php:118 +#: src/Module/Settings/Account.php:117 msgid "Cannot change to that email." msgstr "Nem lehet megváltoztatni arra az e-mail-címre." -#: src/Module/Settings/Account.php:148 src/Module/Settings/Account.php:200 -#: src/Module/Settings/Account.php:220 src/Module/Settings/Account.php:304 -#: src/Module/Settings/Account.php:353 +#: src/Module/Settings/Account.php:146 src/Module/Settings/Account.php:198 +#: src/Module/Settings/Account.php:218 src/Module/Settings/Account.php:302 +#: src/Module/Settings/Account.php:351 msgid "Settings were not updated." msgstr "A beállítások nem lettek frissítve." -#: src/Module/Settings/Account.php:365 +#: src/Module/Settings/Account.php:363 msgid "Contact CSV file upload error" msgstr "Partner CSV-fájl feltöltési hiba" -#: src/Module/Settings/Account.php:384 +#: src/Module/Settings/Account.php:382 msgid "Importing Contacts done" msgstr "A partnerek importálása kész" -#: src/Module/Settings/Account.php:397 +#: src/Module/Settings/Account.php:395 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:414 +#: src/Module/Settings/Account.php:412 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:456 +#: src/Module/Settings/Account.php:454 msgid "Personal Page Subtypes" msgstr "Személyes oldal altípusai" -#: src/Module/Settings/Account.php:457 +#: src/Module/Settings/Account.php:455 msgid "Community Forum Subtypes" msgstr "Közösségi fórum altípusai" -#: src/Module/Settings/Account.php:467 +#: src/Module/Settings/Account.php:465 msgid "Account for a personal profile." msgstr "Egy személyes profil fiókja." -#: src/Module/Settings/Account.php:474 +#: src/Module/Settings/Account.php:472 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:481 +#: src/Module/Settings/Account.php:479 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:488 +#: src/Module/Settings/Account.php:486 msgid "Account for community discussions." msgstr "Közösségi beszélgetések fiókja." -#: src/Module/Settings/Account.php:495 +#: src/Module/Settings/Account.php:493 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:502 +#: src/Module/Settings/Account.php:500 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:509 +#: src/Module/Settings/Account.php:507 msgid "Automatically approves all contact requests." msgstr "Automatikusan jóváhagyja az összes partnerkérést." -#: src/Module/Settings/Account.php:516 +#: src/Module/Settings/Account.php:514 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:521 +#: src/Module/Settings/Account.php:519 msgid "Private Forum [Experimental]" msgstr "Személyes fórum [kísérleti]" -#: src/Module/Settings/Account.php:523 +#: src/Module/Settings/Account.php:521 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:532 +#: src/Module/Settings/Account.php:530 msgid "OpenID:" msgstr "OpenID:" -#: src/Module/Settings/Account.php:532 +#: src/Module/Settings/Account.php:530 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:540 +#: src/Module/Settings/Account.php:538 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:540 +#: src/Module/Settings/Account.php:538 #, php-format msgid "" "Your profile will be published in this node's local " @@ -8984,89 +8900,89 @@ 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:546 +#: src/Module/Settings/Account.php:544 #, 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:559 +#: src/Module/Settings/Account.php:557 msgid "Account Settings" msgstr "Fiókbeállítások" -#: src/Module/Settings/Account.php:560 +#: src/Module/Settings/Account.php:558 #, 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:566 msgid "Password Settings" msgstr "Jelszóbeállítások" -#: src/Module/Settings/Account.php:570 +#: src/Module/Settings/Account.php:568 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:570 msgid "Password:" msgstr "Jelszó:" -#: src/Module/Settings/Account.php:572 +#: src/Module/Settings/Account.php:570 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:573 msgid "Delete OpenID URL" msgstr "OpenID URL törlése" -#: src/Module/Settings/Account.php:577 +#: src/Module/Settings/Account.php:575 msgid "Basic Settings" msgstr "Alapvető beállítások" -#: src/Module/Settings/Account.php:579 +#: src/Module/Settings/Account.php:577 msgid "Email Address:" msgstr "E-mail-cím:" -#: src/Module/Settings/Account.php:580 +#: src/Module/Settings/Account.php:578 msgid "Your Timezone:" msgstr "Az Ön időzónája:" -#: src/Module/Settings/Account.php:581 +#: src/Module/Settings/Account.php:579 msgid "Your Language:" msgstr "Az Ön nyelve:" -#: src/Module/Settings/Account.php:581 +#: src/Module/Settings/Account.php:579 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:580 msgid "Default Post Location:" msgstr "Alapértelmezett bejegyzésküldési hely:" -#: src/Module/Settings/Account.php:583 +#: src/Module/Settings/Account.php:581 msgid "Use Browser Location:" msgstr "Böngésző helyének használata:" -#: src/Module/Settings/Account.php:585 +#: src/Module/Settings/Account.php:583 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:585 msgid "Maximum Friend Requests/Day:" msgstr "Legtöbb ismerőskérés naponta:" -#: src/Module/Settings/Account.php:587 src/Module/Settings/Account.php:597 +#: src/Module/Settings/Account.php:585 src/Module/Settings/Account.php:595 msgid "(to prevent spam abuse)" msgstr "(a levélszeméttel való visszaélés elkerüléséhez)" -#: src/Module/Settings/Account.php:589 +#: src/Module/Settings/Account.php:587 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:587 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 " @@ -9074,43 +8990,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:588 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:588 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 -msgid "Hide your profile details from anonymous viewers?" -msgstr "Elrejti a profilja részleteit a névtelen megtekintők elől?" +#: src/Module/Settings/Account.php:589 +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:589 msgid "" -"Anonymous visitors will only see your profile picture, your display name and" -" the nickname you are using on your profile page. Your public posts and " -"replies will still be accessible by other means." -msgstr "A névtelen látogatók csak azt profilfényképét, megjelenített nevét és becenevét láthatják, amelyet a profiloldalán használ. A nyilvános bejegyzései és válaszai továbbra is elérhetők lesznek más eszközökkel." +"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:590 msgid "Make public posts unlisted" msgstr "Nyilvános bejegyzések felsorolatlanná tétele" -#: src/Module/Settings/Account.php:592 +#: src/Module/Settings/Account.php:590 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:591 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:591 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 " @@ -9118,569 +9034,794 @@ 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:592 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:592 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:593 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:593 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:594 msgid "Permit unknown people to send you private mail?" msgstr "Engedélyt ad ismeretlen embereknek, hogy személyes levelet küldjenek Önnek?" -#: src/Module/Settings/Account.php:596 +#: src/Module/Settings/Account.php:594 msgid "" "Friendica network users may send you private messages even if they are not " "in your contact list." msgstr "A Friendica hálózat felhasználói akkor is küldhetnek Önnek személyes üzeneteket, ha nincsenek a partnerlistáján." -#: src/Module/Settings/Account.php:597 +#: src/Module/Settings/Account.php:595 msgid "Maximum private messages per day from unknown people:" msgstr "Legtöbb személyes üzenet naponta az ismeretlen emberektől:" -#: src/Module/Settings/Account.php:599 +#: src/Module/Settings/Account.php:597 msgid "Default Post Permissions" msgstr "Alapértelmezett bejegyzés-jogosultságok" -#: src/Module/Settings/Account.php:603 +#: src/Module/Settings/Account.php:601 msgid "Expiration settings" msgstr "Lejárati jogosultságok" -#: src/Module/Settings/Account.php:604 +#: src/Module/Settings/Account.php:602 msgid "Automatically expire posts after this many days:" msgstr "Bejegyzések automatikus lejárata ennyi nap után:" -#: src/Module/Settings/Account.php:604 +#: src/Module/Settings/Account.php:602 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:605 +#: src/Module/Settings/Account.php:603 msgid "Expire posts" msgstr "Bejegyzések lejárata" -#: src/Module/Settings/Account.php:605 +#: src/Module/Settings/Account.php:603 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:606 +#: src/Module/Settings/Account.php:604 msgid "Expire personal notes" msgstr "Személyes jegyzetek lejárata" -#: src/Module/Settings/Account.php:606 +#: src/Module/Settings/Account.php:604 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:607 +#: src/Module/Settings/Account.php:605 msgid "Expire starred posts" msgstr "Csillagozott bejegyzések lejárata" -#: src/Module/Settings/Account.php:607 +#: src/Module/Settings/Account.php:605 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:608 +#: src/Module/Settings/Account.php:606 msgid "Only expire posts by others" msgstr "Csak a másoktól származó bejegyzések lejárata" -#: src/Module/Settings/Account.php:608 +#: src/Module/Settings/Account.php:606 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:611 +#: src/Module/Settings/Account.php:609 msgid "Notification Settings" msgstr "Értesítési beállítások" -#: src/Module/Settings/Account.php:612 +#: src/Module/Settings/Account.php:610 msgid "Send a notification email when:" msgstr "Értesítési e-mail küldése a következő esetekben:" -#: src/Module/Settings/Account.php:613 +#: src/Module/Settings/Account.php:611 msgid "You receive an introduction" msgstr "Egy bemutatkozást fogad" -#: src/Module/Settings/Account.php:614 +#: src/Module/Settings/Account.php:612 msgid "Your introductions are confirmed" msgstr "A bemutatkozásait jóváhagyták" -#: src/Module/Settings/Account.php:615 +#: src/Module/Settings/Account.php:613 msgid "Someone writes on your profile wall" msgstr "Valaki ír a profilfalára" -#: src/Module/Settings/Account.php:616 +#: src/Module/Settings/Account.php:614 msgid "Someone writes a followup comment" msgstr "Valaki egy követő hozzászólást ír" -#: src/Module/Settings/Account.php:617 +#: src/Module/Settings/Account.php:615 msgid "You receive a private message" msgstr "Személyes üzenetet kap" -#: src/Module/Settings/Account.php:618 +#: src/Module/Settings/Account.php:616 msgid "You receive a friend suggestion" msgstr "Ismerősajánlást kap" -#: src/Module/Settings/Account.php:619 +#: src/Module/Settings/Account.php:617 msgid "You are tagged in a post" msgstr "Megjelölték egy bejegyzésben" -#: src/Module/Settings/Account.php:621 +#: src/Module/Settings/Account.php:619 msgid "Create a desktop notification when:" msgstr "Asztali értesítés létrehozása ekkor:" -#: src/Module/Settings/Account.php:622 +#: src/Module/Settings/Account.php:620 msgid "Someone tagged you" msgstr "Valaki megjelölte Önt" -#: src/Module/Settings/Account.php:623 +#: src/Module/Settings/Account.php:621 msgid "Someone directly commented on your post" msgstr "Valaki közvetlenül hozzászólt a bejegyzéséhez" -#: src/Module/Settings/Account.php:624 +#: src/Module/Settings/Account.php:622 msgid "Someone liked your content" msgstr "Valaki kedvelte az Ön tartalmát" -#: src/Module/Settings/Account.php:624 src/Module/Settings/Account.php:625 +#: src/Module/Settings/Account.php:622 src/Module/Settings/Account.php:623 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:625 +#: src/Module/Settings/Account.php:623 msgid "Someone shared your content" msgstr "Valaki megosztotta az Ön tartalmát" -#: src/Module/Settings/Account.php:626 +#: src/Module/Settings/Account.php:624 msgid "Someone commented in your thread" msgstr "Valaki hozzászólt az Ön szálában" -#: src/Module/Settings/Account.php:627 +#: src/Module/Settings/Account.php:625 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:628 +#: src/Module/Settings/Account.php:626 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:630 +#: src/Module/Settings/Account.php:628 msgid "Activate desktop notifications" msgstr "Asztali értesítések bekapcsolása" -#: src/Module/Settings/Account.php:630 +#: src/Module/Settings/Account.php:628 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:634 +#: src/Module/Settings/Account.php:632 msgid "Text-only notification emails" msgstr "Csak szöveges értesítési e-mailek" -#: src/Module/Settings/Account.php:636 +#: src/Module/Settings/Account.php:634 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:640 +#: src/Module/Settings/Account.php:638 msgid "Show detailled notifications" msgstr "Részletes értesítések megjelenítése" -#: src/Module/Settings/Account.php:642 +#: src/Module/Settings/Account.php:640 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:646 +#: src/Module/Settings/Account.php:644 msgid "Show notifications of ignored contacts" msgstr "Figyelmen kívül hagyott partnerek értesítéseinek megjelenítése" -#: src/Module/Settings/Account.php:648 +#: src/Module/Settings/Account.php:646 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 figyelmen kívül hagyott 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 figyelmen kívül hagyott partnerek okoznak." -#: src/Module/Settings/Account.php:651 +#: src/Module/Settings/Account.php:649 msgid "Advanced Account/Page Type Settings" msgstr "Speciális fióktípus vagy oldaltípus beállítások" -#: src/Module/Settings/Account.php:652 +#: src/Module/Settings/Account.php:650 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:655 +#: src/Module/Settings/Account.php:653 msgid "Import Contacts" msgstr "Partnerek importálása" -#: src/Module/Settings/Account.php:656 +#: src/Module/Settings/Account.php:654 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:657 +#: src/Module/Settings/Account.php:655 msgid "Upload File" msgstr "Fájl feltöltése" -#: src/Module/Settings/Account.php:660 +#: src/Module/Settings/Account.php:658 msgid "Relocate" msgstr "Áthelyezés" -#: src/Module/Settings/Account.php:661 +#: src/Module/Settings/Account.php:659 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:662 +#: src/Module/Settings/Account.php:660 msgid "Resend relocate message to contacts" msgstr "Áthelyezési üzenet küldése a partnereknek" -#: src/Module/Settings/Delegation.php:53 +#: src/Module/Settings/Addons.php:89 +msgid "Addon Settings" +msgstr "Bővítménybeállítások" + +#: src/Module/Settings/Addons.php:90 +msgid "No Addon settings configured" +msgstr "Nincsenek bővítménybeállítások meghatározva" + +#: src/Module/Settings/Connectors.php:121 +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:165 +#: src/Module/Settings/Connectors.php:166 +msgid "Diaspora (Socialhome, Hubzilla)" +msgstr "Diaspora (Socialhome, Hubzilla)" + +#: src/Module/Settings/Connectors.php:165 +#: src/Module/Settings/Connectors.php:169 +#, 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:166 +#: src/Module/Settings/Connectors.php:168 +#, 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:168 +#: src/Module/Settings/Connectors.php:169 +msgid "OStatus (GNU Social)" +msgstr "OStatus (GNU Social)" + +#: src/Module/Settings/Connectors.php:181 +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:196 +#: src/Module/Settings/Connectors.php:242 +msgid "None" +msgstr "Nincs" + +#: src/Module/Settings/Connectors.php:208 +msgid "General Social Media Settings" +msgstr "Általános közösségimédia-beállítások" + +#: src/Module/Settings/Connectors.php:211 +msgid "Followed content scope" +msgstr "Követett tartalom hatóköre" + +#: src/Module/Settings/Connectors.php:213 +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:215 +msgid "Only conversations my follows started" +msgstr "Csak a követőim által indított beszélgetések" + +#: src/Module/Settings/Connectors.php:216 +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:217 +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:220 +msgid "Enable Content Warning" +msgstr "Tartalomfigyelmeztetés engedélyezése" + +#: src/Module/Settings/Connectors.php:220 +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." +msgstr "Például a Mastodon vagy a Pleroma hálózatán lévő felhasználók képesek egy olyan tartalomfigyelmeztetési mezőt beállítani, amely alapértelmezetten összecsukja a bejegyzéseiket. Ez engedélyezi az automatikus összecsukást, ahelyett hogy beállítaná a tartalomfigyelmeztetést a bejegyzés címeként. Nincs hatással semmilyen más tartalomszűrésre, amelyet végül beállított." + +#: src/Module/Settings/Connectors.php:221 +msgid "Enable intelligent shortening" +msgstr "Intelligens rövidítés engedélyezése" + +#: src/Module/Settings/Connectors.php:221 +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:222 +msgid "Enable simple text shortening" +msgstr "Egyszerű szövegrövidítés engedélyezése" + +#: src/Module/Settings/Connectors.php:222 +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:223 +msgid "Attach the link title" +msgstr "A hivatkozás címének csatolása" + +#: src/Module/Settings/Connectors.php:223 +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:224 +msgid "Your legacy ActivityPub/GNU Social account" +msgstr "Az örökölt ActivityPub/GNU Social fiókja" + +#: src/Module/Settings/Connectors.php:224 +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:227 +msgid "Repair OStatus subscriptions" +msgstr "OStatus feliratkozások javítása" + +#: src/Module/Settings/Connectors.php:231 +msgid "Email/Mailbox Setup" +msgstr "E-mail vagy postafiók-beállítások" + +#: src/Module/Settings/Connectors.php:232 +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:233 +msgid "Last successful email check:" +msgstr "Legutóbbi sikeres e-mail-ellenőrzés:" + +#: src/Module/Settings/Connectors.php:235 +msgid "IMAP server name:" +msgstr "IMAP-kiszolgáló neve:" + +#: src/Module/Settings/Connectors.php:236 +msgid "IMAP port:" +msgstr "IMAP port:" + +#: src/Module/Settings/Connectors.php:237 +msgid "Security:" +msgstr "Biztonság:" + +#: src/Module/Settings/Connectors.php:238 +msgid "Email login name:" +msgstr "E-mail bejelentkezési neve:" + +#: src/Module/Settings/Connectors.php:239 +msgid "Email password:" +msgstr "E-mail jelszava:" + +#: src/Module/Settings/Connectors.php:240 +msgid "Reply-to address:" +msgstr "Válaszcím:" + +#: src/Module/Settings/Connectors.php:241 +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:242 +msgid "Action after import:" +msgstr "Importálás utáni művelet:" + +#: src/Module/Settings/Connectors.php:242 +msgid "Move to folder" +msgstr "Áthelyezés mappába" + +#: src/Module/Settings/Connectors.php:243 +msgid "Move to folder:" +msgstr "Áthelyezés mappába:" + +#: src/Module/Settings/Delegation.php:52 msgid "Delegation successfully granted." msgstr "A meghatalmazás sikeresen megadva." -#: src/Module/Settings/Delegation.php:55 +#: src/Module/Settings/Delegation.php:54 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:59 +#: src/Module/Settings/Delegation.php:58 msgid "Delegation successfully revoked." msgstr "A meghatalmazás sikeresen visszavonva." -#: src/Module/Settings/Delegation.php:81 -#: src/Module/Settings/Delegation.php:103 +#: src/Module/Settings/Delegation.php:80 +#: src/Module/Settings/Delegation.php:102 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:95 +#: src/Module/Settings/Delegation.php:94 msgid "Delegate user not found." msgstr "A meghatalmazott felhasználó nem található." -#: src/Module/Settings/Delegation.php:143 +#: src/Module/Settings/Delegation.php:142 msgid "No parent user" msgstr "Nincs fölérendelt felhasználó" -#: src/Module/Settings/Delegation.php:154 -#: src/Module/Settings/Delegation.php:165 +#: src/Module/Settings/Delegation.php:153 +#: src/Module/Settings/Delegation.php:164 msgid "Parent User" msgstr "Fölérendelt felhasználó" -#: src/Module/Settings/Delegation.php:162 +#: src/Module/Settings/Delegation.php:161 msgid "Additional Accounts" msgstr "További fiókok" -#: src/Module/Settings/Delegation.php:163 +#: src/Module/Settings/Delegation.php:162 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:164 +#: src/Module/Settings/Delegation.php:163 msgid "Register an additional account" msgstr "További fiók regisztrálása" -#: src/Module/Settings/Delegation.php:168 +#: src/Module/Settings/Delegation.php:167 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:172 +#: src/Module/Settings/Delegation.php:171 msgid "Delegates" msgstr "Meghatalmazottak" -#: src/Module/Settings/Delegation.php:174 +#: src/Module/Settings/Delegation.php:173 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:175 +#: src/Module/Settings/Delegation.php:174 msgid "Existing Page Delegates" msgstr "Meglévő oldalmeghatalmazottak" -#: src/Module/Settings/Delegation.php:177 +#: src/Module/Settings/Delegation.php:176 msgid "Potential Delegates" msgstr "Lehetséges meghatalmazottak" -#: src/Module/Settings/Delegation.php:180 +#: src/Module/Settings/Delegation.php:179 msgid "Add" msgstr "Hozzáadás" -#: src/Module/Settings/Delegation.php:181 +#: src/Module/Settings/Delegation.php:180 msgid "No entries." msgstr "Nincsenek bejegyzések." -#: src/Module/Settings/Display.php:107 +#: src/Module/Settings/Display.php:110 msgid "The theme you chose isn't available." msgstr "A választott téma nem érhető el." -#: src/Module/Settings/Display.php:146 +#: src/Module/Settings/Display.php:149 #, php-format msgid "%s - (Unsupported)" msgstr "%s – (nem támogatott)" -#: src/Module/Settings/Display.php:192 +#: src/Module/Settings/Display.php:196 +msgid "No preview" +msgstr "Nincs előnézet" + +#: src/Module/Settings/Display.php:197 +msgid "No image" +msgstr "Nincs kép" + +#: src/Module/Settings/Display.php:198 +msgid "Small Image" +msgstr "Kis kép" + +#: src/Module/Settings/Display.php:199 +msgid "Large Image" +msgstr "Nagy kép" + +#: src/Module/Settings/Display.php:210 msgid "Display Settings" msgstr "Megjelenítési beállítások" -#: src/Module/Settings/Display.php:194 +#: src/Module/Settings/Display.php:212 msgid "General Theme Settings" msgstr "Általános témabeállítások" -#: src/Module/Settings/Display.php:195 +#: src/Module/Settings/Display.php:213 msgid "Custom Theme Settings" msgstr "Egyéni témabeállítások" -#: src/Module/Settings/Display.php:196 +#: src/Module/Settings/Display.php:214 msgid "Content Settings" msgstr "Tartalombeállítások" -#: src/Module/Settings/Display.php:197 view/theme/duepuntozero/config.php:70 -#: view/theme/frio/config.php:161 view/theme/quattro/config.php:72 -#: view/theme/vier/config.php:120 +#: src/Module/Settings/Display.php:215 view/theme/duepuntozero/config.php:86 +#: view/theme/frio/config.php:172 view/theme/quattro/config.php:88 +#: view/theme/vier/config.php:136 msgid "Theme settings" msgstr "Témabeállítások" -#: src/Module/Settings/Display.php:198 -msgid "Calendar" -msgstr "Naptár" - -#: src/Module/Settings/Display.php:204 +#: src/Module/Settings/Display.php:222 msgid "Display Theme:" msgstr "Megjelenítés témája:" -#: src/Module/Settings/Display.php:205 +#: src/Module/Settings/Display.php:223 msgid "Mobile Theme:" msgstr "Mobil téma:" -#: src/Module/Settings/Display.php:208 +#: src/Module/Settings/Display.php:226 msgid "Number of items to display per page:" msgstr "Oldalanként megjelenítendő elemek száma:" -#: src/Module/Settings/Display.php:208 src/Module/Settings/Display.php:209 +#: src/Module/Settings/Display.php:226 src/Module/Settings/Display.php:227 msgid "Maximum of 100 items" msgstr "Legfeljebb 100 elem" -#: src/Module/Settings/Display.php:209 +#: src/Module/Settings/Display.php:227 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:210 +#: src/Module/Settings/Display.php:228 msgid "Update browser every xx seconds" msgstr "Böngésző frissítése N másodpercenként" -#: src/Module/Settings/Display.php:210 +#: src/Module/Settings/Display.php:228 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:211 +#: src/Module/Settings/Display.php:229 msgid "Automatic updates only at the top of the post stream pages" msgstr "Automatikus frissítések csak a bejegyzésfolyam oldalainak tetejénél" -#: src/Module/Settings/Display.php:211 +#: src/Module/Settings/Display.php:229 msgid "" "Auto update may add new posts at the top of the post stream pages, which can" " affect the scroll position and perturb normal reading if it happens " "anywhere else the top of the page." msgstr "Az automatikus frissítés új bejegyzéseket adhat a bejegyzésfolyam oldalainak tetejéhez, amely hatással lehet a görgetési pozícióra és megzavarhatja a normál olvasást, ha az oldal tetejének bármely részén történik." -#: src/Module/Settings/Display.php:212 +#: src/Module/Settings/Display.php:230 msgid "Display emoticons" msgstr "Hangulatjelek megjelenítése" -#: src/Module/Settings/Display.php:212 +#: src/Module/Settings/Display.php:230 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:213 +#: src/Module/Settings/Display.php:231 msgid "Infinite scroll" msgstr "Végtelen görgetés" -#: src/Module/Settings/Display.php:213 +#: src/Module/Settings/Display.php:231 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:214 +#: src/Module/Settings/Display.php:232 msgid "Enable Smart Threading" msgstr "Intelligens szálkezelés engedélyezése" -#: src/Module/Settings/Display.php:214 +#: src/Module/Settings/Display.php:232 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:215 +#: src/Module/Settings/Display.php:233 msgid "Display the Dislike feature" msgstr "A nem tetszik funkció megjelenítése" -#: src/Module/Settings/Display.php:215 +#: src/Module/Settings/Display.php:233 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:216 +#: src/Module/Settings/Display.php:234 msgid "Display the resharer" msgstr "Az újramegosztó megjelenítése" -#: src/Module/Settings/Display.php:216 +#: src/Module/Settings/Display.php:234 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:217 +#: src/Module/Settings/Display.php:235 msgid "Stay local" msgstr "Maradjon helyi" -#: src/Module/Settings/Display.php:217 +#: src/Module/Settings/Display.php:235 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:219 +#: src/Module/Settings/Display.php:236 +msgid "Link preview mode" +msgstr "Hivatkozás-előnézeti mód" + +#: src/Module/Settings/Display.php:238 msgid "Beginning of week:" msgstr "A hét kezdete:" -#: src/Module/Settings/Profile/Index.php:83 +#: src/Module/Settings/Features.php:74 +msgid "Additional Features" +msgstr "További funkciók" + +#: src/Module/Settings/OAuth.php:72 +msgid "Connected Apps" +msgstr "Kapcsolt alkalmazások" + +#: src/Module/Settings/OAuth.php:76 +msgid "Remove authorization" +msgstr "Felhatalmazás eltávolítása" + +#: src/Module/Settings/Profile/Index.php:84 msgid "Profile Name is required." msgstr "A profil neve kötelező." -#: src/Module/Settings/Profile/Index.php:131 +#: src/Module/Settings/Profile/Index.php:134 msgid "Profile couldn't be updated." msgstr "A profilt nem sikerült frissíteni." -#: src/Module/Settings/Profile/Index.php:172 -#: src/Module/Settings/Profile/Index.php:192 +#: src/Module/Settings/Profile/Index.php:175 +#: src/Module/Settings/Profile/Index.php:195 msgid "Label:" msgstr "Címke:" -#: src/Module/Settings/Profile/Index.php:173 -#: src/Module/Settings/Profile/Index.php:193 +#: src/Module/Settings/Profile/Index.php:176 +#: src/Module/Settings/Profile/Index.php:196 msgid "Value:" msgstr "Érték:" -#: src/Module/Settings/Profile/Index.php:183 -#: src/Module/Settings/Profile/Index.php:203 +#: src/Module/Settings/Profile/Index.php:186 +#: src/Module/Settings/Profile/Index.php:206 msgid "Field Permissions" msgstr "Mező jogosultságai" -#: src/Module/Settings/Profile/Index.php:184 -#: src/Module/Settings/Profile/Index.php:204 +#: src/Module/Settings/Profile/Index.php:187 +#: src/Module/Settings/Profile/Index.php:207 msgid "(click to open/close)" msgstr "(kattintson a megnyitáshoz vagy bezáráshoz)" -#: src/Module/Settings/Profile/Index.php:190 +#: src/Module/Settings/Profile/Index.php:193 msgid "Add a new profile field" msgstr "Új profilmező hozzáadása" -#: src/Module/Settings/Profile/Index.php:220 +#: src/Module/Settings/Profile/Index.php:217 +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:219 +#, 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:229 msgid "Profile Actions" msgstr "Profilműveletek" -#: src/Module/Settings/Profile/Index.php:221 +#: src/Module/Settings/Profile/Index.php:230 msgid "Edit Profile Details" msgstr "Profil részleteinek szerkesztése" -#: src/Module/Settings/Profile/Index.php:223 +#: src/Module/Settings/Profile/Index.php:232 msgid "Change Profile Photo" msgstr "Profilfénykép megváltoztatása" -#: src/Module/Settings/Profile/Index.php:228 +#: src/Module/Settings/Profile/Index.php:237 msgid "Profile picture" msgstr "Profilfénykép" -#: src/Module/Settings/Profile/Index.php:229 +#: src/Module/Settings/Profile/Index.php:238 msgid "Location" msgstr "Hely" -#: src/Module/Settings/Profile/Index.php:230 src/Util/Temporal.php:93 -#: src/Util/Temporal.php:95 +#: src/Module/Settings/Profile/Index.php:239 src/Util/Temporal.php:95 +#: src/Util/Temporal.php:97 msgid "Miscellaneous" msgstr "Egyebek" -#: src/Module/Settings/Profile/Index.php:231 +#: src/Module/Settings/Profile/Index.php:240 msgid "Custom Profile Fields" msgstr "Egyéni profilmezők" -#: src/Module/Settings/Profile/Index.php:233 src/Module/Welcome.php:58 +#: src/Module/Settings/Profile/Index.php:242 src/Module/Welcome.php:58 msgid "Upload Profile Photo" msgstr "Profilfénykép feltöltése" -#: src/Module/Settings/Profile/Index.php:237 +#: src/Module/Settings/Profile/Index.php:246 msgid "Display name:" msgstr "Megjelenített név:" -#: src/Module/Settings/Profile/Index.php:240 +#: src/Module/Settings/Profile/Index.php:249 msgid "Street Address:" msgstr "Utca, házszám:" -#: src/Module/Settings/Profile/Index.php:241 +#: src/Module/Settings/Profile/Index.php:250 msgid "Locality/City:" msgstr "Helység vagy város:" -#: src/Module/Settings/Profile/Index.php:242 +#: src/Module/Settings/Profile/Index.php:251 msgid "Region/State:" msgstr "Régió vagy állam:" -#: src/Module/Settings/Profile/Index.php:243 +#: src/Module/Settings/Profile/Index.php:252 msgid "Postal/Zip Code:" msgstr "Irányítószám:" -#: src/Module/Settings/Profile/Index.php:244 +#: src/Module/Settings/Profile/Index.php:253 msgid "Country:" msgstr "Ország:" -#: src/Module/Settings/Profile/Index.php:246 +#: src/Module/Settings/Profile/Index.php:255 msgid "XMPP (Jabber) address:" msgstr "XMPP (Jabber) cím:" -#: src/Module/Settings/Profile/Index.php:246 +#: src/Module/Settings/Profile/Index.php:255 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:247 +#: src/Module/Settings/Profile/Index.php:256 msgid "Matrix (Element) address:" msgstr "Mátrix (Element) cím:" -#: src/Module/Settings/Profile/Index.php:247 +#: src/Module/Settings/Profile/Index.php:256 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:248 +#: src/Module/Settings/Profile/Index.php:257 msgid "Homepage URL:" msgstr "Honlap URL:" -#: src/Module/Settings/Profile/Index.php:249 +#: src/Module/Settings/Profile/Index.php:258 msgid "Public Keywords:" msgstr "Nyilvános kulcsszavak:" -#: src/Module/Settings/Profile/Index.php:249 +#: src/Module/Settings/Profile/Index.php:258 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:250 +#: src/Module/Settings/Profile/Index.php:259 msgid "Private Keywords:" msgstr "Személyes kulcsszavak:" -#: src/Module/Settings/Profile/Index.php:250 +#: src/Module/Settings/Profile/Index.php:259 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/Index.php:251 +#: src/Module/Settings/Profile/Index.php:260 #, php-format msgid "" "

Custom fields appear on your profile page.

\n" @@ -9690,257 +9831,296 @@ msgid "" "\t\t\t\t

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

" msgstr "

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

\n\t\t\t\t

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

\n\t\t\t\t

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

\n\t\t\t\t

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

\n\t\t\t\t

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

" -#: src/Module/Settings/Profile/Photo/Crop.php:108 -#: src/Module/Settings/Profile/Photo/Crop.php:126 -#: src/Module/Settings/Profile/Photo/Crop.php:144 -#: src/Module/Settings/Profile/Photo/Index.php:102 +#: 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:101 #, 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:151 +#: src/Module/Settings/Profile/Photo/Crop.php:150 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:156 +#: src/Module/Settings/Profile/Photo/Crop.php:155 msgid "Unable to process image" msgstr "Nem lehet feldolgozni a képet" -#: src/Module/Settings/Profile/Photo/Crop.php:175 +#: src/Module/Settings/Profile/Photo/Crop.php:174 msgid "Photo not found." msgstr "A fénykép nem található." -#: src/Module/Settings/Profile/Photo/Crop.php:197 +#: src/Module/Settings/Profile/Photo/Crop.php:196 msgid "Profile picture successfully updated." msgstr "A profilfénykép sikeresen frissítve." -#: src/Module/Settings/Profile/Photo/Crop.php:223 -#: src/Module/Settings/Profile/Photo/Crop.php:227 +#: src/Module/Settings/Profile/Photo/Crop.php:222 +#: src/Module/Settings/Profile/Photo/Crop.php:226 msgid "Crop Image" msgstr "Kép levágása" -#: src/Module/Settings/Profile/Photo/Crop.php:224 +#: src/Module/Settings/Profile/Photo/Crop.php:223 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:226 +#: src/Module/Settings/Profile/Photo/Crop.php:225 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:45 msgid "Missing uploaded image." msgstr "Hiányzó feltöltött kép." -#: src/Module/Settings/Profile/Photo/Index.php:125 +#: src/Module/Settings/Profile/Photo/Index.php:124 msgid "Profile Picture Settings" msgstr "Profilfénykép beállításai" -#: src/Module/Settings/Profile/Photo/Index.php:126 +#: src/Module/Settings/Profile/Photo/Index.php:125 msgid "Current Profile Picture" msgstr "Jelenlegi profilfénykép" -#: src/Module/Settings/Profile/Photo/Index.php:127 +#: src/Module/Settings/Profile/Photo/Index.php:126 msgid "Upload Profile Picture" msgstr "Profilfénykép feltöltése" -#: src/Module/Settings/Profile/Photo/Index.php:128 +#: src/Module/Settings/Profile/Photo/Index.php:127 msgid "Upload Picture:" msgstr "Fénykép feltöltése:" -#: src/Module/Settings/Profile/Photo/Index.php:133 +#: src/Module/Settings/Profile/Photo/Index.php:132 msgid "or" msgstr "vagy" -#: src/Module/Settings/Profile/Photo/Index.php:135 +#: src/Module/Settings/Profile/Photo/Index.php:134 msgid "skip this step" msgstr "ezen lépés kihagyása" -#: src/Module/Settings/Profile/Photo/Index.php:137 +#: src/Module/Settings/Profile/Photo/Index.php:136 msgid "select a photo from your photo albums" msgstr "fénykép kiválasztása a fényképalbumából" -#: src/Module/Settings/TwoFactor/AppSpecific.php:64 -#: src/Module/Settings/TwoFactor/Recovery.php:62 -#: src/Module/Settings/TwoFactor/Trusted.php:65 -#: src/Module/Settings/TwoFactor/Verify.php:68 +#: src/Module/Settings/RemoveMe.php:94 +#: src/Navigation/Notifications/Repository/Notify.php:471 +#: src/Navigation/Notifications/Repository/Notify.php:492 +msgid "[Friendica System Notify]" +msgstr "[Friendica rendszerértesítés]" + +#: src/Module/Settings/RemoveMe.php:94 +msgid "User deleted their account" +msgstr "A felhasználó törölte a fiókját" + +#: src/Module/Settings/RemoveMe.php:95 +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:96 +#, php-format +msgid "The user id is %d" +msgstr "A felhasználó-azonosító %d" + +#: src/Module/Settings/RemoveMe.php:108 +msgid "Your user account has been successfully removed. Bye bye!" +msgstr "A felhasználói fiókja sikeresen el lett távolítva. Viszlát!" + +#: src/Module/Settings/RemoveMe.php:128 +msgid "Remove My Account" +msgstr "Saját fiók eltávolítása" + +#: src/Module/Settings/RemoveMe.php:129 +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:131 +msgid "Please enter your password for verification:" +msgstr "Adja meg a jelszavát az ellenőrzéshez:" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:66 +#: src/Module/Settings/TwoFactor/Recovery.php:64 +#: src/Module/Settings/TwoFactor/Trusted.php:67 +#: src/Module/Settings/TwoFactor/Verify.php:69 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:82 +#: src/Module/Settings/TwoFactor/AppSpecific.php:84 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:85 +#: src/Module/Settings/TwoFactor/AppSpecific.php:87 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:89 +#: src/Module/Settings/TwoFactor/AppSpecific.php:91 msgid "New app-specific password generated." msgstr "Az új alkalmazásfüggő jelszó előállítva." -#: src/Module/Settings/TwoFactor/AppSpecific.php:95 +#: src/Module/Settings/TwoFactor/AppSpecific.php:97 msgid "App-specific passwords successfully revoked." msgstr "Az alkalmazásfüggő jelszavak sikeresen visszavonva." -#: src/Module/Settings/TwoFactor/AppSpecific.php:105 +#: src/Module/Settings/TwoFactor/AppSpecific.php:107 msgid "App-specific password successfully revoked." msgstr "Az alkalmazásfüggő jelszó sikeresen visszavonva." -#: src/Module/Settings/TwoFactor/AppSpecific.php:126 +#: src/Module/Settings/TwoFactor/AppSpecific.php:128 msgid "Two-factor app-specific passwords" msgstr "Kétlépcsős alkalmazásfüggő jelszavak" -#: src/Module/Settings/TwoFactor/AppSpecific.php:128 +#: src/Module/Settings/TwoFactor/AppSpecific.php:130 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:129 +#: src/Module/Settings/TwoFactor/AppSpecific.php:131 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:132 +#: src/Module/Settings/TwoFactor/AppSpecific.php:134 msgid "Description" msgstr "Leírás" -#: src/Module/Settings/TwoFactor/AppSpecific.php:133 +#: src/Module/Settings/TwoFactor/AppSpecific.php:135 msgid "Last Used" msgstr "Legutóbb használt" -#: src/Module/Settings/TwoFactor/AppSpecific.php:134 +#: src/Module/Settings/TwoFactor/AppSpecific.php:136 msgid "Revoke" msgstr "Visszavonás" -#: src/Module/Settings/TwoFactor/AppSpecific.php:135 +#: src/Module/Settings/TwoFactor/AppSpecific.php:137 msgid "Revoke All" msgstr "Összes visszavonása" -#: src/Module/Settings/TwoFactor/AppSpecific.php:138 +#: src/Module/Settings/TwoFactor/AppSpecific.php:140 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:139 +#: src/Module/Settings/TwoFactor/AppSpecific.php:141 msgid "Generate new app-specific password" msgstr "Új alkalmazásfüggő jelszó előállítása" -#: src/Module/Settings/TwoFactor/AppSpecific.php:140 +#: src/Module/Settings/TwoFactor/AppSpecific.php:142 msgid "Friendiqa on my Fairphone 2..." msgstr "Friendiqa a Fairphone 2 készülékemen…" -#: src/Module/Settings/TwoFactor/AppSpecific.php:141 +#: src/Module/Settings/TwoFactor/AppSpecific.php:143 msgid "Generate" msgstr "Előállítás" -#: src/Module/Settings/TwoFactor/Index.php:69 +#: src/Module/Settings/TwoFactor/Index.php:68 msgid "Two-factor authentication successfully disabled." msgstr "A kétlépcsős hitelesítés sikeresen letiltva." -#: src/Module/Settings/TwoFactor/Index.php:121 +#: src/Module/Settings/TwoFactor/Index.php:120 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:125 +#: src/Module/Settings/TwoFactor/Index.php:124 msgid "Authenticator app" msgstr "Hitelesítő alkalmazás" -#: src/Module/Settings/TwoFactor/Index.php:126 +#: src/Module/Settings/TwoFactor/Index.php:125 msgid "Configured" msgstr "Beállítva" -#: src/Module/Settings/TwoFactor/Index.php:126 +#: src/Module/Settings/TwoFactor/Index.php:125 msgid "Not Configured" msgstr "Nincs beállítva" -#: src/Module/Settings/TwoFactor/Index.php:127 +#: src/Module/Settings/TwoFactor/Index.php:126 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:128 +#: src/Module/Settings/TwoFactor/Index.php:127 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:130 +#: src/Module/Settings/TwoFactor/Index.php:129 msgid "Recovery codes" msgstr "Visszaszerzési kódok" -#: src/Module/Settings/TwoFactor/Index.php:131 +#: src/Module/Settings/TwoFactor/Index.php:130 msgid "Remaining valid codes" msgstr "Hátralévő érvényes kódok" -#: src/Module/Settings/TwoFactor/Index.php:133 +#: src/Module/Settings/TwoFactor/Index.php:132 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:135 +#: src/Module/Settings/TwoFactor/Index.php:134 msgid "App-specific passwords" msgstr "Alkalmazásfüggő jelszavak" -#: src/Module/Settings/TwoFactor/Index.php:136 +#: src/Module/Settings/TwoFactor/Index.php:135 msgid "Generated app-specific passwords" msgstr "Előállított alkalmazásfüggő jelszavak" -#: src/Module/Settings/TwoFactor/Index.php:138 +#: src/Module/Settings/TwoFactor/Index.php:137 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:141 +#: src/Module/Settings/TwoFactor/Index.php:140 msgid "Current password:" msgstr "Jelenlegi jelszó:" -#: src/Module/Settings/TwoFactor/Index.php:141 +#: src/Module/Settings/TwoFactor/Index.php:140 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:142 +#: src/Module/Settings/TwoFactor/Index.php:141 msgid "Enable two-factor authentication" msgstr "Kétlépcsős hitelesítés engedélyezése" -#: src/Module/Settings/TwoFactor/Index.php:143 +#: src/Module/Settings/TwoFactor/Index.php:142 msgid "Disable two-factor authentication" msgstr "Kétlépcsős hitelesítés letiltása" -#: src/Module/Settings/TwoFactor/Index.php:144 +#: src/Module/Settings/TwoFactor/Index.php:143 msgid "Show recovery codes" msgstr "Visszaszerzési kódok megjelenítése" -#: src/Module/Settings/TwoFactor/Index.php:145 +#: src/Module/Settings/TwoFactor/Index.php:144 msgid "Manage app-specific passwords" msgstr "Alkalmazásfüggő jelszavak kezelése" -#: src/Module/Settings/TwoFactor/Index.php:146 +#: src/Module/Settings/TwoFactor/Index.php:145 msgid "Manage trusted browsers" msgstr "Megbízható böngészők kezelése" -#: src/Module/Settings/TwoFactor/Index.php:147 +#: src/Module/Settings/TwoFactor/Index.php:146 msgid "Finish app configuration" msgstr "Alkalmazás beállításának befejezése" -#: src/Module/Settings/TwoFactor/Recovery.php:78 +#: src/Module/Settings/TwoFactor/Recovery.php:80 msgid "New recovery codes successfully generated." msgstr "Az új visszaszerzési kódok sikeresen előállítva." -#: src/Module/Settings/TwoFactor/Recovery.php:104 +#: src/Module/Settings/TwoFactor/Recovery.php:106 msgid "Two-factor recovery codes" msgstr "Kétlépcsős visszaszerzési kódok" -#: src/Module/Settings/TwoFactor/Recovery.php:106 +#: src/Module/Settings/TwoFactor/Recovery.php:108 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 " @@ -9949,68 +10129,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:108 +#: src/Module/Settings/TwoFactor/Recovery.php:110 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:109 +#: src/Module/Settings/TwoFactor/Recovery.php:111 msgid "Generate new recovery codes" msgstr "Új visszaszerzési kódok előállítása" -#: src/Module/Settings/TwoFactor/Recovery.php:111 +#: src/Module/Settings/TwoFactor/Recovery.php:113 msgid "Next: Verification" msgstr "Következő: ellenőrzés" -#: src/Module/Settings/TwoFactor/Trusted.php:82 +#: src/Module/Settings/TwoFactor/Trusted.php:84 msgid "Trusted browsers successfully removed." msgstr "A megbízható böngészők sikeresen eltávolítva." -#: src/Module/Settings/TwoFactor/Trusted.php:92 +#: src/Module/Settings/TwoFactor/Trusted.php:94 msgid "Trusted browser successfully removed." msgstr "A megbízható böngésző sikeresen eltávolítva." -#: src/Module/Settings/TwoFactor/Trusted.php:134 +#: src/Module/Settings/TwoFactor/Trusted.php:136 msgid "Two-factor Trusted Browsers" msgstr "Kétlépcsős megbízható böngészők" -#: src/Module/Settings/TwoFactor/Trusted.php:135 +#: src/Module/Settings/TwoFactor/Trusted.php:137 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:136 +#: src/Module/Settings/TwoFactor/Trusted.php:138 msgid "Device" msgstr "Eszköz" -#: src/Module/Settings/TwoFactor/Trusted.php:137 +#: src/Module/Settings/TwoFactor/Trusted.php:139 msgid "OS" msgstr "Operációs rendszer" -#: src/Module/Settings/TwoFactor/Trusted.php:139 +#: src/Module/Settings/TwoFactor/Trusted.php:141 msgid "Trusted" msgstr "Megbízható" -#: src/Module/Settings/TwoFactor/Trusted.php:140 +#: src/Module/Settings/TwoFactor/Trusted.php:142 msgid "Created At" msgstr "Létrehozva:" -#: src/Module/Settings/TwoFactor/Trusted.php:141 +#: src/Module/Settings/TwoFactor/Trusted.php:143 msgid "Last Use" msgstr "Utolsó használat" -#: src/Module/Settings/TwoFactor/Trusted.php:143 +#: src/Module/Settings/TwoFactor/Trusted.php:145 msgid "Remove All" msgstr "Összes eltávolítása" -#: src/Module/Settings/TwoFactor/Verify.php:90 +#: src/Module/Settings/TwoFactor/Verify.php:91 msgid "Two-factor authentication successfully activated." msgstr "A kétlépcsős hitelesítés sikeresen bekapcsolva." -#: src/Module/Settings/TwoFactor/Verify.php:124 +#: src/Module/Settings/TwoFactor/Verify.php:125 #, php-format msgid "" "

Or you can submit the authentication settings manually:

\n" @@ -10030,53 +10210,53 @@ msgid "" "" msgstr "

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

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

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

" msgstr "

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

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

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

%s

" msgstr "

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

%s

" -#: src/Module/Settings/TwoFactor/Verify.php:155 +#: src/Module/Settings/TwoFactor/Verify.php:156 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:68 +#: src/Module/Settings/UserExport.php:90 msgid "Export account" msgstr "Fiók exportálása" -#: src/Module/Settings/UserExport.php:68 +#: src/Module/Settings/UserExport.php:90 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:69 +#: src/Module/Settings/UserExport.php:91 msgid "Export all" msgstr "Összes exportálása" -#: src/Module/Settings/UserExport.php:69 +#: src/Module/Settings/UserExport.php:91 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:70 +#: src/Module/Settings/UserExport.php:92 msgid "Export Contacts to CSV" msgstr "Partnerek exportálása CSV-fájlba" -#: src/Module/Settings/UserExport.php:70 +#: src/Module/Settings/UserExport.php:92 msgid "" "Export the list of the accounts you are following as CSV file. Compatible to" " e.g. Mastodon." @@ -10091,7 +10271,7 @@ msgstr "Veremkiíratás:" msgid "Exception thrown in %s:%d" msgstr "Kivétel történt itt: %s:%d" -#: src/Module/Tos.php:57 src/Module/Tos.php:91 +#: src/Module/Tos.php:57 src/Module/Tos.php:104 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" @@ -10104,28 +10284,103 @@ 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:58 src/Module/Tos.php:92 +#: src/Module/Tos.php:58 src/Module/Tos.php:105 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:59 src/Module/Tos.php:93 +#: src/Module/Tos.php:59 src/Module/Tos.php:106 #, php-format msgid "" "At any point in time a logged in user can export their account data from the" " account settings. If the user " "wants to delete their account they can do so at %1$s/removeme. The deletion of the account will " -"be permanent. Deletion of the data will also be requested 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/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." +"href=\"%1$s/settings/removeme\">%1$s/settings/removeme. The deletion of " +"the account will be permanent. Deletion of the data will also be requested " +"from the nodes of the communication partners." +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:62 src/Module/Tos.php:90 +#: src/Module/Tos.php:62 src/Module/Tos.php:103 msgid "Privacy Statement" msgstr "Adatvédelmi nyilatkozat" +#: src/Module/Tos.php:100 +msgid "Rules" +msgstr "Szabályok" + +#: src/Module/Update/Display.php:45 +msgid "Parameter uri_id is missing." +msgstr "Az uri_id paraméter hiányzik." + +#: src/Module/User/Import.php:103 +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:119 +msgid "Move account" +msgstr "Fiók áthelyezése" + +#: src/Module/User/Import.php:120 +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:121 +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:122 +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:123 +msgid "Account file" +msgstr "Fiókfájl" + +#: src/Module/User/Import.php:123 +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:217 +msgid "Error decoding account file" +msgstr "Hiba a fiókfájl dekódolásakor" + +#: src/Module/User/Import.php:222 +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:230 +#, 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:263 +msgid "User creation error" +msgstr "Felhasználó-létrehozási hiba" + +#: src/Module/User/Import.php:312 +#, 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:361 +msgid "User profile creation error" +msgstr "Felhasználóiprofil-létrehozási hiba" + +#: src/Module/User/Import.php:412 +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 msgid "Welcome to Friendica" msgstr "Üdvözli a Friendica!" @@ -10291,51 +10546,51 @@ msgid "" " 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:134 +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:161 msgid "{0} wants to follow you" msgstr "{0} követni szeretné Önt" -#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:136 +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:163 msgid "{0} has started following you" msgstr "{0} elkezdte követni Önt" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:91 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:96 #, php-format msgid "%s liked %s's post" msgstr "%s kedvelte %s bejegyzését" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:103 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:108 #, php-format msgid "%s disliked %s's post" msgstr "%s nem kedvelte %s bejegyzését" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:115 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:120 #, php-format msgid "%s is attending %s's event" msgstr "%s részt vesz %s eseményén" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:127 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:132 #, 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:139 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:144 #, 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:169 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:174 #, php-format msgid "%s is now friends with %s" msgstr "%s és %s mostantól ismerősök" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:336 -#: src/Navigation/Notifications/Factory/FormattedNotify.php:374 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:341 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:379 #, php-format msgid "%s commented on %s's post" msgstr "%s hozzászólt %s bejegyzéséhez" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:373 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:378 #, php-format msgid "%s created a new post" msgstr "%s létrehozott egy új bejegyzést" @@ -10476,190 +10731,190 @@ msgstr "%1$s hozzászólt egy %3$s által közzétett szálában" 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:222 -#: src/Navigation/Notifications/Repository/Notify.php:717 +#: src/Navigation/Notifications/Repository/Notify.php:225 +#: src/Navigation/Notifications/Repository/Notify.php:752 msgid "[Friendica:Notify]" msgstr "[Friendica: értesítés]" -#: src/Navigation/Notifications/Repository/Notify.php:286 +#: src/Navigation/Notifications/Repository/Notify.php:293 #, php-format msgid "%s New mail received at %s" msgstr "%s Új levél érkezett ekkor: %s" -#: src/Navigation/Notifications/Repository/Notify.php:288 +#: src/Navigation/Notifications/Repository/Notify.php:295 #, 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:289 +#: src/Navigation/Notifications/Repository/Notify.php:296 msgid "a private message" msgstr "egy személyes üzenetet" -#: src/Navigation/Notifications/Repository/Notify.php:289 +#: src/Navigation/Notifications/Repository/Notify.php:296 #, php-format msgid "%1$s sent you %2$s." msgstr "%1$s küldött Önnek %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:291 +#: src/Navigation/Notifications/Repository/Notify.php:298 #, 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:321 +#: src/Navigation/Notifications/Repository/Notify.php:328 #, 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:326 +#: src/Navigation/Notifications/Repository/Notify.php:333 #, 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:330 +#: src/Navigation/Notifications/Repository/Notify.php:337 #, 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:334 -#: src/Navigation/Notifications/Repository/Notify.php:751 +#: src/Navigation/Notifications/Repository/Notify.php:341 +#: src/Navigation/Notifications/Repository/Notify.php:786 #, 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:336 +#: src/Navigation/Notifications/Repository/Notify.php:343 #, 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:340 -#: src/Navigation/Notifications/Repository/Notify.php:355 -#: src/Navigation/Notifications/Repository/Notify.php:766 +#: src/Navigation/Notifications/Repository/Notify.php:347 +#: src/Navigation/Notifications/Repository/Notify.php:362 +#: src/Navigation/Notifications/Repository/Notify.php:801 #, 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:347 +#: src/Navigation/Notifications/Repository/Notify.php:354 #, 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:349 +#: src/Navigation/Notifications/Repository/Notify.php:356 #, 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:350 +#: src/Navigation/Notifications/Repository/Notify.php:357 #, 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:363 +#: src/Navigation/Notifications/Repository/Notify.php:370 #, php-format msgid "%s Introduction received" msgstr "%s Bemutatkozás érkezett" -#: src/Navigation/Notifications/Repository/Notify.php:365 +#: src/Navigation/Notifications/Repository/Notify.php:372 #, 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:366 +#: src/Navigation/Notifications/Repository/Notify.php:373 #, 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:371 -#: src/Navigation/Notifications/Repository/Notify.php:417 +#: src/Navigation/Notifications/Repository/Notify.php:378 +#: src/Navigation/Notifications/Repository/Notify.php:424 #, php-format msgid "You may visit their profile at %s" msgstr "Meglátogathatja a profilját itt: %s" -#: src/Navigation/Notifications/Repository/Notify.php:373 +#: src/Navigation/Notifications/Repository/Notify.php:380 #, 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:380 +#: src/Navigation/Notifications/Repository/Notify.php:387 #, 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:382 -#: src/Navigation/Notifications/Repository/Notify.php:383 +#: src/Navigation/Notifications/Repository/Notify.php:389 +#: src/Navigation/Notifications/Repository/Notify.php:390 #, 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:390 +#: src/Navigation/Notifications/Repository/Notify.php:397 #, php-format msgid "%s You have a new follower" msgstr "%s Van egy új követője" -#: src/Navigation/Notifications/Repository/Notify.php:392 -#: src/Navigation/Notifications/Repository/Notify.php:393 +#: src/Navigation/Notifications/Repository/Notify.php:399 +#: src/Navigation/Notifications/Repository/Notify.php:400 #, 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:406 +#: src/Navigation/Notifications/Repository/Notify.php:413 #, php-format msgid "%s Friend suggestion received" msgstr "%s Ismerősajánlás érkezett" -#: src/Navigation/Notifications/Repository/Notify.php:408 +#: src/Navigation/Notifications/Repository/Notify.php:415 #, 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:409 +#: src/Navigation/Notifications/Repository/Notify.php:416 #, 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:415 +#: src/Navigation/Notifications/Repository/Notify.php:422 msgid "Name:" msgstr "Név:" -#: src/Navigation/Notifications/Repository/Notify.php:416 +#: src/Navigation/Notifications/Repository/Notify.php:423 msgid "Photo:" msgstr "Fénykép:" -#: src/Navigation/Notifications/Repository/Notify.php:419 +#: src/Navigation/Notifications/Repository/Notify.php:426 #, 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:427 -#: src/Navigation/Notifications/Repository/Notify.php:442 +#: src/Navigation/Notifications/Repository/Notify.php:434 +#: src/Navigation/Notifications/Repository/Notify.php:449 #, php-format msgid "%s Connection accepted" msgstr "%s Kapcsolat elfogadva" -#: src/Navigation/Notifications/Repository/Notify.php:429 -#: src/Navigation/Notifications/Repository/Notify.php:444 +#: src/Navigation/Notifications/Repository/Notify.php:436 +#: src/Navigation/Notifications/Repository/Notify.php:451 #, 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:430 -#: src/Navigation/Notifications/Repository/Notify.php:445 +#: src/Navigation/Notifications/Repository/Notify.php:437 +#: src/Navigation/Notifications/Repository/Notify.php:452 #, 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:435 +#: src/Navigation/Notifications/Repository/Notify.php:442 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:437 +#: src/Navigation/Notifications/Repository/Notify.php:444 #, 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:450 +#: src/Navigation/Notifications/Repository/Notify.php:457 #, php-format msgid "" "'%1$s' has chosen to accept you a fan, which restricts some forms of " @@ -10668,33 +10923,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:452 +#: src/Navigation/Notifications/Repository/Notify.php:459 #, 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:454 +#: src/Navigation/Notifications/Repository/Notify.php:461 #, 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:464 +#: src/Navigation/Notifications/Repository/Notify.php:471 msgid "registration request" msgstr "regisztrációs kérés" -#: src/Navigation/Notifications/Repository/Notify.php:466 +#: src/Navigation/Notifications/Repository/Notify.php:473 #, 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" +msgstr "Kapott egy regisztrációs kérést „%1$s” partnertől itt: %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:467 +#: src/Navigation/Notifications/Repository/Notify.php:474 #, 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:472 +#: src/Navigation/Notifications/Repository/Notify.php:479 +#: src/Navigation/Notifications/Repository/Notify.php:500 #, php-format msgid "" "Full Name:\t%s\n" @@ -10702,17 +10958,36 @@ msgid "" "Login Name:\t%s (%s)" msgstr "Teljes név:\t%s\nOldal címe:\t%s\nBejelentkezési név:\t%s (%s)" -#: src/Navigation/Notifications/Repository/Notify.php:478 +#: src/Navigation/Notifications/Repository/Notify.php:485 #, 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:745 +#: src/Navigation/Notifications/Repository/Notify.php:492 +msgid "new registration" +msgstr "új regisztráció" + +#: src/Navigation/Notifications/Repository/Notify.php:494 +#, 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 +#, 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 +#, 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:780 #, php-format msgid "%s %s tagged you" msgstr "%s %s megjelölte Önt" -#: src/Navigation/Notifications/Repository/Notify.php:748 +#: src/Navigation/Notifications/Repository/Notify.php:783 #, php-format msgid "%s %s shared a new post" msgstr "%s %s megosztott egy új bejegyzést" @@ -10740,249 +11015,249 @@ msgstr "Vegye fel a kapcsolatot a küldővel erre a bejegyzésre válaszolva, ha msgid "%s posted an update." msgstr "%s frissítést küldött." -#: src/Object/Post.php:136 +#: src/Object/Post.php:135 msgid "Private Message" msgstr "Személyes üzenet" -#: src/Object/Post.php:140 +#: src/Object/Post.php:139 msgid "Public Message" msgstr "Nyilvános üzenet" -#: src/Object/Post.php:144 +#: src/Object/Post.php:143 msgid "Unlisted Message" msgstr "Listázatlan üzenet" -#: src/Object/Post.php:179 +#: src/Object/Post.php:178 msgid "This entry was edited" msgstr "Ezt a bejegyzést szerkesztették" -#: src/Object/Post.php:207 +#: src/Object/Post.php:206 msgid "Connector Message" msgstr "Csatlakozóüzenet" -#: src/Object/Post.php:222 src/Object/Post.php:224 +#: src/Object/Post.php:221 src/Object/Post.php:223 msgid "Edit" msgstr "Szerkesztés" -#: src/Object/Post.php:248 +#: src/Object/Post.php:247 msgid "Delete globally" msgstr "Törlés globálisan" -#: src/Object/Post.php:248 +#: src/Object/Post.php:247 msgid "Remove locally" msgstr "Eltávolítás helyileg" -#: src/Object/Post.php:264 +#: src/Object/Post.php:263 #, php-format msgid "Block %s" msgstr "%s tiltása" -#: src/Object/Post.php:269 +#: src/Object/Post.php:268 msgid "Save to folder" msgstr "Mentés mappába" -#: src/Object/Post.php:304 +#: src/Object/Post.php:303 msgid "I will attend" msgstr "Részt veszek" -#: src/Object/Post.php:304 +#: src/Object/Post.php:303 msgid "I will not attend" msgstr "Nem veszek részt" -#: src/Object/Post.php:304 +#: src/Object/Post.php:303 msgid "I might attend" msgstr "Talán részt veszek" -#: src/Object/Post.php:334 +#: src/Object/Post.php:333 msgid "Ignore thread" msgstr "Szál mellőzése" -#: src/Object/Post.php:335 +#: src/Object/Post.php:334 msgid "Unignore thread" msgstr "Szál mellőzésének megszüntetése" -#: src/Object/Post.php:336 +#: src/Object/Post.php:335 msgid "Toggle ignore status" msgstr "Mellőzési állapot átváltása" -#: src/Object/Post.php:346 +#: src/Object/Post.php:345 msgid "Add star" msgstr "Csillag hozzáadása" -#: src/Object/Post.php:347 +#: src/Object/Post.php:346 msgid "Remove star" msgstr "Csillag eltávolítása" -#: src/Object/Post.php:348 +#: src/Object/Post.php:347 msgid "Toggle star status" msgstr "Csillagállapot átváltása" -#: src/Object/Post.php:359 +#: src/Object/Post.php:358 msgid "Pin" msgstr "Kitűzés" -#: src/Object/Post.php:360 +#: src/Object/Post.php:359 msgid "Unpin" msgstr "Kitűzés megszüntetése" -#: src/Object/Post.php:361 +#: src/Object/Post.php:360 msgid "Toggle pin status" msgstr "Kitűzés állapotának átváltása" -#: src/Object/Post.php:364 +#: src/Object/Post.php:363 msgid "Pinned" msgstr "Kitűzve" -#: src/Object/Post.php:369 +#: src/Object/Post.php:368 msgid "Add tag" msgstr "Címke hozzáadása" -#: src/Object/Post.php:382 +#: src/Object/Post.php:381 msgid "Quote share this" msgstr "Idézett megosztás" -#: src/Object/Post.php:382 +#: src/Object/Post.php:381 msgid "Quote Share" msgstr "Idéző megosztás" -#: src/Object/Post.php:385 +#: src/Object/Post.php:384 msgid "Reshare this" msgstr "Újra megosztás" -#: src/Object/Post.php:385 +#: src/Object/Post.php:384 msgid "Reshare" msgstr "Újra megosztás" -#: src/Object/Post.php:386 +#: src/Object/Post.php:385 msgid "Cancel your Reshare" msgstr "Újra megosztás megszakítása" -#: src/Object/Post.php:386 +#: src/Object/Post.php:385 msgid "Unshare" msgstr "Megosztás megszüntetése" -#: src/Object/Post.php:433 +#: src/Object/Post.php:432 #, php-format msgid "%s (Received %s)" msgstr "%s (fogadva: %s)" -#: src/Object/Post.php:438 +#: src/Object/Post.php:437 msgid "Comment this item on your system" msgstr "Hozzászólás az elemhez a saját rendszerén" -#: src/Object/Post.php:438 +#: src/Object/Post.php:437 msgid "Remote comment" msgstr "Távoli hozzászólás" -#: src/Object/Post.php:459 +#: src/Object/Post.php:458 msgid "Share via ..." msgstr "Megosztás ezen keresztül…" -#: src/Object/Post.php:459 +#: src/Object/Post.php:458 msgid "Share via external services" msgstr "Megosztás külső szolgáltatásokon keresztül" -#: src/Object/Post.php:488 +#: src/Object/Post.php:487 msgid "to" msgstr "ide:" -#: src/Object/Post.php:489 +#: src/Object/Post.php:488 msgid "via" msgstr "ezen keresztül:" -#: src/Object/Post.php:490 +#: src/Object/Post.php:489 msgid "Wall-to-Wall" msgstr "Falról-falra" -#: src/Object/Post.php:491 +#: src/Object/Post.php:490 msgid "via Wall-To-Wall:" msgstr "falról-falra szolgáltatáson keresztül:" -#: src/Object/Post.php:533 +#: src/Object/Post.php:532 #, php-format msgid "Reply to %s" msgstr "Válasz erre: %s" -#: src/Object/Post.php:536 +#: src/Object/Post.php:535 msgid "More" msgstr "Több" -#: src/Object/Post.php:554 +#: src/Object/Post.php:553 msgid "Notifier task is pending" msgstr "Az értesítőfeladat függőben van" -#: src/Object/Post.php:555 +#: src/Object/Post.php:554 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:556 +#: src/Object/Post.php:555 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:557 +#: src/Object/Post.php:556 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:558 +#: src/Object/Post.php:557 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:578 +#: src/Object/Post.php:577 #, 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:579 +#: src/Object/Post.php:578 msgid "Show more" msgstr "Több megjelenítése" -#: src/Object/Post.php:580 +#: src/Object/Post.php:579 msgid "Show fewer" msgstr "Kevesebb megjelenítése" -#: src/Protocol/OStatus.php:1475 +#: src/Protocol/OStatus.php:1472 #, php-format msgid "%s is now following %s." msgstr "%s mostantól követi %s partnert." -#: src/Protocol/OStatus.php:1476 +#: src/Protocol/OStatus.php:1473 msgid "following" msgstr "követés" -#: src/Protocol/OStatus.php:1479 +#: src/Protocol/OStatus.php:1476 #, php-format msgid "%s stopped following %s." msgstr "%s leállította %s követését." -#: src/Protocol/OStatus.php:1480 +#: src/Protocol/OStatus.php:1477 msgid "stopped following" msgstr "követés leállítva" -#: src/Render/FriendicaSmartyEngine.php:53 +#: src/Render/FriendicaSmartyEngine.php:56 #, 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:226 +#: src/Security/Authentication.php:227 msgid "Login failed." msgstr "Bejelentkezés sikertelen." -#: src/Security/Authentication.php:271 +#: src/Security/Authentication.php:272 msgid "Login failed. Please check your credentials." msgstr "Bejelentkezés sikertelen. Ellenőrizze a hitelesítési adatait." -#: src/Security/Authentication.php:382 +#: src/Security/Authentication.php:389 #, php-format msgid "Welcome %s" msgstr "Üdvözöljük, %s!" -#: src/Security/Authentication.php:383 +#: src/Security/Authentication.php:390 msgid "Please upload a profile photo." msgstr "Töltsön fel egy profilfényképet." -#: src/Util/EMailer/MailBuilder.php:259 +#: src/Util/EMailer/MailBuilder.php:260 msgid "Friendica Notification" msgstr "Friendica értesítés" @@ -11005,228 +11280,239 @@ msgstr "A(z) %s adminisztrátora" msgid "thanks" msgstr "köszönet" -#: src/Util/Temporal.php:167 +#: src/Util/Temporal.php:170 msgid "YYYY-MM-DD or MM-DD" msgstr "YYYY-MM-DD vagy MM-DD" -#: src/Util/Temporal.php:275 +#: src/Util/Temporal.php:278 #, 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:318 +#: src/Util/Temporal.php:318 src/Util/Temporal.php:325 msgid "never" msgstr "soha" -#: src/Util/Temporal.php:325 +#: src/Util/Temporal.php:339 msgid "less than a second ago" msgstr "kevesebb mint egy másodperce" -#: src/Util/Temporal.php:333 +#: src/Util/Temporal.php:348 msgid "year" msgstr "év" -#: src/Util/Temporal.php:333 +#: src/Util/Temporal.php:348 msgid "years" msgstr "év" -#: src/Util/Temporal.php:334 +#: src/Util/Temporal.php:349 msgid "months" msgstr "hónap" -#: src/Util/Temporal.php:335 +#: src/Util/Temporal.php:350 msgid "weeks" msgstr "hét" -#: src/Util/Temporal.php:336 +#: src/Util/Temporal.php:351 msgid "days" msgstr "nap" -#: src/Util/Temporal.php:337 +#: src/Util/Temporal.php:352 msgid "hour" msgstr "óra" -#: src/Util/Temporal.php:337 +#: src/Util/Temporal.php:352 msgid "hours" msgstr "óra" -#: src/Util/Temporal.php:338 +#: src/Util/Temporal.php:353 msgid "minute" msgstr "perc" -#: src/Util/Temporal.php:338 +#: src/Util/Temporal.php:353 msgid "minutes" msgstr "perc" -#: src/Util/Temporal.php:339 +#: src/Util/Temporal.php:354 msgid "second" msgstr "másodperc" -#: src/Util/Temporal.php:339 +#: src/Util/Temporal.php:354 msgid "seconds" msgstr "másodperc" -#: src/Util/Temporal.php:349 +#: src/Util/Temporal.php:364 #, php-format msgid "in %1$d %2$s" msgstr "%1$d %2$s múlva" -#: src/Util/Temporal.php:352 +#: src/Util/Temporal.php:367 #, php-format msgid "%1$d %2$s ago" msgstr "%1$d %2$s óta" -#: src/Worker/Delivery.php:524 +#: src/Worker/Delivery.php:533 msgid "(no subject)" msgstr "(nincs tárgy)" -#: src/Worker/PushSubscription.php:111 +#: src/Worker/PushSubscription.php:110 msgid "Notification from Friendica" msgstr "Értesítés a Friendicától" -#: src/Worker/PushSubscription.php:112 +#: src/Worker/PushSubscription.php:111 msgid "Empty Post" msgstr "Üres bejegyzés" -#: view/theme/duepuntozero/config.php:52 +#: view/theme/duepuntozero/config.php:68 msgid "default" msgstr "alapértelmezett" -#: view/theme/duepuntozero/config.php:53 +#: view/theme/duepuntozero/config.php:69 msgid "greenzero" msgstr "zöld nulla" -#: view/theme/duepuntozero/config.php:54 +#: view/theme/duepuntozero/config.php:70 msgid "purplezero" msgstr "lila nulla" -#: view/theme/duepuntozero/config.php:55 +#: view/theme/duepuntozero/config.php:71 msgid "easterbunny" msgstr "húsvéti nyúl" -#: view/theme/duepuntozero/config.php:56 +#: view/theme/duepuntozero/config.php:72 msgid "darkzero" msgstr "sötét nulla" -#: view/theme/duepuntozero/config.php:57 +#: view/theme/duepuntozero/config.php:73 msgid "comix" msgstr "comix" -#: view/theme/duepuntozero/config.php:58 +#: view/theme/duepuntozero/config.php:74 msgid "slackr" msgstr "slackr" -#: view/theme/duepuntozero/config.php:71 +#: view/theme/duepuntozero/config.php:87 msgid "Variations" msgstr "Variációk" -#: view/theme/frio/config.php:142 +#: view/theme/frio/config.php:153 msgid "Light (Accented)" msgstr "Világos (hangsúlyos)" -#: view/theme/frio/config.php:143 +#: view/theme/frio/config.php:154 msgid "Dark (Accented)" msgstr "Sötét (hangsúlyos)" -#: view/theme/frio/config.php:144 +#: view/theme/frio/config.php:155 msgid "Black (Accented)" msgstr "Fekete (hangsúlyos)" -#: view/theme/frio/config.php:156 +#: view/theme/frio/config.php:167 msgid "Note" msgstr "Jegyzet" -#: view/theme/frio/config.php:156 +#: view/theme/frio/config.php:167 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:162 +#: view/theme/frio/config.php:173 msgid "Custom" msgstr "Egyéni" -#: view/theme/frio/config.php:163 +#: view/theme/frio/config.php:174 msgid "Legacy" msgstr "Örökölt" -#: view/theme/frio/config.php:164 +#: view/theme/frio/config.php:175 msgid "Accented" msgstr "Hangsúlyos" -#: view/theme/frio/config.php:165 +#: view/theme/frio/config.php:176 msgid "Select color scheme" msgstr "Színséma kiválasztása" -#: view/theme/frio/config.php:166 +#: view/theme/frio/config.php:177 msgid "Select scheme accent" msgstr "Sémahangsúly kiválasztása" -#: view/theme/frio/config.php:166 +#: view/theme/frio/config.php:177 msgid "Blue" msgstr "Kék" -#: view/theme/frio/config.php:166 +#: view/theme/frio/config.php:177 msgid "Red" msgstr "Piros" -#: view/theme/frio/config.php:166 +#: view/theme/frio/config.php:177 msgid "Purple" msgstr "Lila" -#: view/theme/frio/config.php:166 +#: view/theme/frio/config.php:177 msgid "Green" msgstr "Zöld" -#: view/theme/frio/config.php:166 +#: view/theme/frio/config.php:177 msgid "Pink" msgstr "Rózsaszín" -#: view/theme/frio/config.php:167 +#: view/theme/frio/config.php:178 msgid "Copy or paste schemestring" msgstr "Sémakarakterlánc másolása vagy beillesztése" -#: view/theme/frio/config.php:167 +#: view/theme/frio/config.php:178 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:168 +#: view/theme/frio/config.php:179 msgid "Navigation bar background color" msgstr "Navigációs sáv háttérszíne" -#: view/theme/frio/config.php:169 +#: view/theme/frio/config.php:180 msgid "Navigation bar icon color " msgstr "Navigációs sáv ikonszíne " -#: view/theme/frio/config.php:170 +#: view/theme/frio/config.php:181 msgid "Link color" msgstr "Hivatkozás színe" -#: view/theme/frio/config.php:171 +#: view/theme/frio/config.php:182 msgid "Set the background color" msgstr "Háttérszín beállítása" -#: view/theme/frio/config.php:172 +#: view/theme/frio/config.php:183 msgid "Content background opacity" msgstr "Tartalom hátterének átlátszatlansága" -#: view/theme/frio/config.php:173 +#: view/theme/frio/config.php:184 msgid "Set the background image" msgstr "A háttérkép beállítása" -#: view/theme/frio/config.php:174 +#: view/theme/frio/config.php:185 msgid "Background image style" msgstr "Háttérkép stílusa" -#: view/theme/frio/config.php:179 +#: view/theme/frio/config.php:188 +msgid "Always open Compose page" +msgstr "Mindig az írás oldal megnyitása" + +#: view/theme/frio/config.php:188 +msgid "" +"The New Post button always open the Compose page " +"instead of the modal form. When this is disabled, the Compose page can be " +"accessed with a middle click on the link or from the modal." +msgstr "Az új bejegyzés gomb mindig az írás oldalt nyitja meg a modális űrlap helyett. Ha ez le van tiltva, akkor az írás oldal a hivatkozásra való középső kattintással vagy a modális űrlapról érhető el." + +#: view/theme/frio/config.php:192 msgid "Login page background image" msgstr "Bejelentkezési oldal háttérképe" -#: view/theme/frio/config.php:183 +#: view/theme/frio/config.php:196 msgid "Login page background color" msgstr "Bejelentkezési oldal háttérszíne" -#: view/theme/frio/config.php:183 +#: view/theme/frio/config.php:196 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" @@ -11274,78 +11560,78 @@ msgstr "Kihagyás a fő tartalomhoz" msgid "Back to top" msgstr "Vissza a tetejére" -#: view/theme/frio/theme.php:202 +#: view/theme/frio/theme.php:217 msgid "Guest" msgstr "Vendég" -#: view/theme/frio/theme.php:205 +#: view/theme/frio/theme.php:220 msgid "Visitor" msgstr "Látogató" -#: view/theme/quattro/config.php:73 +#: view/theme/quattro/config.php:89 msgid "Alignment" msgstr "Igazítás" -#: view/theme/quattro/config.php:73 +#: view/theme/quattro/config.php:89 msgid "Left" msgstr "Balra" -#: view/theme/quattro/config.php:73 +#: view/theme/quattro/config.php:89 msgid "Center" msgstr "Középre" -#: view/theme/quattro/config.php:74 +#: view/theme/quattro/config.php:90 msgid "Color scheme" msgstr "Színséma" -#: view/theme/quattro/config.php:75 +#: view/theme/quattro/config.php:91 msgid "Posts font size" msgstr "Bejegyzések betűmérete" -#: view/theme/quattro/config.php:76 +#: view/theme/quattro/config.php:92 msgid "Textareas font size" msgstr "Szövegdobozok betűmérete" -#: view/theme/vier/config.php:75 +#: view/theme/vier/config.php:91 msgid "Comma separated list of helper forums" msgstr "Segítő fórumok vesszővel elválasztott listája" -#: view/theme/vier/config.php:115 +#: view/theme/vier/config.php:131 msgid "don't show" msgstr "ne jelenítse meg" -#: view/theme/vier/config.php:115 +#: view/theme/vier/config.php:131 msgid "show" msgstr "megjelenítés" -#: view/theme/vier/config.php:121 +#: view/theme/vier/config.php:137 msgid "Set style" msgstr "Stílus beállítása" -#: view/theme/vier/config.php:122 +#: view/theme/vier/config.php:138 msgid "Community Pages" msgstr "Közösségi oldalak" -#: view/theme/vier/config.php:123 view/theme/vier/theme.php:134 +#: view/theme/vier/config.php:139 view/theme/vier/theme.php:149 msgid "Community Profiles" msgstr "Közösségi profilok" -#: view/theme/vier/config.php:124 +#: view/theme/vier/config.php:140 msgid "Help or @NewHere ?" msgstr "Súgó vagy @NewHere?" -#: view/theme/vier/config.php:125 view/theme/vier/theme.php:305 +#: view/theme/vier/config.php:141 view/theme/vier/theme.php:320 msgid "Connect Services" msgstr "Szolgáltatások hozzákapcsolása" -#: view/theme/vier/config.php:126 +#: view/theme/vier/config.php:142 msgid "Find Friends" msgstr "Ismerősök keresése" -#: view/theme/vier/config.php:127 view/theme/vier/theme.php:161 +#: view/theme/vier/config.php:143 view/theme/vier/theme.php:176 msgid "Last users" msgstr "Utolsó felhasználók" -#: view/theme/vier/theme.php:220 +#: view/theme/vier/theme.php:235 msgid "Quick Start" msgstr "Gyors kezdés" diff --git a/view/lang/hu/strings.php b/view/lang/hu/strings.php index 5a3a6943f..e08ec24e4 100644 --- a/view/lang/hu/strings.php +++ b/view/lang/hu/strings.php @@ -5,99 +5,8 @@ function string_plural_select_hu($n){ $n = intval($n); return intval($n != 1); }} -$a->strings['Access denied.'] = 'Hozzáférés megtagadva.'; -$a->strings['User not found.'] = 'A felhasználó nem található.'; -$a->strings['Access to this profile has been restricted.'] = 'A profilhoz való hozzáférés korlátozva lett.'; -$a->strings['Events'] = 'Események'; -$a->strings['View'] = 'Nézet'; -$a->strings['Previous'] = 'Előző'; -$a->strings['Next'] = 'Következő'; -$a->strings['today'] = 'ma'; -$a->strings['month'] = 'hónap'; -$a->strings['week'] = 'hét'; -$a->strings['day'] = 'nap'; -$a->strings['list'] = 'lista'; -$a->strings['User not found'] = 'A felhasználó nem található'; -$a->strings['This calendar format is not supported'] = 'Ez a naptárformátum nem támogatott'; -$a->strings['No exportable data found'] = 'Nem található exportálható adat'; -$a->strings['calendar'] = 'naptár'; -$a->strings['Public access denied.'] = 'Nyilvános hozzáférés megtagadva.'; -$a->strings['The requested item doesn\'t exist or has been deleted.'] = 'A kért elem nem létezik vagy törölték.'; -$a->strings['The feed for this item is unavailable.'] = 'Ennek az elemnek a hírforrása nem érhető el.'; -$a->strings['Permission denied.'] = 'Hozzáférés megtagadva.'; -$a->strings['Item not found'] = 'Az elem nem található'; -$a->strings['Edit post'] = 'Bejegyzés szerkesztése'; -$a->strings['Save'] = 'Mentés'; -$a->strings['Loading...'] = 'Betöltés…'; -$a->strings['Upload photo'] = 'Fénykép feltöltése'; -$a->strings['upload photo'] = 'fénykép feltöltése'; -$a->strings['Attach file'] = 'Fájl csatolása'; -$a->strings['attach file'] = 'fájl csatolása'; -$a->strings['Insert web link'] = 'Webhivatkozás beszúrása'; -$a->strings['web link'] = 'webhivatkozás'; -$a->strings['Insert video link'] = 'Videohivatkozás beszúrása'; -$a->strings['video link'] = 'videohivatkozás'; -$a->strings['Insert audio link'] = 'Hanghivatkozás beszúrása'; -$a->strings['audio link'] = 'hanghivatkozás'; -$a->strings['Set your location'] = 'Az Ön helyének beállítása'; -$a->strings['set location'] = 'hely beállítása'; -$a->strings['Clear browser location'] = 'Böngésző helyének törlése'; -$a->strings['clear location'] = 'hely törlése'; -$a->strings['Please wait'] = 'Kis türelmet'; -$a->strings['Permission settings'] = 'Jogosultsági beállítások'; -$a->strings['CC: email addresses'] = 'Másolat: e-mail-címek'; -$a->strings['Public post'] = 'Nyilvános bejegyzés'; -$a->strings['Set title'] = 'Cím beállítása'; -$a->strings['Categories (comma-separated list)'] = 'Kategóriák (vesszővel elválasztott lista)'; -$a->strings['Example: bob@example.com, mary@example.com'] = 'Példa: bob@example.com, mary@example.com'; -$a->strings['Preview'] = 'Előnézet'; -$a->strings['Cancel'] = 'Mégse'; -$a->strings['Bold'] = 'Félkövér'; -$a->strings['Italic'] = 'Dőlt'; -$a->strings['Underline'] = 'Aláhúzott'; -$a->strings['Quote'] = 'Idézet'; -$a->strings['Code'] = 'Kód'; -$a->strings['Link'] = 'Hivatkozás'; -$a->strings['Link or Media'] = 'Hivatkozás vagy média'; -$a->strings['Message'] = 'Üzenet'; -$a->strings['Browser'] = 'Böngésző'; -$a->strings['Permissions'] = 'Jogosultságok'; -$a->strings['Open Compose page'] = 'Írás oldal megnyitása'; -$a->strings['Event can not end before it has started.'] = 'Az esemény nem fejeződhet be, mielőtt elkezdődött volna.'; -$a->strings['Event title and start time are required.'] = 'Az esemény címe és a kezdési idő kötelező.'; -$a->strings['Create New Event'] = 'Új esemény létrehozása'; -$a->strings['Event details'] = 'Esemény részletei'; -$a->strings['Starting date and Title are required.'] = 'A kezdési dátum és a cím kötelező.'; -$a->strings['Event Starts:'] = 'Esemény kezdete:'; -$a->strings['Required'] = 'Kötelező'; -$a->strings['Finish date/time is not known or not relevant'] = 'A befejezési dátum vagy idő nem ismert vagy nem fontos'; -$a->strings['Event Finishes:'] = 'Esemény befejezése:'; -$a->strings['Description:'] = 'Leírás:'; -$a->strings['Location:'] = 'Hely:'; -$a->strings['Title:'] = 'Cím:'; -$a->strings['Share this event'] = 'Az esemény megosztása'; -$a->strings['Submit'] = 'Elküldés'; -$a->strings['Basic'] = 'Alap'; -$a->strings['Advanced'] = 'Speciális'; -$a->strings['Failed to remove event'] = 'Nem sikerült eltávolítani az eseményt'; -$a->strings['Photos'] = 'Fényképek'; -$a->strings['Upload'] = 'Feltöltés'; -$a->strings['Files'] = 'Fájlok'; -$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['Connect/Follow'] = 'Kapcsolódás vagy követés'; -$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'; -$a->strings['Tags:'] = 'Címkék:'; -$a->strings['%s knows you'] = '%s ismeri Önt'; -$a->strings['Add a personal note:'] = 'Személyes jegyzet hozzáadása:'; -$a->strings['Status Messages and Posts'] = 'Állapotüzenetek és bejegyzések'; -$a->strings['The contact could not be added.'] = 'A partnert nem sikerült hozzáadni.'; $a->strings['Unable to locate original post.'] = 'Nem lehet megtalálni az eredeti bejegyzést.'; +$a->strings['Permission denied.'] = 'Hozzáférés megtagadva.'; $a->strings['Empty post discarded.'] = 'Az üres bejegyzés elvetve.'; $a->strings['Post updated.'] = 'Bejegyzés frissítve.'; $a->strings['Item wasn\'t stored.'] = 'Az elem nem lett eltárolva.'; @@ -193,9 +102,6 @@ $a->strings[' Megváltoztathatja a jelszót a fiókbeállítások oldalon, miután bejelentkezett. '; $a->strings['Your password has been changed at %s'] = 'A jelszava meg lett változtatva itt: %s'; -$a->strings['No keywords to match. Please add keywords to your profile.'] = 'Nincs illesztendő kulcsszó. Adjon kulcsszavakat a profiljához.'; -$a->strings['No matches'] = 'Nincs találat'; -$a->strings['Profile Match'] = 'Profilegyezés'; $a->strings['New Message'] = 'Új üzenet'; $a->strings['No recipient selected.'] = 'Nincs címzett kiválasztva.'; $a->strings['Unable to locate contact information.'] = 'Nem lehet megtalálni a partner információit.'; @@ -211,6 +117,10 @@ $a->strings['Send Private Message'] = 'Személyes üzenet küldése'; $a->strings['To:'] = 'Címzett:'; $a->strings['Subject:'] = 'Tárgy:'; $a->strings['Your message:'] = 'Az üzenete:'; +$a->strings['Upload photo'] = 'Fénykép feltöltése'; +$a->strings['Insert web link'] = 'Webhivatkozás beszúrása'; +$a->strings['Please wait'] = 'Kis türelmet'; +$a->strings['Submit'] = 'Elküldés'; $a->strings['No messages.'] = 'Nincsenek üzenetek.'; $a->strings['Message not available.'] = 'Az üzenet nem érhető el.'; $a->strings['Delete message'] = 'Üzenet törlése'; @@ -227,18 +137,8 @@ $a->strings['%d message'] = [ ]; $a->strings['Personal Notes'] = 'Személyes jegyzetek'; $a->strings['Personal notes are visible only by yourself.'] = 'A személyes jegyzetek csak az Ön számára láthatók.'; -$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.'; -$a->strings['Couldn\'t fetch friends for contact.'] = 'Nem sikerült lekérni a partner ismerőseit.'; -$a->strings['Couldn\'t fetch following contacts.'] = 'Nem sikerült lekérni a következő partnereket.'; -$a->strings['Couldn\'t fetch remote profile.'] = 'Nem sikerült lekérni a távoli profilt.'; -$a->strings['Unsupported network'] = 'Nem támogatott hálózat'; -$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['Save'] = 'Mentés'; +$a->strings['User not found.'] = 'A felhasználó nem található.'; $a->strings['Photo Albums'] = 'Fényképalbumok'; $a->strings['Recent Photos'] = 'Legutóbbi fényképek'; $a->strings['Upload New Photos'] = 'Új fényképek feltöltése'; @@ -250,21 +150,17 @@ $a->strings['Album was empty.'] = 'Az album üres volt.'; $a->strings['Failed to delete the photo.'] = 'Nem sikerült törölni a fényképet.'; $a->strings['a photo'] = 'egy fényképen'; $a->strings['%1$s was tagged in %2$s by %3$s'] = '%1$s meg lett jelölve %2$s %3$s által'; -$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'; -$a->strings['Server can\'t accept new file upload at this time, please contact your administrator'] = 'A kiszolgáló jelenleg nem tud új fájlfeltöltést fogadni, vegye fel a kapcsolatot a rendszergazdával'; -$a->strings['Image file is empty.'] = 'A képfájl üres.'; -$a->strings['Unable to process image.'] = 'Nem lehet feldolgozni a képet.'; -$a->strings['Image upload failed.'] = 'A kép feltöltése sikertelen.'; +$a->strings['Public access denied.'] = 'Nyilvános hozzáférés megtagadva.'; $a->strings['No photos selected'] = 'Nincsenek fényképek kijelölve'; -$a->strings['Access to this item is restricted.'] = 'Az elemhez való hozzáférés korlátozott.'; +$a->strings['The maximum accepted image size is %s'] = 'A legnagyobb elfogadott képméret %s'; $a->strings['Upload Photos'] = 'Fényképek feltöltése'; $a->strings['New album name: '] = 'Új album neve: '; $a->strings['or select existing album:'] = 'vagy meglévő album kiválasztása:'; $a->strings['Do not show a status post for this upload'] = 'Ne jelenítsen meg állapotbejegyzést ehhez a feltöltéshez'; +$a->strings['Permissions'] = 'Jogosultságok'; $a->strings['Do you really want to delete this photo album and all its photos?'] = 'Valóban törölni szeretné ezt a fényképalbumot és az összes fényképét?'; $a->strings['Delete Album'] = 'Album törlése'; +$a->strings['Cancel'] = 'Mégse'; $a->strings['Edit Album'] = 'Album szerkesztése'; $a->strings['Drop Album'] = 'Album eldobása'; $a->strings['Show Newest First'] = 'Legújabb megjelenítése először'; @@ -291,6 +187,8 @@ $a->strings['Rotate CW (right)'] = 'Forgatás jobbra'; $a->strings['Rotate CCW (left)'] = 'Forgatás balra'; $a->strings['This is you'] = 'Ez Ön'; $a->strings['Comment'] = 'Hozzászólás'; +$a->strings['Preview'] = 'Előnézet'; +$a->strings['Loading...'] = 'Betöltés…'; $a->strings['Select'] = 'Kiválasztás'; $a->strings['Delete'] = 'Törlés'; $a->strings['Like'] = 'Tetszik'; @@ -298,102 +196,6 @@ $a->strings['I like this (toggle)'] = 'Ezt kedvelem (átváltás)'; $a->strings['Dislike'] = 'Nem tetszik'; $a->strings['I don\'t like this (toggle)'] = 'Ezt nem kedvelem (átváltás)'; $a->strings['Map'] = 'Térkép'; -$a->strings['View Album'] = 'Album megtekintése'; -$a->strings['Bad Request.'] = 'Hibás kérés.'; -$a->strings['Contact not found.'] = 'A partner nem található.'; -$a->strings['[Friendica System Notify]'] = '[Friendica rendszerértesítés]'; -$a->strings['User deleted their account'] = 'A felhasználó törölte a fiókját'; -$a->strings['On your Friendica node an user deleted their account. Please ensure that their data is removed from the backups.'] = 'Az Ön Friendica csomópontján egy felhasználó törölte a fiókját. Győződjön meg arról, hogy az adatai el lettek-e távolítva a biztonsági mentésekből.'; -$a->strings['The user id is %d'] = 'A felhasználó-azonosító %d'; -$a->strings['Remove My Account'] = 'Saját fiók eltávolítása'; -$a->strings['This will completely remove your account. Once this has been done it is not recoverable.'] = 'Ez teljesen el fogja távolítani a fiókját. Miután ez megtörtént, nem lesz visszaállítható.'; -$a->strings['Please enter your password for verification:'] = 'Adja meg a jelszavát az ellenőrzéshez:'; -$a->strings['Resubscribing to OStatus contacts'] = 'Újrafeliratkozás az OStatus partnerekre'; -$a->strings['Error'] = [ - 0 => 'Hiba', - 1 => 'Hibák', -]; -$a->strings['Failed to connect with email account using the settings provided.'] = 'Nem sikerült kapcsolódni a megadott beállításokat használó e-mail-fiókkal.'; -$a->strings['Connected Apps'] = 'Kapcsolt alkalmazások'; -$a->strings['Name'] = 'Név'; -$a->strings['Home Page'] = 'Kezdőlap'; -$a->strings['Created'] = 'Létrehozva'; -$a->strings['Remove authorization'] = 'Felhatalmazás eltávolítása'; -$a->strings['Save Settings'] = 'Beállítások mentése'; -$a->strings['Addon Settings'] = 'Bővítménybeállítások'; -$a->strings['No Addon settings configured'] = 'Nincsenek bővítménybeállítások meghatározva'; -$a->strings['Additional Features'] = 'További funkciók'; -$a->strings['Diaspora (Socialhome, Hubzilla)'] = 'Diaspora (Socialhome, Hubzilla)'; -$a->strings['enabled'] = 'engedélyezve'; -$a->strings['disabled'] = 'letiltva'; -$a->strings['Built-in support for %s connectivity is %s'] = 'A(z) %s összekapcsolhatóságának beépített támogatása %s'; -$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['Social Networks'] = 'Közösségi hálózatok'; -$a->strings['General Social Media Settings'] = 'Általános közösségimédia-beállítások'; -$a->strings['Followed content scope'] = 'Követett tartalom hatóköre'; -$a->strings['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.'] = '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.'; -$a->strings['Only conversations my follows started'] = 'Csak a követőim által indított beszélgetések'; -$a->strings['Conversations my follows started or commented on (default)'] = 'A követőim által indított vagy hozzászólt beszélgetések (alapértelmezett)'; -$a->strings['Any conversation my follows interacted with, including likes'] = 'A követőim által interakcióba került beszélgetések, beleértve a kedveléseket is'; -$a->strings['Enable Content Warning'] = 'Tartalomfigyelmeztetés engedélyezése'; -$a->strings['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.'] = 'Például a Mastodon vagy a Pleroma hálózatán lévő felhasználók képesek egy olyan tartalomfigyelmeztetési mezőt beállítani, amely alapértelmezetten összecsukja a bejegyzéseiket. Ez engedélyezi az automatikus összecsukást, ahelyett hogy beállítaná a tartalomfigyelmeztetést a bejegyzés címeként. Nincs hatással semmilyen más tartalomszűrésre, amelyet végül beállított.'; -$a->strings['Enable intelligent shortening'] = 'Intelligens rövidítés engedélyezése'; -$a->strings['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.'] = 'Á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.'; -$a->strings['Enable simple text shortening'] = 'Egyszerű szövegrövidítés engedélyezése'; -$a->strings['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.'] = 'Á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.'; -$a->strings['Attach the link title'] = 'A hivatkozás címének csatolása'; -$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.'] = '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.'; -$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:'; -$a->strings['IMAP server name:'] = 'IMAP-kiszolgáló neve:'; -$a->strings['IMAP port:'] = 'IMAP port:'; -$a->strings['Security:'] = 'Biztonság:'; -$a->strings['Email login name:'] = 'E-mail bejelentkezési neve:'; -$a->strings['Email password:'] = 'E-mail jelszava:'; -$a->strings['Reply-to address:'] = 'Válaszcím:'; -$a->strings['Send public posts to all email contacts:'] = 'Nyilvános bejegyzések küldése az összes e-mail partnernek:'; -$a->strings['Action after import:'] = 'Importálás utáni művelet:'; -$a->strings['Mark as seen'] = 'Megjelölés olvasottként'; -$a->strings['Move to folder'] = 'Áthelyezés mappába'; -$a->strings['Move to folder:'] = 'Áthelyezés mappába:'; -$a->strings['No suggestions available. If this is a new site, please try again in 24 hours.'] = 'Nem érhetők el javaslatok. Ha ez egy új oldal, akkor próbálja újra 24 óra múlva.'; -$a->strings['Friend Suggestions'] = 'Ismerős javaslatok'; -$a->strings['photo'] = 'fénykép'; -$a->strings['status'] = 'állapot'; -$a->strings['%1$s tagged %2$s\'s %3$s with %4$s'] = '%1$s megjelölte %2$s %3$s vele: %4$s'; -$a->strings['Remove Item Tag'] = 'Elem címkéjének eltávolítása'; -$a->strings['Select a tag to remove: '] = 'Eltávolítandó címke kiválasztása: '; -$a->strings['Remove'] = 'Eltávolítás'; -$a->strings['User imports on closed servers can only be done by an administrator.'] = 'A lezárt kiszolgálókon történő felhasználó-importálásokat csak egy adminisztrátor végezheti el.'; -$a->strings['This site has exceeded the number of allowed daily account registrations. Please try again tomorrow.'] = 'Ez az oldal túllépte a fiókregisztrációk naponta megengedett számát. Próbálja újra holnap.'; -$a->strings['Import'] = 'Importálás'; -$a->strings['Move account'] = 'Fiók áthelyezése'; -$a->strings['You can import an account from another Friendica server.'] = 'Importálhat egy fiókot egy másik Friendica kiszolgálóról.'; -$a->strings['You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here.'] = '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.'; -$a->strings['This feature is experimental. We can\'t import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora'] = '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.'; -$a->strings['Account file'] = 'Fiókfájl'; -$a->strings['To export your account, go to "Settings->Export your personal data" and select "Export account"'] = '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.'; -$a->strings['You aren\'t following this contact.'] = 'Ön nem követi ezt a partnert.'; -$a->strings['Unfollowing is currently not supported by your network.'] = 'A követés megszüntetését jelenleg nem támogatja a hálózata.'; -$a->strings['Disconnect/Unfollow'] = 'Leválasztás vagy követés megszüntetése'; -$a->strings['Contact was successfully unfollowed'] = 'A partner követése sikeresen meg lett szüntetve'; -$a->strings['Unable to unfollow this contact, please contact your administrator'] = 'Nem lehet megszüntetni ennek a partnernek a követését, vegye fel a kapcsolatot az adminisztrátorral'; -$a->strings['Invalid request.'] = 'Érvénytelen kérés.'; -$a->strings['Sorry, maybe your upload is bigger than the PHP configuration allows'] = 'Elnézést, talán a feltöltése nagyobb annál, amit a PHP beállítása megenged'; -$a->strings['Or - did you try to upload an empty file?'] = 'Vagy – egy üres fájlt próbált meg feltölteni?'; -$a->strings['File exceeds size limit of %s'] = 'A fájl meghaladja a beállított %s méretkorlátot'; -$a->strings['File upload failed.'] = 'A fájl feltöltése sikertelen.'; -$a->strings['Wall Photos'] = 'Falfényképek'; -$a->strings['Number of daily wall messages for %s exceeded. Message failed.'] = 'A(z) %s napi falüzeneteinek száma túllépve. Az üzenet sikertelen.'; -$a->strings['Unable to check your home location.'] = 'Nem lehet ellenőrizni az otthona helyét.'; -$a->strings['No recipient.'] = 'Nincs címzett.'; -$a->strings['If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders.'] = 'Ha azt szeretné, hogy %s válaszoljon, ellenőrizze, hogy az Ön oldalán lévő adatvédelmi beállítások lehetővé teszik-e az ismeretlen küldőktől származó személyes leveleket.'; $a->strings['No system theme config value set.'] = 'Nincs rendszertéma beállítási érték megadva.'; $a->strings['Apologies but the website is unavailable at the moment.'] = 'Elnézést, de a weboldal jelenleg nem érhető el.'; $a->strings['Delete this item?'] = 'Törli ezt az elemet?'; @@ -440,6 +242,7 @@ $a->strings['Done.'] = 'Kész.'; $a->strings['Execute pending post updates.'] = 'Függőben lévő bejegyzésfrissítések végrehajtása.'; $a->strings['All pending post updates are done.'] = 'Az összes függőben lévő bejegyzésfrissítés kész.'; $a->strings['Enter user nickname: '] = 'Felhasználó becenevének megadása: '; +$a->strings['User not found'] = 'A felhasználó nem található'; $a->strings['Enter new password: '] = 'Új jelszó megadása: '; $a->strings['Password update failed. Please try again.'] = 'A jelszó frissítése sikertelen. Próbálja újra.'; $a->strings['Password changed.'] = 'A jelszó megváltoztatva.'; @@ -507,9 +310,30 @@ $a->strings['Delete item(s)?'] = 'Törli az elemeket?'; $a->strings['Created at'] = 'Létrehozva'; $a->strings['New Post'] = 'Új bejegyzés'; $a->strings['Share'] = 'Megosztás'; +$a->strings['upload photo'] = 'fénykép feltöltése'; +$a->strings['Attach file'] = 'Fájl csatolása'; +$a->strings['attach file'] = 'fájl csatolása'; +$a->strings['Bold'] = 'Félkövér'; +$a->strings['Italic'] = 'Dőlt'; +$a->strings['Underline'] = 'Aláhúzott'; +$a->strings['Quote'] = 'Idézet'; +$a->strings['Code'] = 'Kód'; $a->strings['Image'] = 'Kép'; +$a->strings['Link'] = 'Hivatkozás'; +$a->strings['Link or Media'] = 'Hivatkozás vagy média'; $a->strings['Video'] = 'Videó'; +$a->strings['Set your location'] = 'Az Ön helyének beállítása'; +$a->strings['set location'] = 'hely beállítása'; +$a->strings['Clear browser location'] = 'Böngésző helyének törlése'; +$a->strings['clear location'] = 'hely törlése'; +$a->strings['Set title'] = 'Cím beállítása'; +$a->strings['Categories (comma-separated list)'] = 'Kategóriák (vesszővel elválasztott lista)'; $a->strings['Scheduled at'] = 'Ütemezve ekkor'; +$a->strings['Permission settings'] = 'Jogosultsági beállítások'; +$a->strings['Public post'] = 'Nyilvános bejegyzés'; +$a->strings['Message'] = 'Üzenet'; +$a->strings['Browser'] = 'Böngésző'; +$a->strings['Open Compose page'] = 'Írás oldal megnyitása'; $a->strings['Pinned item'] = 'Kitűzött elem'; $a->strings['View %s\'s profile @ %s'] = '%s profiljának megtekintése ezen: %s'; $a->strings['Categories:'] = 'Kategóriák:'; @@ -557,11 +381,17 @@ $a->strings['Tag Cloud'] = 'Címkefelhő'; $a->strings['Provide a personal tag cloud on your profile page'] = 'Személyes címkefelhő biztosítása a profiloldalán.'; $a->strings['Display Membership Date'] = 'Tagsági dátum megjelenítése'; $a->strings['Display membership date in profile'] = 'Tagsági dátum megjelenítése a profilban.'; +$a->strings['Advanced Calendar Settings'] = 'Speciális naptárbeállítások'; +$a->strings['Allow anonymous access to your calendar'] = 'Névtelen hozzáférés engedélyezése a naptárához'; +$a->strings['Allows anonymous visitors to consult your calendar and your public events. Contact birthday events are private to you.'] = 'Lehetővé teszi a névtelen látogatók számára a naptára és a nyilvános eseményei megtekintését. A partner születésnapi eseményei az Ön számára magánjellegűek.'; $a->strings['Forums'] = 'Fórumok'; $a->strings['External link to forum'] = 'Külső hivatkozás a fórumhoz'; $a->strings['show less'] = 'kevesebb megjelenítése'; $a->strings['show more'] = 'több megjelenítése'; $a->strings['event'] = 'esemény'; +$a->strings['status'] = 'állapot'; +$a->strings['photo'] = 'fénykép'; +$a->strings['%1$s tagged %2$s\'s %3$s with %4$s'] = '%1$s megjelölte %2$s %3$s vele: %4$s'; $a->strings['Follow Thread'] = 'Szál követése'; $a->strings['View Status'] = 'Állapot megtekintése'; $a->strings['View Profile'] = 'Profil megtekintése'; @@ -572,6 +402,7 @@ $a->strings['Send PM'] = 'Személyes üzenet küldése'; $a->strings['Block'] = 'Tiltás'; $a->strings['Ignore'] = 'Mellőzés'; $a->strings['Languages'] = 'Nyelvek'; +$a->strings['Connect/Follow'] = 'Kapcsolódás vagy követés'; $a->strings['Nothing new here'] = 'Semmi új nincs itt'; $a->strings['Go back'] = 'Vissza'; $a->strings['Clear notifications'] = 'Értesítések törlése'; @@ -584,13 +415,16 @@ $a->strings['Status'] = 'Állapot'; $a->strings['Your posts and conversations'] = 'Az Ön bejegyzései és beszélgetései'; $a->strings['Profile'] = 'Profil'; $a->strings['Your profile page'] = 'Az Ön profiloldala'; +$a->strings['Photos'] = 'Fényképek'; $a->strings['Your photos'] = 'Az Ön fényképei'; $a->strings['Media'] = 'Média'; $a->strings['Your postings with media'] = 'Az Ön médiával rendelkező beküldései'; -$a->strings['Your events'] = 'Az Ön eseményei'; +$a->strings['Calendar'] = 'Naptár'; +$a->strings['Your calendar'] = 'Az Ön naptára'; $a->strings['Personal notes'] = 'Személyes jegyzetek'; $a->strings['Your personal notes'] = 'Az Ön személyes jegyzetei'; $a->strings['Home'] = 'Kezdőlap'; +$a->strings['Home Page'] = 'Kezdőlap'; $a->strings['Register'] = 'Regisztráció'; $a->strings['Create an account'] = 'Fiók létrehozása'; $a->strings['Help'] = 'Súgó'; @@ -604,7 +438,6 @@ $a->strings['Tags'] = 'Címkék'; $a->strings['Contacts'] = 'Partnerek'; $a->strings['Community'] = 'Közösség'; $a->strings['Conversations on this and other servers'] = 'Beszélgetések ezen és más kiszolgálókon'; -$a->strings['Events and Calendar'] = 'Események és naptár'; $a->strings['Directory'] = 'Könyvtár'; $a->strings['People directory'] = 'Emberek könyvtár'; $a->strings['Information'] = 'Információk'; @@ -617,6 +450,7 @@ $a->strings['Introductions'] = 'Bemutatkozások'; $a->strings['Friend Requests'] = 'Ismerőskérések'; $a->strings['Notifications'] = 'Értesítések'; $a->strings['See all notifications'] = 'Összes értesítés megtekintése'; +$a->strings['Mark as seen'] = 'Megjelölés olvasottként'; $a->strings['Mark all system notifications as seen'] = 'Összes rendszerértesítés megjelölése olvasottként'; $a->strings['Private mail'] = 'Személyes levél'; $a->strings['Inbox'] = 'Beérkezett üzenetek'; @@ -628,6 +462,8 @@ $a->strings['Account settings'] = 'Fiókbeállítások'; $a->strings['Manage/edit friends and contacts'] = 'Ismerősök és partnerek kezelése vagy szerkesztése'; $a->strings['Admin'] = 'Adminisztráció'; $a->strings['Site setup and configuration'] = 'Oldal beállítása és konfigurálás'; +$a->strings['Moderation'] = 'Moderálás'; +$a->strings['Content and user moderation'] = 'Tartalom- és felhasználómoderálás'; $a->strings['Navigation'] = 'Navigáció'; $a->strings['Site map'] = 'Oldaltérkép'; $a->strings['Embedding disabled'] = 'A beágyazás letiltva'; @@ -659,6 +495,7 @@ $a->strings['Find People'] = 'Emberek keresése'; $a->strings['Enter name or interest'] = 'Név vagy érdeklődés beírása'; $a->strings['Examples: Robert Morgenstein, Fishing'] = 'Példák: Szabó János, Halászat'; $a->strings['Find'] = 'Keresés'; +$a->strings['Friend Suggestions'] = 'Ismerős javaslatok'; $a->strings['Similar Interests'] = 'Hasonló érdeklődések'; $a->strings['Random Profile'] = 'Véletlen profil'; $a->strings['Invite Friends'] = 'Ismerősök meghívása'; @@ -701,6 +538,7 @@ $a->strings['Trending Tags (last %d hour)'] = [ $a->strings['More Trending Tags'] = 'További népszerű címkék'; $a->strings['XMPP:'] = 'XMPP:'; $a->strings['Matrix:'] = 'Mátrix:'; +$a->strings['Location:'] = 'Hely:'; $a->strings['Network:'] = 'Hálózat:'; $a->strings['Unfollow'] = 'Követés megszüntetése'; $a->strings['Yourself'] = 'Önmaga'; @@ -712,6 +550,8 @@ $a->strings['Limited/Private'] = 'Korlátozott vagy személyes'; $a->strings['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.'] = 'Ez a tartalom csak az első mezőben lévő embereknek fog megjelenni, kivéve a második mezőben említett embereknek. Nem jelenik meg sehol sem nyilvánosan.'; $a->strings['Show to:'] = 'Megjelenítés nekik:'; $a->strings['Except to:'] = 'Kivéve nekik:'; +$a->strings['CC: email addresses'] = 'Másolat: e-mail-címek'; +$a->strings['Example: bob@example.com, mary@example.com'] = 'Példa: bob@example.com, mary@example.com'; $a->strings['Connectors'] = 'Összekötők'; $a->strings['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.'] = 'A „config/local.config.php” adatbázis-beállítófájlt nem sikerült írni. Használja a mellékelt szöveget egy beállítófájl létrehozásához a webkiszolgáló gyökerében.'; $a->strings['You may need to import the file "database.sql" manually using phpmyadmin or mysql.'] = 'Lehet, hogy kézzel kell importálnia a „database.sql” fájlt phpMyAdmin vagy MySQL használatával.'; @@ -842,18 +682,8 @@ $a->strings[' $a->strings['The error message is\n[pre]%s[/pre]'] = 'A hibaüzenet a következő:\n[pre]%s[/pre]'; $a->strings['[Friendica Notify] Database update'] = '[Friendica értesítés] Adatbázis-frissítés'; $a->strings[' - The friendica database was successfully updated from %s to %s.'] = ' - A Friendica adatbázisa sikeresen frissítve lett: %s → %s.'; -$a->strings['Error decoding account file'] = 'Hiba a fiókfájl dekódolásakor'; -$a->strings['Error! No version data in file! This is not a Friendica account file?'] = 'Hiba! Nincsenek verzióadatok a fájlban! Ez nem Friendica fiókfájl?'; -$a->strings['User \'%s\' already exists on this server!'] = '„%s” felhasználó már létezik ezen a kiszolgálón!'; -$a->strings['User creation error'] = 'Felhasználó-létrehozási hiba'; -$a->strings['%d contact not imported'] = [ - 0 => '%d partner nincs importálva', - 1 => '%d partner nincs importálva', -]; -$a->strings['User profile creation error'] = 'Felhasználóiprofil-létrehozási hiba'; -$a->strings['Done. You can now login with your username and password'] = 'Kész. Most már bejelentkezhet a felhasználónevével és a jelszavával.'; + The friendica database was successfully updated from %s to %s.'] = ' + A Friendica adatbázisa sikeresen frissítve lett: %s → %s.'; $a->strings['The database version had been set to %s.'] = 'Az adatbázis verziója %s értékre lett állítva.'; $a->strings['The post update is at version %d, it has to be at %d to safely drop the tables.'] = 'A bejegyzésfrissítés %d. verziónál van. %d. verziónál kell lennie a táblák biztonságos eldobásához.'; $a->strings['No unused tables found.'] = 'Nem találhatók nem használt táblák.'; @@ -876,7 +706,6 @@ $a->strings['Unauthorized'] = 'Nem engedélyezett'; $a->strings['Token is not authorized with a valid user or is missing a required scope'] = 'A token nincs felhatalmazva egy érvényes felhasználóval, vagy hiányzik a szükséges hatókör'; $a->strings['Internal Server Error'] = 'Belső kiszolgálóhiba'; $a->strings['Legacy module file not found: %s'] = 'Az örökölt modulfájl nem található: %s'; -$a->strings['UnFollow'] = 'Követés megszüntetése'; $a->strings['Approve'] = 'Jóváhagyás'; $a->strings['Organisation'] = 'Szervezet'; $a->strings['Forum'] = 'Fórum'; @@ -898,7 +727,13 @@ $a->strings['Starts:'] = 'Kezdődik:'; $a->strings['Finishes:'] = 'Befejeződik:'; $a->strings['all-day'] = 'egész nap'; $a->strings['Sept'] = 'Szept'; +$a->strings['today'] = 'ma'; +$a->strings['month'] = 'hónap'; +$a->strings['week'] = 'hét'; +$a->strings['day'] = 'nap'; $a->strings['No events to display'] = 'Nincsenek megjelenítendő események'; +$a->strings['Access to this profile has been restricted.'] = 'A profilhoz való hozzáférés korlátozva lett.'; +$a->strings['Event not found.'] = 'Az esemény nem található.'; $a->strings['l, F j'] = 'F j., l'; $a->strings['Edit event'] = 'Esemény szerkesztése'; $a->strings['Duplicate event'] = 'Esemény kettőzése'; @@ -945,11 +780,13 @@ $a->strings['%d voter.'] = [ $a->strings['Poll end: %s'] = 'Szavazás vége: %s'; $a->strings['View on separate page'] = 'Megtekintés külön oldalon'; $a->strings['[no subject]'] = '[nincs tárgy]'; +$a->strings['Wall Photos'] = 'Falfényképek'; $a->strings['Edit profile'] = 'Profil szerkesztése'; $a->strings['Change profile photo'] = 'Profilfénykép megváltoztatása'; $a->strings['Homepage:'] = 'Honlap:'; $a->strings['About:'] = 'Névjegy:'; $a->strings['Atom feed'] = 'Atom hírforrás'; +$a->strings['This website has been verified to belong to the same person.'] = 'Ez a weboldal ellenőrizve lett, hogy ugyanahhoz a személyhez tartozik.'; $a->strings['F d'] = 'F j.'; $a->strings['[today]'] = '[ma]'; $a->strings['Birthday Reminders'] = 'Születésnapi emlékeztetők'; @@ -1045,7 +882,7 @@ $a->strings[' If you are new and do not know anybody here, they may help you to make some new and interesting friends. - If you ever want to delete your account, you can do so at %1$s/removeme + If you ever want to delete your account, you can do so at %1$s/settings/removeme Thank you and welcome to %4$s.'] = ' A bejelentkezés részletei a következők: @@ -1074,7 +911,7 @@ $a->strings[' ismerőst találni. Ha bármikor törölni szeretné a fiókját, akkor megteheti azt a - következő címen: %1$s/removeme + következő címen: %1$s/settings/removeme Köszönjük, és üdvözöljük a %4$s oldalon.'; $a->strings['Registration details for %s'] = 'Regisztrációs részletek ehhez: %s'; @@ -1129,7 +966,7 @@ $a->strings[' If you are new and do not know anybody here, they may help you to make some new and interesting friends. - If you ever want to delete your account, you can do so at %3$s/removeme + If you ever want to delete your account, you can do so at %3$s/settings/removeme Thank you and welcome to %2$s.'] = ' A bejelentkezés részletei a következők: @@ -1158,19 +995,9 @@ $a->strings[' ismerőst találni. Ha bármikor törölni szeretné a fiókját, akkor megteheti azt a - következő címen: %3$s/removeme + következő címen: %3$s/settings/removeme Köszönjük, és üdvözöljük a %2$s oldalon.'; -$a->strings['[%s] Notice of remote server domain pattern block list update'] = '[%s] Értesítés a távoli kiszolgálótartomány-minta tiltólistájának frissítéséről'; -$a->strings['Dear %s, - -You are receiving this email because the Friendica node at %s where you are registered as a user updated their remote server domain pattern block list. - -Please review the updated list at %s at your earliest convenience.'] = 'Kedves %s! - -Azért kapta ezt az e-mailt, mert a(z) %s címen lévő Friendica csomópont, ahol felhasználóként van regisztrálva, frissítette a távoli kiszolgálótartomány-mintája tiltólistáját. - -Nézze át a(z) %s címen lévő frissített listát a lehető leghamarabb.'; $a->strings['Addon not found.'] = 'A bővítmény nem található.'; $a->strings['Addon %s disabled.'] = 'A(z) „%s” bővítmény letiltva.'; $a->strings['Addon %s enabled.'] = 'A(z) „%s” bővítmény engedélyezve.'; @@ -1183,122 +1010,9 @@ $a->strings['Author: '] = 'Szerző: '; $a->strings['Maintainer: '] = 'Karbantartó: '; $a->strings['Addons reloaded'] = 'Bővítmények újratöltve'; $a->strings['Addon %s failed to install.'] = 'A(z) „%s” bővítmény telepítése sikertelen.'; +$a->strings['Save Settings'] = 'Beállítások mentése'; $a->strings['Reload active addons'] = 'Bekapcsolt bővítmények újratöltése'; $a->strings['There are currently no addons available on your node. You can find the official addon repository at %1$s and might find other interesting addons in the open addon registry at %2$s'] = 'Jelenleg nem érhetők el bővítmények az Ön csomópontján. A hivatalos bővítménytároló megtalálható a %1$s oldalon, és esetleg egyéb érdekes bővítményeket is találhat a %2$s címen elérhető nyílt bővítményjegyzékben.'; -$a->strings['List of all users'] = 'Összes felhasználó listája'; -$a->strings['Active'] = 'Aktív'; -$a->strings['List of active accounts'] = 'Aktív fiókok listája'; -$a->strings['Pending'] = 'Függőben'; -$a->strings['List of pending registrations'] = 'Függőben lévő regisztrációk listája'; -$a->strings['Blocked'] = 'Tiltva'; -$a->strings['List of blocked users'] = 'Tiltott felhasználók listája'; -$a->strings['Deleted'] = 'Törölve'; -$a->strings['List of pending user deletions'] = 'Függőben lévő felhasználó-törlések listája'; -$a->strings['Normal Account Page'] = 'Normál fiókoldal'; -$a->strings['Soapbox Page'] = 'Szappantartó oldal'; -$a->strings['Public Forum'] = 'Nyilvános fórum'; -$a->strings['Automatic Friend Page'] = 'Automatikus ismerős oldal'; -$a->strings['Private Forum'] = 'Személyes fórum'; -$a->strings['Personal Page'] = 'Személyes oldal'; -$a->strings['Organisation Page'] = 'Szervezeti oldal'; -$a->strings['News Page'] = 'Hírek oldal'; -$a->strings['Community Forum'] = 'Közösségi fórum'; -$a->strings['Relay'] = 'Továbbítás'; -$a->strings['You can\'t block a local contact, please block the user instead'] = 'Nem tilthat egy helyi partnert, inkább a felhasználót tiltsa'; -$a->strings['%s contact unblocked'] = [ - 0 => '%s partner tiltása feloldva', - 1 => '%s partner tiltása feloldva', -]; -$a->strings['Remote Contact Blocklist'] = 'Távoli partnerek tiltólistája'; -$a->strings['This page allows you to prevent any message from a remote contact to reach your node.'] = 'Ez az oldal lehetővé teszi, hogy megakadályozzon egy távoli partnertől származó minden üzenetet, amely elérné a csomópontját.'; -$a->strings['Block Remote Contact'] = 'Távoli partner tiltása'; -$a->strings['select all'] = 'összes kijelölése'; -$a->strings['select none'] = 'kijelölés törlése'; -$a->strings['Unblock'] = 'Tiltás feloldása'; -$a->strings['No remote contact is blocked from this node.'] = 'Nincs olyan távoli partner, aki tiltva lenne erről a csomópontról.'; -$a->strings['Blocked Remote Contacts'] = 'Tiltott távoli partnerek'; -$a->strings['Block New Remote Contact'] = 'Új távoli partner tiltása'; -$a->strings['Photo'] = 'Fénykép'; -$a->strings['Reason'] = 'Indok'; -$a->strings['%s total blocked contact'] = [ - 0 => 'Összesen %s tiltott partner', - 1 => 'Összesen %s tiltott partner', -]; -$a->strings['URL of the remote contact to block.'] = 'A tiltandó távoli partner URL-je.'; -$a->strings['Also purge contact'] = 'Távolítsa el a partnert is'; -$a->strings['Removes all content related to this contact from the node. Keeps the contact record. This action cannot be undone.'] = 'Eltávolítja az ehhez a partnerhez kapcsolódó összes partnert a csomópontról. Megtartja a partner rekordját. Ezt a műveletet nem lehet visszavonni.'; -$a->strings['Block Reason'] = 'Tiltás oka'; -$a->strings['Server domain pattern added to the blocklist.'] = 'A tiltólistához hozzáadott kiszolgáló tartománymintája.'; -$a->strings['%s server scheduled to be purged.'] = [ - 0 => '%s kiszolgáló van ütemezve eltávolításra.', - 1 => '%s kiszolgáló van ütemezve eltávolításra.', -]; -$a->strings['← Return to the list'] = '← Vissza a listához'; -$a->strings['Block A New Server Domain Pattern'] = 'Új kiszolgálótartomány-minta tiltása'; -$a->strings['

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

-'] = '

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:

-'; -$a->strings['Check pattern'] = 'Minta ellenőrzése'; -$a->strings['Matching known servers'] = 'Illeszkedő ismert kiszolgálók'; -$a->strings['Server Name'] = 'Kiszolgáló neve'; -$a->strings['Server Domain'] = 'Kiszolgáló tartománya'; -$a->strings['Known Contacts'] = 'Ismert partnerek'; -$a->strings['%d known server'] = [ - 0 => '%d ismert kiszolgáló', - 1 => '%d ismert kiszolgáló', -]; -$a->strings['Add pattern to the blocklist'] = 'Minta hozzáadása a tiltólistához'; -$a->strings['Server Domain Pattern'] = 'Kiszolgálótartomány-minta'; -$a->strings['The domain pattern of the new server to add to the blocklist. Do not include the protocol.'] = 'A tiltólistához hozzáadandó új kiszolgáló tartományának mintája. Ne tegye bele a protokollt.'; -$a->strings['Purge server'] = 'Kiszolgáló eltávolítása'; -$a->strings['Also purges all the locally stored content authored by the known contacts registered on that server. Keeps the contacts and the server records. This action cannot be undone.'] = [ - 0 => 'Eltávolítja az összes olyan helyileg tárolt tartalmat is, amelyet az adott kiszolgálón regisztrált ismert partnerek hoztak létre. Megtartja a partnereket és a kiszolgáló rekordjait. Ezt a művelet nem lehet visszavonni.', - 1 => 'Eltávolítja az összes olyan helyileg tárolt tartalmat is, amelyet az adott kiszolgálókon regisztrált ismert partnerek hoztak létre. Megtartja a partnereket és a kiszolgálók rekordjait. Ezt a művelet nem lehet visszavonni.', -]; -$a->strings['Block reason'] = 'Tiltás oka'; -$a->strings['The reason why you blocked this server domain pattern. This reason will be shown publicly in the server information page.'] = 'Az ok, amiért kitiltotta ezt a kiszolgálótartomány-mintát. Az ok nyilvánosan meg lesz jelenítve a kiszolgáló információs oldalán.'; -$a->strings['Error importing pattern file'] = 'Hiba a mintafájl importálásakor'; -$a->strings['Local blocklist replaced with the provided file.'] = 'A helyi tiltólista le lett cserélve a megadott fájllal.'; -$a->strings['%d pattern was added to the local blocklist.'] = [ - 0 => '%d minta lett hozzáadva a helyi tiltólistához.', - 1 => '%d minta lett hozzáadva a helyi tiltólistához.', -]; -$a->strings['No pattern was added to the local blocklist.'] = 'Nem lett minta hozzáadva a helyi tiltólistához.'; -$a->strings['Import a Server Domain Pattern Blocklist'] = 'Kiszolgálótartomány-minta tiltólista importálása'; -$a->strings['

This 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.

'; -$a->strings['Upload file'] = 'Fájl feltöltése'; -$a->strings['Patterns to import'] = 'Importálandó minták'; -$a->strings['Domain Pattern'] = 'Tartományminta'; -$a->strings['Import Mode'] = 'Mód importálása'; -$a->strings['Import Patterns'] = 'Minták importálása'; -$a->strings['%d total pattern'] = [ - 0 => '%d minta összesen', - 1 => '%d minta összesen', -]; -$a->strings['Server domain pattern blocklist CSV file'] = 'Kiszolgálótartomány-minta tiltólista CSV-fájl'; -$a->strings['Append'] = 'Hozzáfűzés'; -$a->strings['Imports patterns from the file that weren\'t already existing in the current blocklist.'] = 'Olyan mintákat importál a fájlból, amelyek még nem léteztek a jelenlegi tiltólistán.'; -$a->strings['Replace'] = 'Csere'; -$a->strings['Replaces the current blocklist by the imported patterns.'] = 'Lecseréli a jelenlegi tiltólistát az importált mintákkal.'; -$a->strings['Blocked server domain pattern'] = 'Tiltott kiszolgálótartomány-minta'; -$a->strings['Reason for the block'] = 'A tiltás oka'; -$a->strings['Delete server domain pattern'] = 'Kiszolgálótartomány-minta törlése'; -$a->strings['Check to delete this entry from the blocklist'] = 'Jelölje be a bejegyzés tiltólistából való törléséhez'; -$a->strings['Server Domain Pattern Blocklist'] = 'Kiszolgálótartomány-minta tiltólistája'; -$a->strings['This page can be used to define a blocklist of server domain patterns from the federated network that are not allowed to interact with your node. For each domain pattern you should also provide the reason why you block it.'] = 'Ez az oldal használható a föderált hálózatból származó azon kiszolgálótartomány-minták tiltólistájának meghatározásához, amelyeknek nem engedélyezett kapcsolatba lépniük az Ön csomópontjával. Minden egyes tartománymintához meg kell adnia az indokot is, hogy miért tiltja azt.'; -$a->strings['The list of blocked server domain patterns will be made publically available on the /friendica page so that your users and people investigating communication problems can find the reason easily.'] = 'A tiltott kiszolgálótartomány-minták listája nyilvánosan elérhetővé lesz téve a /friendica oldalon, azért hogy a kommunikációs problémákat kivizsgáló felhasználók és emberek egyszerűen megtalálják az okot.'; -$a->strings['Import server domain pattern blocklist'] = 'Kiszolgálótartomány-minta tiltólistájának importálása'; -$a->strings['Add new entry to the blocklist'] = 'Új bejegyzés hozzáadása a tiltólistához'; -$a->strings['Save changes to the blocklist'] = 'Változtatások mentése a tiltólistába'; -$a->strings['Current Entries in the Blocklist'] = 'Jelenlegi bejegyzések a tiltólistán'; -$a->strings['Delete entry from the blocklist'] = 'Bejegyzés törlése a tiltólistáról'; -$a->strings['Delete entry from the blocklist?'] = 'Törli a bejegyzést a tiltólistáról?'; $a->strings['Update has been marked successful'] = 'A frissítés sikeresen meg lett jelölve'; $a->strings['Database structure update %s was successfully applied.'] = 'A(z) %s adatbázisszerkezet-frissítés sikeresen alkalmazva.'; $a->strings['Executing of database structure update %s failed with error: %s'] = 'A(z) %s adatbázisszerkezet-frissítés végrehajtása meghiúsult ezzel a hibával: %s'; @@ -1350,24 +1064,6 @@ $a->strings['Currently this node is aware of %2$s node (%3$s active users last m 0 => 'Jelenleg erről a csomópontról %2$s csomópontnak van tudomása (%3$s aktív felhasználóval az elmúlt hónapban, %4$s aktív felhasználóval az elmúlt hat hónapban, összesen %5$s regisztrált felhasználóval) a következő platformokról:', 1 => 'Jelenleg erről a csomópontról %2$s csomópontnak van tudomása (%3$s aktív felhasználóval az elmúlt hónapban, %4$s aktív felhasználóval az elmúlt hat hónapban, összesen %5$s regisztrált felhasználóval) a következő platformokról:', ]; -$a->strings['Item marked for deletion.'] = 'Az elem megjelölve törlésre.'; -$a->strings['Delete Item'] = 'Elem törlése'; -$a->strings['Delete this Item'] = 'Az elem törlése'; -$a->strings['On this page you can delete an item from your node. If the item is a top level posting, the entire thread will be deleted.'] = 'Ezen az oldalon törölhet egy elemet a csomópontjáról. Ha az elem egy felső szintű beküldés, akkor a teljes szál törlésre fog kerülni.'; -$a->strings['You need to know the GUID of the item. You can find it e.g. by looking at the display URL. The last part of http://example.com/display/123456 is the GUID, here 123456.'] = 'Tudnia kell az elem GUID értékét. Ezt megtalálhatja például a megjelenített URL-re tekintve. A http://example.com/display/123456 utolsó része a GUID, itt az 123456.'; -$a->strings['GUID'] = 'GUID'; -$a->strings['The GUID of the item you want to delete.'] = 'Annak az elemnek GUID értéke, amelyet törölni szeretne.'; -$a->strings['Item Source'] = 'Elem forrása'; -$a->strings['Item Guid'] = 'Elem GUID értéke'; -$a->strings['Item Id'] = 'Elemazonosító'; -$a->strings['Item URI'] = 'Elem URI'; -$a->strings['Terms'] = 'Kifejezések'; -$a->strings['Tag'] = 'Címke'; -$a->strings['Type'] = 'Típus'; -$a->strings['Term'] = 'Kifejezés'; -$a->strings['URL'] = 'URL'; -$a->strings['Mention'] = 'Említés'; -$a->strings['Implicit Mention'] = 'Implicit említés'; $a->strings['The logfile \'%s\' is not writable. No logging possible'] = 'A(z) „%s” naplófájl nem írható. A naplózás nem lehetséges.'; $a->strings['PHP log currently enabled.'] = 'A PHP-naplózás jelenleg engedélyezve van.'; $a->strings['PHP log currently disabled.'] = 'A PHP-naplózás jelenleg le van tiltva.'; @@ -1390,6 +1086,7 @@ $a->strings['Context'] = 'Környezet'; $a->strings['ALL'] = 'Összes'; $a->strings['View details'] = 'Részletek megtekintése'; $a->strings['Click to view details'] = 'Kattintson a részletek megtekintéséhez'; +$a->strings['Event details'] = 'Esemény részletei'; $a->strings['Data'] = 'Adatok'; $a->strings['Source'] = 'Forrás'; $a->strings['File'] = 'Fájl'; @@ -1405,11 +1102,13 @@ $a->strings['This page lists the currently queued worker jobs. These jobs are ha $a->strings['ID'] = 'Azonosító'; $a->strings['Command'] = 'Parancs'; $a->strings['Job Parameters'] = 'Feladat paraméterei'; +$a->strings['Created'] = 'Létrehozva'; $a->strings['Priority'] = 'Prioritás'; +$a->strings['%s is no valid input for maximum image size'] = 'A(z) %s nem érvényes bemenet a legnagyobb képmérethez'; $a->strings['No special theme for mobile devices'] = 'Nincs különleges téma a mobil eszközökhöz'; $a->strings['%s - (Experimental)'] = '%s – (kísérleti)'; -$a->strings['No community page for local users'] = 'Nincs közösségi oldal a helyi felhasználókhoz'; $a->strings['No community page'] = 'Nincs közösségi oldal'; +$a->strings['No community page for visitors'] = 'Nincs közösségi oldal a látogatóknak'; $a->strings['Public postings from users of this site'] = 'Nyilvános beküldések ezen oldal felhasználóitól'; $a->strings['Public postings from the federated network'] = 'Nyilvános beküldések a föderált hálózatból'; $a->strings['Public postings from local users and the federated network'] = 'Nyilvános beküldések a helyi felhasználóktól és a föderált hálózatból'; @@ -1432,6 +1131,7 @@ $a->strings['Republish users to directory'] = 'Felhasználók újra közzé tét $a->strings['Registration'] = 'Regisztráció'; $a->strings['File upload'] = 'Fájlfeltöltés'; $a->strings['Policies'] = 'Irányelvek'; +$a->strings['Advanced'] = 'Speciális'; $a->strings['Auto Discovered Contact Directory'] = 'Automatikusan felfedezett partnerkönyvtár'; $a->strings['Performance'] = 'Teljesítmény'; $a->strings['Worker'] = 'Feldolgozó'; @@ -1469,7 +1169,6 @@ $a->strings['Displays the menu entry for the Help pages from the navigation menu $a->strings['Single user instance'] = 'Egyfelhasználós példány'; $a->strings['Make this instance multi-user or single-user for the named user'] = 'Többfelhasználóssá vagy a megnevezett felhasználó számára egyfelhasználóssá teszi ezt a rendszert.'; $a->strings['Maximum image size'] = 'Legnagyobb képméret'; -$a->strings['Maximum size in bytes of uploaded images. Default is 0, which means no limits.'] = 'A feltöltött képek legnagyobb mérete bájtban. Alapértelmezetten 0, ami azt jelenti, hogy nincs korlát.'; $a->strings['Maximum image length'] = 'Legnagyobb képhossz'; $a->strings['Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits.'] = 'A feltöltött képek leghosszabb oldalának legnagyobb hossza képpontban. Alapértelmezetten -1, ami azt jelenti, hogy nincs korlát.'; $a->strings['JPEG image quality'] = 'JPEG-képek minősége'; @@ -1520,6 +1219,8 @@ $a->strings['Enable OpenID'] = 'OpenID engedélyezése'; $a->strings['Enable OpenID support for registration and logins.'] = 'Az OpenID támogatás engedélyezése a regisztrációnál és a bejelentkezéseknél.'; $a->strings['Enable Fullname check'] = 'Teljes név ellenőrzésének engedélyezése'; $a->strings['Enable check to only allow users to register with a space between the first name and the last name in their full name.'] = 'Lehetővé teszi annak ellenőrzését, hogy a felhasználóknak csak a teljes nevükben lévő vezetéknév és a keresztnév közti szóközzel legyen lehetőségük regisztrálniuk.'; +$a->strings['Email administrators on new registration'] = 'E-mail küldése az adminisztrátoroknak új regisztrációkor'; +$a->strings['If enabled and the system is set to an open registration, an email for each new registration is sent to the administrators.'] = 'Ha engedélyezve van, és a rendszer nyitott regisztrációhoz van beállítva, akkor minden új regisztrációról e-mail lesz küldve az adminisztrátoroknak.'; $a->strings['Community pages for visitors'] = 'Közösségi oldalak a látogatók számára'; $a->strings['Which community pages should be available for visitors. Local users always see both pages.'] = 'Mely közösségi oldalaknak kell elérhetőnek lenniük a látogatók számára. A helyi felhasználók mindig mindkét oldalt látják.'; $a->strings['Posts per user on community page'] = 'Felhasználónkénti bejegyzések a közösségi oldalon'; @@ -1629,16 +1330,8 @@ $a->strings['The debug logfile \'%s\' is not usable. No logging possible (error: $a->strings['Friendica\'s system.basepath was updated from \'%s\' to \'%s\'. Please remove the system.basepath from your db to avoid differences.'] = '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.'; $a->strings['Friendica\'s current system.basepath \'%s\' is wrong and the config file \'%s\' isn\'t used.'] = 'A Friendica jelenlegi „system.basepath” értéke („%s”) hibás, és a(z) „%s” beállítófájl nincs használva.'; $a->strings['Friendica\'s current system.basepath \'%s\' is not equal to the config file \'%s\'. Please fix your configuration.'] = '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.'; -$a->strings['Normal Account'] = 'Normál fiók'; -$a->strings['Automatic Follower Account'] = 'Automatikusan követő fiók'; -$a->strings['Public Forum Account'] = 'Nyilvános fórum fiók'; -$a->strings['Automatic Friend Account'] = 'Automatikus ismerős fiók'; -$a->strings['Blog Account'] = 'Blog fiók'; -$a->strings['Private Forum Account'] = 'Személyes fórumfiók'; $a->strings['Message queues'] = 'Üzenet várakozási sorai'; $a->strings['Server Settings'] = 'Kiszolgálóbeállítások'; -$a->strings['Registered users'] = 'Regisztrált felhasználók'; -$a->strings['Pending registrations'] = 'Függőben lévő regisztrációk'; $a->strings['Version'] = 'Verzió'; $a->strings['Active addons'] = 'Bekapcsolt bővítmények'; $a->strings['Theme %s disabled.'] = 'A(z) „%s” téma letiltva.'; @@ -1659,58 +1352,8 @@ $a->strings['Show some informations regarding the needed information to operate $a->strings['Privacy Statement Preview'] = 'Adatvédelmi nyilatkozat előnézete'; $a->strings['The Terms of Service'] = 'A használati feltételek'; $a->strings['Enter the Terms of Service for your node here. You can use BBCode. Headers of sections should be [h2] and below.'] = '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.'; -$a->strings['%s user blocked'] = [ - 0 => '%s felhasználó tiltva', - 1 => '%s felhasználó tiltva', -]; -$a->strings['You can\'t remove yourself'] = 'Nem távolíthatja el önmagát'; -$a->strings['%s user deleted'] = [ - 0 => '%s felhasználó törölve', - 1 => '%s felhasználó törölve', -]; -$a->strings['User "%s" deleted'] = '„%s” felhasználó törölve'; -$a->strings['User "%s" blocked'] = '„%s” felhasználó tiltva'; -$a->strings['Register date'] = 'Regisztráció dátuma'; -$a->strings['Last login'] = 'Utolsó bejelentkezés'; -$a->strings['Last public item'] = 'Utolsó nyilvános elem'; -$a->strings['Active Accounts'] = 'Aktív fiókok'; -$a->strings['User blocked'] = 'Felhasználó tiltva'; -$a->strings['Site admin'] = 'Oldal adminisztrátor'; -$a->strings['Account expired'] = 'A fiók lejárt'; -$a->strings['Create a new user'] = 'Új felhasználó létrehozása'; -$a->strings['Selected users will be deleted!\n\nEverything these users had posted on this site will be permanently deleted!\n\nAre you sure?'] = '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?'; -$a->strings['The user {0} will be deleted!\n\nEverything this user has posted on this site will be permanently deleted!\n\nAre you sure?'] = '{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?'; -$a->strings['%s user unblocked'] = [ - 0 => '%s felhasználó tiltása feloldva', - 1 => '%s felhasználó tiltása feloldva', -]; -$a->strings['User "%s" unblocked'] = '„%s” felhasználó tiltása feloldva'; -$a->strings['Blocked Users'] = 'Tiltott felhasználók'; -$a->strings['New User'] = 'Új felhasználó'; -$a->strings['Add User'] = 'Felhasználó hozzáadása'; -$a->strings['Name of the new user.'] = 'Az új felhasználó neve.'; -$a->strings['Nickname'] = 'Becenév'; -$a->strings['Nickname of the new user.'] = 'Az új felhasználó beceneve.'; -$a->strings['Email address of the new user.'] = 'Az új felhasználó e-mail-címe.'; -$a->strings['Users awaiting permanent deletion'] = 'Végleges törlésre váró felhasználók'; -$a->strings['Permanent deletion'] = 'Végleges törlés'; -$a->strings['Users'] = 'Felhasználók'; -$a->strings['User waiting for permanent deletion'] = 'Végleges törlésre váró felhasználó'; -$a->strings['%s user approved'] = [ - 0 => '%s felhasználó jóváhagyva', - 1 => '%s felhasználó jóváhagyva', -]; -$a->strings['%s registration revoked'] = [ - 0 => '%s regisztráció visszavonva', - 1 => '%s regisztráció visszavonva', -]; -$a->strings['Account approved.'] = 'Fiók jóváhagyva.'; -$a->strings['Registration revoked'] = 'Regisztráció visszavonva'; -$a->strings['User registrations awaiting review'] = 'Felülvizsgálatra váró felhasználói regisztrációk'; -$a->strings['Request date'] = 'Kérés dátuma'; -$a->strings['No registrations.'] = 'Nincsenek regisztrációk.'; -$a->strings['Note from the user'] = 'Jegyzet a felhasználótól'; -$a->strings['Deny'] = 'Elutasítás'; +$a->strings['The rules'] = 'A szabályok'; +$a->strings['Enter your system rules here. Each line represents one rule.'] = 'Itt adja meg a rendszer szabályait. Minden sor egy szabályt jelent.'; $a->strings['API endpoint %s %s is not implemented'] = 'A(z) %s %s API-végpont nincs megvalósítva'; $a->strings['The API endpoint is currently not implemented but might be in the future.'] = 'Az API-végpont jelenleg nincs megvalósítva, de ez változhat a jövőben.'; $a->strings['Missing parameters'] = 'Hiányzó paraméterek'; @@ -1734,9 +1377,6 @@ $a->strings['Database'] = 'Adatbázis'; $a->strings['DB updates'] = 'Adatbázis-frissítések'; $a->strings['Inspect Deferred Workers'] = 'Elhalasztott feldolgozók vizsgálata'; $a->strings['Inspect worker Queue'] = 'Feldolgozó várakozási sorának vizsgálata'; -$a->strings['Tools'] = 'Eszközök'; -$a->strings['Contact Blocklist'] = 'Partnertiltólista'; -$a->strings['Server Blocklist'] = 'Kiszolgáló-tiltólista'; $a->strings['Diagnostics'] = 'Diagnosztika'; $a->strings['PHP Info'] = 'PHP-információk'; $a->strings['probe address'] = 'Cím szondázása'; @@ -1758,28 +1398,61 @@ $a->strings['Monthly posting limit of %d post reached. The post was rejected.'] 0 => 'A havi %d bejegyzésből álló beküldési korlát elérve. A bejegyzés vissza lett utasítva.', 1 => 'A havi %d bejegyzésből álló beküldési korlát elérve. A bejegyzés vissza lett utasítva.', ]; +$a->strings['Users'] = 'Felhasználók'; +$a->strings['Tools'] = 'Eszközök'; +$a->strings['Contact Blocklist'] = 'Partnertiltólista'; +$a->strings['Server Blocklist'] = 'Kiszolgáló-tiltólista'; +$a->strings['Delete Item'] = 'Elem törlése'; +$a->strings['Item Source'] = 'Elem forrása'; $a->strings['Profile Details'] = 'Profil részletei'; +$a->strings['Status Messages and Posts'] = 'Állapotüzenetek és bejegyzések'; $a->strings['Only You Can See This'] = 'Csak Ön láthatja ezt'; $a->strings['Scheduled Posts'] = 'Ütemezett bejegyzések'; $a->strings['Posts that are scheduled for publishing'] = 'Bejegyzések, amelyek közzétételre vannak üzemezve'; $a->strings['Tips for New Members'] = 'Tippek új tagoknak'; $a->strings['People Search - %s'] = 'Emberek keresése – %s'; $a->strings['Forum Search - %s'] = 'Fórum keresése – %s'; +$a->strings['No matches'] = 'Nincs találat'; $a->strings['Account'] = 'Fiók'; $a->strings['Two-factor authentication'] = 'Kétlépcsős hitelesítés'; $a->strings['Display'] = 'Megjelenítés'; +$a->strings['Social Networks'] = 'Közösségi hálózatok'; $a->strings['Manage Accounts'] = 'Fiókok kezelése'; $a->strings['Connected apps'] = 'Kapcsolt alkalmazások'; $a->strings['Export personal data'] = 'Személyes adatok exportálása'; $a->strings['Remove account'] = 'Fiók eltávolítása'; $a->strings['This page is missing a url parameter.'] = 'Erről az oldalról hiányzik egy URL paraméter.'; $a->strings['The post was created'] = 'A bejegyzés létrejött'; +$a->strings['Invalid Request'] = 'Érvénytelen kérés'; +$a->strings['Event id is missing.'] = 'Az eseményazonosító hiányzik.'; +$a->strings['Failed to remove event'] = 'Nem sikerült eltávolítani az eseményt'; +$a->strings['Event can not end before it has started.'] = 'Az esemény nem fejeződhet be, mielőtt elkezdődött volna.'; +$a->strings['Event title and start time are required.'] = 'Az esemény címe és a kezdési idő kötelező.'; +$a->strings['Starting date and Title are required.'] = 'A kezdési dátum és a cím kötelező.'; +$a->strings['Event Starts:'] = 'Esemény kezdete:'; +$a->strings['Required'] = 'Kötelező'; +$a->strings['Finish date/time is not known or not relevant'] = 'A befejezési dátum vagy idő nem ismert vagy nem fontos'; +$a->strings['Event Finishes:'] = 'Esemény befejezése:'; +$a->strings['Title (BBCode not allowed)'] = 'Cím (BBCode nem engedélyezett)'; +$a->strings['Description (BBCode allowed)'] = 'Leírás (BBCode engedélyezett)'; +$a->strings['Location (BBCode not allowed)'] = 'Hely (BBCode nem engedélyezett)'; +$a->strings['Share this event'] = 'Az esemény megosztása'; +$a->strings['Basic'] = 'Alap'; +$a->strings['This calendar format is not supported'] = 'Ez a naptárformátum nem támogatott'; +$a->strings['No exportable data found'] = 'Nem található exportálható adat'; +$a->strings['calendar'] = 'naptár'; +$a->strings['Events'] = 'Események'; +$a->strings['View'] = 'Nézet'; +$a->strings['Create New Event'] = 'Új esemény létrehozása'; +$a->strings['list'] = 'lista'; $a->strings['%d contact edited.'] = [ 0 => '%d partner szerkesztve.', 1 => '%d partner szerkesztve.', ]; $a->strings['Show all contacts'] = 'Összes partner megjelenítése'; +$a->strings['Pending'] = 'Függőben'; $a->strings['Only show pending contacts'] = 'Csak a függőben lévő partnerek megjelenítése'; +$a->strings['Blocked'] = 'Tiltva'; $a->strings['Only show blocked contacts'] = 'Csak a tiltott partnerek megjelenítése'; $a->strings['Ignored'] = 'Mellőzve'; $a->strings['Only show ignored contacts'] = 'Csak a mellőzött partnerek megjelenítése'; @@ -1791,6 +1464,7 @@ $a->strings['Organize your contact groups'] = 'Partnercsoportok szervezése'; $a->strings['Search your contacts'] = 'Partnerek keresése'; $a->strings['Results for: %s'] = 'Találatok erre: %s'; $a->strings['Update'] = 'Frissítés'; +$a->strings['Unblock'] = 'Tiltás feloldása'; $a->strings['Unignore'] = 'Mellőzés feloldása'; $a->strings['Batch Actions'] = 'Tömeges műveletek'; $a->strings['Conversations started by this contact'] = 'A partner által elkezdett beszélgetések'; @@ -1804,8 +1478,10 @@ $a->strings['you are a fan of'] = 'Ön rajong érte:'; $a->strings['Pending outgoing contact request'] = 'Függőben lévő kimenő partnerkérés'; $a->strings['Pending incoming contact request'] = 'Függőben lévő bejövő partnerkérés'; $a->strings['Visit %s\'s profile [%s]'] = '%s profiljának megtekintése [%s]'; +$a->strings['Contact not found.'] = 'A partner nem található.'; $a->strings['Contact update failed.'] = 'A partner frissítése sikertelen.'; $a->strings['Return to contact editor'] = 'Visszatérés a partnerszerkesztőhöz'; +$a->strings['Name'] = 'Név'; $a->strings['Account Nickname'] = 'Fiók beceneve'; $a->strings['Account URL'] = 'Fiók URL'; $a->strings['Poll/Feed URL'] = 'Lekérés vagy hírforrás URL'; @@ -1835,6 +1511,22 @@ $a->strings['Contact (%s)'] = [ 0 => 'Partner (%s)', 1 => 'Partnerek (%s)', ]; +$a->strings['Access denied.'] = 'Hozzáférés megtagadva.'; +$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'; +$a->strings['Tags:'] = 'Címkék:'; +$a->strings['%s knows you'] = '%s ismeri Önt'; +$a->strings['Add a personal note:'] = 'Személyes jegyzet hozzáadása:'; +$a->strings['The contact could not be added.'] = 'A partnert nem sikerült hozzáadni.'; +$a->strings['Invalid request.'] = 'Érvénytelen kérés.'; +$a->strings['No keywords to match. Please add keywords to your profile.'] = 'Nincs illesztendő kulcsszó. Adjon kulcsszavakat a profiljához.'; +$a->strings['Profile Match'] = 'Profilegyezés'; $a->strings['Failed to update contact record.'] = 'Nem sikerült frissíteni a partner rekordját.'; $a->strings['Contact has been unblocked'] = 'A partner tiltása fel lett oldva'; $a->strings['Contact has been blocked'] = 'A partner tiltva lett'; @@ -1856,7 +1548,6 @@ $a->strings['Fetch information'] = 'Információk lekérése'; $a->strings['Fetch keywords'] = 'Kulcsszavak lekérése'; $a->strings['Fetch information and keywords'] = 'Információk és kulcsszavak lekérése'; $a->strings['No mirroring'] = 'Nincs tükrözés'; -$a->strings['Mirror as forwarded posting'] = 'Tükrözés továbbított beküldésként'; $a->strings['Mirror as my own posting'] = 'Tükrözés saját beküldésként'; $a->strings['Native reshare'] = 'Natív újra megosztás'; $a->strings['Contact Information / Notes'] = 'Partner információ vagy jegyzetek'; @@ -1888,12 +1579,20 @@ $a->strings['Toggle Blocked status'] = 'Tiltott állapot átváltása'; $a->strings['Toggle Ignored status'] = 'Mellőzött állapot átváltása'; $a->strings['Revoke Follow'] = 'Követés visszavonása'; $a->strings['Revoke the follow from this contact'] = 'A követés visszavonása ettől a partnertől'; +$a->strings['Bad Request.'] = 'Hibás kérés.'; $a->strings['Unknown contact.'] = 'Ismeretlen partner.'; $a->strings['Contact is deleted.'] = 'A partner törölve.'; $a->strings['Contact is being deleted.'] = 'A partner törlésre került.'; $a->strings['Follow was successfully revoked.'] = 'A követés sikeresen vissza lett vonva.'; $a->strings['Do you really want to revoke this contact\'s follow? This cannot be undone and they will have to manually follow you back again.'] = '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.'; $a->strings['Yes'] = 'Igen'; +$a->strings['No suggestions available. If this is a new site, please try again in 24 hours.'] = 'Nem érhetők el javaslatok. Ha ez egy új oldal, akkor próbálja újra 24 óra múlva.'; +$a->strings['You aren\'t following this contact.'] = 'Ön nem követi ezt a partnert.'; +$a->strings['Unfollowing is currently not supported by your network.'] = 'A követés megszüntetését jelenleg nem támogatja a hálózata.'; +$a->strings['Disconnect/Unfollow'] = 'Leválasztás vagy követés megszüntetése'; +$a->strings['Contact was successfully unfollowed'] = 'A partner követése sikeresen meg lett szüntetve'; +$a->strings['Unable to unfollow this contact, please contact your administrator'] = 'Nem lehet megszüntetni ennek a partnernek a követését, vegye fel a kapcsolatot az adminisztrátorral'; +$a->strings['This community stream shows all public posts received by this node. They may not reflect the opinions of this node’s users.'] = 'Ez a közösségi folyam 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.'; $a->strings['Local Community'] = 'Helyi közösség'; $a->strings['Posts from local users on this server'] = 'Bejegyzések a kiszolgálón lévő helyi felhasználóktól'; $a->strings['Global Community'] = 'Globális közösség'; @@ -1902,7 +1601,6 @@ $a->strings['Own Contacts'] = 'Saját partnerek'; $a->strings['Include'] = 'Tartalmazás'; $a->strings['Hide'] = 'Elrejtés'; $a->strings['No results.'] = 'Nincs találat.'; -$a->strings['This community stream shows all public posts received by this node. They may not reflect the opinions of this node’s users.'] = 'Ez a közösségi folyam 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.'; $a->strings['Community option not available.'] = 'A közösségi beállítás nem érhető el.'; $a->strings['Not available.'] = 'Nem érhető el.'; $a->strings['No such group'] = 'Nincs ilyen csoport'; @@ -1923,6 +1621,10 @@ $a->strings['Formatted'] = 'Formázott'; $a->strings['Activity'] = 'Tevékenység'; $a->strings['Object data'] = 'Objektum adatai'; $a->strings['Result Item'] = 'Eredményelem'; +$a->strings['Error'] = [ + 0 => 'Hiba', + 1 => 'Hibák', +]; $a->strings['Source activity'] = 'Forrástevékenység'; $a->strings['Source input'] = 'Forrás bevitele'; $a->strings['BBCode::toPlaintext'] = 'BBCode::toPlaintext'; @@ -1991,8 +1693,8 @@ $a->strings['No entries (some entries may be hidden).'] = 'Nincsenek bejegyzése $a->strings['Find on this site'] = 'Keresés ezen az oldalon'; $a->strings['Results for:'] = 'Találat erre:'; $a->strings['Site Directory'] = 'Oldal könyvtára'; -$a->strings['Item was not removed'] = 'Az elem nem lett eltávolítva'; $a->strings['Item was not deleted'] = 'Az elem nem lett törölve'; +$a->strings['Item was not removed'] = 'Az elem nem lett eltávolítva'; $a->strings['- select -'] = '– válasszon –'; $a->strings['Suggested contact not found.'] = 'Az ajánlott partner nem található.'; $a->strings['Friend suggestion sent.'] = 'Az ismerősajánlás elküldve.'; @@ -2002,6 +1704,7 @@ $a->strings['Installed addons/apps:'] = 'Telepített bővítmények vagy alkalma $a->strings['No installed addons/apps'] = 'Nincsenek telepített bővítmények vagy alkalmazások'; $a->strings['Read about the Terms of Service of this node.'] = 'Olvassa el ennek a csomópontnak a használati feltételeit.'; $a->strings['On this server the following remote servers are blocked.'] = 'Ezen a kiszolgálón a következő távoli kiszolgálók vannak tiltva.'; +$a->strings['Reason for the block'] = 'A tiltás oka'; $a->strings['Download this list in CSV format'] = 'A lista letöltése CSV formátumban'; $a->strings['This is Friendica, version %s that is running at the web location %s. The database version is %s, the post update version is %s.'] = '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.'; $a->strings['Please visit Friendi.ca to learn more about the Friendica project.'] = 'Látogassa meg a Friendi.ca oldalt, hogy többet tudjon meg a Friendica projektről.'; @@ -2037,6 +1740,7 @@ $a->strings['System check'] = 'Rendszerellenőrzés'; $a->strings['Requirement not satisfied'] = 'A követelmény nincs kielégítve'; $a->strings['Optional requirement not satisfied'] = 'A választható követelmény nincs kielégítve'; $a->strings['OK'] = 'Rendben'; +$a->strings['Next'] = 'Következő'; $a->strings['Check again'] = 'Ellenőrzés újra'; $a->strings['Base settings'] = 'Alapvető beállítások'; $a->strings['Host name'] = 'Gépnév'; @@ -2095,10 +1799,226 @@ $a->strings['Visibility'] = 'Láthatóság'; $a->strings['Clear the location'] = 'A hely törlése'; $a->strings['Location services are unavailable on your device'] = 'A helymeghatározó szolgáltatások nem érhetők el az Ön eszközén'; $a->strings['Location services are disabled. Please check the website\'s permissions on your device'] = 'A helymeghatározó szolgáltatások le vannak tiltva. Ellenőrizze a weboldal jogosultságait az Ön eszközén'; +$a->strings['You can make this page always open when you use the New Post button in the Theme Customization settings.'] = 'Mindig megnyitottá teheti ezt az oldalt, ha a téma személyre szabási beállításaiban lévő új bejegyzés gombot használja.'; +$a->strings['The requested item doesn\'t exist or has been deleted.'] = 'A kért elem nem létezik vagy törölték.'; +$a->strings['Unfortunately, the requested conversation isn\'t available to you.

+

Possible reasons include:

+

'] = 'Sajnos a kért beszélgetés nem érhető el Önnek.

+

A lehetséges okok a következők:

+

'; +$a->strings['The feed for this item is unavailable.'] = 'Ennek az elemnek a hírforrása nem érhető el.'; $a->strings['Unable to follow this item.'] = 'Nem lehet követni ezt az elemet.'; $a->strings['System down for maintenance'] = 'A rendszer le van kapcsolva a karbantartáshoz'; $a->strings['This Friendica node is currently in maintenance mode, either automatically because it is self-updating or manually by the node administrator. This condition should be temporary, please come back in a few minutes.'] = 'Ez a Friendica csomópont jelenleg karbantartási módban van, vagy automatikusan, mert épp önmagát frissíti, vagy kézileg a csomópont adminisztrátora által. Ennek az állapotnak átmenetinek kell lennie, jöjjön vissza néhány perc múlva.'; $a->strings['A Decentralized Social Network'] = 'Egy decentralizált közösségi hálózat'; +$a->strings['You need to be logged in to access this page.'] = 'Bejelentkezve kell lennie az oldalhoz való hozzáféréshez.'; +$a->strings['Files'] = 'Fájlok'; +$a->strings['Upload'] = 'Feltöltés'; +$a->strings['Sorry, maybe your upload is bigger than the PHP configuration allows'] = 'Elnézést, talán a feltöltése nagyobb annál, amit a PHP beállítása megenged'; +$a->strings['Or - did you try to upload an empty file?'] = 'Vagy – egy üres fájlt próbált meg feltölteni?'; +$a->strings['File exceeds size limit of %s'] = 'A fájl meghaladja a beállított %s méretkorlátot'; +$a->strings['File upload failed.'] = 'A fájl feltöltése sikertelen.'; +$a->strings['Unable to process image.'] = 'Nem lehet feldolgozni a képet.'; +$a->strings['Image exceeds size limit of %s'] = 'A kép meghaladja a beállított %s méretkorlátot'; +$a->strings['Image upload failed.'] = 'A kép feltöltése sikertelen.'; +$a->strings['List of all users'] = 'Összes felhasználó listája'; +$a->strings['Active'] = 'Aktív'; +$a->strings['List of active accounts'] = 'Aktív fiókok listája'; +$a->strings['List of pending registrations'] = 'Függőben lévő regisztrációk listája'; +$a->strings['List of blocked users'] = 'Tiltott felhasználók listája'; +$a->strings['Deleted'] = 'Törölve'; +$a->strings['List of pending user deletions'] = 'Függőben lévő felhasználó-törlések listája'; +$a->strings['Normal Account Page'] = 'Normál fiókoldal'; +$a->strings['Soapbox Page'] = 'Szappantartó oldal'; +$a->strings['Public Forum'] = 'Nyilvános fórum'; +$a->strings['Automatic Friend Page'] = 'Automatikus ismerős oldal'; +$a->strings['Private Forum'] = 'Személyes fórum'; +$a->strings['Personal Page'] = 'Személyes oldal'; +$a->strings['Organisation Page'] = 'Szervezeti oldal'; +$a->strings['News Page'] = 'Hírek oldal'; +$a->strings['Community Forum'] = 'Közösségi fórum'; +$a->strings['Relay'] = 'Továbbítás'; +$a->strings['You can\'t block a local contact, please block the user instead'] = 'Nem tilthat egy helyi partnert, inkább a felhasználót tiltsa'; +$a->strings['%s contact unblocked'] = [ + 0 => '%s partner tiltása feloldva', + 1 => '%s partner tiltása feloldva', +]; +$a->strings['Remote Contact Blocklist'] = 'Távoli partnerek tiltólistája'; +$a->strings['This page allows you to prevent any message from a remote contact to reach your node.'] = 'Ez az oldal lehetővé teszi, hogy megakadályozzon egy távoli partnertől származó minden üzenetet, amely elérné a csomópontját.'; +$a->strings['Block Remote Contact'] = 'Távoli partner tiltása'; +$a->strings['select all'] = 'összes kijelölése'; +$a->strings['select none'] = 'kijelölés törlése'; +$a->strings['No remote contact is blocked from this node.'] = 'Nincs olyan távoli partner, aki tiltva lenne erről a csomópontról.'; +$a->strings['Blocked Remote Contacts'] = 'Tiltott távoli partnerek'; +$a->strings['Block New Remote Contact'] = 'Új távoli partner tiltása'; +$a->strings['Photo'] = 'Fénykép'; +$a->strings['Reason'] = 'Indok'; +$a->strings['%s total blocked contact'] = [ + 0 => 'Összesen %s tiltott partner', + 1 => 'Összesen %s tiltott partner', +]; +$a->strings['URL of the remote contact to block.'] = 'A tiltandó távoli partner URL-je.'; +$a->strings['Also purge contact'] = 'Távolítsa el a partnert is'; +$a->strings['Removes all content related to this contact from the node. Keeps the contact record. This action cannot be undone.'] = 'Eltávolítja az ehhez a partnerhez kapcsolódó összes partnert a csomópontról. Megtartja a partner rekordját. Ezt a műveletet nem lehet visszavonni.'; +$a->strings['Block Reason'] = 'Tiltás oka'; +$a->strings['Server domain pattern added to the blocklist.'] = 'A tiltólistához hozzáadott kiszolgáló tartománymintája.'; +$a->strings['%s server scheduled to be purged.'] = [ + 0 => '%s kiszolgáló van ütemezve eltávolításra.', + 1 => '%s kiszolgáló van ütemezve eltávolításra.', +]; +$a->strings['← Return to the list'] = '← Vissza a listához'; +$a->strings['Block A New Server Domain Pattern'] = 'Új kiszolgálótartomány-minta tiltása'; +$a->strings['

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

+'] = '

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:

+'; +$a->strings['Check pattern'] = 'Minta ellenőrzése'; +$a->strings['Matching known servers'] = 'Illeszkedő ismert kiszolgálók'; +$a->strings['Server Name'] = 'Kiszolgáló neve'; +$a->strings['Server Domain'] = 'Kiszolgáló tartománya'; +$a->strings['Known Contacts'] = 'Ismert partnerek'; +$a->strings['%d known server'] = [ + 0 => '%d ismert kiszolgáló', + 1 => '%d ismert kiszolgáló', +]; +$a->strings['Add pattern to the blocklist'] = 'Minta hozzáadása a tiltólistához'; +$a->strings['Server Domain Pattern'] = 'Kiszolgálótartomány-minta'; +$a->strings['The domain pattern of the new server to add to the blocklist. Do not include the protocol.'] = 'A tiltólistához hozzáadandó új kiszolgáló tartományának mintája. Ne tegye bele a protokollt.'; +$a->strings['Purge server'] = 'Kiszolgáló eltávolítása'; +$a->strings['Also purges all the locally stored content authored by the known contacts registered on that server. Keeps the contacts and the server records. This action cannot be undone.'] = [ + 0 => 'Eltávolítja az összes olyan helyileg tárolt tartalmat is, amelyet az adott kiszolgálón regisztrált ismert partnerek hoztak létre. Megtartja a partnereket és a kiszolgáló rekordjait. Ezt a művelet nem lehet visszavonni.', + 1 => 'Eltávolítja az összes olyan helyileg tárolt tartalmat is, amelyet az adott kiszolgálókon regisztrált ismert partnerek hoztak létre. Megtartja a partnereket és a kiszolgálók rekordjait. Ezt a művelet nem lehet visszavonni.', +]; +$a->strings['Block reason'] = 'Tiltás oka'; +$a->strings['The reason why you blocked this server domain pattern. This reason will be shown publicly in the server information page.'] = 'Az ok, amiért kitiltotta ezt a kiszolgálótartomány-mintát. Az ok nyilvánosan meg lesz jelenítve a kiszolgáló információs oldalán.'; +$a->strings['Error importing pattern file'] = 'Hiba a mintafájl importálásakor'; +$a->strings['Local blocklist replaced with the provided file.'] = 'A helyi tiltólista le lett cserélve a megadott fájllal.'; +$a->strings['%d pattern was added to the local blocklist.'] = [ + 0 => '%d minta lett hozzáadva a helyi tiltólistához.', + 1 => '%d minta lett hozzáadva a helyi tiltólistához.', +]; +$a->strings['No pattern was added to the local blocklist.'] = 'Nem lett minta hozzáadva a helyi tiltólistához.'; +$a->strings['Import a Server Domain Pattern Blocklist'] = 'Kiszolgálótartomány-minta tiltólista importálása'; +$a->strings['

This 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.

'; +$a->strings['Upload file'] = 'Fájl feltöltése'; +$a->strings['Patterns to import'] = 'Importálandó minták'; +$a->strings['Domain Pattern'] = 'Tartományminta'; +$a->strings['Import Mode'] = 'Mód importálása'; +$a->strings['Import Patterns'] = 'Minták importálása'; +$a->strings['%d total pattern'] = [ + 0 => '%d minta összesen', + 1 => '%d minta összesen', +]; +$a->strings['Server domain pattern blocklist CSV file'] = 'Kiszolgálótartomány-minta tiltólista CSV-fájl'; +$a->strings['Append'] = 'Hozzáfűzés'; +$a->strings['Imports patterns from the file that weren\'t already existing in the current blocklist.'] = 'Olyan mintákat importál a fájlból, amelyek még nem léteztek a jelenlegi tiltólistán.'; +$a->strings['Replace'] = 'Csere'; +$a->strings['Replaces the current blocklist by the imported patterns.'] = 'Lecseréli a jelenlegi tiltólistát az importált mintákkal.'; +$a->strings['Blocked server domain pattern'] = 'Tiltott kiszolgálótartomány-minta'; +$a->strings['Delete server domain pattern'] = 'Kiszolgálótartomány-minta törlése'; +$a->strings['Check to delete this entry from the blocklist'] = 'Jelölje be a bejegyzés tiltólistából való törléséhez'; +$a->strings['Server Domain Pattern Blocklist'] = 'Kiszolgálótartomány-minta tiltólistája'; +$a->strings['This page can be used to define a blocklist of server domain patterns from the federated network that are not allowed to interact with your node. For each domain pattern you should also provide the reason why you block it.'] = 'Ez az oldal használható a föderált hálózatból származó azon kiszolgálótartomány-minták tiltólistájának meghatározásához, amelyeknek nem engedélyezett kapcsolatba lépniük az Ön csomópontjával. Minden egyes tartománymintához meg kell adnia az indokot is, hogy miért tiltja azt.'; +$a->strings['The list of blocked server domain patterns will be made publically available on the /friendica page so that your users and people investigating communication problems can find the reason easily.'] = 'A tiltott kiszolgálótartomány-minták listája nyilvánosan elérhetővé lesz téve a /friendica oldalon, azért hogy a kommunikációs problémákat kivizsgáló felhasználók és emberek egyszerűen megtalálják az okot.'; +$a->strings['Import server domain pattern blocklist'] = 'Kiszolgálótartomány-minta tiltólistájának importálása'; +$a->strings['Add new entry to the blocklist'] = 'Új bejegyzés hozzáadása a tiltólistához'; +$a->strings['Save changes to the blocklist'] = 'Változtatások mentése a tiltólistába'; +$a->strings['Current Entries in the Blocklist'] = 'Jelenlegi bejegyzések a tiltólistán'; +$a->strings['Delete entry from the blocklist'] = 'Bejegyzés törlése a tiltólistáról'; +$a->strings['Delete entry from the blocklist?'] = 'Törli a bejegyzést a tiltólistáról?'; +$a->strings['Item marked for deletion.'] = 'Az elem megjelölve törlésre.'; +$a->strings['Delete this Item'] = 'Az elem törlése'; +$a->strings['On this page you can delete an item from your node. If the item is a top level posting, the entire thread will be deleted.'] = 'Ezen az oldalon törölhet egy elemet a csomópontjáról. Ha az elem egy felső szintű beküldés, akkor a teljes szál törlésre fog kerülni.'; +$a->strings['You need to know the GUID of the item. You can find it e.g. by looking at the display URL. The last part of http://example.com/display/123456 is the GUID, here 123456.'] = 'Tudnia kell az elem GUID értékét. Ezt megtalálhatja például a megjelenített URL-re tekintve. A http://example.com/display/123456 utolsó része a GUID, itt az 123456.'; +$a->strings['GUID'] = 'GUID'; +$a->strings['The GUID of the item you want to delete.'] = 'Annak az elemnek GUID értéke, amelyet törölni szeretne.'; +$a->strings['Item Id'] = 'Elemazonosító'; +$a->strings['Item URI'] = 'Elem URI'; +$a->strings['Terms'] = 'Kifejezések'; +$a->strings['Tag'] = 'Címke'; +$a->strings['Type'] = 'Típus'; +$a->strings['Term'] = 'Kifejezés'; +$a->strings['URL'] = 'URL'; +$a->strings['Mention'] = 'Említés'; +$a->strings['Implicit Mention'] = 'Implicit említés'; +$a->strings['Item not found'] = 'Az elem nem található'; +$a->strings['No source recorded'] = 'Nincs forrás rögzítve'; +$a->strings['Please make sure the debug.store_source config key is set in config/local.config.php for future items to have sources.'] = '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.'; +$a->strings['Item Guid'] = 'Elem GUID értéke'; +$a->strings['Normal Account'] = 'Normál fiók'; +$a->strings['Automatic Follower Account'] = 'Automatikusan követő fiók'; +$a->strings['Public Forum Account'] = 'Nyilvános fórum fiók'; +$a->strings['Automatic Friend Account'] = 'Automatikus ismerős fiók'; +$a->strings['Blog Account'] = 'Blog fiók'; +$a->strings['Private Forum Account'] = 'Személyes fórumfiók'; +$a->strings['Registered users'] = 'Regisztrált felhasználók'; +$a->strings['Pending registrations'] = 'Függőben lévő regisztrációk'; +$a->strings['%s user blocked'] = [ + 0 => '%s felhasználó tiltva', + 1 => '%s felhasználó tiltva', +]; +$a->strings['You can\'t remove yourself'] = 'Nem távolíthatja el önmagát'; +$a->strings['%s user deleted'] = [ + 0 => '%s felhasználó törölve', + 1 => '%s felhasználó törölve', +]; +$a->strings['User "%s" deleted'] = '„%s” felhasználó törölve'; +$a->strings['User "%s" blocked'] = '„%s” felhasználó tiltva'; +$a->strings['Register date'] = 'Regisztráció dátuma'; +$a->strings['Last login'] = 'Utolsó bejelentkezés'; +$a->strings['Last public item'] = 'Utolsó nyilvános elem'; +$a->strings['Active Accounts'] = 'Aktív fiókok'; +$a->strings['User blocked'] = 'Felhasználó tiltva'; +$a->strings['Site admin'] = 'Oldal adminisztrátor'; +$a->strings['Account expired'] = 'A fiók lejárt'; +$a->strings['Create a new user'] = 'Új felhasználó létrehozása'; +$a->strings['Selected users will be deleted!\n\nEverything these users had posted on this site will be permanently deleted!\n\nAre you sure?'] = '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?'; +$a->strings['The user {0} will be deleted!\n\nEverything this user has posted on this site will be permanently deleted!\n\nAre you sure?'] = '{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?'; +$a->strings['%s user unblocked'] = [ + 0 => '%s felhasználó tiltása feloldva', + 1 => '%s felhasználó tiltása feloldva', +]; +$a->strings['User "%s" unblocked'] = '„%s” felhasználó tiltása feloldva'; +$a->strings['Blocked Users'] = 'Tiltott felhasználók'; +$a->strings['New User'] = 'Új felhasználó'; +$a->strings['Add User'] = 'Felhasználó hozzáadása'; +$a->strings['Name of the new user.'] = 'Az új felhasználó neve.'; +$a->strings['Nickname'] = 'Becenév'; +$a->strings['Nickname of the new user.'] = 'Az új felhasználó beceneve.'; +$a->strings['Email address of the new user.'] = 'Az új felhasználó e-mail-címe.'; +$a->strings['Users awaiting permanent deletion'] = 'Végleges törlésre váró felhasználók'; +$a->strings['Permanent deletion'] = 'Végleges törlés'; +$a->strings['User waiting for permanent deletion'] = 'Végleges törlésre váró felhasználó'; +$a->strings['%s user approved'] = [ + 0 => '%s felhasználó jóváhagyva', + 1 => '%s felhasználó jóváhagyva', +]; +$a->strings['%s registration revoked'] = [ + 0 => '%s regisztráció visszavonva', + 1 => '%s regisztráció visszavonva', +]; +$a->strings['Account approved.'] = 'Fiók jóváhagyva.'; +$a->strings['Registration revoked'] = 'Regisztráció visszavonva'; +$a->strings['User registrations awaiting review'] = 'Felülvizsgálatra váró felhasználói regisztrációk'; +$a->strings['Request date'] = 'Kérés dátuma'; +$a->strings['No registrations.'] = 'Nincsenek regisztrációk.'; +$a->strings['Note from the user'] = 'Jegyzet a felhasználótól'; +$a->strings['Deny'] = 'Elutasítás'; $a->strings['Show Ignored Requests'] = 'Mellőzött kérések megjelenítése'; $a->strings['Hide Ignored Requests'] = 'Mellőzött kérések elrejtése'; $a->strings['Notification type:'] = 'Értesítés típusa:'; @@ -2126,6 +2046,21 @@ $a->strings['Unsupported or missing response type'] = 'Nem támogatott vagy hiá $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['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.'; +$a->strings['Couldn\'t fetch friends for contact.'] = 'Nem sikerült lekérni a partner ismerőseit.'; +$a->strings['Couldn\'t fetch following contacts.'] = 'Nem sikerült lekérni a következő partnereket.'; +$a->strings['Couldn\'t fetch remote profile.'] = 'Nem sikerült lekérni a távoli profilt.'; +$a->strings['Unsupported network'] = 'Nem támogatott hálózat'; +$a->strings['Done'] = 'Kész'; +$a->strings['success'] = 'sikeres'; +$a->strings['failed'] = 'sikertelen'; +$a->strings['ignored'] = 'mellőzve'; $a->strings['Wrong type "%s", expected one of: %s'] = 'Hibás típus: „%s”, a következők egyike várt: %s'; $a->strings['Model not found'] = 'A modell nem található'; $a->strings['Unlisted'] = 'Listázatlan'; @@ -2141,7 +2076,22 @@ $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.'; $a->strings['Invalid photo with id %s.'] = 'Érvénytelen %s azonosítóval rendelkező fénykép.'; +$a->strings['Post not found.'] = 'A bejegyzés nem található.'; +$a->strings['Edit post'] = 'Bejegyzés szerkesztése'; +$a->strings['web link'] = 'webhivatkozás'; +$a->strings['Insert video link'] = 'Videohivatkozás beszúrása'; +$a->strings['video link'] = 'videohivatkozás'; +$a->strings['Insert audio link'] = 'Hanghivatkozás beszúrása'; +$a->strings['audio link'] = 'hanghivatkozás'; +$a->strings['Remove Item Tag'] = 'Elem címkéjének eltávolítása'; +$a->strings['Select a tag to remove: '] = 'Eltávolítandó címke kiválasztása: '; +$a->strings['Remove'] = 'Eltávolítás'; $a->strings['No contacts.'] = 'Nincsenek partnerek.'; +$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'; +$a->strings['Server can\'t accept new file upload at this time, please contact your administrator'] = 'A kiszolgáló jelenleg nem tud új fájlfeltöltést fogadni, vegye fel a kapcsolatot a rendszergazdával'; +$a->strings['Image file is empty.'] = 'A képfájl üres.'; +$a->strings['View Album'] = 'Album megtekintése'; $a->strings['Profile not found.'] = 'A profil nem található.'; $a->strings['You\'re currently viewing your profile as %s Cancel'] = 'A profilját jelenleg %s nevében nézi Mégse'; $a->strings['Full Name:'] = 'Teljes név:'; @@ -2154,16 +2104,36 @@ $a->strings['%d year old'] = [ 0 => '%d éves', 1 => '%d éves', ]; +$a->strings['Description:'] = 'Leírás:'; $a->strings['Forums:'] = 'Fórumok:'; $a->strings['View profile as:'] = 'Profil megtekintése másként:'; $a->strings['View as'] = 'Megtekintés másként'; $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['Profile unavailable.'] = 'A profil nem érhető el.'; +$a->strings['Invalid locator'] = 'Érvénytelen kereső'; +$a->strings['The provided profile link doesn\'t seem to be valid'] = 'A megadott profilhivatkozás nem tűnik érvényesnek'; +$a->strings['Remote subscription can\'t be done for your network. Please subscribe directly on your system.'] = '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.'; +$a->strings['Friend/Connection Request'] = 'Ismerős- vagy kapcsolódási kérés'; +$a->strings['Enter your Webfinger address (user@domain.tld) or profile URL here. If this isn\'t supported by your system, you have to subscribe to %s or %s directly on your system.'] = '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.'; +$a->strings['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.'] = '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.'; +$a->strings['Your Webfinger address or profile URL:'] = 'A WebFinger-címe vagy profil URL-je:'; +$a->strings['Restricted profile'] = 'Korlátozott profil'; +$a->strings['This profile has been restricted which prevents access to their public content from anonymous visitors.'] = 'Ez a profil korlátozva lett, ami megakadályozza, hogy a névtelen látogatók hozzáférjenek a nyilvános tartalmához.'; $a->strings['Scheduled'] = 'Ütemezett'; $a->strings['Content'] = 'Tartalom'; $a->strings['Remove post'] = 'Bejegyzés eltávolítása'; +$a->strings['Empty message body.'] = 'Üres üzenettörzs.'; +$a->strings['Unable to check your home location.'] = 'Nem lehet ellenőrizni az otthona helyét.'; +$a->strings['Recipient not found.'] = 'A címzett nem található.'; +$a->strings['Number of daily wall messages for %s exceeded. Message failed.'] = 'A(z) %s napi falüzeneteinek száma túllépve. Az üzenet sikertelen.'; +$a->strings['If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders.'] = 'Ha azt szeretné, hogy %s válaszoljon, ellenőrizze, hogy az Ön oldalán lévő adatvédelmi beállítások lehetővé teszik-e az ismeretlen küldőktől származó személyes leveleket.'; +$a->strings['To'] = 'Címzett'; +$a->strings['Subject'] = 'Tárgy'; +$a->strings['Your message'] = 'Az üzenete'; $a->strings['Only parent users can create additional accounts.'] = 'Csak fölérendelt felhasználók hozhatnak létre további fiókokat.'; +$a->strings['This site has exceeded the number of allowed daily account registrations. Please try again tomorrow.'] = 'Ez az oldal túllépte a fiókregisztrációk naponta megengedett számát. Próbálja újra holnap.'; $a->strings['You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking "Register".'] = '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ő).'; $a->strings['If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items.'] = 'Ha nem ismeri az OpenID-t, akkor hagyja a mezőt üresen, és töltse ki a többi elemet.'; $a->strings['Your OpenID (optional): '] = 'Az Ön OpenID-ja (opcionális): '; @@ -2180,6 +2150,7 @@ $a->strings['Leave empty for an auto generated password.'] = 'Hagyja üresen egy $a->strings['Confirm:'] = 'Megerősítés:'; $a->strings['Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be "nickname@%s".'] = 'Válasszon profilbecenevet. Ennek betűvel kell kezdődnie. Ezután a profilcíme ezen az oldalon „becenév@%s” lesz.'; $a->strings['Choose a nickname: '] = 'Becenév választása: '; +$a->strings['Import'] = 'Importálás'; $a->strings['Import your profile to this friendica instance'] = 'A profilja importálása erre a Friendica példányra'; $a->strings['Note: This node explicitly contains adult content'] = 'Megjegyzés: ez a csomópont kifejezetten tartalmaz felnőtt tartalmat'; $a->strings['Parent Password:'] = 'Fölérendelt jelszó:'; @@ -2194,15 +2165,8 @@ $a->strings['Failed to send email message. Here your accout details:
login: $a->strings['Registration successful.'] = 'A regisztráció sikerült.'; $a->strings['Your registration can not be processed.'] = 'A regisztrációját nem lehet feldolgozni.'; $a->strings['You have to leave a request note for the admin.'] = 'Hagynia kell egy kérelmi jegyzetet az adminisztrátornak.'; +$a->strings['An internal error occured.'] = 'Belső hiba történt.'; $a->strings['Your registration is pending approval by the site owner.'] = 'A regisztrációja jóváhagyásra vár az oldal tulajdonosától.'; -$a->strings['Profile unavailable.'] = 'A profil nem érhető el.'; -$a->strings['Invalid locator'] = 'Érvénytelen kereső'; -$a->strings['The provided profile link doesn\'t seem to be valid'] = 'A megadott profilhivatkozás nem tűnik érvényesnek'; -$a->strings['Remote subscription can\'t be done for your network. Please subscribe directly on your system.'] = '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.'; -$a->strings['Friend/Connection Request'] = 'Ismerős- vagy kapcsolódási kérés'; -$a->strings['Enter your Webfinger address (user@domain.tld) or profile URL here. If this isn\'t supported by your system, you have to subscribe to %s or %s directly on your system.'] = '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.'; -$a->strings['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.'] = '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.'; -$a->strings['Your Webfinger address or profile URL:'] = 'A WebFinger-címe vagy profil URL-je:'; $a->strings['You must be logged in to use this module.'] = 'Bejelentkezve kell lennie a modul használatához.'; $a->strings['Only logged in users are permitted to perform a search.'] = 'Csak bejelentkezett felhasználóknak engedélyezett a keresés végrehajtása.'; $a->strings['Only one search per minute is permitted for not logged in users.'] = 'Percenként csak egy keresés engedélyezett a nem bejelentkezett felhasználóknak.'; @@ -2304,8 +2268,8 @@ $a->strings['Allow your profile to be searchable globally?'] = 'Engedélyezi, ho $a->strings['Activate this setting if you want others to easily find and follow you. Your profile will be searchable on remote systems. This setting also determines whether Friendica will inform search engines that your profile should be indexed or not.'] = 'Akkor kapcsolja be ezt a beállítást, ha azt szeretné, hogy mások egyszerűen megtalálják és kövessék Önt. A profilja kereshető lesz a távoli rendszereken. Ez a beállítás azt is meghatározza, hogy a Friendica tájékoztatja-e a keresőmotorokat arról, hogy a profilját indexelni kell-e vagy sem.'; $a->strings['Hide your contact/friend list from viewers of your profile?'] = 'Elrejti a partnerlistáját vagy ismerőslistáját a profilja megtekintői elől?'; $a->strings['A list of your contacts is displayed on your profile page. Activate this option to disable the display of your contact list.'] = '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.'; -$a->strings['Hide your profile details from anonymous viewers?'] = 'Elrejti a profilja részleteit a névtelen megtekintők elől?'; -$a->strings['Anonymous visitors will only see your profile picture, your display name and the nickname you are using on your profile page. Your public posts and replies will still be accessible by other means.'] = 'A névtelen látogatók csak azt profilfényképét, megjelenített nevét és becenevét láthatják, amelyet a profiloldalán használ. A nyilvános bejegyzései és válaszai továbbra is elérhetők lesznek más eszközökkel.'; +$a->strings['Hide your public content from anonymous viewers'] = 'Nyilvános tartalom elrejtése a névtelen megtekintők elől'; +$a->strings['Anonymous visitors will only see your basic profile details. Your public posts and replies will still be freely accessible on the remote servers of your followers and through relays.'] = '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.'; $a->strings['Make public posts unlisted'] = 'Nyilvános bejegyzések felsorolatlanná tétele'; $a->strings['Your public posts will not appear on the community pages or in search results, nor be sent to relay servers. However they can still appear on public feeds on remote servers.'] = '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.'; $a->strings['Make all posted pictures accessible'] = 'Az összes beküldött fénykép elérhetővé tétele'; @@ -2363,6 +2327,45 @@ $a->strings['Upload File'] = 'Fájl feltöltése'; $a->strings['Relocate'] = 'Áthelyezés'; $a->strings['If you have moved this profile from another server, and some of your contacts don\'t receive your updates, try pushing this button.'] = '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.'; $a->strings['Resend relocate message to contacts'] = 'Áthelyezési üzenet küldése a partnereknek'; +$a->strings['Addon Settings'] = 'Bővítménybeállítások'; +$a->strings['No Addon settings configured'] = 'Nincsenek bővítménybeállítások meghatározva'; +$a->strings['Failed to connect with email account using the settings provided.'] = 'Nem sikerült kapcsolódni a megadott beállításokat használó e-mail-fiókkal.'; +$a->strings['Diaspora (Socialhome, Hubzilla)'] = 'Diaspora (Socialhome, Hubzilla)'; +$a->strings['Built-in support for %s connectivity is enabled'] = 'A(z) %s összekapcsolhatóságának beépített támogatása engedélyezve'; +$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['General Social Media Settings'] = 'Általános közösségimédia-beállítások'; +$a->strings['Followed content scope'] = 'Követett tartalom hatóköre'; +$a->strings['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.'] = '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.'; +$a->strings['Only conversations my follows started'] = 'Csak a követőim által indított beszélgetések'; +$a->strings['Conversations my follows started or commented on (default)'] = 'A követőim által indított vagy hozzászólt beszélgetések (alapértelmezett)'; +$a->strings['Any conversation my follows interacted with, including likes'] = 'A követőim által interakcióba került beszélgetések, beleértve a kedveléseket is'; +$a->strings['Enable Content Warning'] = 'Tartalomfigyelmeztetés engedélyezése'; +$a->strings['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.'] = 'Például a Mastodon vagy a Pleroma hálózatán lévő felhasználók képesek egy olyan tartalomfigyelmeztetési mezőt beállítani, amely alapértelmezetten összecsukja a bejegyzéseiket. Ez engedélyezi az automatikus összecsukást, ahelyett hogy beállítaná a tartalomfigyelmeztetést a bejegyzés címeként. Nincs hatással semmilyen más tartalomszűrésre, amelyet végül beállított.'; +$a->strings['Enable intelligent shortening'] = 'Intelligens rövidítés engedélyezése'; +$a->strings['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.'] = 'Á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.'; +$a->strings['Enable simple text shortening'] = 'Egyszerű szövegrövidítés engedélyezése'; +$a->strings['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.'] = 'Á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.'; +$a->strings['Attach the link title'] = 'A hivatkozás címének csatolása'; +$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.'] = '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.'; +$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:'; +$a->strings['IMAP server name:'] = 'IMAP-kiszolgáló neve:'; +$a->strings['IMAP port:'] = 'IMAP port:'; +$a->strings['Security:'] = 'Biztonság:'; +$a->strings['Email login name:'] = 'E-mail bejelentkezési neve:'; +$a->strings['Email password:'] = 'E-mail jelszava:'; +$a->strings['Reply-to address:'] = 'Válaszcím:'; +$a->strings['Send public posts to all email contacts:'] = 'Nyilvános bejegyzések küldése az összes e-mail partnernek:'; +$a->strings['Action after import:'] = 'Importálás utáni művelet:'; +$a->strings['Move to folder'] = 'Áthelyezés mappába'; +$a->strings['Move to folder:'] = 'Áthelyezés mappába:'; $a->strings['Delegation successfully granted.'] = 'A meghatalmazás sikeresen megadva.'; $a->strings['Parent user not found, unavailable or password doesn\'t match.'] = 'A fölérendelt felhasználó nem található, nem érhető el vagy a jelszó nem egyezik.'; $a->strings['Delegation successfully revoked.'] = 'A meghatalmazás sikeresen visszavonva.'; @@ -2382,12 +2385,15 @@ $a->strings['Add'] = 'Hozzáadás'; $a->strings['No entries.'] = 'Nincsenek bejegyzések.'; $a->strings['The theme you chose isn\'t available.'] = 'A választott téma nem érhető el.'; $a->strings['%s - (Unsupported)'] = '%s – (nem támogatott)'; +$a->strings['No preview'] = 'Nincs előnézet'; +$a->strings['No image'] = 'Nincs kép'; +$a->strings['Small Image'] = 'Kis kép'; +$a->strings['Large Image'] = 'Nagy kép'; $a->strings['Display Settings'] = 'Megjelenítési beállítások'; $a->strings['General Theme Settings'] = 'Általános témabeállítások'; $a->strings['Custom Theme Settings'] = 'Egyéni témabeállítások'; $a->strings['Content Settings'] = 'Tartalombeállítások'; $a->strings['Theme settings'] = 'Témabeállítások'; -$a->strings['Calendar'] = 'Naptár'; $a->strings['Display Theme:'] = 'Megjelenítés témája:'; $a->strings['Mobile Theme:'] = 'Mobil téma:'; $a->strings['Number of items to display per page:'] = 'Oldalanként megjelenítendő elemek száma:'; @@ -2409,7 +2415,11 @@ $a->strings['Display the resharer'] = 'Az újramegosztó megjelenítése'; $a->strings['Display the first resharer as icon and text on a reshared item.'] = 'Az első újramegosztó megjelenítése ikonként és szövegként egy újra megosztott elemnél.'; $a->strings['Stay local'] = 'Maradjon helyi'; $a->strings['Don\'t go to a remote system when following a contact link.'] = 'Ne menjen távoli rendszerre, ha egy partnerhivatkozást követ.'; +$a->strings['Link preview mode'] = 'Hivatkozás-előnézeti mód'; $a->strings['Beginning of week:'] = 'A hét kezdete:'; +$a->strings['Additional Features'] = 'További funkciók'; +$a->strings['Connected Apps'] = 'Kapcsolt alkalmazások'; +$a->strings['Remove authorization'] = 'Felhatalmazás eltávolítása'; $a->strings['Profile Name is required.'] = 'A profil neve kötelező.'; $a->strings['Profile couldn\'t be updated.'] = 'A profilt nem sikerült frissíteni.'; $a->strings['Label:'] = 'Címke:'; @@ -2417,6 +2427,8 @@ $a->strings['Value:'] = 'Érték:'; $a->strings['Field Permissions'] = 'Mező jogosultságai'; $a->strings['(click to open/close)'] = '(kattintson a megnyitáshoz vagy bezáráshoz)'; $a->strings['Add a new profile field'] = 'Új profilmező hozzáadása'; +$a->strings['The homepage is verified. A rel="me" link back to your Friendica profile page was found on the homepage.'] = 'A honlap ellenőrizve. A Friendica profiloldalára visszamutató rel="me" hivatkozás található a honlapon.'; +$a->strings['To verify your homepage, add a rel="me" link to it, pointing to your profile URL (%s).'] = 'A honlapja ellenőrzéséhez adjon hozzá egy rel="me" hivatkozást a honlapjához, amely a profilja URL-jére mutat (%s).'; $a->strings['Profile Actions'] = 'Profilműveletek'; $a->strings['Edit Profile Details'] = 'Profil részleteinek szerkesztése'; $a->strings['Change Profile Photo'] = 'Profilfénykép megváltoztatása'; @@ -2465,6 +2477,14 @@ $a->strings['Upload Picture:'] = 'Fénykép feltöltése:'; $a->strings['or'] = 'vagy'; $a->strings['skip this step'] = 'ezen lépés kihagyása'; $a->strings['select a photo from your photo albums'] = 'fénykép kiválasztása a fényképalbumából'; +$a->strings['[Friendica System Notify]'] = '[Friendica rendszerértesítés]'; +$a->strings['User deleted their account'] = 'A felhasználó törölte a fiókját'; +$a->strings['On your Friendica node an user deleted their account. Please ensure that their data is removed from the backups.'] = 'Az Ön Friendica csomópontján egy felhasználó törölte a fiókját. Győződjön meg arról, hogy az adatai el lettek-e távolítva a biztonsági mentésekből.'; +$a->strings['The user id is %d'] = 'A felhasználó-azonosító %d'; +$a->strings['Your user account has been successfully removed. Bye bye!'] = 'A felhasználói fiókja sikeresen el lett távolítva. Viszlát!'; +$a->strings['Remove My Account'] = 'Saját fiók eltávolítása'; +$a->strings['This will completely remove your account. Once this has been done it is not recoverable.'] = 'Ez teljesen el fogja távolítani a fiókját. Miután ez megtörtént, nem lesz visszaállítható.'; +$a->strings['Please enter your password for verification:'] = 'Adja meg a jelszavát az ellenőrzéshez:'; $a->strings['Please enter your password to access this page.'] = 'Adja meg a jelszavát az oldal eléréséhez.'; $a->strings['App-specific password generation failed: The description is empty.'] = 'Az alkalmazásfüggő jelszó előállítása sikertelen: a leírás üres.'; $a->strings['App-specific password generation failed: This description already exists.'] = 'Az alkalmazásfüggő jelszó előállítása sikertelen: a leírás már létezik.'; @@ -2563,8 +2583,27 @@ $a->strings['Stack trace:'] = 'Veremkiíratás:'; $a->strings['Exception thrown in %s:%d'] = 'Kivétel történt itt: %s:%d'; $a->strings['At the time of registration, and for providing communications between the user account and their contacts, the user has to provide a display name (pen name), an username (nickname) and a working email address. The names will be accessible on the profile page of the account by any visitor of the page, even if other profile details are not displayed. The email address will only be used to send the user notifications about interactions, but wont be visibly displayed. The listing of an account in the node\'s user directory or the global user directory is optional and can be controlled in the user settings, it is not necessary for communication.'] = '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.'; $a->strings['This data is required for communication and is passed on to the nodes of the communication partners and is stored there. Users can enter additional private data that may be transmitted to the communication partners accounts.'] = '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.'; -$a->strings['At any point in time a logged in user can export their account data from the account settings. If the user wants to delete their account they can do so at %1$s/removeme. The deletion of the account will be permanent. Deletion of the data will also be requested from the nodes of the communication partners.'] = '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/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.'; +$a->strings['At any point in time a logged in user can export their account data from the account settings. If the user wants to delete their account they can do so at %1$s/settings/removeme. The deletion of the account will be permanent. Deletion of the data will also be requested from the nodes of the communication partners.'] = '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.'; $a->strings['Privacy Statement'] = 'Adatvédelmi nyilatkozat'; +$a->strings['Rules'] = 'Szabályok'; +$a->strings['Parameter uri_id is missing.'] = 'Az uri_id paraméter hiányzik.'; +$a->strings['User imports on closed servers can only be done by an administrator.'] = 'A lezárt kiszolgálókon történő felhasználó-importálásokat csak egy adminisztrátor végezheti el.'; +$a->strings['Move account'] = 'Fiók áthelyezése'; +$a->strings['You can import an account from another Friendica server.'] = 'Importálhat egy fiókot egy másik Friendica kiszolgálóról.'; +$a->strings['You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here.'] = '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.'; +$a->strings['This feature is experimental. We can\'t import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora'] = '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.'; +$a->strings['Account file'] = 'Fiókfájl'; +$a->strings['To export your account, go to "Settings->Export your personal data" and select "Export account"'] = '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.'; +$a->strings['Error decoding account file'] = 'Hiba a fiókfájl dekódolásakor'; +$a->strings['Error! No version data in file! This is not a Friendica account file?'] = 'Hiba! Nincsenek verzióadatok a fájlban! Ez nem Friendica fiókfájl?'; +$a->strings['User \'%s\' already exists on this server!'] = '„%s” felhasználó már létezik ezen a kiszolgálón!'; +$a->strings['User creation error'] = 'Felhasználó-létrehozási hiba'; +$a->strings['%d contact not imported'] = [ + 0 => '%d partner nincs importálva', + 1 => '%d partner nincs importálva', +]; +$a->strings['User profile creation error'] = 'Felhasználóiprofil-létrehozási hiba'; +$a->strings['Done. You can now login with your username and password'] = 'Kész. Most már bejelentkezhet a felhasználónevével és a jelszavával.'; $a->strings['Welcome to Friendica'] = 'Üdvözli a Friendica!'; $a->strings['New Member Checklist'] = 'Új tag ellenőrzőlistája'; $a->strings['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 will be visible from your home page for two weeks after your initial registration and then will quietly disappear.'] = '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.'; @@ -2671,7 +2710,7 @@ $a->strings['\'%1$s\' has chosen to accept you a fan, which restricts some forms $a->strings['\'%1$s\' may choose to extend this into a two-way or more permissive relationship in the future.'] = '%1$s dönthet úgy, hogy kiterjeszti ezt egy kétirányú vagy egy megengedőbb kapcsolattá a jövőben.'; $a->strings['Please visit %s if you wish to make any changes to this relationship.'] = 'Látogassa meg a(z) %s oldalt, ha bármilyen változtatást szeretne tenni ebben a kapcsolatban.'; $a->strings['registration request'] = 'regisztrációs kérés'; -$a->strings['You\'ve received a registration request from \'%1$s\' at %2$s'] = 'Kapott egy regisztrációs kérést %1$s partnertől itt: %2$s'; +$a->strings['You\'ve received a registration request from \'%1$s\' at %2$s'] = 'Kapott egy regisztrációs kérést „%1$s” partnertől itt: %2$s'; $a->strings['You\'ve received a [url=%1$s]registration request[/url] from %2$s.'] = 'Kapott egy %2$s által elküldött [url=%1$s]regisztrációs kérést[/url].'; $a->strings['Full Name: %s Site Location: %s @@ -2679,6 +2718,10 @@ Login Name: %s (%s)'] = 'Teljes név: %s Oldal címe: %s Bejelentkezési név: %s (%s)'; $a->strings['Please visit %s to approve or reject the request.'] = 'Látogassa meg a(z) %s oldalt a kérés jóváhagyásához vagy visszautasításához.'; +$a->strings['new registration'] = 'új regisztráció'; +$a->strings['You\'ve received a new registration from \'%1$s\' at %2$s'] = 'Kapott egy új regisztrációs kérést „%1$s” partnertől itt: %2$s'; +$a->strings['You\'ve received a [url=%1$s]new registration[/url] from %2$s.'] = 'Kapott egy %2$s által elküldött [url=%1$s]új regisztrációt[/url].'; +$a->strings['Please visit %s to have a look at the new registration.'] = 'Látogassa meg a(z) %s oldal, hogy egy pillantást vessen az új regisztrációra.'; $a->strings['%s %s tagged you'] = '%s %s megjelölte Önt'; $a->strings['%s %s shared a new post'] = '%s %s megosztott egy új bejegyzést'; $a->strings['This message was sent to you by %s, a member of the Friendica social network.'] = 'Ezt az üzenetet %s, a Friendica közösségi hálózatának tagja küldte Önnek.'; @@ -2802,6 +2845,8 @@ $a->strings['Set the background color'] = 'Háttérszín beállítása'; $a->strings['Content background opacity'] = 'Tartalom hátterének átlátszatlansága'; $a->strings['Set the background image'] = 'A háttérkép beállítása'; $a->strings['Background image style'] = 'Háttérkép stílusa'; +$a->strings['Always open Compose page'] = 'Mindig az írás oldal megnyitása'; +$a->strings['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.'] = '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.'; $a->strings['Login page background image'] = 'Bejelentkezési oldal háttérképe'; $a->strings['Login page background color'] = 'Bejelentkezési oldal háttérszíne'; $a->strings['Leave background image and color empty for theme defaults'] = 'Hagyja üresen a háttérképet és színt a téma alapértelmezettjéhez'; diff --git a/view/lang/pl/messages.po b/view/lang/pl/messages.po index 28a9b6073..f25935abc 100644 --- a/view/lang/pl/messages.po +++ b/view/lang/pl/messages.po @@ -5,6 +5,7 @@ # Translators: # Adam Jurkiewicz , 2012 # Adam Jurkiewicz , 2012 +# Bartosz Małkowski, 2022 # julia.domagalska , 2013,2015 # julia.domagalska , 2012-2013 # Daria Początek , 2012 @@ -30,6 +31,7 @@ # Lea1995polish , 2012 # fb7a25122d618b2c5d9d1a868652cfb3_e3ca738 <285b7d7c0c39700827374527cc41dc07_136494>, 2013 # Mai Anh Nguyen , 2013 +# Makary , 2022 # Marcin Klessa , 2012 # marcin mikołajczak , 2018-2019 # Mariusz Pisz , 2013 @@ -57,7 +59,7 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-07-17 07:33+0000\n" +"POT-Creation-Date: 2022-12-14 21:56-0500\n" "PO-Revision-Date: 2011-05-05 10:19+0000\n" "Last-Translator: Piotr Strębski , 2022\n" "Language-Team: Polish (http://www.transifex.com/Friendica/friendica/language/pl/)\n" @@ -67,524 +69,66 @@ msgstr "" "Language: pl\n" "Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" -#: mod/cal.php:46 mod/cal.php:50 mod/follow.php:39 mod/redir.php:36 -#: mod/redir.php:177 src/Module/Conversation/Community.php:181 -#: src/Module/Debug/ItemBody.php:38 src/Module/Diaspora/Receive.php:57 -#: src/Module/Item/Follow.php:42 src/Module/Item/Ignore.php:41 -#: src/Module/Item/Pin.php:42 src/Module/Item/Pin.php:57 -#: src/Module/Item/Star.php:43 -msgid "Access denied." -msgstr "Brak dostępu." - -#: mod/cal.php:63 mod/cal.php:80 mod/photos.php:69 mod/photos.php:140 -#: mod/photos.php:798 src/Model/Profile.php:232 src/Module/Feed.php:72 -#: src/Module/HCard.php:52 src/Module/Profile/Common.php:41 -#: src/Module/Profile/Common.php:52 src/Module/Profile/Contacts.php:40 -#: src/Module/Profile/Contacts.php:50 src/Module/Profile/Media.php:38 -#: src/Module/Profile/Status.php:59 src/Module/Register.php:267 -#: src/Module/RemoteFollow.php:58 -msgid "User not found." -msgstr "Użytkownik nie znaleziony." - -#: mod/cal.php:122 mod/display.php:262 src/Module/Profile/Profile.php:94 -#: src/Module/Profile/Profile.php:109 src/Module/Profile/Status.php:110 -#: src/Module/Update/Profile.php:56 -msgid "Access to this profile has been restricted." -msgstr "Dostęp do tego profilu został ograniczony." - -#: mod/cal.php:243 mod/events.php:374 src/Content/Nav.php:196 -#: src/Content/Nav.php:260 src/Module/BaseProfile.php:84 -#: src/Module/BaseProfile.php:95 view/theme/frio/theme.php:234 -#: view/theme/frio/theme.php:238 -msgid "Events" -msgstr "Wydarzenia" - -#: mod/cal.php:244 mod/events.php:375 -msgid "View" -msgstr "Widok" - -#: mod/cal.php:245 mod/events.php:377 -msgid "Previous" -msgstr "Poprzedni" - -#: mod/cal.php:246 mod/events.php:378 src/Module/Install.php:214 -msgid "Next" -msgstr "Następny" - -#: mod/cal.php:249 mod/events.php:383 src/Model/Event.php:456 -msgid "today" -msgstr "dzisiaj" - -#: mod/cal.php:250 mod/events.php:384 src/Model/Event.php:457 -#: src/Util/Temporal.php:334 -msgid "month" -msgstr "miesiąc" - -#: mod/cal.php:251 mod/events.php:385 src/Model/Event.php:458 -#: src/Util/Temporal.php:335 -msgid "week" -msgstr "tydzień" - -#: mod/cal.php:252 mod/events.php:386 src/Model/Event.php:459 -#: src/Util/Temporal.php:336 -msgid "day" -msgstr "dzień" - -#: mod/cal.php:253 mod/events.php:387 -msgid "list" -msgstr "lista" - -#: mod/cal.php:265 src/Console/User.php:182 src/Model/User.php:661 -#: src/Module/Admin/Users/Active.php:73 src/Module/Admin/Users/Blocked.php:74 -#: src/Module/Admin/Users/Index.php:80 src/Module/Admin/Users/Pending.php:71 -#: src/Module/Api/Twitter/ContactEndpoint.php:74 -msgid "User not found" -msgstr "Użytkownik nie znaleziony" - -#: mod/cal.php:274 -msgid "This calendar format is not supported" -msgstr "Ten format kalendarza nie jest obsługiwany" - -#: mod/cal.php:276 -msgid "No exportable data found" -msgstr "Nie znaleziono danych do eksportu" - -#: mod/cal.php:292 -msgid "calendar" -msgstr "kalendarz" - -#: mod/display.php:143 mod/photos.php:802 -#: src/Module/Conversation/Community.php:175 src/Module/Directory.php:49 -#: src/Module/Search/Index.php:65 -msgid "Public access denied." -msgstr "Publiczny dostęp zabroniony." - -#: mod/display.php:213 mod/display.php:287 -msgid "The requested item doesn't exist or has been deleted." -msgstr "Żądany element nie istnieje lub został usunięty." - -#: mod/display.php:367 -msgid "The feed for this item is unavailable." -msgstr "Kanał dla tego elementu jest niedostępny." - -#: mod/editpost.php:38 mod/events.php:217 mod/follow.php:56 mod/follow.php:130 -#: mod/item.php:181 mod/item.php:186 mod/item.php:880 mod/message.php:69 -#: mod/message.php:111 mod/notes.php:44 mod/ostatus_subscribe.php:33 -#: mod/photos.php:160 mod/photos.php:891 mod/repair_ostatus.php:31 -#: mod/settings.php:40 mod/settings.php:50 mod/settings.php:156 -#: mod/suggest.php:34 mod/uimport.php:33 mod/unfollow.php:35 -#: mod/unfollow.php:50 mod/unfollow.php:82 mod/wall_attach.php:67 -#: mod/wall_attach.php:69 mod/wall_upload.php:89 mod/wall_upload.php:91 -#: mod/wallmessage.php:37 mod/wallmessage.php:56 mod/wallmessage.php:90 -#: mod/wallmessage.php:110 src/Module/Attach.php:56 src/Module/BaseApi.php:93 -#: src/Module/BaseNotifications.php:97 src/Module/Contact/Advanced.php:60 -#: src/Module/Delegation.php:119 src/Module/FollowConfirm.php:38 -#: src/Module/FriendSuggest.php:56 src/Module/Group.php:42 -#: src/Module/Group.php:85 src/Module/Invite.php:42 src/Module/Invite.php:131 -#: src/Module/Notifications/Notification.php:75 -#: src/Module/Notifications/Notification.php:106 -#: src/Module/Profile/Common.php:56 src/Module/Profile/Contacts.php:56 -#: src/Module/Profile/Schedule.php:39 src/Module/Profile/Schedule.php:56 -#: src/Module/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:49 -#: src/Module/Settings/Account.php:409 src/Module/Settings/Delegation.php:42 -#: src/Module/Settings/Delegation.php:70 src/Module/Settings/Display.php:42 -#: src/Module/Settings/Display.php:120 -#: src/Module/Settings/Profile/Photo/Crop.php:166 -#: src/Module/Settings/Profile/Photo/Index.php:112 -#: src/Module/Settings/UserExport.php:58 src/Module/Settings/UserExport.php:92 -#: src/Module/Settings/UserExport.php:196 -#: src/Module/Settings/UserExport.php:216 -#: src/Module/Settings/UserExport.php:281 -msgid "Permission denied." -msgstr "Brak uprawnień." - -#: mod/editpost.php:45 mod/editpost.php:55 -msgid "Item not found" -msgstr "Nie znaleziono elementu" - -#: mod/editpost.php:64 -msgid "Edit post" -msgstr "Edytuj wpis" - -#: mod/editpost.php:91 mod/notes.php:56 src/Content/Text/HTML.php:882 -#: src/Module/Admin/Storage.php:142 src/Module/Filer/SaveTag.php:73 -msgid "Save" -msgstr "Zapisz" - -#: mod/editpost.php:92 mod/photos.php:1338 src/Content/Conversation.php:338 -#: src/Module/Contact/Poke.php:176 src/Object/Post.php:993 -msgid "Loading..." -msgstr "Wczytywanie..." - -#: mod/editpost.php:93 mod/message.php:198 mod/message.php:355 -#: mod/wallmessage.php:140 src/Content/Conversation.php:339 -msgid "Upload photo" -msgstr "Wyślij zdjęcie" - -#: mod/editpost.php:94 src/Content/Conversation.php:340 -msgid "upload photo" -msgstr "wyślij zdjęcie" - -#: mod/editpost.php:95 src/Content/Conversation.php:341 -msgid "Attach file" -msgstr "Załącz plik" - -#: mod/editpost.php:96 src/Content/Conversation.php:342 -msgid "attach file" -msgstr "załącz plik" - -#: mod/editpost.php:97 mod/message.php:199 mod/message.php:356 -#: mod/wallmessage.php:141 -msgid "Insert web link" -msgstr "Wstaw link" - -#: mod/editpost.php:98 -msgid "web link" -msgstr "odnośnik sieciowy" - -#: mod/editpost.php:99 -msgid "Insert video link" -msgstr "Wstaw link do filmu" - -#: mod/editpost.php:100 -msgid "video link" -msgstr "link do filmu" - -#: mod/editpost.php:101 -msgid "Insert audio link" -msgstr "Wstaw link do audio" - -#: mod/editpost.php:102 -msgid "audio link" -msgstr "link do audio" - -#: mod/editpost.php:103 src/Content/Conversation.php:352 -#: src/Module/Item/Compose.php:173 -msgid "Set your location" -msgstr "Ustaw swoją lokalizację" - -#: mod/editpost.php:104 src/Content/Conversation.php:353 -msgid "set location" -msgstr "wybierz lokalizację" - -#: mod/editpost.php:105 src/Content/Conversation.php:354 -msgid "Clear browser location" -msgstr "Wyczyść lokalizację przeglądarki" - -#: mod/editpost.php:106 src/Content/Conversation.php:355 -msgid "clear location" -msgstr "wyczyść lokalizację" - -#: mod/editpost.php:107 mod/message.php:200 mod/message.php:358 -#: mod/photos.php:1489 mod/wallmessage.php:142 -#: src/Content/Conversation.php:368 src/Content/Conversation.php:713 -#: src/Module/Item/Compose.php:177 src/Object/Post.php:538 -msgid "Please wait" -msgstr "Proszę czekać" - -#: mod/editpost.php:108 src/Content/Conversation.php:369 -msgid "Permission settings" -msgstr "Ustawienia uprawnień" - -#: mod/editpost.php:116 src/Core/ACL.php:326 -msgid "CC: email addresses" -msgstr "DW: adresy e-mail" - -#: mod/editpost.php:117 src/Content/Conversation.php:379 -msgid "Public post" -msgstr "Publiczny wpis" - -#: mod/editpost.php:120 src/Content/Conversation.php:357 -#: src/Module/Item/Compose.php:178 -msgid "Set title" -msgstr "Podaj tytuł" - -#: mod/editpost.php:122 src/Content/Conversation.php:359 -#: src/Module/Item/Compose.php:179 -msgid "Categories (comma-separated list)" -msgstr "Kategorie (lista słów oddzielonych przecinkiem)" - -#: mod/editpost.php:123 src/Core/ACL.php:327 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Przykład: bob@example.com, mary@example.com" - -#: mod/editpost.php:128 mod/events.php:513 mod/photos.php:1337 -#: mod/photos.php:1393 mod/photos.php:1467 src/Content/Conversation.php:383 -#: src/Module/Item/Compose.php:172 src/Object/Post.php:1003 -msgid "Preview" -msgstr "Podgląd" - -#: mod/editpost.php:130 mod/fbrowser.php:118 mod/fbrowser.php:145 -#: mod/follow.php:144 mod/photos.php:1004 mod/photos.php:1105 mod/tagrm.php:35 -#: mod/tagrm.php:127 mod/unfollow.php:97 src/Content/Conversation.php:386 -#: src/Module/Contact/Revoke.php:108 src/Module/RemoteFollow.php:127 -#: src/Module/Security/TwoFactor/SignOut.php:125 -msgid "Cancel" -msgstr "Anuluj" - -#: mod/editpost.php:134 src/Content/Conversation.php:343 -#: src/Module/Item/Compose.php:163 src/Object/Post.php:994 -msgid "Bold" -msgstr "Pogrubienie" - -#: mod/editpost.php:135 src/Content/Conversation.php:344 -#: src/Module/Item/Compose.php:164 src/Object/Post.php:995 -msgid "Italic" -msgstr "Kursywa" - -#: mod/editpost.php:136 src/Content/Conversation.php:345 -#: src/Module/Item/Compose.php:165 src/Object/Post.php:996 -msgid "Underline" -msgstr "Podkreślenie" - -#: mod/editpost.php:137 src/Content/Conversation.php:346 -#: src/Module/Item/Compose.php:166 src/Object/Post.php:997 -msgid "Quote" -msgstr "Cytat" - -#: mod/editpost.php:138 src/Content/Conversation.php:347 -#: src/Module/Item/Compose.php:167 src/Object/Post.php:998 -msgid "Code" -msgstr "Kod" - -#: mod/editpost.php:139 src/Content/Conversation.php:349 -#: src/Module/Item/Compose.php:169 src/Object/Post.php:1000 -msgid "Link" -msgstr "Odnośnik" - -#: mod/editpost.php:140 src/Content/Conversation.php:350 -#: src/Module/Item/Compose.php:170 src/Object/Post.php:1001 -msgid "Link or Media" -msgstr "Odnośnik lub Media" - -#: mod/editpost.php:143 src/Content/Conversation.php:393 -#: src/Content/Widget/VCard.php:113 src/Model/Profile.php:463 -#: src/Module/Admin/Logs/View.php:93 -msgid "Message" -msgstr "Wiadomość" - -#: mod/editpost.php:144 src/Content/Conversation.php:394 -#: src/Module/Settings/TwoFactor/Trusted.php:138 -msgid "Browser" -msgstr "Przeglądarka" - -#: mod/editpost.php:145 mod/events.php:518 mod/photos.php:939 -#: mod/photos.php:1291 src/Content/Conversation.php:370 -msgid "Permissions" -msgstr "Uprawnienia" - -#: mod/editpost.php:147 src/Content/Conversation.php:396 -msgid "Open Compose page" -msgstr "Otwórz stronę Redagowanie" - -#: mod/events.php:124 mod/events.php:126 -msgid "Event can not end before it has started." -msgstr "Wydarzenie nie może się zakończyć przed jego rozpoczęciem." - -#: mod/events.php:132 mod/events.php:134 -msgid "Event title and start time are required." -msgstr "Wymagany tytuł wydarzenia i czas rozpoczęcia." - -#: mod/events.php:376 -msgid "Create New Event" -msgstr "Stwórz nowe wydarzenie" - -#: mod/events.php:474 src/Module/Admin/Logs/View.php:97 -msgid "Event details" -msgstr "Szczegóły wydarzenia" - -#: mod/events.php:475 -msgid "Starting date and Title are required." -msgstr "Data rozpoczęcia i tytuł są wymagane." - -#: mod/events.php:476 mod/events.php:481 -msgid "Event Starts:" -msgstr "Rozpoczęcie wydarzenia:" - -#: mod/events.php:476 mod/events.php:506 -#: src/Module/Admin/Blocklist/Server/Add.php:104 -#: src/Module/Admin/Blocklist/Server/Add.php:106 -#: src/Module/Admin/Blocklist/Server/Index.php:68 -#: src/Module/Admin/Blocklist/Server/Index.php:69 -#: src/Module/Admin/Blocklist/Server/Index.php:96 -#: src/Module/Admin/Item/Delete.php:69 src/Module/Debug/Probe.php:59 -#: src/Module/Install.php:207 src/Module/Install.php:240 -#: src/Module/Install.php:245 src/Module/Install.php:264 -#: src/Module/Install.php:275 src/Module/Install.php:280 -#: src/Module/Install.php:286 src/Module/Install.php:291 -#: src/Module/Install.php:305 src/Module/Install.php:320 -#: src/Module/Install.php:347 src/Module/Register.php:148 -#: src/Module/Security/TwoFactor/Verify.php:101 -#: src/Module/Settings/TwoFactor/Index.php:141 -#: src/Module/Settings/TwoFactor/Verify.php:154 -msgid "Required" -msgstr "Wymagany" - -#: mod/events.php:489 mod/events.php:512 -msgid "Finish date/time is not known or not relevant" -msgstr "Data/czas zakończenia nie jest znana lub jest nieistotna" - -#: mod/events.php:491 mod/events.php:496 -msgid "Event Finishes:" -msgstr "Zakończenie wydarzenia:" - -#: mod/events.php:502 src/Module/Profile/Profile.php:172 -#: src/Module/Settings/Profile/Index.php:238 -msgid "Description:" -msgstr "Opis:" - -#: mod/events.php:504 src/Content/Widget/VCard.php:104 src/Model/Event.php:80 -#: src/Model/Event.php:107 src/Model/Event.php:465 src/Model/Event.php:915 -#: src/Model/Profile.php:371 src/Module/Contact/Profile.php:369 -#: src/Module/Directory.php:148 src/Module/Notifications/Introductions.php:185 -#: src/Module/Profile/Profile.php:194 -msgid "Location:" -msgstr "Lokalizacja:" - -#: mod/events.php:506 mod/events.php:508 -msgid "Title:" -msgstr "Tytuł:" - -#: mod/events.php:509 mod/events.php:510 -msgid "Share this event" -msgstr "Udostępnij te wydarzenie" - -#: mod/events.php:515 mod/message.php:201 mod/message.php:357 -#: mod/photos.php:921 mod/photos.php:1025 mod/photos.php:1295 -#: mod/photos.php:1336 mod/photos.php:1392 mod/photos.php:1466 -#: src/Module/Admin/Item/Source.php:65 src/Module/Contact/Advanced.php:132 -#: src/Module/Contact/Poke.php:177 src/Module/Contact/Profile.php:327 -#: src/Module/Debug/ActivityPubConversion.php:145 -#: 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/Delegation.php:148 src/Module/FriendSuggest.php:144 -#: src/Module/Install.php:252 src/Module/Install.php:294 -#: src/Module/Install.php:331 src/Module/Invite.php:178 -#: src/Module/Item/Compose.php:162 src/Module/Profile/Profile.php:247 -#: src/Module/Settings/Profile/Index.php:222 src/Object/Post.php:992 -#: view/theme/duepuntozero/config.php:69 view/theme/frio/config.php:160 -#: view/theme/quattro/config.php:71 view/theme/vier/config.php:119 -msgid "Submit" -msgstr "Potwierdź" - -#: mod/events.php:516 src/Module/Profile/Profile.php:248 -msgid "Basic" -msgstr "Podstawowy" - -#: mod/events.php:517 src/Module/Admin/Site.php:441 src/Module/Contact.php:474 -#: src/Module/Profile/Profile.php:249 -msgid "Advanced" -msgstr "Zaawansowany" - -#: mod/events.php:534 -msgid "Failed to remove event" -msgstr "Nie udało się usunąć wydarzenia" - -#: mod/fbrowser.php:61 src/Content/Nav.php:194 src/Module/BaseProfile.php:64 -#: view/theme/frio/theme.php:232 -msgid "Photos" -msgstr "Zdjęcia" - -#: mod/fbrowser.php:120 mod/fbrowser.php:147 -#: src/Module/Settings/Profile/Photo/Index.php:129 -msgid "Upload" -msgstr "Wyślij" - -#: mod/fbrowser.php:142 -msgid "Files" -msgstr "Pliki" - -#: mod/follow.php:74 mod/unfollow.php:96 src/Module/RemoteFollow.php:126 -msgid "Submit Request" -msgstr "Wyślij zgłoszenie" - -#: mod/follow.php:84 -msgid "You already added this contact." -msgstr "Już dodałeś ten kontakt." - -#: mod/follow.php:100 -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." - -#: mod/follow.php:108 -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." - -#: mod/follow.php:113 -msgid "OStatus support is disabled. Contact can't be added." -msgstr "Obsługa OStatus jest wyłączona. Kontakt nie może zostać dodany." - -#: mod/follow.php:138 src/Content/Item.php:459 src/Content/Widget.php:80 -#: src/Model/Contact.php:1104 src/Model/Contact.php:1116 -#: view/theme/vier/theme.php:181 -msgid "Connect/Follow" -msgstr "Połącz/Obserwuj" - -#: mod/follow.php:139 src/Module/RemoteFollow.php:125 -msgid "Please answer the following:" -msgstr "Proszę odpowiedzieć na następujące pytania:" - -#: mod/follow.php:140 mod/unfollow.php:94 -msgid "Your Identity Address:" -msgstr "Twój adres tożsamości:" - -#: mod/follow.php:141 mod/unfollow.php:100 -#: src/Module/Admin/Blocklist/Contact.php:116 -#: src/Module/Contact/Profile.php:365 -#: src/Module/Notifications/Introductions.php:127 -#: src/Module/Notifications/Introductions.php:196 -msgid "Profile URL" -msgstr "Adres URL profilu" - -#: mod/follow.php:142 src/Module/Contact/Profile.php:377 -#: src/Module/Notifications/Introductions.php:189 -#: src/Module/Profile/Profile.php:207 -msgid "Tags:" -msgstr "Znaczniki:" - -#: mod/follow.php:153 -#, php-format -msgid "%s knows you" -msgstr "%s zna cię" - -#: mod/follow.php:154 -msgid "Add a personal note:" -msgstr "Dodaj osobistą notkę:" - -#: mod/follow.php:163 mod/unfollow.php:109 src/Module/BaseProfile.php:59 -#: src/Module/Contact.php:444 -msgid "Status Messages and Posts" -msgstr "Stan wiadomości i wpisów" - -#: mod/follow.php:191 -msgid "The contact could not be added." -msgstr "Nie można dodać kontaktu." - -#: mod/item.php:131 mod/item.php:135 +#: mod/item.php:129 mod/item.php:133 msgid "Unable to locate original post." msgstr "Nie można zlokalizować oryginalnej wiadomości." -#: mod/item.php:337 mod/item.php:342 +#: mod/item.php:179 mod/item.php:184 mod/item.php:855 mod/message.php:69 +#: mod/message.php:114 mod/notes.php:44 mod/photos.php:157 mod/photos.php:674 +#: src/Model/Event.php:522 src/Module/Attach.php:55 src/Module/BaseApi.php:94 +#: src/Module/BaseNotifications.php:98 src/Module/BaseSettings.php:52 +#: src/Module/Calendar/Event/API.php:88 src/Module/Calendar/Event/Form.php:84 +#: src/Module/Calendar/Export.php:62 src/Module/Calendar/Show.php:81 +#: src/Module/Contact/Advanced.php:60 src/Module/Contact/Follow.php:86 +#: 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/Delegation.php:118 src/Module/FollowConfirm.php:38 +#: src/Module/FriendSuggest.php:57 src/Module/Group.php:40 +#: src/Module/Group.php:83 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:55 +#: src/Module/Profile/Contacts.php:55 src/Module/Profile/Photos.php:92 +#: src/Module/Profile/Schedule.php:39 src/Module/Profile/Schedule.php:56 +#: src/Module/Profile/UnkMail.php:69 src/Module/Profile/UnkMail.php:121 +#: src/Module/Profile/UnkMail.php:132 src/Module/Register.php:77 +#: src/Module/Register.php:90 src/Module/Register.php:206 +#: src/Module/Register.php:245 src/Module/Search/Directory.php:37 +#: src/Module/Settings/Account.php:50 src/Module/Settings/Account.php:407 +#: src/Module/Settings/Delegation.php:41 src/Module/Settings/Delegation.php:69 +#: src/Module/Settings/Display.php:43 src/Module/Settings/Display.php:123 +#: src/Module/Settings/Profile/Photo/Crop.php:165 +#: src/Module/Settings/Profile/Photo/Index.php:111 +#: src/Module/Settings/RemoveMe.php:117 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/Import.php:84 +#: src/Module/User/Import.php:91 +msgid "Permission denied." +msgstr "Brak uprawnień." + +#: mod/item.php:330 mod/item.php:335 msgid "Empty post discarded." msgstr "Pusty wpis został odrzucony." -#: mod/item.php:692 +#: mod/item.php:673 msgid "Post updated." msgstr "Wpis zaktualizowany." -#: mod/item.php:702 mod/item.php:707 +#: mod/item.php:683 mod/item.php:688 msgid "Item wasn't stored." msgstr "Element nie został zapisany. " -#: mod/item.php:718 +#: mod/item.php:699 msgid "Item couldn't be fetched." msgstr "Nie można pobrać elementu." -#: mod/item.php:858 src/Module/Admin/Themes/Details.php:39 +#: mod/item.php:831 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/Debug/ItemBody.php:57 src/Module/Item/Feed.php:80 msgid "Item not found." msgstr "Element nie znaleziony." @@ -654,7 +198,7 @@ msgid "" "your email for further instructions." msgstr "Wpisz swój adres email i wyślij, aby zresetować hasło. Później sprawdź swojego emaila w celu uzyskania dalszych instrukcji." -#: mod/lostpass.php:130 src/Module/Security/Login.php:147 +#: mod/lostpass.php:130 src/Module/Security/Login.php:161 msgid "Nickname or Email: " msgstr "Pseudonim lub e-mail: " @@ -662,7 +206,7 @@ msgstr "Pseudonim lub e-mail: " msgid "Reset" msgstr "Zresetuj" -#: mod/lostpass.php:146 src/Module/Security/Login.php:159 +#: mod/lostpass.php:146 src/Module/Security/Login.php:173 msgid "Password Reset" msgstr "Zresetuj hasło" @@ -722,127 +266,150 @@ msgstr "\n\t\t\tDane logowania są następujące:\n\n\t\t\tLokalizacja witryny:\ msgid "Your password has been changed at %s" msgstr "Twoje hasło zostało zmienione na %s" -#: mod/match.php:62 -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." - -#: mod/match.php:93 src/Module/BaseSearch.php:119 -msgid "No matches" -msgstr "Brak wyników" - -#: mod/match.php:98 -msgid "Profile Match" -msgstr "Dopasowanie profilu" - -#: mod/message.php:46 mod/message.php:126 src/Content/Nav.php:288 +#: mod/message.php:46 mod/message.php:129 src/Content/Nav.php:285 msgid "New Message" msgstr "Nowa wiadomość" -#: mod/message.php:83 mod/wallmessage.php:70 +#: mod/message.php:83 src/Module/Profile/UnkMail.php:100 msgid "No recipient selected." msgstr "Nie wybrano odbiorcy." -#: mod/message.php:87 +#: mod/message.php:88 msgid "Unable to locate contact information." msgstr "Nie można znaleźć informacji kontaktowych." -#: mod/message.php:90 mod/wallmessage.php:76 +#: mod/message.php:92 src/Module/Profile/UnkMail.php:106 msgid "Message could not be sent." msgstr "Nie udało się wysłać wiadomości." -#: mod/message.php:93 mod/wallmessage.php:79 +#: mod/message.php:96 src/Module/Profile/UnkMail.php:109 msgid "Message collection failure." msgstr "Błąd zbierania komunikatów." -#: mod/message.php:120 src/Module/Notifications/Introductions.php:133 -#: src/Module/Notifications/Introductions.php:168 -#: src/Module/Notifications/Notification.php:84 +#: mod/message.php:123 src/Module/Notifications/Introductions.php:135 +#: src/Module/Notifications/Introductions.php:170 +#: src/Module/Notifications/Notification.php:85 msgid "Discard" msgstr "Odrzuć" -#: mod/message.php:133 src/Content/Nav.php:285 view/theme/frio/theme.php:239 +#: mod/message.php:136 src/Content/Nav.php:282 view/theme/frio/theme.php:247 msgid "Messages" msgstr "Wiadomości" -#: mod/message.php:146 +#: mod/message.php:149 msgid "Conversation not found." msgstr "Nie znaleziono rozmowy." -#: mod/message.php:151 +#: mod/message.php:154 msgid "Message was not deleted." msgstr "Wiadomość nie została usunięta." -#: mod/message.php:166 +#: mod/message.php:169 msgid "Conversation was not removed." msgstr "Rozmowa nie została usunięta." -#: mod/message.php:180 mod/message.php:286 mod/wallmessage.php:124 +#: mod/message.php:183 mod/message.php:289 src/Module/Profile/UnkMail.php:146 msgid "Please enter a link URL:" msgstr "Proszę wpisać adres URL:" -#: mod/message.php:189 mod/wallmessage.php:129 +#: mod/message.php:192 src/Module/Profile/UnkMail.php:152 msgid "Send Private Message" msgstr "Wyślij prywatną wiadomość" -#: mod/message.php:190 mod/message.php:347 mod/wallmessage.php:131 +#: mod/message.php:193 mod/message.php:349 msgid "To:" msgstr "Do:" -#: mod/message.php:191 mod/message.php:348 mod/wallmessage.php:132 +#: mod/message.php:194 mod/message.php:350 msgid "Subject:" msgstr "Temat:" -#: mod/message.php:195 mod/message.php:351 mod/wallmessage.php:138 -#: src/Module/Invite.php:171 +#: mod/message.php:198 mod/message.php:353 src/Module/Invite.php:171 msgid "Your message:" msgstr "Twoja wiadomość:" -#: mod/message.php:222 +#: mod/message.php:201 mod/message.php:357 src/Content/Conversation.php:342 +#: src/Module/Post/Edit.php:128 +msgid "Upload photo" +msgstr "Wyślij zdjęcie" + +#: mod/message.php:202 mod/message.php:358 src/Module/Post/Edit.php:132 +#: src/Module/Profile/UnkMail.php:154 +msgid "Insert web link" +msgstr "Wstaw link" + +#: mod/message.php:203 mod/message.php:360 mod/photos.php:1290 +#: src/Content/Conversation.php:371 src/Content/Conversation.php:717 +#: src/Module/Item/Compose.php:204 src/Module/Post/Edit.php:142 +#: src/Module/Profile/UnkMail.php:155 src/Object/Post.php:537 +msgid "Please wait" +msgstr "Proszę czekać" + +#: mod/message.php:204 mod/message.php:359 mod/photos.php:707 +#: mod/photos.php:824 mod/photos.php:1096 mod/photos.php:1137 +#: mod/photos.php:1193 mod/photos.php:1267 +#: src/Module/Calendar/Event/Form.php:250 src/Module/Contact/Advanced.php:132 +#: src/Module/Contact/Profile.php:327 +#: 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/Delegation.php:147 src/Module/FriendSuggest.php:145 +#: src/Module/Install.php:252 src/Module/Install.php:294 +#: src/Module/Install.php:331 src/Module/Invite.php:178 +#: src/Module/Item/Compose.php:189 src/Module/Moderation/Item/Source.php:79 +#: src/Module/Profile/Profile.php:239 src/Module/Profile/UnkMail.php:156 +#: src/Module/Settings/Profile/Index.php:231 src/Object/Post.php:986 +#: view/theme/duepuntozero/config.php:85 view/theme/frio/config.php:171 +#: view/theme/quattro/config.php:87 view/theme/vier/config.php:135 +msgid "Submit" +msgstr "Potwierdź" + +#: mod/message.php:225 msgid "No messages." msgstr "Brak wiadomości." -#: mod/message.php:278 +#: mod/message.php:281 msgid "Message not available." msgstr "Wiadomość nie jest dostępna." -#: mod/message.php:323 +#: mod/message.php:326 msgid "Delete message" msgstr "Usuń wiadomość" -#: mod/message.php:325 mod/message.php:457 +#: mod/message.php:328 mod/message.php:459 msgid "D, d M Y - g:i A" msgstr "D, d M Y - g:m A" -#: mod/message.php:340 mod/message.php:454 +#: mod/message.php:343 mod/message.php:456 msgid "Delete conversation" msgstr "Usuń rozmowę" -#: mod/message.php:342 +#: mod/message.php:345 msgid "" "No secure communications available. You may be able to " "respond from the sender's profile page." msgstr "Brak bezpiecznej komunikacji. Możesz odpowiedzieć na stronie profilu nadawcy." -#: mod/message.php:346 +#: mod/message.php:348 msgid "Send Reply" msgstr "Odpowiedz" -#: mod/message.php:428 +#: mod/message.php:430 #, php-format msgid "Unknown sender - %s" msgstr "Nieznany nadawca - %s" -#: mod/message.php:430 +#: mod/message.php:432 #, php-format msgid "You and %s" msgstr "Ty i %s" -#: mod/message.php:432 +#: mod/message.php:434 #, php-format msgid "%s and You" msgstr "%s i ty" -#: mod/message.php:460 +#: mod/message.php:462 #, php-format msgid "%d message" msgid_plural "%d messages" @@ -851,7 +418,7 @@ msgstr[1] "%d wiadomości" msgstr[2] "%d wiadomości" msgstr[3] "%d wiadomości" -#: mod/notes.php:51 src/Module/BaseProfile.php:106 +#: mod/notes.php:51 src/Module/BaseProfile.php:108 msgid "Personal Notes" msgstr "Notatki" @@ -859,779 +426,312 @@ msgstr "Notatki" msgid "Personal notes are visible only by yourself." msgstr "Notatki osobiste są widziane tylko przez Ciebie." -#: mod/ostatus_subscribe.php:38 -msgid "Subscribing to contacts" -msgstr "Subskrybowanie kontaktów" +#: mod/notes.php:56 src/Content/Text/HTML.php:882 +#: src/Module/Admin/Storage.php:142 src/Module/Filer/SaveTag.php:74 +#: src/Module/Post/Edit.php:126 +msgid "Save" +msgstr "Zapisz" -#: mod/ostatus_subscribe.php:48 -msgid "No contact provided." -msgstr "Brak kontaktu." +#: mod/photos.php:66 mod/photos.php:137 mod/photos.php:582 +#: src/Model/Event.php:514 src/Model/Profile.php:234 +#: src/Module/Calendar/Export.php:67 src/Module/Calendar/Show.php:73 +#: src/Module/DFRN/Poll.php:43 src/Module/Feed.php:65 src/Module/HCard.php:51 +#: src/Module/Profile/Common.php:40 src/Module/Profile/Common.php:51 +#: src/Module/Profile/Contacts.php:39 src/Module/Profile/Contacts.php:49 +#: src/Module/Profile/Media.php:38 src/Module/Profile/Photos.php:83 +#: src/Module/Profile/RemoteFollow.php:71 src/Module/Profile/Status.php:58 +#: src/Module/Register.php:267 +msgid "User not found." +msgstr "Użytkownik nie znaleziony." -#: mod/ostatus_subscribe.php:54 -msgid "Couldn't fetch information for contact." -msgstr "Nie można pobrać informacji o kontakcie." - -#: mod/ostatus_subscribe.php:65 -msgid "Couldn't fetch friends for contact." -msgstr "Nie można pobrać znajomych do kontaktu." - -#: mod/ostatus_subscribe.php:71 mod/ostatus_subscribe.php:82 -msgid "Couldn't fetch following contacts." -msgstr "Nie udało się pobrać następujących kontaktów." - -#: mod/ostatus_subscribe.php:77 -msgid "Couldn't fetch remote profile." -msgstr "Nie można pobrać profilu zdalnego." - -#: mod/ostatus_subscribe.php:87 -msgid "Unsupported network" -msgstr "Sieć nieobsługiwana" - -#: mod/ostatus_subscribe.php:103 mod/repair_ostatus.php:51 -msgid "Done" -msgstr "Gotowe" - -#: mod/ostatus_subscribe.php:117 -msgid "success" -msgstr "powodzenie" - -#: mod/ostatus_subscribe.php:119 -msgid "failed" -msgstr "nie powiodło się" - -#: mod/ostatus_subscribe.php:122 -msgid "ignored" -msgstr "ignorowany(-a)" - -#: mod/ostatus_subscribe.php:127 mod/repair_ostatus.php:57 -msgid "Keep this window open until done." -msgstr "Pozostaw to okno otwarte, dopóki nie będzie gotowe." - -#: mod/photos.php:108 src/Module/BaseProfile.php:67 +#: mod/photos.php:105 src/Module/BaseProfile.php:68 +#: src/Module/Profile/Photos.php:407 msgid "Photo Albums" msgstr "Albumy zdjęć" -#: mod/photos.php:109 mod/photos.php:1584 +#: mod/photos.php:106 src/Module/Profile/Photos.php:408 +#: src/Module/Profile/Photos.php:423 msgid "Recent Photos" msgstr "Ostatnio dodane zdjęcia" -#: mod/photos.php:111 mod/photos.php:1073 mod/photos.php:1586 +#: mod/photos.php:108 mod/photos.php:872 src/Module/Profile/Photos.php:410 +#: src/Module/Profile/Photos.php:425 msgid "Upload New Photos" msgstr "Wyślij nowe zdjęcie" -#: mod/photos.php:129 src/Module/BaseSettings.php:35 +#: mod/photos.php:126 src/Module/BaseSettings.php:74 +#: src/Module/Profile/Photos.php:391 msgid "everybody" msgstr "wszyscy" -#: mod/photos.php:167 +#: mod/photos.php:164 msgid "Contact information unavailable" msgstr "Informacje o kontakcie są niedostępne" -#: mod/photos.php:196 +#: mod/photos.php:193 msgid "Album not found." msgstr "Nie znaleziono albumu." -#: mod/photos.php:250 +#: mod/photos.php:247 msgid "Album successfully deleted" msgstr "Album został pomyślnie usunięty" -#: mod/photos.php:252 +#: mod/photos.php:249 msgid "Album was empty." msgstr "Album był pusty." -#: mod/photos.php:284 +#: mod/photos.php:281 msgid "Failed to delete the photo." msgstr "Błąd usunięcia zdjęcia." -#: mod/photos.php:553 +#: mod/photos.php:549 msgid "a photo" msgstr "zdjęcie" -#: mod/photos.php:553 +#: mod/photos.php:549 #, php-format msgid "%1$s was tagged in %2$s by %3$s" msgstr "%1$szostał oznaczony znacznikiem %2$s przez %3$s" -#: mod/photos.php:636 mod/photos.php:639 mod/photos.php:666 -#: mod/wall_upload.php:201 src/Module/Settings/Profile/Photo/Index.php:60 -#, php-format -msgid "Image exceeds size limit of %s" -msgstr "Obraz przekracza limit rozmiaru wynoszący %s" +#: mod/photos.php:586 src/Module/Conversation/Community.php:187 +#: src/Module/Directory.php:48 src/Module/Profile/Photos.php:315 +#: src/Module/Search/Index.php:64 +msgid "Public access denied." +msgstr "Odmowa dostępu publicznego." -#: mod/photos.php:642 -msgid "Image upload didn't complete, please try again" -msgstr "Przesyłanie zdjęć nie zostało zakończone, spróbuj ponownie" - -#: mod/photos.php:645 -msgid "Image file is missing" -msgstr "Brak pliku obrazu" - -#: mod/photos.php:650 -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" - -#: mod/photos.php:674 -msgid "Image file is empty." -msgstr "Plik obrazka jest pusty." - -#: mod/photos.php:689 mod/wall_upload.php:163 -#: src/Module/Settings/Profile/Photo/Index.php:69 -msgid "Unable to process image." -msgstr "Przetwarzanie obrazu nie powiodło się." - -#: mod/photos.php:715 mod/wall_upload.php:226 -#: src/Module/Settings/Profile/Photo/Index.php:96 -msgid "Image upload failed." -msgstr "Przesyłanie obrazu nie powiodło się." - -#: mod/photos.php:807 +#: mod/photos.php:591 msgid "No photos selected" msgstr "Nie zaznaczono zdjęć" -#: mod/photos.php:876 -msgid "Access to this item is restricted." -msgstr "Dostęp do tego obiektu jest ograniczony." +#: mod/photos.php:723 +#, php-format +msgid "The maximum accepted image size is %s" +msgstr "" -#: mod/photos.php:931 +#: mod/photos.php:730 msgid "Upload Photos" msgstr "Prześlij zdjęcia" -#: mod/photos.php:935 mod/photos.php:1021 +#: mod/photos.php:734 mod/photos.php:820 msgid "New album name: " msgstr "Nazwa nowego albumu: " -#: mod/photos.php:936 +#: mod/photos.php:735 msgid "or select existing album:" msgstr "lub wybierz istniejący album:" -#: mod/photos.php:937 +#: mod/photos.php:736 msgid "Do not show a status post for this upload" msgstr "Nie pokazuj stanu wpisów dla tego wysłania" -#: mod/photos.php:1002 +#: mod/photos.php:738 mod/photos.php:1092 src/Content/Conversation.php:373 +#: src/Module/Calendar/Event/Form.php:253 src/Module/Post/Edit.php:179 +msgid "Permissions" +msgstr "Uprawnienia" + +#: mod/photos.php:801 msgid "Do you really want to delete this photo album and all its photos?" msgstr "Czy na pewno chcesz usunąć ten album i wszystkie zdjęcia z tego albumu?" -#: mod/photos.php:1003 mod/photos.php:1026 +#: mod/photos.php:802 mod/photos.php:825 msgid "Delete Album" msgstr "Usuń album" -#: mod/photos.php:1030 +#: mod/photos.php:803 mod/photos.php:904 src/Content/Conversation.php:389 +#: 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:164 +#: src/Module/Post/Tag/Remove.php:109 src/Module/Profile/RemoteFollow.php:134 +#: src/Module/Security/TwoFactor/SignOut.php:125 +msgid "Cancel" +msgstr "Anuluj" + +#: mod/photos.php:829 msgid "Edit Album" msgstr "Edytuj album" -#: mod/photos.php:1031 +#: mod/photos.php:830 msgid "Drop Album" msgstr "Upuść Album" -#: mod/photos.php:1035 +#: mod/photos.php:834 msgid "Show Newest First" msgstr "Pokaż najpierw najnowsze" -#: mod/photos.php:1037 +#: mod/photos.php:836 msgid "Show Oldest First" msgstr "Pokaż najpierw najstarsze" -#: mod/photos.php:1058 mod/photos.php:1569 +#: mod/photos.php:857 src/Module/Profile/Photos.php:378 msgid "View Photo" msgstr "Zobacz zdjęcie" -#: mod/photos.php:1091 +#: mod/photos.php:890 msgid "Permission denied. Access to this item may be restricted." msgstr "Odmowa dostępu. Dostęp do tych danych może być ograniczony." -#: mod/photos.php:1093 +#: mod/photos.php:892 msgid "Photo not available" msgstr "Zdjęcie niedostępne" -#: mod/photos.php:1103 +#: mod/photos.php:902 msgid "Do you really want to delete this photo?" msgstr "Czy na pewno chcesz usunąć to zdjęcie ?" -#: mod/photos.php:1104 mod/photos.php:1296 +#: mod/photos.php:903 mod/photos.php:1097 msgid "Delete Photo" msgstr "Usuń zdjęcie" -#: mod/photos.php:1196 +#: mod/photos.php:995 msgid "View photo" msgstr "Zobacz zdjęcie" -#: mod/photos.php:1198 +#: mod/photos.php:997 msgid "Edit photo" msgstr "Edytuj zdjęcie" -#: mod/photos.php:1199 +#: mod/photos.php:998 msgid "Delete photo" msgstr "Usuń zdjęcie" -#: mod/photos.php:1200 +#: mod/photos.php:999 msgid "Use as profile photo" msgstr "Ustaw jako zdjęcie profilowe" -#: mod/photos.php:1207 +#: mod/photos.php:1006 msgid "Private Photo" msgstr "Prywatne zdjęcie" -#: mod/photos.php:1213 +#: mod/photos.php:1012 msgid "View Full Size" msgstr "Zobacz w pełnym rozmiarze" -#: mod/photos.php:1264 +#: mod/photos.php:1065 msgid "Tags: " msgstr "Znaczniki: " -#: mod/photos.php:1267 +#: mod/photos.php:1068 msgid "[Select tags to remove]" msgstr "[Wybierz znaczniki do usunięcia]" -#: mod/photos.php:1282 +#: mod/photos.php:1083 msgid "New album name" msgstr "Nazwa nowego albumu" -#: mod/photos.php:1283 +#: mod/photos.php:1084 msgid "Caption" msgstr "Zawartość" -#: mod/photos.php:1284 +#: mod/photos.php:1085 msgid "Add a Tag" msgstr "Dodaj znacznik" -#: mod/photos.php:1284 +#: mod/photos.php:1085 msgid "" "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" msgstr "Przykładowo: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -#: mod/photos.php:1285 +#: mod/photos.php:1086 msgid "Do not rotate" msgstr "Nie obracaj" -#: mod/photos.php:1286 +#: mod/photos.php:1087 msgid "Rotate CW (right)" msgstr "Obróć zgodnie z kierunkiem wskazówek zegara (w prawo)" -#: mod/photos.php:1287 +#: mod/photos.php:1088 msgid "Rotate CCW (left)" msgstr "Obróć w przeciwnym kierunku do ruchu wskazówek zegara (w lewo)" -#: mod/photos.php:1333 mod/photos.php:1389 mod/photos.php:1463 -#: src/Module/Contact.php:544 src/Module/Item/Compose.php:160 -#: src/Object/Post.php:989 +#: mod/photos.php:1134 mod/photos.php:1190 mod/photos.php:1264 +#: src/Module/Contact.php:547 src/Module/Item/Compose.php:188 +#: src/Object/Post.php:983 msgid "This is you" msgstr "To jesteś Ty" -#: mod/photos.php:1335 mod/photos.php:1391 mod/photos.php:1465 -#: src/Object/Post.php:532 src/Object/Post.php:991 +#: mod/photos.php:1136 mod/photos.php:1192 mod/photos.php:1266 +#: src/Object/Post.php:531 src/Object/Post.php:985 msgid "Comment" msgstr "Komentarz" -#: mod/photos.php:1424 src/Content/Conversation.php:629 -#: src/Object/Post.php:256 +#: mod/photos.php:1138 mod/photos.php:1194 mod/photos.php:1268 +#: src/Content/Conversation.php:386 src/Module/Calendar/Event/Form.php:248 +#: src/Module/Item/Compose.php:199 src/Module/Post/Edit.php:162 +#: src/Object/Post.php:997 +msgid "Preview" +msgstr "Podgląd" + +#: mod/photos.php:1139 src/Content/Conversation.php:341 +#: src/Module/Post/Edit.php:127 src/Object/Post.php:987 +msgid "Loading..." +msgstr "Wczytywanie..." + +#: mod/photos.php:1225 src/Content/Conversation.php:633 +#: src/Object/Post.php:255 msgid "Select" msgstr "Wybierz" -#: mod/photos.php:1425 mod/settings.php:350 src/Content/Conversation.php:630 -#: src/Module/Admin/Users/Active.php:139 -#: src/Module/Admin/Users/Blocked.php:140 src/Module/Admin/Users/Index.php:153 +#: mod/photos.php:1226 src/Content/Conversation.php:634 +#: 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:242 msgid "Delete" msgstr "Usuń" -#: mod/photos.php:1486 src/Object/Post.php:379 +#: mod/photos.php:1287 src/Object/Post.php:378 msgid "Like" msgstr "Lubię" -#: mod/photos.php:1487 src/Object/Post.php:379 +#: mod/photos.php:1288 src/Object/Post.php:378 msgid "I like this (toggle)" msgstr "Lubię to (zmień)" -#: mod/photos.php:1488 src/Object/Post.php:380 +#: mod/photos.php:1289 src/Object/Post.php:379 msgid "Dislike" msgstr "Nie lubię" -#: mod/photos.php:1490 src/Object/Post.php:380 +#: mod/photos.php:1291 src/Object/Post.php:379 msgid "I don't like this (toggle)" msgstr "Nie lubię tego (zmień)" -#: mod/photos.php:1512 +#: mod/photos.php:1313 msgid "Map" msgstr "Mapa" -#: mod/photos.php:1575 -msgid "View Album" -msgstr "Zobacz album" - -#: mod/redir.php:51 mod/redir.php:104 -msgid "Bad Request." -msgstr "Błędne zapytanie." - -#: mod/redir.php:57 mod/redir.php:131 src/Module/Contact/Advanced.php:70 -#: src/Module/Contact/Advanced.php:109 src/Module/Contact/Contacts.php:55 -#: src/Module/Contact/Conversations.php:78 -#: src/Module/Contact/Conversations.php:83 -#: src/Module/Contact/Conversations.php:88 src/Module/Contact/Media.php:43 -#: src/Module/Contact/Posts.php:72 src/Module/Contact/Posts.php:77 -#: src/Module/Contact/Posts.php:82 src/Module/Contact/Profile.php:141 -#: src/Module/Contact/Profile.php:146 src/Module/Contact/Profile.php:151 -#: src/Module/FriendSuggest.php:70 src/Module/FriendSuggest.php:108 -#: src/Module/Group.php:99 src/Module/Group.php:108 -msgid "Contact not found." -msgstr "Nie znaleziono kontaktu." - -#: mod/removeme.php:65 src/Navigation/Notifications/Repository/Notify.php:483 -msgid "[Friendica System Notify]" -msgstr "[Powiadomienie Systemu Friendica]" - -#: mod/removeme.php:65 -msgid "User deleted their account" -msgstr "Użytkownik usunął swoje konto" - -#: mod/removeme.php:66 -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." - -#: mod/removeme.php:67 -#, php-format -msgid "The user id is %d" -msgstr "Identyfikatorem użytkownika jest %d" - -#: mod/removeme.php:101 mod/removeme.php:104 -msgid "Remove My Account" -msgstr "Usuń moje konto" - -#: mod/removeme.php:102 -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ąć." - -#: mod/removeme.php:103 -msgid "Please enter your password for verification:" -msgstr "Wprowadź hasło w celu weryfikacji:" - -#: mod/repair_ostatus.php:36 -msgid "Resubscribing to OStatus contacts" -msgstr "Ponowne subskrybowanie kontaktów OStatus" - -#: mod/repair_ostatus.php:46 src/Module/Debug/ActivityPubConversion.php:134 -#: src/Module/Debug/Babel.php:293 src/Module/Security/TwoFactor/Verify.php:98 -msgid "Error" -msgid_plural "Errors" -msgstr[0] "Błąd" -msgstr[1] "Błędów" -msgstr[2] "Błędy" -msgstr[3] "Błędów" - -#: mod/settings.php:122 -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ę." - -#: mod/settings.php:175 -msgid "Connected Apps" -msgstr "Powiązane aplikacje" - -#: mod/settings.php:176 src/Module/Admin/Blocklist/Contact.php:106 -#: src/Module/Admin/Users/Active.php:129 -#: src/Module/Admin/Users/Blocked.php:130 src/Module/Admin/Users/Create.php:71 -#: src/Module/Admin/Users/Deleted.php:88 src/Module/Admin/Users/Index.php:142 -#: src/Module/Admin/Users/Index.php:162 src/Module/Admin/Users/Pending.php:104 -#: src/Module/Contact/Advanced.php:134 -msgid "Name" -msgstr "Nazwa" - -#: mod/settings.php:177 src/Content/Nav.php:214 -msgid "Home Page" -msgstr "Strona startowa" - -#: mod/settings.php:178 src/Module/Admin/Queue.php:78 -msgid "Created" -msgstr "Utwórz" - -#: mod/settings.php:179 -msgid "Remove authorization" -msgstr "Odwołaj upoważnienie" - -#: mod/settings.php:205 mod/settings.php:237 mod/settings.php:268 -#: mod/settings.php:352 src/Module/Admin/Addons/Index.php:69 -#: src/Module/Admin/Features.php:87 src/Module/Admin/Logs/Settings.php:81 -#: src/Module/Admin/Site.php:436 src/Module/Admin/Themes/Index.php:113 -#: src/Module/Admin/Tos.php:83 src/Module/Settings/Account.php:559 -#: src/Module/Settings/Delegation.php:170 src/Module/Settings/Display.php:193 -msgid "Save Settings" -msgstr "Zapisz ustawienia" - -#: mod/settings.php:213 -msgid "Addon Settings" -msgstr "Ustawienia dodatków" - -#: mod/settings.php:214 -msgid "No Addon settings configured" -msgstr "Brak skonfigurowanych ustawień dodatków" - -#: mod/settings.php:235 -msgid "Additional Features" -msgstr "Dodatkowe funkcje" - -#: mod/settings.php:273 -msgid "Diaspora (Socialhome, Hubzilla)" -msgstr "Diaspora (Socialhome, Hubzilla)" - -#: mod/settings.php:273 mod/settings.php:274 -msgid "enabled" -msgstr "włączone" - -#: mod/settings.php:273 mod/settings.php:274 -msgid "disabled" -msgstr "wyłączone" - -#: mod/settings.php:273 mod/settings.php:274 -#, php-format -msgid "Built-in support for %s connectivity is %s" -msgstr "Wbudowane wsparcie dla połączenia z %s jest %s" - -#: mod/settings.php:274 -msgid "OStatus (GNU Social)" -msgstr "OStatus (GNU Social)" - -#: mod/settings.php:300 -msgid "Email access is disabled on this site." -msgstr "Dostęp do e-maila jest wyłączony na tej stronie." - -#: mod/settings.php:305 mod/settings.php:350 -msgid "None" -msgstr "Brak" - -#: mod/settings.php:311 src/Module/BaseSettings.php:78 -msgid "Social Networks" -msgstr "Portale społecznościowe" - -#: mod/settings.php:316 -msgid "General Social Media Settings" -msgstr "Ogólne ustawienia mediów społecznościowych" - -#: mod/settings.php:319 -msgid "Followed content scope" -msgstr "Obserwowany zakres treści" - -#: mod/settings.php:321 -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." - -#: mod/settings.php:323 -msgid "Only conversations my follows started" -msgstr "Tylko rozmowy, które rozpoczęli moi obserwowani" - -#: mod/settings.php:324 -msgid "Conversations my follows started or commented on (default)" -msgstr "Rozmowy, które rozpoczęli moi obserwowani, lub które komentowali (domyślnie)" - -#: mod/settings.php:325 -msgid "Any conversation my follows interacted with, including likes" -msgstr "Wszelkie rozmowy, z którymi wchodziłem w interakcję, w tym polubienia" - -#: mod/settings.php:328 -msgid "Enable Content Warning" -msgstr "Włącz ostrzeżenia o treści" - -#: mod/settings.php:328 -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." -msgstr "Użytkownicy w sieciach takich jak Mastodon lub Pleroma mogą ustawić pole ostrzeżenia o treści, które domyślnie zwija ich posty. Umożliwia to automatyczne zwijanie zamiast ustawiania ostrzeżenia o treści jako tytułu wpisu. Nie wpływa na żadne inne skonfigurowane filtrowanie treści." - -#: mod/settings.php:329 -msgid "Enable intelligent shortening" -msgstr "Włącz inteligentne skracanie" - -#: mod/settings.php:329 -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." - -#: mod/settings.php:330 -msgid "Enable simple text shortening" -msgstr "Włącz proste skracanie tekstu" - -#: mod/settings.php:330 -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." - -#: mod/settings.php:331 -msgid "Attach the link title" -msgstr "Dołącz tytuł linku" - -#: mod/settings.php:331 -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." - -#: mod/settings.php:332 -msgid "Your legacy ActivityPub/GNU Social account" -msgstr "Twoje stare konto ActivityPub/GNU Social" - -#: mod/settings.php:332 -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." - -#: mod/settings.php:335 -msgid "Repair OStatus subscriptions" -msgstr "Napraw subskrypcje OStatus" - -#: mod/settings.php:339 -msgid "Email/Mailbox Setup" -msgstr "Ustawienia emaila/skrzynki mailowej" - -#: mod/settings.php:340 -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ą." - -#: mod/settings.php:341 -msgid "Last successful email check:" -msgstr "Ostatni sprawdzony e-mail:" - -#: mod/settings.php:343 -msgid "IMAP server name:" -msgstr "Nazwa serwera IMAP:" - -#: mod/settings.php:344 -msgid "IMAP port:" -msgstr "Port IMAP:" - -#: mod/settings.php:345 -msgid "Security:" -msgstr "Bezpieczeństwo:" - -#: mod/settings.php:346 -msgid "Email login name:" -msgstr "Nazwa logowania e-mail:" - -#: mod/settings.php:347 -msgid "Email password:" -msgstr "Hasło e-mail:" - -#: mod/settings.php:348 -msgid "Reply-to address:" -msgstr "Adres zwrotny:" - -#: mod/settings.php:349 -msgid "Send public posts to all email contacts:" -msgstr "Wyślij publiczny wpis do wszystkich kontaktów e-mail:" - -#: mod/settings.php:350 -msgid "Action after import:" -msgstr "Akcja po zaimportowaniu:" - -#: mod/settings.php:350 src/Content/Nav.php:282 -msgid "Mark as seen" -msgstr "Oznacz jako przeczytane" - -#: mod/settings.php:350 -msgid "Move to folder" -msgstr "Przenieś do katalogu" - -#: mod/settings.php:351 -msgid "Move to folder:" -msgstr "Przenieś do katalogu:" - -#: mod/suggest.php:44 -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." - -#: mod/suggest.php:55 src/Content/Widget.php:83 view/theme/vier/theme.php:184 -msgid "Friend Suggestions" -msgstr "Osoby, które możesz znać" - -#: mod/tagger.php:78 src/Content/Item.php:354 src/Model/Item.php:2727 -msgid "photo" -msgstr "zdjęcie" - -#: mod/tagger.php:78 src/Content/Item.php:348 src/Content/Item.php:358 -msgid "status" -msgstr "stan" - -#: mod/tagger.php:111 src/Content/Item.php:368 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s zaznaczył %2$s'go %3$s przy użyciu %4$s" - -#: mod/tagrm.php:113 -msgid "Remove Item Tag" -msgstr "Usuń pozycję znacznika" - -#: mod/tagrm.php:115 -msgid "Select a tag to remove: " -msgstr "Wybierz znacznik do usunięcia: " - -#: mod/tagrm.php:126 src/Module/Settings/Delegation.php:179 -#: src/Module/Settings/TwoFactor/Trusted.php:142 -msgid "Remove" -msgstr "Usuń" - -#: mod/uimport.php:46 -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." - -#: mod/uimport.php:55 src/Module/Register.php:99 -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." - -#: mod/uimport.php:62 src/Module/Register.php:173 -msgid "Import" -msgstr "Import" - -#: mod/uimport.php:64 -msgid "Move account" -msgstr "Przenieś konto" - -#: mod/uimport.php:65 -msgid "You can import an account from another Friendica server." -msgstr "Możesz zaimportować konto z innego serwera Friendica." - -#: mod/uimport.php:66 -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ś." - -#: mod/uimport.php:67 -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" - -#: mod/uimport.php:68 -msgid "Account file" -msgstr "Pliki konta" - -#: mod/uimport.php:68 -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\"" - -#: mod/unfollow.php:65 mod/unfollow.php:134 -msgid "You aren't following this contact." -msgstr "Nie obserwujesz tego kontaktu." - -#: mod/unfollow.php:71 -msgid "Unfollowing is currently not supported by your network." -msgstr "Brak obserwowania nie jest obecnie obsługiwany przez twoją sieć." - -#: mod/unfollow.php:92 -msgid "Disconnect/Unfollow" -msgstr "Rozłącz/Nie obserwuj" - -#: mod/unfollow.php:143 -msgid "Contact was successfully unfollowed" -msgstr "Kontakt pomyślnie przestał być obserwowany" - -#: mod/unfollow.php:146 -msgid "Unable to unfollow this contact, please contact your administrator" -msgstr "Nie można przestać obserwować tego kontaktu, skontaktuj się z administratorem" - -#: mod/wall_attach.php:40 mod/wall_attach.php:46 mod/wall_attach.php:75 -#: mod/wall_upload.php:54 mod/wall_upload.php:63 mod/wall_upload.php:97 -#: mod/wall_upload.php:148 mod/wall_upload.php:150 -msgid "Invalid request." -msgstr "Nieprawidłowe żądanie." - -#: mod/wall_attach.php:93 -msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" -msgstr "Przepraszam, Twój przesyłany plik jest większy niż pozwala konfiguracja PHP" - -#: mod/wall_attach.php:93 -msgid "Or - did you try to upload an empty file?" -msgstr "Lub - czy próbowałeś przesłać pusty plik?" - -#: mod/wall_attach.php:104 -#, php-format -msgid "File exceeds size limit of %s" -msgstr "Plik przekracza limit rozmiaru wynoszący %s" - -#: mod/wall_attach.php:119 -msgid "File upload failed." -msgstr "Przesyłanie pliku nie powiodło się." - -#: mod/wall_upload.php:218 src/Model/Photo.php:1087 -msgid "Wall Photos" -msgstr "Tablica zdjęć" - -#: mod/wallmessage.php:62 mod/wallmessage.php:116 -#, php-format -msgid "Number of daily wall messages for %s exceeded. Message failed." -msgstr "Dzienny limit wiadomości na tablicy %s został przekroczony. Wiadomość została odrzucona." - -#: mod/wallmessage.php:73 -msgid "Unable to check your home location." -msgstr "Nie można sprawdzić twojej lokalizacji." - -#: mod/wallmessage.php:97 mod/wallmessage.php:104 -msgid "No recipient." -msgstr "Brak odbiorcy." - -#: mod/wallmessage.php:130 -#, php-format -msgid "" -"If you wish for %s to respond, please check that the privacy settings on " -"your site allow private mail from unknown senders." -msgstr "Jeśli chcesz %s odpowiedzieć, sprawdź, czy ustawienia prywatności w Twojej witrynie zezwalają na prywatne wiadomości od nieznanych nadawców." - -#: src/App.php:473 +#: src/App.php:492 msgid "No system theme config value set." msgstr "Nie ustawiono wartości konfiguracyjnej zestawu tematycznego." -#: src/App.php:594 +#: src/App.php:613 msgid "Apologies but the website is unavailable at the moment." msgstr "Przepraszamy, ale strona jest w tej chwili niedostępna." -#: src/App/Page.php:276 +#: src/App/Page.php:246 msgid "Delete this item?" msgstr "Usunąć ten element?" -#: src/App/Page.php:277 +#: src/App/Page.php:247 msgid "" "Block this author? They won't be able to follow you nor see your public " "posts, and you won't be able to see their posts and their notifications." msgstr "Zablokować tego autora? Nie będą mogli Cię obserwować ani widzieć Twoich publicznych wpisów, a Ty nie będziesz widzieć ich wpisów i powiadomień." -#: src/App/Page.php:347 +#: src/App/Page.php:317 msgid "toggle mobile" msgstr "przełącz na mobilny" -#: src/App/Router.php:282 +#: src/App/Router.php:309 #, php-format msgid "Method not allowed for this module. Allowed method(s): %s" msgstr "Metoda niedozwolona dla tego modułu. Dozwolona metoda(y): %s" -#: src/App/Router.php:284 src/Module/HTTPException/PageNotFound.php:49 +#: src/App/Router.php:311 src/Module/HTTPException/PageNotFound.php:49 msgid "Page not found." msgstr "Strona nie znaleziona." -#: src/App/Router.php:312 +#: src/App/Router.php:323 msgid "You must be logged in to use addons. " msgstr "Musisz być zalogowany(-a), aby korzystać z dodatków. " @@ -1646,18 +746,18 @@ msgid "All contacts" msgstr "Wszystkie kontakty" #: src/BaseModule.php:424 src/Content/Widget.php:235 src/Core/ACL.php:194 -#: src/Module/Contact.php:367 src/Module/PermissionTooltip.php:122 +#: src/Module/Contact.php:370 src/Module/PermissionTooltip.php:122 #: src/Module/PermissionTooltip.php:144 msgid "Followers" msgstr "Zwolenników" #: src/BaseModule.php:429 src/Content/Widget.php:236 -#: src/Module/Contact.php:368 +#: src/Module/Contact.php:371 msgid "Following" msgstr "Kolejny" #: src/BaseModule.php:434 src/Content/Widget.php:237 -#: src/Module/Contact.php:369 +#: src/Module/Contact.php:372 msgid "Mutual friends" msgstr "Wspólni znajomi" @@ -1687,73 +787,73 @@ msgid "The contact entries have been archived" msgstr "Wpisy kontaktów zostały zarchiwizowane" #: src/Console/GlobalCommunityBlock.php:96 -#: src/Module/Admin/Blocklist/Contact.php:49 +#: src/Module/Moderation/Blocklist/Contact.php:65 #, php-format msgid "Could not find any contact entry for this URL (%s)" msgstr "Nie można znaleźć żadnego kontaktu dla tego adresu URL (%s)" #: src/Console/GlobalCommunityBlock.php:101 -#: src/Module/Admin/Blocklist/Contact.php:66 +#: src/Module/Moderation/Blocklist/Contact.php:82 msgid "The contact has been blocked from the node" msgstr "Kontakt został zablokowany w węźle" -#: src/Console/MergeContacts.php:74 +#: src/Console/MergeContacts.php:75 #, php-format msgid "%d %s, %d duplicates." msgstr "%d %s, %d duplikaty." -#: src/Console/MergeContacts.php:77 +#: src/Console/MergeContacts.php:78 #, php-format msgid "uri-id is empty for contact %s." msgstr "uri-id jest pusty dla kontaktu%s." -#: src/Console/MergeContacts.php:90 +#: src/Console/MergeContacts.php:91 #, php-format -msgid "No valid first countact found for uri-id %d." -msgstr "Nie znaleziono prawidłowego pierwszego kontaktu dla identyfikatora uri-id %d." +msgid "No valid first contact found for uri-id %d." +msgstr "" -#: src/Console/MergeContacts.php:101 +#: src/Console/MergeContacts.php:102 #, php-format msgid "Wrong duplicate found for uri-id %d in %d (url: %s != %s)." msgstr "Odnaleziono nieprawidłowy duplikat dla identyfikatora uri %d w %d (url: %s != %s)." -#: src/Console/MergeContacts.php:105 +#: src/Console/MergeContacts.php:106 #, php-format msgid "Wrong duplicate found for uri-id %d in %d (nurl: %s != %s)." msgstr "Odnaleziono nieprawidłowy duplikat dla identyfikatora uri %d w %d (nurl: %s != %s)." -#: src/Console/MergeContacts.php:141 +#: src/Console/MergeContacts.php:142 #, php-format msgid "Deletion of id %d failed" msgstr "Nie udało się usunąć identyfikatora %d" -#: src/Console/MergeContacts.php:143 +#: src/Console/MergeContacts.php:144 #, php-format msgid "Deletion of id %d was successful" msgstr "Usunięcie identyfikatora %d powiodło się" -#: src/Console/MergeContacts.php:149 +#: src/Console/MergeContacts.php:150 #, php-format msgid "Updating \"%s\" in \"%s\" from %d to %d" msgstr "Aktualizowanie \"%s\" w \"%s\" z %d do %d" -#: src/Console/MergeContacts.php:151 +#: src/Console/MergeContacts.php:152 msgid " - found" msgstr "- znaleziono" -#: src/Console/MergeContacts.php:158 +#: src/Console/MergeContacts.php:159 msgid " - failed" msgstr " - błąd" -#: src/Console/MergeContacts.php:160 +#: src/Console/MergeContacts.php:161 msgid " - success" msgstr " - powodzenie" -#: src/Console/MergeContacts.php:164 +#: src/Console/MergeContacts.php:165 msgid " - deleted" msgstr " - usunięto" -#: src/Console/MergeContacts.php:167 +#: src/Console/MergeContacts.php:168 msgid " - done" msgstr " - zrobiono" @@ -1811,15 +911,26 @@ msgstr "Wszystkie oczekujące aktualizacje wpisów są gotowe." msgid "Enter user nickname: " msgstr "Wpisz nazwę użytkownika:" +#: src/Console/User.php:182 src/Model/User.php:662 +#: 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 +msgid "User not found" +msgstr "Użytkownik nie znaleziony" + #: src/Console/User.php:202 msgid "Enter new password: " msgstr "Wprowadź nowe hasło: " -#: src/Console/User.php:210 src/Module/Settings/Account.php:74 +#: src/Console/User.php:210 src/Module/Security/PasswordTooLong.php:69 +#: src/Module/Settings/Account.php:75 msgid "Password update failed. Please try again." msgstr "Aktualizacja hasła nie powiodła się. Proszę spróbować ponownie." -#: src/Console/User.php:213 src/Module/Settings/Account.php:77 +#: src/Console/User.php:213 src/Module/Security/PasswordTooLong.php:72 +#: src/Module/Settings/Account.php:78 msgid "Password changed." msgstr "Hasło zostało zmienione." @@ -1908,10 +1019,14 @@ msgstr "OStatus" msgid "RSS/Atom" msgstr "RSS/Atom" -#: src/Content/ContactSelector.php:129 src/Module/Admin/Users/Active.php:129 -#: src/Module/Admin/Users/Blocked.php:130 src/Module/Admin/Users/Create.php:73 -#: src/Module/Admin/Users/Deleted.php:88 src/Module/Admin/Users/Index.php:142 -#: src/Module/Admin/Users/Index.php:162 src/Module/Admin/Users/Pending.php:104 +#: 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:73 +#: 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 msgid "Email" msgstr "E-mail" @@ -1972,241 +1087,358 @@ msgstr "pnut" msgid "%s (via %s)" msgstr "%s (przez %s)" -#: src/Content/Conversation.php:207 +#: src/Content/Conversation.php:210 #, php-format msgid "%s likes this." msgstr "%s lubi to." -#: src/Content/Conversation.php:210 +#: src/Content/Conversation.php:213 #, php-format msgid "%s doesn't like this." msgstr "%s nie lubi tego." -#: src/Content/Conversation.php:213 +#: src/Content/Conversation.php:216 #, php-format msgid "%s attends." msgstr "%s uczestniczy." -#: src/Content/Conversation.php:216 +#: src/Content/Conversation.php:219 #, php-format msgid "%s doesn't attend." msgstr "%s nie uczestniczy." -#: src/Content/Conversation.php:219 +#: src/Content/Conversation.php:222 #, php-format msgid "%s attends maybe." msgstr "%s może bierze udział." -#: src/Content/Conversation.php:222 src/Content/Conversation.php:260 -#: src/Content/Conversation.php:873 +#: src/Content/Conversation.php:225 src/Content/Conversation.php:263 +#: src/Content/Conversation.php:877 #, php-format msgid "%s reshared this." msgstr "%sudostępnił to. " -#: src/Content/Conversation.php:228 +#: src/Content/Conversation.php:231 msgid "and" msgstr "i" -#: src/Content/Conversation.php:231 +#: src/Content/Conversation.php:234 #, php-format msgid "and %d other people" msgstr "i %d inni ludzie" -#: src/Content/Conversation.php:239 +#: src/Content/Conversation.php:242 #, php-format msgid "%2$d people like this" msgstr "%2$d ludzi lubi to" -#: src/Content/Conversation.php:240 +#: src/Content/Conversation.php:243 #, php-format msgid "%s like this." msgstr "%s lubię to." -#: src/Content/Conversation.php:243 +#: src/Content/Conversation.php:246 #, php-format msgid "%2$d people don't like this" msgstr "%2$d ludzi nie lubi tego" -#: src/Content/Conversation.php:244 +#: src/Content/Conversation.php:247 #, php-format msgid "%s don't like this." msgstr "%s nie lubię tego." -#: src/Content/Conversation.php:247 +#: src/Content/Conversation.php:250 #, php-format msgid "%2$d people attend" msgstr "%2$dosoby uczestniczą" -#: src/Content/Conversation.php:248 +#: src/Content/Conversation.php:251 #, php-format msgid "%s attend." msgstr "%s uczestniczy." -#: src/Content/Conversation.php:251 +#: src/Content/Conversation.php:254 #, php-format msgid "%2$d people don't attend" msgstr "%2$dludzie nie uczestniczą" -#: src/Content/Conversation.php:252 +#: src/Content/Conversation.php:255 #, php-format msgid "%s don't attend." msgstr "%s nie uczestniczy." -#: src/Content/Conversation.php:255 +#: src/Content/Conversation.php:258 #, php-format msgid "%2$d people attend maybe" msgstr "Możliwe, że %2$d osoby będą uczestniczyć" -#: src/Content/Conversation.php:256 +#: src/Content/Conversation.php:259 #, php-format msgid "%s attend maybe." msgstr "%sbyć może uczestniczyć." -#: src/Content/Conversation.php:259 +#: src/Content/Conversation.php:262 #, php-format msgid "%2$d people reshared this" msgstr "%2$d użytkowników udostępniło to dalej" -#: src/Content/Conversation.php:307 +#: src/Content/Conversation.php:310 msgid "Visible to everybody" msgstr "Widoczne dla wszystkich" -#: src/Content/Conversation.php:308 src/Module/Item/Compose.php:171 -#: src/Object/Post.php:1002 +#: src/Content/Conversation.php:311 src/Module/Item/Compose.php:198 +#: src/Object/Post.php:996 msgid "Please enter a image/video/audio/webpage URL:" msgstr "Wprowadź adres URL obrazu/wideo/audio/strony:" -#: src/Content/Conversation.php:309 +#: src/Content/Conversation.php:312 msgid "Tag term:" msgstr "Termin tagu:" -#: src/Content/Conversation.php:310 src/Module/Filer/SaveTag.php:72 +#: src/Content/Conversation.php:313 src/Module/Filer/SaveTag.php:73 msgid "Save to Folder:" msgstr "Zapisz w katalogu:" -#: src/Content/Conversation.php:311 +#: src/Content/Conversation.php:314 msgid "Where are you right now?" msgstr "Gdzie teraz jesteś?" -#: src/Content/Conversation.php:312 +#: src/Content/Conversation.php:315 msgid "Delete item(s)?" msgstr "Usunąć pozycję (pozycje)?" -#: src/Content/Conversation.php:324 src/Module/Item/Compose.php:143 +#: src/Content/Conversation.php:327 src/Module/Item/Compose.php:175 msgid "Created at" msgstr "Utworzono" -#: src/Content/Conversation.php:334 +#: src/Content/Conversation.php:337 msgid "New Post" msgstr "Nowy wpis" -#: src/Content/Conversation.php:337 +#: src/Content/Conversation.php:340 msgid "Share" msgstr "Podziel się" -#: src/Content/Conversation.php:348 src/Module/Item/Compose.php:168 -#: src/Object/Post.php:999 +#: src/Content/Conversation.php:343 src/Module/Post/Edit.php:129 +msgid "upload photo" +msgstr "wyślij zdjęcie" + +#: src/Content/Conversation.php:344 src/Module/Post/Edit.php:130 +msgid "Attach file" +msgstr "Załącz plik" + +#: src/Content/Conversation.php:345 src/Module/Post/Edit.php:131 +msgid "attach file" +msgstr "załącz plik" + +#: src/Content/Conversation.php:346 src/Module/Item/Compose.php:190 +#: src/Module/Post/Edit.php:168 src/Object/Post.php:988 +msgid "Bold" +msgstr "Pogrubienie" + +#: src/Content/Conversation.php:347 src/Module/Item/Compose.php:191 +#: src/Module/Post/Edit.php:169 src/Object/Post.php:989 +msgid "Italic" +msgstr "Kursywa" + +#: src/Content/Conversation.php:348 src/Module/Item/Compose.php:192 +#: src/Module/Post/Edit.php:170 src/Object/Post.php:990 +msgid "Underline" +msgstr "Podkreślenie" + +#: src/Content/Conversation.php:349 src/Module/Item/Compose.php:193 +#: src/Module/Post/Edit.php:171 src/Object/Post.php:991 +msgid "Quote" +msgstr "Cytat" + +#: src/Content/Conversation.php:350 src/Module/Item/Compose.php:194 +#: src/Module/Post/Edit.php:172 src/Object/Post.php:992 +msgid "Code" +msgstr "Kod" + +#: src/Content/Conversation.php:351 src/Module/Item/Compose.php:195 +#: src/Object/Post.php:993 msgid "Image" msgstr "Obraz" -#: src/Content/Conversation.php:351 +#: src/Content/Conversation.php:352 src/Module/Item/Compose.php:196 +#: src/Module/Post/Edit.php:173 src/Object/Post.php:994 +msgid "Link" +msgstr "Odnośnik" + +#: src/Content/Conversation.php:353 src/Module/Item/Compose.php:197 +#: src/Module/Post/Edit.php:174 src/Object/Post.php:995 +msgid "Link or Media" +msgstr "Odnośnik lub Media" + +#: src/Content/Conversation.php:354 msgid "Video" msgstr "Filmy" -#: src/Content/Conversation.php:364 src/Module/Item/Compose.php:184 +#: src/Content/Conversation.php:355 src/Module/Item/Compose.php:200 +#: src/Module/Post/Edit.php:138 +msgid "Set your location" +msgstr "Ustaw swoją lokalizację" + +#: src/Content/Conversation.php:356 src/Module/Post/Edit.php:139 +msgid "set location" +msgstr "wybierz lokalizację" + +#: src/Content/Conversation.php:357 src/Module/Post/Edit.php:140 +msgid "Clear browser location" +msgstr "Wyczyść lokalizację przeglądarki" + +#: src/Content/Conversation.php:358 src/Module/Post/Edit.php:141 +msgid "clear location" +msgstr "wyczyść lokalizację" + +#: src/Content/Conversation.php:360 src/Module/Item/Compose.php:205 +#: src/Module/Post/Edit.php:154 +msgid "Set title" +msgstr "Podaj tytuł" + +#: src/Content/Conversation.php:362 src/Module/Item/Compose.php:206 +#: src/Module/Post/Edit.php:156 +msgid "Categories (comma-separated list)" +msgstr "Kategorie (lista słów oddzielonych przecinkiem)" + +#: src/Content/Conversation.php:367 src/Module/Item/Compose.php:222 msgid "Scheduled at" msgstr "Zaplanowane na" -#: src/Content/Conversation.php:657 src/Object/Post.php:244 +#: src/Content/Conversation.php:372 src/Module/Post/Edit.php:143 +msgid "Permission settings" +msgstr "Ustawienia uprawnień" + +#: src/Content/Conversation.php:382 src/Module/Post/Edit.php:152 +msgid "Public post" +msgstr "Wpis publiczny" + +#: src/Content/Conversation.php:396 src/Content/Widget/VCard.php:113 +#: src/Model/Profile.php:469 src/Module/Admin/Logs/View.php:93 +#: src/Module/Post/Edit.php:177 +msgid "Message" +msgstr "Wiadomość" + +#: src/Content/Conversation.php:397 src/Module/Post/Edit.php:178 +#: src/Module/Settings/TwoFactor/Trusted.php:140 +msgid "Browser" +msgstr "Przeglądarka" + +#: src/Content/Conversation.php:399 src/Module/Post/Edit.php:181 +msgid "Open Compose page" +msgstr "Otwórz stronę Redagowanie" + +#: src/Content/Conversation.php:661 src/Object/Post.php:243 msgid "Pinned item" msgstr "Przypięty element" -#: src/Content/Conversation.php:673 src/Object/Post.php:486 -#: src/Object/Post.php:487 +#: src/Content/Conversation.php:677 src/Object/Post.php:485 +#: src/Object/Post.php:486 #, php-format msgid "View %s's profile @ %s" msgstr "Pokaż profil %s @ %s" -#: src/Content/Conversation.php:686 src/Object/Post.php:474 +#: src/Content/Conversation.php:690 src/Object/Post.php:473 msgid "Categories:" msgstr "Kategorie:" -#: src/Content/Conversation.php:687 src/Object/Post.php:475 +#: src/Content/Conversation.php:691 src/Object/Post.php:474 msgid "Filed under:" msgstr "Umieszczono w:" -#: src/Content/Conversation.php:695 src/Object/Post.php:500 +#: src/Content/Conversation.php:699 src/Object/Post.php:499 #, php-format msgid "%s from %s" msgstr "%s od %s" -#: src/Content/Conversation.php:711 +#: src/Content/Conversation.php:715 msgid "View in context" msgstr "Zobacz w kontekście" -#: src/Content/Conversation.php:776 +#: src/Content/Conversation.php:780 msgid "remove" msgstr "usuń" -#: src/Content/Conversation.php:780 +#: src/Content/Conversation.php:784 msgid "Delete Selected Items" msgstr "Usuń zaznaczone elementy" -#: src/Content/Conversation.php:845 src/Content/Conversation.php:848 -#: src/Content/Conversation.php:851 src/Content/Conversation.php:854 +#: src/Content/Conversation.php:849 src/Content/Conversation.php:852 +#: src/Content/Conversation.php:855 src/Content/Conversation.php:858 #, php-format msgid "You had been addressed (%s)." msgstr "Zostałeś zaadresowany (%s)." -#: src/Content/Conversation.php:857 +#: src/Content/Conversation.php:861 #, php-format msgid "You are following %s." msgstr "Zacząłeś obserwować %s." -#: src/Content/Conversation.php:860 -msgid "Tagged" -msgstr "Oznaczone" +#: src/Content/Conversation.php:864 +msgid "You subscribed to one or more tags in this post." +msgstr "Zasubskrybowałeś jeden lub więcej znaczników w tym wpisie." -#: src/Content/Conversation.php:875 +#: src/Content/Conversation.php:879 msgid "Reshared" msgstr "Udostępnione" -#: src/Content/Conversation.php:875 +#: src/Content/Conversation.php:879 #, php-format msgid "Reshared by %s <%s>" msgstr "Udostępnione przez %s <%s>" -#: src/Content/Conversation.php:878 +#: src/Content/Conversation.php:882 #, php-format msgid "%s is participating in this thread." msgstr "%s bierze udział w tym wątku." -#: src/Content/Conversation.php:881 -msgid "Stored" -msgstr "Przechowywane" +#: src/Content/Conversation.php:885 +msgid "Stored for general reasons" +msgstr "Przechowywane z powodów ogólnych" -#: src/Content/Conversation.php:884 -msgid "Global" -msgstr "Globalne" +#: src/Content/Conversation.php:888 +msgid "Global post" +msgstr "Wpis globalny" -#: src/Content/Conversation.php:887 -msgid "Relayed" -msgstr "Przekazany" +#: src/Content/Conversation.php:891 +msgid "Sent via an relay server" +msgstr "Wysłane przez serwer przekazujący" -#: src/Content/Conversation.php:887 +#: src/Content/Conversation.php:891 #, php-format -msgid "Relayed by %s <%s>" -msgstr "Przekazany przez %s <%s>" +msgid "Sent via the relay server %s <%s>" +msgstr "" -#: src/Content/Conversation.php:890 +#: src/Content/Conversation.php:894 msgid "Fetched" msgstr "Pobrane" -#: src/Content/Conversation.php:890 +#: src/Content/Conversation.php:894 #, php-format msgid "Fetched because of %s <%s>" msgstr "Pobrano ponieważ %s <%s>" +#: src/Content/Conversation.php:897 +msgid "Stored because of a child post to complete this thread." +msgstr "Zapisano z powodu wpisu podrzędnego, który miał zakończyć ten wątek." + +#: src/Content/Conversation.php:900 +msgid "Local delivery" +msgstr "Dostarczone lokalnie" + +#: src/Content/Conversation.php:903 +msgid "Stored because of your activity (like, comment, star, ...)" +msgstr "Przechowywane z powodu Twojej aktywności (polubienie, komentarz, gwiazdka, ...)" + +#: src/Content/Conversation.php:906 +msgid "Distributed" +msgstr "Rozpowszechniane" + +#: src/Content/Conversation.php:909 +msgid "Pushed to us" +msgstr "" + #: src/Content/Feature.php:96 msgid "General Features" msgstr "Funkcje ogólne" @@ -2305,7 +1537,21 @@ msgstr "Wyświetl datę członkostwa" msgid "Display membership date in profile" msgstr "Wyświetla datę członkostwa w profilu" -#: src/Content/ForumManager.php:151 src/Content/Nav.php:241 +#: src/Content/Feature.php:126 +msgid "Advanced Calendar Settings" +msgstr "Zaawansowane ustawienia kalendarza" + +#: src/Content/Feature.php:127 +msgid "Allow anonymous access to your calendar" +msgstr "Zezwól na anonimowy dostęp do swojego kalendarza" + +#: src/Content/Feature.php:127 +msgid "" +"Allows anonymous visitors to consult your calendar and your public events. " +"Contact birthday events are private to you." +msgstr "Pozwala anonimowym odwiedzającym przeglądać Twój kalendarz i wydarzenia publiczne. Kontaktowe wydarzenia urodzinowe są prywatne dla Ciebie." + +#: src/Content/ForumManager.php:151 src/Content/Nav.php:242 #: src/Content/Text/HTML.php:903 src/Content/Widget.php:524 msgid "Forums" msgstr "Fora" @@ -2323,70 +1569,83 @@ msgstr "pokaż mniej" msgid "show more" msgstr "pokaż więcej" -#: src/Content/Item.php:306 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s zaczepił Cię %2$s" - -#: src/Content/Item.php:345 src/Model/Item.php:2725 +#: src/Content/Item.php:294 src/Model/Item.php:2925 msgid "event" msgstr "wydarzenie" -#: src/Content/Item.php:438 view/theme/frio/theme.php:260 +#: src/Content/Item.php:297 src/Content/Item.php:307 +#: src/Module/Post/Tag/Add.php:123 +msgid "status" +msgstr "stan" + +#: src/Content/Item.php:303 src/Model/Item.php:2927 +#: src/Module/Post/Tag/Add.php:123 +msgid "photo" +msgstr "zdjęcie" + +#: src/Content/Item.php:317 src/Module/Post/Tag/Add.php:141 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s zaznaczył %2$s'go %3$s przy użyciu %4$s" + +#: src/Content/Item.php:386 view/theme/frio/theme.php:268 msgid "Follow Thread" msgstr "Śledź wątek" -#: src/Content/Item.php:439 src/Model/Contact.php:1109 +#: src/Content/Item.php:387 src/Model/Contact.php:1213 msgid "View Status" msgstr "Zobacz status" -#: src/Content/Item.php:440 src/Content/Item.php:462 -#: src/Model/Contact.php:1043 src/Model/Contact.php:1101 -#: src/Model/Contact.php:1110 src/Module/Directory.php:158 -#: src/Module/Settings/Profile/Index.php:225 +#: src/Content/Item.php:388 src/Content/Item.php:406 +#: src/Model/Contact.php:1151 src/Model/Contact.php:1205 +#: src/Model/Contact.php:1214 src/Module/Directory.php:157 +#: src/Module/Settings/Profile/Index.php:234 msgid "View Profile" msgstr "Zobacz profil" -#: src/Content/Item.php:441 src/Model/Contact.php:1111 +#: src/Content/Item.php:389 src/Model/Contact.php:1215 msgid "View Photos" msgstr "Zobacz zdjęcia" -#: src/Content/Item.php:442 src/Model/Contact.php:1102 -#: src/Model/Contact.php:1112 +#: src/Content/Item.php:390 src/Model/Contact.php:1206 +#: src/Model/Contact.php:1216 msgid "Network Posts" msgstr "Wiadomości sieciowe" -#: src/Content/Item.php:443 src/Model/Contact.php:1103 -#: src/Model/Contact.php:1113 +#: src/Content/Item.php:391 src/Model/Contact.php:1207 +#: src/Model/Contact.php:1217 msgid "View Contact" msgstr "Pokaż kontakt" -#: src/Content/Item.php:444 src/Model/Contact.php:1114 +#: src/Content/Item.php:392 src/Model/Contact.php:1218 msgid "Send PM" msgstr "Wyślij prywatną wiadomość" -#: src/Content/Item.php:445 src/Module/Admin/Blocklist/Contact.php:100 -#: src/Module/Admin/Users/Active.php:140 src/Module/Admin/Users/Index.php:154 -#: src/Module/Contact.php:398 src/Module/Contact/Profile.php:348 -#: src/Module/Contact/Profile.php:449 +#: src/Content/Item.php:393 src/Module/Contact.php:401 +#: src/Module/Contact/Profile.php:348 src/Module/Contact/Profile.php:467 +#: src/Module/Moderation/Blocklist/Contact.php:116 +#: src/Module/Moderation/Users/Active.php:137 +#: src/Module/Moderation/Users/Index.php:152 msgid "Block" msgstr "Zablokuj" -#: src/Content/Item.php:446 src/Module/Contact.php:399 -#: src/Module/Contact/Profile.php:349 src/Module/Contact/Profile.php:457 -#: src/Module/Notifications/Introductions.php:132 -#: src/Module/Notifications/Introductions.php:204 -#: src/Module/Notifications/Notification.php:88 +#: src/Content/Item.php:394 src/Module/Contact.php:402 +#: src/Module/Contact/Profile.php:349 src/Module/Contact/Profile.php:475 +#: src/Module/Notifications/Introductions.php:134 +#: src/Module/Notifications/Introductions.php:206 +#: src/Module/Notifications/Notification.php:89 msgid "Ignore" msgstr "Ignoruj" -#: src/Content/Item.php:450 src/Object/Post.php:455 +#: src/Content/Item.php:398 src/Object/Post.php:454 msgid "Languages" msgstr "Języki" -#: src/Content/Item.php:454 src/Model/Contact.php:1115 -msgid "Poke" -msgstr "Zaczepka" +#: src/Content/Item.php:403 src/Content/Widget.php:80 +#: src/Model/Contact.php:1208 src/Model/Contact.php:1219 +#: src/Module/Contact/Follow.php:167 view/theme/vier/theme.php:196 +msgid "Connect/Follow" +msgstr "Połącz/Obserwuj" #: src/Content/Nav.php:90 msgid "Nothing new here" @@ -2404,244 +1663,279 @@ msgstr "Wyczyść powiadomienia" msgid "@name, !forum, #tags, content" msgstr "@imię, !forum, #znaczniki, treść" -#: src/Content/Nav.php:185 src/Module/Security/Login.php:144 +#: src/Content/Nav.php:186 src/Module/Security/Login.php:158 msgid "Logout" msgstr "Wyloguj" -#: src/Content/Nav.php:185 +#: src/Content/Nav.php:186 msgid "End this session" msgstr "Zakończ sesję" -#: src/Content/Nav.php:187 src/Module/Bookmarklet.php:44 -#: src/Module/Security/Login.php:145 +#: src/Content/Nav.php:188 src/Module/Bookmarklet.php:44 +#: src/Module/Security/Login.php:159 msgid "Login" msgstr "Zaloguj się" -#: src/Content/Nav.php:187 +#: src/Content/Nav.php:188 msgid "Sign in" msgstr "Zaloguj się" -#: src/Content/Nav.php:192 src/Module/BaseProfile.php:56 -#: src/Module/Contact.php:433 src/Module/Contact/Profile.php:380 -#: src/Module/Settings/TwoFactor/Index.php:120 view/theme/frio/theme.php:230 +#: src/Content/Nav.php:193 src/Module/BaseProfile.php:57 +#: src/Module/Contact.php:436 src/Module/Contact/Profile.php:380 +#: src/Module/Settings/TwoFactor/Index.php:119 view/theme/frio/theme.php:235 msgid "Status" msgstr "Stan" -#: src/Content/Nav.php:192 src/Content/Nav.php:275 -#: view/theme/frio/theme.php:230 +#: src/Content/Nav.php:193 src/Content/Nav.php:272 +#: view/theme/frio/theme.php:235 msgid "Your posts and conversations" msgstr "Twoje wpisy i rozmowy" -#: src/Content/Nav.php:193 src/Module/BaseProfile.php:48 -#: src/Module/BaseSettings.php:55 src/Module/Contact.php:457 -#: src/Module/Contact/Profile.php:382 src/Module/Profile/Profile.php:241 -#: src/Module/Welcome.php:57 view/theme/frio/theme.php:231 +#: src/Content/Nav.php:194 src/Module/BaseProfile.php:49 +#: src/Module/BaseSettings.php:100 src/Module/Contact.php:460 +#: src/Module/Contact/Profile.php:382 src/Module/Profile/Profile.php:233 +#: src/Module/Welcome.php:57 view/theme/frio/theme.php:236 msgid "Profile" msgstr "Profil" -#: src/Content/Nav.php:193 view/theme/frio/theme.php:231 +#: src/Content/Nav.php:194 view/theme/frio/theme.php:236 msgid "Your profile page" msgstr "Twoja strona profilu" -#: src/Content/Nav.php:194 view/theme/frio/theme.php:232 +#: src/Content/Nav.php:195 src/Module/BaseProfile.php:65 +#: src/Module/Media/Photo/Browser.php:74 view/theme/frio/theme.php:240 +msgid "Photos" +msgstr "Zdjęcia" + +#: src/Content/Nav.php:195 view/theme/frio/theme.php:240 msgid "Your photos" msgstr "Twoje zdjęcia" -#: src/Content/Nav.php:195 src/Module/BaseProfile.php:72 -#: src/Module/BaseProfile.php:75 src/Module/Contact.php:449 -#: view/theme/frio/theme.php:233 +#: src/Content/Nav.php:196 src/Module/BaseProfile.php:73 +#: src/Module/BaseProfile.php:76 src/Module/Contact.php:452 +#: view/theme/frio/theme.php:241 msgid "Media" msgstr "Media" -#: src/Content/Nav.php:195 view/theme/frio/theme.php:233 +#: src/Content/Nav.php:196 view/theme/frio/theme.php:241 msgid "Your postings with media" msgstr "Twoje wpisy z mediami" -#: src/Content/Nav.php:196 view/theme/frio/theme.php:234 -msgid "Your events" -msgstr "Twoje wydarzenia" +#: src/Content/Nav.php:197 src/Content/Nav.php:257 +#: 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:216 view/theme/frio/theme.php:242 +#: view/theme/frio/theme.php:246 +msgid "Calendar" +msgstr "Kalendarz" -#: src/Content/Nav.php:197 +#: src/Content/Nav.php:197 view/theme/frio/theme.php:242 +msgid "Your calendar" +msgstr "Twój kalendarz" + +#: src/Content/Nav.php:198 msgid "Personal notes" msgstr "Osobiste notatki" -#: src/Content/Nav.php:197 +#: src/Content/Nav.php:198 msgid "Your personal notes" msgstr "Twoje osobiste notatki" -#: src/Content/Nav.php:214 src/Content/Nav.php:275 +#: src/Content/Nav.php:215 src/Content/Nav.php:272 msgid "Home" msgstr "Strona domowa" -#: src/Content/Nav.php:218 src/Module/Register.php:168 -#: src/Module/Security/Login.php:105 +#: src/Content/Nav.php:215 src/Module/Settings/OAuth.php:74 +msgid "Home Page" +msgstr "Strona startowa" + +#: src/Content/Nav.php:219 src/Module/Register.php:168 +#: src/Module/Security/Login.php:124 msgid "Register" msgstr "Zarejestruj" -#: src/Content/Nav.php:218 +#: src/Content/Nav.php:219 msgid "Create an account" msgstr "Załóż konto" -#: src/Content/Nav.php:224 src/Module/Help.php:67 -#: src/Module/Settings/TwoFactor/AppSpecific.php:127 -#: src/Module/Settings/TwoFactor/Index.php:119 -#: src/Module/Settings/TwoFactor/Recovery.php:105 -#: src/Module/Settings/TwoFactor/Verify.php:145 view/theme/vier/theme.php:226 +#: src/Content/Nav.php:225 src/Module/Help.php:67 +#: src/Module/Settings/TwoFactor/AppSpecific.php:129 +#: src/Module/Settings/TwoFactor/Index.php:118 +#: src/Module/Settings/TwoFactor/Recovery.php:107 +#: src/Module/Settings/TwoFactor/Verify.php:146 view/theme/vier/theme.php:241 msgid "Help" msgstr "Pomoc" -#: src/Content/Nav.php:224 +#: src/Content/Nav.php:225 msgid "Help and documentation" msgstr "Pomoc i dokumentacja" -#: src/Content/Nav.php:228 +#: src/Content/Nav.php:229 msgid "Apps" msgstr "Aplikacje" -#: src/Content/Nav.php:228 +#: src/Content/Nav.php:229 msgid "Addon applications, utilities, games" msgstr "Wtyczki, aplikacje, narzędzia, gry" -#: src/Content/Nav.php:232 src/Content/Text/HTML.php:888 -#: src/Module/Admin/Logs/View.php:87 src/Module/Search/Index.php:112 +#: src/Content/Nav.php:233 src/Content/Text/HTML.php:888 +#: src/Module/Admin/Logs/View.php:87 src/Module/Search/Index.php:111 msgid "Search" msgstr "Szukaj" -#: src/Content/Nav.php:232 +#: src/Content/Nav.php:233 msgid "Search site content" msgstr "Przeszukaj zawartość strony" -#: src/Content/Nav.php:235 src/Content/Text/HTML.php:897 +#: src/Content/Nav.php:236 src/Content/Text/HTML.php:897 msgid "Full Text" msgstr "Pełny tekst" -#: src/Content/Nav.php:236 src/Content/Text/HTML.php:898 +#: src/Content/Nav.php:237 src/Content/Text/HTML.php:898 #: src/Content/Widget/TagCloud.php:68 msgid "Tags" msgstr "Znaczniki" -#: src/Content/Nav.php:237 src/Content/Nav.php:296 -#: src/Content/Text/HTML.php:899 src/Module/BaseProfile.php:125 -#: src/Module/BaseProfile.php:128 src/Module/Contact.php:370 -#: src/Module/Contact.php:464 view/theme/frio/theme.php:241 +#: src/Content/Nav.php:238 src/Content/Nav.php:293 +#: src/Content/Text/HTML.php:899 src/Module/BaseProfile.php:127 +#: src/Module/BaseProfile.php:130 src/Module/Contact.php:373 +#: src/Module/Contact.php:467 view/theme/frio/theme.php:249 msgid "Contacts" msgstr "Kontakty" -#: src/Content/Nav.php:256 +#: src/Content/Nav.php:253 msgid "Community" msgstr "Społeczność" -#: src/Content/Nav.php:256 +#: src/Content/Nav.php:253 msgid "Conversations on this and other servers" msgstr "Rozmowy na tym i innych serwerach" -#: src/Content/Nav.php:260 src/Module/BaseProfile.php:87 -#: src/Module/BaseProfile.php:98 view/theme/frio/theme.php:238 -msgid "Events and Calendar" -msgstr "Wydarzenia i kalendarz" - -#: src/Content/Nav.php:263 +#: src/Content/Nav.php:260 msgid "Directory" msgstr "Katalog" -#: src/Content/Nav.php:263 +#: src/Content/Nav.php:260 msgid "People directory" msgstr "Katalog osób" -#: src/Content/Nav.php:265 src/Module/BaseAdmin.php:88 +#: src/Content/Nav.php:262 src/Module/BaseAdmin.php:85 +#: src/Module/BaseModeration.php:108 msgid "Information" msgstr "Informacje" -#: src/Content/Nav.php:265 +#: src/Content/Nav.php:262 msgid "Information about this friendica instance" msgstr "Informacje o tej instancji friendica" -#: src/Content/Nav.php:268 src/Module/Admin/Tos.php:76 -#: src/Module/BaseAdmin.php:99 src/Module/Register.php:176 -#: src/Module/Tos.php:87 +#: src/Content/Nav.php:265 src/Module/Admin/Tos.php:78 +#: src/Module/BaseAdmin.php:95 src/Module/Register.php:176 +#: src/Module/Tos.php:98 msgid "Terms of Service" msgstr "Warunki usługi" -#: src/Content/Nav.php:268 +#: src/Content/Nav.php:265 msgid "Terms of Service of this Friendica instance" msgstr "Warunki świadczenia usług tej instancji Friendica" -#: src/Content/Nav.php:273 view/theme/frio/theme.php:237 +#: src/Content/Nav.php:270 view/theme/frio/theme.php:245 msgid "Network" msgstr "Sieć" -#: src/Content/Nav.php:273 view/theme/frio/theme.php:237 +#: src/Content/Nav.php:270 view/theme/frio/theme.php:245 msgid "Conversations from your friends" msgstr "Rozmowy Twoich przyjaciół" -#: src/Content/Nav.php:279 +#: src/Content/Nav.php:276 msgid "Introductions" msgstr "Zapoznanie" -#: src/Content/Nav.php:279 +#: src/Content/Nav.php:276 msgid "Friend Requests" msgstr "Prośba o przyjęcie do grona znajomych" -#: src/Content/Nav.php:280 src/Module/BaseNotifications.php:148 -#: src/Module/Notifications/Introductions.php:73 +#: src/Content/Nav.php:277 src/Module/BaseNotifications.php:149 +#: src/Module/Notifications/Introductions.php:75 msgid "Notifications" msgstr "Powiadomienia" -#: src/Content/Nav.php:281 +#: src/Content/Nav.php:278 msgid "See all notifications" msgstr "Zobacz wszystkie powiadomienia" -#: src/Content/Nav.php:282 +#: src/Content/Nav.php:279 src/Module/Settings/Connectors.php:242 +msgid "Mark as seen" +msgstr "Oznacz jako przeczytane" + +#: src/Content/Nav.php:279 msgid "Mark all system notifications as seen" msgstr "Oznacz wszystkie powiadomienia systemowe jako przeczytane" -#: src/Content/Nav.php:285 view/theme/frio/theme.php:239 +#: src/Content/Nav.php:282 view/theme/frio/theme.php:247 msgid "Private mail" msgstr "Prywatne maile" -#: src/Content/Nav.php:286 +#: src/Content/Nav.php:283 msgid "Inbox" msgstr "Odebrane" -#: src/Content/Nav.php:287 +#: src/Content/Nav.php:284 msgid "Outbox" msgstr "Wysłane" -#: src/Content/Nav.php:291 +#: src/Content/Nav.php:288 msgid "Accounts" msgstr "Konta" -#: src/Content/Nav.php:291 +#: src/Content/Nav.php:288 msgid "Manage other pages" msgstr "Zarządzaj innymi stronami" -#: src/Content/Nav.php:294 src/Module/Admin/Addons/Details.php:114 -#: src/Module/Admin/Themes/Details.php:93 src/Module/BaseSettings.php:122 -#: src/Module/Welcome.php:52 view/theme/frio/theme.php:240 +#: src/Content/Nav.php:291 src/Module/Admin/Addons/Details.php:114 +#: src/Module/Admin/Themes/Details.php:93 src/Module/BaseSettings.php:170 +#: src/Module/Welcome.php:52 view/theme/frio/theme.php:248 msgid "Settings" msgstr "Ustawienia" -#: src/Content/Nav.php:294 view/theme/frio/theme.php:240 +#: src/Content/Nav.php:291 view/theme/frio/theme.php:248 msgid "Account settings" msgstr "Ustawienia konta" -#: src/Content/Nav.php:296 view/theme/frio/theme.php:241 +#: src/Content/Nav.php:293 view/theme/frio/theme.php:249 msgid "Manage/edit friends and contacts" msgstr "Zarządzaj listą przyjaciół i kontaktami" -#: src/Content/Nav.php:301 src/Module/BaseAdmin.php:129 +#: src/Content/Nav.php:298 src/Module/BaseAdmin.php:119 msgid "Admin" msgstr "Administrator" -#: src/Content/Nav.php:301 +#: src/Content/Nav.php:298 msgid "Site setup and configuration" msgstr "Konfiguracja i ustawienia strony" -#: src/Content/Nav.php:304 +#: src/Content/Nav.php:299 src/Module/BaseModeration.php:127 +#: src/Module/Moderation/Blocklist/Contact.php:110 +#: src/Module/Moderation/Blocklist/Server/Add.php:119 +#: src/Module/Moderation/Blocklist/Server/Import.php:115 +#: src/Module/Moderation/Blocklist/Server/Index.php:92 +#: src/Module/Moderation/Item/Delete.php:61 +#: src/Module/Moderation/Summary.php:76 +#: 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 +msgid "Moderation" +msgstr "Moderacja" + +#: src/Content/Nav.php:299 +msgid "Content and user moderation" +msgstr "Moderacja treści i użytkowników" + +#: src/Content/Nav.php:302 msgid "Navigation" msgstr "Nawigacja" -#: src/Content/Nav.php:304 +#: src/Content/Nav.php:302 msgid "Site map" msgstr "Mapa strony" @@ -2669,38 +1963,38 @@ msgstr "następny" msgid "last" msgstr "ostatni" -#: src/Content/Text/BBCode.php:998 src/Content/Text/BBCode.php:1833 -#: src/Content/Text/BBCode.php:1834 +#: src/Content/Text/BBCode.php:1015 src/Content/Text/BBCode.php:1877 +#: src/Content/Text/BBCode.php:1878 msgid "Image/photo" msgstr "Obrazek/zdjęcie" -#: src/Content/Text/BBCode.php:1188 +#: src/Content/Text/BBCode.php:1232 #, php-format msgid "%2$s %3$s" msgstr "%2$s %3$s" -#: src/Content/Text/BBCode.php:1213 src/Model/Item.php:3300 -#: src/Model/Item.php:3306 src/Model/Item.php:3307 +#: src/Content/Text/BBCode.php:1257 src/Model/Item.php:3688 +#: src/Model/Item.php:3694 src/Model/Item.php:3695 msgid "Link to source" msgstr "Odnośnik do źródła" -#: src/Content/Text/BBCode.php:1751 src/Content/Text/HTML.php:940 +#: src/Content/Text/BBCode.php:1795 src/Content/Text/HTML.php:940 msgid "Click to open/close" msgstr "Kliknij aby otworzyć/zamknąć" -#: src/Content/Text/BBCode.php:1782 +#: src/Content/Text/BBCode.php:1826 msgid "$1 wrote:" msgstr "$1 napisał:" -#: src/Content/Text/BBCode.php:1838 src/Content/Text/BBCode.php:1839 +#: src/Content/Text/BBCode.php:1882 src/Content/Text/BBCode.php:1883 msgid "Encrypted content" msgstr "Szyfrowana treść" -#: src/Content/Text/BBCode.php:2057 +#: src/Content/Text/BBCode.php:2110 msgid "Invalid source protocol" msgstr "Nieprawidłowy protokół źródłowy" -#: src/Content/Text/BBCode.php:2072 +#: src/Content/Text/BBCode.php:2125 msgid "Invalid link protocol" msgstr "Niepoprawny link protokołu" @@ -2713,7 +2007,7 @@ msgid "The end" msgstr "Koniec" #: src/Content/Text/HTML.php:882 src/Content/Widget/VCard.php:109 -#: src/Model/Profile.php:457 +#: src/Model/Profile.php:463 src/Module/Contact/Profile.php:427 msgid "Follow" msgstr "Śledź" @@ -2742,46 +2036,51 @@ msgstr[1] "%d zaproszeń dostępnych" msgstr[2] "%d zaproszenia dostępne" msgstr[3] "%d zaproszenia dostępne" -#: src/Content/Widget.php:78 view/theme/vier/theme.php:179 +#: src/Content/Widget.php:78 view/theme/vier/theme.php:194 msgid "Find People" msgstr "Znajdź ludzi" -#: src/Content/Widget.php:79 view/theme/vier/theme.php:180 +#: src/Content/Widget.php:79 view/theme/vier/theme.php:195 msgid "Enter name or interest" msgstr "Wpisz nazwę lub zainteresowanie" -#: src/Content/Widget.php:81 view/theme/vier/theme.php:182 +#: src/Content/Widget.php:81 view/theme/vier/theme.php:197 msgid "Examples: Robert Morgenstein, Fishing" msgstr "Przykład: Jan Kowalski, Wędkarstwo" -#: src/Content/Widget.php:82 src/Module/Contact.php:391 -#: src/Module/Directory.php:97 view/theme/vier/theme.php:183 +#: src/Content/Widget.php:82 src/Module/Contact.php:394 +#: src/Module/Directory.php:96 view/theme/vier/theme.php:198 msgid "Find" msgstr "Znajdź" -#: src/Content/Widget.php:84 view/theme/vier/theme.php:185 +#: src/Content/Widget.php:83 src/Module/Contact/Suggestions.php:73 +#: view/theme/vier/theme.php:199 +msgid "Friend Suggestions" +msgstr "Osoby, które możesz znać" + +#: src/Content/Widget.php:84 view/theme/vier/theme.php:200 msgid "Similar Interests" msgstr "Podobne zainteresowania" -#: src/Content/Widget.php:85 view/theme/vier/theme.php:186 +#: src/Content/Widget.php:85 view/theme/vier/theme.php:201 msgid "Random Profile" msgstr "Domyślny profil" -#: src/Content/Widget.php:86 view/theme/vier/theme.php:187 +#: src/Content/Widget.php:86 view/theme/vier/theme.php:202 msgid "Invite Friends" msgstr "Zaproś znajomych" -#: src/Content/Widget.php:87 src/Module/Directory.php:89 -#: view/theme/vier/theme.php:188 +#: src/Content/Widget.php:87 src/Module/Directory.php:88 +#: view/theme/vier/theme.php:203 msgid "Global Directory" msgstr "Katalog globalny" -#: src/Content/Widget.php:89 view/theme/vier/theme.php:190 +#: src/Content/Widget.php:89 view/theme/vier/theme.php:205 msgid "Local Directory" msgstr "Katalog lokalny" -#: src/Content/Widget.php:211 src/Model/Group.php:583 -#: src/Module/Contact.php:354 src/Module/Welcome.php:76 +#: src/Content/Widget.php:211 src/Model/Group.php:587 +#: src/Module/Contact.php:357 src/Module/Welcome.php:76 msgid "Groups" msgstr "Grupy" @@ -2793,8 +2092,8 @@ msgstr "Wszyscy" msgid "Relationships" msgstr "Relacje" -#: src/Content/Widget.php:244 src/Module/Contact.php:306 -#: src/Module/Group.php:293 +#: src/Content/Widget.php:244 src/Module/Contact.php:309 +#: src/Module/Group.php:291 msgid "All Contacts" msgstr "Wszystkie kontakty" @@ -2839,27 +2138,27 @@ msgstr "Osoby" msgid "Organisations" msgstr "Organizacje" -#: src/Content/Widget.php:523 src/Model/Contact.php:1537 +#: src/Content/Widget.php:523 src/Model/Contact.php:1655 msgid "News" msgstr "Aktualności" -#: src/Content/Widget.php:527 src/Module/Settings/Account.php:455 +#: src/Content/Widget.php:527 src/Module/Settings/Account.php:453 msgid "Account Types" msgstr "Rodzaje kont" -#: src/Content/Widget.php:528 src/Module/Admin/BaseUsers.php:51 +#: src/Content/Widget.php:528 src/Module/Moderation/BaseUsers.php:69 msgid "All" msgstr "Wszyscy" -#: src/Content/Widget/CalendarExport.php:54 +#: src/Content/Widget/CalendarExport.php:56 msgid "Export" msgstr "Eksport" -#: src/Content/Widget/CalendarExport.php:55 +#: src/Content/Widget/CalendarExport.php:57 msgid "Export calendar as ical" msgstr "Wyeksportuj kalendarz jako ical" -#: src/Content/Widget/CalendarExport.php:56 +#: src/Content/Widget/CalendarExport.php:58 msgid "Export calendar as csv" msgstr "Eksportuj kalendarz jako csv" @@ -2867,7 +2166,7 @@ msgstr "Eksportuj kalendarz jako csv" msgid "No contacts" msgstr "Brak kontaktów" -#: src/Content/Widget/ContactBlock.php:108 +#: src/Content/Widget/ContactBlock.php:110 #, php-format msgid "%d Contact" msgid_plural "%d Contacts" @@ -2876,7 +2175,7 @@ msgstr[1] "%d kontaktów" msgstr[2] "%d kontakty" msgstr[3] "%d Kontakty" -#: src/Content/Widget/ContactBlock.php:125 +#: src/Content/Widget/ContactBlock.php:127 msgid "View Contacts" msgstr "Widok kontaktów" @@ -2888,7 +2187,7 @@ msgstr "Usuń wpis" msgid "Saved Searches" msgstr "Zapisywanie wyszukiwania" -#: src/Content/Widget/TrendingTags.php:51 +#: src/Content/Widget/TrendingTags.php:52 #, php-format msgid "Trending Tags (last %d hour)" msgid_plural "Trending Tags (last %d hours)" @@ -2897,30 +2196,40 @@ msgstr[1] "Popularne znaczniki (ostatnie %d godziny)" msgstr[2] "Popularne znaczniki (ostatnie %d godzin)" msgstr[3] "Popularne znaczniki (ostatnie %d godzin)" -#: src/Content/Widget/TrendingTags.php:52 +#: src/Content/Widget/TrendingTags.php:53 msgid "More Trending Tags" msgstr "Więcej popularnych znaczników" -#: src/Content/Widget/VCard.php:102 src/Model/Profile.php:376 -#: src/Module/Contact/Profile.php:371 src/Module/Profile/Profile.php:176 +#: src/Content/Widget/VCard.php:102 src/Model/Profile.php:378 +#: src/Module/Contact/Profile.php:371 src/Module/Profile/Profile.php:168 msgid "XMPP:" msgstr "XMPP:" -#: src/Content/Widget/VCard.php:103 src/Model/Profile.php:377 -#: src/Module/Contact/Profile.php:373 src/Module/Profile/Profile.php:180 +#: src/Content/Widget/VCard.php:103 src/Model/Profile.php:379 +#: src/Module/Contact/Profile.php:373 src/Module/Profile/Profile.php:172 msgid "Matrix:" msgstr "Matrix:" -#: src/Content/Widget/VCard.php:107 src/Model/Profile.php:469 -#: src/Module/Notifications/Introductions.php:199 +#: src/Content/Widget/VCard.php:104 src/Model/Event.php:82 +#: src/Model/Event.php:109 src/Model/Event.php:471 src/Model/Event.php:958 +#: src/Model/Profile.php:373 src/Module/Contact/Profile.php:369 +#: src/Module/Directory.php:147 src/Module/Notifications/Introductions.php:187 +#: src/Module/Profile/Profile.php:186 +msgid "Location:" +msgstr "Lokalizacja:" + +#: src/Content/Widget/VCard.php:107 src/Model/Profile.php:476 +#: src/Module/Notifications/Introductions.php:201 msgid "Network:" msgstr "Sieć:" -#: src/Content/Widget/VCard.php:111 src/Model/Profile.php:459 +#: src/Content/Widget/VCard.php:111 src/Model/Contact.php:1209 +#: src/Model/Contact.php:1220 src/Model/Profile.php:465 +#: src/Module/Contact/Profile.php:419 msgid "Unfollow" msgstr "Przestań obserwować" -#: src/Core/ACL.php:165 src/Module/Profile/Profile.php:242 +#: src/Core/ACL.php:165 src/Module/Profile/Profile.php:234 msgid "Yourself" msgstr "Siebie" @@ -2955,6 +2264,12 @@ msgid "" "anywhere public." msgstr "Ta zawartość będzie wyświetlana tylko osobom w pierwszym polu, z wyjątkiem osób wymienionych w drugim polu. Nie pojawi się nigdzie publicznie." +#: src/Core/ACL.php:323 +msgid "" +"Start typing the name of a contact or a group to show a filtered list. You " +"can also mention the special groups \"Followers\" and \"Mutuals\"." +msgstr "" + #: src/Core/ACL.php:324 msgid "Show to:" msgstr "Pokaż na:" @@ -2963,6 +2278,14 @@ msgstr "Pokaż na:" msgid "Except to:" msgstr "Z wyjątkiem:" +#: src/Core/ACL.php:326 src/Module/Post/Edit.php:151 +msgid "CC: email addresses" +msgstr "DW: adresy e-mail" + +#: src/Core/ACL.php:327 src/Module/Post/Edit.php:157 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Przykład: bob@example.com, mary@example.com" + #: src/Core/ACL.php:328 msgid "Connectors" msgstr "Wtyczki" @@ -3286,217 +2609,174 @@ msgstr "Baza danych jest już w użyciu." msgid "Could not connect to database." msgstr "Nie można połączyć się z bazą danych." -#: src/Core/L10n.php:399 src/Model/Event.php:424 -#: src/Module/Settings/Display.php:182 +#: src/Core/L10n.php:403 src/Model/Event.php:430 +#: src/Module/Settings/Display.php:187 msgid "Monday" msgstr "Poniedziałek" -#: src/Core/L10n.php:399 src/Model/Event.php:425 +#: src/Core/L10n.php:403 src/Model/Event.php:431 +#: src/Module/Settings/Display.php:188 msgid "Tuesday" msgstr "Wtorek" -#: src/Core/L10n.php:399 src/Model/Event.php:426 +#: src/Core/L10n.php:403 src/Model/Event.php:432 +#: src/Module/Settings/Display.php:189 msgid "Wednesday" msgstr "Środa" -#: src/Core/L10n.php:399 src/Model/Event.php:427 +#: src/Core/L10n.php:403 src/Model/Event.php:433 +#: src/Module/Settings/Display.php:190 msgid "Thursday" msgstr "Czwartek" -#: src/Core/L10n.php:399 src/Model/Event.php:428 +#: src/Core/L10n.php:403 src/Model/Event.php:434 +#: src/Module/Settings/Display.php:191 msgid "Friday" msgstr "Piątek" -#: src/Core/L10n.php:399 src/Model/Event.php:429 +#: src/Core/L10n.php:403 src/Model/Event.php:435 +#: src/Module/Settings/Display.php:192 msgid "Saturday" msgstr "Sobota" -#: src/Core/L10n.php:399 src/Model/Event.php:423 -#: src/Module/Settings/Display.php:182 +#: src/Core/L10n.php:403 src/Model/Event.php:429 +#: src/Module/Settings/Display.php:186 msgid "Sunday" msgstr "Niedziela" -#: src/Core/L10n.php:403 src/Model/Event.php:444 +#: src/Core/L10n.php:407 src/Model/Event.php:450 msgid "January" msgstr "Styczeń" -#: src/Core/L10n.php:403 src/Model/Event.php:445 +#: src/Core/L10n.php:407 src/Model/Event.php:451 msgid "February" msgstr "Luty" -#: src/Core/L10n.php:403 src/Model/Event.php:446 +#: src/Core/L10n.php:407 src/Model/Event.php:452 msgid "March" msgstr "Marzec" -#: src/Core/L10n.php:403 src/Model/Event.php:447 +#: src/Core/L10n.php:407 src/Model/Event.php:453 msgid "April" msgstr "Kwiecień" -#: src/Core/L10n.php:403 src/Core/L10n.php:422 src/Model/Event.php:435 +#: src/Core/L10n.php:407 src/Core/L10n.php:426 src/Model/Event.php:441 msgid "May" msgstr "Maj" -#: src/Core/L10n.php:403 src/Model/Event.php:448 +#: src/Core/L10n.php:407 src/Model/Event.php:454 msgid "June" msgstr "Czerwiec" -#: src/Core/L10n.php:403 src/Model/Event.php:449 +#: src/Core/L10n.php:407 src/Model/Event.php:455 msgid "July" msgstr "Lipiec" -#: src/Core/L10n.php:403 src/Model/Event.php:450 +#: src/Core/L10n.php:407 src/Model/Event.php:456 msgid "August" msgstr "Sierpień" -#: src/Core/L10n.php:403 src/Model/Event.php:451 +#: src/Core/L10n.php:407 src/Model/Event.php:457 msgid "September" msgstr "Wrzesień" -#: src/Core/L10n.php:403 src/Model/Event.php:452 +#: src/Core/L10n.php:407 src/Model/Event.php:458 msgid "October" msgstr "Październik" -#: src/Core/L10n.php:403 src/Model/Event.php:453 +#: src/Core/L10n.php:407 src/Model/Event.php:459 msgid "November" msgstr "Listopad" -#: src/Core/L10n.php:403 src/Model/Event.php:454 +#: src/Core/L10n.php:407 src/Model/Event.php:460 msgid "December" msgstr "Grudzień" -#: src/Core/L10n.php:418 src/Model/Event.php:416 +#: src/Core/L10n.php:422 src/Model/Event.php:422 msgid "Mon" msgstr "Pon" -#: src/Core/L10n.php:418 src/Model/Event.php:417 +#: src/Core/L10n.php:422 src/Model/Event.php:423 msgid "Tue" msgstr "Wt" -#: src/Core/L10n.php:418 src/Model/Event.php:418 +#: src/Core/L10n.php:422 src/Model/Event.php:424 msgid "Wed" msgstr "Śr" -#: src/Core/L10n.php:418 src/Model/Event.php:419 +#: src/Core/L10n.php:422 src/Model/Event.php:425 msgid "Thu" msgstr "Czw" -#: src/Core/L10n.php:418 src/Model/Event.php:420 +#: src/Core/L10n.php:422 src/Model/Event.php:426 msgid "Fri" msgstr "Pt" -#: src/Core/L10n.php:418 src/Model/Event.php:421 +#: src/Core/L10n.php:422 src/Model/Event.php:427 msgid "Sat" msgstr "Sob" -#: src/Core/L10n.php:418 src/Model/Event.php:415 +#: src/Core/L10n.php:422 src/Model/Event.php:421 msgid "Sun" msgstr "Niedz" -#: src/Core/L10n.php:422 src/Model/Event.php:431 +#: src/Core/L10n.php:426 src/Model/Event.php:437 msgid "Jan" msgstr "Sty" -#: src/Core/L10n.php:422 src/Model/Event.php:432 +#: src/Core/L10n.php:426 src/Model/Event.php:438 msgid "Feb" msgstr "Lut" -#: src/Core/L10n.php:422 src/Model/Event.php:433 +#: src/Core/L10n.php:426 src/Model/Event.php:439 msgid "Mar" msgstr "Mar" -#: src/Core/L10n.php:422 src/Model/Event.php:434 +#: src/Core/L10n.php:426 src/Model/Event.php:440 msgid "Apr" msgstr "Kwi" -#: src/Core/L10n.php:422 src/Model/Event.php:436 +#: src/Core/L10n.php:426 src/Model/Event.php:442 msgid "Jun" msgstr "Cze" -#: src/Core/L10n.php:422 src/Model/Event.php:437 +#: src/Core/L10n.php:426 src/Model/Event.php:443 msgid "Jul" msgstr "Lip" -#: src/Core/L10n.php:422 src/Model/Event.php:438 +#: src/Core/L10n.php:426 src/Model/Event.php:444 msgid "Aug" msgstr "Sie" -#: src/Core/L10n.php:422 +#: src/Core/L10n.php:426 msgid "Sep" msgstr "Wrz" -#: src/Core/L10n.php:422 src/Model/Event.php:440 +#: src/Core/L10n.php:426 src/Model/Event.php:446 msgid "Oct" msgstr "Paź" -#: src/Core/L10n.php:422 src/Model/Event.php:441 +#: src/Core/L10n.php:426 src/Model/Event.php:447 msgid "Nov" msgstr "Lis" -#: src/Core/L10n.php:422 src/Model/Event.php:442 +#: src/Core/L10n.php:426 src/Model/Event.php:448 msgid "Dec" msgstr "Gru" -#: src/Core/L10n.php:441 -msgid "poke" -msgstr "zaczep" - -#: src/Core/L10n.php:441 -msgid "poked" -msgstr "zaczepił Cię" - -#: src/Core/L10n.php:442 -msgid "ping" -msgstr "ping" - -#: src/Core/L10n.php:442 -msgid "pinged" -msgstr "napięcia" - -#: src/Core/L10n.php:443 -msgid "prod" -msgstr "zaczep" - -#: src/Core/L10n.php:443 -msgid "prodded" -msgstr "zaczepiać" - -#: src/Core/L10n.php:444 -msgid "slap" -msgstr "klask" - -#: src/Core/L10n.php:444 -msgid "slapped" -msgstr "spoliczkowany" - -#: src/Core/L10n.php:445 -msgid "finger" -msgstr "wskaż" - -#: src/Core/L10n.php:445 -msgid "fingered" -msgstr "dotknięty" - -#: src/Core/L10n.php:446 -msgid "rebuff" -msgstr "odrzuć" - -#: src/Core/L10n.php:446 -msgid "rebuffed" -msgstr "odrzucony" - #: src/Core/Renderer.php:89 src/Core/Renderer.php:118 -#: src/Core/Renderer.php:145 src/Core/Renderer.php:179 -#: src/Render/FriendicaSmartyEngine.php:69 +#: src/Core/Renderer.php:147 src/Core/Renderer.php:181 +#: src/Render/FriendicaSmartyEngine.php:60 msgid "" "Friendica can't display this page at the moment, please contact the " "administrator." msgstr "Friendica nie może obecnie wyświetlić tej strony, skontaktuj się z administratorem." -#: src/Core/Renderer.php:141 +#: src/Core/Renderer.php:143 msgid "template engine cannot be registered without a name." msgstr "silnik szablonów nie może być zarejestrowany bez nazwy." -#: src/Core/Renderer.php:175 +#: src/Core/Renderer.php:177 msgid "template engine is not registered!" msgstr "silnik szablonów nie jest zarejestrowany!" @@ -3514,36 +2794,36 @@ msgstr "Katalog, w którym zapisywane są przesłane pliki. Dla maksymalnego bez msgid "Enter a valid existing folder" msgstr "Wprowadź poprawny istniejący katalog" -#: src/Core/Update.php:67 +#: src/Core/Update.php:70 #, php-format msgid "" "Updates from version %s are not supported. Please update at least to version" " 2021.01 and wait until the postupdate finished version 1383." msgstr "Aktualizacje z wersji %s nie są obsługiwane. Zaktualizuj co najmniej do wersji 2021.01 i poczekaj, aż po aktualizacji zakończy się wersja 1383." -#: src/Core/Update.php:78 +#: src/Core/Update.php:81 #, php-format msgid "" "Updates from postupdate version %s are not supported. Please update at least" " to version 2021.01 and wait until the postupdate finished version 1383." msgstr "Aktualizacje z wersji postupdate %s nie są obsługiwane. Zaktualizuj co najmniej do wersji 2021.01 i poczekaj, aż po aktualizacji zakończy się wersja 1383." -#: src/Core/Update.php:153 +#: src/Core/Update.php:156 #, php-format msgid "%s: executing pre update %d" msgstr "%s: wykonywanie wstępnej aktualizacji %d" -#: src/Core/Update.php:191 +#: src/Core/Update.php:194 #, php-format msgid "%s: executing post update %d" msgstr "%s: wykonywanie czynności poaktualizacyjnych %d" -#: src/Core/Update.php:261 +#: src/Core/Update.php:264 #, php-format msgid "Update %s failed. See error logs." msgstr "Aktualizacja %s nie powiodła się. Zobacz dziennik błędów." -#: src/Core/Update.php:315 +#: src/Core/Update.php:304 #, php-format msgid "" "\n" @@ -3553,55 +2833,21 @@ msgid "" "\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." msgstr "\n\t\t\t\tDeweloperzy friendica wydali niedawno aktualizację %s,\n\t\t\t\tale podczas próby instalacji, coś poszło nie tak.\n\t\t\t\tZostanie to naprawione wkrótce i nie mogę tego zrobić sam. Proszę skontaktować się z \n\t\t\t\tprogramistami friendica, jeśli nie możesz mi pomóc na własną rękę. Moja baza danych może być nieprawidłowa." -#: src/Core/Update.php:321 +#: src/Core/Update.php:310 #, php-format msgid "The error message is\\n[pre]%s[/pre]" msgstr "Komunikat o błędzie:\\n[pre]%s[/pre]" -#: src/Core/Update.php:325 src/Core/Update.php:367 +#: src/Core/Update.php:314 src/Core/Update.php:342 msgid "[Friendica Notify] Database update" msgstr "[Powiadomienie Friendica] Aktualizacja bazy danych" -#: src/Core/Update.php:361 +#: src/Core/Update.php:336 #, php-format msgid "" "\n" -"\t\t\t\t\tThe friendica database was successfully updated from %s to %s." -msgstr "\n\t\t\t\t\tBaza danych Friendica została pomyślnie zaktualizowana z %s do %s." - -#: src/Core/UserImport.php:126 -msgid "Error decoding account file" -msgstr "Błąd podczas odczytu pliku konta" - -#: src/Core/UserImport.php:132 -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/Core/UserImport.php:140 -#, php-format -msgid "User '%s' already exists on this server!" -msgstr "Użytkownik '%s' już istnieje na tym serwerze!" - -#: src/Core/UserImport.php:176 -msgid "User creation error" -msgstr "Błąd tworzenia użytkownika" - -#: src/Core/UserImport.php:221 -#, php-format -msgid "%d contact not imported" -msgid_plural "%d contacts not imported" -msgstr[0] "Nie zaimportowano %d kontaktu" -msgstr[1] "Nie zaimportowano %d kontaktów" -msgstr[2] "Nie zaimportowano %d kontaktów" -msgstr[3] "%d kontakty nie zostały zaimportowane " - -#: src/Core/UserImport.php:274 -msgid "User profile creation error" -msgstr "Błąd tworzenia profilu użytkownika" - -#: src/Core/UserImport.php:327 -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" +"\t\t\t\tThe friendica database was successfully updated from %s to %s." +msgstr "" #: src/Database/DBStructure.php:57 #, php-format @@ -3681,152 +2927,177 @@ msgstr "Wewnętrzny błąd serwera" msgid "Legacy module file not found: %s" msgstr "Nie znaleziono pliku modułu: %s" -#: src/Model/Contact.php:1105 src/Model/Contact.php:1117 -msgid "UnFollow" -msgstr "Przestań obserwować" - -#: src/Model/Contact.php:1123 src/Module/Admin/Users/Pending.php:107 -#: src/Module/Notifications/Introductions.php:130 -#: src/Module/Notifications/Introductions.php:202 +#: src/Model/Contact.php:1226 src/Module/Moderation/Users/Pending.php:102 +#: src/Module/Notifications/Introductions.php:132 +#: src/Module/Notifications/Introductions.php:204 msgid "Approve" msgstr "Zatwierdź" -#: src/Model/Contact.php:1533 +#: src/Model/Contact.php:1651 msgid "Organisation" msgstr "Organizacja" -#: src/Model/Contact.php:1541 +#: src/Model/Contact.php:1659 msgid "Forum" msgstr "Forum" -#: src/Model/Contact.php:2630 +#: src/Model/Contact.php:2884 msgid "Disallowed profile URL." msgstr "Nie dozwolony adres URL profilu." -#: src/Model/Contact.php:2635 src/Module/Friendica.php:81 +#: src/Model/Contact.php:2889 src/Module/Friendica.php:82 msgid "Blocked domain" msgstr "Zablokowana domena" -#: src/Model/Contact.php:2640 +#: src/Model/Contact.php:2894 msgid "Connect URL missing." msgstr "Brak adresu URL połączenia." -#: src/Model/Contact.php:2649 +#: src/Model/Contact.php:2903 msgid "" "The contact could not be added. Please check the relevant network " "credentials in your Settings -> Social Networks page." msgstr "Nie można dodać kontaktu. Sprawdź odpowiednie poświadczenia sieciowe na stronie Ustawienia -> Sieci społecznościowe." -#: src/Model/Contact.php:2691 +#: src/Model/Contact.php:2945 msgid "The profile address specified does not provide adequate information." msgstr "Dany adres profilu nie dostarcza odpowiednich informacji." -#: src/Model/Contact.php:2693 +#: src/Model/Contact.php:2947 msgid "No compatible communication protocols or feeds were discovered." msgstr "Nie znaleziono żadnych kompatybilnych protokołów komunikacyjnych ani źródeł." -#: src/Model/Contact.php:2696 +#: src/Model/Contact.php:2950 msgid "An author or name was not found." msgstr "Autor lub nazwa nie zostało znalezione." -#: src/Model/Contact.php:2699 +#: src/Model/Contact.php:2953 msgid "No browser URL could be matched to this address." msgstr "Przeglądarka WWW nie może odnaleźć podanego adresu" -#: src/Model/Contact.php:2702 +#: src/Model/Contact.php:2956 msgid "" "Unable to match @-style Identity Address with a known protocol or email " "contact." msgstr "Nie można dopasować @-stylu Adres identyfikacyjny ze znanym protokołem lub kontaktem e-mail." -#: src/Model/Contact.php:2703 +#: src/Model/Contact.php:2957 msgid "Use mailto: in front of address to force email check." msgstr "Użyj mailto: przed adresem, aby wymusić sprawdzanie poczty e-mail." -#: src/Model/Contact.php:2709 +#: src/Model/Contact.php:2963 msgid "" "The profile address specified belongs to a network which has been disabled " "on this site." msgstr "Określony adres profilu należy do sieci, która została wyłączona na tej stronie." -#: src/Model/Contact.php:2714 +#: src/Model/Contact.php:2968 msgid "" "Limited profile. This person will be unable to receive direct/personal " "notifications from you." msgstr "Profil ograniczony. Ta osoba będzie niezdolna do odbierania osobistych powiadomień od ciebie." -#: src/Model/Contact.php:2773 +#: src/Model/Contact.php:3027 msgid "Unable to retrieve contact information." msgstr "Nie można otrzymać informacji kontaktowych" -#: src/Model/Event.php:52 +#: src/Model/Event.php:54 msgid "l F d, Y \\@ g:i A \\G\\M\\TP (e)" msgstr "" -#: src/Model/Event.php:73 src/Model/Event.php:90 src/Model/Event.php:463 -#: src/Model/Event.php:897 +#: src/Model/Event.php:75 src/Model/Event.php:92 src/Model/Event.php:469 +#: src/Model/Event.php:940 msgid "Starts:" msgstr "Rozpoczęcie:" -#: src/Model/Event.php:76 src/Model/Event.php:96 src/Model/Event.php:464 -#: src/Model/Event.php:901 +#: src/Model/Event.php:78 src/Model/Event.php:98 src/Model/Event.php:470 +#: src/Model/Event.php:944 msgid "Finishes:" msgstr "Zakończenie:" -#: src/Model/Event.php:413 +#: src/Model/Event.php:419 msgid "all-day" msgstr "cały dzień" -#: src/Model/Event.php:439 +#: src/Model/Event.php:445 msgid "Sept" msgstr "Wrz" -#: src/Model/Event.php:461 +#: src/Model/Event.php:462 src/Module/Calendar/Show.php:126 +#: src/Util/Temporal.php:339 +msgid "today" +msgstr "dzisiaj" + +#: src/Model/Event.php:463 src/Module/Calendar/Show.php:127 +#: src/Util/Temporal.php:349 +msgid "month" +msgstr "miesiąc" + +#: src/Model/Event.php:464 src/Module/Calendar/Show.php:128 +#: src/Util/Temporal.php:350 +msgid "week" +msgstr "tydzień" + +#: src/Model/Event.php:465 src/Module/Calendar/Show.php:129 +#: src/Util/Temporal.php:351 +msgid "day" +msgstr "dzień" + +#: src/Model/Event.php:467 msgid "No events to display" msgstr "Brak wydarzeń do wyświetlenia" -#: src/Model/Event.php:577 +#: src/Model/Event.php:518 src/Module/DFRN/Poll.php:47 src/Module/Feed.php:69 +#: src/Module/Update/Profile.php:55 +msgid "Access to this profile has been restricted." +msgstr "Dostęp do tego profilu został ograniczony." + +#: src/Model/Event.php:559 src/Module/Calendar/Event/Show.php:67 +msgid "Event not found." +msgstr "Nie znaleziono wydarzenia." + +#: src/Model/Event.php:637 msgid "l, F j" msgstr "l, F j" -#: src/Model/Event.php:608 +#: src/Model/Event.php:664 msgid "Edit event" msgstr "Edytuj wydarzenie" -#: src/Model/Event.php:609 +#: src/Model/Event.php:665 msgid "Duplicate event" msgstr "Zduplikowane zdarzenie" -#: src/Model/Event.php:610 +#: src/Model/Event.php:666 msgid "Delete event" msgstr "Usuń wydarzenie" -#: src/Model/Event.php:853 src/Module/Debug/Localtime.php:38 +#: src/Model/Event.php:896 src/Module/Debug/Localtime.php:38 msgid "l F d, Y \\@ g:i A" msgstr "l F d, Y \\@ g:i A" -#: src/Model/Event.php:854 +#: src/Model/Event.php:897 msgid "D g:i A" msgstr "D g:i A" -#: src/Model/Event.php:855 +#: src/Model/Event.php:898 msgid "g:i A" msgstr "g:i A" -#: src/Model/Event.php:916 src/Model/Event.php:918 +#: src/Model/Event.php:959 src/Model/Event.php:961 msgid "Show map" msgstr "Pokaż mapę" -#: src/Model/Event.php:917 +#: src/Model/Event.php:960 msgid "Hide map" msgstr "Ukryj mapę" -#: src/Model/Event.php:1010 +#: src/Model/Event.php:1053 #, php-format msgid "%s's birthday" msgstr "Urodziny %s" -#: src/Model/Event.php:1011 +#: src/Model/Event.php:1054 #, php-format msgid "Happy Birthday %s" msgstr "Wszystkiego najlepszego %s" @@ -3838,311 +3109,340 @@ msgid "" "not what you intended, please create another group with a different name." msgstr "Skasowana grupa o tej nazwie została przywrócona. Istniejące uprawnienia do pozycji mogą dotyczyć tej grupy i wszystkich przyszłych członków. Jeśli nie jest to zamierzone, utwórz inną grupę o innej nazwie." -#: src/Model/Group.php:499 +#: src/Model/Group.php:503 msgid "Default privacy group for new contacts" msgstr "Domyślne ustawienia prywatności dla nowych kontaktów" -#: src/Model/Group.php:531 +#: src/Model/Group.php:535 msgid "Everybody" msgstr "Wszyscy" -#: src/Model/Group.php:550 +#: src/Model/Group.php:554 msgid "edit" msgstr "edytuj" -#: src/Model/Group.php:582 +#: src/Model/Group.php:586 msgid "add" msgstr "dodaj" -#: src/Model/Group.php:587 +#: src/Model/Group.php:591 msgid "Edit group" msgstr "Edytuj grupy" -#: src/Model/Group.php:588 src/Module/Group.php:194 +#: src/Model/Group.php:592 src/Module/Group.php:192 msgid "Contacts not in any group" msgstr "Kontakt nie jest w żadnej grupie" -#: src/Model/Group.php:590 +#: src/Model/Group.php:594 msgid "Create a new group" msgstr "Stwórz nową grupę" -#: src/Model/Group.php:591 src/Module/Group.php:179 src/Module/Group.php:202 -#: src/Module/Group.php:277 +#: src/Model/Group.php:595 src/Module/Group.php:177 src/Module/Group.php:200 +#: src/Module/Group.php:275 msgid "Group Name: " msgstr "Nazwa grupy: " -#: src/Model/Group.php:592 +#: src/Model/Group.php:596 msgid "Edit groups" msgstr "Edytuj grupy" -#: src/Model/Item.php:1823 +#: src/Model/Item.php:2026 #, php-format msgid "Detected languages in this post:\\n%s" msgstr "Wykryte języki w tym wpisie:\\n%s" -#: src/Model/Item.php:2729 +#: src/Model/Item.php:2929 msgid "activity" msgstr "aktywność" -#: src/Model/Item.php:2731 +#: src/Model/Item.php:2931 msgid "comment" msgstr "komentarz" -#: src/Model/Item.php:2734 +#: src/Model/Item.php:2934 msgid "post" msgstr "wpis" -#: src/Model/Item.php:2850 +#: src/Model/Item.php:3077 #, php-format msgid "Content warning: %s" msgstr "Ostrzeżenie o treści: %s" -#: src/Model/Item.php:3209 +#: src/Model/Item.php:3600 msgid "bytes" msgstr "bajty" -#: src/Model/Item.php:3243 +#: src/Model/Item.php:3631 #, php-format -msgid "%s (%d%s, %d votes)" -msgstr "%s (%d%s, %d głosów)" +msgid "%2$s (%3$d%%, %1$d vote)" +msgid_plural "%2$s (%3$d%%, %1$d votes)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: src/Model/Item.php:3245 +#: src/Model/Item.php:3633 #, php-format -msgid "%s (%d votes)" -msgstr "%s (%d głosów)" +msgid "%2$s (%1$d vote)" +msgid_plural "%2$s (%1$d votes)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: src/Model/Item.php:3250 +#: src/Model/Item.php:3638 #, php-format -msgid "%d voters. Poll end: %s" -msgstr "%d głosujących. Zakończenie głosowania: %s" +msgid "%d voter. Poll end: %s" +msgid_plural "%d voters. Poll end: %s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: src/Model/Item.php:3252 +#: src/Model/Item.php:3640 #, php-format -msgid "%d voters." -msgstr "%d głosujących." +msgid "%d voter." +msgid_plural "%d voters." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: src/Model/Item.php:3254 +#: src/Model/Item.php:3642 #, php-format msgid "Poll end: %s" msgstr "Koniec ankiety: %s" -#: src/Model/Item.php:3288 src/Model/Item.php:3289 +#: src/Model/Item.php:3676 src/Model/Item.php:3677 msgid "View on separate page" msgstr "Zobacz na oddzielnej stronie" -#: src/Model/Mail.php:137 src/Model/Mail.php:265 +#: src/Model/Mail.php:136 src/Model/Mail.php:264 msgid "[no subject]" msgstr "[bez tematu]" -#: src/Model/Profile.php:359 src/Module/Profile/Profile.php:256 -#: src/Module/Profile/Profile.php:258 +#: src/Model/Photo.php:1178 src/Module/Media/Photo/Upload.php:198 +msgid "Wall Photos" +msgstr "Tablica zdjęć" + +#: src/Model/Profile.php:361 src/Module/Profile/Profile.php:248 +#: src/Module/Profile/Profile.php:250 msgid "Edit profile" msgstr "Edytuj profil" -#: src/Model/Profile.php:361 +#: src/Model/Profile.php:363 msgid "Change profile photo" msgstr "Zmień zdjęcie profilowe" -#: src/Model/Profile.php:374 src/Module/Directory.php:153 -#: src/Module/Profile/Profile.php:184 +#: src/Model/Profile.php:376 src/Module/Directory.php:152 +#: src/Module/Profile/Profile.php:176 msgid "Homepage:" msgstr "Strona główna:" -#: src/Model/Profile.php:375 src/Module/Contact/Profile.php:375 -#: src/Module/Notifications/Introductions.php:187 +#: src/Model/Profile.php:377 src/Module/Contact/Profile.php:375 +#: src/Module/Notifications/Introductions.php:189 msgid "About:" msgstr "O:" -#: src/Model/Profile.php:461 +#: src/Model/Profile.php:467 msgid "Atom feed" msgstr "Kanał Atom" -#: src/Model/Profile.php:505 +#: src/Model/Profile.php:474 +msgid "This website has been verified to belong to the same person." +msgstr "Zweryfikowano, że ta witryna należy do tej samej osoby." + +#: src/Model/Profile.php:511 msgid "F d" msgstr "F d" -#: src/Model/Profile.php:569 src/Model/Profile.php:653 +#: src/Model/Profile.php:575 src/Model/Profile.php:664 msgid "[today]" msgstr "[dziś]" -#: src/Model/Profile.php:578 +#: src/Model/Profile.php:584 msgid "Birthday Reminders" msgstr "Przypomnienia o urodzinach" -#: src/Model/Profile.php:579 +#: src/Model/Profile.php:585 msgid "Birthdays this week:" msgstr "Urodziny w tym tygodniu:" -#: src/Model/Profile.php:602 +#: src/Model/Profile.php:613 msgid "g A l F d" msgstr "g A I F d" -#: src/Model/Profile.php:640 +#: src/Model/Profile.php:651 msgid "[No description]" msgstr "[Brak opisu]" -#: src/Model/Profile.php:666 +#: src/Model/Profile.php:677 msgid "Event Reminders" msgstr "Przypominacze wydarzeń" -#: src/Model/Profile.php:667 +#: src/Model/Profile.php:678 msgid "Upcoming events the next 7 days:" msgstr "Nadchodzące wydarzenia w ciągu następnych 7 dni:" -#: src/Model/Profile.php:855 +#: src/Model/Profile.php:873 #, php-format msgid "OpenWebAuth: %1$s welcomes %2$s" msgstr "OpenWebAuth: %1$s wita %2$s" -#: src/Model/Profile.php:981 +#: src/Model/Profile.php:1013 msgid "Hometown:" msgstr "Miasto rodzinne:" -#: src/Model/Profile.php:982 +#: src/Model/Profile.php:1014 msgid "Marital Status:" msgstr "Stan cywilny:" -#: src/Model/Profile.php:983 +#: src/Model/Profile.php:1015 msgid "With:" msgstr "Z:" -#: src/Model/Profile.php:984 +#: src/Model/Profile.php:1016 msgid "Since:" msgstr "Od:" -#: src/Model/Profile.php:985 +#: src/Model/Profile.php:1017 msgid "Sexual Preference:" msgstr "Preferencje seksualne:" -#: src/Model/Profile.php:986 +#: src/Model/Profile.php:1018 msgid "Political Views:" msgstr "Poglądy polityczne:" -#: src/Model/Profile.php:987 +#: src/Model/Profile.php:1019 msgid "Religious Views:" msgstr "Poglądy religijne:" -#: src/Model/Profile.php:988 +#: src/Model/Profile.php:1020 msgid "Likes:" msgstr "Lubię to:" -#: src/Model/Profile.php:989 +#: src/Model/Profile.php:1021 msgid "Dislikes:" msgstr "Nie lubię tego:" -#: src/Model/Profile.php:990 +#: src/Model/Profile.php:1022 msgid "Title/Description:" msgstr "Tytuł/Opis:" -#: src/Model/Profile.php:991 src/Module/Admin/Summary.php:234 +#: src/Model/Profile.php:1023 src/Module/Admin/Summary.php:217 +#: src/Module/Moderation/Summary.php:77 msgid "Summary" msgstr "Podsumowanie" -#: src/Model/Profile.php:992 +#: src/Model/Profile.php:1024 msgid "Musical interests" msgstr "Muzyka" -#: src/Model/Profile.php:993 +#: src/Model/Profile.php:1025 msgid "Books, literature" msgstr "Literatura" -#: src/Model/Profile.php:994 +#: src/Model/Profile.php:1026 msgid "Television" msgstr "Telewizja" -#: src/Model/Profile.php:995 +#: src/Model/Profile.php:1027 msgid "Film/dance/culture/entertainment" msgstr "Film/taniec/kultura/rozrywka" -#: src/Model/Profile.php:996 +#: src/Model/Profile.php:1028 msgid "Hobbies/Interests" msgstr "Zainteresowania" -#: src/Model/Profile.php:997 +#: src/Model/Profile.php:1029 msgid "Love/romance" msgstr "Miłość/romans" -#: src/Model/Profile.php:998 +#: src/Model/Profile.php:1030 msgid "Work/employment" msgstr "Praca/zatrudnienie" -#: src/Model/Profile.php:999 +#: src/Model/Profile.php:1031 msgid "School/education" msgstr "Szkoła/edukacja" -#: src/Model/Profile.php:1000 +#: src/Model/Profile.php:1032 msgid "Contact information and Social Networks" msgstr "Dane kontaktowe i Sieci społecznościowe" -#: src/Model/User.php:212 src/Model/User.php:1058 +#: src/Model/User.php:213 src/Model/User.php:1103 msgid "SERIOUS ERROR: Generation of security keys failed." msgstr "POWAŻNY BŁĄD: niepowodzenie podczas tworzenia kluczy zabezpieczeń." -#: src/Model/User.php:570 src/Model/User.php:603 +#: src/Model/User.php:571 src/Model/User.php:604 msgid "Login failed" msgstr "Logowanie nieudane" -#: src/Model/User.php:635 +#: src/Model/User.php:636 msgid "Not enough information to authenticate" msgstr "Za mało informacji do uwierzytelnienia" -#: src/Model/User.php:730 +#: src/Model/User.php:753 msgid "Password can't be empty" msgstr "Hasło nie może być puste" -#: src/Model/User.php:749 +#: src/Model/User.php:795 msgid "Empty passwords are not allowed." msgstr "Puste hasła są niedozwolone." -#: src/Model/User.php:753 +#: src/Model/User.php:799 msgid "" "The new password has been exposed in a public data dump, please choose " "another." msgstr "Nowe hasło zostało ujawnione w publicznym zrzucie danych, wybierz inne." -#: src/Model/User.php:759 +#: src/Model/User.php:803 +msgid "The password length is limited to 72 characters." +msgstr "Długość hasła jest ograniczona do 72 znaków." + +#: src/Model/User.php:807 msgid "" "The password can't contain accentuated letters, white spaces or colons (:)" msgstr "Hasło nie może zawierać podkreślonych liter, białych spacji ani dwukropków (:)" -#: src/Model/User.php:938 +#: src/Model/User.php:986 msgid "Passwords do not match. Password unchanged." msgstr "Hasła nie pasują do siebie. Hasło niezmienione." -#: src/Model/User.php:945 +#: src/Model/User.php:993 msgid "An invitation is required." msgstr "Wymagane zaproszenie." -#: src/Model/User.php:949 +#: src/Model/User.php:997 msgid "Invitation could not be verified." msgstr "Zaproszenie niezweryfikowane." -#: src/Model/User.php:957 +#: src/Model/User.php:1005 msgid "Invalid OpenID url" msgstr "Nieprawidłowy adres url OpenID" -#: src/Model/User.php:970 src/Security/Authentication.php:240 +#: src/Model/User.php:1018 src/Security/Authentication.php:241 msgid "" "We encountered a problem while logging in with the OpenID you provided. " "Please check the correct spelling of the ID." msgstr "Napotkaliśmy problem podczas logowania z podanym przez nas identyfikatorem OpenID. Sprawdź poprawną pisownię identyfikatora." -#: src/Model/User.php:970 src/Security/Authentication.php:240 +#: src/Model/User.php:1018 src/Security/Authentication.php:241 msgid "The error message was:" msgstr "Komunikat o błędzie:" -#: src/Model/User.php:976 +#: src/Model/User.php:1024 msgid "Please enter the required information." msgstr "Wprowadź wymagane informacje." -#: src/Model/User.php:990 +#: src/Model/User.php:1038 #, php-format msgid "" "system.username_min_length (%s) and system.username_max_length (%s) are " "excluding each other, swapping values." msgstr "system.username_min_length (%s) i system.username_max_length (%s) wykluczają się nawzajem, zamieniając wartości." -#: src/Model/User.php:997 +#: src/Model/User.php:1045 #, php-format msgid "Username should be at least %s character." msgid_plural "Username should be at least %s characters." @@ -4151,7 +3451,7 @@ msgstr[1] "Nazwa użytkownika powinna wynosić co najmniej %s znaków." msgstr[2] "Nazwa użytkownika powinna wynosić co najmniej %s znaków." msgstr[3] "Nazwa użytkownika powinna wynosić co najmniej %s znaków." -#: src/Model/User.php:1001 +#: src/Model/User.php:1049 #, php-format msgid "Username should be at most %s character." msgid_plural "Username should be at most %s characters." @@ -4160,60 +3460,60 @@ msgstr[1] "Nazwa użytkownika nie może mieć więcej niż %s znaków." msgstr[2] "Nazwa użytkownika nie może mieć więcej niż %s znaków." msgstr[3] "Nazwa użytkownika nie może mieć więcej niż %s znaków." -#: src/Model/User.php:1009 +#: src/Model/User.php:1057 msgid "That doesn't appear to be your full (First Last) name." msgstr "Wydaje mi się, że to nie jest twoje pełne imię (pierwsze imię) i nazwisko." -#: src/Model/User.php:1014 +#: src/Model/User.php:1062 msgid "Your email domain is not among those allowed on this site." msgstr "Twoja domena internetowa nie jest obsługiwana na tej stronie." -#: src/Model/User.php:1018 +#: src/Model/User.php:1066 msgid "Not a valid email address." msgstr "Niepoprawny adres e-mail." -#: src/Model/User.php:1021 +#: src/Model/User.php:1069 msgid "The nickname was blocked from registration by the nodes admin." msgstr "Pseudonim został zablokowany przed rejestracją przez administratora węzłów." -#: src/Model/User.php:1025 src/Model/User.php:1033 +#: src/Model/User.php:1073 src/Model/User.php:1079 msgid "Cannot use that email." msgstr "Nie można użyć tego e-maila." -#: src/Model/User.php:1040 +#: src/Model/User.php:1085 msgid "Your nickname can only contain a-z, 0-9 and _." msgstr "Twój pseudonim może zawierać tylko a-z, 0-9 i _." -#: src/Model/User.php:1048 src/Model/User.php:1105 +#: src/Model/User.php:1093 src/Model/User.php:1150 msgid "Nickname is already registered. Please choose another." msgstr "Ten login jest zajęty. Wybierz inny." -#: src/Model/User.php:1092 src/Model/User.php:1096 +#: src/Model/User.php:1137 src/Model/User.php:1141 msgid "An error occurred during registration. Please try again." msgstr "Wystąpił bład podczas rejestracji, Spróbuj ponownie." -#: src/Model/User.php:1119 +#: src/Model/User.php:1164 msgid "An error occurred creating your default profile. Please try again." msgstr "Wystąpił błąd podczas tworzenia profilu. Spróbuj ponownie." -#: src/Model/User.php:1126 +#: src/Model/User.php:1171 msgid "An error occurred creating your self contact. Please try again." msgstr "Wystąpił błąd podczas tworzenia własnego kontaktu. Proszę spróbuj ponownie." -#: src/Model/User.php:1131 +#: src/Model/User.php:1176 msgid "Friends" msgstr "Przyjaciele" -#: src/Model/User.php:1135 +#: src/Model/User.php:1180 msgid "" "An error occurred creating your default contact group. Please try again." msgstr "Wystąpił błąd podczas tworzenia domyślnej grupy kontaktów. Proszę spróbuj ponownie." -#: src/Model/User.php:1174 +#: src/Model/User.php:1219 msgid "Profile Photos" msgstr "Zdjęcie profilowe" -#: src/Model/User.php:1367 +#: src/Model/User.php:1412 #, php-format msgid "" "\n" @@ -4221,7 +3521,7 @@ msgid "" "\t\t\tthe administrator of %2$s has set up an account for you." msgstr "\n\t\tSzanowna/y %1$s,\n\t\t\tadministrator of %2$s założył dla Ciebie konto." -#: src/Model/User.php:1370 +#: src/Model/User.php:1415 #, php-format msgid "" "\n" @@ -4248,17 +3548,17 @@ msgid "" "\t\tIf you are new and do not know anybody here, they may help\n" "\t\tyou to make some new and interesting friends.\n" "\n" -"\t\tIf you ever want to delete your account, you can do so at %1$s/removeme\n" +"\t\tIf you ever want to delete your account, you can do so at %1$s/settings/removeme\n" "\n" "\t\tThank you and welcome to %4$s." -msgstr "\n\t\tDane logowania są następuje:\n\n\t\tPołożenie witryny:\t%1$s\n\t\tNazwa użytkownika\t\t:%2$s\n\t\tHasło:\t\t%3$s\n\n\t\tPo zalogowaniu możesz zmienić hasło do swojego konta na stronie \"Ustawienia\".\n\n\t\tProszę poświęć chwilę, aby przejrzeć inne ustawienia konta na tej stronie.\n\n\t\tMożesz również chcieć dodać podstawowe informacje do swojego domyślnego profilu\n\t\t(na stronie \"Profile\"), aby inne osoby mogły łatwo Cię znaleźć.\n\n\t\tZalecamy ustawienie imienia i nazwiska, dodanie zdjęcia profilowego,\n\t\tdodanie pewnych \"słów kluczowych\" profilu (bardzo przydatne w nawiązywaniu nowych znajomości) \n\t\ti być może miejsca, gdzie mieszkasz; jeśli nie chcesz podawać więcej szczegółów.\n\n\t\tW pełni szanujemy Twoje prawo do prywatności i żadna z tych danych nie jest konieczna.\n\t\tJeśli jesteś nowy i nie znasz tutaj nikogo, mogą one Ci pomóc,\n\t\tw pozyskaniu nowych i interesujących przyjaciół.\n\n\t\tJeśli kiedykolwiek zechcesz usunąć swoje konto, możesz to zrobić na stronie %1$s/removeme\n\n\t\tDziękujemy i zapraszamy do%4$s." +msgstr "" -#: src/Model/User.php:1403 src/Model/User.php:1510 +#: src/Model/User.php:1448 src/Model/User.php:1555 #, php-format msgid "Registration details for %s" msgstr "Szczegóły rejestracji dla %s" -#: src/Model/User.php:1423 +#: src/Model/User.php:1468 #, php-format msgid "" "\n" @@ -4273,12 +3573,12 @@ msgid "" "\t\t" msgstr "\n\t\t\tSzanowny Użytkowniku %1$s,\n\t\t\t\tDziękujemy za rejestrację na stronie %2$s. Twoje konto czeka na zatwierdzenie przez administratora.\n\n\t\t\tTwoje dane do logowania są następujące:\n\n\t\t\tLokalizacja witryny:\t%3$s\n\t\t\tNazwa użytkownika:\t\t%4$s\n\t\t\tHasło:\t\t%5$s\n\t\t" -#: src/Model/User.php:1442 +#: src/Model/User.php:1487 #, php-format msgid "Registration at %s" msgstr "Rejestracja w %s" -#: src/Model/User.php:1466 +#: src/Model/User.php:1511 #, php-format msgid "" "\n" @@ -4287,7 +3587,7 @@ msgid "" "\t\t\t" msgstr "\n\t\t\t\tSzanowna/y %1$s,\n\t\t\t\tDziękujemy za rejestrację w %2$s. Twoje konto zostało utworzone.\n\t\t\t" -#: src/Model/User.php:1474 +#: src/Model/User.php:1519 #, php-format msgid "" "\n" @@ -4314,10 +3614,10 @@ msgid "" "\t\t\tIf you are new and do not know anybody here, they may help\n" "\t\t\tyou to make some new and interesting friends.\n" "\n" -"\t\t\tIf you ever want to delete your account, you can do so at %3$s/removeme\n" +"\t\t\tIf you ever want to delete your account, you can do so at %3$s/settings/removeme\n" "\n" "\t\t\tThank you and welcome to %2$s." -msgstr "\n\t\t\tDane logowania są następuje:\n\t\t\tLokalizacja witryny:\t%3$s\n\t\t\tNazwa użytkownika:\t\t%1$s\n\t\t\tHasło:\t\t%5$s\n\n\t\t\tPo zalogowaniu możesz zmienić hasło do swojego konta na stronie \"Ustawienia\".\n \t\t\tProszę poświęć chwilę, aby przejrzeć inne ustawienia konta na tej stronie.\n\n\t\t\tMożesz również dodać podstawowe informacje do swojego domyślnego profilu\n\t\t\t(na stronie \"Profil użytkownika\"), aby inne osoby mogły łatwo Cię znaleźć.\n\n\t\t\tZalecamy ustawienie imienia i nazwiska, dodanie zdjęcia profilowego,\n\t\t\tdodanie niektórych \"słów kluczowych\" profilu (bardzo przydatne w nawiązywaniu nowych znajomości) \n\t\t\ti być może gdzie mieszkasz; jeśli nie chcesz podać więcej szczegów.\n\n\t\t\tW pełni szanujemy Twoje prawo do prywatności i żaden z tych elementów nie jest konieczny.\n\t\t\tJeśli jesteś nowy i nie znasz tutaj nikogo, oni mogą ci pomóc\n\t\t\tmożesz zdobyć nowych interesujących przyjaciół.\n\n\t\t\tJeśli kiedykolwiek zechcesz usunąć swoje konto, możesz to zrobić na stronie %3$s/removeme\n\n\t\t\tDziękujemy i Zapraszamy do %2$s." +msgstr "" #: src/Module/Admin/Addons/Details.php:65 msgid "Addon not found." @@ -4344,26 +3644,20 @@ msgid "Enable" msgstr "Zezwól" #: src/Module/Admin/Addons/Details.php:111 -#: src/Module/Admin/Addons/Index.php:67 -#: src/Module/Admin/Blocklist/Contact.php:94 -#: src/Module/Admin/Blocklist/Server/Add.php:89 -#: src/Module/Admin/Blocklist/Server/Index.php:78 -#: src/Module/Admin/Federation.php:196 src/Module/Admin/Item/Delete.php:64 +#: src/Module/Admin/Addons/Index.php:67 src/Module/Admin/Federation.php:202 #: src/Module/Admin/Logs/Settings.php:79 src/Module/Admin/Logs/View.php:84 -#: src/Module/Admin/Queue.php:72 src/Module/Admin/Site.php:433 -#: src/Module/Admin/Storage.php:138 src/Module/Admin/Summary.php:233 +#: src/Module/Admin/Queue.php:72 src/Module/Admin/Site.php:437 +#: src/Module/Admin/Storage.php:138 src/Module/Admin/Summary.php:216 #: src/Module/Admin/Themes/Details.php:90 -#: src/Module/Admin/Themes/Index.php:111 src/Module/Admin/Tos.php:75 -#: src/Module/Admin/Users/Active.php:136 -#: src/Module/Admin/Users/Blocked.php:137 src/Module/Admin/Users/Create.php:61 -#: src/Module/Admin/Users/Deleted.php:85 src/Module/Admin/Users/Index.php:149 -#: src/Module/Admin/Users/Pending.php:101 +#: 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 msgid "Administration" msgstr "Administracja" #: src/Module/Admin/Addons/Details.php:112 -#: src/Module/Admin/Addons/Index.php:68 src/Module/BaseAdmin.php:96 -#: src/Module/BaseSettings.php:85 +#: src/Module/Admin/Addons/Index.php:68 src/Module/BaseAdmin.php:92 +#: src/Module/BaseSettings.php:134 msgid "Addons" msgstr "Dodatki" @@ -4391,6 +3685,17 @@ msgstr "Dodatki zostały ponownie wczytane" msgid "Addon %s failed to install." msgstr "Instalacja dodatku %s nie powiodła się." +#: src/Module/Admin/Addons/Index.php:69 src/Module/Admin/Features.php:87 +#: src/Module/Admin/Logs/Settings.php:81 src/Module/Admin/Site.php:440 +#: src/Module/Admin/Themes/Index.php:113 src/Module/Admin/Tos.php:86 +#: src/Module/Settings/Account.php:560 src/Module/Settings/Addons.php:81 +#: src/Module/Settings/Connectors.php:159 +#: src/Module/Settings/Connectors.php:244 +#: src/Module/Settings/Delegation.php:169 src/Module/Settings/Display.php:211 +#: src/Module/Settings/Features.php:76 +msgid "Save Settings" +msgstr "Zapisz ustawienia" + #: src/Module/Admin/Addons/Index.php:70 msgid "Reload active addons" msgstr "Wczytaj ponownie aktywne dodatki" @@ -4403,337 +3708,6 @@ msgid "" " the open addon registry at %2$s" msgstr "W twoim węźle nie ma obecnie żadnych dodatków. Możesz znaleźć oficjalne repozytorium dodatków na %1$s i możesz znaleźć inne interesujące dodatki w otwartym rejestrze dodatków na %2$s" -#: src/Module/Admin/BaseUsers.php:54 -msgid "List of all users" -msgstr "Lista wszystkich użytkowników" - -#: src/Module/Admin/BaseUsers.php:59 -msgid "Active" -msgstr "Aktywne" - -#: src/Module/Admin/BaseUsers.php:62 -msgid "List of active accounts" -msgstr "Lista aktywnych kont" - -#: src/Module/Admin/BaseUsers.php:67 src/Module/Contact.php:314 -#: src/Module/Contact.php:374 -msgid "Pending" -msgstr "Oczekujące" - -#: src/Module/Admin/BaseUsers.php:70 -msgid "List of pending registrations" -msgstr "Lista oczekujących rejestracji" - -#: src/Module/Admin/BaseUsers.php:75 src/Module/Contact.php:322 -#: src/Module/Contact.php:375 -msgid "Blocked" -msgstr "Zablokowane" - -#: src/Module/Admin/BaseUsers.php:78 -msgid "List of blocked users" -msgstr "Lista zablokowanych użytkowników" - -#: src/Module/Admin/BaseUsers.php:83 -msgid "Deleted" -msgstr "Usunięte" - -#: src/Module/Admin/BaseUsers.php:86 -msgid "List of pending user deletions" -msgstr "Lista oczekujących na usunięcie użytkowników" - -#: src/Module/Admin/BaseUsers.php:100 src/Module/Settings/Account.php:493 -msgid "Normal Account Page" -msgstr "Normalna strona konta" - -#: src/Module/Admin/BaseUsers.php:101 src/Module/Settings/Account.php:500 -msgid "Soapbox Page" -msgstr "Strona Soapbox" - -#: src/Module/Admin/BaseUsers.php:102 src/Module/Settings/Account.php:507 -msgid "Public Forum" -msgstr "Forum publiczne" - -#: src/Module/Admin/BaseUsers.php:103 src/Module/Settings/Account.php:514 -msgid "Automatic Friend Page" -msgstr "Automatyczna strona znajomego" - -#: src/Module/Admin/BaseUsers.php:104 -msgid "Private Forum" -msgstr "Prywatne forum" - -#: src/Module/Admin/BaseUsers.php:107 src/Module/Settings/Account.php:465 -msgid "Personal Page" -msgstr "Strona osobista" - -#: src/Module/Admin/BaseUsers.php:108 src/Module/Settings/Account.php:472 -msgid "Organisation Page" -msgstr "Strona Organizacji" - -#: src/Module/Admin/BaseUsers.php:109 src/Module/Settings/Account.php:479 -msgid "News Page" -msgstr "Strona Wiadomości" - -#: src/Module/Admin/BaseUsers.php:110 src/Module/Settings/Account.php:486 -msgid "Community Forum" -msgstr "Forum społecznościowe" - -#: src/Module/Admin/BaseUsers.php:111 -msgid "Relay" -msgstr "Przekaźnik" - -#: src/Module/Admin/Blocklist/Contact.php:54 -msgid "You can't block a local contact, please block the user instead" -msgstr "Nie możesz zablokować lokalnego kontaktu, zamiast tego zablokuj użytkownika" - -#: src/Module/Admin/Blocklist/Contact.php:73 -#, php-format -msgid "%s contact unblocked" -msgid_plural "%s contacts unblocked" -msgstr[0] "%s kontakt odblokowany" -msgstr[1] "%s kontakty odblokowane" -msgstr[2] "%s kontaktów odblokowanych" -msgstr[3] "%s kontaktów odblokowanych" - -#: src/Module/Admin/Blocklist/Contact.php:95 -msgid "Remote Contact Blocklist" -msgstr "Lista zablokowanych kontaktów zdalnych" - -#: src/Module/Admin/Blocklist/Contact.php:96 -msgid "" -"This page allows you to prevent any message from a remote contact to reach " -"your node." -msgstr "Ta strona pozwala zapobiec wysyłaniu do węzła wiadomości od kontaktu zdalnego." - -#: src/Module/Admin/Blocklist/Contact.php:97 -msgid "Block Remote Contact" -msgstr "Zablokuj kontakt zdalny" - -#: src/Module/Admin/Blocklist/Contact.php:98 -#: src/Module/Admin/Users/Active.php:138 -#: src/Module/Admin/Users/Blocked.php:139 src/Module/Admin/Users/Index.php:151 -#: src/Module/Admin/Users/Pending.php:103 -msgid "select all" -msgstr "zaznacz wszystko" - -#: src/Module/Admin/Blocklist/Contact.php:99 -msgid "select none" -msgstr "wybierz brak" - -#: src/Module/Admin/Blocklist/Contact.php:101 -#: src/Module/Admin/Users/Blocked.php:142 src/Module/Admin/Users/Index.php:156 -#: src/Module/Contact.php:398 src/Module/Contact/Profile.php:348 -#: src/Module/Contact/Profile.php:449 -msgid "Unblock" -msgstr "Odblokuj" - -#: src/Module/Admin/Blocklist/Contact.php:102 -msgid "No remote contact is blocked from this node." -msgstr "Z tego węzła nie jest blokowany kontakt zdalny." - -#: src/Module/Admin/Blocklist/Contact.php:104 -msgid "Blocked Remote Contacts" -msgstr "Zablokowane kontakty zdalne" - -#: src/Module/Admin/Blocklist/Contact.php:105 -msgid "Block New Remote Contact" -msgstr "Zablokuj nowy kontakt zdalny" - -#: src/Module/Admin/Blocklist/Contact.php:106 -msgid "Photo" -msgstr "Zdjęcie" - -#: src/Module/Admin/Blocklist/Contact.php:106 -msgid "Reason" -msgstr "Powód" - -#: src/Module/Admin/Blocklist/Contact.php:114 -#, php-format -msgid "%s total blocked contact" -msgid_plural "%s total blocked contacts" -msgstr[0] "łącznie %s zablokowany kontakt" -msgstr[1] "łącznie %s zablokowane kontakty" -msgstr[2] "łącznie %s zablokowanych kontaktów" -msgstr[3] "%s całkowicie zablokowane kontakty" - -#: src/Module/Admin/Blocklist/Contact.php:116 -msgid "URL of the remote contact to block." -msgstr "Adres URL kontaktu zdalnego do zablokowania." - -#: src/Module/Admin/Blocklist/Contact.php:117 -msgid "Also purge contact" -msgstr "Wyczyść również kontakt" - -#: src/Module/Admin/Blocklist/Contact.php:117 -msgid "" -"Removes all content related to this contact from the node. Keeps the contact" -" record. This action cannot be undone." -msgstr "Usuwa z węzła całą zawartość związaną z tym kontaktem. Zachowuje rejestr kontaktów. Tej czynności nie można cofnąć." - -#: src/Module/Admin/Blocklist/Contact.php:118 -msgid "Block Reason" -msgstr "Powód blokady" - -#: src/Module/Admin/Blocklist/Server/Add.php:55 -msgid "Server domain pattern added to the blocklist." -msgstr "Do listy zablokowanych dodano wzorzec domeny serwera." - -#: src/Module/Admin/Blocklist/Server/Add.php:63 -#, php-format -msgid "%s server scheduled to be purged." -msgid_plural "%s servers scheduled to be purged." -msgstr[0] "%s serwer zaplanowany do usunięcia." -msgstr[1] "%s serwery zaplanowane do usunięcia." -msgstr[2] "%s serwerów zaplanowanych do usunięcia." -msgstr[3] "%s serwerów zaplanowanych do usunięcia." - -#: src/Module/Admin/Blocklist/Server/Add.php:88 -msgid "← Return to the list" -msgstr "← Wróć do listy" - -#: src/Module/Admin/Blocklist/Server/Add.php:90 -msgid "Block A New Server Domain Pattern" -msgstr "Zablokuj nowy wzorzec domeny serwera" - -#: src/Module/Admin/Blocklist/Server/Add.php:91 -#: src/Module/Admin/Blocklist/Server/Index.php:82 -msgid "" -"

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

\n" -"
    \n" -"\t
  • *: Any number of characters
  • \n" -"\t
  • ?: Any single character
  • \n" -"
" -msgstr "

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

\n
    \n\t
  • *: Dowolna liczba znaków
  • \n\t
  • ?: Dowolny pojedynczy znak
  • \n
" - -#: src/Module/Admin/Blocklist/Server/Add.php:96 -#: src/Module/Admin/Blocklist/Server/Index.php:88 -msgid "Check pattern" -msgstr "Sprawdź wzór" - -#: src/Module/Admin/Blocklist/Server/Add.php:97 -msgid "Matching known servers" -msgstr "Dopasowanie znanych serwerów" - -#: src/Module/Admin/Blocklist/Server/Add.php:98 -msgid "Server Name" -msgstr "Nazwa serwera" - -#: src/Module/Admin/Blocklist/Server/Add.php:99 -msgid "Server Domain" -msgstr "Domena serwera" - -#: src/Module/Admin/Blocklist/Server/Add.php:100 -msgid "Known Contacts" -msgstr "Znane kontakty" - -#: src/Module/Admin/Blocklist/Server/Add.php:101 -#, php-format -msgid "%d known server" -msgid_plural "%d known servers" -msgstr[0] "%d znany serwer" -msgstr[1] "%d znane serwery" -msgstr[2] "%d znanych serwerów" -msgstr[3] "%d znanych serwerów" - -#: src/Module/Admin/Blocklist/Server/Add.php:102 -msgid "Add pattern to the blocklist" -msgstr "Dodaj wzór do listy blokad" - -#: src/Module/Admin/Blocklist/Server/Add.php:104 -#: src/Module/Admin/Blocklist/Server/Index.php:96 -msgid "Server Domain Pattern" -msgstr "Wzorzec domeny serwera" - -#: src/Module/Admin/Blocklist/Server/Add.php:104 -#: src/Module/Admin/Blocklist/Server/Index.php:96 -msgid "" -"The domain pattern of the new server to add to the blocklist. Do not include" -" the protocol." -msgstr "Wzorzec domeny nowego serwera do dodania do listy blokad. Nie dołączaj protokołu." - -#: src/Module/Admin/Blocklist/Server/Add.php:105 -msgid "Purge server" -msgstr "Wyczyść serwer" - -#: src/Module/Admin/Blocklist/Server/Add.php:105 -msgid "" -"Also purges all the locally stored content authored by the known contacts " -"registered on that server. Keeps the contacts and the server records. This " -"action cannot be undone." -msgid_plural "" -"Also purges all the locally stored content authored by the known contacts " -"registered on these servers. Keeps the contacts and the servers records. " -"This action cannot be undone." -msgstr[0] "Usuwa również całą lokalnie przechowywaną zawartość stworzoną przez znane kontakty zarejestrowane na tych serwerach. Zachowuje ewidencję kontaktów i serwerów. Tej czynności nie można cofnąć." -msgstr[1] "Usuwa również całą lokalnie przechowywaną zawartość stworzoną przez znane kontakty zarejestrowane na tych serwerach. Zachowuje ewidencję kontaktów i serwerów. Tej czynności nie można cofnąć." -msgstr[2] "Usuwa również całą lokalnie przechowywaną zawartość stworzoną przez znane kontakty zarejestrowane na tych serwerach. Zachowuje ewidencję kontaktów i serwerów. Tej czynności nie można cofnąć." -msgstr[3] "Usuwa również całą lokalnie przechowywaną zawartość stworzoną przez znane kontakty zarejestrowane na tych serwerach. Zachowuje ewidencję kontaktów i serwerów. Tej czynności nie można cofnąć." - -#: src/Module/Admin/Blocklist/Server/Add.php:106 -msgid "Block reason" -msgstr "Powód zablokowania" - -#: src/Module/Admin/Blocklist/Server/Add.php:106 -msgid "" -"The reason why you blocked this server domain pattern. This reason will be " -"shown publicly in the server information page." -msgstr "Powód, dla którego zablokowałeś ten wzorzec domeny serwera. Powód ten zostanie pokazany publicznie na stronie informacyjnej serwera." - -#: src/Module/Admin/Blocklist/Server/Index.php:68 -#: src/Module/Admin/Blocklist/Server/Index.php:91 -msgid "Blocked server domain pattern" -msgstr "Zablokowany wzorzec domeny serwera" - -#: src/Module/Admin/Blocklist/Server/Index.php:69 -#: src/Module/Admin/Blocklist/Server/Index.php:92 src/Module/Friendica.php:82 -msgid "Reason for the block" -msgstr "Powód blokowania" - -#: src/Module/Admin/Blocklist/Server/Index.php:70 -msgid "Delete server domain pattern" -msgstr "Usuń wzorzec domeny serwera" - -#: src/Module/Admin/Blocklist/Server/Index.php:70 -msgid "Check to delete this entry from the blocklist" -msgstr "Zaznacz, aby usunąć ten wpis z listy bloków" - -#: src/Module/Admin/Blocklist/Server/Index.php:79 -msgid "Server Domain Pattern Blocklist" -msgstr "Lista bloków wzorców domen serwerów" - -#: src/Module/Admin/Blocklist/Server/Index.php:80 -msgid "" -"This page can be used to define a blocklist of server domain patterns from " -"the federated network that are not allowed to interact with your node. For " -"each domain pattern you should also provide the reason why you block it." -msgstr "Ta strona może służyć do definiowania listy zablokowanych wzorców domen serwera z sieci stowarzyszonej, które nie mogą komunikować się z węzłem. Dla każdego wzorca domeny należy również podać powód, dla którego go blokujesz." - -#: src/Module/Admin/Blocklist/Server/Index.php:81 -msgid "" -"The list of blocked server domain patterns will be made publically available" -" on the /friendica page so that your users and " -"people investigating communication problems can find the reason easily." -msgstr "Lista zablokowanych wzorców domen serwera zostanie udostępniona publicznie na stronie /friendica, aby użytkownicy i osoby badające problemy z komunikacją mogły łatwo znaleźć przyczynę." - -#: src/Module/Admin/Blocklist/Server/Index.php:87 -msgid "Add new entry to the blocklist" -msgstr "Dodaj nowy wpis do listy zablokowanych" - -#: src/Module/Admin/Blocklist/Server/Index.php:89 -msgid "Save changes to the blocklist" -msgstr "Zapisz zmiany w liście zablokowanych" - -#: src/Module/Admin/Blocklist/Server/Index.php:90 -msgid "Current Entries in the Blocklist" -msgstr "Aktualne wpisy na liście zablokowanych" - -#: src/Module/Admin/Blocklist/Server/Index.php:93 -msgid "Delete entry from the blocklist" -msgstr "Usuń wpis z listy zablokowanych" - -#: src/Module/Admin/Blocklist/Server/Index.php:94 -msgid "Delete entry from the blocklist?" -msgstr "Usunąć wpis z listy zablokowanych?" - #: src/Module/Admin/DBSync.php:51 msgid "Update has been marked successful" msgstr "Aktualizacja została oznaczona jako udana" @@ -4802,150 +3776,102 @@ msgstr "Funkcja blokady %s" msgid "Manage Additional Features" msgstr "Zarządzanie dodatkowymi funkcjami" -#: src/Module/Admin/Federation.php:65 +#: src/Module/Admin/Federation.php:70 msgid "Other" msgstr "Inne" -#: src/Module/Admin/Federation.php:136 src/Module/Admin/Federation.php:385 +#: src/Module/Admin/Federation.php:142 src/Module/Admin/Federation.php:391 msgid "unknown" msgstr "nieznany" -#: src/Module/Admin/Federation.php:169 +#: src/Module/Admin/Federation.php:175 #, php-format -msgid "%s total systems" -msgstr "%s łącznie systemów" - -#: src/Module/Admin/Federation.php:170 -#, php-format -msgid "%s active users last month" -msgstr "%s aktywnych użytkowników w ostatnim miesiącu" - -#: src/Module/Admin/Federation.php:171 -#, php-format -msgid "%s active users last six months" -msgstr "%s aktywnych użytkowników za ostatnie 6 miesięcy" - -#: src/Module/Admin/Federation.php:172 -#, php-format -msgid "%s registered users" -msgstr "%s zarejestrowanych użytkowników" - -#: src/Module/Admin/Federation.php:173 -#, php-format -msgid "%s locally created posts and comments" -msgstr "%s lokalnie utworzonych wpisów i komentarzy" +msgid "%2$s total system" +msgid_plural "%2$s total systems" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: src/Module/Admin/Federation.php:176 #, php-format -msgid "%s posts per user" -msgstr "%s wpisy na użytkownika" +msgid "%2$s active user last month" +msgid_plural "%2$s active users last month" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: src/Module/Admin/Federation.php:181 +#: src/Module/Admin/Federation.php:177 #, php-format -msgid "%s users per system" -msgstr "%s użytkowników na system" +msgid "%2$s active user last six months" +msgid_plural "%2$s active users last six months" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: src/Module/Admin/Federation.php:191 +#: src/Module/Admin/Federation.php:178 +#, php-format +msgid "%2$s registered user" +msgid_plural "%2$s registered users" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: src/Module/Admin/Federation.php:179 +#, php-format +msgid "%2$s locally created post or comment" +msgid_plural "%2$s locally created posts and comments" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: src/Module/Admin/Federation.php:182 +#, php-format +msgid "%2$s post per user" +msgid_plural "%2$s posts per user" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: src/Module/Admin/Federation.php:187 +#, php-format +msgid "%2$s user per system" +msgid_plural "%2$s users per system" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: src/Module/Admin/Federation.php:197 msgid "" "This page offers you some numbers to the known part of the federated social " "network your Friendica node is part of. These numbers are not complete but " "only reflect the part of the network your node is aware of." msgstr "Ta strona zawiera kilka numerów do znanej części federacyjnej sieci społecznościowej, do której należy Twój węzeł Friendica. Liczby te nie są kompletne, ale odzwierciedlają tylko część sieci, o której wie twój węzeł." -#: src/Module/Admin/Federation.php:197 src/Module/BaseAdmin.php:90 +#: src/Module/Admin/Federation.php:203 src/Module/BaseAdmin.php:87 msgid "Federation Statistics" msgstr "Statystyki Federacji" -#: src/Module/Admin/Federation.php:201 +#: src/Module/Admin/Federation.php:207 #, php-format msgid "" -"Currently this node is aware of %s nodes (%s active users last month, %s " -"active users last six months, %s registered users in total) from the " +"Currently this node is aware of %2$s node (%3$s active users last month, " +"%4$s active users last six months, %5$s registered users in total) from the " "following platforms:" -msgstr "Obecnie ten węzeł jest świadomy %s węzłów (%s aktywnych użytkowników w zeszłym miesiącu, %s aktywnych użytkowników w ciągu ostatnich sześciu miesięcy, %s łącznie zarejestrowanych użytkowników) z następujących platform:" - -#: src/Module/Admin/Item/Delete.php:53 -msgid "Item marked for deletion." -msgstr "Przedmiot oznaczony do usunięcia." - -#: src/Module/Admin/Item/Delete.php:65 src/Module/BaseAdmin.php:109 -msgid "Delete Item" -msgstr "Usuń przedmiot" - -#: src/Module/Admin/Item/Delete.php:66 -msgid "Delete this Item" -msgstr "Usuń ten przedmiot" - -#: src/Module/Admin/Item/Delete.php:67 -msgid "" -"On this page you can delete an item from your node. If the item is a top " -"level posting, the entire thread will be deleted." -msgstr "Na tej stronie możesz usunąć przedmiot ze swojego węzła. Jeśli element jest publikowaniem na najwyższym poziomie, cały wątek zostanie usunięty." - -#: src/Module/Admin/Item/Delete.php:68 -msgid "" -"You need to know the GUID of the item. You can find it e.g. by looking at " -"the display URL. The last part of http://example.com/display/123456 is the " -"GUID, here 123456." -msgstr "Musisz znać identyfikator GUID tego przedmiotu. Możesz go znaleźć np. patrząc na wyświetlany adres URL. Ostatnia część http://example.com/display/123456 to GUID, tutaj 123456." - -#: src/Module/Admin/Item/Delete.php:69 -msgid "GUID" -msgstr "GUID" - -#: src/Module/Admin/Item/Delete.php:69 -msgid "The GUID of the item you want to delete." -msgstr "Identyfikator elementu GUID, który chcesz usunąć." - -#: src/Module/Admin/Item/Source.php:57 src/Module/BaseAdmin.php:119 -msgid "Item Source" -msgstr "Źródło elementu" - -#: src/Module/Admin/Item/Source.php:58 -msgid "Item Guid" -msgstr "Element Guid" - -#: src/Module/Admin/Item/Source.php:63 -msgid "Item Id" -msgstr "Identyfikator elementu" - -#: src/Module/Admin/Item/Source.php:64 -msgid "Item URI" -msgstr "Identyfikator URI elementu" - -#: src/Module/Admin/Item/Source.php:66 -msgid "Terms" -msgstr "Zasady" - -#: src/Module/Admin/Item/Source.php:67 -msgid "Tag" -msgstr "Znacznik" - -#: src/Module/Admin/Item/Source.php:68 src/Module/Admin/Users/Active.php:129 -#: src/Module/Admin/Users/Blocked.php:130 src/Module/Admin/Users/Index.php:142 -msgid "Type" -msgstr "Typu" - -#: src/Module/Admin/Item/Source.php:69 -msgid "Term" -msgstr "Zasada" - -#: src/Module/Admin/Item/Source.php:70 -msgid "URL" -msgstr "URL" - -#: src/Module/Admin/Item/Source.php:71 -msgid "Mention" -msgstr "Wzmianka" - -#: src/Module/Admin/Item/Source.php:72 -msgid "Implicit Mention" -msgstr "Wzmianka niejawna" - -#: src/Module/Admin/Item/Source.php:73 src/Module/Admin/Logs/View.php:99 -#: src/Module/Debug/ActivityPubConversion.php:62 -msgid "Source" -msgstr "Źródło" +msgid_plural "" +"Currently this node is aware of %2$s nodes (%3$s active users last month, " +"%4$s active users last six months, %5$s registered users in total) from the " +"following platforms:" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: src/Module/Admin/Logs/Settings.php:47 #, php-format @@ -4960,8 +3886,8 @@ msgstr "Dziennik PHP jest obecnie włączony." msgid "PHP log currently disabled." msgstr "Dziennik PHP jest obecnie wyłączony." -#: src/Module/Admin/Logs/Settings.php:80 src/Module/BaseAdmin.php:111 -#: src/Module/BaseAdmin.php:112 +#: src/Module/Admin/Logs/Settings.php:80 src/Module/BaseAdmin.php:102 +#: src/Module/BaseAdmin.php:103 msgid "Logs" msgstr "Dzienniki" @@ -5014,7 +3940,7 @@ msgid "" "is readable." msgstr "Nie udało się otworzyć pliku dziennika %1$s. Sprawdź, czy plik %1$s jest odczytywalny." -#: src/Module/Admin/Logs/View.php:85 src/Module/BaseAdmin.php:113 +#: src/Module/Admin/Logs/View.php:85 src/Module/BaseAdmin.php:104 msgid "View Logs" msgstr "Zobacz rejestry" @@ -5023,7 +3949,7 @@ msgid "Search in logs" msgstr "Szukaj w dziennikach" #: src/Module/Admin/Logs/View.php:89 -#: src/Module/Notifications/Notifications.php:139 +#: src/Module/Notifications/Notifications.php:140 msgid "Show all" msgstr "Pokaż wszystko" @@ -5051,10 +3977,19 @@ msgstr "Zobacz szczegóły" msgid "Click to view details" msgstr "Kliknij, aby zobaczyć szczegóły" +#: src/Module/Admin/Logs/View.php:97 src/Module/Calendar/Event/Form.php:207 +msgid "Event details" +msgstr "Szczegóły wydarzenia" + #: src/Module/Admin/Logs/View.php:98 msgid "Data" msgstr "Dane" +#: src/Module/Admin/Logs/View.php:99 +#: src/Module/Debug/ActivityPubConversion.php:57 +msgid "Source" +msgstr "Źródło" + #: src/Module/Admin/Logs/View.php:100 msgid "File" msgstr "Plik" @@ -5111,463 +4046,479 @@ msgstr "Polecenie" msgid "Job Parameters" msgstr "Parametry zadania" +#: src/Module/Admin/Queue.php:78 src/Module/Settings/OAuth.php:75 +msgid "Created" +msgstr "Utwórz" + #: src/Module/Admin/Queue.php:79 msgid "Priority" msgstr "Priorytet" -#: src/Module/Admin/Site.php:338 src/Module/Settings/Display.php:138 +#: src/Module/Admin/Site.php:247 +#, php-format +msgid "%s is no valid input for maximum image size" +msgstr "" + +#: src/Module/Admin/Site.php:342 src/Module/Settings/Display.php:141 msgid "No special theme for mobile devices" msgstr "Brak specialnego motywu dla urządzeń mobilnych" -#: src/Module/Admin/Site.php:355 src/Module/Settings/Display.php:148 +#: src/Module/Admin/Site.php:359 src/Module/Settings/Display.php:151 #, php-format msgid "%s - (Experimental)" msgstr "%s- (Eksperymentalne)" -#: src/Module/Admin/Site.php:367 -msgid "No community page for local users" -msgstr "Brak strony społeczności dla użytkowników lokalnych" - -#: src/Module/Admin/Site.php:368 +#: src/Module/Admin/Site.php:371 msgid "No community page" msgstr "Brak strony społeczności" -#: src/Module/Admin/Site.php:369 +#: src/Module/Admin/Site.php:372 +msgid "No community page for visitors" +msgstr "Brak strony społeczności dla odwiedzających" + +#: src/Module/Admin/Site.php:373 msgid "Public postings from users of this site" msgstr "Publikacje publiczne od użytkowników tej strony" -#: src/Module/Admin/Site.php:370 +#: src/Module/Admin/Site.php:374 msgid "Public postings from the federated network" msgstr "Publikacje wpisy ze sfederowanej sieci" -#: src/Module/Admin/Site.php:371 +#: src/Module/Admin/Site.php:375 msgid "Public postings from local users and the federated network" msgstr "Publikacje publiczne od użytkowników lokalnych i sieci federacyjnej" -#: src/Module/Admin/Site.php:377 +#: src/Module/Admin/Site.php:381 msgid "Multi user instance" msgstr "Tryb wielu użytkowników" -#: src/Module/Admin/Site.php:404 +#: src/Module/Admin/Site.php:408 msgid "Closed" msgstr "Zamknięte" -#: src/Module/Admin/Site.php:405 +#: src/Module/Admin/Site.php:409 msgid "Requires approval" msgstr "Wymaga zatwierdzenia" -#: src/Module/Admin/Site.php:406 +#: src/Module/Admin/Site.php:410 msgid "Open" msgstr "Otwarta" -#: src/Module/Admin/Site.php:410 src/Module/Install.php:222 +#: src/Module/Admin/Site.php:414 src/Module/Install.php:222 msgid "No SSL policy, links will track page SSL state" msgstr "Brak SSL, linki będą śledzić stan SSL" -#: src/Module/Admin/Site.php:411 src/Module/Install.php:223 +#: src/Module/Admin/Site.php:415 src/Module/Install.php:223 msgid "Force all links to use SSL" msgstr "Wymuś używanie SSL na wszystkich odnośnikach" -#: src/Module/Admin/Site.php:412 src/Module/Install.php:224 +#: src/Module/Admin/Site.php:416 src/Module/Install.php:224 msgid "Self-signed certificate, use SSL for local links only (discouraged)" msgstr "Certyfikat z podpisem własnym, używaj SSL tylko dla łączy lokalnych (odradzane)" -#: src/Module/Admin/Site.php:416 +#: src/Module/Admin/Site.php:420 msgid "Don't check" msgstr "Nie sprawdzaj" -#: src/Module/Admin/Site.php:417 +#: src/Module/Admin/Site.php:421 msgid "check the stable version" msgstr "sprawdź wersję stabilną" -#: src/Module/Admin/Site.php:418 +#: src/Module/Admin/Site.php:422 msgid "check the development version" msgstr "sprawdź wersję rozwojową" -#: src/Module/Admin/Site.php:422 +#: src/Module/Admin/Site.php:426 msgid "none" msgstr "brak" -#: src/Module/Admin/Site.php:423 +#: src/Module/Admin/Site.php:427 msgid "Local contacts" msgstr "Kontakty lokalne" -#: src/Module/Admin/Site.php:424 +#: src/Module/Admin/Site.php:428 msgid "Interactors" msgstr "Interaktorzy" -#: src/Module/Admin/Site.php:434 src/Module/BaseAdmin.php:93 +#: src/Module/Admin/Site.php:438 src/Module/BaseAdmin.php:90 msgid "Site" msgstr "Strona" -#: src/Module/Admin/Site.php:435 +#: src/Module/Admin/Site.php:439 msgid "General Information" msgstr "Ogólne informacje" -#: src/Module/Admin/Site.php:437 +#: src/Module/Admin/Site.php:441 msgid "Republish users to directory" msgstr "Ponownie opublikuj użytkowników w katalogu" -#: src/Module/Admin/Site.php:438 src/Module/Register.php:152 +#: src/Module/Admin/Site.php:442 src/Module/Register.php:152 msgid "Registration" msgstr "Rejestracja" -#: src/Module/Admin/Site.php:439 +#: src/Module/Admin/Site.php:443 msgid "File upload" msgstr "Przesyłanie plików" -#: src/Module/Admin/Site.php:440 +#: src/Module/Admin/Site.php:444 msgid "Policies" msgstr "Zasady" -#: src/Module/Admin/Site.php:442 +#: src/Module/Admin/Site.php:445 src/Module/Calendar/Event/Form.php:252 +#: src/Module/Contact.php:477 src/Module/Profile/Profile.php:241 +msgid "Advanced" +msgstr "Zaawansowany" + +#: src/Module/Admin/Site.php:446 msgid "Auto Discovered Contact Directory" msgstr "Katalog kontaktów automatycznie odkrytych" -#: src/Module/Admin/Site.php:443 +#: src/Module/Admin/Site.php:447 msgid "Performance" msgstr "Ustawienia" -#: src/Module/Admin/Site.php:444 +#: src/Module/Admin/Site.php:448 msgid "Worker" msgstr "Worker" -#: src/Module/Admin/Site.php:445 +#: src/Module/Admin/Site.php:449 msgid "Message Relay" msgstr "Przekaźnik wiadomości" -#: src/Module/Admin/Site.php:446 +#: src/Module/Admin/Site.php:450 msgid "" "Use the command \"console relay\" in the command line to add or remove " "relays." msgstr "Użyj polecenia „console relay” w wierszu poleceń, aby dodać lub usunąć przekaźniki." -#: src/Module/Admin/Site.php:447 +#: src/Module/Admin/Site.php:451 msgid "The system is not subscribed to any relays at the moment." msgstr "System nie jest aktualnie objęty abonamentem na żadne przekaźniki." -#: src/Module/Admin/Site.php:448 +#: src/Module/Admin/Site.php:452 msgid "The system is currently subscribed to the following relays:" msgstr "System jest obecnie objęty abonamentem na następujące przekaźniki:" -#: src/Module/Admin/Site.php:450 +#: src/Module/Admin/Site.php:454 msgid "Relocate Node" msgstr "Przenieś węzeł" -#: src/Module/Admin/Site.php:451 +#: src/Module/Admin/Site.php:455 msgid "" "Relocating your node enables you to change the DNS domain of this node and " "keep all the existing users and posts. This process takes a while and can " "only be started from the relocate console command like this:" msgstr "Przeniesienie węzła umożliwia zmianę domeny DNS tego węzła i zachowanie wszystkich istniejących użytkowników i wpisów. Ten proces zajmuje trochę czasu i można go uruchomić tylko za pomocą konsolowego polecenia relokacji w następujący sposób:" -#: src/Module/Admin/Site.php:452 +#: src/Module/Admin/Site.php:456 msgid "(Friendica directory)# bin/console relocate https://newdomain.com" msgstr "(Katalog Friendica)# bin/console relocate https://nowadomena.pl" -#: src/Module/Admin/Site.php:456 +#: src/Module/Admin/Site.php:460 msgid "Site name" msgstr "Nazwa strony" -#: src/Module/Admin/Site.php:457 +#: src/Module/Admin/Site.php:461 msgid "Sender Email" msgstr "E-mail nadawcy" -#: src/Module/Admin/Site.php:457 +#: src/Module/Admin/Site.php:461 msgid "" "The email address your server shall use to send notification emails from." msgstr "Adres e-mail używany przez Twój serwer do wysyłania e-maili z powiadomieniami." -#: src/Module/Admin/Site.php:458 +#: src/Module/Admin/Site.php:462 msgid "Name of the system actor" msgstr "Imię i nazwisko aktora systemu" -#: src/Module/Admin/Site.php:458 +#: src/Module/Admin/Site.php:462 msgid "" "Name of the internal system account that is used to perform ActivityPub " "requests. This must be an unused username. If set, this can't be changed " "again." msgstr "Nazwa wewnętrznego konta systemowego, które jest używane do wykonywania żądań ActivityPub. Musi to być nieużywana nazwa użytkownika. Jeśli jest ustawiona, nie można jej zmienić ponownie." -#: src/Module/Admin/Site.php:459 +#: src/Module/Admin/Site.php:463 msgid "Banner/Logo" msgstr "Baner/Logo" -#: src/Module/Admin/Site.php:460 +#: src/Module/Admin/Site.php:464 msgid "Email Banner/Logo" msgstr "Baner/logo e-maila" -#: src/Module/Admin/Site.php:461 +#: src/Module/Admin/Site.php:465 msgid "Shortcut icon" msgstr "Ikona skrótu" -#: src/Module/Admin/Site.php:461 +#: src/Module/Admin/Site.php:465 msgid "Link to an icon that will be used for browsers." msgstr "Link do ikony, która będzie używana w przeglądarkach." -#: src/Module/Admin/Site.php:462 +#: src/Module/Admin/Site.php:466 msgid "Touch icon" msgstr "Dołącz ikonę" -#: src/Module/Admin/Site.php:462 +#: src/Module/Admin/Site.php:466 msgid "Link to an icon that will be used for tablets and mobiles." msgstr "Link do ikony, która będzie używana w tabletach i telefonach komórkowych." -#: src/Module/Admin/Site.php:463 +#: src/Module/Admin/Site.php:467 msgid "Additional Info" msgstr "Dodatkowe informacje" -#: src/Module/Admin/Site.php:463 +#: src/Module/Admin/Site.php:467 #, php-format msgid "" "For public servers: you can add additional information here that will be " "listed at %s/servers." msgstr "W przypadku serwerów publicznych: możesz tu dodać dodatkowe informacje, które będą wymienione na %s/servers." -#: src/Module/Admin/Site.php:464 +#: src/Module/Admin/Site.php:468 msgid "System language" msgstr "Język systemu" -#: src/Module/Admin/Site.php:465 +#: src/Module/Admin/Site.php:469 msgid "System theme" msgstr "Motyw systemowy" -#: src/Module/Admin/Site.php:465 +#: src/Module/Admin/Site.php:469 #, php-format msgid "" "Default system theme - may be over-ridden by user profiles - Change default theme settings" msgstr "Domyślny motyw systemu - może być nadpisywany przez profile użytkowników - Zmień domyślne ustawienia motywu" -#: src/Module/Admin/Site.php:466 +#: src/Module/Admin/Site.php:470 msgid "Mobile system theme" msgstr "Motyw systemu mobilnego" -#: src/Module/Admin/Site.php:466 +#: src/Module/Admin/Site.php:470 msgid "Theme for mobile devices" msgstr "Motyw na urządzenia mobilne" -#: src/Module/Admin/Site.php:467 src/Module/Install.php:232 +#: src/Module/Admin/Site.php:471 src/Module/Install.php:232 msgid "SSL link policy" msgstr "Polityka odnośników SSL" -#: src/Module/Admin/Site.php:467 src/Module/Install.php:234 +#: src/Module/Admin/Site.php:471 src/Module/Install.php:234 msgid "Determines whether generated links should be forced to use SSL" msgstr "Określa, czy generowane odnośniki będą obowiązkowo używały SSL" -#: src/Module/Admin/Site.php:468 +#: src/Module/Admin/Site.php:472 msgid "Force SSL" msgstr "Wymuś SSL" -#: src/Module/Admin/Site.php:468 +#: src/Module/Admin/Site.php:472 msgid "" "Force all Non-SSL requests to SSL - Attention: on some systems it could lead" " to endless loops." msgstr "Wymuszaj wszystkie żądania SSL bez SSL - Uwaga: w niektórych systemach może to prowadzić do niekończących się pętli." -#: src/Module/Admin/Site.php:469 +#: src/Module/Admin/Site.php:473 msgid "Show help entry from navigation menu" msgstr "Pokaż wpis pomocy z menu nawigacyjnego" -#: src/Module/Admin/Site.php:469 +#: src/Module/Admin/Site.php:473 msgid "" "Displays the menu entry for the Help pages from the navigation menu. It is " "always accessible by calling /help directly." msgstr "Wyświetla pozycję menu dla stron pomocy z menu nawigacyjnego. Jest zawsze dostępna, odwołując się bezpośrednio do /help." -#: src/Module/Admin/Site.php:470 +#: src/Module/Admin/Site.php:474 msgid "Single user instance" msgstr "Tryb pojedynczego użytkownika" -#: src/Module/Admin/Site.php:470 +#: src/Module/Admin/Site.php:474 msgid "Make this instance multi-user or single-user for the named user" msgstr "Ustawia tryb dla wielu użytkowników lub pojedynczego użytkownika dla nazwanego użytkownika" -#: src/Module/Admin/Site.php:472 +#: src/Module/Admin/Site.php:476 msgid "Maximum image size" msgstr "Maksymalny rozmiar zdjęcia" -#: src/Module/Admin/Site.php:472 +#: src/Module/Admin/Site.php:476 +#, php-format msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "Maksymalny rozmiar w bitach dla wczytywanego obrazu . Domyślnie jest to 0 , co oznacza bez limitu ." +"Maximum size in bytes of uploaded images. Default is 0, which means no limits. You can put k, m, or g behind the desired value for KiB, MiB, GiB, respectively.\n" +"\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:473 +#: src/Module/Admin/Site.php:480 msgid "Maximum image length" msgstr "Maksymalna długość obrazu" -#: src/Module/Admin/Site.php:473 +#: src/Module/Admin/Site.php:480 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:474 +#: src/Module/Admin/Site.php:481 msgid "JPEG image quality" msgstr "Jakość obrazu JPEG" -#: src/Module/Admin/Site.php:474 +#: src/Module/Admin/Site.php:481 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:476 +#: src/Module/Admin/Site.php:483 msgid "Register policy" msgstr "Zasady rejestracji" -#: src/Module/Admin/Site.php:477 +#: src/Module/Admin/Site.php:484 msgid "Maximum Daily Registrations" msgstr "Maksymalna dzienna rejestracja" -#: src/Module/Admin/Site.php:477 +#: src/Module/Admin/Site.php:484 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:478 +#: src/Module/Admin/Site.php:485 msgid "Register text" msgstr "Zarejestruj tekst" -#: src/Module/Admin/Site.php:478 +#: src/Module/Admin/Site.php:485 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:479 +#: src/Module/Admin/Site.php:486 msgid "Forbidden Nicknames" msgstr "Zakazane pseudonimy" -#: src/Module/Admin/Site.php:479 +#: src/Module/Admin/Site.php:486 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:480 +#: src/Module/Admin/Site.php:487 msgid "Accounts abandoned after x days" msgstr "Konta porzucone po x dni" -#: src/Module/Admin/Site.php:480 +#: src/Module/Admin/Site.php:487 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:481 +#: src/Module/Admin/Site.php:488 msgid "Allowed friend domains" msgstr "Dozwolone domeny przyjaciół" -#: src/Module/Admin/Site.php:481 +#: src/Module/Admin/Site.php:488 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:482 +#: src/Module/Admin/Site.php:489 msgid "Allowed email domains" msgstr "Dozwolone domeny e-mailowe" -#: src/Module/Admin/Site.php:482 +#: src/Module/Admin/Site.php:489 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:483 +#: src/Module/Admin/Site.php:490 msgid "No OEmbed rich content" msgstr "Brak treści multimedialnych ze znaczkiem HTML" -#: src/Module/Admin/Site.php:483 +#: src/Module/Admin/Site.php:490 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:484 +#: src/Module/Admin/Site.php:491 msgid "Trusted third-party domains" msgstr "Zaufane domeny zewnętrzne" -#: src/Module/Admin/Site.php:484 +#: src/Module/Admin/Site.php:491 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:485 +#: src/Module/Admin/Site.php:492 msgid "Block public" msgstr "Blokuj publicznie" -#: src/Module/Admin/Site.php:485 +#: src/Module/Admin/Site.php:492 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:486 +#: src/Module/Admin/Site.php:493 msgid "Force publish" msgstr "Wymuś publikację" -#: src/Module/Admin/Site.php:486 +#: src/Module/Admin/Site.php:493 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:486 +#: src/Module/Admin/Site.php:493 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:487 +#: src/Module/Admin/Site.php:494 msgid "Global directory URL" msgstr "Globalny adres URL katalogu" -#: src/Module/Admin/Site.php:487 +#: src/Module/Admin/Site.php:494 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:488 +#: src/Module/Admin/Site.php:495 msgid "Private posts by default for new users" msgstr "Prywatne posty domyślnie dla nowych użytkowników" -#: src/Module/Admin/Site.php:488 +#: src/Module/Admin/Site.php:495 msgid "" "Set default post permissions for all new members to the default privacy " "group rather than public." msgstr "Ustaw domyślne uprawnienia do publikowania dla wszystkich nowych członków na domyślną grupę prywatności, a nie publiczną." -#: src/Module/Admin/Site.php:489 +#: src/Module/Admin/Site.php:496 msgid "Don't include post content in email notifications" msgstr "Nie wklejaj zawartości postu do powiadomienia o poczcie" -#: src/Module/Admin/Site.php:489 +#: src/Module/Admin/Site.php:496 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:490 +#: src/Module/Admin/Site.php:497 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:490 +#: src/Module/Admin/Site.php:497 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:491 +#: src/Module/Admin/Site.php:498 msgid "Don't embed private images in posts" msgstr "Nie umieszczaj prywatnych zdjęć we wpisach" -#: src/Module/Admin/Site.php:491 +#: src/Module/Admin/Site.php:498 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 " @@ -5575,11 +4526,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:492 +#: src/Module/Admin/Site.php:499 msgid "Explicit Content" msgstr "Treści dla dorosłych" -#: src/Module/Admin/Site.php:492 +#: src/Module/Admin/Site.php:499 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 " @@ -5588,257 +4539,267 @@ 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:493 +#: src/Module/Admin/Site.php:500 msgid "Proxify external content" msgstr "Udostępniaj treści zewnętrzne" -#: src/Module/Admin/Site.php:493 +#: src/Module/Admin/Site.php:500 msgid "" "Route external content via the proxy functionality. This is used for example" " for some OEmbed accesses and in some other rare cases." msgstr "Kieruj zawartość zewnętrzną za pośrednictwem funkcji proxy. Jest to używane na przykład w przypadku niektórych dostępów OEmbed i w niektórych innych rzadkich przypadkach." -#: src/Module/Admin/Site.php:494 +#: src/Module/Admin/Site.php:501 msgid "Cache contact avatars" msgstr "Buforuj awatary kontaktów" -#: src/Module/Admin/Site.php:494 +#: src/Module/Admin/Site.php:501 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:495 +#: src/Module/Admin/Site.php:502 msgid "Allow Users to set remote_self" msgstr "Zezwól użytkownikom na ustawienie remote_self" -#: src/Module/Admin/Site.php:495 +#: src/Module/Admin/Site.php:502 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:496 +#: src/Module/Admin/Site.php:503 msgid "Enable multiple registrations" msgstr "Włącz wiele rejestracji" -#: src/Module/Admin/Site.php:496 +#: src/Module/Admin/Site.php:503 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:497 +#: src/Module/Admin/Site.php:504 msgid "Enable OpenID" msgstr "Włącz OpenID" -#: src/Module/Admin/Site.php:497 +#: src/Module/Admin/Site.php:504 msgid "Enable OpenID support for registration and logins." msgstr "Włącz obsługę OpenID dla rejestracji i logowania." -#: src/Module/Admin/Site.php:498 +#: src/Module/Admin/Site.php:505 msgid "Enable Fullname check" msgstr "Włącz sprawdzanie pełnej nazwy" -#: src/Module/Admin/Site.php:498 +#: src/Module/Admin/Site.php:505 msgid "" "Enable check to only allow users to register with a space between the first " "name and the last name in their full name." msgstr "Włącz sprawdzenie, aby zezwolić użytkownikom tylko na rejestrację ze spacją między imieniem a nazwiskiem w ich pełnym imieniu." -#: src/Module/Admin/Site.php:499 +#: src/Module/Admin/Site.php:506 +msgid "Email administrators on new registration" +msgstr "" + +#: src/Module/Admin/Site.php:506 +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:507 msgid "Community pages for visitors" msgstr "Strony społecznościowe dla odwiedzających" -#: src/Module/Admin/Site.php:499 +#: src/Module/Admin/Site.php:507 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:500 +#: src/Module/Admin/Site.php:508 msgid "Posts per user on community page" msgstr "Lista wpisów użytkownika na stronie społeczności" -#: src/Module/Admin/Site.php:500 +#: src/Module/Admin/Site.php:508 msgid "" "The maximum number of posts per user on the community page. (Not valid for " "\"Global Community\")" msgstr "Maksymalna liczba postów na użytkownika na stronie społeczności. (Nie dotyczy „Globalnej społeczności”)" -#: src/Module/Admin/Site.php:502 +#: src/Module/Admin/Site.php:510 msgid "Enable Mail support" msgstr "Włącz obsługę maili" -#: src/Module/Admin/Site.php:502 +#: src/Module/Admin/Site.php:510 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:503 +#: src/Module/Admin/Site.php:511 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:504 +#: src/Module/Admin/Site.php:512 msgid "Enable OStatus support" msgstr "Włącz obsługę OStatus" -#: src/Module/Admin/Site.php:504 +#: src/Module/Admin/Site.php:512 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:506 +#: src/Module/Admin/Site.php:514 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:507 +#: src/Module/Admin/Site.php:515 msgid "Enable Diaspora support" msgstr "Włączyć obsługę Diaspory" -#: src/Module/Admin/Site.php:507 +#: src/Module/Admin/Site.php:515 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:508 +#: src/Module/Admin/Site.php:516 msgid "Verify SSL" msgstr "Weryfikacja SSL" -#: src/Module/Admin/Site.php:508 +#: src/Module/Admin/Site.php:516 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:509 +#: src/Module/Admin/Site.php:517 msgid "Proxy user" msgstr "Użytkownik proxy" -#: src/Module/Admin/Site.php:509 +#: src/Module/Admin/Site.php:517 msgid "User name for the proxy server." msgstr "Nazwa użytkownika serwera proxy." -#: src/Module/Admin/Site.php:510 +#: src/Module/Admin/Site.php:518 msgid "Proxy URL" msgstr "URL pośrednika" -#: src/Module/Admin/Site.php:510 +#: src/Module/Admin/Site.php:518 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:511 +#: src/Module/Admin/Site.php:519 msgid "Network timeout" msgstr "Limit czasu sieci" -#: src/Module/Admin/Site.php:511 +#: src/Module/Admin/Site.php:519 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:512 +#: src/Module/Admin/Site.php:520 msgid "Maximum Load Average" msgstr "Maksymalne obciążenie średnie" -#: src/Module/Admin/Site.php:512 +#: src/Module/Admin/Site.php:520 #, 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:513 +#: src/Module/Admin/Site.php:521 msgid "Minimal Memory" msgstr "Minimalna pamięć" -#: src/Module/Admin/Site.php:513 +#: src/Module/Admin/Site.php:521 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:514 +#: src/Module/Admin/Site.php:522 msgid "Periodically optimize tables" msgstr "Okresowo optymalizuj tabele" -#: src/Module/Admin/Site.php:514 +#: src/Module/Admin/Site.php:522 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:516 +#: src/Module/Admin/Site.php:524 msgid "Discover followers/followings from contacts" msgstr "Odkryj obserwujących/obserwowanych z kontaktów" -#: src/Module/Admin/Site.php:516 +#: src/Module/Admin/Site.php:524 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:517 +#: src/Module/Admin/Site.php:525 msgid "None - deactivated" msgstr "Brak - dezaktywowany" -#: src/Module/Admin/Site.php:518 +#: src/Module/Admin/Site.php:526 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:519 +#: src/Module/Admin/Site.php:527 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:521 +#: src/Module/Admin/Site.php:529 msgid "Synchronize the contacts with the directory server" msgstr "Synchronizuj kontakty z serwerem katalogowym" -#: src/Module/Admin/Site.php:521 +#: src/Module/Admin/Site.php:529 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:523 +#: src/Module/Admin/Site.php:531 msgid "Days between requery" msgstr "Dni między żądaniem" -#: src/Module/Admin/Site.php:523 +#: src/Module/Admin/Site.php:531 msgid "Number of days after which a server is requeried for his contacts." msgstr "Liczba dni, po upływie których serwer jest żądany dla swoich kontaktów." -#: src/Module/Admin/Site.php:524 +#: src/Module/Admin/Site.php:532 msgid "Discover contacts from other servers" msgstr "Odkryj kontakty z innych serwerów" -#: src/Module/Admin/Site.php:524 +#: src/Module/Admin/Site.php:532 msgid "" "Periodically query other servers for contacts. The system queries Friendica," " Mastodon and Hubzilla servers." msgstr "Okresowo pytaj inne serwery o kontakty. System wysyła zapytania do serwerów Friendica, Mastodon i Hubzilla." -#: src/Module/Admin/Site.php:525 +#: src/Module/Admin/Site.php:533 msgid "Search the local directory" msgstr "Wyszukaj w lokalnym katalogu" -#: src/Module/Admin/Site.php:525 +#: src/Module/Admin/Site.php:533 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:527 +#: src/Module/Admin/Site.php:535 msgid "Publish server information" msgstr "Publikuj informacje o serwerze" -#: src/Module/Admin/Site.php:527 +#: src/Module/Admin/Site.php:535 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 " @@ -5846,50 +4807,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:529 +#: src/Module/Admin/Site.php:537 msgid "Check upstream version" msgstr "Sprawdź wersję powyżej" -#: src/Module/Admin/Site.php:529 +#: src/Module/Admin/Site.php:537 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:530 +#: src/Module/Admin/Site.php:538 msgid "Suppress Tags" msgstr "Pomiń znaczniki" -#: src/Module/Admin/Site.php:530 +#: src/Module/Admin/Site.php:538 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:531 +#: src/Module/Admin/Site.php:539 msgid "Clean database" msgstr "Wyczyść bazę danych" -#: src/Module/Admin/Site.php:531 +#: src/Module/Admin/Site.php:539 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:532 +#: src/Module/Admin/Site.php:540 msgid "Lifespan of remote items" msgstr "Żywotność odległych przedmiotów" -#: src/Module/Admin/Site.php:532 +#: src/Module/Admin/Site.php:540 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:533 +#: src/Module/Admin/Site.php:541 msgid "Lifespan of unclaimed items" msgstr "Żywotność nieodebranych przedmiotów" -#: src/Module/Admin/Site.php:533 +#: src/Module/Admin/Site.php:541 msgid "" "When the database cleanup is enabled, this defines the days after which " "unclaimed remote items (mostly content from the relay) will be deleted. " @@ -5897,144 +4858,144 @@ 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:534 +#: src/Module/Admin/Site.php:542 msgid "Lifespan of raw conversation data" msgstr "Trwałość nieprzetworzonych danych konwersacji" -#: src/Module/Admin/Site.php:534 +#: src/Module/Admin/Site.php:542 msgid "" "The conversation data is used for ActivityPub and OStatus, as well as for " "debug purposes. It should be safe to remove it after 14 days, default is 90 " "days." msgstr "Dane konwersacji są używane do ActivityPub i OStatus, a także do celów debugowania. Powinno być bezpieczne usunięcie go po 14 dniach, domyślnie jest to 90 dni." -#: src/Module/Admin/Site.php:535 +#: src/Module/Admin/Site.php:543 msgid "Maximum numbers of comments per post" msgstr "Maksymalna liczba komentarzy na wpis" -#: src/Module/Admin/Site.php:535 +#: src/Module/Admin/Site.php:543 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:536 +#: src/Module/Admin/Site.php:544 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:536 +#: src/Module/Admin/Site.php:544 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:537 +#: src/Module/Admin/Site.php:545 msgid "Temp path" msgstr "Ścieżka do temp" -#: src/Module/Admin/Site.php:537 +#: src/Module/Admin/Site.php:545 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:538 +#: src/Module/Admin/Site.php:546 msgid "Only search in tags" msgstr "Szukaj tylko w znacznikach" -#: src/Module/Admin/Site.php:538 +#: src/Module/Admin/Site.php:546 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:539 +#: src/Module/Admin/Site.php:547 msgid "Generate counts per contact group when calculating network count" msgstr "Generuj liczniki na grupę kontaktów podczas obliczania liczby sieci" -#: src/Module/Admin/Site.php:539 +#: src/Module/Admin/Site.php:547 msgid "" "On systems with users that heavily use contact groups the query can be very " "expensive." msgstr "W systemach, w których użytkownicy intensywnie korzystają z grup kontaktów, zapytanie może być bardzo kosztowne." -#: src/Module/Admin/Site.php:541 +#: src/Module/Admin/Site.php:549 msgid "Maximum number of parallel workers" msgstr "Maksymalna liczba równoległych workerów" -#: src/Module/Admin/Site.php:541 +#: src/Module/Admin/Site.php:549 #, 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:542 +#: src/Module/Admin/Site.php:550 msgid "Enable fastlane" msgstr "Włącz Fastlane" -#: src/Module/Admin/Site.php:542 +#: src/Module/Admin/Site.php:550 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:544 +#: src/Module/Admin/Site.php:552 msgid "Direct relay transfer" msgstr "Bezpośredni transfer przekaźników" -#: src/Module/Admin/Site.php:544 +#: src/Module/Admin/Site.php:552 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:545 +#: src/Module/Admin/Site.php:553 msgid "Relay scope" msgstr "Zakres przekaźnika" -#: src/Module/Admin/Site.php:545 +#: src/Module/Admin/Site.php:553 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:545 src/Module/Contact/Profile.php:273 -#: src/Module/Settings/TwoFactor/Index.php:126 +#: src/Module/Admin/Site.php:553 src/Module/Contact/Profile.php:274 +#: src/Module/Settings/TwoFactor/Index.php:125 msgid "Disabled" msgstr "Wyłączony" -#: src/Module/Admin/Site.php:545 +#: src/Module/Admin/Site.php:553 msgid "all" msgstr "wszystko" -#: src/Module/Admin/Site.php:545 +#: src/Module/Admin/Site.php:553 msgid "tags" msgstr "znaczniki" -#: src/Module/Admin/Site.php:546 +#: src/Module/Admin/Site.php:554 msgid "Server tags" msgstr "Znaczniki serwera" -#: src/Module/Admin/Site.php:546 +#: src/Module/Admin/Site.php:554 msgid "Comma separated list of tags for the \"tags\" subscription." msgstr "Rozdzielana przecinkami lista tagów dla subskrypcji „tagi”." -#: src/Module/Admin/Site.php:547 +#: src/Module/Admin/Site.php:555 msgid "Deny Server tags" msgstr "Odrzuć znaczniki serwera" -#: src/Module/Admin/Site.php:547 +#: src/Module/Admin/Site.php:555 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:548 +#: src/Module/Admin/Site.php:556 msgid "Allow user tags" msgstr "Pozwól na znaczniki użytkowników" -#: src/Module/Admin/Site.php:548 +#: src/Module/Admin/Site.php:556 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:551 +#: src/Module/Admin/Site.php:559 msgid "Start Relocation" msgstr "Rozpocznij przenoszenie" @@ -6060,7 +5021,7 @@ msgstr "Bieżące zaplecze pamięci przechowywania" msgid "Storage Configuration" msgstr "Konfiguracja przechowywania" -#: src/Module/Admin/Storage.php:141 src/Module/BaseAdmin.php:94 +#: src/Module/Admin/Storage.php:141 src/Module/BaseAdmin.php:91 msgid "Storage" msgstr "Przechowywanie" @@ -6084,12 +5045,12 @@ msgstr "Ten backend nie ma niestandardowych ustawień" msgid "Database (legacy)" msgstr "Baza danych (legacy)" -#: src/Module/Admin/Summary.php:54 +#: src/Module/Admin/Summary.php:56 #, php-format msgid "Template engine (%s) error: %s" msgstr "Silnik szablonów (%s) błąd: %s" -#: src/Module/Admin/Summary.php:58 +#: src/Module/Admin/Summary.php:60 #, php-format msgid "" "Your DB still runs with MyISAM tables. You should change the engine type to " @@ -6100,7 +5061,7 @@ msgid "" " an automatic conversion.
" msgstr "Twoja baza danych nadal używa tabel MyISAM. Powinieneś(-naś) zmienić typ silnika na InnoDB. Ponieważ Friendica będzie używać w przyszłości wyłącznie funkcji InnoDB, powinieneś(-naś) to zmienić! Zobacz tutaj przewodnik, który może być pomocny w konwersji silników tabel. Możesz także użyć polecenia php bin/console.php dbstructure toinnodb instalacji Friendica, aby dokonać automatycznej konwersji.
" -#: src/Module/Admin/Summary.php:63 +#: src/Module/Admin/Summary.php:65 #, php-format msgid "" "Your DB still runs with InnoDB tables in the Antelope file format. You " @@ -6111,7 +5072,7 @@ msgid "" " installation for an automatic conversion.
" msgstr "Twoja baza danych nadal działa z tabelami InnoDB w formacie pliku Antelope. Powinieneś zmienić format pliku na Barracuda. Friendica korzysta z funkcji, których nie zapewnia format Antelope. Zobacz tutaj przewodnik, który może być pomocny w konwersji silników tabel. Możesz również użyć polecenia php bin/console.php dbstructure toinnodb Twojej instalacji Friendica do automatycznej konwersji.
" -#: src/Module/Admin/Summary.php:73 +#: src/Module/Admin/Summary.php:75 #, php-format msgid "" "Your table_definition_cache is too low (%d). This can lead to the database " @@ -6119,39 +5080,39 @@ msgid "" " to %d. See here for more information.
" msgstr "Twoja pamięć podręczna w table_definition_cache jest zbyt niska (%d). Może to prowadzić do błędu bazy danych „Przygotowana instrukcja wymaga ponownego przygotowania”. Ustaw przynajmniej na %d. Zobacz tutaj, aby uzyskać więcej informacji.
" -#: src/Module/Admin/Summary.php:83 +#: src/Module/Admin/Summary.php:85 #, php-format msgid "" "There is a new version of Friendica available for download. Your current " "version is %1$s, upstream version is %2$s" msgstr "Dostępna jest nowa wersja aplikacji Friendica. Twoja aktualna wersja to %1$s wyższa wersja to %2$s" -#: src/Module/Admin/Summary.php:92 +#: src/Module/Admin/Summary.php:94 msgid "" "The database update failed. Please run \"php bin/console.php dbstructure " "update\" from the command line and have a look at the errors that might " "appear." msgstr "Aktualizacja bazy danych nie powiodła się. Uruchom polecenie \"php bin/console.php dbstructure update\" z wiersza poleceń i sprawdź błędy, które mogą się pojawić." -#: src/Module/Admin/Summary.php:96 +#: src/Module/Admin/Summary.php:98 msgid "" "The last update failed. Please run \"php bin/console.php dbstructure " "update\" from the command line and have a look at the errors that might " "appear. (Some of the errors are possibly inside the logfile.)" msgstr "Ostatnia aktualizacja nie powiodła się. Uruchom polecenie \"php bin/console.php dbstructure update\" z wiersza poleceń i spójrz na błędy, które mogą się pojawić. (Niektóre błędy są prawdopodobnie w pliku dziennika)." -#: src/Module/Admin/Summary.php:101 +#: src/Module/Admin/Summary.php:103 msgid "The worker was never executed. Please check your database structure!" msgstr "Worker nigdy nie został wykonany. Sprawdź swoją strukturę bazy danych!" -#: src/Module/Admin/Summary.php:103 +#: src/Module/Admin/Summary.php:105 #, php-format msgid "" "The last worker execution was on %s UTC. This is older than one hour. Please" " check your crontab settings." msgstr "Ostatnie wykonanie workera było w %s UTC. To jest starsze niż jedna godzina. Sprawdź ustawienia crontab." -#: src/Module/Admin/Summary.php:108 +#: src/Module/Admin/Summary.php:110 #, php-format msgid "" "Friendica's configuration now is stored in config/local.config.php, please " @@ -6160,7 +5121,7 @@ msgid "" "help with the transition." msgstr "Konfiguracja Friendiki jest teraz przechowywana w config/local.config.php, skopiuj config/local-sample.config.php i przenieś swoją konfigurację z .htconfig.php. Zobacz stronę pomocy Config, aby uzyskać pomoc dotyczącą przejścia." -#: src/Module/Admin/Summary.php:112 +#: src/Module/Admin/Summary.php:114 #, php-format msgid "" "Friendica's configuration now is stored in config/local.config.php, please " @@ -6169,7 +5130,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:118 +#: src/Module/Admin/Summary.php:120 #, php-format msgid "" "%s is not reachable on your system. This is a severe " @@ -6177,83 +5138,51 @@ 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:136 +#: src/Module/Admin/Summary.php:138 #, php-format msgid "The logfile '%s' is not usable. No logging possible (error: '%s')" msgstr "Plik dziennika „%s” nie nadaje się do użytku. Brak możliwości logowania (błąd: '%s')" -#: src/Module/Admin/Summary.php:150 +#: src/Module/Admin/Summary.php:152 #, php-format msgid "" "The debug logfile '%s' is not usable. No logging possible (error: '%s')" msgstr "Plik dziennika debugowania „%s” nie nadaje się do użytku. Brak możliwości logowania (błąd: '%s')" -#: src/Module/Admin/Summary.php:166 +#: src/Module/Admin/Summary.php:168 #, 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:174 +#: src/Module/Admin/Summary.php:176 #, 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:182 +#: src/Module/Admin/Summary.php:184 #, 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:189 -msgid "Normal Account" -msgstr "Konto normalne" - -#: src/Module/Admin/Summary.php:190 -msgid "Automatic Follower Account" -msgstr "Automatyczne konto obserwatora" - -#: src/Module/Admin/Summary.php:191 -msgid "Public Forum Account" -msgstr "Publiczne konto na forum" - -#: src/Module/Admin/Summary.php:192 -msgid "Automatic Friend Account" -msgstr "Automatyczny przyjaciel konta" - -#: src/Module/Admin/Summary.php:193 -msgid "Blog Account" -msgstr "Konto bloga" - -#: src/Module/Admin/Summary.php:194 -msgid "Private Forum Account" -msgstr "Prywatne konto na forum" - -#: src/Module/Admin/Summary.php:214 +#: src/Module/Admin/Summary.php:195 msgid "Message queues" msgstr "Wiadomości" -#: src/Module/Admin/Summary.php:220 +#: src/Module/Admin/Summary.php:201 msgid "Server Settings" msgstr "Ustawienia serwera" -#: src/Module/Admin/Summary.php:236 -msgid "Registered users" -msgstr "Zarejestrowani użytkownicy" - -#: src/Module/Admin/Summary.php:238 -msgid "Pending registrations" -msgstr "Oczekujące rejestracje" - -#: src/Module/Admin/Summary.php:239 +#: src/Module/Admin/Summary.php:219 msgid "Version" msgstr "Wersja" -#: src/Module/Admin/Summary.php:243 +#: src/Module/Admin/Summary.php:223 msgid "Active addons" msgstr "Aktywne dodatki" @@ -6277,7 +5206,7 @@ msgid "Screenshot" msgstr "Zrzut ekranu" #: src/Module/Admin/Themes/Details.php:91 -#: src/Module/Admin/Themes/Index.php:112 src/Module/BaseAdmin.php:97 +#: src/Module/Admin/Themes/Index.php:112 src/Module/BaseAdmin.php:93 msgid "Themes" msgstr "Wygląd" @@ -6306,21 +5235,21 @@ msgstr "[Eksperymentalne]" msgid "[Unsupported]" msgstr "[Niewspieralne]" -#: src/Module/Admin/Tos.php:77 +#: src/Module/Admin/Tos.php:79 msgid "Display Terms of Service" msgstr "Wyświetl Warunki korzystania z usługi" -#: src/Module/Admin/Tos.php:77 +#: src/Module/Admin/Tos.php:79 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:78 +#: src/Module/Admin/Tos.php:80 msgid "Display Privacy Statement" msgstr "Wyświetl oświadczenie o prywatności" -#: src/Module/Admin/Tos.php:78 +#: src/Module/Admin/Tos.php:80 #, php-format msgid "" "Show some informations regarding the needed information to operate the node " @@ -6328,225 +5257,34 @@ 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:79 +#: src/Module/Admin/Tos.php:81 msgid "Privacy Statement Preview" msgstr "Podgląd oświadczenia o prywatności" -#: src/Module/Admin/Tos.php:81 +#: src/Module/Admin/Tos.php:83 msgid "The Terms of Service" msgstr "Warunki świadczenia usług" -#: src/Module/Admin/Tos.php:81 +#: src/Module/Admin/Tos.php:83 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/Users/Active.php:45 src/Module/Admin/Users/Index.php:45 -#, php-format -msgid "%s user blocked" -msgid_plural "%s users blocked" -msgstr[0] "%s użytkownik zablokowany" -msgstr[1] "%s użytkowników zablokowanych" -msgstr[2] "%s użytkowników zablokowanych" -msgstr[3] "%s użytkownicy zablokowani" +#: src/Module/Admin/Tos.php:84 +msgid "The rules" +msgstr "Zasady" -#: src/Module/Admin/Users/Active.php:53 src/Module/Admin/Users/Active.php:88 -#: src/Module/Admin/Users/Blocked.php:54 src/Module/Admin/Users/Blocked.php:89 -#: src/Module/Admin/Users/Index.php:60 src/Module/Admin/Users/Index.php:95 -msgid "You can't remove yourself" -msgstr "Nie możesz usunąć siebie" +#: src/Module/Admin/Tos.php:84 +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/Admin/Users/Active.php:57 src/Module/Admin/Users/Blocked.php:58 -#: src/Module/Admin/Users/Index.php:64 -#, php-format -msgid "%s user deleted" -msgid_plural "%s users deleted" -msgstr[0] "usunięto %s użytkownika" -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/Admin/Users/Active.php:86 src/Module/Admin/Users/Blocked.php:87 -#: src/Module/Admin/Users/Index.php:93 -#, php-format -msgid "User \"%s\" deleted" -msgstr "Użytkownik \"%s\" usunięty" - -#: src/Module/Admin/Users/Active.php:96 src/Module/Admin/Users/Index.php:103 -#, php-format -msgid "User \"%s\" blocked" -msgstr "Użytkownik \"%s\" zablokowany" - -#: src/Module/Admin/Users/Active.php:129 -#: src/Module/Admin/Users/Blocked.php:130 -#: src/Module/Admin/Users/Deleted.php:88 src/Module/Admin/Users/Index.php:142 -#: src/Module/Admin/Users/Index.php:162 -msgid "Register date" -msgstr "Data rejestracji" - -#: src/Module/Admin/Users/Active.php:129 -#: src/Module/Admin/Users/Blocked.php:130 -#: src/Module/Admin/Users/Deleted.php:88 src/Module/Admin/Users/Index.php:142 -#: src/Module/Admin/Users/Index.php:162 -msgid "Last login" -msgstr "Ostatnie logowanie" - -#: src/Module/Admin/Users/Active.php:129 -#: src/Module/Admin/Users/Blocked.php:130 -#: src/Module/Admin/Users/Deleted.php:88 src/Module/Admin/Users/Index.php:142 -#: src/Module/Admin/Users/Index.php:162 -msgid "Last public item" -msgstr "Ostatni element publiczny" - -#: src/Module/Admin/Users/Active.php:137 -msgid "Active Accounts" -msgstr "Aktywne konta" - -#: src/Module/Admin/Users/Active.php:141 -#: src/Module/Admin/Users/Blocked.php:141 src/Module/Admin/Users/Index.php:155 -msgid "User blocked" -msgstr "Użytkownik zablokowany" - -#: src/Module/Admin/Users/Active.php:142 -#: src/Module/Admin/Users/Blocked.php:143 src/Module/Admin/Users/Index.php:157 -msgid "Site admin" -msgstr "Administracja stroną" - -#: src/Module/Admin/Users/Active.php:143 -#: src/Module/Admin/Users/Blocked.php:144 src/Module/Admin/Users/Index.php:158 -msgid "Account expired" -msgstr "Konto wygasło" - -#: src/Module/Admin/Users/Active.php:144 src/Module/Admin/Users/Index.php:161 -msgid "Create a new user" -msgstr "Utwórz nowego użytkownika" - -#: src/Module/Admin/Users/Active.php:150 -#: src/Module/Admin/Users/Blocked.php:150 src/Module/Admin/Users/Index.php:167 -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/Admin/Users/Active.php:151 -#: src/Module/Admin/Users/Blocked.php:151 src/Module/Admin/Users/Index.php:168 -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/Admin/Users/Blocked.php:46 src/Module/Admin/Users/Index.php:52 -#, php-format -msgid "%s user unblocked" -msgid_plural "%s users unblocked" -msgstr[0] "%s użytkownik odblokowany" -msgstr[1] "%s użytkowników odblokowanych" -msgstr[2] "%s użytkowników odblokowanych" -msgstr[3] "%s użytkowników odblokowanych" - -#: src/Module/Admin/Users/Blocked.php:96 src/Module/Admin/Users/Index.php:109 -#, php-format -msgid "User \"%s\" unblocked" -msgstr "Użytkownik \"%s\" odblokowany" - -#: src/Module/Admin/Users/Blocked.php:138 -msgid "Blocked Users" -msgstr "Zablokowani użytkownicy" - -#: src/Module/Admin/Users/Create.php:62 -msgid "New User" -msgstr "Nowy użytkownik" - -#: src/Module/Admin/Users/Create.php:63 -msgid "Add User" -msgstr "Dodaj użytkownika" - -#: src/Module/Admin/Users/Create.php:71 -msgid "Name of the new user." -msgstr "Nazwa nowego użytkownika." - -#: src/Module/Admin/Users/Create.php:72 -msgid "Nickname" -msgstr "Pseudonim" - -#: src/Module/Admin/Users/Create.php:72 -msgid "Nickname of the new user." -msgstr "Pseudonim nowego użytkownika." - -#: src/Module/Admin/Users/Create.php:73 -msgid "Email address of the new user." -msgstr "Adres email nowego użytkownika." - -#: src/Module/Admin/Users/Deleted.php:86 -msgid "Users awaiting permanent deletion" -msgstr "Użytkownicy oczekujący na trwałe usunięcie" - -#: src/Module/Admin/Users/Deleted.php:88 src/Module/Admin/Users/Index.php:162 -msgid "Permanent deletion" -msgstr "Trwałe usunięcie" - -#: src/Module/Admin/Users/Index.php:150 src/Module/Admin/Users/Index.php:160 -#: src/Module/BaseAdmin.php:95 -msgid "Users" -msgstr "Użytkownicy" - -#: src/Module/Admin/Users/Index.php:152 -msgid "User waiting for permanent deletion" -msgstr "Użytkownik czekający na trwałe usunięcie" - -#: src/Module/Admin/Users/Pending.php:48 -#, php-format -msgid "%s user approved" -msgid_plural "%s users approved" -msgstr[0] "%s użytkownik zatwierdzony" -msgstr[1] "%s użytkowników zatwierdzonych" -msgstr[2] "%s użytkowników zatwierdzonych" -msgstr[3] "%s użytkowników zatwierdzonych" - -#: src/Module/Admin/Users/Pending.php:55 -#, php-format -msgid "%s registration revoked" -msgid_plural "%s registrations revoked" -msgstr[0] "%s rejestrację cofnięto" -msgstr[1] "%s rejestracje cofnięto" -msgstr[2] "%s rejestracji cofnięto" -msgstr[3] "%s rejestracji cofnięto " - -#: src/Module/Admin/Users/Pending.php:81 -msgid "Account approved." -msgstr "Konto zatwierdzone." - -#: src/Module/Admin/Users/Pending.php:87 -msgid "Registration revoked" -msgstr "Rejestracja odwołana" - -#: src/Module/Admin/Users/Pending.php:102 -msgid "User registrations awaiting review" -msgstr "Rejestracje użytkowników oczekujące na sprawdzenie" - -#: src/Module/Admin/Users/Pending.php:104 -msgid "Request date" -msgstr "Data prośby" - -#: src/Module/Admin/Users/Pending.php:105 -msgid "No registrations." -msgstr "Brak rejestracji." - -#: src/Module/Admin/Users/Pending.php:106 -msgid "Note from the user" -msgstr "Uwaga od użytkownika" - -#: src/Module/Admin/Users/Pending.php:108 -msgid "Deny" -msgstr "Odmów" - -#: src/Module/Api/ApiResponse.php:272 +#: src/Module/Api/ApiResponse.php:279 #, php-format msgid "API endpoint %s %s is not implemented" msgstr "Punkt końcowy API %s %s nie jest zaimplementowany" -#: src/Module/Api/ApiResponse.php:273 +#: src/Module/Api/ApiResponse.php:280 msgid "" "The API endpoint is currently not implemented but might be in the future." msgstr "Punkt końcowy interfejsu API nie jest obecnie zaimplementowany, ale może zostać w przyszłości." @@ -6559,7 +5297,7 @@ msgstr "Brakuje parametrów" 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:50 +#: src/Module/Api/Mastodon/Statuses/Mute.php:51 msgid "Only starting posts can be muted" msgstr "Można wyciszyć tylko początkowe wpisy" @@ -6572,7 +5310,7 @@ msgstr "Wpisy od %s nie mogą być udostępniane" 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:50 +#: src/Module/Api/Mastodon/Statuses/Unmute.php:51 msgid "Only starting posts can be unmuted" msgstr "Wyłączać wyciszenie można tylko we wpisach początkowych" @@ -6585,110 +5323,99 @@ msgstr "Nie można cofnąć udostępniania wpisów %s" msgid "Contact not found" msgstr "Nie znaleziono kontaktu" -#: src/Module/Apps.php:54 +#: src/Module/Apps.php:55 msgid "No installed applications." msgstr "Brak zainstalowanych aplikacji." -#: src/Module/Apps.php:59 +#: src/Module/Apps.php:60 msgid "Applications" msgstr "Aplikacje" -#: src/Module/Attach.php:50 src/Module/Attach.php:62 +#: src/Module/Attach.php:49 src/Module/Attach.php:61 msgid "Item was not found." msgstr "Element nie znaleziony." -#: src/Module/BaseAdmin.php:57 src/Module/BaseAdmin.php:61 +#: src/Module/BaseAdmin.php:54 src/Module/BaseAdmin.php:58 +#: src/Module/BaseModeration.php:77 src/Module/BaseModeration.php:81 msgid "Please login to continue." msgstr "Zaloguj się aby kontynuować." -#: src/Module/BaseAdmin.php:66 +#: src/Module/BaseAdmin.php:63 src/Module/BaseModeration.php:86 msgid "You don't have access to administration pages." msgstr "Nie masz dostępu do stron administracyjnych." -#: src/Module/BaseAdmin.php:70 +#: src/Module/BaseAdmin.php:67 src/Module/BaseModeration.php:90 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:89 +#: src/Module/BaseAdmin.php:86 src/Module/BaseModeration.php:109 msgid "Overview" msgstr "Przegląd" -#: src/Module/BaseAdmin.php:92 +#: src/Module/BaseAdmin.php:89 src/Module/BaseModeration.php:111 msgid "Configuration" msgstr "Konfiguracja" -#: src/Module/BaseAdmin.php:98 src/Module/BaseSettings.php:63 +#: src/Module/BaseAdmin.php:94 src/Module/BaseSettings.php:112 msgid "Additional features" msgstr "Dodatkowe funkcje" -#: src/Module/BaseAdmin.php:101 +#: src/Module/BaseAdmin.php:97 msgid "Database" msgstr "Baza danych" -#: src/Module/BaseAdmin.php:102 +#: src/Module/BaseAdmin.php:98 msgid "DB updates" msgstr "Aktualizacje bazy danych" -#: src/Module/BaseAdmin.php:103 +#: src/Module/BaseAdmin.php:99 msgid "Inspect Deferred Workers" msgstr "Sprawdź odroczonych workerów" -#: src/Module/BaseAdmin.php:104 +#: src/Module/BaseAdmin.php:100 msgid "Inspect worker Queue" msgstr "Sprawdź kolejkę workerów" -#: src/Module/BaseAdmin.php:106 -msgid "Tools" -msgstr "Narzędzia" - -#: src/Module/BaseAdmin.php:107 -msgid "Contact Blocklist" -msgstr "Lista zablokowanych kontaktów" - -#: src/Module/BaseAdmin.php:108 -msgid "Server Blocklist" -msgstr "Lista zablokowanych serwerów" - -#: src/Module/BaseAdmin.php:115 +#: src/Module/BaseAdmin.php:106 src/Module/BaseModeration.php:119 msgid "Diagnostics" msgstr "Diagnostyka" -#: src/Module/BaseAdmin.php:116 +#: src/Module/BaseAdmin.php:107 msgid "PHP Info" msgstr "Informacje o PHP" -#: src/Module/BaseAdmin.php:117 +#: src/Module/BaseAdmin.php:108 msgid "probe address" msgstr "adres probe" -#: src/Module/BaseAdmin.php:118 +#: src/Module/BaseAdmin.php:109 msgid "check webfinger" msgstr "sprawdź webfinger" -#: src/Module/BaseAdmin.php:120 +#: src/Module/BaseAdmin.php:110 msgid "Babel" msgstr "Babel" -#: src/Module/BaseAdmin.php:121 src/Module/Debug/ActivityPubConversion.php:142 +#: src/Module/BaseAdmin.php:111 src/Module/Debug/ActivityPubConversion.php:137 msgid "ActivityPub Conversion" msgstr "Konwersja ActivityPub" -#: src/Module/BaseAdmin.php:130 +#: src/Module/BaseAdmin.php:120 msgid "Addon Features" msgstr "Funkcje dodatkowe" -#: src/Module/BaseAdmin.php:131 +#: src/Module/BaseAdmin.php:121 src/Module/BaseModeration.php:128 msgid "User registrations waiting for confirmation" msgstr "Rejestracje użytkowników czekające na potwierdzenie" -#: src/Module/BaseApi.php:241 src/Module/BaseApi.php:257 -#: src/Module/BaseApi.php:273 +#: src/Module/BaseApi.php:254 src/Module/BaseApi.php:270 +#: src/Module/BaseApi.php:286 msgid "Too Many Requests" msgstr "Zbyt dużo próśb" -#: src/Module/BaseApi.php:242 +#: src/Module/BaseApi.php:255 #, 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." @@ -6697,7 +5424,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:258 +#: src/Module/BaseApi.php:271 #, php-format msgid "Weekly posting limit of %d post reached. The post was rejected." msgid_plural "" @@ -6707,28 +5434,63 @@ 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:274 +#: src/Module/BaseApi.php:287 #, php-format msgid "Monthly posting limit of %d post reached. The post was rejected." -msgstr "Został osiągnięty miesięczny limit %d wysyłania wpisów. Wpis został odrzucony." +msgid_plural "" +"Monthly posting limit of %d posts reached. The post was rejected." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: src/Module/BaseProfile.php:51 src/Module/Contact.php:460 +#: src/Module/BaseModeration.php:112 src/Module/Moderation/Users/Index.php:148 +#: src/Module/Moderation/Users/Index.php:158 +msgid "Users" +msgstr "Użytkownicy" + +#: src/Module/BaseModeration.php:114 +msgid "Tools" +msgstr "Narzędzia" + +#: src/Module/BaseModeration.php:115 +msgid "Contact Blocklist" +msgstr "Lista zablokowanych kontaktów" + +#: src/Module/BaseModeration.php:116 +msgid "Server Blocklist" +msgstr "Lista zablokowanych serwerów" + +#: src/Module/BaseModeration.php:117 src/Module/Moderation/Item/Delete.php:62 +msgid "Delete Item" +msgstr "Usuń przedmiot" + +#: src/Module/BaseModeration.php:120 src/Module/Moderation/Item/Source.php:76 +msgid "Item Source" +msgstr "Źródło elementu" + +#: src/Module/BaseProfile.php:52 src/Module/Contact.php:463 msgid "Profile Details" msgstr "Szczegóły profilu" -#: src/Module/BaseProfile.php:109 +#: src/Module/BaseProfile.php:60 src/Module/Contact.php:447 +#: src/Module/Contact/Follow.php:192 src/Module/Contact/Unfollow.php:138 +msgid "Status Messages and Posts" +msgstr "Stan wiadomości i wpisów" + +#: src/Module/BaseProfile.php:111 msgid "Only You Can See This" msgstr "Tylko ty możesz to zobaczyć" -#: src/Module/BaseProfile.php:114 src/Module/Profile/Schedule.php:82 +#: src/Module/BaseProfile.php:116 src/Module/Profile/Schedule.php:82 msgid "Scheduled Posts" msgstr "Zaplanowane wpisy" -#: src/Module/BaseProfile.php:117 +#: src/Module/BaseProfile.php:119 msgid "Posts that are scheduled for publishing" msgstr "Wpisy zaplanowane do publikacji" -#: src/Module/BaseProfile.php:136 src/Module/BaseProfile.php:139 +#: src/Module/BaseProfile.php:138 src/Module/BaseProfile.php:141 msgid "Tips for New Members" msgstr "Wskazówki dla nowych użytkowników" @@ -6742,32 +5504,40 @@ msgstr "Szukaj osób - %s" msgid "Forum Search - %s" msgstr "Przeszukiwanie forum - %s" -#: src/Module/BaseSettings.php:41 +#: src/Module/BaseSearch.php:119 src/Module/Contact/MatchInterests.php:139 +msgid "No matches" +msgstr "Brak wyników" + +#: src/Module/BaseSettings.php:80 msgid "Account" msgstr "Konto" -#: src/Module/BaseSettings.php:48 src/Module/Security/TwoFactor/Verify.php:96 -#: src/Module/Settings/TwoFactor/Index.php:118 +#: src/Module/BaseSettings.php:87 src/Module/Security/TwoFactor/Verify.php:96 +#: src/Module/Settings/TwoFactor/Index.php:117 msgid "Two-factor authentication" msgstr "Uwierzytelnianie dwuskładnikowe" -#: src/Module/BaseSettings.php:71 +#: src/Module/BaseSettings.php:120 msgid "Display" msgstr "Wygląd" -#: src/Module/BaseSettings.php:92 src/Module/Settings/Delegation.php:171 +#: src/Module/BaseSettings.php:127 src/Module/Settings/Connectors.php:203 +msgid "Social Networks" +msgstr "Portale społecznościowe" + +#: src/Module/BaseSettings.php:141 src/Module/Settings/Delegation.php:170 msgid "Manage Accounts" msgstr "Zarządzanie kontami" -#: src/Module/BaseSettings.php:99 +#: src/Module/BaseSettings.php:148 msgid "Connected apps" msgstr "Powiązane aplikacje" -#: src/Module/BaseSettings.php:106 src/Module/Settings/UserExport.php:76 +#: src/Module/BaseSettings.php:155 src/Module/Settings/UserExport.php:98 msgid "Export personal data" msgstr "Eksportuj dane osobiste" -#: src/Module/BaseSettings.php:113 +#: src/Module/BaseSettings.php:162 msgid "Remove account" msgstr "Usuń konto" @@ -6779,6 +5549,118 @@ msgstr "Na tej stronie brakuje parametru url." 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 +msgid "Invalid Request" +msgstr "Nieprawidłowe żądanie" + +#: src/Module/Calendar/Event/API.php:109 +msgid "Event id is missing." +msgstr "Brak identyfikatora wydarzenia." + +#: src/Module/Calendar/Event/API.php:131 +msgid "Failed to remove event" +msgstr "Nie udało się usunąć wydarzenia" + +#: src/Module/Calendar/Event/API.php:186 src/Module/Calendar/Event/API.php:188 +msgid "Event can not end before it has started." +msgstr "Wydarzenie nie może się zakończyć przed jego rozpoczęciem." + +#: src/Module/Calendar/Event/API.php:195 src/Module/Calendar/Event/API.php:197 +msgid "Event title and start time are required." +msgstr "Wymagany tytuł wydarzenia i czas rozpoczęcia." + +#: src/Module/Calendar/Event/Form.php:208 +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 +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:207 src/Module/Install.php:240 +#: src/Module/Install.php:245 src/Module/Install.php:264 +#: src/Module/Install.php:275 src/Module/Install.php:280 +#: src/Module/Install.php:286 src/Module/Install.php:291 +#: src/Module/Install.php:305 src/Module/Install.php:320 +#: src/Module/Install.php:347 +#: src/Module/Moderation/Blocklist/Server/Add.php:134 +#: src/Module/Moderation/Blocklist/Server/Add.php:136 +#: src/Module/Moderation/Blocklist/Server/Import.php:126 +#: src/Module/Moderation/Blocklist/Server/Index.php:83 +#: src/Module/Moderation/Blocklist/Server/Index.php:84 +#: src/Module/Moderation/Blocklist/Server/Index.php:112 +#: src/Module/Moderation/Blocklist/Server/Index.php:113 +#: src/Module/Moderation/Item/Delete.php:67 src/Module/Register.php:148 +#: src/Module/Security/TwoFactor/Verify.php:101 +#: src/Module/Settings/TwoFactor/Index.php:140 +#: src/Module/Settings/TwoFactor/Verify.php:155 +msgid "Required" +msgstr "Wymagany" + +#: src/Module/Calendar/Event/Form.php:223 +#: src/Module/Calendar/Event/Form.php:247 +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 +msgid "Event Finishes:" +msgstr "Zakończenie wydarzenia:" + +#: src/Module/Calendar/Event/Form.php:237 +#: src/Module/Calendar/Event/Form.php:243 +msgid "Title (BBCode not allowed)" +msgstr "" + +#: src/Module/Calendar/Event/Form.php:239 +msgid "Description (BBCode allowed)" +msgstr "" + +#: src/Module/Calendar/Event/Form.php:241 +msgid "Location (BBCode not allowed)" +msgstr "" + +#: src/Module/Calendar/Event/Form.php:244 +#: src/Module/Calendar/Event/Form.php:245 +msgid "Share this event" +msgstr "Udostępnij te wydarzenie" + +#: src/Module/Calendar/Event/Form.php:251 src/Module/Profile/Profile.php:240 +msgid "Basic" +msgstr "Podstawowy" + +#: src/Module/Calendar/Export.php:77 +msgid "This calendar format is not supported" +msgstr "Ten format kalendarza nie jest obsługiwany" + +#: src/Module/Calendar/Export.php:79 +msgid "No exportable data found" +msgstr "Nie znaleziono danych do eksportu" + +#: src/Module/Calendar/Export.php:96 +msgid "calendar" +msgstr "kalendarz" + +#: src/Module/Calendar/Show.php:122 +msgid "Events" +msgstr "Wydarzenia" + +#: src/Module/Calendar/Show.php:123 +msgid "View" +msgstr "Widok" + +#: src/Module/Calendar/Show.php:124 +msgid "Create New Event" +msgstr "Stwórz nowe wydarzenie" + +#: src/Module/Calendar/Show.php:130 +msgid "list" +msgstr "lista" + #: src/Module/Contact.php:88 #, php-format msgid "%d contact edited." @@ -6788,114 +5670,145 @@ msgstr[1] "Zedytowano %d kontakty." msgstr[2] "Zedytowano %d kontaktów." msgstr[3] "%dedytuj kontakty." -#: src/Module/Contact.php:309 +#: src/Module/Contact.php:312 msgid "Show all contacts" msgstr "Pokaż wszystkie kontakty" -#: src/Module/Contact.php:317 +#: src/Module/Contact.php:317 src/Module/Contact.php:377 +#: src/Module/Moderation/BaseUsers.php:85 +msgid "Pending" +msgstr "Oczekujące" + +#: src/Module/Contact.php:320 msgid "Only show pending contacts" msgstr "Pokaż tylko oczekujące kontakty" -#: src/Module/Contact.php:325 +#: src/Module/Contact.php:325 src/Module/Contact.php:378 +#: src/Module/Moderation/BaseUsers.php:93 +msgid "Blocked" +msgstr "Zablokowane" + +#: src/Module/Contact.php:328 msgid "Only show blocked contacts" msgstr "Pokaż tylko zablokowane kontakty" -#: src/Module/Contact.php:330 src/Module/Contact.php:377 -#: src/Object/Post.php:339 +#: src/Module/Contact.php:333 src/Module/Contact.php:380 +#: src/Object/Post.php:338 msgid "Ignored" msgstr "Ignorowane" -#: src/Module/Contact.php:333 +#: src/Module/Contact.php:336 msgid "Only show ignored contacts" msgstr "Pokaż tylko ignorowane kontakty" -#: src/Module/Contact.php:338 src/Module/Contact.php:378 +#: src/Module/Contact.php:341 src/Module/Contact.php:381 msgid "Archived" msgstr "Zarchiwizowane" -#: src/Module/Contact.php:341 +#: src/Module/Contact.php:344 msgid "Only show archived contacts" msgstr "Pokaż tylko zarchiwizowane kontakty" -#: src/Module/Contact.php:346 src/Module/Contact.php:376 +#: src/Module/Contact.php:349 src/Module/Contact.php:379 msgid "Hidden" msgstr "Ukryte" -#: src/Module/Contact.php:349 +#: src/Module/Contact.php:352 msgid "Only show hidden contacts" msgstr "Pokaż tylko ukryte kontakty" -#: src/Module/Contact.php:357 +#: src/Module/Contact.php:360 msgid "Organize your contact groups" msgstr "Uporządkuj swoje grupy kontaktów" -#: src/Module/Contact.php:389 +#: src/Module/Contact.php:392 msgid "Search your contacts" msgstr "Wyszukaj w kontaktach" -#: src/Module/Contact.php:390 src/Module/Search/Index.php:207 +#: src/Module/Contact.php:393 src/Module/Search/Index.php:206 #, php-format msgid "Results for: %s" msgstr "Wyniki dla: %s" -#: src/Module/Contact.php:397 +#: src/Module/Contact.php:400 msgid "Update" msgstr "Zaktualizuj" -#: src/Module/Contact.php:399 src/Module/Contact/Profile.php:349 -#: src/Module/Contact/Profile.php:457 +#: src/Module/Contact.php:401 src/Module/Contact/Profile.php:348 +#: src/Module/Contact/Profile.php:467 +#: src/Module/Moderation/Blocklist/Contact.php:117 +#: src/Module/Moderation/Users/Blocked.php:138 +#: src/Module/Moderation/Users/Index.php:154 +msgid "Unblock" +msgstr "Odblokuj" + +#: src/Module/Contact.php:402 src/Module/Contact/Profile.php:349 +#: src/Module/Contact/Profile.php:475 msgid "Unignore" msgstr "Odblokuj" -#: src/Module/Contact.php:401 +#: src/Module/Contact.php:404 msgid "Batch Actions" msgstr "Akcje wsadowe" -#: src/Module/Contact.php:436 +#: src/Module/Contact.php:439 msgid "Conversations started by this contact" msgstr "Rozmowy rozpoczęły się od tego kontaktu" -#: src/Module/Contact.php:441 +#: src/Module/Contact.php:444 msgid "Posts and Comments" msgstr "Wpisy i komentarze" -#: src/Module/Contact.php:452 +#: src/Module/Contact.php:455 msgid "Posts containing media objects" msgstr "Wpisy zawierające obiekty multimedialne" -#: src/Module/Contact.php:467 +#: src/Module/Contact.php:470 msgid "View all known contacts" msgstr "Zobacz wszystkie znane kontakty" -#: src/Module/Contact.php:477 +#: src/Module/Contact.php:480 msgid "Advanced Contact Settings" msgstr "Zaawansowane ustawienia kontaktów" -#: src/Module/Contact.php:511 +#: src/Module/Contact.php:514 msgid "Mutual Friendship" msgstr "Wzajemna przyjaźń" -#: src/Module/Contact.php:515 +#: src/Module/Contact.php:518 msgid "is a fan of yours" msgstr "jest twoim fanem" -#: src/Module/Contact.php:519 +#: src/Module/Contact.php:522 msgid "you are a fan of" msgstr "jesteś fanem" -#: src/Module/Contact.php:537 +#: src/Module/Contact.php:540 msgid "Pending outgoing contact request" msgstr "Oczekujące żądanie kontaktu wychodzącego" -#: src/Module/Contact.php:539 +#: src/Module/Contact.php:542 msgid "Pending incoming contact request" msgstr "Oczekujące żądanie kontaktu przychodzącego" -#: src/Module/Contact.php:552 src/Module/Contact/Profile.php:334 +#: src/Module/Contact.php:555 src/Module/Contact/Profile.php:334 #, php-format msgid "Visit %s's profile [%s]" msgstr "Obejrzyj %s's profil [%s]" +#: src/Module/Contact/Advanced.php:70 src/Module/Contact/Advanced.php:109 +#: src/Module/Contact/Contacts.php:53 src/Module/Contact/Conversations.php:84 +#: src/Module/Contact/Conversations.php:89 +#: src/Module/Contact/Conversations.php:94 src/Module/Contact/Media.php:43 +#: src/Module/Contact/Posts.php:78 src/Module/Contact/Posts.php:83 +#: src/Module/Contact/Posts.php:88 src/Module/Contact/Profile.php:142 +#: src/Module/Contact/Profile.php:147 src/Module/Contact/Profile.php:152 +#: src/Module/Contact/Redir.php:94 src/Module/Contact/Redir.php:140 +#: src/Module/FriendSuggest.php:71 src/Module/FriendSuggest.php:109 +#: src/Module/Group.php:97 src/Module/Group.php:106 +msgid "Contact not found." +msgstr "Nie znaleziono kontaktu." + #: src/Module/Contact/Advanced.php:99 msgid "Contact update failed." msgstr "Nie udało się zaktualizować kontaktu." @@ -6904,6 +5817,18 @@ msgstr "Nie udało się zaktualizować kontaktu." 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/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Create.php:71 +#: 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:73 +msgid "Name" +msgstr "Nazwa" + #: src/Module/Contact/Advanced.php:135 msgid "Account Nickname" msgstr "Nazwa konta" @@ -6920,20 +5845,20 @@ msgstr "Adres Ankiety/RSS" msgid "New photo from this URL" msgstr "Nowe zdjęcie z tego adresu URL" -#: src/Module/Contact/Contacts.php:50 src/Module/Conversation/Network.php:187 -#: src/Module/Group.php:103 +#: src/Module/Contact/Contacts.php:48 src/Module/Conversation/Network.php:188 +#: src/Module/Group.php:101 msgid "Invalid contact." msgstr "Nieprawidłowy kontakt." -#: src/Module/Contact/Contacts.php:73 +#: src/Module/Contact/Contacts.php:71 msgid "No known contacts." msgstr "Brak znanych kontaktów." -#: src/Module/Contact/Contacts.php:87 src/Module/Profile/Common.php:98 +#: src/Module/Contact/Contacts.php:85 src/Module/Profile/Common.php:97 msgid "No common contacts." msgstr "Brak wspólnych kontaktów." -#: src/Module/Contact/Contacts.php:99 src/Module/Profile/Contacts.php:96 +#: src/Module/Contact/Contacts.php:97 src/Module/Profile/Contacts.php:95 #, php-format msgid "Follower (%s)" msgid_plural "Followers (%s)" @@ -6942,7 +5867,7 @@ msgstr[1] "Obserwujących (%s)" msgstr[2] "Obserwujących (%s)" msgstr[3] "Obserwujących (%s)" -#: src/Module/Contact/Contacts.php:103 src/Module/Profile/Contacts.php:99 +#: src/Module/Contact/Contacts.php:101 src/Module/Profile/Contacts.php:98 #, php-format msgid "Following (%s)" msgid_plural "Following (%s)" @@ -6951,7 +5876,7 @@ msgstr[1] "Obserwowanych (%s)" msgstr[2] "Obserwowanych (%s)" msgstr[3] "Obserwowanych (%s)" -#: src/Module/Contact/Contacts.php:107 src/Module/Profile/Contacts.php:102 +#: src/Module/Contact/Contacts.php:105 src/Module/Profile/Contacts.php:101 #, php-format msgid "Mutual friend (%s)" msgid_plural "Mutual friends (%s)" @@ -6960,12 +5885,12 @@ msgstr[1] "Wspólnych przyjaciół (%s)" msgstr[2] "Wspólnych przyjaciół (%s)" msgstr[3] "Wspólnych przyjaciół (%s)" -#: src/Module/Contact/Contacts.php:109 src/Module/Profile/Contacts.php:104 +#: src/Module/Contact/Contacts.php:107 src/Module/Profile/Contacts.php:103 #, 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:115 src/Module/Profile/Common.php:86 +#: src/Module/Contact/Contacts.php:113 src/Module/Profile/Common.php:85 #, php-format msgid "Common contact (%s)" msgid_plural "Common contacts (%s)" @@ -6974,14 +5899,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:117 src/Module/Profile/Common.php:88 +#: src/Module/Contact/Contacts.php:115 src/Module/Profile/Common.php:87 #, 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:123 src/Module/Profile/Contacts.php:110 +#: src/Module/Contact/Contacts.php:121 src/Module/Profile/Contacts.php:109 #, php-format msgid "Contact (%s)" msgid_plural "Contacts (%s)" @@ -6990,126 +5915,180 @@ msgstr[1] "Kontakty (%s)" msgstr[2] "Kontaktów (%s)" msgstr[3] "Kontaktów (%s)" -#: src/Module/Contact/Poke.php:135 -msgid "Error while sending poke, please retry." -msgstr "Błąd wysyłania zaczepki, spróbuj ponownie." +#: src/Module/Contact/Follow.php:69 src/Module/Contact/Redir.php:62 +#: src/Module/Contact/Redir.php:222 src/Module/Conversation/Community.php:193 +#: src/Module/Debug/ItemBody.php:38 src/Module/Diaspora/Receive.php:57 +#: src/Module/Item/Display.php:95 src/Module/Item/Feed.php:59 +#: src/Module/Item/Follow.php:41 src/Module/Item/Ignore.php:41 +#: src/Module/Item/Pin.php:41 src/Module/Item/Pin.php:56 +#: src/Module/Item/Star.php:42 src/Module/Update/Display.php:37 +msgid "Access denied." +msgstr "Brak dostępu." -#: src/Module/Contact/Poke.php:148 src/Module/Search/Acl.php:55 -msgid "You must be logged in to use this module." -msgstr "Musisz być zalogowany, aby korzystać z tego modułu." +#: src/Module/Contact/Follow.php:104 src/Module/Contact/Unfollow.php:125 +#: src/Module/Profile/RemoteFollow.php:133 +msgid "Submit Request" +msgstr "Wyślij zgłoszenie" -#: src/Module/Contact/Poke.php:171 -msgid "Poke/Prod" -msgstr "Zaczepić" +#: src/Module/Contact/Follow.php:115 +msgid "You already added this contact." +msgstr "Już dodałeś ten kontakt." -#: src/Module/Contact/Poke.php:172 -msgid "poke, prod or do other things to somebody" -msgstr "szturchać, zaczepić lub robić inne rzeczy" +#: src/Module/Contact/Follow.php:130 +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/Poke.php:174 -msgid "Choose what you wish to do to recipient" -msgstr "Wybierz, co chcesz zrobić" +#: src/Module/Contact/Follow.php:138 +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/Poke.php:175 -msgid "Make this post private" -msgstr "Ustaw ten wpis jako prywatny" +#: 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/Profile.php:127 +#: src/Module/Contact/Follow.php:168 src/Module/Profile/RemoteFollow.php:132 +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 +msgid "Your Identity Address:" +msgstr "Twój adres tożsamości:" + +#: src/Module/Contact/Follow.php:170 src/Module/Contact/Profile.php:365 +#: src/Module/Contact/Unfollow.php:129 +#: src/Module/Moderation/Blocklist/Contact.php:133 +#: src/Module/Notifications/Introductions.php:129 +#: src/Module/Notifications/Introductions.php:198 +msgid "Profile URL" +msgstr "Adres URL profilu" + +#: src/Module/Contact/Follow.php:171 src/Module/Contact/Profile.php:377 +#: src/Module/Notifications/Introductions.php:191 +#: src/Module/Profile/Profile.php:199 +msgid "Tags:" +msgstr "Znaczniki:" + +#: src/Module/Contact/Follow.php:182 +#, php-format +msgid "%s knows you" +msgstr "%s zna cię" + +#: src/Module/Contact/Follow.php:183 +msgid "Add a personal note:" +msgstr "Dodaj osobistą notkę:" + +#: src/Module/Contact/Follow.php:221 +msgid "The contact could not be added." +msgstr "Nie można dodać kontaktu." + +#: src/Module/Contact/MatchInterests.php:94 +#: src/Module/Media/Attachment/Upload.php:79 +#: src/Module/Media/Attachment/Upload.php:84 +#: src/Module/Media/Photo/Upload.php:83 src/Module/Media/Photo/Upload.php:88 +#: src/Module/Media/Photo/Upload.php:137 +msgid "Invalid request." +msgstr "Nieprawidłowe żądanie." + +#: src/Module/Contact/MatchInterests.php:101 +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:144 +msgid "Profile Match" +msgstr "Dopasowanie profilu" + +#: src/Module/Contact/Profile.php:128 msgid "Failed to update contact record." msgstr "Aktualizacja rekordu kontaktu nie powiodła się." -#: src/Module/Contact/Profile.php:177 +#: src/Module/Contact/Profile.php:178 msgid "Contact has been unblocked" msgstr "Kontakt został odblokowany" -#: src/Module/Contact/Profile.php:181 +#: src/Module/Contact/Profile.php:182 msgid "Contact has been blocked" msgstr "Kontakt został zablokowany" -#: src/Module/Contact/Profile.php:193 +#: src/Module/Contact/Profile.php:194 msgid "Contact has been unignored" msgstr "Kontakt nie jest ignorowany" -#: src/Module/Contact/Profile.php:197 +#: src/Module/Contact/Profile.php:198 msgid "Contact has been ignored" msgstr "Kontakt jest ignorowany" -#: src/Module/Contact/Profile.php:229 +#: src/Module/Contact/Profile.php:230 #, php-format msgid "You are mutual friends with %s" msgstr "Jesteś już znajomym z %s" -#: src/Module/Contact/Profile.php:230 +#: src/Module/Contact/Profile.php:231 #, php-format msgid "You are sharing with %s" msgstr "Współdzielisz z %s" -#: src/Module/Contact/Profile.php:231 +#: src/Module/Contact/Profile.php:232 #, php-format msgid "%s is sharing with you" msgstr "%s współdzieli z tobą" -#: src/Module/Contact/Profile.php:247 +#: src/Module/Contact/Profile.php:248 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:249 +#: src/Module/Contact/Profile.php:250 msgid "Never" msgstr "Nigdy" -#: src/Module/Contact/Profile.php:252 +#: src/Module/Contact/Profile.php:253 msgid "(Update was not successful)" msgstr "(Aktualizacja nie powiodła się)" -#: src/Module/Contact/Profile.php:252 +#: src/Module/Contact/Profile.php:253 msgid "(Update was successful)" msgstr "(Aktualizacja przebiegła pomyślnie)" -#: src/Module/Contact/Profile.php:254 src/Module/Contact/Profile.php:420 +#: src/Module/Contact/Profile.php:255 src/Module/Contact/Profile.php:438 msgid "Suggest friends" msgstr "Osoby, które możesz znać" -#: src/Module/Contact/Profile.php:258 +#: src/Module/Contact/Profile.php:259 #, php-format msgid "Network type: %s" msgstr "Typ sieci: %s" -#: src/Module/Contact/Profile.php:263 +#: src/Module/Contact/Profile.php:264 msgid "Communications lost with this contact!" msgstr "Utracono komunikację z tym kontaktem!" -#: src/Module/Contact/Profile.php:269 +#: src/Module/Contact/Profile.php:270 msgid "Fetch further information for feeds" msgstr "Pobierz dalsze informacje dla kanałów" -#: src/Module/Contact/Profile.php:271 +#: src/Module/Contact/Profile.php:272 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:274 +#: src/Module/Contact/Profile.php:275 msgid "Fetch information" msgstr "Pobierz informacje" -#: src/Module/Contact/Profile.php:275 +#: src/Module/Contact/Profile.php:276 msgid "Fetch keywords" msgstr "Pobierz słowa kluczowe" -#: src/Module/Contact/Profile.php:276 +#: src/Module/Contact/Profile.php:277 msgid "Fetch information and keywords" msgstr "Pobierz informacje i słowa kluczowe" -#: src/Module/Contact/Profile.php:286 src/Module/Contact/Profile.php:292 +#: src/Module/Contact/Profile.php:287 src/Module/Contact/Profile.php:292 #: src/Module/Contact/Profile.php:297 src/Module/Contact/Profile.php:303 msgid "No mirroring" msgstr "Bez dublowania" -#: src/Module/Contact/Profile.php:287 -msgid "Mirror as forwarded posting" -msgstr "Przesłany lustrzany post" - #: src/Module/Contact/Profile.php:288 src/Module/Contact/Profile.php:298 #: src/Module/Contact/Profile.php:304 msgid "Mirror as my own posting" @@ -7159,7 +6138,7 @@ msgstr "Ostatnia aktualizacja:" msgid "Update public posts" msgstr "Zaktualizuj publiczne wpisy" -#: src/Module/Contact/Profile.php:346 src/Module/Contact/Profile.php:430 +#: src/Module/Contact/Profile.php:346 src/Module/Contact/Profile.php:448 msgid "Update now" msgstr "Aktualizuj teraz" @@ -7180,7 +6159,7 @@ msgid "Awaiting connection acknowledge" msgstr "Oczekiwanie na potwierdzenie połączenia" #: src/Module/Contact/Profile.php:357 -#: src/Module/Notifications/Introductions.php:190 +#: src/Module/Notifications/Introductions.php:192 msgid "Hide this contact from others" msgstr "Ukryj ten kontakt przed innymi" @@ -7208,7 +6187,7 @@ msgid "" 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:378 -#: src/Module/Settings/TwoFactor/Index.php:140 +#: src/Module/Settings/TwoFactor/Index.php:139 msgid "Actions" msgstr "Akcja" @@ -7222,149 +6201,179 @@ msgid "" "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:440 +#: src/Module/Contact/Profile.php:458 msgid "Refetch contact data" msgstr "Pobierz ponownie dane kontaktowe" -#: src/Module/Contact/Profile.php:451 +#: src/Module/Contact/Profile.php:469 msgid "Toggle Blocked status" msgstr "Przełącz stan na Zablokowany" -#: src/Module/Contact/Profile.php:459 +#: src/Module/Contact/Profile.php:477 msgid "Toggle Ignored status" msgstr "Przełącz stan na Ignorowany" -#: src/Module/Contact/Profile.php:466 src/Module/Contact/Revoke.php:105 +#: src/Module/Contact/Profile.php:484 src/Module/Contact/Revoke.php:106 msgid "Revoke Follow" msgstr "Anuluj obserwowanie" -#: src/Module/Contact/Profile.php:468 +#: src/Module/Contact/Profile.php:486 msgid "Revoke the follow from this contact" msgstr "Anuluj obserwację przez ten kontakt" -#: src/Module/Contact/Revoke.php:62 +#: src/Module/Contact/Redir.php:134 src/Module/Contact/Redir.php:186 +msgid "Bad Request." +msgstr "Błędne zapytanie." + +#: src/Module/Contact/Revoke.php:63 msgid "Unknown contact." msgstr "Nieznany kontakt." -#: src/Module/Contact/Revoke.php:72 src/Module/Group.php:112 +#: src/Module/Contact/Revoke.php:73 src/Module/Group.php:110 msgid "Contact is deleted." msgstr "Kontakt został usunięty." -#: src/Module/Contact/Revoke.php:76 +#: src/Module/Contact/Revoke.php:77 msgid "Contact is being deleted." msgstr "Kontakt jest usuwany." -#: src/Module/Contact/Revoke.php:90 +#: src/Module/Contact/Revoke.php:91 msgid "Follow was successfully revoked." msgstr "Obserwacja została pomyślnie anulowana." -#: src/Module/Contact/Revoke.php:106 +#: src/Module/Contact/Revoke.php:107 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/Revoke.php:107 -#: src/Module/Notifications/Introductions.php:142 +#: src/Module/Contact/Revoke.php:108 +#: src/Module/Notifications/Introductions.php:144 #: src/Module/OAuth/Acknowledge.php:53 src/Module/Register.php:130 -#: src/Module/Settings/TwoFactor/Trusted.php:124 +#: src/Module/Settings/TwoFactor/Trusted.php:126 msgid "Yes" msgstr "Tak" -#: src/Module/Conversation/Community.php:68 -msgid "Local Community" -msgstr "Lokalna społeczność" +#: src/Module/Contact/Suggestions.php:62 +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/Conversation/Community.php:71 -msgid "Posts from local users on this server" -msgstr "Wpisy od lokalnych użytkowników na tym serwerze" +#: src/Module/Contact/Unfollow.php:98 src/Module/Contact/Unfollow.php:167 +msgid "You aren't following this contact." +msgstr "Nie obserwujesz tego kontaktu." -#: src/Module/Conversation/Community.php:79 -msgid "Global Community" -msgstr "Globalna społeczność" +#: src/Module/Contact/Unfollow.php:103 +msgid "Unfollowing is currently not supported by your network." +msgstr "Brak obserwowania nie jest obecnie obsługiwany przez twoją sieć." -#: src/Module/Conversation/Community.php:82 -msgid "Posts from users of the whole federated network" -msgstr "Wpisy od użytkowników całej sieci stowarzyszonej" +#: src/Module/Contact/Unfollow.php:121 +msgid "Disconnect/Unfollow" +msgstr "Rozłącz/Nie obserwuj" -#: src/Module/Conversation/Community.php:115 -msgid "Own Contacts" -msgstr "Własne kontakty" +#: src/Module/Contact/Unfollow.php:175 +msgid "Contact was successfully unfollowed" +msgstr "Kontakt pomyślnie przestał być obserwowany" -#: src/Module/Conversation/Community.php:119 -msgid "Include" -msgstr "Zawiera" +#: src/Module/Contact/Unfollow.php:178 +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/Community.php:120 -msgid "Hide" -msgstr "Ukryj" - -#: src/Module/Conversation/Community.php:137 src/Module/Search/Index.php:152 -#: src/Module/Search/Index.php:194 -msgid "No results." -msgstr "Brak wyników." - -#: src/Module/Conversation/Community.php:162 +#: src/Module/Conversation/Community.php:73 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:199 +#: src/Module/Conversation/Community.php:86 +msgid "Local Community" +msgstr "Lokalna społeczność" + +#: src/Module/Conversation/Community.php:89 +msgid "Posts from local users on this server" +msgstr "Wpisy od lokalnych użytkowników na tym serwerze" + +#: src/Module/Conversation/Community.php:97 +msgid "Global Community" +msgstr "Globalna społeczność" + +#: src/Module/Conversation/Community.php:100 +msgid "Posts from users of the whole federated network" +msgstr "Wpisy od użytkowników całej sieci stowarzyszonej" + +#: src/Module/Conversation/Community.php:133 +msgid "Own Contacts" +msgstr "Własne kontakty" + +#: src/Module/Conversation/Community.php:137 +msgid "Include" +msgstr "Zawiera" + +#: src/Module/Conversation/Community.php:138 +msgid "Hide" +msgstr "Ukryj" + +#: src/Module/Conversation/Community.php:155 src/Module/Search/Index.php:151 +#: src/Module/Search/Index.php:193 +msgid "No results." +msgstr "Brak wyników." + +#: src/Module/Conversation/Community.php:211 msgid "Community option not available." msgstr "Opcja wspólnotowa jest niedostępna." -#: src/Module/Conversation/Community.php:215 +#: src/Module/Conversation/Community.php:227 msgid "Not available." msgstr "Niedostępne." -#: src/Module/Conversation/Network.php:173 +#: src/Module/Conversation/Network.php:174 msgid "No such group" msgstr "Nie ma takiej grupy" -#: src/Module/Conversation/Network.php:177 +#: src/Module/Conversation/Network.php:178 #, php-format msgid "Group: %s" msgstr "Grupa: %s" -#: src/Module/Conversation/Network.php:255 +#: src/Module/Conversation/Network.php:256 msgid "Latest Activity" msgstr "Ostatnia Aktywność" -#: src/Module/Conversation/Network.php:258 +#: src/Module/Conversation/Network.php:259 msgid "Sort by latest activity" msgstr "Sortuj wg. ostatniej aktywności" -#: src/Module/Conversation/Network.php:263 +#: src/Module/Conversation/Network.php:264 msgid "Latest Posts" msgstr "Najnowsze wpisy" -#: src/Module/Conversation/Network.php:266 +#: src/Module/Conversation/Network.php:267 msgid "Sort by post received date" msgstr "Sortuj wg. daty otrzymania wpisu" -#: src/Module/Conversation/Network.php:271 +#: src/Module/Conversation/Network.php:272 msgid "Latest Creation" msgstr "Najnowsze utworzenia" -#: src/Module/Conversation/Network.php:274 +#: src/Module/Conversation/Network.php:275 msgid "Sort by post creation date" msgstr "Sortuj wg. daty utworzenia wpisu" -#: src/Module/Conversation/Network.php:279 -#: src/Module/Settings/Profile/Index.php:227 +#: src/Module/Conversation/Network.php:280 +#: src/Module/Settings/Profile/Index.php:236 msgid "Personal" msgstr "Osobiste" -#: src/Module/Conversation/Network.php:282 +#: src/Module/Conversation/Network.php:283 msgid "Posts that mention or involve you" msgstr "Wpisy, które wspominają lub angażują Ciebie" -#: src/Module/Conversation/Network.php:287 src/Object/Post.php:351 +#: src/Module/Conversation/Network.php:288 src/Object/Post.php:350 msgid "Starred" msgstr "Ulubione" -#: src/Module/Conversation/Network.php:290 +#: src/Module/Conversation/Network.php:291 msgid "Favourite Posts" msgstr "Ulubione wpisy" @@ -7379,23 +6388,33 @@ msgid "" "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:58 +#: src/Module/Debug/ActivityPubConversion.php:53 msgid "Formatted" msgstr "Sformatowany" -#: src/Module/Debug/ActivityPubConversion.php:70 +#: src/Module/Debug/ActivityPubConversion.php:65 msgid "Activity" msgstr "Aktywność" -#: src/Module/Debug/ActivityPubConversion.php:122 +#: src/Module/Debug/ActivityPubConversion.php:117 msgid "Object data" msgstr "Dane obiektu" -#: src/Module/Debug/ActivityPubConversion.php:129 +#: src/Module/Debug/ActivityPubConversion.php:124 msgid "Result Item" msgstr "Pozycja wynikowa" -#: src/Module/Debug/ActivityPubConversion.php:143 +#: src/Module/Debug/ActivityPubConversion.php:129 +#: src/Module/Debug/Babel.php:293 src/Module/Moderation/Item/Source.php:87 +#: src/Module/Security/TwoFactor/Verify.php:98 +msgid "Error" +msgid_plural "Errors" +msgstr[0] "Błąd" +msgstr[1] "Błędów" +msgstr[2] "Błędy" +msgstr[3] "Błędów" + +#: src/Module/Debug/ActivityPubConversion.php:138 msgid "Source activity" msgstr "Aktywność źródła" @@ -7575,12 +6594,12 @@ msgstr "HTML" msgid "Twitter Source / Tweet URL (requires API key)" msgstr "Źródło Twitter / URL Tweeta (wymaga klucza API)" -#: src/Module/Debug/Feed.php:51 src/Module/Filer/SaveTag.php:46 -#: src/Module/Settings/Profile/Index.php:141 +#: src/Module/Debug/Feed.php:52 src/Module/Filer/SaveTag.php:47 +#: src/Module/Settings/Profile/Index.php:144 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:76 +#: src/Module/Debug/Feed.php:77 msgid "Source URL" msgstr "Źródłowy adres URL" @@ -7637,197 +6656,207 @@ msgstr "Diagnostyka Webfinger" msgid "Lookup address:" msgstr "Wyszukaj adres:" -#: src/Module/Delegation.php:111 +#: src/Module/Delegation.php:110 #, php-format msgid "You are now logged in as %s" msgstr "Jesteś teraz zalogowany jako %s" -#: src/Module/Delegation.php:143 +#: src/Module/Delegation.php:142 msgid "Switch between your accounts" msgstr "Przełącz się pomiędzy kontami" -#: src/Module/Delegation.php:144 +#: src/Module/Delegation.php:143 msgid "Manage your accounts" msgstr "Zarządzaj swoimi kontami" -#: src/Module/Delegation.php:145 +#: src/Module/Delegation.php:144 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/Delegation.php:146 +#: src/Module/Delegation.php:145 msgid "Select an identity to manage: " msgstr "Wybierz tożsamość do zarządzania: " -#: src/Module/Directory.php:75 +#: src/Module/Directory.php:74 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:90 msgid "Find on this site" msgstr "Znajdź na tej stronie" -#: src/Module/Directory.php:93 +#: src/Module/Directory.php:92 msgid "Results for:" msgstr "Wyniki dla:" -#: src/Module/Directory.php:95 +#: src/Module/Directory.php:94 msgid "Site Directory" msgstr "Katalog Witryny" -#: src/Module/Filer/RemoveTag.php:68 -msgid "Item was not removed" -msgstr "Element nie został usunięty" - -#: src/Module/Filer/RemoveTag.php:71 +#: src/Module/Filer/RemoveTag.php:105 msgid "Item was not deleted" msgstr "Element nie został skasowany" -#: src/Module/Filer/SaveTag.php:72 +#: src/Module/Filer/RemoveTag.php:115 +msgid "Item was not removed" +msgstr "Element nie został usunięty" + +#: src/Module/Filer/SaveTag.php:73 msgid "- select -" msgstr "- wybierz -" -#: src/Module/FriendSuggest.php:81 +#: src/Module/FriendSuggest.php:82 msgid "Suggested contact not found." msgstr "Nie znaleziono sugerowanego kontaktu." -#: src/Module/FriendSuggest.php:99 +#: src/Module/FriendSuggest.php:100 msgid "Friend suggestion sent." msgstr "Wysłana propozycja dodania do znajomych." -#: src/Module/FriendSuggest.php:136 +#: src/Module/FriendSuggest.php:137 msgid "Suggest Friends" msgstr "Zaproponuj znajomych" -#: src/Module/FriendSuggest.php:139 +#: src/Module/FriendSuggest.php:140 #, php-format msgid "Suggest a friend for %s" msgstr "Zaproponuj znajomych dla %s" -#: src/Module/Friendica.php:62 +#: src/Module/Friendica.php:63 msgid "Installed addons/apps:" msgstr "Zainstalowane dodatki/aplikacje:" -#: src/Module/Friendica.php:67 +#: src/Module/Friendica.php:68 msgid "No installed addons/apps" msgstr "Brak zainstalowanych dodatków/aplikacji" -#: src/Module/Friendica.php:72 +#: src/Module/Friendica.php:73 #, 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:79 +#: src/Module/Friendica.php:80 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:97 +#: src/Module/Friendica.php:83 +#: src/Module/Moderation/Blocklist/Server/Index.php:84 +#: src/Module/Moderation/Blocklist/Server/Index.php:108 +msgid "Reason for the block" +msgstr "Powód blokowania" + +#: src/Module/Friendica.php:85 +msgid "Download this list in CSV format" +msgstr "" + +#: src/Module/Friendica.php:99 #, 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:102 +#: src/Module/Friendica.php:104 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:103 +#: src/Module/Friendica.php:105 msgid "Bug reports and issues: please visit" msgstr "Raporty o błędach i problemy: odwiedź stronę" -#: src/Module/Friendica.php:103 +#: src/Module/Friendica.php:105 msgid "the bugtracker at github" msgstr "śledzenie błędów na github" -#: src/Module/Friendica.php:104 +#: src/Module/Friendica.php:106 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/Group.php:58 +#: src/Module/Group.php:56 msgid "Could not create group." msgstr "Nie można utworzyć grupy." -#: src/Module/Group.php:69 src/Module/Group.php:215 src/Module/Group.php:239 +#: src/Module/Group.php:67 src/Module/Group.php:213 src/Module/Group.php:237 msgid "Group not found." msgstr "Nie znaleziono grupy." -#: src/Module/Group.php:75 +#: src/Module/Group.php:73 msgid "Group name was not changed." msgstr "Nazwa grupy nie została zmieniona." -#: src/Module/Group.php:93 +#: src/Module/Group.php:91 msgid "Unknown group." msgstr "Nieznana grupa." -#: src/Module/Group.php:118 +#: src/Module/Group.php:116 msgid "Unable to add the contact to the group." msgstr "Nie można dodać kontaktu do grupy." -#: src/Module/Group.php:121 +#: src/Module/Group.php:119 msgid "Contact successfully added to group." msgstr "Kontakt został pomyślnie dodany do grupy." -#: src/Module/Group.php:125 +#: src/Module/Group.php:123 msgid "Unable to remove the contact from the group." msgstr "Nie można usunąć kontaktu z grupy." -#: src/Module/Group.php:128 +#: src/Module/Group.php:126 msgid "Contact successfully removed from group." msgstr "Kontakt został pomyślnie usunięty z grupy." -#: src/Module/Group.php:132 +#: src/Module/Group.php:130 msgid "Bad request." msgstr "Błędne żądanie." -#: src/Module/Group.php:171 +#: src/Module/Group.php:169 msgid "Save Group" msgstr "Zapisz grupę" -#: src/Module/Group.php:172 +#: src/Module/Group.php:170 msgid "Filter" msgstr "Filtr" -#: src/Module/Group.php:178 +#: src/Module/Group.php:176 msgid "Create a group of contacts/friends." msgstr "Stwórz grupę znajomych." -#: src/Module/Group.php:220 +#: src/Module/Group.php:218 msgid "Unable to remove group." msgstr "Nie można usunąć grupy." -#: src/Module/Group.php:271 +#: src/Module/Group.php:269 msgid "Delete Group" msgstr "Usuń grupę" -#: src/Module/Group.php:281 +#: src/Module/Group.php:279 msgid "Edit Group Name" msgstr "Edytuj nazwę grupy" -#: src/Module/Group.php:291 +#: src/Module/Group.php:289 msgid "Members" msgstr "Członkowie" -#: src/Module/Group.php:294 +#: src/Module/Group.php:292 msgid "Group is empty" msgstr "Grupa jest pusta" -#: src/Module/Group.php:307 +#: src/Module/Group.php:305 msgid "Remove contact from group" msgstr "Usuń kontakt z grupy" -#: src/Module/Group.php:328 +#: src/Module/Group.php:326 msgid "Click on a contact to add or remove." msgstr "Kliknij na kontakt w celu dodania lub usunięcia." -#: src/Module/Group.php:342 +#: src/Module/Group.php:340 msgid "Add contact to group" msgstr "Dodaj kontakt do grupy" -#: src/Module/HCard.php:46 +#: src/Module/HCard.php:45 msgid "No profile" msgstr "Brak profilu" @@ -7865,6 +6894,10 @@ msgstr "Opcjonalne wymagania niespełnione" msgid "OK" msgstr "OK" +#: src/Module/Install.php:214 +msgid "Next" +msgstr "Następny" + #: src/Module/Install.php:215 msgid "Check again" msgstr "Sprawdź ponownie" @@ -8107,41 +7140,67 @@ msgid "" "important, please visit http://friendi.ca" msgstr "Aby uzyskać więcej informacji na temat projektu Friendica i dlaczego uważamy, że jest to ważne, odwiedź http://friendi.ca" -#: src/Module/Item/Compose.php:50 +#: src/Module/Item/Compose.php:85 msgid "Please enter a post body." msgstr "Podaj treść wpisu." -#: src/Module/Item/Compose.php:63 +#: src/Module/Item/Compose.php:98 msgid "This feature is only available with the frio theme." msgstr "Ta funkcja jest dostępna tylko z motywem Frio." -#: src/Module/Item/Compose.php:90 +#: src/Module/Item/Compose.php:122 msgid "Compose new personal note" msgstr "Utwórz nową notatkę osobistą" -#: src/Module/Item/Compose.php:99 +#: src/Module/Item/Compose.php:131 msgid "Compose new post" msgstr "Utwórz nowy wpis" -#: src/Module/Item/Compose.php:153 +#: src/Module/Item/Compose.php:187 msgid "Visibility" msgstr "Widoczność" -#: src/Module/Item/Compose.php:174 +#: src/Module/Item/Compose.php:201 msgid "Clear the location" msgstr "Wyczyść lokalizację" -#: src/Module/Item/Compose.php:175 +#: src/Module/Item/Compose.php:202 msgid "Location services are unavailable on your device" msgstr "Usługi lokalizacyjne są niedostępne na twoim urządzeniu" -#: src/Module/Item/Compose.php:176 +#: src/Module/Item/Compose.php:203 msgid "" "Location services are disabled. Please check the website's permissions on " "your device" msgstr "Usługi lokalizacyjne są wyłączone. Sprawdź uprawnienia strony internetowej na swoim urządzeniu" -#: src/Module/Item/Follow.php:52 +#: src/Module/Item/Compose.php:209 +msgid "" +"You can make this page always open when you use the New Post button in the " +"Theme Customization settings." +msgstr "" + +#: src/Module/Item/Display.php:135 src/Module/Update/Display.php:55 +msgid "The requested item doesn't exist or has been deleted." +msgstr "Żądany element nie istnieje lub został usunięty." + +#: src/Module/Item/Display.php:249 +msgid "" +"Unfortunately, the requested conversation isn't available to you.

\n" +"

Possible reasons include:

\n" +"
    \n" +"\t
  • The top-level post isn't visible.
  • \n" +"\t
  • The top-level post was deleted.
  • \n" +"\t
  • The node has blocked the top-level author or the author of the shared post.
  • \n" +"\t
  • You have ignored or blocked the top-level author or the author of the shared post.
  • \n" +"

" +msgstr "" + +#: src/Module/Item/Feed.php:86 +msgid "The feed for this item is unavailable." +msgstr "Kanał dla tego elementu jest niedostępny." + +#: src/Module/Item/Follow.php:51 msgid "Unable to follow this item." msgstr "Nie można obserwować tego elementu." @@ -8160,98 +7219,880 @@ msgstr "Ten węzeł Friendica jest obecnie w trybie konserwacji, przełączanej msgid "A Decentralized Social Network" msgstr "Zdecentralizowana sieć społecznościowa" -#: src/Module/Notifications/Introductions.php:97 +#: src/Module/Media/Attachment/Browser.php:58 +#: src/Module/Media/Photo/Browser.php:59 +msgid "You need to be logged in to access this page." +msgstr "" + +#: src/Module/Media/Attachment/Browser.php:74 +msgid "Files" +msgstr "Pliki" + +#: src/Module/Media/Attachment/Browser.php:79 +#: src/Module/Media/Photo/Browser.php:90 +#: src/Module/Settings/Profile/Photo/Index.php:128 +msgid "Upload" +msgstr "Wyślij" + +#: src/Module/Media/Attachment/Upload.php:99 +msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" +msgstr "Przepraszam, Twój przesyłany plik jest większy niż pozwala konfiguracja PHP" + +#: src/Module/Media/Attachment/Upload.php:99 +msgid "Or - did you try to upload an empty file?" +msgstr "Lub - czy próbowałeś przesłać pusty plik?" + +#: src/Module/Media/Attachment/Upload.php:106 +#, php-format +msgid "File exceeds size limit of %s" +msgstr "Plik przekracza limit rozmiaru wynoszący %s" + +#: src/Module/Media/Attachment/Upload.php:116 +msgid "File upload failed." +msgstr "Przesyłanie pliku nie powiodło się." + +#: src/Module/Media/Photo/Upload.php:154 src/Module/Media/Photo/Upload.php:155 +#: src/Module/Profile/Photos.php:217 +#: src/Module/Settings/Profile/Photo/Index.php:68 +msgid "Unable to process image." +msgstr "Przetwarzanie obrazu nie powiodło się." + +#: src/Module/Media/Photo/Upload.php:188 src/Module/Profile/Photos.php:164 +#: src/Module/Profile/Photos.php:167 src/Module/Profile/Photos.php:194 +#: src/Module/Settings/Profile/Photo/Index.php:59 +#, php-format +msgid "Image exceeds size limit of %s" +msgstr "Obraz przekracza limit rozmiaru wynoszący %s" + +#: src/Module/Media/Photo/Upload.php:206 src/Module/Profile/Photos.php:243 +#: src/Module/Settings/Profile/Photo/Index.php:95 +msgid "Image upload failed." +msgstr "Przesyłanie obrazu nie powiodło się." + +#: src/Module/Moderation/BaseUsers.php:72 +msgid "List of all users" +msgstr "Lista wszystkich użytkowników" + +#: src/Module/Moderation/BaseUsers.php:77 +msgid "Active" +msgstr "Aktywne" + +#: src/Module/Moderation/BaseUsers.php:80 +msgid "List of active accounts" +msgstr "Lista aktywnych kont" + +#: src/Module/Moderation/BaseUsers.php:88 +msgid "List of pending registrations" +msgstr "Lista oczekujących rejestracji" + +#: src/Module/Moderation/BaseUsers.php:96 +msgid "List of blocked users" +msgstr "Lista zablokowanych użytkowników" + +#: src/Module/Moderation/BaseUsers.php:101 +msgid "Deleted" +msgstr "Usunięte" + +#: src/Module/Moderation/BaseUsers.php:104 +msgid "List of pending user deletions" +msgstr "Lista oczekujących na usunięcie użytkowników" + +#: src/Module/Moderation/BaseUsers.php:119 src/Module/Settings/Account.php:491 +msgid "Normal Account Page" +msgstr "Normalna strona konta" + +#: src/Module/Moderation/BaseUsers.php:120 src/Module/Settings/Account.php:498 +msgid "Soapbox Page" +msgstr "Strona Soapbox" + +#: src/Module/Moderation/BaseUsers.php:121 src/Module/Settings/Account.php:505 +msgid "Public Forum" +msgstr "Forum publiczne" + +#: src/Module/Moderation/BaseUsers.php:122 src/Module/Settings/Account.php:512 +msgid "Automatic Friend Page" +msgstr "Automatyczna strona znajomego" + +#: src/Module/Moderation/BaseUsers.php:123 +msgid "Private Forum" +msgstr "Prywatne forum" + +#: src/Module/Moderation/BaseUsers.php:126 src/Module/Settings/Account.php:463 +msgid "Personal Page" +msgstr "Strona osobista" + +#: src/Module/Moderation/BaseUsers.php:127 src/Module/Settings/Account.php:470 +msgid "Organisation Page" +msgstr "Strona Organizacji" + +#: src/Module/Moderation/BaseUsers.php:128 src/Module/Settings/Account.php:477 +msgid "News Page" +msgstr "Strona Wiadomości" + +#: src/Module/Moderation/BaseUsers.php:129 src/Module/Settings/Account.php:484 +msgid "Community Forum" +msgstr "Forum społecznościowe" + +#: src/Module/Moderation/BaseUsers.php:130 +msgid "Relay" +msgstr "Przekaźnik" + +#: src/Module/Moderation/Blocklist/Contact.php:70 +msgid "You can't block a local contact, please block the user instead" +msgstr "Nie możesz zablokować lokalnego kontaktu, zamiast tego zablokuj użytkownika" + +#: src/Module/Moderation/Blocklist/Contact.php:89 +#, php-format +msgid "%s contact unblocked" +msgid_plural "%s contacts unblocked" +msgstr[0] "%s kontakt odblokowany" +msgstr[1] "%s kontakty odblokowane" +msgstr[2] "%s kontaktów odblokowanych" +msgstr[3] "%s kontaktów odblokowanych" + +#: src/Module/Moderation/Blocklist/Contact.php:111 +msgid "Remote Contact Blocklist" +msgstr "Lista zablokowanych kontaktów zdalnych" + +#: src/Module/Moderation/Blocklist/Contact.php:112 +msgid "" +"This page allows you to prevent any message from a remote contact to reach " +"your node." +msgstr "Ta strona pozwala zapobiec wysyłaniu do węzła wiadomości od kontaktu zdalnego." + +#: src/Module/Moderation/Blocklist/Contact.php:113 +msgid "Block Remote Contact" +msgstr "Zablokuj kontakt zdalny" + +#: src/Module/Moderation/Blocklist/Contact.php:114 +#: src/Module/Moderation/Users/Active.php:135 +#: src/Module/Moderation/Users/Blocked.php:135 +#: src/Module/Moderation/Users/Index.php:149 +#: src/Module/Moderation/Users/Pending.php:98 +msgid "select all" +msgstr "zaznacz wszystko" + +#: src/Module/Moderation/Blocklist/Contact.php:115 +msgid "select none" +msgstr "wybierz brak" + +#: src/Module/Moderation/Blocklist/Contact.php:118 +msgid "No remote contact is blocked from this node." +msgstr "Z tego węzła nie jest blokowany kontakt zdalny." + +#: src/Module/Moderation/Blocklist/Contact.php:120 +msgid "Blocked Remote Contacts" +msgstr "Zablokowane kontakty zdalne" + +#: src/Module/Moderation/Blocklist/Contact.php:121 +msgid "Block New Remote Contact" +msgstr "Zablokuj nowy kontakt zdalny" + +#: src/Module/Moderation/Blocklist/Contact.php:122 +msgid "Photo" +msgstr "Zdjęcie" + +#: src/Module/Moderation/Blocklist/Contact.php:122 +msgid "Reason" +msgstr "Powód" + +#: src/Module/Moderation/Blocklist/Contact.php:130 +#, php-format +msgid "%s total blocked contact" +msgid_plural "%s total blocked contacts" +msgstr[0] "łącznie %s zablokowany kontakt" +msgstr[1] "łącznie %s zablokowane kontakty" +msgstr[2] "łącznie %s zablokowanych kontaktów" +msgstr[3] "%s całkowicie zablokowane kontakty" + +#: src/Module/Moderation/Blocklist/Contact.php:133 +msgid "URL of the remote contact to block." +msgstr "Adres URL kontaktu zdalnego do zablokowania." + +#: src/Module/Moderation/Blocklist/Contact.php:134 +msgid "Also purge contact" +msgstr "Wyczyść również kontakt" + +#: src/Module/Moderation/Blocklist/Contact.php:134 +msgid "" +"Removes all content related to this contact from the node. Keeps the contact" +" record. This action cannot be undone." +msgstr "Usuwa z węzła całą zawartość związaną z tym kontaktem. Zachowuje rejestr kontaktów. Tej czynności nie można cofnąć." + +#: src/Module/Moderation/Blocklist/Contact.php:135 +#: src/Module/Moderation/Blocklist/Server/Import.php:121 +msgid "Block Reason" +msgstr "Powód blokady" + +#: src/Module/Moderation/Blocklist/Server/Add.php:78 +msgid "Server domain pattern added to the blocklist." +msgstr "Do listy zablokowanych dodano wzorzec domeny serwera." + +#: src/Module/Moderation/Blocklist/Server/Add.php:86 +#, php-format +msgid "%s server scheduled to be purged." +msgid_plural "%s servers scheduled to be purged." +msgstr[0] "%s serwer zaplanowany do usunięcia." +msgstr[1] "%s serwery zaplanowane do usunięcia." +msgstr[2] "%s serwerów zaplanowanych do usunięcia." +msgstr[3] "%s serwerów zaplanowanych do usunięcia." + +#: src/Module/Moderation/Blocklist/Server/Add.php:118 +#: src/Module/Moderation/Blocklist/Server/Import.php:114 +msgid "← Return to the list" +msgstr "← Wróć do listy" + +#: src/Module/Moderation/Blocklist/Server/Add.php:120 +msgid "Block A New Server Domain Pattern" +msgstr "Zablokuj nowy wzorzec domeny serwera" + +#: src/Module/Moderation/Blocklist/Server/Add.php:121 +#: src/Module/Moderation/Blocklist/Server/Index.php:96 +msgid "" +"

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

\n" +"
    \n" +"\t
  • *: Any number of characters
  • \n" +"\t
  • ?: Any single character
  • \n" +"
" +msgstr "

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

\n
    \n\t
  • *: Dowolna liczba znaków
  • \n\t
  • ?: Dowolny pojedynczy znak
  • \n
" + +#: src/Module/Moderation/Blocklist/Server/Add.php:126 +#: src/Module/Moderation/Blocklist/Server/Index.php:104 +msgid "Check pattern" +msgstr "Sprawdź wzór" + +#: src/Module/Moderation/Blocklist/Server/Add.php:127 +msgid "Matching known servers" +msgstr "Dopasowanie znanych serwerów" + +#: src/Module/Moderation/Blocklist/Server/Add.php:128 +msgid "Server Name" +msgstr "Nazwa serwera" + +#: src/Module/Moderation/Blocklist/Server/Add.php:129 +msgid "Server Domain" +msgstr "Domena serwera" + +#: src/Module/Moderation/Blocklist/Server/Add.php:130 +msgid "Known Contacts" +msgstr "Znane kontakty" + +#: src/Module/Moderation/Blocklist/Server/Add.php:131 +#, php-format +msgid "%d known server" +msgid_plural "%d known servers" +msgstr[0] "%d znany serwer" +msgstr[1] "%d znane serwery" +msgstr[2] "%d znanych serwerów" +msgstr[3] "%d znanych serwerów" + +#: src/Module/Moderation/Blocklist/Server/Add.php:132 +msgid "Add pattern to the blocklist" +msgstr "Dodaj wzór do listy blokad" + +#: src/Module/Moderation/Blocklist/Server/Add.php:134 +#: src/Module/Moderation/Blocklist/Server/Index.php:113 +msgid "Server Domain Pattern" +msgstr "Wzorzec domeny serwera" + +#: src/Module/Moderation/Blocklist/Server/Add.php:134 +#: src/Module/Moderation/Blocklist/Server/Index.php:113 +msgid "" +"The domain pattern of the new server to add to the blocklist. Do not include" +" the protocol." +msgstr "Wzorzec domeny nowego serwera do dodania do listy blokad. Nie dołączaj protokołu." + +#: src/Module/Moderation/Blocklist/Server/Add.php:135 +msgid "Purge server" +msgstr "Wyczyść serwer" + +#: src/Module/Moderation/Blocklist/Server/Add.php:135 +msgid "" +"Also purges all the locally stored content authored by the known contacts " +"registered on that server. Keeps the contacts and the server records. This " +"action cannot be undone." +msgid_plural "" +"Also purges all the locally stored content authored by the known contacts " +"registered on these servers. Keeps the contacts and the servers records. " +"This action cannot be undone." +msgstr[0] "Usuwa również całą lokalnie przechowywaną zawartość stworzoną przez znane kontakty zarejestrowane na tych serwerach. Zachowuje ewidencję kontaktów i serwerów. Tej czynności nie można cofnąć." +msgstr[1] "Usuwa również całą lokalnie przechowywaną zawartość stworzoną przez znane kontakty zarejestrowane na tych serwerach. Zachowuje ewidencję kontaktów i serwerów. Tej czynności nie można cofnąć." +msgstr[2] "Usuwa również całą lokalnie przechowywaną zawartość stworzoną przez znane kontakty zarejestrowane na tych serwerach. Zachowuje ewidencję kontaktów i serwerów. Tej czynności nie można cofnąć." +msgstr[3] "Usuwa również całą lokalnie przechowywaną zawartość stworzoną przez znane kontakty zarejestrowane na tych serwerach. Zachowuje ewidencję kontaktów i serwerów. Tej czynności nie można cofnąć." + +#: src/Module/Moderation/Blocklist/Server/Add.php:136 +msgid "Block reason" +msgstr "Powód zablokowania" + +#: src/Module/Moderation/Blocklist/Server/Add.php:136 +msgid "" +"The reason why you blocked this server domain pattern. This reason will be " +"shown publicly in the server information page." +msgstr "Powód, dla którego zablokowałeś ten wzorzec domeny serwera. Powód ten zostanie pokazany publicznie na stronie informacyjnej serwera." + +#: src/Module/Moderation/Blocklist/Server/Import.php:73 +#: src/Module/Moderation/Blocklist/Server/Import.php:82 +msgid "Error importing pattern file" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:88 +msgid "Local blocklist replaced with the provided file." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:92 +#, php-format +msgid "%d pattern was added to the local blocklist." +msgid_plural "%d patterns were added to the local blocklist." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:94 +msgid "No pattern was added to the local blocklist." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:116 +msgid "Import a Server Domain Pattern Blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:117 +msgid "" +"

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

" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:118 +#: src/Module/Moderation/Blocklist/Server/Index.php:103 +msgid "Upload file" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:119 +msgid "Patterns to import" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:120 +msgid "Domain Pattern" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:122 +msgid "Import Mode" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:123 +msgid "Import Patterns" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:124 +#, php-format +msgid "%d total pattern" +msgid_plural "%d total patterns" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:126 +#: src/Module/Moderation/Blocklist/Server/Index.php:112 +msgid "Server domain pattern blocklist CSV file" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:127 +msgid "Append" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:127 +msgid "" +"Imports patterns from the file that weren't already existing in the current " +"blocklist." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:128 +msgid "Replace" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Import.php:128 +msgid "Replaces the current blocklist by the imported patterns." +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:83 +#: src/Module/Moderation/Blocklist/Server/Index.php:107 +msgid "Blocked server domain pattern" +msgstr "Zablokowany wzorzec domeny serwera" + +#: src/Module/Moderation/Blocklist/Server/Index.php:85 +msgid "Delete server domain pattern" +msgstr "Usuń wzorzec domeny serwera" + +#: src/Module/Moderation/Blocklist/Server/Index.php:85 +msgid "Check to delete this entry from the blocklist" +msgstr "Zaznacz, aby usunąć ten wpis z listy bloków" + +#: src/Module/Moderation/Blocklist/Server/Index.php:93 +msgid "Server Domain Pattern Blocklist" +msgstr "Lista bloków wzorców domen serwerów" + +#: src/Module/Moderation/Blocklist/Server/Index.php:94 +msgid "" +"This page can be used to define a blocklist of server domain patterns from " +"the federated network that are not allowed to interact with your node. For " +"each domain pattern you should also provide the reason why you block it." +msgstr "Ta strona może służyć do definiowania listy zablokowanych wzorców domen serwera z sieci stowarzyszonej, które nie mogą komunikować się z węzłem. Dla każdego wzorca domeny należy również podać powód, dla którego go blokujesz." + +#: src/Module/Moderation/Blocklist/Server/Index.php:95 +msgid "" +"The list of blocked server domain patterns will be made publically available" +" on the /friendica page so that your users and " +"people investigating communication problems can find the reason easily." +msgstr "Lista zablokowanych wzorców domen serwera zostanie udostępniona publicznie na stronie /friendica, aby użytkownicy i osoby badające problemy z komunikacją mogły łatwo znaleźć przyczynę." + +#: src/Module/Moderation/Blocklist/Server/Index.php:101 +msgid "Import server domain pattern blocklist" +msgstr "" + +#: src/Module/Moderation/Blocklist/Server/Index.php:102 +msgid "Add new entry to the blocklist" +msgstr "Dodaj nowy wpis do listy zablokowanych" + +#: src/Module/Moderation/Blocklist/Server/Index.php:105 +msgid "Save changes to the blocklist" +msgstr "Zapisz zmiany w liście zablokowanych" + +#: src/Module/Moderation/Blocklist/Server/Index.php:106 +msgid "Current Entries in the Blocklist" +msgstr "Aktualne wpisy na liście zablokowanych" + +#: src/Module/Moderation/Blocklist/Server/Index.php:109 +msgid "Delete entry from the blocklist" +msgstr "Usuń wpis z listy zablokowanych" + +#: src/Module/Moderation/Blocklist/Server/Index.php:110 +msgid "Delete entry from the blocklist?" +msgstr "Usunąć wpis z listy zablokowanych?" + +#: src/Module/Moderation/Item/Delete.php:50 +msgid "Item marked for deletion." +msgstr "Przedmiot oznaczony do usunięcia." + +#: src/Module/Moderation/Item/Delete.php:63 +msgid "Delete this Item" +msgstr "Usuń ten przedmiot" + +#: src/Module/Moderation/Item/Delete.php:64 +msgid "" +"On this page you can delete an item from your node. If the item is a top " +"level posting, the entire thread will be deleted." +msgstr "Na tej stronie możesz usunąć przedmiot ze swojego węzła. Jeśli element jest publikowaniem na najwyższym poziomie, cały wątek zostanie usunięty." + +#: src/Module/Moderation/Item/Delete.php:65 +msgid "" +"You need to know the GUID of the item. You can find it e.g. by looking at " +"the display URL. The last part of http://example.com/display/123456 is the " +"GUID, here 123456." +msgstr "Musisz znać identyfikator GUID tego przedmiotu. Możesz go znaleźć np. patrząc na wyświetlany adres URL. Ostatnia część http://example.com/display/123456 to GUID, tutaj 123456." + +#: src/Module/Moderation/Item/Delete.php:67 +msgid "GUID" +msgstr "GUID" + +#: src/Module/Moderation/Item/Delete.php:67 +msgid "The GUID of the item you want to delete." +msgstr "Identyfikator elementu GUID, który chcesz usunąć." + +#: src/Module/Moderation/Item/Source.php:77 +msgid "Item Id" +msgstr "Identyfikator elementu" + +#: src/Module/Moderation/Item/Source.php:78 +msgid "Item URI" +msgstr "Identyfikator URI elementu" + +#: src/Module/Moderation/Item/Source.php:80 +msgid "Terms" +msgstr "Zasady" + +#: src/Module/Moderation/Item/Source.php:81 +msgid "Tag" +msgstr "Znacznik" + +#: src/Module/Moderation/Item/Source.php:82 +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Index.php:140 +msgid "Type" +msgstr "Typu" + +#: src/Module/Moderation/Item/Source.php:83 +msgid "Term" +msgstr "Zasada" + +#: src/Module/Moderation/Item/Source.php:84 +msgid "URL" +msgstr "URL" + +#: src/Module/Moderation/Item/Source.php:85 +msgid "Mention" +msgstr "Wzmianka" + +#: src/Module/Moderation/Item/Source.php:86 +msgid "Implicit Mention" +msgstr "Wzmianka niejawna" + +#: src/Module/Moderation/Item/Source.php:88 +msgid "Item not found" +msgstr "Nie znaleziono elementu" + +#: src/Module/Moderation/Item/Source.php:89 +msgid "No source recorded" +msgstr "" + +#: src/Module/Moderation/Item/Source.php:90 +msgid "" +"Please make sure the debug.store_source config key is set in " +"config/local.config.php for future items to have sources." +msgstr "" + +#: src/Module/Moderation/Item/Source.php:92 +msgid "Item Guid" +msgstr "Element Guid" + +#: src/Module/Moderation/Summary.php:53 +msgid "Normal Account" +msgstr "Konto normalne" + +#: src/Module/Moderation/Summary.php:54 +msgid "Automatic Follower Account" +msgstr "Automatyczne konto obserwatora" + +#: src/Module/Moderation/Summary.php:55 +msgid "Public Forum Account" +msgstr "Publiczne konto na forum" + +#: src/Module/Moderation/Summary.php:56 +msgid "Automatic Friend Account" +msgstr "Automatyczny przyjaciel konta" + +#: src/Module/Moderation/Summary.php:57 +msgid "Blog Account" +msgstr "Konto bloga" + +#: src/Module/Moderation/Summary.php:58 +msgid "Private Forum Account" +msgstr "Prywatne konto na forum" + +#: src/Module/Moderation/Summary.php:78 +msgid "Registered users" +msgstr "Zarejestrowani użytkownicy" + +#: src/Module/Moderation/Summary.php:80 +msgid "Pending registrations" +msgstr "Oczekujące rejestracje" + +#: src/Module/Moderation/Users/Active.php:43 +#: src/Module/Moderation/Users/Index.php:43 +#, php-format +msgid "%s user blocked" +msgid_plural "%s users blocked" +msgstr[0] "%s użytkownik zablokowany" +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 +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 +#, php-format +msgid "%s user deleted" +msgid_plural "%s users deleted" +msgstr[0] "usunięto %s użytkownika" +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 +#, 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 +#, 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 +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 +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 +msgid "Last public item" +msgstr "Ostatni element publiczny" + +#: src/Module/Moderation/Users/Active.php:134 +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 +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 +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 +msgid "Account expired" +msgstr "Konto wygasło" + +#: src/Module/Moderation/Users/Active.php:141 +#: src/Module/Moderation/Users/Index.php:159 +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 +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 +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 +#, php-format +msgid "%s user unblocked" +msgid_plural "%s users unblocked" +msgstr[0] "%s użytkownik odblokowany" +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 +#, php-format +msgid "User \"%s\" unblocked" +msgstr "Użytkownik \"%s\" odblokowany" + +#: src/Module/Moderation/Users/Blocked.php:134 +msgid "Blocked Users" +msgstr "Zablokowani użytkownicy" + +#: src/Module/Moderation/Users/Create.php:62 +msgid "New User" +msgstr "Nowy użytkownik" + +#: src/Module/Moderation/Users/Create.php:63 +msgid "Add User" +msgstr "Dodaj użytkownika" + +#: src/Module/Moderation/Users/Create.php:71 +msgid "Name of the new user." +msgstr "Nazwa nowego użytkownika." + +#: src/Module/Moderation/Users/Create.php:72 +msgid "Nickname" +msgstr "Pseudonim" + +#: src/Module/Moderation/Users/Create.php:72 +msgid "Nickname of the new user." +msgstr "Pseudonim nowego użytkownika." + +#: src/Module/Moderation/Users/Create.php:73 +msgid "Email address of the new user." +msgstr "Adres email nowego użytkownika." + +#: src/Module/Moderation/Users/Deleted.php:81 +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 +msgid "Permanent deletion" +msgstr "Trwałe usunięcie" + +#: src/Module/Moderation/Users/Index.php:150 +msgid "User waiting for permanent deletion" +msgstr "Użytkownik czekający na trwałe usunięcie" + +#: src/Module/Moderation/Users/Pending.php:44 +#, php-format +msgid "%s user approved" +msgid_plural "%s users approved" +msgstr[0] "%s użytkownik zatwierdzony" +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 +#, php-format +msgid "%s registration revoked" +msgid_plural "%s registrations revoked" +msgstr[0] "%s rejestrację cofnięto" +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 +msgid "Account approved." +msgstr "Konto zatwierdzone." + +#: src/Module/Moderation/Users/Pending.php:82 +msgid "Registration revoked" +msgstr "Rejestracja odwołana" + +#: src/Module/Moderation/Users/Pending.php:97 +msgid "User registrations awaiting review" +msgstr "Rejestracje użytkowników oczekujące na sprawdzenie" + +#: src/Module/Moderation/Users/Pending.php:99 +msgid "Request date" +msgstr "Data prośby" + +#: src/Module/Moderation/Users/Pending.php:100 +msgid "No registrations." +msgstr "Brak rejestracji." + +#: src/Module/Moderation/Users/Pending.php:101 +msgid "Note from the user" +msgstr "Uwaga od użytkownika" + +#: src/Module/Moderation/Users/Pending.php:103 +msgid "Deny" +msgstr "Odmów" + +#: src/Module/Notifications/Introductions.php:99 msgid "Show Ignored Requests" msgstr "Pokaż ignorowane żądania" -#: src/Module/Notifications/Introductions.php:97 +#: src/Module/Notifications/Introductions.php:99 msgid "Hide Ignored Requests" msgstr "Ukryj zignorowane prośby" -#: src/Module/Notifications/Introductions.php:113 -#: src/Module/Notifications/Introductions.php:176 +#: src/Module/Notifications/Introductions.php:115 +#: src/Module/Notifications/Introductions.php:178 msgid "Notification type:" msgstr "Typ powiadomienia:" -#: src/Module/Notifications/Introductions.php:116 +#: src/Module/Notifications/Introductions.php:118 msgid "Suggested by:" msgstr "Sugerowany przez:" -#: src/Module/Notifications/Introductions.php:141 +#: src/Module/Notifications/Introductions.php:143 msgid "Claims to be known to you: " msgstr "Twierdzi, że go/ją znasz: " -#: src/Module/Notifications/Introductions.php:142 +#: src/Module/Notifications/Introductions.php:144 #: src/Module/OAuth/Acknowledge.php:54 src/Module/Register.php:131 -#: src/Module/Settings/TwoFactor/Trusted.php:124 +#: src/Module/Settings/TwoFactor/Trusted.php:126 msgid "No" msgstr "Nie" -#: src/Module/Notifications/Introductions.php:150 +#: src/Module/Notifications/Introductions.php:152 msgid "Shall your connection be bidirectional or not?" msgstr "Czy twoje połączenie ma być dwukierunkowe, czy nie?" -#: src/Module/Notifications/Introductions.php:151 +#: src/Module/Notifications/Introductions.php:153 #, 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:152 +#: src/Module/Notifications/Introductions.php:154 #, 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:154 +#: src/Module/Notifications/Introductions.php:156 msgid "Friend" msgstr "Znajomy" -#: src/Module/Notifications/Introductions.php:155 +#: src/Module/Notifications/Introductions.php:157 msgid "Subscriber" msgstr "Subskrybent" -#: src/Module/Notifications/Introductions.php:214 +#: src/Module/Notifications/Introductions.php:216 msgid "No introductions." msgstr "Brak dostępu." -#: src/Module/Notifications/Introductions.php:215 -#: src/Module/Notifications/Notifications.php:134 +#: src/Module/Notifications/Introductions.php:217 +#: src/Module/Notifications/Notifications.php:135 #, php-format msgid "No more %s notifications." msgstr "Brak kolejnych %s powiadomień." -#: src/Module/Notifications/Notification.php:134 +#: src/Module/Notifications/Notification.php:135 msgid "You must be logged in to show this page." msgstr "Musisz być zalogowany, aby zobaczyć tę stronę." -#: src/Module/Notifications/Notifications.php:65 +#: src/Module/Notifications/Notifications.php:66 msgid "Network Notifications" msgstr "Powiadomienia sieciowe" -#: src/Module/Notifications/Notifications.php:71 +#: src/Module/Notifications/Notifications.php:72 msgid "System Notifications" msgstr "Powiadomienia systemowe" -#: src/Module/Notifications/Notifications.php:77 +#: src/Module/Notifications/Notifications.php:78 msgid "Personal Notifications" msgstr "Prywatne powiadomienia" -#: src/Module/Notifications/Notifications.php:83 +#: src/Module/Notifications/Notifications.php:84 msgid "Home Notifications" msgstr "Powiadomienia domowe" -#: src/Module/Notifications/Notifications.php:139 +#: src/Module/Notifications/Notifications.php:140 msgid "Show unread" msgstr "Pokaż nieprzeczytane" -#: src/Module/Notifications/Ping.php:222 +#: src/Module/Notifications/Ping.php:245 msgid "{0} requested registration" msgstr "{0} wymagana rejestracja" -#: src/Module/Notifications/Ping.php:233 +#: src/Module/Notifications/Ping.php:254 #, php-format msgid "{0} and %d others requested registration" msgstr "{0} i %d innych poprosili o rejestrację" @@ -8285,6 +8126,66 @@ msgstr "Skopiuj następujący kod uwierzytelniający do swojej aplikacji i zamkn 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:158 +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:70 +msgid "Subscribing to contacts" +msgstr "Subskrybowanie kontaktów" + +#: src/Module/OStatus/Subscribe.php:79 +msgid "No contact provided." +msgstr "Brak kontaktu." + +#: src/Module/OStatus/Subscribe.php:85 +msgid "Couldn't fetch information for contact." +msgstr "Nie można pobrać informacji o kontakcie." + +#: src/Module/OStatus/Subscribe.php:96 +msgid "Couldn't fetch friends for contact." +msgstr "Nie można pobrać znajomych do kontaktu." + +#: src/Module/OStatus/Subscribe.php:102 src/Module/OStatus/Subscribe.php:113 +msgid "Couldn't fetch following contacts." +msgstr "Nie udało się pobrać następujących kontaktów." + +#: src/Module/OStatus/Subscribe.php:108 +msgid "Couldn't fetch remote profile." +msgstr "Nie można pobrać profilu zdalnego." + +#: src/Module/OStatus/Subscribe.php:118 +msgid "Unsupported network" +msgstr "Sieć nieobsługiwana" + +#: src/Module/OStatus/Subscribe.php:134 +msgid "Done" +msgstr "Gotowe" + +#: src/Module/OStatus/Subscribe.php:148 +msgid "success" +msgstr "powodzenie" + +#: src/Module/OStatus/Subscribe.php:150 +msgid "failed" +msgstr "nie powiodło się" + +#: src/Module/OStatus/Subscribe.php:153 +msgid "ignored" +msgstr "ignorowany(-a)" + #: src/Module/PermissionTooltip.php:49 #, php-format msgid "Wrong type \"%s\", expected one of: %s" @@ -8345,58 +8246,121 @@ msgstr "Zdjęcie jest niedostępne." msgid "The Photo with id %s is not available." msgstr "Zdjęcie z identyfikatorem %s nie jest dostępne." -#: src/Module/Photo.php:174 +#: src/Module/Photo.php:178 #, php-format msgid "Invalid external resource with url %s." msgstr "Nieprawidłowy zasób zewnętrzny z adresem URL %s." -#: src/Module/Photo.php:176 +#: src/Module/Photo.php:180 #, php-format msgid "Invalid photo with id %s." msgstr "Nieprawidłowe zdjęcie z identyfikatorem %s." -#: src/Module/Profile/Contacts.php:120 +#: src/Module/Post/Edit.php:82 src/Module/Post/Edit.php:96 +msgid "Post not found." +msgstr "Nie znaleziono wpisu." + +#: src/Module/Post/Edit.php:102 +msgid "Edit post" +msgstr "Edytuj wpis" + +#: src/Module/Post/Edit.php:133 +msgid "web link" +msgstr "link" + +#: src/Module/Post/Edit.php:134 +msgid "Insert video link" +msgstr "Wstaw link do filmu" + +#: src/Module/Post/Edit.php:135 +msgid "video link" +msgstr "link do filmu" + +#: src/Module/Post/Edit.php:136 +msgid "Insert audio link" +msgstr "Wstaw link do audio" + +#: src/Module/Post/Edit.php:137 +msgid "audio link" +msgstr "link do audio" + +#: src/Module/Post/Tag/Remove.php:106 +msgid "Remove Item Tag" +msgstr "Usuń pozycję znacznika" + +#: src/Module/Post/Tag/Remove.php:107 +msgid "Select a tag to remove: " +msgstr "Wybierz znacznik do usunięcia: " + +#: src/Module/Post/Tag/Remove.php:108 src/Module/Settings/Delegation.php:178 +#: src/Module/Settings/TwoFactor/Trusted.php:144 +msgid "Remove" +msgstr "Usuń" + +#: src/Module/Profile/Contacts.php:119 msgid "No contacts." msgstr "Brak kontaktów." -#: src/Module/Profile/Profile.php:82 +#: src/Module/Profile/Photos.php:170 +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 +msgid "Image file is missing" +msgstr "Brak pliku obrazu" + +#: src/Module/Profile/Photos.php:178 +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:202 +msgid "Image file is empty." +msgstr "Plik obrazka jest pusty." + +#: src/Module/Profile/Photos.php:384 +msgid "View Album" +msgstr "Zobacz album" + +#: src/Module/Profile/Profile.php:81 src/Module/Profile/Restricted.php:50 msgid "Profile not found." msgstr "Nie znaleziono profilu." -#: src/Module/Profile/Profile.php:135 +#: src/Module/Profile/Profile.php:127 #, 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:144 src/Module/Settings/Account.php:575 +#: src/Module/Profile/Profile.php:136 src/Module/Settings/Account.php:576 msgid "Full Name:" msgstr "Imię i nazwisko:" -#: src/Module/Profile/Profile.php:149 +#: src/Module/Profile/Profile.php:141 msgid "Member since:" msgstr "Członek od:" -#: src/Module/Profile/Profile.php:155 +#: src/Module/Profile/Profile.php:147 msgid "j F, Y" msgstr "d M, R" -#: src/Module/Profile/Profile.php:156 +#: src/Module/Profile/Profile.php:148 msgid "j F" msgstr "d M" -#: src/Module/Profile/Profile.php:164 src/Util/Temporal.php:163 +#: src/Module/Profile/Profile.php:156 src/Util/Temporal.php:166 msgid "Birthday:" msgstr "Urodziny:" -#: src/Module/Profile/Profile.php:167 -#: src/Module/Settings/Profile/Index.php:245 src/Util/Temporal.php:165 +#: src/Module/Profile/Profile.php:159 +#: src/Module/Settings/Profile/Index.php:254 src/Util/Temporal.php:168 msgid "Age: " msgstr "Wiek: " -#: src/Module/Profile/Profile.php:167 -#: src/Module/Settings/Profile/Index.php:245 src/Util/Temporal.php:165 +#: src/Module/Profile/Profile.php:159 +#: src/Module/Settings/Profile/Index.php:254 src/Util/Temporal.php:168 #, php-format msgid "%d year old" msgid_plural "%d years old" @@ -8405,37 +8369,93 @@ msgstr[1] "%d lata" msgstr[2] "%d lat" msgstr[3] "%d lat" -#: src/Module/Profile/Profile.php:234 +#: src/Module/Profile/Profile.php:164 +#: src/Module/Settings/Profile/Index.php:247 +msgid "Description:" +msgstr "Opis:" + +#: src/Module/Profile/Profile.php:226 msgid "Forums:" msgstr "Fora:" -#: src/Module/Profile/Profile.php:246 +#: src/Module/Profile/Profile.php:238 msgid "View profile as:" msgstr "Wyświetl profil jako:" -#: src/Module/Profile/Profile.php:263 +#: src/Module/Profile/Profile.php:255 msgid "View as" msgstr "Zobacz jako" -#: src/Module/Profile/Profile.php:326 src/Module/Profile/Profile.php:329 -#: src/Module/Profile/Status.php:66 src/Module/Profile/Status.php:69 -#: src/Protocol/Feed.php:1018 src/Protocol/OStatus.php:1276 +#: src/Module/Profile/Profile.php:318 src/Module/Profile/Profile.php:321 +#: src/Module/Profile/Status.php:65 src/Module/Profile/Status.php:68 +#: src/Protocol/Feed.php:1024 src/Protocol/OStatus.php:1047 #, php-format msgid "%s's timeline" msgstr "oś czasu %s" -#: src/Module/Profile/Profile.php:327 src/Module/Profile/Status.php:67 -#: src/Protocol/Feed.php:1022 src/Protocol/OStatus.php:1281 +#: src/Module/Profile/Profile.php:319 src/Module/Profile/Status.php:66 +#: src/Protocol/Feed.php:1028 src/Protocol/OStatus.php:1052 #, php-format msgid "%s's posts" msgstr "wpisy %s" -#: src/Module/Profile/Profile.php:328 src/Module/Profile/Status.php:68 -#: src/Protocol/Feed.php:1025 src/Protocol/OStatus.php:1285 +#: src/Module/Profile/Profile.php:320 src/Module/Profile/Status.php:67 +#: src/Protocol/Feed.php:1031 src/Protocol/OStatus.php:1056 #, php-format msgid "%s's comments" msgstr "komentarze %s" +#: src/Module/Profile/RemoteFollow.php:82 +msgid "Profile unavailable." +msgstr "Profil niedostępny." + +#: src/Module/Profile/RemoteFollow.php:88 +msgid "Invalid locator" +msgstr "Nieprawidłowy lokalizator" + +#: src/Module/Profile/RemoteFollow.php:95 +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 +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 +msgid "Friend/Connection Request" +msgstr "Przyjaciel/Prośba o połączenie" + +#: src/Module/Profile/RemoteFollow.php:129 +#, php-format +msgid "" +"Enter your Webfinger address (user@domain.tld) or profile URL here. If this " +"isn't supported by your system, you have to subscribe to %s" +" 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 +#, 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 +msgid "Your Webfinger address or profile URL:" +msgstr "Twój adres lub adres URL profilu Webfinger:" + +#: src/Module/Profile/Restricted.php:59 +msgid "Restricted profile" +msgstr "Ograniczony profil" + +#: src/Module/Profile/Restricted.php:60 +msgid "" +"This profile has been restricted which prevents access to their public " +"content from anonymous visitors." +msgstr "" + #: src/Module/Profile/Schedule.php:84 msgid "Scheduled" msgstr "Zaplanowane" @@ -8448,10 +8468,52 @@ msgstr "Zawartość" msgid "Remove post" msgstr "Usuń wpis" +#: src/Module/Profile/UnkMail.php:78 +msgid "Empty message body." +msgstr "" + +#: src/Module/Profile/UnkMail.php:103 +msgid "Unable to check your home location." +msgstr "Nie można sprawdzić twojej lokalizacji." + +#: src/Module/Profile/UnkMail.php:127 +msgid "Recipient not found." +msgstr "Nie znaleziono odbiorcy." + +#: src/Module/Profile/UnkMail.php:138 +#, php-format +msgid "Number of daily wall messages for %s exceeded. Message failed." +msgstr "Dzienny limit wiadomości na tablicy %s został przekroczony. Wiadomość została odrzucona." + +#: src/Module/Profile/UnkMail.php:153 +#, php-format +msgid "" +"If you wish for %s to respond, please check that the privacy settings on " +"your site allow private mail from unknown senders." +msgstr "Jeśli chcesz %s odpowiedzieć, sprawdź, czy ustawienia prywatności w Twojej witrynie zezwalają na prywatne wiadomości od nieznanych nadawców." + +#: src/Module/Profile/UnkMail.php:161 +msgid "To" +msgstr "Do" + +#: src/Module/Profile/UnkMail.php:162 +msgid "Subject" +msgstr "Temat" + +#: src/Module/Profile/UnkMail.php:163 +msgid "Your message" +msgstr "Twoja wiadomość" + #: src/Module/Register.php:84 msgid "Only parent users can create additional accounts." msgstr "Tylko użytkownicy nadrzędni mogą tworzyć dodatkowe konta." +#: src/Module/Register.php:99 src/Module/User/Import.php:111 +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:116 msgid "" "You may (optionally) fill in this form via OpenID by supplying your OpenID " @@ -8502,7 +8564,8 @@ msgstr "Twój adres e-mail: (Informacje początkowe zostaną wysłane tam, więc msgid "Please repeat your e-mail address:" msgstr "Powtórz swój adres e-mail:" -#: src/Module/Register.php:162 src/Module/Settings/Account.php:566 +#: src/Module/Register.php:162 src/Module/Security/PasswordTooLong.php:101 +#: src/Module/Settings/Account.php:567 msgid "New Password:" msgstr "Nowe hasło:" @@ -8510,7 +8573,8 @@ msgstr "Nowe hasło:" msgid "Leave empty for an auto generated password." msgstr "Pozostaw puste dla wygenerowanego automatycznie hasła." -#: src/Module/Register.php:163 src/Module/Settings/Account.php:567 +#: src/Module/Register.php:163 src/Module/Security/PasswordTooLong.php:102 +#: src/Module/Settings/Account.php:568 msgid "Confirm:" msgstr "Potwierdź:" @@ -8525,6 +8589,10 @@ msgstr "Wybierz pseudonim profilu. Musi zaczynać się od znaku tekstowego. Twó msgid "Choose a nickname: " msgstr "Wybierz pseudonim: " +#: src/Module/Register.php:173 src/Module/User/Import.php:117 +msgid "Import" +msgstr "Import" + #: src/Module/Register.php:174 msgid "Import your profile to this friendica instance" msgstr "Zaimportuj swój profil do tej instancji friendica" @@ -8533,11 +8601,11 @@ msgstr "Zaimportuj swój profil do tej instancji friendica" msgid "Note: This node explicitly contains adult content" msgstr "Uwaga: Ten węzeł jawnie zawiera treści dla dorosłych" -#: src/Module/Register.php:183 src/Module/Settings/Delegation.php:155 +#: src/Module/Register.php:183 src/Module/Settings/Delegation.php:154 msgid "Parent Password:" msgstr "Hasło nadrzędne:" -#: src/Module/Register.php:183 src/Module/Settings/Delegation.php:155 +#: src/Module/Register.php:183 src/Module/Settings/Delegation.php:154 msgid "" "Please enter the password of the parent account to legitimize your request." msgstr "Wprowadź hasło konta nadrzędnego, aby legalizować swoje żądanie." @@ -8567,142 +8635,110 @@ 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:339 +#: src/Module/Register.php:342 #, php-format msgid "" "Failed to send email message. Here your accout details:
login: %s
" "password: %s

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

Możesz zmienić swoje hasło po zalogowaniu." -#: src/Module/Register.php:345 +#: src/Module/Register.php:348 msgid "Registration successful." msgstr "Rejestracja udana." -#: src/Module/Register.php:350 src/Module/Register.php:357 +#: src/Module/Register.php:357 src/Module/Register.php:364 +#: src/Module/Register.php:374 msgid "Your registration can not be processed." msgstr "Nie można przetworzyć Twojej rejestracji." -#: src/Module/Register.php:356 +#: src/Module/Register.php:363 msgid "You have to leave a request note for the admin." msgstr "Musisz zostawić notatkę z prośbą do administratora." -#: src/Module/Register.php:402 +#: src/Module/Register.php:373 +msgid "An internal error occured." +msgstr "Wystąpił błąd wewnętrzny." + +#: src/Module/Register.php:395 msgid "Your registration is pending approval by the site owner." msgstr "Twoja rejestracja oczekuje na zaakceptowanie przez właściciela witryny." -#: src/Module/RemoteFollow.php:71 -msgid "Profile unavailable." -msgstr "Profil niedostępny." +#: src/Module/Search/Acl.php:55 +msgid "You must be logged in to use this module." +msgstr "Musisz być zalogowany, aby korzystać z tego modułu." -#: src/Module/RemoteFollow.php:77 -msgid "Invalid locator" -msgstr "Nieprawidłowy lokalizator" - -#: src/Module/RemoteFollow.php:84 -msgid "The provided profile link doesn't seem to be valid" -msgstr "Podany link profilu wydaje się być nieprawidłowy" - -#: src/Module/RemoteFollow.php:89 -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/RemoteFollow.php:121 -msgid "Friend/Connection Request" -msgstr "Przyjaciel/Prośba o połączenie" - -#: src/Module/RemoteFollow.php:122 -#, php-format -msgid "" -"Enter your Webfinger address (user@domain.tld) or profile URL here. If this " -"isn't supported by your system, you have to subscribe to %s" -" 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/RemoteFollow.php:123 -#, 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/RemoteFollow.php:124 -msgid "Your Webfinger address or profile URL:" -msgstr "Twój adres lub adres URL profilu Webfinger:" - -#: src/Module/Search/Index.php:69 +#: src/Module/Search/Index.php:68 msgid "Only logged in users are permitted to perform a search." msgstr "Tylko zalogowani użytkownicy mogą wyszukiwać." -#: src/Module/Search/Index.php:89 +#: src/Module/Search/Index.php:88 msgid "Only one search per minute is permitted for not logged in users." msgstr "Dla niezalogowanych użytkowników dozwolone jest tylko jedno wyszukiwanie na minutę." -#: src/Module/Search/Index.php:205 +#: src/Module/Search/Index.php:204 #, php-format msgid "Items tagged with: %s" msgstr "Elementy oznaczone znacznikiem: %s" -#: src/Module/Search/Saved.php:58 +#: src/Module/Search/Saved.php:59 msgid "Search term was not saved." msgstr "Wyszukiwane hasło nie zostało zapisane." -#: src/Module/Search/Saved.php:61 +#: src/Module/Search/Saved.php:62 msgid "Search term already saved." msgstr "Wyszukiwane hasło jest już zapisane." -#: src/Module/Search/Saved.php:67 +#: src/Module/Search/Saved.php:68 msgid "Search term was not removed." msgstr "Wyszukiwane hasło nie zostało usunięte." -#: src/Module/Security/Login.php:104 +#: src/Module/Security/Login.php:123 msgid "Create a New Account" msgstr "Załóż nowe konto" -#: src/Module/Security/Login.php:129 +#: src/Module/Security/Login.php:143 msgid "Your OpenID: " msgstr "Twój OpenID: " -#: src/Module/Security/Login.php:132 +#: src/Module/Security/Login.php:146 msgid "" "Please enter your username and password to add the OpenID to your existing " "account." msgstr "Wprowadź nazwę użytkownika i hasło, aby dodać OpenID do istniejącego konta." -#: src/Module/Security/Login.php:134 +#: src/Module/Security/Login.php:148 msgid "Or login using OpenID: " msgstr "Lub zaloguj się za pośrednictwem OpenID: " -#: src/Module/Security/Login.php:148 +#: src/Module/Security/Login.php:162 msgid "Password: " msgstr "Hasło: " -#: src/Module/Security/Login.php:149 +#: src/Module/Security/Login.php:163 msgid "Remember me" msgstr "Zapamiętaj mnie" -#: src/Module/Security/Login.php:158 +#: src/Module/Security/Login.php:172 msgid "Forgot your password?" msgstr "Zapomniałeś swojego hasła?" -#: src/Module/Security/Login.php:161 +#: src/Module/Security/Login.php:175 msgid "Website Terms of Service" msgstr "Warunki korzystania z witryny" -#: src/Module/Security/Login.php:162 +#: src/Module/Security/Login.php:176 msgid "terms of service" msgstr "warunki użytkowania" -#: src/Module/Security/Login.php:164 +#: src/Module/Security/Login.php:178 msgid "Website Privacy Policy" msgstr "Polityka Prywatności Witryny" -#: src/Module/Security/Login.php:165 +#: src/Module/Security/Login.php:179 msgid "privacy policy" msgstr "polityka prywatności" -#: src/Module/Security/Logout.php:83 +#: src/Module/Security/Logout.php:84 #: src/Module/Security/TwoFactor/SignOut.php:78 #: src/Module/Security/TwoFactor/SignOut.php:86 #: src/Module/Security/TwoFactor/SignOut.php:108 @@ -8714,49 +8750,100 @@ msgstr "Wylogowano." msgid "OpenID protocol error. No ID returned" msgstr "Błąd protokołu OpenID. Nie zwrócono identyfikatora" -#: src/Module/Security/OpenID.php:92 +#: src/Module/Security/OpenID.php:90 msgid "" "Account not found. Please login to your existing account to add the OpenID " "to it." msgstr "Konto nie znalezione. Zaloguj się do swojego istniejącego konta, aby dodać do niego OpenID." -#: src/Module/Security/OpenID.php:94 +#: src/Module/Security/OpenID.php:92 msgid "" "Account not found. Please register a new account or login to your existing " "account to add the OpenID to it." msgstr "Konto nie znalezione. Zarejestruj nowe konto lub zaloguj się na istniejące konto, aby dodać do niego OpenID." -#: src/Module/Security/TwoFactor/Recovery.php:73 +#: src/Module/Security/PasswordTooLong.php:57 +#: src/Module/Settings/Account.php:67 +msgid "Passwords do not match." +msgstr "Hasła nie pasują do siebie." + +#: src/Module/Security/PasswordTooLong.php:64 +msgid "Password does not need changing." +msgstr "Hasło nie wymaga zmiany." + +#: src/Module/Security/PasswordTooLong.php:77 +#: src/Module/Settings/Account.php:81 +msgid "Password unchanged." +msgstr "Hasło niezmienione." + +#: src/Module/Security/PasswordTooLong.php:91 +msgid "Password Too Long" +msgstr "Hasło za długie" + +#: src/Module/Security/PasswordTooLong.php:92 +msgid "" +"Since version 2022.09, we've realized that any password longer than 72 " +"characters is truncated during hashing. To prevent any confusion about this " +"behavior, please update your password to be fewer or equal to 72 characters." +msgstr "" + +#: src/Module/Security/PasswordTooLong.php:93 +msgid "Update Password" +msgstr "" + +#: src/Module/Security/PasswordTooLong.php:100 +#: src/Module/Settings/Account.php:569 +msgid "Current Password:" +msgstr "Aktualne hasło:" + +#: src/Module/Security/PasswordTooLong.php:100 +#: src/Module/Settings/Account.php:569 +msgid "Your current password to confirm the changes" +msgstr "Wpisz aktualne hasło, aby potwierdzić zmiany" + +#: src/Module/Security/PasswordTooLong.php:101 +#: src/Module/Settings/Account.php:552 +msgid "" +"Allowed characters are a-z, A-Z, 0-9 and special characters except white " +"spaces, accentuated letters and colon (:)." +msgstr "Dozwolone znaki to a-z, A-Z, 0-9 i znaki specjalne, z wyjątkiem białych znaków, podkreślonych liter i dwukropka (:)." + +#: src/Module/Security/PasswordTooLong.php:101 +#: src/Module/Settings/Account.php:553 +msgid "Password length is limited to 72 characters." +msgstr "" + +#: src/Module/Security/TwoFactor/Recovery.php:74 #, php-format msgid "Remaining recovery codes: %d" msgstr "Pozostałe kody odzyskiwania: %d" -#: src/Module/Security/TwoFactor/Recovery.php:77 +#: src/Module/Security/TwoFactor/Recovery.php:80 #: src/Module/Security/TwoFactor/Verify.php:77 -#: src/Module/Settings/TwoFactor/Verify.php:94 +#: src/Module/Settings/TwoFactor/Verify.php:95 msgid "Invalid code, please retry." msgstr "Nieprawidłowy kod, spróbuj ponownie." -#: src/Module/Security/TwoFactor/Recovery.php:96 +#: src/Module/Security/TwoFactor/Recovery.php:99 msgid "Two-factor recovery" msgstr "Odzyskiwanie dwuczynnikowe" -#: src/Module/Security/TwoFactor/Recovery.php:97 +#: src/Module/Security/TwoFactor/Recovery.php:100 msgid "" "

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

" msgstr "

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

" -#: src/Module/Security/TwoFactor/Recovery.php:98 +#: src/Module/Security/TwoFactor/Recovery.php:101 #, 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:99 +#: src/Module/Security/TwoFactor/Recovery.php:102 msgid "Please enter a recovery code" msgstr "Wprowadź kod odzyskiwania" -#: src/Module/Security/TwoFactor/Recovery.php:100 +#: src/Module/Security/TwoFactor/Recovery.php:103 msgid "Submit recovery code and complete login" msgstr "Prześlij kod odzyskiwania i pełne logowanie" @@ -8778,31 +8865,31 @@ msgstr "Wyloguj" msgid "Trust and sign out" msgstr "Zaufaj i wyloguj" -#: src/Module/Security/TwoFactor/Trust.php:95 +#: src/Module/Security/TwoFactor/Trust.php:96 msgid "Couldn't save browser to Cookie." msgstr "Nie można zapisać informacji o przeglądarce do ciasteczek." -#: src/Module/Security/TwoFactor/Trust.php:139 +#: src/Module/Security/TwoFactor/Trust.php:141 msgid "Trust this browser?" msgstr "Ufać tej przeglądarce?" -#: src/Module/Security/TwoFactor/Trust.php:140 +#: src/Module/Security/TwoFactor/Trust.php:142 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:141 +#: src/Module/Security/TwoFactor/Trust.php:143 msgid "Not now" msgstr "Nie teraz" -#: src/Module/Security/TwoFactor/Trust.php:142 +#: src/Module/Security/TwoFactor/Trust.php:144 msgid "Don't trust" msgstr "Nie ufaj" -#: src/Module/Security/TwoFactor/Trust.php:143 +#: src/Module/Security/TwoFactor/Trust.php:145 msgid "Trust" -msgstr "Truj" +msgstr "Ufaj" #: src/Module/Security/TwoFactor/Verify.php:97 msgid "" @@ -8818,7 +8905,7 @@ msgid "" 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:154 +#: src/Module/Settings/TwoFactor/Verify.php:155 msgid "Please enter a code from your authentication app" msgstr "Wprowadź kod z aplikacji uwierzytelniającej" @@ -8826,127 +8913,119 @@ msgstr "Wprowadź kod z aplikacji uwierzytelniającej" msgid "Verify code and complete login" msgstr "Zweryfikuj kod i zakończ logowanie" -#: src/Module/Settings/Account.php:66 -msgid "Passwords do not match." -msgstr "Hasła nie pasują do siebie." - -#: src/Module/Settings/Account.php:80 -msgid "Password unchanged." -msgstr "Hasło niezmienione." - -#: src/Module/Settings/Account.php:95 +#: src/Module/Settings/Account.php:96 msgid "Please use a shorter name." msgstr "Użyj krótszej nazwy." -#: src/Module/Settings/Account.php:98 +#: src/Module/Settings/Account.php:99 msgid "Name too short." msgstr "Nazwa jest za krótka. " -#: src/Module/Settings/Account.php:107 +#: src/Module/Settings/Account.php:108 msgid "Wrong Password." msgstr "Nieprawidłowe hasło." -#: src/Module/Settings/Account.php:112 +#: src/Module/Settings/Account.php:113 msgid "Invalid email." msgstr "Niepoprawny e-mail." -#: src/Module/Settings/Account.php:118 +#: src/Module/Settings/Account.php:117 msgid "Cannot change to that email." msgstr "Nie można zmienić tego e-maila." -#: src/Module/Settings/Account.php:148 src/Module/Settings/Account.php:200 -#: src/Module/Settings/Account.php:220 src/Module/Settings/Account.php:304 -#: src/Module/Settings/Account.php:353 +#: src/Module/Settings/Account.php:146 src/Module/Settings/Account.php:198 +#: src/Module/Settings/Account.php:218 src/Module/Settings/Account.php:302 +#: src/Module/Settings/Account.php:351 msgid "Settings were not updated." msgstr "Ustawienia nie zostały zaktualizowane." -#: src/Module/Settings/Account.php:365 +#: src/Module/Settings/Account.php:363 msgid "Contact CSV file upload error" msgstr "Kontakt z plikiem CSV błąd przekazywania plików" -#: src/Module/Settings/Account.php:384 +#: src/Module/Settings/Account.php:382 msgid "Importing Contacts done" msgstr "Importowanie kontaktów zakończone" -#: src/Module/Settings/Account.php:397 +#: src/Module/Settings/Account.php:395 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:414 +#: src/Module/Settings/Account.php:412 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:456 +#: src/Module/Settings/Account.php:454 msgid "Personal Page Subtypes" msgstr "Podtypy osobistych stron" -#: src/Module/Settings/Account.php:457 +#: src/Module/Settings/Account.php:455 msgid "Community Forum Subtypes" msgstr "Podtypy społeczności forum" -#: src/Module/Settings/Account.php:467 +#: src/Module/Settings/Account.php:465 msgid "Account for a personal profile." msgstr "Konto dla profilu osobistego." -#: src/Module/Settings/Account.php:474 +#: src/Module/Settings/Account.php:472 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:481 +#: src/Module/Settings/Account.php:479 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:488 +#: src/Module/Settings/Account.php:486 msgid "Account for community discussions." msgstr "Konto do dyskusji w społeczności." -#: src/Module/Settings/Account.php:495 +#: src/Module/Settings/Account.php:493 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:502 +#: src/Module/Settings/Account.php:500 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:509 +#: src/Module/Settings/Account.php:507 msgid "Automatically approves all contact requests." msgstr "Automatycznie zatwierdza wszystkie prośby o kontakt." -#: src/Module/Settings/Account.php:516 +#: src/Module/Settings/Account.php:514 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:521 +#: src/Module/Settings/Account.php:519 msgid "Private Forum [Experimental]" msgstr "Prywatne Forum [Eksperymentalne]" -#: src/Module/Settings/Account.php:523 +#: src/Module/Settings/Account.php:521 msgid "Requires manual approval of contact requests." msgstr "Wymaga ręcznego zatwierdzania żądań kontaktów." -#: src/Module/Settings/Account.php:532 +#: src/Module/Settings/Account.php:530 msgid "OpenID:" msgstr "OpenID:" -#: src/Module/Settings/Account.php:532 +#: src/Module/Settings/Account.php:530 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:540 +#: src/Module/Settings/Account.php:538 msgid "Publish your profile in your local site directory?" msgstr "Czy opublikować twój profil w katalogu lokalnej witryny?" -#: src/Module/Settings/Account.php:540 +#: src/Module/Settings/Account.php:538 #, php-format msgid "" "Your profile will be published in this node's local " @@ -8954,103 +9033,89 @@ 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:546 +#: src/Module/Settings/Account.php:544 #, 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:556 +#: src/Module/Settings/Account.php:557 msgid "Account Settings" msgstr "Ustawienia konta" -#: src/Module/Settings/Account.php:557 +#: src/Module/Settings/Account.php:558 #, 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:565 +#: src/Module/Settings/Account.php:566 msgid "Password Settings" msgstr "Ustawienia hasła" -#: src/Module/Settings/Account.php:566 -msgid "" -"Allowed characters are a-z, A-Z, 0-9 and special characters except white " -"spaces, accentuated letters and colon (:)." -msgstr "Dozwolone znaki to a-z, A-Z, 0-9 i znaki specjalne, z wyjątkiem białych znaków, podkreślonych liter i dwukropka (:)." - -#: src/Module/Settings/Account.php:567 +#: src/Module/Settings/Account.php:568 msgid "Leave password fields blank unless changing" msgstr "Pozostaw pole hasła puste, jeżeli nie chcesz go zmienić." -#: src/Module/Settings/Account.php:568 -msgid "Current Password:" -msgstr "Aktualne hasło:" - -#: src/Module/Settings/Account.php:568 -msgid "Your current password to confirm the changes" -msgstr "Wpisz aktualne hasło, aby potwierdzić zmiany" - -#: src/Module/Settings/Account.php:569 +#: src/Module/Settings/Account.php:570 msgid "Password:" msgstr "Hasło:" -#: src/Module/Settings/Account.php:569 +#: src/Module/Settings/Account.php:570 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:572 +#: src/Module/Settings/Account.php:573 msgid "Delete OpenID URL" msgstr "Usuń adres URL OpenID" -#: src/Module/Settings/Account.php:574 +#: src/Module/Settings/Account.php:575 msgid "Basic Settings" msgstr "Ustawienia podstawowe" -#: src/Module/Settings/Account.php:576 +#: src/Module/Settings/Account.php:577 msgid "Email Address:" msgstr "Adres email:" -#: src/Module/Settings/Account.php:577 +#: src/Module/Settings/Account.php:578 msgid "Your Timezone:" msgstr "Twoja strefa czasowa:" -#: src/Module/Settings/Account.php:578 +#: src/Module/Settings/Account.php:579 msgid "Your Language:" msgstr "Twój język:" -#: src/Module/Settings/Account.php:578 +#: src/Module/Settings/Account.php:579 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:579 +#: src/Module/Settings/Account.php:580 msgid "Default Post Location:" msgstr "Domyślna lokalizacja wpisów:" -#: src/Module/Settings/Account.php:580 +#: src/Module/Settings/Account.php:581 msgid "Use Browser Location:" msgstr "Używaj lokalizacji przeglądarki:" -#: src/Module/Settings/Account.php:582 +#: src/Module/Settings/Account.php:583 msgid "Security and Privacy Settings" msgstr "Ustawienia bezpieczeństwa i prywatności" -#: src/Module/Settings/Account.php:584 +#: src/Module/Settings/Account.php:585 msgid "Maximum Friend Requests/Day:" msgstr "Maksymalna dzienna liczba zaproszeń do grona przyjaciół:" -#: src/Module/Settings/Account.php:584 src/Module/Settings/Account.php:594 +#: src/Module/Settings/Account.php:585 src/Module/Settings/Account.php:595 msgid "(to prevent spam abuse)" msgstr "(aby zapobiec spamowaniu)" -#: src/Module/Settings/Account.php:586 +#: src/Module/Settings/Account.php:587 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:586 +#: src/Module/Settings/Account.php:587 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 " @@ -9058,43 +9123,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:587 +#: src/Module/Settings/Account.php:588 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:587 +#: src/Module/Settings/Account.php:588 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:588 -msgid "Hide your profile details from anonymous viewers?" -msgstr "Ukryć dane Twojego profilu przed anonimowymi widzami?" - -#: src/Module/Settings/Account.php:588 -msgid "" -"Anonymous visitors will only see your profile picture, your display name and" -" the nickname you are using on your profile page. Your public posts and " -"replies will still be accessible by other means." -msgstr "Anonimowi użytkownicy zobaczą tylko Twoje zdjęcie profilowe, swoją wyświetlaną nazwę i pseudonim, którego używasz na stronie profilu. Twoje publiczne posty i odpowiedzi będą nadal dostępne w inny sposób." +#: src/Module/Settings/Account.php:589 +msgid "Hide your public content from anonymous viewers" +msgstr "" #: src/Module/Settings/Account.php:589 +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:590 msgid "Make public posts unlisted" msgstr "Ustaw publiczne wpisy jako niepubliczne" -#: src/Module/Settings/Account.php:589 +#: src/Module/Settings/Account.php:590 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:590 +#: src/Module/Settings/Account.php:591 msgid "Make all posted pictures accessible" msgstr "Udostępnij wszystkie opublikowane zdjęcia" -#: src/Module/Settings/Account.php:590 +#: src/Module/Settings/Account.php:591 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 " @@ -9102,131 +9167,127 @@ 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:591 +#: src/Module/Settings/Account.php:592 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:591 +#: src/Module/Settings/Account.php:592 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:592 +#: src/Module/Settings/Account.php:593 msgid "Allow friends to tag your posts?" msgstr "Zezwolić na oznaczanie Twoich postów przez znajomych?" -#: src/Module/Settings/Account.php:592 +#: src/Module/Settings/Account.php:593 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:593 +#: src/Module/Settings/Account.php:594 msgid "Permit unknown people to send you private mail?" msgstr "Zezwolić nieznanym osobom na wysyłanie prywatnych wiadomości?" -#: src/Module/Settings/Account.php:593 +#: src/Module/Settings/Account.php:594 msgid "" "Friendica network users may send you private messages even if they are not " "in your contact list." msgstr "Użytkownicy sieci w serwisie Friendica mogą wysyłać prywatne wiadomości, nawet jeśli nie znajdują się one na liście kontaktów." -#: src/Module/Settings/Account.php:594 +#: src/Module/Settings/Account.php:595 msgid "Maximum private messages per day from unknown people:" msgstr "Maksymalna liczba prywatnych wiadomości dziennie od nieznanych osób:" -#: src/Module/Settings/Account.php:596 +#: src/Module/Settings/Account.php:597 msgid "Default Post Permissions" msgstr "Domyślne prawa dostępu wiadomości" -#: src/Module/Settings/Account.php:600 +#: src/Module/Settings/Account.php:601 msgid "Expiration settings" msgstr "Ustawienia ważności" -#: src/Module/Settings/Account.php:601 +#: src/Module/Settings/Account.php:602 msgid "Automatically expire posts after this many days:" msgstr "Posty wygasną automatycznie po następującej liczbie dni:" -#: src/Module/Settings/Account.php:601 +#: src/Module/Settings/Account.php:602 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:602 +#: src/Module/Settings/Account.php:603 msgid "Expire posts" msgstr "Ważność wpisów" -#: src/Module/Settings/Account.php:602 +#: src/Module/Settings/Account.php:603 msgid "When activated, posts and comments will be expired." msgstr "Po aktywacji posty i komentarze wygasną." -#: src/Module/Settings/Account.php:603 +#: src/Module/Settings/Account.php:604 msgid "Expire personal notes" msgstr "Ważność osobistych notatek" -#: src/Module/Settings/Account.php:603 +#: src/Module/Settings/Account.php:604 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:604 +#: src/Module/Settings/Account.php:605 msgid "Expire starred posts" msgstr "Wygasaj wpisy oznaczone gwiazdką" -#: src/Module/Settings/Account.php:604 +#: src/Module/Settings/Account.php:605 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:605 +#: src/Module/Settings/Account.php:606 msgid "Only expire posts by others" msgstr "Wygasają tylko wpisy innych osób" -#: src/Module/Settings/Account.php:605 +#: src/Module/Settings/Account.php:606 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:608 +#: src/Module/Settings/Account.php:609 msgid "Notification Settings" msgstr "Ustawienia powiadomień" -#: src/Module/Settings/Account.php:609 +#: src/Module/Settings/Account.php:610 msgid "Send a notification email when:" msgstr "Wysyłaj powiadmonienia na email, kiedy:" -#: src/Module/Settings/Account.php:610 +#: src/Module/Settings/Account.php:611 msgid "You receive an introduction" msgstr "Otrzymałeś zaproszenie" -#: src/Module/Settings/Account.php:611 +#: src/Module/Settings/Account.php:612 msgid "Your introductions are confirmed" msgstr "Twoje zaproszenie jest potwierdzone" -#: src/Module/Settings/Account.php:612 +#: src/Module/Settings/Account.php:613 msgid "Someone writes on your profile wall" msgstr "Ktoś pisze na Twojej tablicy profilu" -#: src/Module/Settings/Account.php:613 +#: src/Module/Settings/Account.php:614 msgid "Someone writes a followup comment" msgstr "Ktoś pisze komentarz nawiązujący." -#: src/Module/Settings/Account.php:614 +#: src/Module/Settings/Account.php:615 msgid "You receive a private message" msgstr "Otrzymałeś prywatną wiadomość" -#: src/Module/Settings/Account.php:615 +#: src/Module/Settings/Account.php:616 msgid "You receive a friend suggestion" msgstr "Otrzymałeś propozycję od znajomych" -#: src/Module/Settings/Account.php:616 +#: src/Module/Settings/Account.php:617 msgid "You are tagged in a post" msgstr "Jesteś oznaczony znacznikiem we wpisie" -#: src/Module/Settings/Account.php:617 -msgid "You are poked/prodded/etc. in a post" -msgstr "Jesteś zaczepiony/zaczepiona/itp. w poście" - #: src/Module/Settings/Account.php:619 msgid "Create a desktop notification when:" msgstr "Utwórz powiadomienia na pulpicie gdy:" @@ -9336,339 +9397,564 @@ msgstr "Jeśli ten profil został przeniesiony z innego serwera, a niektóre z T msgid "Resend relocate message to contacts" msgstr "Wyślij ponownie przenieść wiadomości do kontaktów" -#: src/Module/Settings/Delegation.php:53 +#: src/Module/Settings/Addons.php:89 +msgid "Addon Settings" +msgstr "Ustawienia dodatków" + +#: src/Module/Settings/Addons.php:90 +msgid "No Addon settings configured" +msgstr "Brak skonfigurowanych ustawień dodatków" + +#: src/Module/Settings/Connectors.php:121 +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:165 +#: src/Module/Settings/Connectors.php:166 +msgid "Diaspora (Socialhome, Hubzilla)" +msgstr "Diaspora (Socialhome, Hubzilla)" + +#: src/Module/Settings/Connectors.php:165 +#: src/Module/Settings/Connectors.php:169 +#, php-format +msgid "Built-in support for %s connectivity is enabled" +msgstr "" + +#: src/Module/Settings/Connectors.php:166 +#: src/Module/Settings/Connectors.php:168 +#, php-format +msgid "Built-in support for %s connectivity is disabled" +msgstr "" + +#: src/Module/Settings/Connectors.php:168 +#: src/Module/Settings/Connectors.php:169 +msgid "OStatus (GNU Social)" +msgstr "OStatus (GNU Social)" + +#: src/Module/Settings/Connectors.php:181 +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:196 +#: src/Module/Settings/Connectors.php:242 +msgid "None" +msgstr "Brak" + +#: src/Module/Settings/Connectors.php:208 +msgid "General Social Media Settings" +msgstr "Ogólne ustawienia mediów społecznościowych" + +#: src/Module/Settings/Connectors.php:211 +msgid "Followed content scope" +msgstr "Obserwowany zakres treści" + +#: src/Module/Settings/Connectors.php:213 +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:215 +msgid "Only conversations my follows started" +msgstr "Tylko rozmowy, które rozpoczęli moi obserwowani" + +#: src/Module/Settings/Connectors.php:216 +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:217 +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:220 +msgid "Enable Content Warning" +msgstr "Włącz ostrzeżenia o treści" + +#: src/Module/Settings/Connectors.php:220 +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." +msgstr "Użytkownicy w sieciach takich jak Mastodon lub Pleroma mogą ustawić pole ostrzeżenia o treści, które domyślnie zwija ich posty. Umożliwia to automatyczne zwijanie zamiast ustawiania ostrzeżenia o treści jako tytułu wpisu. Nie wpływa na żadne inne skonfigurowane filtrowanie treści." + +#: src/Module/Settings/Connectors.php:221 +msgid "Enable intelligent shortening" +msgstr "Włącz inteligentne skracanie" + +#: src/Module/Settings/Connectors.php:221 +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:222 +msgid "Enable simple text shortening" +msgstr "Włącz proste skracanie tekstu" + +#: src/Module/Settings/Connectors.php:222 +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:223 +msgid "Attach the link title" +msgstr "Dołącz tytuł linku" + +#: src/Module/Settings/Connectors.php:223 +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:224 +msgid "Your legacy ActivityPub/GNU Social account" +msgstr "Twoje stare konto ActivityPub/GNU Social" + +#: src/Module/Settings/Connectors.php:224 +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:227 +msgid "Repair OStatus subscriptions" +msgstr "Napraw subskrypcje OStatus" + +#: src/Module/Settings/Connectors.php:231 +msgid "Email/Mailbox Setup" +msgstr "Ustawienia emaila/skrzynki mailowej" + +#: src/Module/Settings/Connectors.php:232 +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:233 +msgid "Last successful email check:" +msgstr "Ostatni sprawdzony e-mail:" + +#: src/Module/Settings/Connectors.php:235 +msgid "IMAP server name:" +msgstr "Nazwa serwera IMAP:" + +#: src/Module/Settings/Connectors.php:236 +msgid "IMAP port:" +msgstr "Port IMAP:" + +#: src/Module/Settings/Connectors.php:237 +msgid "Security:" +msgstr "Bezpieczeństwo:" + +#: src/Module/Settings/Connectors.php:238 +msgid "Email login name:" +msgstr "Nazwa logowania e-mail:" + +#: src/Module/Settings/Connectors.php:239 +msgid "Email password:" +msgstr "Hasło e-mail:" + +#: src/Module/Settings/Connectors.php:240 +msgid "Reply-to address:" +msgstr "Adres zwrotny:" + +#: src/Module/Settings/Connectors.php:241 +msgid "Send public posts to all email contacts:" +msgstr "Wyślij publiczny wpis do wszystkich kontaktów e-mail:" + +#: src/Module/Settings/Connectors.php:242 +msgid "Action after import:" +msgstr "Akcja po zaimportowaniu:" + +#: src/Module/Settings/Connectors.php:242 +msgid "Move to folder" +msgstr "Przenieś do katalogu" + +#: src/Module/Settings/Connectors.php:243 +msgid "Move to folder:" +msgstr "Przenieś do katalogu:" + +#: src/Module/Settings/Delegation.php:52 msgid "Delegation successfully granted." msgstr "Delegacja została pomyślnie przyznana." -#: src/Module/Settings/Delegation.php:55 +#: src/Module/Settings/Delegation.php:54 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:59 +#: src/Module/Settings/Delegation.php:58 msgid "Delegation successfully revoked." msgstr "Delegacja została pomyślnie odwołana." -#: src/Module/Settings/Delegation.php:81 -#: src/Module/Settings/Delegation.php:103 +#: src/Module/Settings/Delegation.php:80 +#: src/Module/Settings/Delegation.php:102 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:95 +#: src/Module/Settings/Delegation.php:94 msgid "Delegate user not found." msgstr "Nie znaleziono delegowanego użytkownika." -#: src/Module/Settings/Delegation.php:143 +#: src/Module/Settings/Delegation.php:142 msgid "No parent user" msgstr "Brak nadrzędnego użytkownika" -#: src/Module/Settings/Delegation.php:154 -#: src/Module/Settings/Delegation.php:165 +#: src/Module/Settings/Delegation.php:153 +#: src/Module/Settings/Delegation.php:164 msgid "Parent User" msgstr "Użytkownik nadrzędny" -#: src/Module/Settings/Delegation.php:162 +#: src/Module/Settings/Delegation.php:161 msgid "Additional Accounts" msgstr "Dodatkowe konta" -#: src/Module/Settings/Delegation.php:163 +#: src/Module/Settings/Delegation.php:162 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:164 +#: src/Module/Settings/Delegation.php:163 msgid "Register an additional account" msgstr "Zarejestruj dodatkowe konto" -#: src/Module/Settings/Delegation.php:168 +#: src/Module/Settings/Delegation.php:167 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:172 +#: src/Module/Settings/Delegation.php:171 msgid "Delegates" msgstr "Oddeleguj" -#: src/Module/Settings/Delegation.php:174 +#: src/Module/Settings/Delegation.php:173 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:175 +#: src/Module/Settings/Delegation.php:174 msgid "Existing Page Delegates" msgstr "Obecni delegaci stron" -#: src/Module/Settings/Delegation.php:177 +#: src/Module/Settings/Delegation.php:176 msgid "Potential Delegates" msgstr "Potencjalni delegaci" -#: src/Module/Settings/Delegation.php:180 +#: src/Module/Settings/Delegation.php:179 msgid "Add" msgstr "Dodaj" -#: src/Module/Settings/Delegation.php:181 +#: src/Module/Settings/Delegation.php:180 msgid "No entries." msgstr "Brak wpisów." -#: src/Module/Settings/Display.php:107 +#: src/Module/Settings/Display.php:110 msgid "The theme you chose isn't available." msgstr "Wybrany motyw jest niedostępny." -#: src/Module/Settings/Display.php:146 +#: src/Module/Settings/Display.php:149 #, php-format msgid "%s - (Unsupported)" msgstr "%s - (Nieobsługiwane)" -#: src/Module/Settings/Display.php:192 +#: src/Module/Settings/Display.php:196 +msgid "No preview" +msgstr "" + +#: src/Module/Settings/Display.php:197 +msgid "No image" +msgstr "" + +#: src/Module/Settings/Display.php:198 +msgid "Small Image" +msgstr "" + +#: src/Module/Settings/Display.php:199 +msgid "Large Image" +msgstr "" + +#: src/Module/Settings/Display.php:210 msgid "Display Settings" msgstr "Ustawienia wyglądu" -#: src/Module/Settings/Display.php:194 +#: src/Module/Settings/Display.php:212 msgid "General Theme Settings" msgstr "Ogólne ustawienia motywu" -#: src/Module/Settings/Display.php:195 +#: src/Module/Settings/Display.php:213 msgid "Custom Theme Settings" msgstr "Niestandardowe ustawienia motywów" -#: src/Module/Settings/Display.php:196 +#: src/Module/Settings/Display.php:214 msgid "Content Settings" msgstr "Ustawienia zawartości" -#: src/Module/Settings/Display.php:197 view/theme/duepuntozero/config.php:70 -#: view/theme/frio/config.php:161 view/theme/quattro/config.php:72 -#: view/theme/vier/config.php:120 +#: src/Module/Settings/Display.php:215 view/theme/duepuntozero/config.php:86 +#: view/theme/frio/config.php:172 view/theme/quattro/config.php:88 +#: view/theme/vier/config.php:136 msgid "Theme settings" msgstr "Ustawienia motywu" -#: src/Module/Settings/Display.php:198 -msgid "Calendar" -msgstr "Kalendarz" - -#: src/Module/Settings/Display.php:204 +#: src/Module/Settings/Display.php:222 msgid "Display Theme:" msgstr "Wyświetl motyw:" -#: src/Module/Settings/Display.php:205 +#: src/Module/Settings/Display.php:223 msgid "Mobile Theme:" msgstr "Motyw dla urządzeń mobilnych:" -#: src/Module/Settings/Display.php:208 +#: src/Module/Settings/Display.php:226 msgid "Number of items to display per page:" msgstr "Liczba elementów do wyświetlenia na stronie:" -#: src/Module/Settings/Display.php:208 src/Module/Settings/Display.php:209 +#: src/Module/Settings/Display.php:226 src/Module/Settings/Display.php:227 msgid "Maximum of 100 items" msgstr "Maksymalnie 100 elementów" -#: src/Module/Settings/Display.php:209 +#: src/Module/Settings/Display.php:227 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:210 +#: src/Module/Settings/Display.php:228 msgid "Update browser every xx seconds" msgstr "Odświeżaj stronę co xx sekund" -#: src/Module/Settings/Display.php:210 +#: src/Module/Settings/Display.php:228 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:211 +#: src/Module/Settings/Display.php:229 msgid "Automatic updates only at the top of the post stream pages" msgstr "Automatyczne aktualizacje tylko w górnej części stron strumienia postu" -#: src/Module/Settings/Display.php:211 +#: src/Module/Settings/Display.php:229 msgid "" "Auto update may add new posts at the top of the post stream pages, which can" " affect the scroll position and perturb normal reading if it happens " "anywhere else the top of the page." msgstr "Automatyczna aktualizacja może dodawać nowe wpisy na górze stron strumienia wpisów, co może wpływać na pozycję przewijania i zakłócać normalne czytanie, jeśli dzieje się ono w innym miejscu na górze strony." -#: src/Module/Settings/Display.php:212 +#: src/Module/Settings/Display.php:230 msgid "Display emoticons" msgstr "Wyświetl emotikony" -#: src/Module/Settings/Display.php:212 +#: src/Module/Settings/Display.php:230 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:213 +#: src/Module/Settings/Display.php:231 msgid "Infinite scroll" msgstr "Nieskończone przewijanie" -#: src/Module/Settings/Display.php:213 +#: src/Module/Settings/Display.php:231 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:214 +#: src/Module/Settings/Display.php:232 msgid "Enable Smart Threading" msgstr "Włącz inteligentne wątkowanie" -#: src/Module/Settings/Display.php:214 +#: src/Module/Settings/Display.php:232 msgid "Enable the automatic suppression of extraneous thread indentation." msgstr "Włącz automatyczne tłumienie obcych wcięć wątku." -#: src/Module/Settings/Display.php:215 +#: src/Module/Settings/Display.php:233 msgid "Display the Dislike feature" msgstr "Wyświetl funkcję \"Nie lubię\"" -#: src/Module/Settings/Display.php:215 +#: src/Module/Settings/Display.php:233 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:216 +#: src/Module/Settings/Display.php:234 msgid "Display the resharer" msgstr "Wyświetl udostępniającego" -#: src/Module/Settings/Display.php:216 +#: src/Module/Settings/Display.php:234 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:217 +#: src/Module/Settings/Display.php:235 msgid "Stay local" msgstr "Pozostań lokalny" -#: src/Module/Settings/Display.php:217 +#: src/Module/Settings/Display.php:235 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:219 +#: src/Module/Settings/Display.php:236 +msgid "Link preview mode" +msgstr "" + +#: src/Module/Settings/Display.php:238 msgid "Beginning of week:" msgstr "Początek tygodnia:" -#: src/Module/Settings/Profile/Index.php:83 +#: src/Module/Settings/Features.php:74 +msgid "Additional Features" +msgstr "Dodatkowe funkcje" + +#: src/Module/Settings/OAuth.php:72 +msgid "Connected Apps" +msgstr "Powiązane aplikacje" + +#: src/Module/Settings/OAuth.php:76 +msgid "Remove authorization" +msgstr "Odwołaj upoważnienie" + +#: src/Module/Settings/Profile/Index.php:84 msgid "Profile Name is required." msgstr "Nazwa profilu jest wymagana." -#: src/Module/Settings/Profile/Index.php:131 +#: src/Module/Settings/Profile/Index.php:134 msgid "Profile couldn't be updated." msgstr "Profil nie mógł zostać zaktualizowany." -#: src/Module/Settings/Profile/Index.php:172 -#: src/Module/Settings/Profile/Index.php:192 +#: src/Module/Settings/Profile/Index.php:175 +#: src/Module/Settings/Profile/Index.php:195 msgid "Label:" msgstr "Etykieta:" -#: src/Module/Settings/Profile/Index.php:173 -#: src/Module/Settings/Profile/Index.php:193 +#: src/Module/Settings/Profile/Index.php:176 +#: src/Module/Settings/Profile/Index.php:196 msgid "Value:" msgstr "Wartość:" -#: src/Module/Settings/Profile/Index.php:183 -#: src/Module/Settings/Profile/Index.php:203 +#: src/Module/Settings/Profile/Index.php:186 +#: src/Module/Settings/Profile/Index.php:206 msgid "Field Permissions" msgstr "Uprawnienia pola" -#: src/Module/Settings/Profile/Index.php:184 -#: src/Module/Settings/Profile/Index.php:204 +#: src/Module/Settings/Profile/Index.php:187 +#: src/Module/Settings/Profile/Index.php:207 msgid "(click to open/close)" msgstr "(kliknij by otworzyć/zamknąć)" -#: src/Module/Settings/Profile/Index.php:190 +#: src/Module/Settings/Profile/Index.php:193 msgid "Add a new profile field" msgstr "Dodaj nowe pole profilu" -#: src/Module/Settings/Profile/Index.php:220 +#: src/Module/Settings/Profile/Index.php:217 +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:219 +#, 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:229 msgid "Profile Actions" msgstr "Akcje profilowe" -#: src/Module/Settings/Profile/Index.php:221 +#: src/Module/Settings/Profile/Index.php:230 msgid "Edit Profile Details" msgstr "Edytuj informacje o profilu" -#: src/Module/Settings/Profile/Index.php:223 +#: src/Module/Settings/Profile/Index.php:232 msgid "Change Profile Photo" msgstr "Zmień zdjęcie profilowe" -#: src/Module/Settings/Profile/Index.php:228 +#: src/Module/Settings/Profile/Index.php:237 msgid "Profile picture" msgstr "Zdjęcie profilowe" -#: src/Module/Settings/Profile/Index.php:229 +#: src/Module/Settings/Profile/Index.php:238 msgid "Location" msgstr "Lokalizacja" -#: src/Module/Settings/Profile/Index.php:230 src/Util/Temporal.php:93 -#: src/Util/Temporal.php:95 +#: src/Module/Settings/Profile/Index.php:239 src/Util/Temporal.php:95 +#: src/Util/Temporal.php:97 msgid "Miscellaneous" msgstr "Różne" -#: src/Module/Settings/Profile/Index.php:231 +#: src/Module/Settings/Profile/Index.php:240 msgid "Custom Profile Fields" msgstr "Niestandardowe pola profilu" -#: src/Module/Settings/Profile/Index.php:233 src/Module/Welcome.php:58 +#: src/Module/Settings/Profile/Index.php:242 src/Module/Welcome.php:58 msgid "Upload Profile Photo" msgstr "Wyślij zdjęcie profilowe" -#: src/Module/Settings/Profile/Index.php:237 +#: src/Module/Settings/Profile/Index.php:246 msgid "Display name:" msgstr "Nazwa wyświetlana:" -#: src/Module/Settings/Profile/Index.php:240 +#: src/Module/Settings/Profile/Index.php:249 msgid "Street Address:" msgstr "Ulica:" -#: src/Module/Settings/Profile/Index.php:241 +#: src/Module/Settings/Profile/Index.php:250 msgid "Locality/City:" msgstr "Miasto:" -#: src/Module/Settings/Profile/Index.php:242 +#: src/Module/Settings/Profile/Index.php:251 msgid "Region/State:" msgstr "Województwo/Stan:" -#: src/Module/Settings/Profile/Index.php:243 +#: src/Module/Settings/Profile/Index.php:252 msgid "Postal/Zip Code:" msgstr "Kod pocztowy:" -#: src/Module/Settings/Profile/Index.php:244 +#: src/Module/Settings/Profile/Index.php:253 msgid "Country:" msgstr "Kraj:" -#: src/Module/Settings/Profile/Index.php:246 +#: src/Module/Settings/Profile/Index.php:255 msgid "XMPP (Jabber) address:" msgstr "Adres XMPP (Jabber):" -#: src/Module/Settings/Profile/Index.php:246 +#: src/Module/Settings/Profile/Index.php:255 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:247 +#: src/Module/Settings/Profile/Index.php:256 msgid "Matrix (Element) address:" msgstr "Adres Matrix (Element):" -#: src/Module/Settings/Profile/Index.php:247 +#: src/Module/Settings/Profile/Index.php:256 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:248 +#: src/Module/Settings/Profile/Index.php:257 msgid "Homepage URL:" msgstr "Adres URL strony domowej:" -#: src/Module/Settings/Profile/Index.php:249 +#: src/Module/Settings/Profile/Index.php:258 msgid "Public Keywords:" msgstr "Publiczne słowa kluczowe:" -#: src/Module/Settings/Profile/Index.php:249 +#: src/Module/Settings/Profile/Index.php:258 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:250 +#: src/Module/Settings/Profile/Index.php:259 msgid "Private Keywords:" msgstr "Prywatne słowa kluczowe:" -#: src/Module/Settings/Profile/Index.php:250 +#: src/Module/Settings/Profile/Index.php:259 msgid "(Used for searching profiles, never shown to others)" msgstr "(Używany do wyszukiwania profili, niepokazywany innym)" -#: src/Module/Settings/Profile/Index.php:251 +#: src/Module/Settings/Profile/Index.php:260 #, php-format msgid "" "

Custom fields appear on your profile page.

\n" @@ -9678,257 +9964,296 @@ msgid "" "\t\t\t\t

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

" msgstr "

Pola niestandardowe pojawiają się na stronie Twojego profilu.

\n\t\t\t\t

Możesz użyć BBCodes w wartościach pól.

\n\t\t\t\t

Zmieniaj kolejność, przeciągając tytuł pola.

\n\t\t\t\t

Opróżnij pole etykiety, aby usunąć pole niestandardowe.

\n\t\t\t\t

Pola niepubliczne mogą być widoczne tylko dla wybranych kontaktów Friendica lub kontaktów Friendica w wybranych grupach.

" -#: src/Module/Settings/Profile/Photo/Crop.php:108 -#: src/Module/Settings/Profile/Photo/Crop.php:126 -#: src/Module/Settings/Profile/Photo/Crop.php:144 -#: src/Module/Settings/Profile/Photo/Index.php:102 +#: 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:101 #, php-format msgid "Image size reduction [%s] failed." msgstr "Redukcja rozmiaru obrazka [%s] nie powiodła się." -#: src/Module/Settings/Profile/Photo/Crop.php:151 +#: src/Module/Settings/Profile/Photo/Crop.php:150 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:156 +#: src/Module/Settings/Profile/Photo/Crop.php:155 msgid "Unable to process image" msgstr "Nie udało się przetworzyć obrazu" -#: src/Module/Settings/Profile/Photo/Crop.php:175 +#: src/Module/Settings/Profile/Photo/Crop.php:174 msgid "Photo not found." msgstr "Nie znaleziono zdjęcia." -#: src/Module/Settings/Profile/Photo/Crop.php:197 +#: src/Module/Settings/Profile/Photo/Crop.php:196 msgid "Profile picture successfully updated." msgstr "Zdjęcie profilowe zostało pomyślnie zaktualizowane." -#: src/Module/Settings/Profile/Photo/Crop.php:223 -#: src/Module/Settings/Profile/Photo/Crop.php:227 +#: src/Module/Settings/Profile/Photo/Crop.php:222 +#: src/Module/Settings/Profile/Photo/Crop.php:226 msgid "Crop Image" msgstr "Przytnij zdjęcie" -#: src/Module/Settings/Profile/Photo/Crop.php:224 +#: src/Module/Settings/Profile/Photo/Crop.php:223 msgid "Please adjust the image cropping for optimum viewing." msgstr "Dostosuj kadrowanie obrazu, aby uzyskać optymalny obraz." -#: src/Module/Settings/Profile/Photo/Crop.php:226 +#: src/Module/Settings/Profile/Photo/Crop.php:225 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:45 msgid "Missing uploaded image." msgstr " Brak przesłanego obrazu." -#: src/Module/Settings/Profile/Photo/Index.php:125 +#: src/Module/Settings/Profile/Photo/Index.php:124 msgid "Profile Picture Settings" msgstr "Ustawienia zdjęcia profilowego" -#: src/Module/Settings/Profile/Photo/Index.php:126 +#: src/Module/Settings/Profile/Photo/Index.php:125 msgid "Current Profile Picture" msgstr "Bieżące zdjęcie profilowe" -#: src/Module/Settings/Profile/Photo/Index.php:127 +#: src/Module/Settings/Profile/Photo/Index.php:126 msgid "Upload Profile Picture" msgstr "Prześlij zdjęcie profilowe" -#: src/Module/Settings/Profile/Photo/Index.php:128 +#: src/Module/Settings/Profile/Photo/Index.php:127 msgid "Upload Picture:" msgstr "Załaduj zdjęcie:" -#: src/Module/Settings/Profile/Photo/Index.php:133 +#: src/Module/Settings/Profile/Photo/Index.php:132 msgid "or" msgstr "lub" -#: src/Module/Settings/Profile/Photo/Index.php:135 +#: src/Module/Settings/Profile/Photo/Index.php:134 msgid "skip this step" msgstr "pomiń ten krok" -#: src/Module/Settings/Profile/Photo/Index.php:137 +#: src/Module/Settings/Profile/Photo/Index.php:136 msgid "select a photo from your photo albums" msgstr "wybierz zdjęcie z twojego albumu" -#: src/Module/Settings/TwoFactor/AppSpecific.php:64 -#: src/Module/Settings/TwoFactor/Recovery.php:62 -#: src/Module/Settings/TwoFactor/Trusted.php:65 -#: src/Module/Settings/TwoFactor/Verify.php:68 +#: src/Module/Settings/RemoveMe.php:94 +#: src/Navigation/Notifications/Repository/Notify.php:471 +#: src/Navigation/Notifications/Repository/Notify.php:492 +msgid "[Friendica System Notify]" +msgstr "[Powiadomienie Systemu Friendica]" + +#: src/Module/Settings/RemoveMe.php:94 +msgid "User deleted their account" +msgstr "Użytkownik usunął swoje konto" + +#: src/Module/Settings/RemoveMe.php:95 +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:96 +#, php-format +msgid "The user id is %d" +msgstr "Identyfikatorem użytkownika jest %d" + +#: src/Module/Settings/RemoveMe.php:108 +msgid "Your user account has been successfully removed. Bye bye!" +msgstr "" + +#: src/Module/Settings/RemoveMe.php:128 +msgid "Remove My Account" +msgstr "Usuń moje konto" + +#: src/Module/Settings/RemoveMe.php:129 +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:131 +msgid "Please enter your password for verification:" +msgstr "Wprowadź hasło w celu weryfikacji:" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:66 +#: src/Module/Settings/TwoFactor/Recovery.php:64 +#: src/Module/Settings/TwoFactor/Trusted.php:67 +#: src/Module/Settings/TwoFactor/Verify.php:69 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:82 +#: src/Module/Settings/TwoFactor/AppSpecific.php:84 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:85 +#: src/Module/Settings/TwoFactor/AppSpecific.php:87 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:89 +#: src/Module/Settings/TwoFactor/AppSpecific.php:91 msgid "New app-specific password generated." msgstr "Nowe hasło specyficzne dla aplikacji." -#: src/Module/Settings/TwoFactor/AppSpecific.php:95 +#: src/Module/Settings/TwoFactor/AppSpecific.php:97 msgid "App-specific passwords successfully revoked." msgstr "Hasła specyficzne dla aplikacji zostały pomyślnie cofnięte." -#: src/Module/Settings/TwoFactor/AppSpecific.php:105 +#: src/Module/Settings/TwoFactor/AppSpecific.php:107 msgid "App-specific password successfully revoked." msgstr "Hasło specyficzne dla aplikacji zostało pomyślnie odwołane." -#: src/Module/Settings/TwoFactor/AppSpecific.php:126 +#: src/Module/Settings/TwoFactor/AppSpecific.php:128 msgid "Two-factor app-specific passwords" msgstr "Dwuskładnikowe hasła aplikacji" -#: src/Module/Settings/TwoFactor/AppSpecific.php:128 +#: src/Module/Settings/TwoFactor/AppSpecific.php:130 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:129 +#: src/Module/Settings/TwoFactor/AppSpecific.php:131 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:132 +#: src/Module/Settings/TwoFactor/AppSpecific.php:134 msgid "Description" msgstr "Opis" -#: src/Module/Settings/TwoFactor/AppSpecific.php:133 +#: src/Module/Settings/TwoFactor/AppSpecific.php:135 msgid "Last Used" msgstr "Ostatnio używane" -#: src/Module/Settings/TwoFactor/AppSpecific.php:134 +#: src/Module/Settings/TwoFactor/AppSpecific.php:136 msgid "Revoke" msgstr "Unieważnij" -#: src/Module/Settings/TwoFactor/AppSpecific.php:135 +#: src/Module/Settings/TwoFactor/AppSpecific.php:137 msgid "Revoke All" msgstr "Unieważnij wszyskie" -#: src/Module/Settings/TwoFactor/AppSpecific.php:138 +#: src/Module/Settings/TwoFactor/AppSpecific.php:140 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:139 +#: src/Module/Settings/TwoFactor/AppSpecific.php:141 msgid "Generate new app-specific password" msgstr "Wygeneruj nowe hasło specyficzne dla aplikacji" -#: src/Module/Settings/TwoFactor/AppSpecific.php:140 +#: src/Module/Settings/TwoFactor/AppSpecific.php:142 msgid "Friendiqa on my Fairphone 2..." msgstr "Friendiqa na moim Fairphone 2..." -#: src/Module/Settings/TwoFactor/AppSpecific.php:141 +#: src/Module/Settings/TwoFactor/AppSpecific.php:143 msgid "Generate" msgstr "Utwórz" -#: src/Module/Settings/TwoFactor/Index.php:69 +#: src/Module/Settings/TwoFactor/Index.php:68 msgid "Two-factor authentication successfully disabled." msgstr "Autoryzacja dwuskładnikowa została pomyślnie wyłączona." -#: src/Module/Settings/TwoFactor/Index.php:121 +#: src/Module/Settings/TwoFactor/Index.php:120 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:125 +#: src/Module/Settings/TwoFactor/Index.php:124 msgid "Authenticator app" msgstr "Aplikacja Authenticator" -#: src/Module/Settings/TwoFactor/Index.php:126 +#: src/Module/Settings/TwoFactor/Index.php:125 msgid "Configured" msgstr "Skonfigurowane" -#: src/Module/Settings/TwoFactor/Index.php:126 +#: src/Module/Settings/TwoFactor/Index.php:125 msgid "Not Configured" msgstr "Nie skonfigurowane" -#: src/Module/Settings/TwoFactor/Index.php:127 +#: src/Module/Settings/TwoFactor/Index.php:126 msgid "

You haven't finished configuring your authenticator app.

" msgstr "

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

" -#: src/Module/Settings/TwoFactor/Index.php:128 +#: src/Module/Settings/TwoFactor/Index.php:127 msgid "

Your authenticator app is correctly configured.

" msgstr "

Twoja aplikacja uwierzytelniająca jest poprawnie skonfigurowana.

" -#: src/Module/Settings/TwoFactor/Index.php:130 +#: src/Module/Settings/TwoFactor/Index.php:129 msgid "Recovery codes" msgstr "Kody odzyskiwania" -#: src/Module/Settings/TwoFactor/Index.php:131 +#: src/Module/Settings/TwoFactor/Index.php:130 msgid "Remaining valid codes" msgstr "Pozostałe ważne kody" -#: src/Module/Settings/TwoFactor/Index.php:133 +#: src/Module/Settings/TwoFactor/Index.php:132 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:135 +#: src/Module/Settings/TwoFactor/Index.php:134 msgid "App-specific passwords" msgstr "Hasła specyficzne dla aplikacji" -#: src/Module/Settings/TwoFactor/Index.php:136 +#: src/Module/Settings/TwoFactor/Index.php:135 msgid "Generated app-specific passwords" msgstr "Wygenerowane hasła specyficzne dla aplikacji" -#: src/Module/Settings/TwoFactor/Index.php:138 +#: src/Module/Settings/TwoFactor/Index.php:137 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:141 +#: src/Module/Settings/TwoFactor/Index.php:140 msgid "Current password:" msgstr "Aktualne hasło:" -#: src/Module/Settings/TwoFactor/Index.php:141 +#: src/Module/Settings/TwoFactor/Index.php:140 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:142 +#: src/Module/Settings/TwoFactor/Index.php:141 msgid "Enable two-factor authentication" msgstr "Włącz uwierzytelnianie dwuskładnikowe" -#: src/Module/Settings/TwoFactor/Index.php:143 +#: src/Module/Settings/TwoFactor/Index.php:142 msgid "Disable two-factor authentication" msgstr "Wyłącz uwierzytelnianie dwuskładnikowe" -#: src/Module/Settings/TwoFactor/Index.php:144 +#: src/Module/Settings/TwoFactor/Index.php:143 msgid "Show recovery codes" msgstr "Pokaż kody odzyskiwania" -#: src/Module/Settings/TwoFactor/Index.php:145 +#: src/Module/Settings/TwoFactor/Index.php:144 msgid "Manage app-specific passwords" msgstr "Zarządzaj hasłami specyficznymi dla aplikacji" -#: src/Module/Settings/TwoFactor/Index.php:146 +#: src/Module/Settings/TwoFactor/Index.php:145 msgid "Manage trusted browsers" msgstr "Zarządzaj zaufanymi przeglądarkami" -#: src/Module/Settings/TwoFactor/Index.php:147 +#: src/Module/Settings/TwoFactor/Index.php:146 msgid "Finish app configuration" msgstr "Zakończ konfigurację aplikacji" -#: src/Module/Settings/TwoFactor/Recovery.php:78 +#: src/Module/Settings/TwoFactor/Recovery.php:80 msgid "New recovery codes successfully generated." msgstr "Wygenerowano nowe kody odzyskiwania." -#: src/Module/Settings/TwoFactor/Recovery.php:104 +#: src/Module/Settings/TwoFactor/Recovery.php:106 msgid "Two-factor recovery codes" msgstr "Dwuskładnikowe kody odzyskiwania" -#: src/Module/Settings/TwoFactor/Recovery.php:106 +#: src/Module/Settings/TwoFactor/Recovery.php:108 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 " @@ -9937,68 +10262,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:108 +#: src/Module/Settings/TwoFactor/Recovery.php:110 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:109 +#: src/Module/Settings/TwoFactor/Recovery.php:111 msgid "Generate new recovery codes" msgstr "Wygeneruj nowe kody odzyskiwania" -#: src/Module/Settings/TwoFactor/Recovery.php:111 +#: src/Module/Settings/TwoFactor/Recovery.php:113 msgid "Next: Verification" msgstr "Następny: Weryfikacja" -#: src/Module/Settings/TwoFactor/Trusted.php:82 +#: src/Module/Settings/TwoFactor/Trusted.php:84 msgid "Trusted browsers successfully removed." msgstr "Zaufane przeglądarki zostały pomyślnie usunięte." -#: src/Module/Settings/TwoFactor/Trusted.php:92 +#: src/Module/Settings/TwoFactor/Trusted.php:94 msgid "Trusted browser successfully removed." msgstr "Zaufana przeglądarka została pomyślnie usunięta." -#: src/Module/Settings/TwoFactor/Trusted.php:134 +#: src/Module/Settings/TwoFactor/Trusted.php:136 msgid "Two-factor Trusted Browsers" msgstr "Zaufane przeglądarki dwuskładnikowe" -#: src/Module/Settings/TwoFactor/Trusted.php:135 +#: src/Module/Settings/TwoFactor/Trusted.php:137 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:136 +#: src/Module/Settings/TwoFactor/Trusted.php:138 msgid "Device" msgstr "Urządzenie" -#: src/Module/Settings/TwoFactor/Trusted.php:137 +#: src/Module/Settings/TwoFactor/Trusted.php:139 msgid "OS" msgstr "System operacyjny" -#: src/Module/Settings/TwoFactor/Trusted.php:139 +#: src/Module/Settings/TwoFactor/Trusted.php:141 msgid "Trusted" msgstr "Zaufane" -#: src/Module/Settings/TwoFactor/Trusted.php:140 +#: src/Module/Settings/TwoFactor/Trusted.php:142 msgid "Created At" msgstr "Utworzono" -#: src/Module/Settings/TwoFactor/Trusted.php:141 +#: src/Module/Settings/TwoFactor/Trusted.php:143 msgid "Last Use" msgstr "Ostatnie użycie" -#: src/Module/Settings/TwoFactor/Trusted.php:143 +#: src/Module/Settings/TwoFactor/Trusted.php:145 msgid "Remove All" msgstr "Usuń wszystkie" -#: src/Module/Settings/TwoFactor/Verify.php:90 +#: src/Module/Settings/TwoFactor/Verify.php:91 msgid "Two-factor authentication successfully activated." msgstr "Uwierzytelnienie dwuskładnikowe zostało pomyślnie aktywowane." -#: src/Module/Settings/TwoFactor/Verify.php:124 +#: src/Module/Settings/TwoFactor/Verify.php:125 #, php-format msgid "" "

Or you can submit the authentication settings manually:

\n" @@ -10018,53 +10343,53 @@ msgid "" "" msgstr "

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

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

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

" msgstr "

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

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

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

%s

" msgstr "

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

%s

" -#: src/Module/Settings/TwoFactor/Verify.php:155 +#: src/Module/Settings/TwoFactor/Verify.php:156 msgid "Verify code and enable two-factor authentication" msgstr "Sprawdź kod i włącz uwierzytelnianie dwuskładnikowe" -#: src/Module/Settings/UserExport.php:68 +#: src/Module/Settings/UserExport.php:90 msgid "Export account" msgstr "Eksportuj konto" -#: src/Module/Settings/UserExport.php:68 +#: src/Module/Settings/UserExport.php:90 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:69 +#: src/Module/Settings/UserExport.php:91 msgid "Export all" msgstr "Eksportuj wszystko" -#: src/Module/Settings/UserExport.php:69 +#: src/Module/Settings/UserExport.php:91 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:70 +#: src/Module/Settings/UserExport.php:92 msgid "Export Contacts to CSV" msgstr "Eksportuj kontakty do CSV" -#: src/Module/Settings/UserExport.php:70 +#: src/Module/Settings/UserExport.php:92 msgid "" "Export the list of the accounts you are following as CSV file. Compatible to" " e.g. Mastodon." @@ -10079,7 +10404,7 @@ msgstr "Ślad stosu:" msgid "Exception thrown in %s:%d" msgstr "Zgłoszono wyjątek %s:%d" -#: src/Module/Tos.php:57 src/Module/Tos.php:91 +#: src/Module/Tos.php:57 src/Module/Tos.php:104 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" @@ -10092,28 +10417,105 @@ 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:58 src/Module/Tos.php:92 +#: src/Module/Tos.php:58 src/Module/Tos.php:105 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:59 src/Module/Tos.php:93 +#: src/Module/Tos.php:59 src/Module/Tos.php:106 #, php-format msgid "" "At any point in time a logged in user can export their account data from the" " account settings. If the user " "wants to delete their account they can do so at %1$s/removeme. The deletion of the account will " -"be permanent. Deletion of the data will also be requested from the nodes of " -"the communication partners." -msgstr "W dowolnym momencie zalogowany użytkownik może wyeksportować dane swojego konta z ustawień konta. Jeśli użytkownik chce usunąć swoje konto, może to zrobić w %1$s/removeme. Usunięcie konta będzie trwałe. Usunięcia danych zażądają również węzły partnerów komunikacyjnych." +"href=\"%1$s/settings/removeme\">%1$s/settings/removeme. The deletion of " +"the account will be permanent. Deletion of the data will also be requested " +"from the nodes of the communication partners." +msgstr "" -#: src/Module/Tos.php:62 src/Module/Tos.php:90 +#: src/Module/Tos.php:62 src/Module/Tos.php:103 msgid "Privacy Statement" msgstr "Oświadczenie o prywatności" +#: src/Module/Tos.php:100 +msgid "Rules" +msgstr "" + +#: src/Module/Update/Display.php:45 +msgid "Parameter uri_id is missing." +msgstr "" + +#: src/Module/User/Import.php:103 +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:119 +msgid "Move account" +msgstr "Przenieś konto" + +#: src/Module/User/Import.php:120 +msgid "You can import an account from another Friendica server." +msgstr "Możesz zaimportować konto z innego serwera Friendica." + +#: src/Module/User/Import.php:121 +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:122 +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:123 +msgid "Account file" +msgstr "Pliki konta" + +#: src/Module/User/Import.php:123 +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:217 +msgid "Error decoding account file" +msgstr "Błąd podczas odczytu pliku konta" + +#: src/Module/User/Import.php:222 +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:230 +#, php-format +msgid "User '%s' already exists on this server!" +msgstr "Użytkownik '%s' już istnieje na tym serwerze!" + +#: src/Module/User/Import.php:263 +msgid "User creation error" +msgstr "Błąd tworzenia użytkownika" + +#: src/Module/User/Import.php:312 +#, php-format +msgid "%d contact not imported" +msgid_plural "%d contacts not imported" +msgstr[0] "Nie zaimportowano %d kontaktu" +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:361 +msgid "User profile creation error" +msgstr "Błąd tworzenia profilu użytkownika" + +#: src/Module/User/Import.php:412 +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 msgid "Welcome to Friendica" msgstr "Witamy na Friendica" @@ -10279,51 +10681,51 @@ msgid "" " 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:134 +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:161 msgid "{0} wants to follow you" msgstr "{0} chce Cię obserwować" -#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:136 +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:163 msgid "{0} has started following you" msgstr "{0} zaczął Cię obserwować" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:91 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:96 #, php-format msgid "%s liked %s's post" msgstr "%s polubił wpis %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:103 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:108 #, php-format msgid "%s disliked %s's post" msgstr "%s nie lubi wpisów %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:115 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:120 #, php-format msgid "%s is attending %s's event" msgstr "%s uczestniczy w wydarzeniu %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:127 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:132 #, php-format msgid "%s is not attending %s's event" msgstr "%s nie uczestniczy w wydarzeniu %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:139 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:144 #, php-format msgid "%s may attending %s's event" msgstr "%s może uczestniczyć w wydarzeniu %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:169 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:174 #, php-format msgid "%s is now friends with %s" msgstr "%s jest teraz znajomym %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:336 -#: src/Navigation/Notifications/Factory/FormattedNotify.php:374 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:341 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:379 #, php-format msgid "%s commented on %s's post" msgstr "%s skomentował wpis %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:373 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:378 #, php-format msgid "%s created a new post" msgstr "%s dodał nowy wpis" @@ -10350,320 +10752,304 @@ msgstr "%1$s chce Cię obserwować" msgid "%1$s has started following you" msgstr "%1$s zaczął Cię obserwować" -#: src/Navigation/Notifications/Factory/Notification.php:207 +#: src/Navigation/Notifications/Factory/Notification.php:208 #, 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:210 +#: src/Navigation/Notifications/Factory/Notification.php:211 #, 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:217 +#: src/Navigation/Notifications/Factory/Notification.php:218 #, 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:220 +#: src/Navigation/Notifications/Factory/Notification.php:221 #, 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:227 +#: src/Navigation/Notifications/Factory/Notification.php:228 #, 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:230 +#: src/Navigation/Notifications/Factory/Notification.php:231 #, 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:234 -#: src/Navigation/Notifications/Factory/Notification.php:304 +#: src/Navigation/Notifications/Factory/Notification.php:235 +#: src/Navigation/Notifications/Factory/Notification.php:305 #, 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:236 -#: src/Navigation/Notifications/Factory/Notification.php:306 +#: src/Navigation/Notifications/Factory/Notification.php:237 +#: src/Navigation/Notifications/Factory/Notification.php:307 #, 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:238 -#: src/Navigation/Notifications/Factory/Notification.php:308 +#: src/Navigation/Notifications/Factory/Notification.php:239 +#: src/Navigation/Notifications/Factory/Notification.php:309 #, php-format msgid "%1$s shared the post %2$s" msgstr "%1$s udostępnił wpis %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:240 -#: src/Navigation/Notifications/Factory/Notification.php:310 +#: src/Navigation/Notifications/Factory/Notification.php:241 +#: src/Navigation/Notifications/Factory/Notification.php:311 #, php-format msgid "%1$s shared a post" msgstr "%1$s udostępnił wpis" -#: src/Navigation/Notifications/Factory/Notification.php:248 +#: src/Navigation/Notifications/Factory/Notification.php:249 #, 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:255 +#: src/Navigation/Notifications/Factory/Notification.php:256 #, 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:262 +#: src/Navigation/Notifications/Factory/Notification.php:263 #, 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:269 +#: src/Navigation/Notifications/Factory/Notification.php:270 #, php-format msgid "%1$s tagged you on %2$s" msgstr "%1$s oznaczył Cię na %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:273 +#: src/Navigation/Notifications/Factory/Notification.php:274 #, 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:277 +#: src/Navigation/Notifications/Factory/Notification.php:278 #, 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:281 +#: src/Navigation/Notifications/Factory/Notification.php:282 #, 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:288 +#: src/Navigation/Notifications/Factory/Notification.php:289 #, 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:290 +#: src/Navigation/Notifications/Factory/Notification.php:291 #, php-format msgid "%1$s commented in their thread" msgstr "%1$s skomentował w swoim wątku" -#: src/Navigation/Notifications/Factory/Notification.php:292 +#: src/Navigation/Notifications/Factory/Notification.php:293 #, 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:294 +#: src/Navigation/Notifications/Factory/Notification.php:295 #, 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:299 +#: src/Navigation/Notifications/Factory/Notification.php:300 #, 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:222 -#: src/Navigation/Notifications/Repository/Notify.php:736 +#: src/Navigation/Notifications/Repository/Notify.php:225 +#: src/Navigation/Notifications/Repository/Notify.php:752 msgid "[Friendica:Notify]" msgstr "[Friendica: Powiadomienie]" -#: src/Navigation/Notifications/Repository/Notify.php:286 +#: src/Navigation/Notifications/Repository/Notify.php:293 #, php-format msgid "%s New mail received at %s" msgstr "%s Nowa poczta otrzymana o %s" -#: src/Navigation/Notifications/Repository/Notify.php:288 +#: src/Navigation/Notifications/Repository/Notify.php:295 #, 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:289 +#: src/Navigation/Notifications/Repository/Notify.php:296 msgid "a private message" msgstr "prywatna wiadomość" -#: src/Navigation/Notifications/Repository/Notify.php:289 +#: src/Navigation/Notifications/Repository/Notify.php:296 #, php-format msgid "%1$s sent you %2$s." msgstr "%1$s wysłał(-a) ci %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:291 +#: src/Navigation/Notifications/Repository/Notify.php:298 #, 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:321 +#: src/Navigation/Notifications/Repository/Notify.php:328 #, 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:326 +#: src/Navigation/Notifications/Repository/Notify.php:333 #, 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:330 +#: src/Navigation/Notifications/Repository/Notify.php:337 #, 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:334 -#: src/Navigation/Notifications/Repository/Notify.php:770 +#: src/Navigation/Notifications/Repository/Notify.php:341 +#: src/Navigation/Notifications/Repository/Notify.php:786 #, 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:336 +#: src/Navigation/Notifications/Repository/Notify.php:343 #, 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:340 -#: src/Navigation/Notifications/Repository/Notify.php:355 -#: src/Navigation/Notifications/Repository/Notify.php:374 -#: src/Navigation/Notifications/Repository/Notify.php:785 +#: src/Navigation/Notifications/Repository/Notify.php:347 +#: src/Navigation/Notifications/Repository/Notify.php:362 +#: src/Navigation/Notifications/Repository/Notify.php:801 #, 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:347 +#: src/Navigation/Notifications/Repository/Notify.php:354 #, php-format msgid "%s %s posted to your profile wall" msgstr "%s %s opublikował na Twojej tablicy profilu" -#: src/Navigation/Notifications/Repository/Notify.php:349 +#: src/Navigation/Notifications/Repository/Notify.php:356 #, 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:350 +#: src/Navigation/Notifications/Repository/Notify.php:357 #, 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:362 -#, php-format -msgid "%1$s %2$s poked you" -msgstr "%1$s %2$s zaczepił Cię" - -#: src/Navigation/Notifications/Repository/Notify.php:364 -#, php-format -msgid "%1$s poked you at %2$s" -msgstr "%1$s zaczepił Cię %2$s" - -#: src/Navigation/Notifications/Repository/Notify.php:365 -#, php-format -msgid "%1$s [url=%2$s]poked you[/url]." -msgstr "%1$s[url=%2$s] zaczepił Cię[/url]." - -#: src/Navigation/Notifications/Repository/Notify.php:382 +#: src/Navigation/Notifications/Repository/Notify.php:370 #, php-format msgid "%s Introduction received" msgstr "%s Otrzymano wprowadzenie" -#: src/Navigation/Notifications/Repository/Notify.php:384 +#: src/Navigation/Notifications/Repository/Notify.php:372 #, 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:385 +#: src/Navigation/Notifications/Repository/Notify.php:373 #, 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:390 -#: src/Navigation/Notifications/Repository/Notify.php:436 +#: src/Navigation/Notifications/Repository/Notify.php:378 +#: src/Navigation/Notifications/Repository/Notify.php:424 #, 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:392 +#: src/Navigation/Notifications/Repository/Notify.php:380 #, 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:399 +#: src/Navigation/Notifications/Repository/Notify.php:387 #, 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:401 -#: src/Navigation/Notifications/Repository/Notify.php:402 +#: src/Navigation/Notifications/Repository/Notify.php:389 +#: src/Navigation/Notifications/Repository/Notify.php:390 #, 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:409 +#: src/Navigation/Notifications/Repository/Notify.php:397 #, php-format msgid "%s You have a new follower" msgstr "%s Masz nowego obserwującego" -#: src/Navigation/Notifications/Repository/Notify.php:411 -#: src/Navigation/Notifications/Repository/Notify.php:412 +#: src/Navigation/Notifications/Repository/Notify.php:399 +#: src/Navigation/Notifications/Repository/Notify.php:400 #, 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:425 +#: src/Navigation/Notifications/Repository/Notify.php:413 #, php-format msgid "%s Friend suggestion received" msgstr "%s Otrzymano sugestię znajomego" -#: src/Navigation/Notifications/Repository/Notify.php:427 +#: src/Navigation/Notifications/Repository/Notify.php:415 #, 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:428 +#: src/Navigation/Notifications/Repository/Notify.php:416 #, 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:434 +#: src/Navigation/Notifications/Repository/Notify.php:422 msgid "Name:" msgstr "Imię:" -#: src/Navigation/Notifications/Repository/Notify.php:435 +#: src/Navigation/Notifications/Repository/Notify.php:423 msgid "Photo:" msgstr "Zdjęcie:" -#: src/Navigation/Notifications/Repository/Notify.php:438 +#: src/Navigation/Notifications/Repository/Notify.php:426 #, 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:446 -#: src/Navigation/Notifications/Repository/Notify.php:461 +#: src/Navigation/Notifications/Repository/Notify.php:434 +#: src/Navigation/Notifications/Repository/Notify.php:449 #, php-format msgid "%s Connection accepted" msgstr "%s Połączenie zaakceptowane" -#: src/Navigation/Notifications/Repository/Notify.php:448 -#: src/Navigation/Notifications/Repository/Notify.php:463 +#: src/Navigation/Notifications/Repository/Notify.php:436 +#: src/Navigation/Notifications/Repository/Notify.php:451 #, 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:449 -#: src/Navigation/Notifications/Repository/Notify.php:464 +#: src/Navigation/Notifications/Repository/Notify.php:437 +#: src/Navigation/Notifications/Repository/Notify.php:452 #, 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:454 +#: src/Navigation/Notifications/Repository/Notify.php:442 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:456 +#: src/Navigation/Notifications/Repository/Notify.php:444 #, 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:469 +#: src/Navigation/Notifications/Repository/Notify.php:457 #, php-format msgid "" "'%1$s' has chosen to accept you a fan, which restricts some forms of " @@ -10672,33 +11058,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:471 +#: src/Navigation/Notifications/Repository/Notify.php:459 #, 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:473 +#: src/Navigation/Notifications/Repository/Notify.php:461 #, 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:483 +#: src/Navigation/Notifications/Repository/Notify.php:471 msgid "registration request" msgstr "prośba o rejestrację" -#: src/Navigation/Notifications/Repository/Notify.php:485 +#: src/Navigation/Notifications/Repository/Notify.php:473 #, 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:486 +#: src/Navigation/Notifications/Repository/Notify.php:474 #, 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:491 +#: src/Navigation/Notifications/Repository/Notify.php:479 +#: src/Navigation/Notifications/Repository/Notify.php:500 #, php-format msgid "" "Full Name:\t%s\n" @@ -10706,17 +11093,36 @@ msgid "" "Login Name:\t%s (%s)" msgstr "Imię i nazwisko:\t%s\nLokalizacja witryny:\t%s\nNazwa użytkownika:\t%s(%s)" -#: src/Navigation/Notifications/Repository/Notify.php:497 +#: src/Navigation/Notifications/Repository/Notify.php:485 #, 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:764 +#: src/Navigation/Notifications/Repository/Notify.php:492 +msgid "new registration" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:494 +#, php-format +msgid "You've received a new registration from '%1$s' at %2$s" +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:495 +#, php-format +msgid "You've received a [url=%1$s]new registration[/url] from %2$s." +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:506 +#, php-format +msgid "Please visit %s to have a look at the new registration." +msgstr "" + +#: src/Navigation/Notifications/Repository/Notify.php:780 #, php-format msgid "%s %s tagged you" msgstr "%s %s oznaczył Cię" -#: src/Navigation/Notifications/Repository/Notify.php:767 +#: src/Navigation/Notifications/Repository/Notify.php:783 #, php-format msgid "%s %s shared a new post" msgstr "%s %s udostępnił nowy wpis" @@ -10744,194 +11150,194 @@ msgstr "Jeśli nie chcesz otrzymywać tych wiadomości kontaktuj się z nadawcą msgid "%s posted an update." msgstr "%s zaktualizował wpis." -#: src/Object/Post.php:136 +#: src/Object/Post.php:135 msgid "Private Message" msgstr "Wiadomość prywatna" -#: src/Object/Post.php:140 +#: src/Object/Post.php:139 msgid "Public Message" msgstr "Wiadomość publiczna" -#: src/Object/Post.php:144 +#: src/Object/Post.php:143 msgid "Unlisted Message" msgstr "Wiadomość niepubliczna" -#: src/Object/Post.php:179 +#: src/Object/Post.php:178 msgid "This entry was edited" msgstr "Ten wpis został zedytowany" -#: src/Object/Post.php:207 +#: src/Object/Post.php:206 msgid "Connector Message" msgstr "Komunikat łącznika" -#: src/Object/Post.php:222 src/Object/Post.php:224 +#: src/Object/Post.php:221 src/Object/Post.php:223 msgid "Edit" msgstr "Edytuj" -#: src/Object/Post.php:248 +#: src/Object/Post.php:247 msgid "Delete globally" msgstr "Usuń globalnie" -#: src/Object/Post.php:248 +#: src/Object/Post.php:247 msgid "Remove locally" msgstr "Usuń lokalnie" -#: src/Object/Post.php:264 +#: src/Object/Post.php:263 #, php-format msgid "Block %s" msgstr "Zablokuj %s" -#: src/Object/Post.php:269 +#: src/Object/Post.php:268 msgid "Save to folder" msgstr "Zapisz w katalogu" -#: src/Object/Post.php:304 +#: src/Object/Post.php:303 msgid "I will attend" msgstr "Będę uczestniczyć" -#: src/Object/Post.php:304 +#: src/Object/Post.php:303 msgid "I will not attend" msgstr "Nie będę uczestniczyć" -#: src/Object/Post.php:304 +#: src/Object/Post.php:303 msgid "I might attend" msgstr "Mogę wziąć udział" -#: src/Object/Post.php:334 +#: src/Object/Post.php:333 msgid "Ignore thread" msgstr "Zignoruj ​​wątek" -#: src/Object/Post.php:335 +#: src/Object/Post.php:334 msgid "Unignore thread" msgstr "Przestań ignorować ​​wątek" -#: src/Object/Post.php:336 +#: src/Object/Post.php:335 msgid "Toggle ignore status" msgstr "Przełącz stan ignorowania" -#: src/Object/Post.php:346 +#: src/Object/Post.php:345 msgid "Add star" msgstr "Dodaj gwiazdkę" -#: src/Object/Post.php:347 +#: src/Object/Post.php:346 msgid "Remove star" msgstr "Usuń gwiazdkę" -#: src/Object/Post.php:348 +#: src/Object/Post.php:347 msgid "Toggle star status" msgstr "Przełącz stan gwiazdy" -#: src/Object/Post.php:359 +#: src/Object/Post.php:358 msgid "Pin" msgstr "Przypnij" -#: src/Object/Post.php:360 +#: src/Object/Post.php:359 msgid "Unpin" msgstr "Odepnij" -#: src/Object/Post.php:361 +#: src/Object/Post.php:360 msgid "Toggle pin status" msgstr "Przełącz stan podpięcia" -#: src/Object/Post.php:364 +#: src/Object/Post.php:363 msgid "Pinned" msgstr "Przypięty" -#: src/Object/Post.php:369 +#: src/Object/Post.php:368 msgid "Add tag" msgstr "Dodaj znacznik" -#: src/Object/Post.php:382 +#: src/Object/Post.php:381 msgid "Quote share this" msgstr "Cytuj udostępnij to" -#: src/Object/Post.php:382 +#: src/Object/Post.php:381 msgid "Quote Share" msgstr "Udostępnienie cytatu" -#: src/Object/Post.php:385 +#: src/Object/Post.php:384 msgid "Reshare this" msgstr "Udostępnij to dalej" -#: src/Object/Post.php:385 +#: src/Object/Post.php:384 msgid "Reshare" msgstr "Udostępnij dalej" -#: src/Object/Post.php:386 +#: src/Object/Post.php:385 msgid "Cancel your Reshare" msgstr "Anuluj swoje dalsze udostępnianie" -#: src/Object/Post.php:386 +#: src/Object/Post.php:385 msgid "Unshare" msgstr "Przestań udostępniać" -#: src/Object/Post.php:433 +#: src/Object/Post.php:432 #, php-format msgid "%s (Received %s)" msgstr "%s (Otrzymano %s)" -#: src/Object/Post.php:438 +#: src/Object/Post.php:437 msgid "Comment this item on your system" msgstr "Skomentuj ten element w swoim systemie" -#: src/Object/Post.php:438 +#: src/Object/Post.php:437 msgid "Remote comment" msgstr "Zdalny komentarz" -#: src/Object/Post.php:459 +#: src/Object/Post.php:458 msgid "Share via ..." msgstr "Udostępnij poprzez..." -#: src/Object/Post.php:459 +#: src/Object/Post.php:458 msgid "Share via external services" msgstr "Udostępnij za pośrednictwem usług zewnętrznych" -#: src/Object/Post.php:488 +#: src/Object/Post.php:487 msgid "to" msgstr "do" -#: src/Object/Post.php:489 +#: src/Object/Post.php:488 msgid "via" msgstr "przez" -#: src/Object/Post.php:490 +#: src/Object/Post.php:489 msgid "Wall-to-Wall" msgstr "Tablica-w-Tablicę" -#: src/Object/Post.php:491 +#: src/Object/Post.php:490 msgid "via Wall-To-Wall:" msgstr "przez Tablica-w-Tablicę:" -#: src/Object/Post.php:533 +#: src/Object/Post.php:532 #, php-format msgid "Reply to %s" msgstr "Odpowiedź %s" -#: src/Object/Post.php:536 +#: src/Object/Post.php:535 msgid "More" msgstr "Więcej" -#: src/Object/Post.php:554 +#: src/Object/Post.php:553 msgid "Notifier task is pending" msgstr "Zadanie Notifier jest w toku" -#: src/Object/Post.php:555 +#: src/Object/Post.php:554 msgid "Delivery to remote servers is pending" msgstr "Trwa przesyłanie do serwerów zdalnych" -#: src/Object/Post.php:556 +#: src/Object/Post.php:555 msgid "Delivery to remote servers is underway" msgstr "Trwa dostawa do serwerów zdalnych" -#: src/Object/Post.php:557 +#: src/Object/Post.php:556 msgid "Delivery to remote servers is mostly done" msgstr "Dostawa do zdalnych serwerów jest w większości wykonywana" -#: src/Object/Post.php:558 +#: src/Object/Post.php:557 msgid "Delivery to remote servers is done" msgstr "Trwa dostarczanie do zdalnych serwerów" -#: src/Object/Post.php:578 +#: src/Object/Post.php:577 #, php-format msgid "%d comment" msgid_plural "%d comments" @@ -10940,54 +11346,55 @@ msgstr[1] "%d komentarze" msgstr[2] "%d komentarzy" msgstr[3] "%d komentarzy" -#: src/Object/Post.php:579 +#: src/Object/Post.php:578 msgid "Show more" msgstr "Pokaż więcej" -#: src/Object/Post.php:580 +#: src/Object/Post.php:579 msgid "Show fewer" msgstr "Pokaż mniej" -#: src/Protocol/OStatus.php:1705 +#: src/Protocol/OStatus.php:1472 #, php-format msgid "%s is now following %s." msgstr "%s zaczął(-ęła) obserwować %s." -#: src/Protocol/OStatus.php:1706 +#: src/Protocol/OStatus.php:1473 msgid "following" msgstr "następujący" -#: src/Protocol/OStatus.php:1709 +#: src/Protocol/OStatus.php:1476 #, php-format msgid "%s stopped following %s." msgstr "%s przestał(a) obserwować %s." -#: src/Protocol/OStatus.php:1710 +#: src/Protocol/OStatus.php:1477 msgid "stopped following" msgstr "przestał śledzić" -#: src/Render/FriendicaSmartyEngine.php:65 -msgid "The folder view/smarty3/ must be writable by webserver." -msgstr "Katalog view/smarty3/ musi być zapisywalny przez serwer WWW." +#: src/Render/FriendicaSmartyEngine.php:56 +#, php-format +msgid "The folder %s must be writable by webserver." +msgstr "" -#: src/Security/Authentication.php:226 +#: src/Security/Authentication.php:227 msgid "Login failed." msgstr "Logowanie nieudane." -#: src/Security/Authentication.php:267 +#: src/Security/Authentication.php:272 msgid "Login failed. Please check your credentials." msgstr "Logowanie nie powiodło się. Sprawdź swoje dane uwierzytelniające." -#: src/Security/Authentication.php:374 +#: src/Security/Authentication.php:389 #, php-format msgid "Welcome %s" msgstr "Witaj %s" -#: src/Security/Authentication.php:375 +#: src/Security/Authentication.php:390 msgid "Please upload a profile photo." msgstr "Proszę dodać zdjęcie profilowe." -#: src/Util/EMailer/MailBuilder.php:259 +#: src/Util/EMailer/MailBuilder.php:260 msgid "Friendica Notification" msgstr "Powiadomienia Friendica" @@ -11010,228 +11417,239 @@ msgstr "%s Administrator" msgid "thanks" msgstr "dziękuję" -#: src/Util/Temporal.php:167 +#: src/Util/Temporal.php:170 msgid "YYYY-MM-DD or MM-DD" msgstr "RRRR-MM-DD lub MM-DD" -#: src/Util/Temporal.php:275 +#: src/Util/Temporal.php:278 #, php-format msgid "Time zone: %s Change in Settings" msgstr "Strefa czasowa: %s Zmień w ustawieniach" -#: src/Util/Temporal.php:318 +#: src/Util/Temporal.php:318 src/Util/Temporal.php:325 msgid "never" msgstr "nigdy" -#: src/Util/Temporal.php:325 +#: src/Util/Temporal.php:339 msgid "less than a second ago" msgstr "mniej niż sekundę temu" -#: src/Util/Temporal.php:333 +#: src/Util/Temporal.php:348 msgid "year" msgstr "rok" -#: src/Util/Temporal.php:333 +#: src/Util/Temporal.php:348 msgid "years" msgstr "lata" -#: src/Util/Temporal.php:334 +#: src/Util/Temporal.php:349 msgid "months" msgstr "miesiące" -#: src/Util/Temporal.php:335 +#: src/Util/Temporal.php:350 msgid "weeks" msgstr "tygodnie" -#: src/Util/Temporal.php:336 +#: src/Util/Temporal.php:351 msgid "days" msgstr "dni" -#: src/Util/Temporal.php:337 +#: src/Util/Temporal.php:352 msgid "hour" msgstr "godzina" -#: src/Util/Temporal.php:337 +#: src/Util/Temporal.php:352 msgid "hours" msgstr "godziny" -#: src/Util/Temporal.php:338 +#: src/Util/Temporal.php:353 msgid "minute" msgstr "minuta" -#: src/Util/Temporal.php:338 +#: src/Util/Temporal.php:353 msgid "minutes" msgstr "minut" -#: src/Util/Temporal.php:339 +#: src/Util/Temporal.php:354 msgid "second" msgstr "sekunda" -#: src/Util/Temporal.php:339 +#: src/Util/Temporal.php:354 msgid "seconds" msgstr "sekundy" -#: src/Util/Temporal.php:349 +#: src/Util/Temporal.php:364 #, php-format msgid "in %1$d %2$s" msgstr "w %1$d %2$s" -#: src/Util/Temporal.php:352 +#: src/Util/Temporal.php:367 #, php-format msgid "%1$d %2$s ago" msgstr "%1$d %2$s temu" -#: src/Worker/Delivery.php:525 +#: src/Worker/Delivery.php:533 msgid "(no subject)" msgstr "(bez tematu)" -#: src/Worker/PushSubscription.php:112 +#: src/Worker/PushSubscription.php:110 msgid "Notification from Friendica" msgstr "Powiadomienia z Friendica" -#: src/Worker/PushSubscription.php:113 +#: src/Worker/PushSubscription.php:111 msgid "Empty Post" msgstr "Pusty wpis" -#: view/theme/duepuntozero/config.php:52 +#: view/theme/duepuntozero/config.php:68 msgid "default" msgstr "standardowe" -#: view/theme/duepuntozero/config.php:53 +#: view/theme/duepuntozero/config.php:69 msgid "greenzero" msgstr "zielone zero" -#: view/theme/duepuntozero/config.php:54 +#: view/theme/duepuntozero/config.php:70 msgid "purplezero" msgstr "fioletowe zero" -#: view/theme/duepuntozero/config.php:55 +#: view/theme/duepuntozero/config.php:71 msgid "easterbunny" msgstr "zajączek wielkanocny" -#: view/theme/duepuntozero/config.php:56 +#: view/theme/duepuntozero/config.php:72 msgid "darkzero" msgstr "ciemne zero" -#: view/theme/duepuntozero/config.php:57 +#: view/theme/duepuntozero/config.php:73 msgid "comix" msgstr "comix" -#: view/theme/duepuntozero/config.php:58 +#: view/theme/duepuntozero/config.php:74 msgid "slackr" msgstr "luźny" -#: view/theme/duepuntozero/config.php:71 +#: view/theme/duepuntozero/config.php:87 msgid "Variations" msgstr "Wariacje" -#: view/theme/frio/config.php:142 +#: view/theme/frio/config.php:153 msgid "Light (Accented)" msgstr "Jasny (akcentowany)" -#: view/theme/frio/config.php:143 +#: view/theme/frio/config.php:154 msgid "Dark (Accented)" msgstr "Ciemny (akcentowany)" -#: view/theme/frio/config.php:144 +#: view/theme/frio/config.php:155 msgid "Black (Accented)" msgstr "Czarny (z akcentem)" -#: view/theme/frio/config.php:156 +#: view/theme/frio/config.php:167 msgid "Note" msgstr "Uwaga" -#: view/theme/frio/config.php:156 +#: view/theme/frio/config.php:167 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:162 +#: view/theme/frio/config.php:173 msgid "Custom" msgstr "Własne" -#: view/theme/frio/config.php:163 +#: view/theme/frio/config.php:174 msgid "Legacy" msgstr "Przestarzałe" -#: view/theme/frio/config.php:164 +#: view/theme/frio/config.php:175 msgid "Accented" msgstr "Akcentowany" -#: view/theme/frio/config.php:165 +#: view/theme/frio/config.php:176 msgid "Select color scheme" msgstr "Wybierz schemat kolorów" -#: view/theme/frio/config.php:166 +#: view/theme/frio/config.php:177 msgid "Select scheme accent" msgstr "Wybierz akcent schematu" -#: view/theme/frio/config.php:166 +#: view/theme/frio/config.php:177 msgid "Blue" msgstr "Niebieski" -#: view/theme/frio/config.php:166 +#: view/theme/frio/config.php:177 msgid "Red" msgstr "Czerwony" -#: view/theme/frio/config.php:166 +#: view/theme/frio/config.php:177 msgid "Purple" msgstr "Purpurowy" -#: view/theme/frio/config.php:166 +#: view/theme/frio/config.php:177 msgid "Green" msgstr "Zielony" -#: view/theme/frio/config.php:166 +#: view/theme/frio/config.php:177 msgid "Pink" msgstr "Różowy" -#: view/theme/frio/config.php:167 +#: view/theme/frio/config.php:178 msgid "Copy or paste schemestring" msgstr "Skopiuj lub wklej ciąg schematu" -#: view/theme/frio/config.php:167 +#: view/theme/frio/config.php:178 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:168 +#: view/theme/frio/config.php:179 msgid "Navigation bar background color" msgstr "Kolor tła paska nawigacyjnego" -#: view/theme/frio/config.php:169 +#: view/theme/frio/config.php:180 msgid "Navigation bar icon color " msgstr "Kolor ikon na pasku nawigacyjnym " -#: view/theme/frio/config.php:170 +#: view/theme/frio/config.php:181 msgid "Link color" msgstr "Kolor odnośników" -#: view/theme/frio/config.php:171 +#: view/theme/frio/config.php:182 msgid "Set the background color" msgstr "Ustaw kolor tła" -#: view/theme/frio/config.php:172 +#: view/theme/frio/config.php:183 msgid "Content background opacity" msgstr "Nieprzezroczystość tła treści" -#: view/theme/frio/config.php:173 +#: view/theme/frio/config.php:184 msgid "Set the background image" msgstr "Ustaw obraz tła" -#: view/theme/frio/config.php:174 +#: view/theme/frio/config.php:185 msgid "Background image style" msgstr "Styl obrazu tła" -#: view/theme/frio/config.php:179 +#: view/theme/frio/config.php:188 +msgid "Always open Compose page" +msgstr "" + +#: view/theme/frio/config.php:188 +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 msgid "Login page background image" msgstr "Obraz tła strony logowania" -#: view/theme/frio/config.php:183 +#: view/theme/frio/config.php:196 msgid "Login page background color" msgstr "Kolor tła strony logowania" -#: view/theme/frio/config.php:183 +#: view/theme/frio/config.php:196 msgid "Leave background image and color empty for theme defaults" msgstr "Pozostaw pusty obraz tła i kolor dla domyślnych ustawień motywu" @@ -11279,78 +11697,78 @@ msgstr "Przejdź do głównej zawartości" msgid "Back to top" msgstr "Powrót do góry" -#: view/theme/frio/theme.php:212 +#: view/theme/frio/theme.php:217 msgid "Guest" msgstr "Gość" -#: view/theme/frio/theme.php:215 +#: view/theme/frio/theme.php:220 msgid "Visitor" msgstr "Odwiedzający" -#: view/theme/quattro/config.php:73 +#: view/theme/quattro/config.php:89 msgid "Alignment" msgstr "Wyrównanie" -#: view/theme/quattro/config.php:73 +#: view/theme/quattro/config.php:89 msgid "Left" msgstr "Do lewej" -#: view/theme/quattro/config.php:73 +#: view/theme/quattro/config.php:89 msgid "Center" msgstr "Do środka" -#: view/theme/quattro/config.php:74 +#: view/theme/quattro/config.php:90 msgid "Color scheme" msgstr "Schemat kolorów" -#: view/theme/quattro/config.php:75 +#: view/theme/quattro/config.php:91 msgid "Posts font size" msgstr "Rozmiar czcionki wpisów" -#: view/theme/quattro/config.php:76 +#: view/theme/quattro/config.php:92 msgid "Textareas font size" msgstr "Rozmiar czcionki obszarów tekstowych" -#: view/theme/vier/config.php:75 +#: view/theme/vier/config.php:91 msgid "Comma separated list of helper forums" msgstr "Lista oddzielonych przecinkami forów pomocniczych" -#: view/theme/vier/config.php:115 +#: view/theme/vier/config.php:131 msgid "don't show" msgstr "nie pokazuj" -#: view/theme/vier/config.php:115 +#: view/theme/vier/config.php:131 msgid "show" msgstr "pokazuj" -#: view/theme/vier/config.php:121 +#: view/theme/vier/config.php:137 msgid "Set style" msgstr "Ustaw styl" -#: view/theme/vier/config.php:122 +#: view/theme/vier/config.php:138 msgid "Community Pages" msgstr "Strony społeczności" -#: view/theme/vier/config.php:123 view/theme/vier/theme.php:134 +#: view/theme/vier/config.php:139 view/theme/vier/theme.php:149 msgid "Community Profiles" msgstr "Profile społeczności" -#: view/theme/vier/config.php:124 +#: view/theme/vier/config.php:140 msgid "Help or @NewHere ?" msgstr "Pomóż lub @NowyTutaj ?" -#: view/theme/vier/config.php:125 view/theme/vier/theme.php:305 +#: view/theme/vier/config.php:141 view/theme/vier/theme.php:320 msgid "Connect Services" msgstr "Połączone serwisy" -#: view/theme/vier/config.php:126 +#: view/theme/vier/config.php:142 msgid "Find Friends" msgstr "Znajdź znajomych" -#: view/theme/vier/config.php:127 view/theme/vier/theme.php:161 +#: view/theme/vier/config.php:143 view/theme/vier/theme.php:176 msgid "Last users" msgstr "Ostatni użytkownicy" -#: view/theme/vier/theme.php:220 +#: view/theme/vier/theme.php:235 msgid "Quick Start" msgstr "Szybki start" diff --git a/view/lang/pl/strings.php b/view/lang/pl/strings.php index e98f638c1..db660ee18 100644 --- a/view/lang/pl/strings.php +++ b/view/lang/pl/strings.php @@ -5,99 +5,8 @@ function string_plural_select_pl($n){ $n = intval($n); if ($n==1) { return 0; } else if (($n%10>=2 && $n%10<=4) && ($n%100<12 || $n%100>14)) { return 1; } else if ($n!=1 && ($n%10>=0 && $n%10<=1) || ($n%10>=5 && $n%10<=9) || ($n%100>=12 && $n%100<=14)) { return 2; } else { return 3; } }} -$a->strings['Access denied.'] = 'Brak dostępu.'; -$a->strings['User not found.'] = 'Użytkownik nie znaleziony.'; -$a->strings['Access to this profile has been restricted.'] = 'Dostęp do tego profilu został ograniczony.'; -$a->strings['Events'] = 'Wydarzenia'; -$a->strings['View'] = 'Widok'; -$a->strings['Previous'] = 'Poprzedni'; -$a->strings['Next'] = 'Następny'; -$a->strings['today'] = 'dzisiaj'; -$a->strings['month'] = 'miesiąc'; -$a->strings['week'] = 'tydzień'; -$a->strings['day'] = 'dzień'; -$a->strings['list'] = 'lista'; -$a->strings['User not found'] = 'Użytkownik nie znaleziony'; -$a->strings['This calendar format is not supported'] = 'Ten format kalendarza nie jest obsługiwany'; -$a->strings['No exportable data found'] = 'Nie znaleziono danych do eksportu'; -$a->strings['calendar'] = 'kalendarz'; -$a->strings['Public access denied.'] = 'Publiczny dostęp zabroniony.'; -$a->strings['The requested item doesn\'t exist or has been deleted.'] = 'Żądany element nie istnieje lub został usunięty.'; -$a->strings['The feed for this item is unavailable.'] = 'Kanał dla tego elementu jest niedostępny.'; -$a->strings['Permission denied.'] = 'Brak uprawnień.'; -$a->strings['Item not found'] = 'Nie znaleziono elementu'; -$a->strings['Edit post'] = 'Edytuj wpis'; -$a->strings['Save'] = 'Zapisz'; -$a->strings['Loading...'] = 'Wczytywanie...'; -$a->strings['Upload photo'] = 'Wyślij zdjęcie'; -$a->strings['upload photo'] = 'wyślij zdjęcie'; -$a->strings['Attach file'] = 'Załącz plik'; -$a->strings['attach file'] = 'załącz plik'; -$a->strings['Insert web link'] = 'Wstaw link'; -$a->strings['web link'] = 'odnośnik sieciowy'; -$a->strings['Insert video link'] = 'Wstaw link do filmu'; -$a->strings['video link'] = 'link do filmu'; -$a->strings['Insert audio link'] = 'Wstaw link do audio'; -$a->strings['audio link'] = 'link do audio'; -$a->strings['Set your location'] = 'Ustaw swoją lokalizację'; -$a->strings['set location'] = 'wybierz lokalizację'; -$a->strings['Clear browser location'] = 'Wyczyść lokalizację przeglądarki'; -$a->strings['clear location'] = 'wyczyść lokalizację'; -$a->strings['Please wait'] = 'Proszę czekać'; -$a->strings['Permission settings'] = 'Ustawienia uprawnień'; -$a->strings['CC: email addresses'] = 'DW: adresy e-mail'; -$a->strings['Public post'] = 'Publiczny wpis'; -$a->strings['Set title'] = 'Podaj tytuł'; -$a->strings['Categories (comma-separated list)'] = 'Kategorie (lista słów oddzielonych przecinkiem)'; -$a->strings['Example: bob@example.com, mary@example.com'] = 'Przykład: bob@example.com, mary@example.com'; -$a->strings['Preview'] = 'Podgląd'; -$a->strings['Cancel'] = 'Anuluj'; -$a->strings['Bold'] = 'Pogrubienie'; -$a->strings['Italic'] = 'Kursywa'; -$a->strings['Underline'] = 'Podkreślenie'; -$a->strings['Quote'] = 'Cytat'; -$a->strings['Code'] = 'Kod'; -$a->strings['Link'] = 'Odnośnik'; -$a->strings['Link or Media'] = 'Odnośnik lub Media'; -$a->strings['Message'] = 'Wiadomość'; -$a->strings['Browser'] = 'Przeglądarka'; -$a->strings['Permissions'] = 'Uprawnienia'; -$a->strings['Open Compose page'] = 'Otwórz stronę Redagowanie'; -$a->strings['Event can not end before it has started.'] = 'Wydarzenie nie może się zakończyć przed jego rozpoczęciem.'; -$a->strings['Event title and start time are required.'] = 'Wymagany tytuł wydarzenia i czas rozpoczęcia.'; -$a->strings['Create New Event'] = 'Stwórz nowe wydarzenie'; -$a->strings['Event details'] = 'Szczegóły wydarzenia'; -$a->strings['Starting date and Title are required.'] = 'Data rozpoczęcia i tytuł są wymagane.'; -$a->strings['Event Starts:'] = 'Rozpoczęcie wydarzenia:'; -$a->strings['Required'] = 'Wymagany'; -$a->strings['Finish date/time is not known or not relevant'] = 'Data/czas zakończenia nie jest znana lub jest nieistotna'; -$a->strings['Event Finishes:'] = 'Zakończenie wydarzenia:'; -$a->strings['Description:'] = 'Opis:'; -$a->strings['Location:'] = 'Lokalizacja:'; -$a->strings['Title:'] = 'Tytuł:'; -$a->strings['Share this event'] = 'Udostępnij te wydarzenie'; -$a->strings['Submit'] = 'Potwierdź'; -$a->strings['Basic'] = 'Podstawowy'; -$a->strings['Advanced'] = 'Zaawansowany'; -$a->strings['Failed to remove event'] = 'Nie udało się usunąć wydarzenia'; -$a->strings['Photos'] = 'Zdjęcia'; -$a->strings['Upload'] = 'Wyślij'; -$a->strings['Files'] = 'Pliki'; -$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['Connect/Follow'] = 'Połącz/Obserwuj'; -$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'; -$a->strings['Tags:'] = 'Znaczniki:'; -$a->strings['%s knows you'] = '%s zna cię'; -$a->strings['Add a personal note:'] = 'Dodaj osobistą notkę:'; -$a->strings['Status Messages and Posts'] = 'Stan wiadomości i wpisów'; -$a->strings['The contact could not be added.'] = 'Nie można dodać kontaktu.'; $a->strings['Unable to locate original post.'] = 'Nie można zlokalizować oryginalnej wiadomości.'; +$a->strings['Permission denied.'] = 'Brak uprawnień.'; $a->strings['Empty post discarded.'] = 'Pusty wpis został odrzucony.'; $a->strings['Post updated.'] = 'Wpis zaktualizowany.'; $a->strings['Item wasn\'t stored.'] = 'Element nie został zapisany. '; @@ -192,9 +101,6 @@ $a->strings[' Możesz zmienić hasło na stronie ustawień konta po zalogowaniu. '; $a->strings['Your password has been changed at %s'] = 'Twoje hasło zostało zmienione na %s'; -$a->strings['No keywords to match. Please add keywords to your profile.'] = 'Brak pasujących słów kluczowych. Dodaj słowa kluczowe do swojego profilu.'; -$a->strings['No matches'] = 'Brak wyników'; -$a->strings['Profile Match'] = 'Dopasowanie profilu'; $a->strings['New Message'] = 'Nowa wiadomość'; $a->strings['No recipient selected.'] = 'Nie wybrano odbiorcy.'; $a->strings['Unable to locate contact information.'] = 'Nie można znaleźć informacji kontaktowych.'; @@ -210,6 +116,10 @@ $a->strings['Send Private Message'] = 'Wyślij prywatną wiadomość'; $a->strings['To:'] = 'Do:'; $a->strings['Subject:'] = 'Temat:'; $a->strings['Your message:'] = 'Twoja wiadomość:'; +$a->strings['Upload photo'] = 'Wyślij zdjęcie'; +$a->strings['Insert web link'] = 'Wstaw link'; +$a->strings['Please wait'] = 'Proszę czekać'; +$a->strings['Submit'] = 'Potwierdź'; $a->strings['No messages.'] = 'Brak wiadomości.'; $a->strings['Message not available.'] = 'Wiadomość nie jest dostępna.'; $a->strings['Delete message'] = 'Usuń wiadomość'; @@ -228,18 +138,8 @@ $a->strings['%d message'] = [ ]; $a->strings['Personal Notes'] = 'Notatki'; $a->strings['Personal notes are visible only by yourself.'] = 'Notatki osobiste są widziane tylko przez Ciebie.'; -$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.'; -$a->strings['Couldn\'t fetch friends for contact.'] = 'Nie można pobrać znajomych do kontaktu.'; -$a->strings['Couldn\'t fetch following contacts.'] = 'Nie udało się pobrać następujących kontaktów.'; -$a->strings['Couldn\'t fetch remote profile.'] = 'Nie można pobrać profilu zdalnego.'; -$a->strings['Unsupported network'] = 'Sieć nieobsługiwana'; -$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['Save'] = 'Zapisz'; +$a->strings['User not found.'] = 'Użytkownik nie znaleziony.'; $a->strings['Photo Albums'] = 'Albumy zdjęć'; $a->strings['Recent Photos'] = 'Ostatnio dodane zdjęcia'; $a->strings['Upload New Photos'] = 'Wyślij nowe zdjęcie'; @@ -251,21 +151,16 @@ $a->strings['Album was empty.'] = 'Album był pusty.'; $a->strings['Failed to delete the photo.'] = 'Błąd usunięcia zdjęcia.'; $a->strings['a photo'] = 'zdjęcie'; $a->strings['%1$s was tagged in %2$s by %3$s'] = '%1$szostał oznaczony znacznikiem %2$s przez %3$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'; -$a->strings['Server can\'t accept new file upload at this time, please contact your administrator'] = 'Serwer nie może teraz przyjąć nowego pliku, skontaktuj się z administratorem'; -$a->strings['Image file is empty.'] = 'Plik obrazka jest pusty.'; -$a->strings['Unable to process image.'] = 'Przetwarzanie obrazu nie powiodło się.'; -$a->strings['Image upload failed.'] = 'Przesyłanie obrazu nie powiodło się.'; +$a->strings['Public access denied.'] = 'Odmowa dostępu publicznego.'; $a->strings['No photos selected'] = 'Nie zaznaczono zdjęć'; -$a->strings['Access to this item is restricted.'] = 'Dostęp do tego obiektu jest ograniczony.'; $a->strings['Upload Photos'] = 'Prześlij zdjęcia'; $a->strings['New album name: '] = 'Nazwa nowego albumu: '; $a->strings['or select existing album:'] = 'lub wybierz istniejący album:'; $a->strings['Do not show a status post for this upload'] = 'Nie pokazuj stanu wpisów dla tego wysłania'; +$a->strings['Permissions'] = 'Uprawnienia'; $a->strings['Do you really want to delete this photo album and all its photos?'] = 'Czy na pewno chcesz usunąć ten album i wszystkie zdjęcia z tego albumu?'; $a->strings['Delete Album'] = 'Usuń album'; +$a->strings['Cancel'] = 'Anuluj'; $a->strings['Edit Album'] = 'Edytuj album'; $a->strings['Drop Album'] = 'Upuść Album'; $a->strings['Show Newest First'] = 'Pokaż najpierw najnowsze'; @@ -292,6 +187,8 @@ $a->strings['Rotate CW (right)'] = 'Obróć zgodnie z kierunkiem wskazówek zega $a->strings['Rotate CCW (left)'] = 'Obróć w przeciwnym kierunku do ruchu wskazówek zegara (w lewo)'; $a->strings['This is you'] = 'To jesteś Ty'; $a->strings['Comment'] = 'Komentarz'; +$a->strings['Preview'] = 'Podgląd'; +$a->strings['Loading...'] = 'Wczytywanie...'; $a->strings['Select'] = 'Wybierz'; $a->strings['Delete'] = 'Usuń'; $a->strings['Like'] = 'Lubię'; @@ -299,104 +196,6 @@ $a->strings['I like this (toggle)'] = 'Lubię to (zmień)'; $a->strings['Dislike'] = 'Nie lubię'; $a->strings['I don\'t like this (toggle)'] = 'Nie lubię tego (zmień)'; $a->strings['Map'] = 'Mapa'; -$a->strings['View Album'] = 'Zobacz album'; -$a->strings['Bad Request.'] = 'Błędne zapytanie.'; -$a->strings['Contact not found.'] = 'Nie znaleziono kontaktu.'; -$a->strings['[Friendica System Notify]'] = '[Powiadomienie Systemu Friendica]'; -$a->strings['User deleted their account'] = 'Użytkownik usunął swoje konto'; -$a->strings['On your Friendica node an user deleted their account. Please ensure that their data is removed from the backups.'] = 'W twoim węźle Friendica użytkownik usunął swoje konto. Upewnij się, że ich dane zostały usunięte z kopii zapasowych.'; -$a->strings['The user id is %d'] = 'Identyfikatorem użytkownika jest %d'; -$a->strings['Remove My Account'] = 'Usuń moje konto'; -$a->strings['This will completely remove your account. Once this has been done it is not recoverable.'] = 'Spowoduje to całkowite usunięcie Twojego konta. Po wykonaniu tej czynności nie można jej cofnąć.'; -$a->strings['Please enter your password for verification:'] = 'Wprowadź hasło w celu weryfikacji:'; -$a->strings['Resubscribing to OStatus contacts'] = 'Ponowne subskrybowanie kontaktów OStatus'; -$a->strings['Error'] = [ - 0 => 'Błąd', - 1 => 'Błędów', - 2 => 'Błędy', - 3 => 'Błędów', -]; -$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['Connected Apps'] = 'Powiązane aplikacje'; -$a->strings['Name'] = 'Nazwa'; -$a->strings['Home Page'] = 'Strona startowa'; -$a->strings['Created'] = 'Utwórz'; -$a->strings['Remove authorization'] = 'Odwołaj upoważnienie'; -$a->strings['Save Settings'] = 'Zapisz ustawienia'; -$a->strings['Addon Settings'] = 'Ustawienia dodatków'; -$a->strings['No Addon settings configured'] = 'Brak skonfigurowanych ustawień dodatków'; -$a->strings['Additional Features'] = 'Dodatkowe funkcje'; -$a->strings['Diaspora (Socialhome, Hubzilla)'] = 'Diaspora (Socialhome, Hubzilla)'; -$a->strings['enabled'] = 'włączone'; -$a->strings['disabled'] = 'wyłączone'; -$a->strings['Built-in support for %s connectivity is %s'] = 'Wbudowane wsparcie dla połączenia z %s jest %s'; -$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['Social Networks'] = 'Portale społecznościowe'; -$a->strings['General Social Media Settings'] = 'Ogólne ustawienia mediów społecznościowych'; -$a->strings['Followed content scope'] = 'Obserwowany zakres treści'; -$a->strings['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.'] = '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.'; -$a->strings['Only conversations my follows started'] = 'Tylko rozmowy, które rozpoczęli moi obserwowani'; -$a->strings['Conversations my follows started or commented on (default)'] = 'Rozmowy, które rozpoczęli moi obserwowani, lub które komentowali (domyślnie)'; -$a->strings['Any conversation my follows interacted with, including likes'] = 'Wszelkie rozmowy, z którymi wchodziłem w interakcję, w tym polubienia'; -$a->strings['Enable Content Warning'] = 'Włącz ostrzeżenia o treści'; -$a->strings['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.'] = 'Użytkownicy w sieciach takich jak Mastodon lub Pleroma mogą ustawić pole ostrzeżenia o treści, które domyślnie zwija ich posty. Umożliwia to automatyczne zwijanie zamiast ustawiania ostrzeżenia o treści jako tytułu wpisu. Nie wpływa na żadne inne skonfigurowane filtrowanie treści.'; -$a->strings['Enable intelligent shortening'] = 'Włącz inteligentne skracanie'; -$a->strings['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.'] = '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.'; -$a->strings['Enable simple text shortening'] = 'Włącz proste skracanie tekstu'; -$a->strings['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.'] = '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.'; -$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:'; -$a->strings['IMAP server name:'] = 'Nazwa serwera IMAP:'; -$a->strings['IMAP port:'] = 'Port IMAP:'; -$a->strings['Security:'] = 'Bezpieczeństwo:'; -$a->strings['Email login name:'] = 'Nazwa logowania e-mail:'; -$a->strings['Email password:'] = 'Hasło e-mail:'; -$a->strings['Reply-to address:'] = 'Adres zwrotny:'; -$a->strings['Send public posts to all email contacts:'] = 'Wyślij publiczny wpis do wszystkich kontaktów e-mail:'; -$a->strings['Action after import:'] = 'Akcja po zaimportowaniu:'; -$a->strings['Mark as seen'] = 'Oznacz jako przeczytane'; -$a->strings['Move to folder'] = 'Przenieś do katalogu'; -$a->strings['Move to folder:'] = 'Przenieś do katalogu:'; -$a->strings['No suggestions available. If this is a new site, please try again in 24 hours.'] = 'Brak dostępnych sugestii. Jeśli jest to nowa witryna, spróbuj ponownie za 24 godziny.'; -$a->strings['Friend Suggestions'] = 'Osoby, które możesz znać'; -$a->strings['photo'] = 'zdjęcie'; -$a->strings['status'] = 'stan'; -$a->strings['%1$s tagged %2$s\'s %3$s with %4$s'] = '%1$s zaznaczył %2$s\'go %3$s przy użyciu %4$s'; -$a->strings['Remove Item Tag'] = 'Usuń pozycję znacznika'; -$a->strings['Select a tag to remove: '] = 'Wybierz znacznik do usunięcia: '; -$a->strings['Remove'] = 'Usuń'; -$a->strings['User imports on closed servers can only be done by an administrator.'] = 'Import użytkowników na zamkniętych serwerach może być wykonywany tylko przez administratora.'; -$a->strings['This site has exceeded the number of allowed daily account registrations. Please try again tomorrow.'] = 'Strona przekroczyła ilość dozwolonych rejestracji na dzień. Proszę spróbuj ponownie jutro.'; -$a->strings['Import'] = 'Import'; -$a->strings['Move account'] = 'Przenieś konto'; -$a->strings['You can import an account from another Friendica server.'] = 'Możesz zaimportować konto z innego serwera Friendica.'; -$a->strings['You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here.'] = '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ś.'; -$a->strings['This feature is experimental. We can\'t import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora'] = 'Ta funkcja jest eksperymentalna. Nie możemy importować kontaktów z sieci OStatus (GNU Social/Statusnet) lub z Diaspory'; -$a->strings['Account file'] = 'Pliki konta'; -$a->strings['To export your account, go to "Settings->Export your personal data" and select "Export account"'] = 'Aby eksportować konto, wejdź w "Ustawienia->Eksport danych osobistych" i wybierz "Eksportuj konto"'; -$a->strings['You aren\'t following this contact.'] = 'Nie obserwujesz tego kontaktu.'; -$a->strings['Unfollowing is currently not supported by your network.'] = 'Brak obserwowania nie jest obecnie obsługiwany przez twoją sieć.'; -$a->strings['Disconnect/Unfollow'] = 'Rozłącz/Nie obserwuj'; -$a->strings['Contact was successfully unfollowed'] = 'Kontakt pomyślnie przestał być obserwowany'; -$a->strings['Unable to unfollow this contact, please contact your administrator'] = 'Nie można przestać obserwować tego kontaktu, skontaktuj się z administratorem'; -$a->strings['Invalid request.'] = 'Nieprawidłowe żądanie.'; -$a->strings['Sorry, maybe your upload is bigger than the PHP configuration allows'] = 'Przepraszam, Twój przesyłany plik jest większy niż pozwala konfiguracja PHP'; -$a->strings['Or - did you try to upload an empty file?'] = 'Lub - czy próbowałeś przesłać pusty plik?'; -$a->strings['File exceeds size limit of %s'] = 'Plik przekracza limit rozmiaru wynoszący %s'; -$a->strings['File upload failed.'] = 'Przesyłanie pliku nie powiodło się.'; -$a->strings['Wall Photos'] = 'Tablica zdjęć'; -$a->strings['Number of daily wall messages for %s exceeded. Message failed.'] = 'Dzienny limit wiadomości na tablicy %s został przekroczony. Wiadomość została odrzucona.'; -$a->strings['Unable to check your home location.'] = 'Nie można sprawdzić twojej lokalizacji.'; -$a->strings['No recipient.'] = 'Brak odbiorcy.'; -$a->strings['If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders.'] = 'Jeśli chcesz %s odpowiedzieć, sprawdź, czy ustawienia prywatności w Twojej witrynie zezwalają na prywatne wiadomości od nieznanych nadawców.'; $a->strings['No system theme config value set.'] = 'Nie ustawiono wartości konfiguracyjnej zestawu tematycznego.'; $a->strings['Apologies but the website is unavailable at the moment.'] = 'Przepraszamy, ale strona jest w tej chwili niedostępna.'; $a->strings['Delete this item?'] = 'Usunąć ten element?'; @@ -420,7 +219,6 @@ $a->strings['Could not find any contact entry for this URL (%s)'] = 'Nie można $a->strings['The contact has been blocked from the node'] = 'Kontakt został zablokowany w węźle'; $a->strings['%d %s, %d duplicates.'] = '%d %s, %d duplikaty.'; $a->strings['uri-id is empty for contact %s.'] = 'uri-id jest pusty dla kontaktu%s.'; -$a->strings['No valid first countact found for uri-id %d.'] = 'Nie znaleziono prawidłowego pierwszego kontaktu dla identyfikatora uri-id %d.'; $a->strings['Wrong duplicate found for uri-id %d in %d (url: %s != %s).'] = 'Odnaleziono nieprawidłowy duplikat dla identyfikatora uri %d w %d (url: %s != %s).'; $a->strings['Wrong duplicate found for uri-id %d in %d (nurl: %s != %s).'] = 'Odnaleziono nieprawidłowy duplikat dla identyfikatora uri %d w %d (nurl: %s != %s).'; $a->strings['Deletion of id %d failed'] = 'Nie udało się usunąć identyfikatora %d'; @@ -443,6 +241,7 @@ $a->strings['Done.'] = 'Gotowe.'; $a->strings['Execute pending post updates.'] = 'Wykonaj oczekujące aktualizacje wpisów.'; $a->strings['All pending post updates are done.'] = 'Wszystkie oczekujące aktualizacje wpisów są gotowe.'; $a->strings['Enter user nickname: '] = 'Wpisz nazwę użytkownika:'; +$a->strings['User not found'] = 'Użytkownik nie znaleziony'; $a->strings['Enter new password: '] = 'Wprowadź nowe hasło: '; $a->strings['Password update failed. Please try again.'] = 'Aktualizacja hasła nie powiodła się. Proszę spróbować ponownie.'; $a->strings['Password changed.'] = 'Hasło zostało zmienione.'; @@ -510,9 +309,30 @@ $a->strings['Delete item(s)?'] = 'Usunąć pozycję (pozycje)?'; $a->strings['Created at'] = 'Utworzono'; $a->strings['New Post'] = 'Nowy wpis'; $a->strings['Share'] = 'Podziel się'; +$a->strings['upload photo'] = 'wyślij zdjęcie'; +$a->strings['Attach file'] = 'Załącz plik'; +$a->strings['attach file'] = 'załącz plik'; +$a->strings['Bold'] = 'Pogrubienie'; +$a->strings['Italic'] = 'Kursywa'; +$a->strings['Underline'] = 'Podkreślenie'; +$a->strings['Quote'] = 'Cytat'; +$a->strings['Code'] = 'Kod'; $a->strings['Image'] = 'Obraz'; +$a->strings['Link'] = 'Odnośnik'; +$a->strings['Link or Media'] = 'Odnośnik lub Media'; $a->strings['Video'] = 'Filmy'; +$a->strings['Set your location'] = 'Ustaw swoją lokalizację'; +$a->strings['set location'] = 'wybierz lokalizację'; +$a->strings['Clear browser location'] = 'Wyczyść lokalizację przeglądarki'; +$a->strings['clear location'] = 'wyczyść lokalizację'; +$a->strings['Set title'] = 'Podaj tytuł'; +$a->strings['Categories (comma-separated list)'] = 'Kategorie (lista słów oddzielonych przecinkiem)'; $a->strings['Scheduled at'] = 'Zaplanowane na'; +$a->strings['Permission settings'] = 'Ustawienia uprawnień'; +$a->strings['Public post'] = 'Wpis publiczny'; +$a->strings['Message'] = 'Wiadomość'; +$a->strings['Browser'] = 'Przeglądarka'; +$a->strings['Open Compose page'] = 'Otwórz stronę Redagowanie'; $a->strings['Pinned item'] = 'Przypięty element'; $a->strings['View %s\'s profile @ %s'] = 'Pokaż profil %s @ %s'; $a->strings['Categories:'] = 'Kategorie:'; @@ -523,16 +343,19 @@ $a->strings['remove'] = 'usuń'; $a->strings['Delete Selected Items'] = 'Usuń zaznaczone elementy'; $a->strings['You had been addressed (%s).'] = 'Zostałeś zaadresowany (%s).'; $a->strings['You are following %s.'] = 'Zacząłeś obserwować %s.'; -$a->strings['Tagged'] = 'Oznaczone'; +$a->strings['You subscribed to one or more tags in this post.'] = 'Zasubskrybowałeś jeden lub więcej znaczników w tym wpisie.'; $a->strings['Reshared'] = 'Udostępnione'; $a->strings['Reshared by %s <%s>'] = 'Udostępnione przez %s <%s>'; $a->strings['%s is participating in this thread.'] = '%s bierze udział w tym wątku.'; -$a->strings['Stored'] = 'Przechowywane'; -$a->strings['Global'] = 'Globalne'; -$a->strings['Relayed'] = 'Przekazany'; -$a->strings['Relayed by %s <%s>'] = 'Przekazany przez %s <%s>'; +$a->strings['Stored for general reasons'] = 'Przechowywane z powodów ogólnych'; +$a->strings['Global post'] = 'Wpis globalny'; +$a->strings['Sent via an relay server'] = 'Wysłane przez serwer przekazujący'; $a->strings['Fetched'] = 'Pobrane'; $a->strings['Fetched because of %s <%s>'] = 'Pobrano ponieważ %s <%s>'; +$a->strings['Stored because of a child post to complete this thread.'] = 'Zapisano z powodu wpisu podrzędnego, który miał zakończyć ten wątek.'; +$a->strings['Local delivery'] = 'Dostarczone lokalnie'; +$a->strings['Stored because of your activity (like, comment, star, ...)'] = 'Przechowywane z powodu Twojej aktywności (polubienie, komentarz, gwiazdka, ...)'; +$a->strings['Distributed'] = 'Rozpowszechniane'; $a->strings['General Features'] = 'Funkcje ogólne'; $a->strings['Photo Location'] = 'Lokalizacja zdjęcia'; $a->strings['Photo metadata is normally stripped. This extracts the location (if present) prior to stripping metadata and links it to a map.'] = 'Metadane zdjęć są zwykle usuwane. Wyodrębnia to położenie (jeśli jest obecne) przed usunięciem metadanych i łączy je z mapą.'; @@ -555,12 +378,17 @@ $a->strings['Tag Cloud'] = 'Chmura znaczników'; $a->strings['Provide a personal tag cloud on your profile page'] = 'Podaj osobistą chmurę tagów na stronie profilu'; $a->strings['Display Membership Date'] = 'Wyświetl datę członkostwa'; $a->strings['Display membership date in profile'] = 'Wyświetla datę członkostwa w profilu'; +$a->strings['Advanced Calendar Settings'] = 'Zaawansowane ustawienia kalendarza'; +$a->strings['Allow anonymous access to your calendar'] = 'Zezwól na anonimowy dostęp do swojego kalendarza'; +$a->strings['Allows anonymous visitors to consult your calendar and your public events. Contact birthday events are private to you.'] = 'Pozwala anonimowym odwiedzającym przeglądać Twój kalendarz i wydarzenia publiczne. Kontaktowe wydarzenia urodzinowe są prywatne dla Ciebie.'; $a->strings['Forums'] = 'Fora'; $a->strings['External link to forum'] = 'Zewnętrzny link do forum'; $a->strings['show less'] = 'pokaż mniej'; $a->strings['show more'] = 'pokaż więcej'; -$a->strings['%1$s poked %2$s'] = '%1$s zaczepił Cię %2$s'; $a->strings['event'] = 'wydarzenie'; +$a->strings['status'] = 'stan'; +$a->strings['photo'] = 'zdjęcie'; +$a->strings['%1$s tagged %2$s\'s %3$s with %4$s'] = '%1$s zaznaczył %2$s\'go %3$s przy użyciu %4$s'; $a->strings['Follow Thread'] = 'Śledź wątek'; $a->strings['View Status'] = 'Zobacz status'; $a->strings['View Profile'] = 'Zobacz profil'; @@ -571,7 +399,7 @@ $a->strings['Send PM'] = 'Wyślij prywatną wiadomość'; $a->strings['Block'] = 'Zablokuj'; $a->strings['Ignore'] = 'Ignoruj'; $a->strings['Languages'] = 'Języki'; -$a->strings['Poke'] = 'Zaczepka'; +$a->strings['Connect/Follow'] = 'Połącz/Obserwuj'; $a->strings['Nothing new here'] = 'Brak nowych zdarzeń'; $a->strings['Go back'] = 'Wróć'; $a->strings['Clear notifications'] = 'Wyczyść powiadomienia'; @@ -584,13 +412,16 @@ $a->strings['Status'] = 'Stan'; $a->strings['Your posts and conversations'] = 'Twoje wpisy i rozmowy'; $a->strings['Profile'] = 'Profil'; $a->strings['Your profile page'] = 'Twoja strona profilu'; +$a->strings['Photos'] = 'Zdjęcia'; $a->strings['Your photos'] = 'Twoje zdjęcia'; $a->strings['Media'] = 'Media'; $a->strings['Your postings with media'] = 'Twoje wpisy z mediami'; -$a->strings['Your events'] = 'Twoje wydarzenia'; +$a->strings['Calendar'] = 'Kalendarz'; +$a->strings['Your calendar'] = 'Twój kalendarz'; $a->strings['Personal notes'] = 'Osobiste notatki'; $a->strings['Your personal notes'] = 'Twoje osobiste notatki'; $a->strings['Home'] = 'Strona domowa'; +$a->strings['Home Page'] = 'Strona startowa'; $a->strings['Register'] = 'Zarejestruj'; $a->strings['Create an account'] = 'Załóż konto'; $a->strings['Help'] = 'Pomoc'; @@ -604,7 +435,6 @@ $a->strings['Tags'] = 'Znaczniki'; $a->strings['Contacts'] = 'Kontakty'; $a->strings['Community'] = 'Społeczność'; $a->strings['Conversations on this and other servers'] = 'Rozmowy na tym i innych serwerach'; -$a->strings['Events and Calendar'] = 'Wydarzenia i kalendarz'; $a->strings['Directory'] = 'Katalog'; $a->strings['People directory'] = 'Katalog osób'; $a->strings['Information'] = 'Informacje'; @@ -617,6 +447,7 @@ $a->strings['Introductions'] = 'Zapoznanie'; $a->strings['Friend Requests'] = 'Prośba o przyjęcie do grona znajomych'; $a->strings['Notifications'] = 'Powiadomienia'; $a->strings['See all notifications'] = 'Zobacz wszystkie powiadomienia'; +$a->strings['Mark as seen'] = 'Oznacz jako przeczytane'; $a->strings['Mark all system notifications as seen'] = 'Oznacz wszystkie powiadomienia systemowe jako przeczytane'; $a->strings['Private mail'] = 'Prywatne maile'; $a->strings['Inbox'] = 'Odebrane'; @@ -628,6 +459,8 @@ $a->strings['Account settings'] = 'Ustawienia konta'; $a->strings['Manage/edit friends and contacts'] = 'Zarządzaj listą przyjaciół i kontaktami'; $a->strings['Admin'] = 'Administrator'; $a->strings['Site setup and configuration'] = 'Konfiguracja i ustawienia strony'; +$a->strings['Moderation'] = 'Moderacja'; +$a->strings['Content and user moderation'] = 'Moderacja treści i użytkowników'; $a->strings['Navigation'] = 'Nawigacja'; $a->strings['Site map'] = 'Mapa strony'; $a->strings['Embedding disabled'] = 'Osadzanie wyłączone'; @@ -661,6 +494,7 @@ $a->strings['Find People'] = 'Znajdź ludzi'; $a->strings['Enter name or interest'] = 'Wpisz nazwę lub zainteresowanie'; $a->strings['Examples: Robert Morgenstein, Fishing'] = 'Przykład: Jan Kowalski, Wędkarstwo'; $a->strings['Find'] = 'Znajdź'; +$a->strings['Friend Suggestions'] = 'Osoby, które możesz znać'; $a->strings['Similar Interests'] = 'Podobne zainteresowania'; $a->strings['Random Profile'] = 'Domyślny profil'; $a->strings['Invite Friends'] = 'Zaproś znajomych'; @@ -709,6 +543,7 @@ $a->strings['Trending Tags (last %d hour)'] = [ $a->strings['More Trending Tags'] = 'Więcej popularnych znaczników'; $a->strings['XMPP:'] = 'XMPP:'; $a->strings['Matrix:'] = 'Matrix:'; +$a->strings['Location:'] = 'Lokalizacja:'; $a->strings['Network:'] = 'Sieć:'; $a->strings['Unfollow'] = 'Przestań obserwować'; $a->strings['Yourself'] = 'Siebie'; @@ -720,6 +555,8 @@ $a->strings['Limited/Private'] = 'Ograniczony/Prywatny'; $a->strings['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.'] = 'Ta zawartość będzie wyświetlana tylko osobom w pierwszym polu, z wyjątkiem osób wymienionych w drugim polu. Nie pojawi się nigdzie publicznie.'; $a->strings['Show to:'] = 'Pokaż na:'; $a->strings['Except to:'] = 'Z wyjątkiem:'; +$a->strings['CC: email addresses'] = 'DW: adresy e-mail'; +$a->strings['Example: bob@example.com, mary@example.com'] = 'Przykład: bob@example.com, mary@example.com'; $a->strings['Connectors'] = 'Wtyczki'; $a->strings['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.'] = 'Plik konfiguracyjny bazy danych "config/local.config.php" nie mógł zostać zapisany. Proszę użyć załączonego tekstu, aby utworzyć plik konfiguracyjny w katalogu głównym serwera.'; $a->strings['You may need to import the file "database.sql" manually using phpmyadmin or mysql.'] = 'Może być konieczne zaimportowanie pliku "database.sql" ręcznie, używając phpmyadmin lub mysql.'; @@ -824,18 +661,6 @@ $a->strings['Sep'] = 'Wrz'; $a->strings['Oct'] = 'Paź'; $a->strings['Nov'] = 'Lis'; $a->strings['Dec'] = 'Gru'; -$a->strings['poke'] = 'zaczep'; -$a->strings['poked'] = 'zaczepił Cię'; -$a->strings['ping'] = 'ping'; -$a->strings['pinged'] = 'napięcia'; -$a->strings['prod'] = 'zaczep'; -$a->strings['prodded'] = 'zaczepiać'; -$a->strings['slap'] = 'klask'; -$a->strings['slapped'] = 'spoliczkowany'; -$a->strings['finger'] = 'wskaż'; -$a->strings['fingered'] = 'dotknięty'; -$a->strings['rebuff'] = 'odrzuć'; -$a->strings['rebuffed'] = 'odrzucony'; $a->strings['Friendica can\'t display this page at the moment, please contact the administrator.'] = 'Friendica nie może obecnie wyświetlić tej strony, skontaktuj się z administratorem.'; $a->strings['template engine cannot be registered without a name.'] = 'silnik szablonów nie może być zarejestrowany bez nazwy.'; $a->strings['template engine is not registered!'] = 'silnik szablonów nie jest zarejestrowany!'; @@ -858,21 +683,6 @@ $a->strings[' programistami friendica, jeśli nie możesz mi pomóc na własną rękę. Moja baza danych może być nieprawidłowa.'; $a->strings['The error message is\n[pre]%s[/pre]'] = 'Komunikat o błędzie:\n[pre]%s[/pre]'; $a->strings['[Friendica Notify] Database update'] = '[Powiadomienie Friendica] Aktualizacja bazy danych'; -$a->strings[' - The friendica database was successfully updated from %s to %s.'] = ' - Baza danych Friendica została pomyślnie zaktualizowana z %s do %s.'; -$a->strings['Error decoding account file'] = 'Błąd podczas odczytu pliku konta'; -$a->strings['Error! No version data in file! This is not a Friendica account file?'] = 'Błąd! Brak danych wersji w pliku! To nie jest plik konta Friendica?'; -$a->strings['User \'%s\' already exists on this server!'] = 'Użytkownik \'%s\' już istnieje na tym serwerze!'; -$a->strings['User creation error'] = 'Błąd tworzenia użytkownika'; -$a->strings['%d contact not imported'] = [ - 0 => 'Nie zaimportowano %d kontaktu', - 1 => 'Nie zaimportowano %d kontaktów', - 2 => 'Nie zaimportowano %d kontaktów', - 3 => '%d kontakty nie zostały zaimportowane ', -]; -$a->strings['User profile creation error'] = 'Błąd tworzenia profilu użytkownika'; -$a->strings['Done. You can now login with your username and password'] = 'Gotowe. Możesz teraz zalogować się z użyciem nazwy użytkownika i hasła'; $a->strings['The database version had been set to %s.'] = 'Wersja bazy danych została ustawiona na %s.'; $a->strings['The post update is at version %d, it has to be at %d to safely drop the tables.'] = 'Aktualizacja po aktualizacji jest w wersji %d, musi nastąpić %d, aby bezpiecznie usunąć tabele.'; $a->strings['No unused tables found.'] = 'Nie odnaleziono nieużywanych tabel'; @@ -895,7 +705,6 @@ $a->strings['Unauthorized'] = 'Nieautoryzowane'; $a->strings['Token is not authorized with a valid user or is missing a required scope'] = 'Token nie jest autoryzowany z prawidłowym użytkownikiem lub nie ma wymaganego zakresu'; $a->strings['Internal Server Error'] = 'Wewnętrzny błąd serwera'; $a->strings['Legacy module file not found: %s'] = 'Nie znaleziono pliku modułu: %s'; -$a->strings['UnFollow'] = 'Przestań obserwować'; $a->strings['Approve'] = 'Zatwierdź'; $a->strings['Organisation'] = 'Organizacja'; $a->strings['Forum'] = 'Forum'; @@ -916,7 +725,13 @@ $a->strings['Starts:'] = 'Rozpoczęcie:'; $a->strings['Finishes:'] = 'Zakończenie:'; $a->strings['all-day'] = 'cały dzień'; $a->strings['Sept'] = 'Wrz'; +$a->strings['today'] = 'dzisiaj'; +$a->strings['month'] = 'miesiąc'; +$a->strings['week'] = 'tydzień'; +$a->strings['day'] = 'dzień'; $a->strings['No events to display'] = 'Brak wydarzeń do wyświetlenia'; +$a->strings['Access to this profile has been restricted.'] = 'Dostęp do tego profilu został ograniczony.'; +$a->strings['Event not found.'] = 'Nie znaleziono wydarzenia.'; $a->strings['l, F j'] = 'l, F j'; $a->strings['Edit event'] = 'Edytuj wydarzenie'; $a->strings['Duplicate event'] = 'Zduplikowane zdarzenie'; @@ -944,18 +759,16 @@ $a->strings['comment'] = 'komentarz'; $a->strings['post'] = 'wpis'; $a->strings['Content warning: %s'] = 'Ostrzeżenie o treści: %s'; $a->strings['bytes'] = 'bajty'; -$a->strings['%s (%d%s, %d votes)'] = '%s (%d%s, %d głosów)'; -$a->strings['%s (%d votes)'] = '%s (%d głosów)'; -$a->strings['%d voters. Poll end: %s'] = '%d głosujących. Zakończenie głosowania: %s'; -$a->strings['%d voters.'] = '%d głosujących.'; $a->strings['Poll end: %s'] = 'Koniec ankiety: %s'; $a->strings['View on separate page'] = 'Zobacz na oddzielnej stronie'; $a->strings['[no subject]'] = '[bez tematu]'; +$a->strings['Wall Photos'] = 'Tablica zdjęć'; $a->strings['Edit profile'] = 'Edytuj profil'; $a->strings['Change profile photo'] = 'Zmień zdjęcie profilowe'; $a->strings['Homepage:'] = 'Strona główna:'; $a->strings['About:'] = 'O:'; $a->strings['Atom feed'] = 'Kanał Atom'; +$a->strings['This website has been verified to belong to the same person.'] = 'Zweryfikowano, że ta witryna należy do tej samej osoby.'; $a->strings['F d'] = 'F d'; $a->strings['[today]'] = '[dziś]'; $a->strings['Birthday Reminders'] = 'Przypomnienia o urodzinach'; @@ -991,6 +804,7 @@ $a->strings['Not enough information to authenticate'] = 'Za mało informacji do $a->strings['Password can\'t be empty'] = 'Hasło nie może być puste'; $a->strings['Empty passwords are not allowed.'] = 'Puste hasła są niedozwolone.'; $a->strings['The new password has been exposed in a public data dump, please choose another.'] = 'Nowe hasło zostało ujawnione w publicznym zrzucie danych, wybierz inne.'; +$a->strings['The password length is limited to 72 characters.'] = 'Długość hasła jest ograniczona do 72 znaków.'; $a->strings['The password can\'t contain accentuated letters, white spaces or colons (:)'] = 'Hasło nie może zawierać podkreślonych liter, białych spacji ani dwukropków (:)'; $a->strings['Passwords do not match. Password unchanged.'] = 'Hasła nie pasują do siebie. Hasło niezmienione.'; $a->strings['An invitation is required.'] = 'Wymagane zaproszenie.'; @@ -1030,57 +844,6 @@ $a->strings[' the administrator of %2$s has set up an account for you.'] = ' Szanowna/y %1$s, administrator of %2$s założył dla Ciebie konto.'; -$a->strings[' - The login details are as follows: - - Site Location: %1$s - Login Name: %2$s - Password: %3$s - - You may change your password from your account "Settings" page after logging - in. - - Please take a few moments to review the other account settings on that page. - - You may also wish to add some basic information to your default profile - (on the "Profiles" page) so that other people can easily find you. - - We recommend setting your full name, adding a profile photo, - adding some profile "keywords" (very useful in making new friends) - and - perhaps what country you live in; if you do not wish to be more specific - than that. - - We fully respect your right to privacy, and none of these items are necessary. - If you are new and do not know anybody here, they may help - you to make some new and interesting friends. - - If you ever want to delete your account, you can do so at %1$s/removeme - - Thank you and welcome to %4$s.'] = ' - Dane logowania są następuje: - - Położenie witryny: %1$s - Nazwa użytkownika :%2$s - Hasło: %3$s - - Po zalogowaniu możesz zmienić hasło do swojego konta na stronie "Ustawienia". - - Proszę poświęć chwilę, aby przejrzeć inne ustawienia konta na tej stronie. - - Możesz również chcieć dodać podstawowe informacje do swojego domyślnego profilu - (na stronie "Profile"), aby inne osoby mogły łatwo Cię znaleźć. - - Zalecamy ustawienie imienia i nazwiska, dodanie zdjęcia profilowego, - dodanie pewnych "słów kluczowych" profilu (bardzo przydatne w nawiązywaniu nowych znajomości) - i być może miejsca, gdzie mieszkasz; jeśli nie chcesz podawać więcej szczegółów. - - W pełni szanujemy Twoje prawo do prywatności i żadna z tych danych nie jest konieczna. - Jeśli jesteś nowy i nie znasz tutaj nikogo, mogą one Ci pomóc, - w pozyskaniu nowych i interesujących przyjaciół. - - Jeśli kiedykolwiek zechcesz usunąć swoje konto, możesz to zrobić na stronie %1$s/removeme - - Dziękujemy i zapraszamy do%4$s.'; $a->strings['Registration details for %s'] = 'Szczegóły rejestracji dla %s'; $a->strings[' Dear %1$s, @@ -1109,55 +872,6 @@ $a->strings[' Szanowna/y %1$s, Dziękujemy za rejestrację w %2$s. Twoje konto zostało utworzone. '; -$a->strings[' - The login details are as follows: - - Site Location: %3$s - Login Name: %1$s - Password: %5$s - - You may change your password from your account "Settings" page after logging - in. - - Please take a few moments to review the other account settings on that page. - - You may also wish to add some basic information to your default profile - (on the "Profiles" page) so that other people can easily find you. - - We recommend setting your full name, adding a profile photo, - adding some profile "keywords" (very useful in making new friends) - and - perhaps what country you live in; if you do not wish to be more specific - than that. - - We fully respect your right to privacy, and none of these items are necessary. - If you are new and do not know anybody here, they may help - you to make some new and interesting friends. - - If you ever want to delete your account, you can do so at %3$s/removeme - - Thank you and welcome to %2$s.'] = ' - Dane logowania są następuje: - Lokalizacja witryny: %3$s - Nazwa użytkownika: %1$s - Hasło: %5$s - - Po zalogowaniu możesz zmienić hasło do swojego konta na stronie "Ustawienia". - Proszę poświęć chwilę, aby przejrzeć inne ustawienia konta na tej stronie. - - Możesz również dodać podstawowe informacje do swojego domyślnego profilu - (na stronie "Profil użytkownika"), aby inne osoby mogły łatwo Cię znaleźć. - - Zalecamy ustawienie imienia i nazwiska, dodanie zdjęcia profilowego, - dodanie niektórych "słów kluczowych" profilu (bardzo przydatne w nawiązywaniu nowych znajomości) - i być może gdzie mieszkasz; jeśli nie chcesz podać więcej szczegów. - - W pełni szanujemy Twoje prawo do prywatności i żaden z tych elementów nie jest konieczny. - Jeśli jesteś nowy i nie znasz tutaj nikogo, oni mogą ci pomóc - możesz zdobyć nowych interesujących przyjaciół. - - Jeśli kiedykolwiek zechcesz usunąć swoje konto, możesz to zrobić na stronie %3$s/removeme - - Dziękujemy i Zapraszamy do %2$s.'; $a->strings['Addon not found.'] = 'Nie znaleziono dodatku.'; $a->strings['Addon %s disabled.'] = 'Dodatek %s wyłączony.'; $a->strings['Addon %s enabled.'] = 'Dodatek %s włączony.'; @@ -1170,108 +884,9 @@ $a->strings['Author: '] = 'Autor: '; $a->strings['Maintainer: '] = 'Opiekun: '; $a->strings['Addons reloaded'] = 'Dodatki zostały ponownie wczytane'; $a->strings['Addon %s failed to install.'] = 'Instalacja dodatku %s nie powiodła się.'; +$a->strings['Save Settings'] = 'Zapisz ustawienia'; $a->strings['Reload active addons'] = 'Wczytaj ponownie aktywne dodatki'; $a->strings['There are currently no addons available on your node. You can find the official addon repository at %1$s and might find other interesting addons in the open addon registry at %2$s'] = 'W twoim węźle nie ma obecnie żadnych dodatków. Możesz znaleźć oficjalne repozytorium dodatków na %1$s i możesz znaleźć inne interesujące dodatki w otwartym rejestrze dodatków na %2$s'; -$a->strings['List of all users'] = 'Lista wszystkich użytkowników'; -$a->strings['Active'] = 'Aktywne'; -$a->strings['List of active accounts'] = 'Lista aktywnych kont'; -$a->strings['Pending'] = 'Oczekujące'; -$a->strings['List of pending registrations'] = 'Lista oczekujących rejestracji'; -$a->strings['Blocked'] = 'Zablokowane'; -$a->strings['List of blocked users'] = 'Lista zablokowanych użytkowników'; -$a->strings['Deleted'] = 'Usunięte'; -$a->strings['List of pending user deletions'] = 'Lista oczekujących na usunięcie użytkowników'; -$a->strings['Normal Account Page'] = 'Normalna strona konta'; -$a->strings['Soapbox Page'] = 'Strona Soapbox'; -$a->strings['Public Forum'] = 'Forum publiczne'; -$a->strings['Automatic Friend Page'] = 'Automatyczna strona znajomego'; -$a->strings['Private Forum'] = 'Prywatne forum'; -$a->strings['Personal Page'] = 'Strona osobista'; -$a->strings['Organisation Page'] = 'Strona Organizacji'; -$a->strings['News Page'] = 'Strona Wiadomości'; -$a->strings['Community Forum'] = 'Forum społecznościowe'; -$a->strings['Relay'] = 'Przekaźnik'; -$a->strings['You can\'t block a local contact, please block the user instead'] = 'Nie możesz zablokować lokalnego kontaktu, zamiast tego zablokuj użytkownika'; -$a->strings['%s contact unblocked'] = [ - 0 => '%s kontakt odblokowany', - 1 => '%s kontakty odblokowane', - 2 => '%s kontaktów odblokowanych', - 3 => '%s kontaktów odblokowanych', -]; -$a->strings['Remote Contact Blocklist'] = 'Lista zablokowanych kontaktów zdalnych'; -$a->strings['This page allows you to prevent any message from a remote contact to reach your node.'] = 'Ta strona pozwala zapobiec wysyłaniu do węzła wiadomości od kontaktu zdalnego.'; -$a->strings['Block Remote Contact'] = 'Zablokuj kontakt zdalny'; -$a->strings['select all'] = 'zaznacz wszystko'; -$a->strings['select none'] = 'wybierz brak'; -$a->strings['Unblock'] = 'Odblokuj'; -$a->strings['No remote contact is blocked from this node.'] = 'Z tego węzła nie jest blokowany kontakt zdalny.'; -$a->strings['Blocked Remote Contacts'] = 'Zablokowane kontakty zdalne'; -$a->strings['Block New Remote Contact'] = 'Zablokuj nowy kontakt zdalny'; -$a->strings['Photo'] = 'Zdjęcie'; -$a->strings['Reason'] = 'Powód'; -$a->strings['%s total blocked contact'] = [ - 0 => 'łącznie %s zablokowany kontakt', - 1 => 'łącznie %s zablokowane kontakty', - 2 => 'łącznie %s zablokowanych kontaktów', - 3 => '%s całkowicie zablokowane kontakty', -]; -$a->strings['URL of the remote contact to block.'] = 'Adres URL kontaktu zdalnego do zablokowania.'; -$a->strings['Also purge contact'] = 'Wyczyść również kontakt'; -$a->strings['Removes all content related to this contact from the node. Keeps the contact record. This action cannot be undone.'] = 'Usuwa z węzła całą zawartość związaną z tym kontaktem. Zachowuje rejestr kontaktów. Tej czynności nie można cofnąć.'; -$a->strings['Block Reason'] = 'Powód blokady'; -$a->strings['Server domain pattern added to the blocklist.'] = 'Do listy zablokowanych dodano wzorzec domeny serwera.'; -$a->strings['%s server scheduled to be purged.'] = [ - 0 => '%s serwer zaplanowany do usunięcia.', - 1 => '%s serwery zaplanowane do usunięcia.', - 2 => '%s serwerów zaplanowanych do usunięcia.', - 3 => '%s serwerów zaplanowanych do usunięcia.', -]; -$a->strings['← Return to the list'] = '← Wróć do listy'; -$a->strings['Block A New Server Domain Pattern'] = 'Zablokuj nowy wzorzec domeny serwera'; -$a->strings['

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

-
    -
  • *: Any number of characters
  • -
  • ?: Any single character
  • -
'] = '

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

-
    -
  • *: Dowolna liczba znaków
  • -
  • ?: Dowolny pojedynczy znak
  • -
'; -$a->strings['Check pattern'] = 'Sprawdź wzór'; -$a->strings['Matching known servers'] = 'Dopasowanie znanych serwerów'; -$a->strings['Server Name'] = 'Nazwa serwera'; -$a->strings['Server Domain'] = 'Domena serwera'; -$a->strings['Known Contacts'] = 'Znane kontakty'; -$a->strings['%d known server'] = [ - 0 => '%d znany serwer', - 1 => '%d znane serwery', - 2 => '%d znanych serwerów', - 3 => '%d znanych serwerów', -]; -$a->strings['Add pattern to the blocklist'] = 'Dodaj wzór do listy blokad'; -$a->strings['Server Domain Pattern'] = 'Wzorzec domeny serwera'; -$a->strings['The domain pattern of the new server to add to the blocklist. Do not include the protocol.'] = 'Wzorzec domeny nowego serwera do dodania do listy blokad. Nie dołączaj protokołu.'; -$a->strings['Purge server'] = 'Wyczyść serwer'; -$a->strings['Also purges all the locally stored content authored by the known contacts registered on that server. Keeps the contacts and the server records. This action cannot be undone.'] = [ - 0 => 'Usuwa również całą lokalnie przechowywaną zawartość stworzoną przez znane kontakty zarejestrowane na tych serwerach. Zachowuje ewidencję kontaktów i serwerów. Tej czynności nie można cofnąć.', - 1 => 'Usuwa również całą lokalnie przechowywaną zawartość stworzoną przez znane kontakty zarejestrowane na tych serwerach. Zachowuje ewidencję kontaktów i serwerów. Tej czynności nie można cofnąć.', - 2 => 'Usuwa również całą lokalnie przechowywaną zawartość stworzoną przez znane kontakty zarejestrowane na tych serwerach. Zachowuje ewidencję kontaktów i serwerów. Tej czynności nie można cofnąć.', - 3 => 'Usuwa również całą lokalnie przechowywaną zawartość stworzoną przez znane kontakty zarejestrowane na tych serwerach. Zachowuje ewidencję kontaktów i serwerów. Tej czynności nie można cofnąć.', -]; -$a->strings['Block reason'] = 'Powód zablokowania'; -$a->strings['The reason why you blocked this server domain pattern. This reason will be shown publicly in the server information page.'] = 'Powód, dla którego zablokowałeś ten wzorzec domeny serwera. Powód ten zostanie pokazany publicznie na stronie informacyjnej serwera.'; -$a->strings['Blocked server domain pattern'] = 'Zablokowany wzorzec domeny serwera'; -$a->strings['Reason for the block'] = 'Powód blokowania'; -$a->strings['Delete server domain pattern'] = 'Usuń wzorzec domeny serwera'; -$a->strings['Check to delete this entry from the blocklist'] = 'Zaznacz, aby usunąć ten wpis z listy bloków'; -$a->strings['Server Domain Pattern Blocklist'] = 'Lista bloków wzorców domen serwerów'; -$a->strings['This page can be used to define a blocklist of server domain patterns from the federated network that are not allowed to interact with your node. For each domain pattern you should also provide the reason why you block it.'] = 'Ta strona może służyć do definiowania listy zablokowanych wzorców domen serwera z sieci stowarzyszonej, które nie mogą komunikować się z węzłem. Dla każdego wzorca domeny należy również podać powód, dla którego go blokujesz.'; -$a->strings['The list of blocked server domain patterns will be made publically available on the /friendica page so that your users and people investigating communication problems can find the reason easily.'] = 'Lista zablokowanych wzorców domen serwera zostanie udostępniona publicznie na stronie /friendica, aby użytkownicy i osoby badające problemy z komunikacją mogły łatwo znaleźć przyczynę.'; -$a->strings['Add new entry to the blocklist'] = 'Dodaj nowy wpis do listy zablokowanych'; -$a->strings['Save changes to the blocklist'] = 'Zapisz zmiany w liście zablokowanych'; -$a->strings['Current Entries in the Blocklist'] = 'Aktualne wpisy na liście zablokowanych'; -$a->strings['Delete entry from the blocklist'] = 'Usuń wpis z listy zablokowanych'; -$a->strings['Delete entry from the blocklist?'] = 'Usunąć wpis z listy zablokowanych?'; $a->strings['Update has been marked successful'] = 'Aktualizacja została oznaczona jako udana'; $a->strings['Database structure update %s was successfully applied.'] = 'Pomyślnie zastosowano aktualizację %s struktury bazy danych.'; $a->strings['Executing of database structure update %s failed with error: %s'] = 'Wykonanie aktualizacji %s struktury bazy danych nie powiodło się z powodu błędu:%s'; @@ -1289,35 +904,8 @@ $a->strings['Lock feature %s'] = 'Funkcja blokady %s'; $a->strings['Manage Additional Features'] = 'Zarządzanie dodatkowymi funkcjami'; $a->strings['Other'] = 'Inne'; $a->strings['unknown'] = 'nieznany'; -$a->strings['%s total systems'] = '%s łącznie systemów'; -$a->strings['%s active users last month'] = '%s aktywnych użytkowników w ostatnim miesiącu'; -$a->strings['%s active users last six months'] = '%s aktywnych użytkowników za ostatnie 6 miesięcy'; -$a->strings['%s registered users'] = '%s zarejestrowanych użytkowników'; -$a->strings['%s locally created posts and comments'] = '%s lokalnie utworzonych wpisów i komentarzy'; -$a->strings['%s posts per user'] = '%s wpisy na użytkownika'; -$a->strings['%s users per system'] = '%s użytkowników na system'; $a->strings['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.'] = 'Ta strona zawiera kilka numerów do znanej części federacyjnej sieci społecznościowej, do której należy Twój węzeł Friendica. Liczby te nie są kompletne, ale odzwierciedlają tylko część sieci, o której wie twój węzeł.'; $a->strings['Federation Statistics'] = 'Statystyki Federacji'; -$a->strings['Currently this node is aware of %s nodes (%s active users last month, %s active users last six months, %s registered users in total) from the following platforms:'] = 'Obecnie ten węzeł jest świadomy %s węzłów (%s aktywnych użytkowników w zeszłym miesiącu, %s aktywnych użytkowników w ciągu ostatnich sześciu miesięcy, %s łącznie zarejestrowanych użytkowników) z następujących platform:'; -$a->strings['Item marked for deletion.'] = 'Przedmiot oznaczony do usunięcia.'; -$a->strings['Delete Item'] = 'Usuń przedmiot'; -$a->strings['Delete this Item'] = 'Usuń ten przedmiot'; -$a->strings['On this page you can delete an item from your node. If the item is a top level posting, the entire thread will be deleted.'] = 'Na tej stronie możesz usunąć przedmiot ze swojego węzła. Jeśli element jest publikowaniem na najwyższym poziomie, cały wątek zostanie usunięty.'; -$a->strings['You need to know the GUID of the item. You can find it e.g. by looking at the display URL. The last part of http://example.com/display/123456 is the GUID, here 123456.'] = 'Musisz znać identyfikator GUID tego przedmiotu. Możesz go znaleźć np. patrząc na wyświetlany adres URL. Ostatnia część http://example.com/display/123456 to GUID, tutaj 123456.'; -$a->strings['GUID'] = 'GUID'; -$a->strings['The GUID of the item you want to delete.'] = 'Identyfikator elementu GUID, który chcesz usunąć.'; -$a->strings['Item Source'] = 'Źródło elementu'; -$a->strings['Item Guid'] = 'Element Guid'; -$a->strings['Item Id'] = 'Identyfikator elementu'; -$a->strings['Item URI'] = 'Identyfikator URI elementu'; -$a->strings['Terms'] = 'Zasady'; -$a->strings['Tag'] = 'Znacznik'; -$a->strings['Type'] = 'Typu'; -$a->strings['Term'] = 'Zasada'; -$a->strings['URL'] = 'URL'; -$a->strings['Mention'] = 'Wzmianka'; -$a->strings['Implicit Mention'] = 'Wzmianka niejawna'; -$a->strings['Source'] = 'Źródło'; $a->strings['The logfile \'%s\' is not writable. No logging possible'] = 'Plik dziennika \'%s\' nie jest zapisywalny. Brak możliwości logowania'; $a->strings['PHP log currently enabled.'] = 'Dziennik PHP jest obecnie włączony.'; $a->strings['PHP log currently disabled.'] = 'Dziennik PHP jest obecnie wyłączony.'; @@ -1340,7 +928,9 @@ $a->strings['Context'] = 'Kontekst'; $a->strings['ALL'] = 'WSZYSTKO'; $a->strings['View details'] = 'Zobacz szczegóły'; $a->strings['Click to view details'] = 'Kliknij, aby zobaczyć szczegóły'; +$a->strings['Event details'] = 'Szczegóły wydarzenia'; $a->strings['Data'] = 'Dane'; +$a->strings['Source'] = 'Źródło'; $a->strings['File'] = 'Plik'; $a->strings['Line'] = 'Linia'; $a->strings['Function'] = 'Funkcja'; @@ -1354,11 +944,12 @@ $a->strings['This page lists the currently queued worker jobs. These jobs are ha $a->strings['ID'] = 'ID'; $a->strings['Command'] = 'Polecenie'; $a->strings['Job Parameters'] = 'Parametry zadania'; +$a->strings['Created'] = 'Utwórz'; $a->strings['Priority'] = 'Priorytet'; $a->strings['No special theme for mobile devices'] = 'Brak specialnego motywu dla urządzeń mobilnych'; $a->strings['%s - (Experimental)'] = '%s- (Eksperymentalne)'; -$a->strings['No community page for local users'] = 'Brak strony społeczności dla użytkowników lokalnych'; $a->strings['No community page'] = 'Brak strony społeczności'; +$a->strings['No community page for visitors'] = 'Brak strony społeczności dla odwiedzających'; $a->strings['Public postings from users of this site'] = 'Publikacje publiczne od użytkowników tej strony'; $a->strings['Public postings from the federated network'] = 'Publikacje wpisy ze sfederowanej sieci'; $a->strings['Public postings from local users and the federated network'] = 'Publikacje publiczne od użytkowników lokalnych i sieci federacyjnej'; @@ -1381,6 +972,7 @@ $a->strings['Republish users to directory'] = 'Ponownie opublikuj użytkowników $a->strings['Registration'] = 'Rejestracja'; $a->strings['File upload'] = 'Przesyłanie plików'; $a->strings['Policies'] = 'Zasady'; +$a->strings['Advanced'] = 'Zaawansowany'; $a->strings['Auto Discovered Contact Directory'] = 'Katalog kontaktów automatycznie odkrytych'; $a->strings['Performance'] = 'Ustawienia'; $a->strings['Worker'] = 'Worker'; @@ -1418,7 +1010,6 @@ $a->strings['Displays the menu entry for the Help pages from the navigation menu $a->strings['Single user instance'] = 'Tryb pojedynczego użytkownika'; $a->strings['Make this instance multi-user or single-user for the named user'] = 'Ustawia tryb dla wielu użytkowników lub pojedynczego użytkownika dla nazwanego użytkownika'; $a->strings['Maximum image size'] = 'Maksymalny rozmiar zdjęcia'; -$a->strings['Maximum size in bytes of uploaded images. Default is 0, which means no limits.'] = 'Maksymalny rozmiar w bitach dla wczytywanego obrazu . Domyślnie jest to 0 , co oznacza bez limitu .'; $a->strings['Maximum image length'] = 'Maksymalna długość obrazu'; $a->strings['Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits.'] = 'Maksymalna długość w pikselach dłuższego boku przesyłanego obrazu. Wartością domyślną jest -1, co oznacza brak ograniczeń.'; $a->strings['JPEG image quality'] = 'Jakość obrazu JPEG'; @@ -1469,6 +1060,7 @@ $a->strings['Enable OpenID'] = 'Włącz OpenID'; $a->strings['Enable OpenID support for registration and logins.'] = 'Włącz obsługę OpenID dla rejestracji i logowania.'; $a->strings['Enable Fullname check'] = 'Włącz sprawdzanie pełnej nazwy'; $a->strings['Enable check to only allow users to register with a space between the first name and the last name in their full name.'] = 'Włącz sprawdzenie, aby zezwolić użytkownikom tylko na rejestrację ze spacją między imieniem a nazwiskiem w ich pełnym imieniu.'; +$a->strings['If enabled and the system is set to an open registration, an email for each new registration is sent to the administrators.'] = '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.'; $a->strings['Community pages for visitors'] = 'Strony społecznościowe dla odwiedzających'; $a->strings['Which community pages should be available for visitors. Local users always see both pages.'] = 'Które strony społeczności powinny być dostępne dla odwiedzających. Lokalni użytkownicy zawsze widzą obie strony.'; $a->strings['Posts per user on community page'] = 'Lista wpisów użytkownika na stronie społeczności'; @@ -1578,16 +1170,8 @@ $a->strings['The debug logfile \'%s\' is not usable. No logging possible (error: $a->strings['Friendica\'s system.basepath was updated from \'%s\' to \'%s\'. Please remove the system.basepath from your db to avoid differences.'] = 'System.basepath Friendiki został zaktualizowany z \'%s\' do \'%s\'. Usuń system.basepath z bazy danych, aby uniknąć różnic.'; $a->strings['Friendica\'s current system.basepath \'%s\' is wrong and the config file \'%s\' isn\'t used.'] = 'Obecny system.basepath Friendiki \'%s\' jest nieprawidłowy i plik konfiguracyjny \'%s\' nie jest używany.'; $a->strings['Friendica\'s current system.basepath \'%s\' is not equal to the config file \'%s\'. Please fix your configuration.'] = 'Obecny system.basepath Friendiki \'%s\' nie jest równy plikowi konfiguracyjnemu \'%s\'. Napraw konfigurację.'; -$a->strings['Normal Account'] = 'Konto normalne'; -$a->strings['Automatic Follower Account'] = 'Automatyczne konto obserwatora'; -$a->strings['Public Forum Account'] = 'Publiczne konto na forum'; -$a->strings['Automatic Friend Account'] = 'Automatyczny przyjaciel konta'; -$a->strings['Blog Account'] = 'Konto bloga'; -$a->strings['Private Forum Account'] = 'Prywatne konto na forum'; $a->strings['Message queues'] = 'Wiadomości'; $a->strings['Server Settings'] = 'Ustawienia serwera'; -$a->strings['Registered users'] = 'Zarejestrowani użytkownicy'; -$a->strings['Pending registrations'] = 'Oczekujące rejestracje'; $a->strings['Version'] = 'Wersja'; $a->strings['Active addons'] = 'Aktywne dodatki'; $a->strings['Theme %s disabled.'] = 'Motyw %s wyłączony.'; @@ -1608,68 +1192,8 @@ $a->strings['Show some informations regarding the needed information to operate $a->strings['Privacy Statement Preview'] = 'Podgląd oświadczenia o prywatności'; $a->strings['The Terms of Service'] = 'Warunki świadczenia usług'; $a->strings['Enter the Terms of Service for your node here. You can use BBCode. Headers of sections should be [h2] and below.'] = '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.'; -$a->strings['%s user blocked'] = [ - 0 => '%s użytkownik zablokowany', - 1 => '%s użytkowników zablokowanych', - 2 => '%s użytkowników zablokowanych', - 3 => '%s użytkownicy zablokowani', -]; -$a->strings['You can\'t remove yourself'] = 'Nie możesz usunąć siebie'; -$a->strings['%s user deleted'] = [ - 0 => 'usunięto %s użytkownika', - 1 => 'usunięto %s użytkowników', - 2 => 'usunięto %s użytkowników', - 3 => '%s usuniętych użytkowników', -]; -$a->strings['User "%s" deleted'] = 'Użytkownik "%s" usunięty'; -$a->strings['User "%s" blocked'] = 'Użytkownik "%s" zablokowany'; -$a->strings['Register date'] = 'Data rejestracji'; -$a->strings['Last login'] = 'Ostatnie logowanie'; -$a->strings['Last public item'] = 'Ostatni element publiczny'; -$a->strings['Active Accounts'] = 'Aktywne konta'; -$a->strings['User blocked'] = 'Użytkownik zablokowany'; -$a->strings['Site admin'] = 'Administracja stroną'; -$a->strings['Account expired'] = 'Konto wygasło'; -$a->strings['Create a new user'] = 'Utwórz nowego użytkownika'; -$a->strings['Selected users will be deleted!\n\nEverything these users had posted on this site will be permanently deleted!\n\nAre you sure?'] = 'Zaznaczeni użytkownicy zostaną usunięci!\n\n Wszystko co zamieścili na tej stronie będzie trwale skasowane!\n\n Jesteś pewien?'; -$a->strings['The user {0} will be deleted!\n\nEverything this user has posted on this site will be permanently deleted!\n\nAre you sure?'] = 'Użytkownik {0} zostanie usunięty!\n\n Wszystko co zamieścił na tej stronie będzie trwale skasowane!\n\n Jesteś pewien?'; -$a->strings['%s user unblocked'] = [ - 0 => '%s użytkownik odblokowany', - 1 => '%s użytkowników odblokowanych', - 2 => '%s użytkowników odblokowanych', - 3 => '%s użytkowników odblokowanych', -]; -$a->strings['User "%s" unblocked'] = 'Użytkownik "%s" odblokowany'; -$a->strings['Blocked Users'] = 'Zablokowani użytkownicy'; -$a->strings['New User'] = 'Nowy użytkownik'; -$a->strings['Add User'] = 'Dodaj użytkownika'; -$a->strings['Name of the new user.'] = 'Nazwa nowego użytkownika.'; -$a->strings['Nickname'] = 'Pseudonim'; -$a->strings['Nickname of the new user.'] = 'Pseudonim nowego użytkownika.'; -$a->strings['Email address of the new user.'] = 'Adres email nowego użytkownika.'; -$a->strings['Users awaiting permanent deletion'] = 'Użytkownicy oczekujący na trwałe usunięcie'; -$a->strings['Permanent deletion'] = 'Trwałe usunięcie'; -$a->strings['Users'] = 'Użytkownicy'; -$a->strings['User waiting for permanent deletion'] = 'Użytkownik czekający na trwałe usunięcie'; -$a->strings['%s user approved'] = [ - 0 => '%s użytkownik zatwierdzony', - 1 => '%s użytkowników zatwierdzonych', - 2 => '%s użytkowników zatwierdzonych', - 3 => '%s użytkowników zatwierdzonych', -]; -$a->strings['%s registration revoked'] = [ - 0 => '%s rejestrację cofnięto', - 1 => '%s rejestracje cofnięto', - 2 => '%s rejestracji cofnięto', - 3 => '%s rejestracji cofnięto ', -]; -$a->strings['Account approved.'] = 'Konto zatwierdzone.'; -$a->strings['Registration revoked'] = 'Rejestracja odwołana'; -$a->strings['User registrations awaiting review'] = 'Rejestracje użytkowników oczekujące na sprawdzenie'; -$a->strings['Request date'] = 'Data prośby'; -$a->strings['No registrations.'] = 'Brak rejestracji.'; -$a->strings['Note from the user'] = 'Uwaga od użytkownika'; -$a->strings['Deny'] = 'Odmów'; +$a->strings['The rules'] = 'Zasady'; +$a->strings['Enter your system rules here. Each line represents one rule.'] = 'Wprowadź tutaj swoje reguły systemowe. Każda linia reprezentuje jedną regułę.'; $a->strings['API endpoint %s %s is not implemented'] = 'Punkt końcowy API %s %s nie jest zaimplementowany'; $a->strings['The API endpoint is currently not implemented but might be in the future.'] = 'Punkt końcowy interfejsu API nie jest obecnie zaimplementowany, ale może zostać w przyszłości.'; $a->strings['Missing parameters'] = 'Brakuje parametrów'; @@ -1693,9 +1217,6 @@ $a->strings['Database'] = 'Baza danych'; $a->strings['DB updates'] = 'Aktualizacje bazy danych'; $a->strings['Inspect Deferred Workers'] = 'Sprawdź odroczonych workerów'; $a->strings['Inspect worker Queue'] = 'Sprawdź kolejkę workerów'; -$a->strings['Tools'] = 'Narzędzia'; -$a->strings['Contact Blocklist'] = 'Lista zablokowanych kontaktów'; -$a->strings['Server Blocklist'] = 'Lista zablokowanych serwerów'; $a->strings['Diagnostics'] = 'Diagnostyka'; $a->strings['PHP Info'] = 'Informacje o PHP'; $a->strings['probe address'] = 'adres probe'; @@ -1717,23 +1238,50 @@ $a->strings['Weekly posting limit of %d post reached. The post was rejected.'] = 2 => 'Tygodniowy limit wysyłania %d postów. Post został odrzucony.', 3 => 'Został osiągnięty tygodniowy limit %d wysyłania wpisów. Wpis został odrzucony.', ]; -$a->strings['Monthly posting limit of %d post reached. The post was rejected.'] = 'Został osiągnięty miesięczny limit %d wysyłania wpisów. Wpis został odrzucony.'; +$a->strings['Users'] = 'Użytkownicy'; +$a->strings['Tools'] = 'Narzędzia'; +$a->strings['Contact Blocklist'] = 'Lista zablokowanych kontaktów'; +$a->strings['Server Blocklist'] = 'Lista zablokowanych serwerów'; +$a->strings['Delete Item'] = 'Usuń przedmiot'; +$a->strings['Item Source'] = 'Źródło elementu'; $a->strings['Profile Details'] = 'Szczegóły profilu'; +$a->strings['Status Messages and Posts'] = 'Stan wiadomości i wpisów'; $a->strings['Only You Can See This'] = 'Tylko ty możesz to zobaczyć'; $a->strings['Scheduled Posts'] = 'Zaplanowane wpisy'; $a->strings['Posts that are scheduled for publishing'] = 'Wpisy zaplanowane do publikacji'; $a->strings['Tips for New Members'] = 'Wskazówki dla nowych użytkowników'; $a->strings['People Search - %s'] = 'Szukaj osób - %s'; $a->strings['Forum Search - %s'] = 'Przeszukiwanie forum - %s'; +$a->strings['No matches'] = 'Brak wyników'; $a->strings['Account'] = 'Konto'; $a->strings['Two-factor authentication'] = 'Uwierzytelnianie dwuskładnikowe'; $a->strings['Display'] = 'Wygląd'; +$a->strings['Social Networks'] = 'Portale społecznościowe'; $a->strings['Manage Accounts'] = 'Zarządzanie kontami'; $a->strings['Connected apps'] = 'Powiązane aplikacje'; $a->strings['Export personal data'] = 'Eksportuj dane osobiste'; $a->strings['Remove account'] = 'Usuń konto'; $a->strings['This page is missing a url parameter.'] = 'Na tej stronie brakuje parametru url.'; $a->strings['The post was created'] = 'Wpis został utworzony'; +$a->strings['Invalid Request'] = 'Nieprawidłowe żądanie'; +$a->strings['Event id is missing.'] = 'Brak identyfikatora wydarzenia.'; +$a->strings['Failed to remove event'] = 'Nie udało się usunąć wydarzenia'; +$a->strings['Event can not end before it has started.'] = 'Wydarzenie nie może się zakończyć przed jego rozpoczęciem.'; +$a->strings['Event title and start time are required.'] = 'Wymagany tytuł wydarzenia i czas rozpoczęcia.'; +$a->strings['Starting date and Title are required.'] = 'Data rozpoczęcia i tytuł są wymagane.'; +$a->strings['Event Starts:'] = 'Rozpoczęcie wydarzenia:'; +$a->strings['Required'] = 'Wymagany'; +$a->strings['Finish date/time is not known or not relevant'] = 'Data/czas zakończenia nie jest znana lub jest nieistotna'; +$a->strings['Event Finishes:'] = 'Zakończenie wydarzenia:'; +$a->strings['Share this event'] = 'Udostępnij te wydarzenie'; +$a->strings['Basic'] = 'Podstawowy'; +$a->strings['This calendar format is not supported'] = 'Ten format kalendarza nie jest obsługiwany'; +$a->strings['No exportable data found'] = 'Nie znaleziono danych do eksportu'; +$a->strings['calendar'] = 'kalendarz'; +$a->strings['Events'] = 'Wydarzenia'; +$a->strings['View'] = 'Widok'; +$a->strings['Create New Event'] = 'Stwórz nowe wydarzenie'; +$a->strings['list'] = 'lista'; $a->strings['%d contact edited.'] = [ 0 => 'Zedytowano %d kontakt.', 1 => 'Zedytowano %d kontakty.', @@ -1741,7 +1289,9 @@ $a->strings['%d contact edited.'] = [ 3 => '%dedytuj kontakty.', ]; $a->strings['Show all contacts'] = 'Pokaż wszystkie kontakty'; +$a->strings['Pending'] = 'Oczekujące'; $a->strings['Only show pending contacts'] = 'Pokaż tylko oczekujące kontakty'; +$a->strings['Blocked'] = 'Zablokowane'; $a->strings['Only show blocked contacts'] = 'Pokaż tylko zablokowane kontakty'; $a->strings['Ignored'] = 'Ignorowane'; $a->strings['Only show ignored contacts'] = 'Pokaż tylko ignorowane kontakty'; @@ -1753,6 +1303,7 @@ $a->strings['Organize your contact groups'] = 'Uporządkuj swoje grupy kontaktó $a->strings['Search your contacts'] = 'Wyszukaj w kontaktach'; $a->strings['Results for: %s'] = 'Wyniki dla: %s'; $a->strings['Update'] = 'Zaktualizuj'; +$a->strings['Unblock'] = 'Odblokuj'; $a->strings['Unignore'] = 'Odblokuj'; $a->strings['Batch Actions'] = 'Akcje wsadowe'; $a->strings['Conversations started by this contact'] = 'Rozmowy rozpoczęły się od tego kontaktu'; @@ -1766,8 +1317,10 @@ $a->strings['you are a fan of'] = 'jesteś fanem'; $a->strings['Pending outgoing contact request'] = 'Oczekujące żądanie kontaktu wychodzącego'; $a->strings['Pending incoming contact request'] = 'Oczekujące żądanie kontaktu przychodzącego'; $a->strings['Visit %s\'s profile [%s]'] = 'Obejrzyj %s\'s profil [%s]'; +$a->strings['Contact not found.'] = 'Nie znaleziono kontaktu.'; $a->strings['Contact update failed.'] = 'Nie udało się zaktualizować kontaktu.'; $a->strings['Return to contact editor'] = 'Wróć do edytora kontaktów'; +$a->strings['Name'] = 'Nazwa'; $a->strings['Account Nickname'] = 'Nazwa konta'; $a->strings['Account URL'] = 'Adres URL konta'; $a->strings['Poll/Feed URL'] = 'Adres Ankiety/RSS'; @@ -1807,12 +1360,22 @@ $a->strings['Contact (%s)'] = [ 2 => 'Kontaktów (%s)', 3 => 'Kontaktów (%s)', ]; -$a->strings['Error while sending poke, please retry.'] = 'Błąd wysyłania zaczepki, spróbuj ponownie.'; -$a->strings['You must be logged in to use this module.'] = 'Musisz być zalogowany, aby korzystać z tego modułu.'; -$a->strings['Poke/Prod'] = 'Zaczepić'; -$a->strings['poke, prod or do other things to somebody'] = 'szturchać, zaczepić lub robić inne rzeczy'; -$a->strings['Choose what you wish to do to recipient'] = 'Wybierz, co chcesz zrobić'; -$a->strings['Make this post private'] = 'Ustaw ten wpis jako prywatny'; +$a->strings['Access denied.'] = 'Brak dostępu.'; +$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'; +$a->strings['Tags:'] = 'Znaczniki:'; +$a->strings['%s knows you'] = '%s zna cię'; +$a->strings['Add a personal note:'] = 'Dodaj osobistą notkę:'; +$a->strings['The contact could not be added.'] = 'Nie można dodać kontaktu.'; +$a->strings['Invalid request.'] = 'Nieprawidłowe żądanie.'; +$a->strings['No keywords to match. Please add keywords to your profile.'] = 'Brak pasujących słów kluczowych. Dodaj słowa kluczowe do swojego profilu.'; +$a->strings['Profile Match'] = 'Dopasowanie profilu'; $a->strings['Failed to update contact record.'] = 'Aktualizacja rekordu kontaktu nie powiodła się.'; $a->strings['Contact has been unblocked'] = 'Kontakt został odblokowany'; $a->strings['Contact has been blocked'] = 'Kontakt został zablokowany'; @@ -1834,7 +1397,6 @@ $a->strings['Fetch information'] = 'Pobierz informacje'; $a->strings['Fetch keywords'] = 'Pobierz słowa kluczowe'; $a->strings['Fetch information and keywords'] = 'Pobierz informacje i słowa kluczowe'; $a->strings['No mirroring'] = 'Bez dublowania'; -$a->strings['Mirror as forwarded posting'] = 'Przesłany lustrzany post'; $a->strings['Mirror as my own posting'] = 'Lustro mojego własnego komentarza'; $a->strings['Native reshare'] = 'Udostępnianie natywne'; $a->strings['Contact Information / Notes'] = 'Informacje kontaktowe/Notatki'; @@ -1866,12 +1428,20 @@ $a->strings['Toggle Blocked status'] = 'Przełącz stan na Zablokowany'; $a->strings['Toggle Ignored status'] = 'Przełącz stan na Ignorowany'; $a->strings['Revoke Follow'] = 'Anuluj obserwowanie'; $a->strings['Revoke the follow from this contact'] = 'Anuluj obserwację przez ten kontakt'; +$a->strings['Bad Request.'] = 'Błędne zapytanie.'; $a->strings['Unknown contact.'] = 'Nieznany kontakt.'; $a->strings['Contact is deleted.'] = 'Kontakt został usunięty.'; $a->strings['Contact is being deleted.'] = 'Kontakt jest usuwany.'; $a->strings['Follow was successfully revoked.'] = 'Obserwacja została pomyślnie anulowana.'; $a->strings['Do you really want to revoke this contact\'s follow? This cannot be undone and they will have to manually follow you back again.'] = '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.'; $a->strings['Yes'] = 'Tak'; +$a->strings['No suggestions available. If this is a new site, please try again in 24 hours.'] = 'Brak dostępnych sugestii. Jeśli jest to nowa witryna, spróbuj ponownie za 24 godziny.'; +$a->strings['You aren\'t following this contact.'] = 'Nie obserwujesz tego kontaktu.'; +$a->strings['Unfollowing is currently not supported by your network.'] = 'Brak obserwowania nie jest obecnie obsługiwany przez twoją sieć.'; +$a->strings['Disconnect/Unfollow'] = 'Rozłącz/Nie obserwuj'; +$a->strings['Contact was successfully unfollowed'] = 'Kontakt pomyślnie przestał być obserwowany'; +$a->strings['Unable to unfollow this contact, please contact your administrator'] = 'Nie można przestać obserwować tego kontaktu, skontaktuj się z administratorem'; +$a->strings['This community stream shows all public posts received by this node. They may not reflect the opinions of this node’s users.'] = '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.'; $a->strings['Local Community'] = 'Lokalna społeczność'; $a->strings['Posts from local users on this server'] = 'Wpisy od lokalnych użytkowników na tym serwerze'; $a->strings['Global Community'] = 'Globalna społeczność'; @@ -1880,7 +1450,6 @@ $a->strings['Own Contacts'] = 'Własne kontakty'; $a->strings['Include'] = 'Zawiera'; $a->strings['Hide'] = 'Ukryj'; $a->strings['No results.'] = 'Brak wyników.'; -$a->strings['This community stream shows all public posts received by this node. They may not reflect the opinions of this node’s users.'] = '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.'; $a->strings['Community option not available.'] = 'Opcja wspólnotowa jest niedostępna.'; $a->strings['Not available.'] = 'Niedostępne.'; $a->strings['No such group'] = 'Nie ma takiej grupy'; @@ -1901,6 +1470,12 @@ $a->strings['Formatted'] = 'Sformatowany'; $a->strings['Activity'] = 'Aktywność'; $a->strings['Object data'] = 'Dane obiektu'; $a->strings['Result Item'] = 'Pozycja wynikowa'; +$a->strings['Error'] = [ + 0 => 'Błąd', + 1 => 'Błędów', + 2 => 'Błędy', + 3 => 'Błędów', +]; $a->strings['Source activity'] = 'Aktywność źródła'; $a->strings['Source input'] = 'Źródło wejściowe'; $a->strings['BBCode::toPlaintext'] = 'BBCode::na prosty tekst'; @@ -1960,8 +1535,8 @@ $a->strings['No entries (some entries may be hidden).'] = 'Brak odwiedzin (niekt $a->strings['Find on this site'] = 'Znajdź na tej stronie'; $a->strings['Results for:'] = 'Wyniki dla:'; $a->strings['Site Directory'] = 'Katalog Witryny'; -$a->strings['Item was not removed'] = 'Element nie został usunięty'; $a->strings['Item was not deleted'] = 'Element nie został skasowany'; +$a->strings['Item was not removed'] = 'Element nie został usunięty'; $a->strings['- select -'] = '- wybierz -'; $a->strings['Suggested contact not found.'] = 'Nie znaleziono sugerowanego kontaktu.'; $a->strings['Friend suggestion sent.'] = 'Wysłana propozycja dodania do znajomych.'; @@ -1971,6 +1546,7 @@ $a->strings['Installed addons/apps:'] = 'Zainstalowane dodatki/aplikacje:'; $a->strings['No installed addons/apps'] = 'Brak zainstalowanych dodatków/aplikacji'; $a->strings['Read about the Terms of Service of this node.'] = 'Przeczytaj o Warunkach świadczenia usług tego węzła.'; $a->strings['On this server the following remote servers are blocked.'] = 'Na tym serwerze następujące serwery zdalne są blokowane.'; +$a->strings['Reason for the block'] = 'Powód blokowania'; $a->strings['This is Friendica, version %s that is running at the web location %s. The database version is %s, the post update version is %s.'] = 'To jest wersja Friendica, %s która działa w lokalizacji internetowej %s. Wersja bazy danych to %s wersja po aktualizacji %s.'; $a->strings['Please visit Friendi.ca to learn more about the Friendica project.'] = 'Odwiedź stronę Friendi.ca aby dowiedzieć się więcej o projekcie Friendica.'; $a->strings['Bug reports and issues: please visit'] = 'Raporty o błędach i problemy: odwiedź stronę'; @@ -2005,6 +1581,7 @@ $a->strings['System check'] = 'Sprawdzanie systemu'; $a->strings['Requirement not satisfied'] = 'Wymaganie niespełnione'; $a->strings['Optional requirement not satisfied'] = 'Opcjonalne wymagania niespełnione'; $a->strings['OK'] = 'OK'; +$a->strings['Next'] = 'Następny'; $a->strings['Check again'] = 'Sprawdź ponownie'; $a->strings['Base settings'] = 'Ustawienia bazy'; $a->strings['Host name'] = 'Nazwa hosta'; @@ -2065,10 +1642,203 @@ $a->strings['Visibility'] = 'Widoczność'; $a->strings['Clear the location'] = 'Wyczyść lokalizację'; $a->strings['Location services are unavailable on your device'] = 'Usługi lokalizacyjne są niedostępne na twoim urządzeniu'; $a->strings['Location services are disabled. Please check the website\'s permissions on your device'] = 'Usługi lokalizacyjne są wyłączone. Sprawdź uprawnienia strony internetowej na swoim urządzeniu'; +$a->strings['The requested item doesn\'t exist or has been deleted.'] = 'Żądany element nie istnieje lub został usunięty.'; +$a->strings['The feed for this item is unavailable.'] = 'Kanał dla tego elementu jest niedostępny.'; $a->strings['Unable to follow this item.'] = 'Nie można obserwować tego elementu.'; $a->strings['System down for maintenance'] = 'System wyłączony w celu konserwacji'; $a->strings['This Friendica node is currently in maintenance mode, either automatically because it is self-updating or manually by the node administrator. This condition should be temporary, please come back in a few minutes.'] = 'Ten węzeł Friendica jest obecnie w trybie konserwacji, przełączanej automatycznie, ponieważ jest aktualizowany samodzielnie lub ręcznie przez administratora węzła. Ten stan powinien być tymczasowy, proszę wrócić za kilka minut.'; $a->strings['A Decentralized Social Network'] = 'Zdecentralizowana sieć społecznościowa'; +$a->strings['Files'] = 'Pliki'; +$a->strings['Upload'] = 'Wyślij'; +$a->strings['Sorry, maybe your upload is bigger than the PHP configuration allows'] = 'Przepraszam, Twój przesyłany plik jest większy niż pozwala konfiguracja PHP'; +$a->strings['Or - did you try to upload an empty file?'] = 'Lub - czy próbowałeś przesłać pusty plik?'; +$a->strings['File exceeds size limit of %s'] = 'Plik przekracza limit rozmiaru wynoszący %s'; +$a->strings['File upload failed.'] = 'Przesyłanie pliku nie powiodło się.'; +$a->strings['Unable to process image.'] = 'Przetwarzanie obrazu nie powiodło się.'; +$a->strings['Image exceeds size limit of %s'] = 'Obraz przekracza limit rozmiaru wynoszący %s'; +$a->strings['Image upload failed.'] = 'Przesyłanie obrazu nie powiodło się.'; +$a->strings['List of all users'] = 'Lista wszystkich użytkowników'; +$a->strings['Active'] = 'Aktywne'; +$a->strings['List of active accounts'] = 'Lista aktywnych kont'; +$a->strings['List of pending registrations'] = 'Lista oczekujących rejestracji'; +$a->strings['List of blocked users'] = 'Lista zablokowanych użytkowników'; +$a->strings['Deleted'] = 'Usunięte'; +$a->strings['List of pending user deletions'] = 'Lista oczekujących na usunięcie użytkowników'; +$a->strings['Normal Account Page'] = 'Normalna strona konta'; +$a->strings['Soapbox Page'] = 'Strona Soapbox'; +$a->strings['Public Forum'] = 'Forum publiczne'; +$a->strings['Automatic Friend Page'] = 'Automatyczna strona znajomego'; +$a->strings['Private Forum'] = 'Prywatne forum'; +$a->strings['Personal Page'] = 'Strona osobista'; +$a->strings['Organisation Page'] = 'Strona Organizacji'; +$a->strings['News Page'] = 'Strona Wiadomości'; +$a->strings['Community Forum'] = 'Forum społecznościowe'; +$a->strings['Relay'] = 'Przekaźnik'; +$a->strings['You can\'t block a local contact, please block the user instead'] = 'Nie możesz zablokować lokalnego kontaktu, zamiast tego zablokuj użytkownika'; +$a->strings['%s contact unblocked'] = [ + 0 => '%s kontakt odblokowany', + 1 => '%s kontakty odblokowane', + 2 => '%s kontaktów odblokowanych', + 3 => '%s kontaktów odblokowanych', +]; +$a->strings['Remote Contact Blocklist'] = 'Lista zablokowanych kontaktów zdalnych'; +$a->strings['This page allows you to prevent any message from a remote contact to reach your node.'] = 'Ta strona pozwala zapobiec wysyłaniu do węzła wiadomości od kontaktu zdalnego.'; +$a->strings['Block Remote Contact'] = 'Zablokuj kontakt zdalny'; +$a->strings['select all'] = 'zaznacz wszystko'; +$a->strings['select none'] = 'wybierz brak'; +$a->strings['No remote contact is blocked from this node.'] = 'Z tego węzła nie jest blokowany kontakt zdalny.'; +$a->strings['Blocked Remote Contacts'] = 'Zablokowane kontakty zdalne'; +$a->strings['Block New Remote Contact'] = 'Zablokuj nowy kontakt zdalny'; +$a->strings['Photo'] = 'Zdjęcie'; +$a->strings['Reason'] = 'Powód'; +$a->strings['%s total blocked contact'] = [ + 0 => 'łącznie %s zablokowany kontakt', + 1 => 'łącznie %s zablokowane kontakty', + 2 => 'łącznie %s zablokowanych kontaktów', + 3 => '%s całkowicie zablokowane kontakty', +]; +$a->strings['URL of the remote contact to block.'] = 'Adres URL kontaktu zdalnego do zablokowania.'; +$a->strings['Also purge contact'] = 'Wyczyść również kontakt'; +$a->strings['Removes all content related to this contact from the node. Keeps the contact record. This action cannot be undone.'] = 'Usuwa z węzła całą zawartość związaną z tym kontaktem. Zachowuje rejestr kontaktów. Tej czynności nie można cofnąć.'; +$a->strings['Block Reason'] = 'Powód blokady'; +$a->strings['Server domain pattern added to the blocklist.'] = 'Do listy zablokowanych dodano wzorzec domeny serwera.'; +$a->strings['%s server scheduled to be purged.'] = [ + 0 => '%s serwer zaplanowany do usunięcia.', + 1 => '%s serwery zaplanowane do usunięcia.', + 2 => '%s serwerów zaplanowanych do usunięcia.', + 3 => '%s serwerów zaplanowanych do usunięcia.', +]; +$a->strings['← Return to the list'] = '← Wróć do listy'; +$a->strings['Block A New Server Domain Pattern'] = 'Zablokuj nowy wzorzec domeny serwera'; +$a->strings['

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

+
    +
  • *: Any number of characters
  • +
  • ?: Any single character
  • +
'] = '

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

+
    +
  • *: Dowolna liczba znaków
  • +
  • ?: Dowolny pojedynczy znak
  • +
'; +$a->strings['Check pattern'] = 'Sprawdź wzór'; +$a->strings['Matching known servers'] = 'Dopasowanie znanych serwerów'; +$a->strings['Server Name'] = 'Nazwa serwera'; +$a->strings['Server Domain'] = 'Domena serwera'; +$a->strings['Known Contacts'] = 'Znane kontakty'; +$a->strings['%d known server'] = [ + 0 => '%d znany serwer', + 1 => '%d znane serwery', + 2 => '%d znanych serwerów', + 3 => '%d znanych serwerów', +]; +$a->strings['Add pattern to the blocklist'] = 'Dodaj wzór do listy blokad'; +$a->strings['Server Domain Pattern'] = 'Wzorzec domeny serwera'; +$a->strings['The domain pattern of the new server to add to the blocklist. Do not include the protocol.'] = 'Wzorzec domeny nowego serwera do dodania do listy blokad. Nie dołączaj protokołu.'; +$a->strings['Purge server'] = 'Wyczyść serwer'; +$a->strings['Also purges all the locally stored content authored by the known contacts registered on that server. Keeps the contacts and the server records. This action cannot be undone.'] = [ + 0 => 'Usuwa również całą lokalnie przechowywaną zawartość stworzoną przez znane kontakty zarejestrowane na tych serwerach. Zachowuje ewidencję kontaktów i serwerów. Tej czynności nie można cofnąć.', + 1 => 'Usuwa również całą lokalnie przechowywaną zawartość stworzoną przez znane kontakty zarejestrowane na tych serwerach. Zachowuje ewidencję kontaktów i serwerów. Tej czynności nie można cofnąć.', + 2 => 'Usuwa również całą lokalnie przechowywaną zawartość stworzoną przez znane kontakty zarejestrowane na tych serwerach. Zachowuje ewidencję kontaktów i serwerów. Tej czynności nie można cofnąć.', + 3 => 'Usuwa również całą lokalnie przechowywaną zawartość stworzoną przez znane kontakty zarejestrowane na tych serwerach. Zachowuje ewidencję kontaktów i serwerów. Tej czynności nie można cofnąć.', +]; +$a->strings['Block reason'] = 'Powód zablokowania'; +$a->strings['The reason why you blocked this server domain pattern. This reason will be shown publicly in the server information page.'] = 'Powód, dla którego zablokowałeś ten wzorzec domeny serwera. Powód ten zostanie pokazany publicznie na stronie informacyjnej serwera.'; +$a->strings['Blocked server domain pattern'] = 'Zablokowany wzorzec domeny serwera'; +$a->strings['Delete server domain pattern'] = 'Usuń wzorzec domeny serwera'; +$a->strings['Check to delete this entry from the blocklist'] = 'Zaznacz, aby usunąć ten wpis z listy bloków'; +$a->strings['Server Domain Pattern Blocklist'] = 'Lista bloków wzorców domen serwerów'; +$a->strings['This page can be used to define a blocklist of server domain patterns from the federated network that are not allowed to interact with your node. For each domain pattern you should also provide the reason why you block it.'] = 'Ta strona może służyć do definiowania listy zablokowanych wzorców domen serwera z sieci stowarzyszonej, które nie mogą komunikować się z węzłem. Dla każdego wzorca domeny należy również podać powód, dla którego go blokujesz.'; +$a->strings['The list of blocked server domain patterns will be made publically available on the /friendica page so that your users and people investigating communication problems can find the reason easily.'] = 'Lista zablokowanych wzorców domen serwera zostanie udostępniona publicznie na stronie /friendica, aby użytkownicy i osoby badające problemy z komunikacją mogły łatwo znaleźć przyczynę.'; +$a->strings['Add new entry to the blocklist'] = 'Dodaj nowy wpis do listy zablokowanych'; +$a->strings['Save changes to the blocklist'] = 'Zapisz zmiany w liście zablokowanych'; +$a->strings['Current Entries in the Blocklist'] = 'Aktualne wpisy na liście zablokowanych'; +$a->strings['Delete entry from the blocklist'] = 'Usuń wpis z listy zablokowanych'; +$a->strings['Delete entry from the blocklist?'] = 'Usunąć wpis z listy zablokowanych?'; +$a->strings['Item marked for deletion.'] = 'Przedmiot oznaczony do usunięcia.'; +$a->strings['Delete this Item'] = 'Usuń ten przedmiot'; +$a->strings['On this page you can delete an item from your node. If the item is a top level posting, the entire thread will be deleted.'] = 'Na tej stronie możesz usunąć przedmiot ze swojego węzła. Jeśli element jest publikowaniem na najwyższym poziomie, cały wątek zostanie usunięty.'; +$a->strings['You need to know the GUID of the item. You can find it e.g. by looking at the display URL. The last part of http://example.com/display/123456 is the GUID, here 123456.'] = 'Musisz znać identyfikator GUID tego przedmiotu. Możesz go znaleźć np. patrząc na wyświetlany adres URL. Ostatnia część http://example.com/display/123456 to GUID, tutaj 123456.'; +$a->strings['GUID'] = 'GUID'; +$a->strings['The GUID of the item you want to delete.'] = 'Identyfikator elementu GUID, który chcesz usunąć.'; +$a->strings['Item Id'] = 'Identyfikator elementu'; +$a->strings['Item URI'] = 'Identyfikator URI elementu'; +$a->strings['Terms'] = 'Zasady'; +$a->strings['Tag'] = 'Znacznik'; +$a->strings['Type'] = 'Typu'; +$a->strings['Term'] = 'Zasada'; +$a->strings['URL'] = 'URL'; +$a->strings['Mention'] = 'Wzmianka'; +$a->strings['Implicit Mention'] = 'Wzmianka niejawna'; +$a->strings['Item not found'] = 'Nie znaleziono elementu'; +$a->strings['Item Guid'] = 'Element Guid'; +$a->strings['Normal Account'] = 'Konto normalne'; +$a->strings['Automatic Follower Account'] = 'Automatyczne konto obserwatora'; +$a->strings['Public Forum Account'] = 'Publiczne konto na forum'; +$a->strings['Automatic Friend Account'] = 'Automatyczny przyjaciel konta'; +$a->strings['Blog Account'] = 'Konto bloga'; +$a->strings['Private Forum Account'] = 'Prywatne konto na forum'; +$a->strings['Registered users'] = 'Zarejestrowani użytkownicy'; +$a->strings['Pending registrations'] = 'Oczekujące rejestracje'; +$a->strings['%s user blocked'] = [ + 0 => '%s użytkownik zablokowany', + 1 => '%s użytkowników zablokowanych', + 2 => '%s użytkowników zablokowanych', + 3 => '%s użytkownicy zablokowani', +]; +$a->strings['You can\'t remove yourself'] = 'Nie możesz usunąć siebie'; +$a->strings['%s user deleted'] = [ + 0 => 'usunięto %s użytkownika', + 1 => 'usunięto %s użytkowników', + 2 => 'usunięto %s użytkowników', + 3 => '%s usuniętych użytkowników', +]; +$a->strings['User "%s" deleted'] = 'Użytkownik "%s" usunięty'; +$a->strings['User "%s" blocked'] = 'Użytkownik "%s" zablokowany'; +$a->strings['Register date'] = 'Data rejestracji'; +$a->strings['Last login'] = 'Ostatnie logowanie'; +$a->strings['Last public item'] = 'Ostatni element publiczny'; +$a->strings['Active Accounts'] = 'Aktywne konta'; +$a->strings['User blocked'] = 'Użytkownik zablokowany'; +$a->strings['Site admin'] = 'Administracja stroną'; +$a->strings['Account expired'] = 'Konto wygasło'; +$a->strings['Create a new user'] = 'Utwórz nowego użytkownika'; +$a->strings['Selected users will be deleted!\n\nEverything these users had posted on this site will be permanently deleted!\n\nAre you sure?'] = 'Zaznaczeni użytkownicy zostaną usunięci!\n\n Wszystko co zamieścili na tej stronie będzie trwale skasowane!\n\n Jesteś pewien?'; +$a->strings['The user {0} will be deleted!\n\nEverything this user has posted on this site will be permanently deleted!\n\nAre you sure?'] = 'Użytkownik {0} zostanie usunięty!\n\n Wszystko co zamieścił na tej stronie będzie trwale skasowane!\n\n Jesteś pewien?'; +$a->strings['%s user unblocked'] = [ + 0 => '%s użytkownik odblokowany', + 1 => '%s użytkowników odblokowanych', + 2 => '%s użytkowników odblokowanych', + 3 => '%s użytkowników odblokowanych', +]; +$a->strings['User "%s" unblocked'] = 'Użytkownik "%s" odblokowany'; +$a->strings['Blocked Users'] = 'Zablokowani użytkownicy'; +$a->strings['New User'] = 'Nowy użytkownik'; +$a->strings['Add User'] = 'Dodaj użytkownika'; +$a->strings['Name of the new user.'] = 'Nazwa nowego użytkownika.'; +$a->strings['Nickname'] = 'Pseudonim'; +$a->strings['Nickname of the new user.'] = 'Pseudonim nowego użytkownika.'; +$a->strings['Email address of the new user.'] = 'Adres email nowego użytkownika.'; +$a->strings['Users awaiting permanent deletion'] = 'Użytkownicy oczekujący na trwałe usunięcie'; +$a->strings['Permanent deletion'] = 'Trwałe usunięcie'; +$a->strings['User waiting for permanent deletion'] = 'Użytkownik czekający na trwałe usunięcie'; +$a->strings['%s user approved'] = [ + 0 => '%s użytkownik zatwierdzony', + 1 => '%s użytkowników zatwierdzonych', + 2 => '%s użytkowników zatwierdzonych', + 3 => '%s użytkowników zatwierdzonych', +]; +$a->strings['%s registration revoked'] = [ + 0 => '%s rejestrację cofnięto', + 1 => '%s rejestracje cofnięto', + 2 => '%s rejestracji cofnięto', + 3 => '%s rejestracji cofnięto ', +]; +$a->strings['Account approved.'] = 'Konto zatwierdzone.'; +$a->strings['Registration revoked'] = 'Rejestracja odwołana'; +$a->strings['User registrations awaiting review'] = 'Rejestracje użytkowników oczekujące na sprawdzenie'; +$a->strings['Request date'] = 'Data prośby'; +$a->strings['No registrations.'] = 'Brak rejestracji.'; +$a->strings['Note from the user'] = 'Uwaga od użytkownika'; +$a->strings['Deny'] = 'Odmów'; $a->strings['Show Ignored Requests'] = 'Pokaż ignorowane żądania'; $a->strings['Hide Ignored Requests'] = 'Ukryj zignorowane prośby'; $a->strings['Notification type:'] = 'Typ powiadomienia:'; @@ -2096,6 +1866,20 @@ $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.'; +$a->strings['Couldn\'t fetch friends for contact.'] = 'Nie można pobrać znajomych do kontaktu.'; +$a->strings['Couldn\'t fetch following contacts.'] = 'Nie udało się pobrać następujących kontaktów.'; +$a->strings['Couldn\'t fetch remote profile.'] = 'Nie można pobrać profilu zdalnego.'; +$a->strings['Unsupported network'] = 'Sieć nieobsługiwana'; +$a->strings['Done'] = 'Gotowe'; +$a->strings['success'] = 'powodzenie'; +$a->strings['failed'] = 'nie powiodło się'; +$a->strings['ignored'] = 'ignorowany(-a)'; $a->strings['Wrong type "%s", expected one of: %s'] = 'Nieprawidłowy typ „%s”, oczekiwano jednego z:%s'; $a->strings['Model not found'] = 'Nie znaleziono modelu'; $a->strings['Unlisted'] = 'Niekatalogowany'; @@ -2111,7 +1895,22 @@ $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.'; $a->strings['Invalid photo with id %s.'] = 'Nieprawidłowe zdjęcie z identyfikatorem %s.'; +$a->strings['Post not found.'] = 'Nie znaleziono wpisu.'; +$a->strings['Edit post'] = 'Edytuj wpis'; +$a->strings['web link'] = 'link'; +$a->strings['Insert video link'] = 'Wstaw link do filmu'; +$a->strings['video link'] = 'link do filmu'; +$a->strings['Insert audio link'] = 'Wstaw link do audio'; +$a->strings['audio link'] = 'link do audio'; +$a->strings['Remove Item Tag'] = 'Usuń pozycję znacznika'; +$a->strings['Select a tag to remove: '] = 'Wybierz znacznik do usunięcia: '; +$a->strings['Remove'] = 'Usuń'; $a->strings['No contacts.'] = 'Brak kontaktów.'; +$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'; +$a->strings['Server can\'t accept new file upload at this time, please contact your administrator'] = 'Serwer nie może teraz przyjąć nowego pliku, skontaktuj się z administratorem'; +$a->strings['Image file is empty.'] = 'Plik obrazka jest pusty.'; +$a->strings['View Album'] = 'Zobacz album'; $a->strings['Profile not found.'] = 'Nie znaleziono profilu.'; $a->strings['You\'re currently viewing your profile as %s Cancel'] = 'Obecnie przeglądasz swój profil jako %s Anuluj'; $a->strings['Full Name:'] = 'Imię i nazwisko:'; @@ -2126,16 +1925,34 @@ $a->strings['%d year old'] = [ 2 => '%d lat', 3 => '%d lat', ]; +$a->strings['Description:'] = 'Opis:'; $a->strings['Forums:'] = 'Fora:'; $a->strings['View profile as:'] = 'Wyświetl profil jako:'; $a->strings['View as'] = 'Zobacz jako'; $a->strings['%s\'s timeline'] = 'oś czasu %s'; $a->strings['%s\'s posts'] = 'wpisy %s'; $a->strings['%s\'s comments'] = 'komentarze %s'; +$a->strings['Profile unavailable.'] = 'Profil niedostępny.'; +$a->strings['Invalid locator'] = 'Nieprawidłowy lokalizator'; +$a->strings['The provided profile link doesn\'t seem to be valid'] = 'Podany link profilu wydaje się być nieprawidłowy'; +$a->strings['Remote subscription can\'t be done for your network. Please subscribe directly on your system.'] = 'Zdalnej subskrypcji nie można wykonać dla swojej sieci. Proszę zasubskrybuj bezpośrednio w swoim systemie.'; +$a->strings['Friend/Connection Request'] = 'Przyjaciel/Prośba o połączenie'; +$a->strings['Enter your Webfinger address (user@domain.tld) or profile URL here. If this isn\'t supported by your system, you have to subscribe to %s or %s directly on your system.'] = '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.'; +$a->strings['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.'] = '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ś.'; +$a->strings['Your Webfinger address or profile URL:'] = 'Twój adres lub adres URL profilu Webfinger:'; +$a->strings['Restricted profile'] = 'Ograniczony profil'; $a->strings['Scheduled'] = 'Zaplanowane'; $a->strings['Content'] = 'Zawartość'; $a->strings['Remove post'] = 'Usuń wpis'; +$a->strings['Unable to check your home location.'] = 'Nie można sprawdzić twojej lokalizacji.'; +$a->strings['Recipient not found.'] = 'Nie znaleziono odbiorcy.'; +$a->strings['Number of daily wall messages for %s exceeded. Message failed.'] = 'Dzienny limit wiadomości na tablicy %s został przekroczony. Wiadomość została odrzucona.'; +$a->strings['If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders.'] = 'Jeśli chcesz %s odpowiedzieć, sprawdź, czy ustawienia prywatności w Twojej witrynie zezwalają na prywatne wiadomości od nieznanych nadawców.'; +$a->strings['To'] = 'Do'; +$a->strings['Subject'] = 'Temat'; +$a->strings['Your message'] = 'Twoja wiadomość'; $a->strings['Only parent users can create additional accounts.'] = 'Tylko użytkownicy nadrzędni mogą tworzyć dodatkowe konta.'; +$a->strings['This site has exceeded the number of allowed daily account registrations. Please try again tomorrow.'] = 'Strona przekroczyła ilość dozwolonych rejestracji na dzień. Proszę spróbuj ponownie jutro.'; $a->strings['You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking "Register".'] = 'Możesz (opcjonalnie) wypełnić ten formularz za pośrednictwem OpenID, podając swój OpenID i klikając "Register".'; $a->strings['If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items.'] = 'Jeśli nie jesteś zaznajomiony z OpenID, zostaw to pole puste i uzupełnij resztę elementów.'; $a->strings['Your OpenID (optional): '] = 'Twój OpenID (opcjonalnie): '; @@ -2152,6 +1969,7 @@ $a->strings['Leave empty for an auto generated password.'] = 'Pozostaw puste dla $a->strings['Confirm:'] = 'Potwierdź:'; $a->strings['Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be "nickname@%s".'] = 'Wybierz pseudonim profilu. Musi zaczynać się od znaku tekstowego. Twój adres profilu na tej stronie to "nickname@%s".'; $a->strings['Choose a nickname: '] = 'Wybierz pseudonim: '; +$a->strings['Import'] = 'Import'; $a->strings['Import your profile to this friendica instance'] = 'Zaimportuj swój profil do tej instancji friendica'; $a->strings['Note: This node explicitly contains adult content'] = 'Uwaga: Ten węzeł jawnie zawiera treści dla dorosłych'; $a->strings['Parent Password:'] = 'Hasło nadrzędne:'; @@ -2166,15 +1984,9 @@ $a->strings['Failed to send email message. Here your accout details:
login: $a->strings['Registration successful.'] = 'Rejestracja udana.'; $a->strings['Your registration can not be processed.'] = 'Nie można przetworzyć Twojej rejestracji.'; $a->strings['You have to leave a request note for the admin.'] = 'Musisz zostawić notatkę z prośbą do administratora.'; +$a->strings['An internal error occured.'] = 'Wystąpił błąd wewnętrzny.'; $a->strings['Your registration is pending approval by the site owner.'] = 'Twoja rejestracja oczekuje na zaakceptowanie przez właściciela witryny.'; -$a->strings['Profile unavailable.'] = 'Profil niedostępny.'; -$a->strings['Invalid locator'] = 'Nieprawidłowy lokalizator'; -$a->strings['The provided profile link doesn\'t seem to be valid'] = 'Podany link profilu wydaje się być nieprawidłowy'; -$a->strings['Remote subscription can\'t be done for your network. Please subscribe directly on your system.'] = 'Zdalnej subskrypcji nie można wykonać dla swojej sieci. Proszę zasubskrybuj bezpośrednio w swoim systemie.'; -$a->strings['Friend/Connection Request'] = 'Przyjaciel/Prośba o połączenie'; -$a->strings['Enter your Webfinger address (user@domain.tld) or profile URL here. If this isn\'t supported by your system, you have to subscribe to %s or %s directly on your system.'] = '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.'; -$a->strings['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.'] = '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ś.'; -$a->strings['Your Webfinger address or profile URL:'] = 'Twój adres lub adres URL profilu Webfinger:'; +$a->strings['You must be logged in to use this module.'] = 'Musisz być zalogowany, aby korzystać z tego modułu.'; $a->strings['Only logged in users are permitted to perform a search.'] = 'Tylko zalogowani użytkownicy mogą wyszukiwać.'; $a->strings['Only one search per minute is permitted for not logged in users.'] = 'Dla niezalogowanych użytkowników dozwolone jest tylko jedno wyszukiwanie na minutę.'; $a->strings['Items tagged with: %s'] = 'Elementy oznaczone znacznikiem: %s'; @@ -2196,6 +2008,13 @@ $a->strings['Logged out.'] = 'Wylogowano.'; $a->strings['OpenID protocol error. No ID returned'] = 'Błąd protokołu OpenID. Nie zwrócono identyfikatora'; $a->strings['Account not found. Please login to your existing account to add the OpenID to it.'] = 'Konto nie znalezione. Zaloguj się do swojego istniejącego konta, aby dodać do niego OpenID.'; $a->strings['Account not found. Please register a new account or login to your existing account to add the OpenID to it.'] = 'Konto nie znalezione. Zarejestruj nowe konto lub zaloguj się na istniejące konto, aby dodać do niego OpenID.'; +$a->strings['Passwords do not match.'] = 'Hasła nie pasują do siebie.'; +$a->strings['Password does not need changing.'] = 'Hasło nie wymaga zmiany.'; +$a->strings['Password unchanged.'] = 'Hasło niezmienione.'; +$a->strings['Password Too Long'] = 'Hasło za długie'; +$a->strings['Current Password:'] = 'Aktualne hasło:'; +$a->strings['Your current password to confirm the changes'] = 'Wpisz aktualne hasło, aby potwierdzić zmiany'; +$a->strings['Allowed characters are a-z, A-Z, 0-9 and special characters except white spaces, accentuated letters and colon (:).'] = 'Dozwolone znaki to a-z, A-Z, 0-9 i znaki specjalne, z wyjątkiem białych znaków, podkreślonych liter i dwukropka (:).'; $a->strings['Remaining recovery codes: %d'] = 'Pozostałe kody odzyskiwania: %d'; $a->strings['Invalid code, please retry.'] = 'Nieprawidłowy kod, spróbuj ponownie.'; $a->strings['Two-factor recovery'] = 'Odzyskiwanie dwuczynnikowe'; @@ -2212,13 +2031,11 @@ $a->strings['Trust this browser?'] = 'Ufać tej przeglądarce?'; $a->strings['

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

'] = '

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

'; $a->strings['Not now'] = 'Nie teraz'; $a->strings['Don\'t trust'] = 'Nie ufaj'; -$a->strings['Trust'] = 'Truj'; +$a->strings['Trust'] = 'Ufaj'; $a->strings['

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

'] = '

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

'; $a->strings['If you do not have access to your authentication code you can use a two-factor recovery code.'] = 'Jeśli nie masz dostępu do swojego kodu uwierzytelniającego, możesz użyć dwuskładnikowego kodu odzyskiwania.'; $a->strings['Please enter a code from your authentication app'] = 'Wprowadź kod z aplikacji uwierzytelniającej'; $a->strings['Verify code and complete login'] = 'Zweryfikuj kod i zakończ logowanie'; -$a->strings['Passwords do not match.'] = 'Hasła nie pasują do siebie.'; -$a->strings['Password unchanged.'] = 'Hasło niezmienione.'; $a->strings['Please use a shorter name.'] = 'Użyj krótszej nazwy.'; $a->strings['Name too short.'] = 'Nazwa jest za krótka. '; $a->strings['Wrong Password.'] = 'Nieprawidłowe hasło.'; @@ -2249,10 +2066,7 @@ $a->strings['Your profile will also be published in the global friendica directo $a->strings['Account Settings'] = 'Ustawienia konta'; $a->strings['Your Identity Address is \'%s\' or \'%s\'.'] = 'Twój adres tożsamości to \'%s\' lub \'%s\'.'; $a->strings['Password Settings'] = 'Ustawienia hasła'; -$a->strings['Allowed characters are a-z, A-Z, 0-9 and special characters except white spaces, accentuated letters and colon (:).'] = 'Dozwolone znaki to a-z, A-Z, 0-9 i znaki specjalne, z wyjątkiem białych znaków, podkreślonych liter i dwukropka (:).'; $a->strings['Leave password fields blank unless changing'] = 'Pozostaw pole hasła puste, jeżeli nie chcesz go zmienić.'; -$a->strings['Current Password:'] = 'Aktualne hasło:'; -$a->strings['Your current password to confirm the changes'] = 'Wpisz aktualne hasło, aby potwierdzić zmiany'; $a->strings['Password:'] = 'Hasło:'; $a->strings['Your current password to confirm the changes of the email address'] = 'Twoje obecne hasło, aby potwierdzić zmiany adresu e-mail'; $a->strings['Delete OpenID URL'] = 'Usuń adres URL OpenID'; @@ -2270,8 +2084,6 @@ $a->strings['Allow your profile to be searchable globally?'] = 'Czy Twój profil $a->strings['Activate this setting if you want others to easily find and follow you. Your profile will be searchable on remote systems. This setting also determines whether Friendica will inform search engines that your profile should be indexed or not.'] = '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.'; $a->strings['Hide your contact/friend list from viewers of your profile?'] = 'Ukryć listę kontaktów/znajomych przed osobami przeglądającymi Twój profil?'; $a->strings['A list of your contacts is displayed on your profile page. Activate this option to disable the display of your contact list.'] = 'Lista kontaktów jest wyświetlana na stronie profilu. Aktywuj tę opcję, aby wyłączyć wyświetlanie listy kontaktów.'; -$a->strings['Hide your profile details from anonymous viewers?'] = 'Ukryć dane Twojego profilu przed anonimowymi widzami?'; -$a->strings['Anonymous visitors will only see your profile picture, your display name and the nickname you are using on your profile page. Your public posts and replies will still be accessible by other means.'] = 'Anonimowi użytkownicy zobaczą tylko Twoje zdjęcie profilowe, swoją wyświetlaną nazwę i pseudonim, którego używasz na stronie profilu. Twoje publiczne posty i odpowiedzi będą nadal dostępne w inny sposób.'; $a->strings['Make public posts unlisted'] = 'Ustaw publiczne wpisy jako niepubliczne'; $a->strings['Your public posts will not appear on the community pages or in search results, nor be sent to relay servers. However they can still appear on public feeds on remote servers.'] = '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.'; $a->strings['Make all posted pictures accessible'] = 'Udostępnij wszystkie opublikowane zdjęcia'; @@ -2304,7 +2116,6 @@ $a->strings['Someone writes a followup comment'] = 'Ktoś pisze komentarz nawią $a->strings['You receive a private message'] = 'Otrzymałeś prywatną wiadomość'; $a->strings['You receive a friend suggestion'] = 'Otrzymałeś propozycję od znajomych'; $a->strings['You are tagged in a post'] = 'Jesteś oznaczony znacznikiem we wpisie'; -$a->strings['You are poked/prodded/etc. in a post'] = 'Jesteś zaczepiony/zaczepiona/itp. w poście'; $a->strings['Create a desktop notification when:'] = 'Utwórz powiadomienia na pulpicie gdy:'; $a->strings['Someone tagged you'] = 'Ktoś Cię oznaczył'; $a->strings['Someone directly commented on your post'] = 'Ktoś bezpośrednio skomentował Twój wpis'; @@ -2330,6 +2141,43 @@ $a->strings['Upload File'] = 'Prześlij plik'; $a->strings['Relocate'] = 'Przeniesienie'; $a->strings['If you have moved this profile from another server, and some of your contacts don\'t receive your updates, try pushing this button.'] = 'Jeśli ten profil został przeniesiony z innego serwera, a niektóre z Twoich kontaktów nie otrzymają aktualizacji, spróbuj nacisnąć ten przycisk.'; $a->strings['Resend relocate message to contacts'] = 'Wyślij ponownie przenieść wiadomości do kontaktów'; +$a->strings['Addon Settings'] = 'Ustawienia dodatków'; +$a->strings['No Addon settings configured'] = 'Brak skonfigurowanych ustawień dodatków'; +$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'; +$a->strings['Followed content scope'] = 'Obserwowany zakres treści'; +$a->strings['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.'] = '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.'; +$a->strings['Only conversations my follows started'] = 'Tylko rozmowy, które rozpoczęli moi obserwowani'; +$a->strings['Conversations my follows started or commented on (default)'] = 'Rozmowy, które rozpoczęli moi obserwowani, lub które komentowali (domyślnie)'; +$a->strings['Any conversation my follows interacted with, including likes'] = 'Wszelkie rozmowy, z którymi wchodziłem w interakcję, w tym polubienia'; +$a->strings['Enable Content Warning'] = 'Włącz ostrzeżenia o treści'; +$a->strings['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.'] = 'Użytkownicy w sieciach takich jak Mastodon lub Pleroma mogą ustawić pole ostrzeżenia o treści, które domyślnie zwija ich posty. Umożliwia to automatyczne zwijanie zamiast ustawiania ostrzeżenia o treści jako tytułu wpisu. Nie wpływa na żadne inne skonfigurowane filtrowanie treści.'; +$a->strings['Enable intelligent shortening'] = 'Włącz inteligentne skracanie'; +$a->strings['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.'] = '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.'; +$a->strings['Enable simple text shortening'] = 'Włącz proste skracanie tekstu'; +$a->strings['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.'] = '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.'; +$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:'; +$a->strings['IMAP server name:'] = 'Nazwa serwera IMAP:'; +$a->strings['IMAP port:'] = 'Port IMAP:'; +$a->strings['Security:'] = 'Bezpieczeństwo:'; +$a->strings['Email login name:'] = 'Nazwa logowania e-mail:'; +$a->strings['Email password:'] = 'Hasło e-mail:'; +$a->strings['Reply-to address:'] = 'Adres zwrotny:'; +$a->strings['Send public posts to all email contacts:'] = 'Wyślij publiczny wpis do wszystkich kontaktów e-mail:'; +$a->strings['Action after import:'] = 'Akcja po zaimportowaniu:'; +$a->strings['Move to folder'] = 'Przenieś do katalogu'; +$a->strings['Move to folder:'] = 'Przenieś do katalogu:'; $a->strings['Delegation successfully granted.'] = 'Delegacja została pomyślnie przyznana.'; $a->strings['Parent user not found, unavailable or password doesn\'t match.'] = 'Nie znaleziono użytkownika nadrzędnego, jest on niedostępny lub hasło nie pasuje.'; $a->strings['Delegation successfully revoked.'] = 'Delegacja została pomyślnie odwołana.'; @@ -2354,7 +2202,6 @@ $a->strings['General Theme Settings'] = 'Ogólne ustawienia motywu'; $a->strings['Custom Theme Settings'] = 'Niestandardowe ustawienia motywów'; $a->strings['Content Settings'] = 'Ustawienia zawartości'; $a->strings['Theme settings'] = 'Ustawienia motywu'; -$a->strings['Calendar'] = 'Kalendarz'; $a->strings['Display Theme:'] = 'Wyświetl motyw:'; $a->strings['Mobile Theme:'] = 'Motyw dla urządzeń mobilnych:'; $a->strings['Number of items to display per page:'] = 'Liczba elementów do wyświetlenia na stronie:'; @@ -2377,6 +2224,9 @@ $a->strings['Display the first resharer as icon and text on a reshared item.'] = $a->strings['Stay local'] = 'Pozostań lokalny'; $a->strings['Don\'t go to a remote system when following a contact link.'] = 'Nie przechodź do zdalnego systemu podczas korzystania z łącza kontaktowego.'; $a->strings['Beginning of week:'] = 'Początek tygodnia:'; +$a->strings['Additional Features'] = 'Dodatkowe funkcje'; +$a->strings['Connected Apps'] = 'Powiązane aplikacje'; +$a->strings['Remove authorization'] = 'Odwołaj upoważnienie'; $a->strings['Profile Name is required.'] = 'Nazwa profilu jest wymagana.'; $a->strings['Profile couldn\'t be updated.'] = 'Profil nie mógł zostać zaktualizowany.'; $a->strings['Label:'] = 'Etykieta:'; @@ -2432,6 +2282,13 @@ $a->strings['Upload Picture:'] = 'Załaduj zdjęcie:'; $a->strings['or'] = 'lub'; $a->strings['skip this step'] = 'pomiń ten krok'; $a->strings['select a photo from your photo albums'] = 'wybierz zdjęcie z twojego albumu'; +$a->strings['[Friendica System Notify]'] = '[Powiadomienie Systemu Friendica]'; +$a->strings['User deleted their account'] = 'Użytkownik usunął swoje konto'; +$a->strings['On your Friendica node an user deleted their account. Please ensure that their data is removed from the backups.'] = 'W twoim węźle Friendica użytkownik usunął swoje konto. Upewnij się, że ich dane zostały usunięte z kopii zapasowych.'; +$a->strings['The user id is %d'] = 'Identyfikatorem użytkownika jest %d'; +$a->strings['Remove My Account'] = 'Usuń moje konto'; +$a->strings['This will completely remove your account. Once this has been done it is not recoverable.'] = 'Spowoduje to całkowite usunięcie Twojego konta. Po wykonaniu tej czynności nie można jej cofnąć.'; +$a->strings['Please enter your password for verification:'] = 'Wprowadź hasło w celu weryfikacji:'; $a->strings['Please enter your password to access this page.'] = 'Wprowadź hasło, aby uzyskać dostęp do tej strony.'; $a->strings['App-specific password generation failed: The description is empty.'] = 'Generowanie hasła aplikacji nie powiodło się: Opis jest pusty.'; $a->strings['App-specific password generation failed: This description already exists.'] = 'Generowanie hasła aplikacji nie powiodło się: Opis ten już istnieje.'; @@ -2530,8 +2387,26 @@ $a->strings['Stack trace:'] = 'Ślad stosu:'; $a->strings['Exception thrown in %s:%d'] = 'Zgłoszono wyjątek %s:%d'; $a->strings['At the time of registration, and for providing communications between the user account and their contacts, the user has to provide a display name (pen name), an username (nickname) and a working email address. The names will be accessible on the profile page of the account by any visitor of the page, even if other profile details are not displayed. The email address will only be used to send the user notifications about interactions, but wont be visibly displayed. The listing of an account in the node\'s user directory or the global user directory is optional and can be controlled in the user settings, it is not necessary for communication.'] = '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.'; $a->strings['This data is required for communication and is passed on to the nodes of the communication partners and is stored there. Users can enter additional private data that may be transmitted to the communication partners accounts.'] = '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.'; -$a->strings['At any point in time a logged in user can export their account data from the account settings. If the user wants to delete their account they can do so at %1$s/removeme. The deletion of the account will be permanent. Deletion of the data will also be requested from the nodes of the communication partners.'] = 'W dowolnym momencie zalogowany użytkownik może wyeksportować dane swojego konta z ustawień konta. Jeśli użytkownik chce usunąć swoje konto, może to zrobić w %1$s/removeme. Usunięcie konta będzie trwałe. Usunięcia danych zażądają również węzły partnerów komunikacyjnych.'; $a->strings['Privacy Statement'] = 'Oświadczenie o prywatności'; +$a->strings['User imports on closed servers can only be done by an administrator.'] = 'Import użytkowników na zamkniętych serwerach może być wykonywany tylko przez administratora.'; +$a->strings['Move account'] = 'Przenieś konto'; +$a->strings['You can import an account from another Friendica server.'] = 'Możesz zaimportować konto z innego serwera Friendica.'; +$a->strings['You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here.'] = '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ś.'; +$a->strings['This feature is experimental. We can\'t import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora'] = 'Ta funkcja jest eksperymentalna. Nie możemy importować kontaktów z sieci OStatus (GNU Social/Statusnet) lub z Diaspory'; +$a->strings['Account file'] = 'Pliki konta'; +$a->strings['To export your account, go to "Settings->Export your personal data" and select "Export account"'] = 'Aby eksportować konto, wejdź w "Ustawienia->Eksport danych osobistych" i wybierz "Eksportuj konto"'; +$a->strings['Error decoding account file'] = 'Błąd podczas odczytu pliku konta'; +$a->strings['Error! No version data in file! This is not a Friendica account file?'] = 'Błąd! Brak danych wersji w pliku! To nie jest plik konta Friendica?'; +$a->strings['User \'%s\' already exists on this server!'] = 'Użytkownik \'%s\' już istnieje na tym serwerze!'; +$a->strings['User creation error'] = 'Błąd tworzenia użytkownika'; +$a->strings['%d contact not imported'] = [ + 0 => 'Nie zaimportowano %d kontaktu', + 1 => 'Nie zaimportowano %d kontaktów', + 2 => 'Nie zaimportowano %d kontaktów', + 3 => '%d kontakty nie zostały zaimportowane ', +]; +$a->strings['User profile creation error'] = 'Błąd tworzenia profilu użytkownika'; +$a->strings['Done. You can now login with your username and password'] = 'Gotowe. Możesz teraz zalogować się z użyciem nazwy użytkownika i hasła'; $a->strings['Welcome to Friendica'] = 'Witamy na Friendica'; $a->strings['New Member Checklist'] = 'Lista nowych członków'; $a->strings['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 will be visible from your home page for two weeks after your initial registration and then will quietly disappear.'] = '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.'; @@ -2614,9 +2489,6 @@ $a->strings['Please visit %s to view and/or reply to the conversation.'] = 'Odwi $a->strings['%s %s posted to your profile wall'] = '%s %s opublikował na Twojej tablicy profilu'; $a->strings['%1$s posted to your profile wall at %2$s'] = '%1$s opublikował(-a) wpis na Twojej tablicy o %2$s'; $a->strings['%1$s posted to [url=%2$s]your wall[/url]'] = '%1$s opublikował(-a) na [url=%2$s]Twojej tablicy[/url]'; -$a->strings['%1$s %2$s poked you'] = '%1$s %2$s zaczepił Cię'; -$a->strings['%1$s poked you at %2$s'] = '%1$s zaczepił Cię %2$s'; -$a->strings['%1$s [url=%2$s]poked you[/url].'] = '%1$s[url=%2$s] zaczepił Cię[/url].'; $a->strings['%s Introduction received'] = '%s Otrzymano wprowadzenie'; $a->strings['You\'ve received an introduction from \'%1$s\' at %2$s'] = 'Otrzymałeś wstęp od \'%1$s\' z %2$s'; $a->strings['You\'ve received [url=%1$s]an introduction[/url] from %2$s.'] = 'Zostałeś [url=%1$s] przyjęty [/ url] z %2$s.'; @@ -2713,7 +2585,6 @@ $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['The folder view/smarty3/ must be writable by webserver.'] = 'Katalog view/smarty3/ musi być zapisywalny przez serwer WWW.'; $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/theme/frio/css/style.css b/view/theme/frio/css/style.css index 9c8c74eb2..e376a8dc4 100644 --- a/view/theme/frio/css/style.css +++ b/view/theme/frio/css/style.css @@ -1260,7 +1260,7 @@ aside .vcard #wallmessage-link { color: $font_color; font-size: 12px; } -.network-content-wrapper > #viewcontact_wrapper-network, +.network-content-wrapper > .generic-page-wrapper, #nav-short-info .contact-wrapper .contact-photo-overlay, #nav-short-info .contact-wrapper .contact-actions { display: none; @@ -1556,11 +1556,11 @@ textarea.comment-edit-text:focus + .comment-edit-form .preview { } .fbrowser .fbrowser-content-container { overflow-y: auto; - max-height: calc(100vh - 175px); + max-height: calc(100vh - 233px); } @media (min-width: 768px) { .fbrowser .fbrowser-content-container { - max-height: calc(100vh - 220px); + max-height: calc(100vh - 277px); } } .fbrowser.photo .photo-album-image-wrapper { @@ -2554,13 +2554,13 @@ ul li:hover .contact-wrapper .contact-action-link:hover { } #group-update-wrapper .viewcontact_wrapper .contact-group-actions { height: 100%; - margin-top: -10px; display: flex; + flex-direction: column; + justify-content: center; } #group-update-wrapper .viewcontact_wrapper .contact-group-link { opacity: 0.8; font-size: 20px; - line-height: 50px; } #group-update-wrapper .viewcontact_wrapper .contact-action-link:hover { opacity: 1; diff --git a/view/theme/frio/screenshot.png b/view/theme/frio/screenshot.png index bdfcab392..3b31cdd72 100644 Binary files a/view/theme/frio/screenshot.png and b/view/theme/frio/screenshot.png differ diff --git a/view/theme/frio/templates/admin/site.tpl b/view/theme/frio/templates/admin/site.tpl index 298df40c9..fea32ccc8 100644 --- a/view/theme/frio/templates/admin/site.tpl +++ b/view/theme/frio/templates/admin/site.tpl @@ -39,7 +39,6 @@ {{include file="field_input.tpl" field=$sitename}} {{include file="field_input.tpl" field=$sender_email}} {{include file="field_input.tpl" field=$system_actor_name}} - {{include file="field_textarea.tpl" field=$banner}} {{include file="field_input.tpl" field=$shortcut_icon}} {{include file="field_input.tpl" field=$touch_icon}} {{include file="field_textarea.tpl" field=$additional_info}} diff --git a/view/theme/frio/templates/contact/list.tpl b/view/theme/frio/templates/contact/list.tpl index 5a1ac026b..1925f7ec4 100644 --- a/view/theme/frio/templates/contact/list.tpl +++ b/view/theme/frio/templates/contact/list.tpl @@ -1,17 +1,17 @@ - -{{* This is the standard template for showing contact lists. It is used e.g. +{{* This is the standard template for showing contact lists. It is used e.g. at the suggest page and also at many other places *}} +
+ {{include file="section_title.tpl"}} -{{include file="section_title.tpl"}} + {{$tab_str nofilter}} -{{$tab_str nofilter}} - -
    +
      {{foreach $contacts as $contact}} -
    • {{include file="contact/entry.tpl"}}
    • +
    • {{include file="contact/entry.tpl"}}
    • {{/foreach}} -
    -
    -
    +
+
+
-{{$paginate nofilter}} + {{$paginate nofilter}} +
\ No newline at end of file diff --git a/view/theme/frio/theme.php b/view/theme/frio/theme.php index c8f22228b..2422adf93 100644 --- a/view/theme/frio/theme.php +++ b/view/theme/frio/theme.php @@ -18,9 +18,10 @@ * along with this program. If not, see . * * Name: frio - * Description: Bootstrap V3 theme. The theme is currently under construction, so it is far from finished. For further information have a look at the ReadMe. - * Version: V.0.8.5 + * Description: Responsive theme based on a modern HTML/CSS/Javascript framework. + * Version: V.1.0 * Author: Rabuzarus + * Maintainer: Hypolite Petovan */ use Friendica\App;